using System; using System.Collections; using System.Collections.Generic; using System.ComponentModel; using System.Diagnostics; using System.IO; using System.Linq; using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Security; using System.Security.Permissions; using System.Text.RegularExpressions; using AOT; using Atlas.MappingComponents.Sandbox; using BepInEx; using BepInEx.Logging; using CustomScripts; using CustomScripts.Gamemode; using CustomScripts.Gamemode.GMDebug; using CustomScripts.Managers; using CustomScripts.Objects; using CustomScripts.Objects.Weapons; using CustomScripts.Objects.Windows; using CustomScripts.Player; using CustomScripts.Powerups; using CustomScripts.Zombie; using FistVR; using GunGame.Scripts; using GunGame.Scripts.Options; using GunGame.Scripts.Weapons; using HarmonyLib; using LuxWater; using OtherLoader; using Plawius.NonConvexCollider; using ProBuilder2.Common; using ProBuilder2.MeshOperations; using Sodalite.Api; using Sodalite.Utilities; using UnityEditor; using UnityEngine; using UnityEngine.AI; using UnityEngine.Assertions; using UnityEngine.Events; using UnityEngine.Profiling; using UnityEngine.Rendering; using UnityEngine.SceneManagement; using UnityEngine.Serialization; using UnityEngine.UI; using Valve.VR; [assembly: AssemblyTitle("CustomScripts")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("CustomScripts")] [assembly: AssemblyCopyright("Copyright © 2021")] [assembly: AssemblyTrademark("")] [assembly: ComVisible(false)] [assembly: Guid("7ac675fa-8ffe-4c1b-8787-a764e1845c24")] [assembly: AssemblyFileVersion("1.0.0.0")] [assembly: Debuggable(DebuggableAttribute.DebuggingModes.DisableOptimizations | DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)] [assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)] [assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)] [assembly: AssemblyVersion("1.0.0.0")] [module: UnverifiableCode] namespace CustomScripts { [RequireComponent(typeof(IPurchasable))] public class CanPurchaseTextChanger : MonoBehaviour { private IPurchasable _purchasable; private IRequiresPower _requiresPower; [SerializeField] private List _texts; private void Start() { _purchasable = ((Component)this).GetComponent(); _requiresPower = ((Component)this).GetComponent(); GameManager.OnPointsChanged = (Action)Delegate.Combine(GameManager.OnPointsChanged, new Action(UpdateTexts)); GameManager.OnPowerEnabled = (Action)Delegate.Combine(GameManager.OnPowerEnabled, new Action(UpdateTexts)); UpdateTexts(); } private void UpdateTexts() { //IL_004d: Unknown result type (might be due to invalid IL or missing references) //IL_01e3: Unknown result type (might be due to invalid IL or missing references) //IL_015d: Unknown result type (might be due to invalid IL or missing references) //IL_00c3: Unknown result type (might be due to invalid IL or missing references) if (_requiresPower != null && !_requiresPower.IsPowered) { for (int i = 0; i < _texts.Count; i++) { _texts[i].text = "No power"; ((Graphic)_texts[i]).color = MonoBehaviourSingleton.Instance.CannotBuyColor; } } else if (_purchasable.IsOneTimeOnly && _purchasable.AlreadyBought) { for (int j = 0; j < _texts.Count; j++) { _texts[j].text = "Out of stock"; ((Graphic)_texts[j]).color = MonoBehaviourSingleton.Instance.CannotBuyColor; } } else if (MonoBehaviourSingleton.Instance.Points >= _purchasable.PurchaseCost) { for (int k = 0; k < _texts.Count; k++) { Text obj = _texts[k]; string text = _purchasable.PurchaseCost.ToString(); _texts[k].text = text; obj.text = text; ((Graphic)_texts[k]).color = MonoBehaviourSingleton.Instance.CanBuyColor; } } else { for (int l = 0; l < _texts.Count; l++) { Text obj2 = _texts[l]; string text = _purchasable.PurchaseCost.ToString(); _texts[l].text = text; obj2.text = text; ((Graphic)_texts[l]).color = MonoBehaviourSingleton.Instance.CannotBuyColor; } } } private void OnDestroy() { GameManager.OnPointsChanged = (Action)Delegate.Remove(GameManager.OnPointsChanged, new Action(UpdateTexts)); GameManager.OnPowerEnabled = (Action)Delegate.Remove(GameManager.OnPowerEnabled, new Action(UpdateTexts)); } } } namespace CustomScripts.Gamemode.GMDebug { public class CheatItemSpawner : MonoBehaviour { private void Awake() { RoundManager.OnGameStarted = (Action)Delegate.Combine(RoundManager.OnGameStarted, new Action(TrySpawning)); } private void OnDrawGizmos() { //IL_0015: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_005b: Unknown result type (might be due to invalid IL or missing references) //IL_0060: Unknown result type (might be due to invalid IL or missing references) //IL_0061: Unknown result type (might be due to invalid IL or missing references) //IL_0062: Unknown result type (might be due to invalid IL or missing references) //IL_0068: Unknown result type (might be due to invalid IL or missing references) //IL_0069: Unknown result type (might be due to invalid IL or missing references) //IL_006a: Unknown result type (might be due to invalid IL or missing references) //IL_0070: Unknown result type (might be due to invalid IL or missing references) //IL_0075: Unknown result type (might be due to invalid IL or missing references) Gizmos.color = new Color(0.4f, 0.4f, 0.9f, 0.5f); Gizmos.matrix = ((Component)this).transform.localToWorldMatrix; Vector3 val = default(Vector3); ((Vector3)(ref val))..ctor(0f, 0.7f, 0.25f); Vector3 val2 = default(Vector3); ((Vector3)(ref val2))..ctor(2.3f, 1.2f, 0.5f); Vector3 forward = Vector3.forward; Gizmos.DrawCube(val, val2); Gizmos.DrawLine(val, val + forward * 0.5f); } public void TrySpawning() { if (GameSettings.ItemSpawnerEnabled) { ((MonoBehaviour)this).StartCoroutine(InitializeAsync()); } } private IEnumerator InitializeAsync() { yield return null; Scene sceneByName = SceneManager.GetSceneByName("ModBlank_Simple"); GameObject[] rootGameObjects = ((Scene)(ref sceneByName)).GetRootGameObjects(); GameObject itemSpawner = rootGameObjects.First((GameObject x) => ((Object)x).name == "ItemSpawner"); Object.Instantiate(itemSpawner, ((Component)this).transform.position, ((Component)this).transform.rotation).SetActive(true); Object.Destroy((Object)(object)this); } private void OnDestroy() { RoundManager.OnGameStarted = (Action)Delegate.Remove(RoundManager.OnGameStarted, new Action(TrySpawning)); } } } namespace CustomScripts { public static class Delegates { public delegate void VoidDelegate(); } public static class Extensions { public static void Shuffle(this IList list) { Random random = new Random(); int num = list.Count; while (num > 1) { num--; int index = random.Next(num + 1); T value = list[index]; list[index] = list[num]; list[num] = value; } } } public interface IModifier { void ApplyModifier(); } public interface IPowerUp : IModifier { void Spawn(Vector3 pos); } public abstract class PowerUp : MonoBehaviour, IPowerUp, IModifier { public AudioClip ApplyAudio; public abstract void ApplyModifier(); public abstract void Spawn(Vector3 pos); } public interface IPurchasable { int PurchaseCost { get; } bool IsOneTimeOnly { get; } bool AlreadyBought { get; } } public interface IRequiresPower { bool IsPowered { get; } } public interface ITrap { void OnEnemyEntered(ZombieController controller); } public class MonoBehaviourSingleton : MonoBehaviour where T : Component { public static T Instance { get; private set; } public virtual void Awake() { if ((Object)(object)Instance == (Object)null) { Instance = (T)(object)((this is T) ? this : null); } else { Object.Destroy((Object)(object)((Component)this).gameObject); } } } public class StartSpawner : MonoBehaviour { public ItemSpawner WeaponSpawner; public ItemSpawner AmmoSpawner; public void Spawn() { WeaponSpawner.SpawnItem(); AmmoSpawner.SpawnItem(); if (GameSettings.LimitedAmmo) { AmmoSpawner.SpawnItem(); AmmoSpawner.SpawnItem(); } } } } public class CustomDebug : GunGame.Scripts.MonoBehaviourSingleton { public Text DebugWeaponText; public Text DebugAmmoText; } namespace CustomScripts.Gamemode.GMDebug { public class CustomItemSpawner : MonoBehaviour { public string ObjectId; [HideInInspector] public GameObject SpawnedObject; private void OnDrawGizmos() { //IL_0015: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_002f: Unknown result type (might be due to invalid IL or missing references) Gizmos.color = new Color(0f, 0f, 0.6f, 0.5f); Gizmos.matrix = ((Component)this).transform.localToWorldMatrix; Gizmos.DrawSphere(Vector3.zero, 0.1f); } public void Spawn() { //IL_0020: Unknown result type (might be due to invalid IL or missing references) //IL_002b: Unknown result type (might be due to invalid IL or missing references) FVRObject val = IM.OD[ObjectId]; GameObject gameObject = ((AnvilAsset)val).GetGameObject(); GameObject val2 = Object.Instantiate(gameObject, ((Component)this).transform.position, ((Component)this).transform.rotation); val2.SetActive(true); SpawnedObject = val2; } } } namespace GunGame.Scripts { public class CustomSosigSpawner : MonoBehaviour { public SosigEnemyID SosigType; public SosigOrder SpawnState; public int IFF; public Sosig Spawn() { //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_0007: Expected O, but got Unknown //IL_0010: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Unknown result type (might be due to invalid IL or missing references) //IL_0063: Unknown result type (might be due to invalid IL or missing references) //IL_0076: Unknown result type (might be due to invalid IL or missing references) //IL_0081: Unknown result type (might be due to invalid IL or missing references) SpawnOptions val = new SpawnOptions(); val.SpawnActivated = true; val.SpawnState = SpawnState; val.IFF = IFF; val.SpawnWithFullAmmo = true; val.EquipmentMode = (EquipmentSlots)7; val.SosigTargetPosition = ((Component)this).transform.position; val.SosigTargetRotation = ((Component)this).transform.eulerAngles; SpawnOptions val2 = val; SosigEnemyTemplate val3 = ManagerSingleton.Instance.odicSosigObjsByID[SosigType]; return SosigAPI.Spawn(val3, val2, ((Component)this).transform.position, ((Component)this).transform.rotation); } private void OnDrawGizmos() { //IL_0015: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_0045: Unknown result type (might be due to invalid IL or missing references) //IL_0050: Unknown result type (might be due to invalid IL or missing references) //IL_005a: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) Gizmos.color = new Color(0.8f, 0.2f, 0.2f, 0.5f); Gizmos.DrawSphere(((Component)this).transform.position, 0.1f); Gizmos.DrawLine(((Component)this).transform.position, ((Component)this).transform.position + ((Component)this).transform.forward * 0.25f); } } } public class DisableOnAwake : MonoBehaviour { private void Awake() { ((Component)this).gameObject.SetActive(false); } } public class DoorBanging : MonoBehaviour { public AudioSource BangingSound; private float _timer; private bool _activated; private void Awake() { if (Random.Range(0, 20) != 0) { Object.Destroy((Object)(object)this); return; } RoundManager.OnGameStarted = (Action)Delegate.Combine(RoundManager.OnGameStarted, new Action(OnGameStart)); _timer = Time.time; } private void Update() { if (!_activated && _timer + 120f <= Time.time) { BangingSound.Play(); _activated = true; } } public void OnGameStart() { Object.Destroy((Object)(object)this); } private void OnDestroy() { RoundManager.OnGameStarted = (Action)Delegate.Remove(RoundManager.OnGameStarted, new Action(OnGameStart)); } } namespace GunGame.Scripts { public class EndArea : MonoBehaviour { public Text TimeText; public Text KillsText; public Text DeathsText; public Transform EndPos; public void EndGame() { //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0028: Unknown result type (might be due to invalid IL or missing references) //IL_005e: Unknown result type (might be due to invalid IL or missing references) GM.CurrentMovementManager.TeleportToPoint(EndPos.position, true, ((Component)this).transform.position + ((Component)this).transform.forward); foreach (Transform playerSpawner in MonoBehaviourSingleton.Instance.PlayerSpawners) { ((Component)playerSpawner).transform.position = EndPos.position; } KillsText.text = "Kills: " + MonoBehaviourSingleton.Instance.Kills; DeathsText.text = "Deaths: " + MonoBehaviourSingleton.Instance.Deaths; TimeSpan timeSpan = TimeSpan.FromSeconds(MonoBehaviourSingleton.Instance.GameTime); TimeText.text = "Time: " + timeSpan.Hours.ToString("00") + ":" + timeSpan.Minutes.ToString("00") + ":" + timeSpan.Seconds.ToString("00"); } } } namespace CustomScripts.Gamemode.GMDebug { public class ErrorShower : MonoBehaviourSingleton { public Text ErrorText; public void Show(string message) { ErrorText.text = message; ((Component)ErrorText).gameObject.SetActive(true); } } } namespace GunGame.Scripts { public class GameManager : MonoBehaviourSingleton { [HideInInspector] public int Kills; [HideInInspector] public int Deaths; [HideInInspector] public bool GameEnded; public EndArea EndArea; public static Action BeforeGameStartedEvent; public static Action GameStartedEvent; public PlayerSpawner PlayerSpawner; public List PlayerSpawners; private Progression _progression; private Harmony _harmony; private float _timer; public float GameTime => Time.time - _timer; public override void Awake() { base.Awake(); _progression = ((Component)this).GetComponent(); _harmony = Harmony.CreateAndPatchAll(typeof(PlayerSpawner), (string)null); _harmony.PatchAll(typeof(SosigBehavior)); _harmony.PatchAll(typeof(Progression)); } public void StartGame() { GameEnded = false; if (BeforeGameStartedEvent != null) { BeforeGameStartedEvent(); } _progression.SpawnAndEquip(); PlayerSpawner.MovePlayerToRandomSpawn(); if (GameStartedEvent != null) { GameStartedEvent(); } _timer = Time.time; } public void RemovePausedTime(float timePaused) { _timer += timePaused; } public void EndGame() { EndArea.EndGame(); GameEnded = true; } public void DebugAdvanceWeapon() { _progression.Promote(); } public void DebugPreviousWeapon() { _progression.Demote(); } public void DebugTeleport() { PlayerSpawner.MovePlayerToRandomSpawn(); } public void DebugStart() { if (BeforeGameStartedEvent != null) { BeforeGameStartedEvent(); } _progression.SpawnAndEquip(); if (GameStartedEvent != null) { GameStartedEvent(); } _timer = Time.time; } private void OnDestroy() { _harmony.UnpatchSelf(); } } } namespace CustomScripts { public class EndPanel : MonoBehaviourSingleton { public Text TotalPointsText; public Text BestPointsText; public Text KillsText; public Text DifficultyText; public Text EnemiesTypeText; public Text LimitedAmmoText; public Text SpecialRoundsText; public Text LessZombieHPText; public void UpdatePanel() { TotalPointsText.text = "Total Points:\n" + MonoBehaviourSingleton.Instance.TotalPoints; BestPointsText.text = "High Score:\n" + MonoBehaviourSingleton.Instance.GetHighscore(); KillsText.text = "Kills:\n" + MonoBehaviourSingleton.Instance.Kills; DifficultyText.text = ((!GameSettings.HardMode) ? "Normal" : "Hard"); EnemiesTypeText.text = ((!GameSettings.UseCustomEnemies) ? "Normal" : "Custom"); LimitedAmmoText.text = ((!GameSettings.LimitedAmmo) ? "No" : "Yes"); SpecialRoundsText.text = ((!GameSettings.SpecialRoundDisabled) ? "Yes" : "No"); LessZombieHPText.text = ((!GameSettings.WeakerEnemiesEnabled) ? "No" : "Yes"); } } } namespace CustomScripts.Gamemode.GMDebug { public class CustomDebug : MonoBehaviour { public Transform Point; public PowerUpCarpenter Carpenter; public PowerUpInstaKill InstaKill; public PowerUpDeathMachine DeathMachine; public PowerUpMaxAmmo MaxAmmo; public PowerUpDoublePoints DoublePoints; public PowerUpNuke Nuke; public Blockade TrapBlockade; public ElectroTrap ElectroTrap; public Teleport TeleportToSecondArea; public Teleport TeleportToMainArea; public DeadShotPerkBottle DeadShotPerkBottle; public LootPoolChoice newLootPool; private ZombieBodyPart part; public LootPoolChoice Choice1; public LootPoolChoice Choice2; private bool _forcingSpecialEnemy; private void Update() { //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00c6: Expected O, but got Unknown //IL_00c8: Unknown result type (might be due to invalid IL or missing references) //IL_00eb: Unknown result type (might be due to invalid IL or missing references) //IL_00f0: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Expected O, but got Unknown //IL_004e: Unknown result type (might be due to invalid IL or missing references) //IL_0071: Unknown result type (might be due to invalid IL or missing references) //IL_0076: Unknown result type (might be due to invalid IL or missing references) if (Input.GetKeyDown((KeyCode)97)) { MonoBehaviourSingleton.Instance.EnableCustomEnemiesClicked(); MonoBehaviourSingleton.Instance.StartGame(); } if (Input.GetKeyDown((KeyCode)98) && MonoBehaviourSingleton.Instance.ExistingZombies.Count > 0) { Damage val = new Damage(); val.Class = (DamageClass)1; val.Dam_Piercing += 1f; val.Dam_TotalKinetic = 60000f; val.hitNormal = Vector3.back; ((Component)MonoBehaviourSingleton.Instance.ExistingZombies[0]).GetComponentInChildren().Damage(val); part = ((Component)MonoBehaviourSingleton.Instance.ExistingZombies[0]).GetComponentInChildren(); } if (Input.GetKeyDown((KeyCode)99)) { Damage val2 = new Damage(); val2.Class = (DamageClass)1; val2.Dam_Piercing += 1f; val2.Dam_TotalKinetic = 60000f; val2.hitNormal = Vector3.back; part.Damage(val2); } if (Input.GetKeyDown((KeyCode)100)) { DeadShotPerkBottle.ApplyModifier(); } if (Input.GetKeyDown((KeyCode)101)) { ((MonoBehaviour)this).StartCoroutine(MonoBehaviourSingleton.Instance.ActivateStun()); } if (Input.GetKeyDown((KeyCode)109)) { MonoBehaviourSingleton.Instance.AddPoints(300); } if (Input.GetKeyDown((KeyCode)107)) { TrapBlockade.Buy(); } if (Input.GetKeyDown((KeyCode)108)) { ElectroTrap.OnLeverPull(); } if (Input.GetKeyDown((KeyCode)47)) { MonoBehaviourSingleton.Instance.TurnOnPower(); } if (Input.GetKeyDown((KeyCode)105)) { TeleportToSecondArea.OnLeverPull(); } if (Input.GetKeyDown((KeyCode)111)) { TeleportToMainArea.OnLeverPull(); } if (Input.GetKeyDown((KeyCode)109)) { MonoBehaviourSingleton.Instance.ToggleBackgroundMusic(); } if (Input.GetKeyDown((KeyCode)91)) { Choice1.ChangePoolToThis(); } if (Input.GetKeyDown((KeyCode)93)) { Choice2.ChangePoolToThis(); } } public void SpawnCarpenter() { //IL_000d: Unknown result type (might be due to invalid IL or missing references) Carpenter.Spawn(Point.position); } public void SpawnInstaKill() { //IL_000d: Unknown result type (might be due to invalid IL or missing references) InstaKill.Spawn(Point.position); } public void SpawnDeathMachine() { //IL_000d: Unknown result type (might be due to invalid IL or missing references) DeathMachine.Spawn(Point.position); } public void SpawnMaxAmmo() { //IL_000d: Unknown result type (might be due to invalid IL or missing references) MaxAmmo.Spawn(Point.position); } public void SpawnDoublePoints() { //IL_000d: Unknown result type (might be due to invalid IL or missing references) DoublePoints.Spawn(Point.position); } public void SpawnNuke() { //IL_000d: Unknown result type (might be due to invalid IL or missing references) Nuke.Spawn(Point.position); } public void KillRandom() { if (MonoBehaviourSingleton.Instance.ExistingZombies.Count > 0) { MonoBehaviourSingleton.Instance.ExistingZombies[0].OnHit(99999f); } } public void ToggleForceSpecialRound() { if (_forcingSpecialEnemy) { MonoBehaviourSingleton.Instance.SpecialRoundInterval = 8; _forcingSpecialEnemy = false; } else { MonoBehaviourSingleton.Instance.SpecialRoundInterval = 1; _forcingSpecialEnemy = true; } } } public class DebugDamagableShower : MonoBehaviour, IFVRDamageable { public Text Text; public Text LowestText; public Text HighestText; public float DamageSum; public float LowestDam; public float HighestDam; public void Damage(Damage dam) { DamageSum += dam.Dam_TotalKinetic; if (LowestDam < dam.Dam_TotalKinetic) { LowestDam = dam.Dam_TotalKinetic; } if (HighestDam > dam.Dam_TotalKinetic) { HighestDam = dam.Dam_TotalKinetic; } Text.text = "Kinetic: " + DamageSum; LowestText.text = "Lowest: " + LowestDam; HighestText.text = "Highest: " + HighestDam; } public void ResetData() { DamageSum = 0f; LowestDam = float.MaxValue; HighestDam = float.MinValue; Text.text = "Kinetic: " + 0; LowestText.text = "Lowest: " + 0; HighestText.text = "Highest: " + 0; } } public class MoveTest : MonoBehaviour { [FormerlySerializedAs("isMoving")] public bool IsMoving; public float Speed; private void Update() { //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_002a: Unknown result type (might be due to invalid IL or missing references) //IL_002f: Unknown result type (might be due to invalid IL or missing references) //IL_0049: Unknown result type (might be due to invalid IL or missing references) //IL_004e: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) if (IsMoving) { Transform transform = ((Component)this).transform; transform.position += Vector3.forward * (Speed * Time.deltaTime); Transform transform2 = ((Component)MonoBehaviourSingleton.Instance.Player).transform; transform2.position += Vector3.forward * (Speed * Time.deltaTime); } } public void StartMoving() { IsMoving = true; } } } namespace CustomScripts { public class GameReferences : MonoBehaviourSingleton { public Color CanBuyColor; public Color CannotBuyColor; [HideInInspector] public List Windows; [HideInInspector] public Transform Player; [SerializeField] private Transform DebugPlayer; [HideInInspector] public Transform PlayerHead; [SerializeField] private Transform DebugPlayerHead; public override void Awake() { base.Awake(); Player = DebugPlayer; PlayerHead = DebugPlayerHead; Windows = Object.FindObjectsOfType().ToList(); } private IEnumerator Start() { while ((Object)(object)GM.CurrentPlayerBody == (Object)null) { yield return null; } Player = ((Component)GM.CurrentPlayerBody).transform; PlayerHead = ((Component)GM.CurrentPlayerBody.Head).transform; } public bool IsPlayerClose(Transform pos, float dist) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) return Vector3.Distance(pos.position, Player.position) <= dist; } } public class GameSettings : MonoBehaviourSingleton { public static Action OnSettingsChanged; public static Action OnMusicSettingChanged; public LootPool DefaultLootPool; [HideInInspector] public LootPool CurrentLootPool; [HideInInspector] public List LootPoolChoices; public static bool HardMode; public static bool UseCustomEnemies; public static bool LimitedAmmo; public static bool SpecialRoundDisabled; public static bool ItemSpawnerEnabled; public static bool WeakerEnemiesEnabled; public static bool BackgroundMusic; public Text OptionDescriptionText; private void Start() { LootPoolChoices = Object.FindObjectsOfType().ToList(); if (LootPoolChoices.Count == 0) { Debug.LogError((object)"No LootPoolChoices in the scene, At least one component has to be present"); } if (Object.op_Implicit((Object)(object)DefaultLootPool)) { CurrentLootPool = DefaultLootPool; } else { CurrentLootPool = LootPoolChoices[0].LootPool; } if (Object.op_Implicit((Object)(object)CurrentLootPool)) { foreach (LootPoolChoice lootPoolChoice in LootPoolChoices) { if ((Object)(object)lootPoolChoice.LootPool == (Object)(object)CurrentLootPool) { lootPoolChoice.IsEnabled = true; } } } OptionDescriptionText.text = "Call of Duty\nZOMBIES"; if (Random.Range(0, 500) == 0) { switch (Random.Range(0, 7)) { case 0: OptionDescriptionText.text = "You are my sunshine,\nMy only sunshine"; break; case 1: OptionDescriptionText.text = "I missed you"; break; case 2: OptionDescriptionText.text = "Play with me"; break; case 3: OptionDescriptionText.text = "It's just a game, mostly"; break; case 4: OptionDescriptionText.text = "I have granted kids to hell"; break; case 5: OptionDescriptionText.text = "It's only partially your fault"; break; } } } public void RestoreDefaultSettings() { HardMode = false; LimitedAmmo = false; UseCustomEnemies = false; ItemSpawnerEnabled = false; SpecialRoundDisabled = false; WeakerEnemiesEnabled = false; OptionDescriptionText.text = "Default settings restored."; if (OnSettingsChanged != null) { OnSettingsChanged(); } } public void DifficultyNormalClicked() { HardMode = false; if (OnSettingsChanged != null) { OnSettingsChanged(); } OptionDescriptionText.text = "Normal mode: Normal Enemy speed, HP and numbers."; } public void DifficultyHardClicked() { HardMode = true; if (OnSettingsChanged != null) { OnSettingsChanged(); } OptionDescriptionText.text = "Hard mode: Increased Enemy speed, HP and numbers."; } public void EnableCustomEnemiesClicked() { UseCustomEnemies = true; if (OnSettingsChanged != null) { OnSettingsChanged(); } OptionDescriptionText.text = "Custom humanoid enemies\n(Instead of Sosigs)."; } public void DisableCustomEnemiesClicked() { UseCustomEnemies = false; if (OnSettingsChanged != null) { OnSettingsChanged(); } OptionDescriptionText.text = "Default Sosig zombies."; } public void EnableLimitedAmmoClicked() { LimitedAmmo = true; if (OnSettingsChanged != null) { OnSettingsChanged(); } OptionDescriptionText.text = "Cannot use Spawnlock. Restore ammunition from Max Ammo power ups or buy it from a wall."; } public void DisableLimitedAmmoClicked() { LimitedAmmo = false; if (OnSettingsChanged != null) { OnSettingsChanged(); } OptionDescriptionText.text = "Spawnlock enabled."; } public void EnableSpecialRoundClicked() { SpecialRoundDisabled = false; if (OnSettingsChanged != null) { OnSettingsChanged(); } OptionDescriptionText.text = "Special round inspired by Hellhounds, occurs every 8 rounds."; } public void DisableSpecialRoundClicked() { SpecialRoundDisabled = true; if (OnSettingsChanged != null) { OnSettingsChanged(); } OptionDescriptionText.text = "Special round disabled."; } public void EnableItemSpawnerClicked() { ItemSpawnerEnabled = true; if (OnSettingsChanged != null) { OnSettingsChanged(); } OptionDescriptionText.text = "Item Spawner will appear at the starting location. Scoring will be disabled for that game."; } public void DisableItemSpawnerClicked() { ItemSpawnerEnabled = false; if (OnSettingsChanged != null) { OnSettingsChanged(); } OptionDescriptionText.text = "No Item Spawner. Scoring enabled"; } public void EnableWeakerEnemiesClicked() { WeakerEnemiesEnabled = true; if (OnSettingsChanged != null) { OnSettingsChanged(); } OptionDescriptionText.text = "Enemies have reduced HP"; } public void DisableWeakerEnemiesClicked() { WeakerEnemiesEnabled = false; if (OnSettingsChanged != null) { OnSettingsChanged(); } OptionDescriptionText.text = "Enemies have normal HP"; } public void ToggleBackgroundMusic() { BackgroundMusic = !BackgroundMusic; if (OnMusicSettingChanged != null) { OnMusicSettingChanged(); } if (OnSettingsChanged != null) { OnSettingsChanged(); } } public void ChangeLootPool(LootPoolChoice newLootPool) { foreach (LootPoolChoice lootPoolChoice in LootPoolChoices) { lootPoolChoice.IsEnabled = false; } newLootPool.IsEnabled = true; CurrentLootPool = newLootPool.LootPool; if (OnSettingsChanged != null) { OnSettingsChanged(); } } } public class GameSettingsPanel : MonoBehaviour { public Text BackgroundMusic; public Text DifficultyNormalText; public Text DifficultyHardText; public Text CustomEnemiesEnabledText; public Text CustomEnemiesDisabledText; public Text LimitedAmmoEnabledText; public Text LimitedAmmoDisabledText; public Text SpecialRoundEnabledText; public Text SpecialRoundDisabledText; public Text ItemSpawnerEnabledText; public Text ItemSpawnerDisabledText; public Text WeakerZombiesEnabledText; public Text WeakerZombiesDisabledText; public Color EnabledColor; public Color DisabledColor; private void Awake() { GameSettings.OnSettingsChanged = (Action)Delegate.Combine(GameSettings.OnSettingsChanged, new Action(UpdateText)); } private void Start() { UpdateText(); } private void OnDestroy() { GameSettings.OnSettingsChanged = (Action)Delegate.Remove(GameSettings.OnSettingsChanged, new Action(UpdateText)); } private void UpdateText() { //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_0067: Unknown result type (might be due to invalid IL or missing references) //IL_005c: Unknown result type (might be due to invalid IL or missing references) //IL_008d: Unknown result type (might be due to invalid IL or missing references) //IL_0082: Unknown result type (might be due to invalid IL or missing references) //IL_00b3: Unknown result type (might be due to invalid IL or missing references) //IL_00a8: Unknown result type (might be due to invalid IL or missing references) //IL_00d9: Unknown result type (might be due to invalid IL or missing references) //IL_00ce: Unknown result type (might be due to invalid IL or missing references) //IL_00ff: Unknown result type (might be due to invalid IL or missing references) //IL_00f4: Unknown result type (might be due to invalid IL or missing references) //IL_0125: Unknown result type (might be due to invalid IL or missing references) //IL_011a: Unknown result type (might be due to invalid IL or missing references) //IL_014b: Unknown result type (might be due to invalid IL or missing references) //IL_0140: Unknown result type (might be due to invalid IL or missing references) //IL_0171: Unknown result type (might be due to invalid IL or missing references) //IL_0166: Unknown result type (might be due to invalid IL or missing references) //IL_0197: Unknown result type (might be due to invalid IL or missing references) //IL_018c: Unknown result type (might be due to invalid IL or missing references) //IL_01bd: Unknown result type (might be due to invalid IL or missing references) //IL_01b2: Unknown result type (might be due to invalid IL or missing references) //IL_01e3: Unknown result type (might be due to invalid IL or missing references) //IL_01d8: Unknown result type (might be due to invalid IL or missing references) //IL_0229: Unknown result type (might be due to invalid IL or missing references) //IL_021e: Unknown result type (might be due to invalid IL or missing references) BackgroundMusic.text = ((!GameSettings.BackgroundMusic) ? "Disabled" : "Enabled"); ((Graphic)DifficultyNormalText).color = ((!GameSettings.HardMode) ? EnabledColor : DisabledColor); ((Graphic)DifficultyHardText).color = ((!GameSettings.HardMode) ? DisabledColor : EnabledColor); ((Graphic)CustomEnemiesEnabledText).color = ((!GameSettings.UseCustomEnemies) ? DisabledColor : EnabledColor); ((Graphic)CustomEnemiesDisabledText).color = ((!GameSettings.UseCustomEnemies) ? EnabledColor : DisabledColor); ((Graphic)LimitedAmmoEnabledText).color = ((!GameSettings.LimitedAmmo) ? DisabledColor : EnabledColor); ((Graphic)LimitedAmmoDisabledText).color = ((!GameSettings.LimitedAmmo) ? EnabledColor : DisabledColor); ((Graphic)SpecialRoundEnabledText).color = ((!GameSettings.SpecialRoundDisabled) ? EnabledColor : DisabledColor); ((Graphic)SpecialRoundDisabledText).color = ((!GameSettings.SpecialRoundDisabled) ? DisabledColor : EnabledColor); ((Graphic)ItemSpawnerEnabledText).color = ((!GameSettings.ItemSpawnerEnabled) ? DisabledColor : EnabledColor); ((Graphic)ItemSpawnerDisabledText).color = ((!GameSettings.ItemSpawnerEnabled) ? EnabledColor : DisabledColor); ((Graphic)WeakerZombiesEnabledText).color = ((!GameSettings.WeakerEnemiesEnabled) ? DisabledColor : EnabledColor); ((Graphic)WeakerZombiesDisabledText).color = ((!GameSettings.WeakerEnemiesEnabled) ? EnabledColor : DisabledColor); foreach (LootPoolChoice lootPoolChoice in MonoBehaviourSingleton.Instance.LootPoolChoices) { ((Graphic)lootPoolChoice.LootChoiceText).color = ((!lootPoolChoice.IsEnabled) ? DisabledColor : EnabledColor); } } } public class GameStart : MonoBehaviourSingleton { private void OnDrawGizmos() { //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) Gizmos.color = Color.red; Gizmos.DrawSphere(((Component)this).transform.position, 0.5f); } } public class HighscoreShower : MonoBehaviour { public Text HighscoreText; private void Start() { HighscoreText.text = "Highscore:\n" + MonoBehaviourSingleton.Instance.GetHighscore(); } } public class LeverWrapper : MonoBehaviour { public UnityEvent LeverToggleEvent; public UnityEvent LeverOnEvent; public UnityEvent LeverOffEvent; public UnityEvent LeverHoldStartEvent; public UnityEvent LeverHoldEndEvent; private TrapLever _lever; private bool _isOn; private bool _isHeld; private void Awake() { _lever = ((Component)this).GetComponentInChildren(); _lever.MessageTargets.Add(((Component)this).gameObject); } private void Update() { if (!_isHeld && ((FVRInteractiveObject)_lever).IsHeld) { OnHoldStart(); } else if (_isHeld && !((FVRInteractiveObject)_lever).IsHeld) { OnHoldEnd(); } } private void OnHoldStart() { _isHeld = true; if (LeverHoldStartEvent != null) { LeverHoldStartEvent.Invoke(); } } private void OnHoldEnd() { _isHeld = false; if (LeverHoldEndEvent != null) { LeverHoldEndEvent.Invoke(); } } public void ON() { if (!_isOn) { _isOn = true; if (LeverToggleEvent != null) { LeverToggleEvent.Invoke(); } if (LeverOnEvent != null) { LeverOnEvent.Invoke(); } } } public void OFF() { if (_isOn) { _isOn = false; if (LeverToggleEvent != null) { LeverToggleEvent.Invoke(); } if (LeverOffEvent != null) { LeverOffEvent.Invoke(); } } } } } namespace CustomScripts.Gamemode { public class PointsView : MonoBehaviour { public Text PointsText; private void Awake() { GameManager.OnPointsChanged = (Action)Delegate.Combine(GameManager.OnPointsChanged, new Action(OnPointsChanged)); } private void OnDestroy() { GameManager.OnPointsChanged = (Action)Delegate.Remove(GameManager.OnPointsChanged, new Action(OnPointsChanged)); } private void OnPointsChanged() { PointsText.text = "Points:\n" + MonoBehaviourSingleton.Instance.Points; } } } public class GunsLeftUI : MonoBehaviour { private Text _gunsLeftText; private void Awake() { _gunsLeftText = ((Component)this).GetComponent(); Progression.WeaponChangedEvent = (Action)Delegate.Combine(Progression.WeaponChangedEvent, new Action(UpdateUI)); } private void UpdateUI() { int num = Mathf.Min(GunGame.Scripts.Options.GameSettings.CurrentPool.Guns.Count, WeaponCountOption.WeaponCount); int num2 = GunGame.Scripts.MonoBehaviourSingleton.Instance.CurrentWeaponId + 1; int num3 = num - num2; _gunsLeftText.text = "Guns left: " + num3; } private void OnDestroy() { Progression.WeaponChangedEvent = (Action)Delegate.Remove(Progression.WeaponChangedEvent, new Action(UpdateUI)); } } public class Location : MonoBehaviour { public List ZombieSpawnPoints; public List SpecialZombieSpawnPoints; private void Start() { if (ZombieSpawnPoints.Count == 0) { Debug.LogError((object)"ZombieSpawnPoints is empty, zombies don't have a place to spawn"); } if (SpecialZombieSpawnPoints.Count == 0) { Debug.LogError((object)"SpecialZombieSpawnPoints is empty, special zombies don't have a place to spawn"); } } } [CreateAssetMenu] public class LootPool : ScriptableObject { public string LootPoolTitle; [Header("Elements in the list corresponds to the ID of the Wallshops.")] public List WallShopsPool; public List MysteryBoxPool; public List LimitedAmmoMysteryBoxPool; public HashSet PackAPunchPool => GetPackAPunchPool(); public HashSet GetPackAPunchPool() { HashSet hashSet = new HashSet(); foreach (WeaponData item in WallShopsPool) { hashSet.Add(item); } foreach (WeaponData item2 in MysteryBoxPool) { hashSet.Add(item2); } foreach (WeaponData item3 in LimitedAmmoMysteryBoxPool) { hashSet.Add(item3); } return hashSet; } } public class LootPoolChoice : MonoBehaviour { public LootPool LootPool; public Text LootChoiceText; [HideInInspector] public bool IsEnabled; private void Awake() { LootChoiceText.text = LootPool.LootPoolTitle; } public void ChangePoolToThis() { CustomScripts.MonoBehaviourSingleton.Instance.ChangeLootPool(this); IsEnabled = true; } } namespace CustomScripts.Gamemode { public class MagazineWrapper : MonoBehaviour { private FVRFireArmMagazine _magazine; private FVRFireArmClip _clip; private Speedloader _speedloader; public FireArmRoundClass RoundClass; public void Initialize(FVRFireArmMagazine magazine) { //IL_0016: Unknown result type (might be due to invalid IL or missing references) _magazine = magazine; RoundClass = magazine.DefaultLoadingPattern.Classes[0]; } public void InitialzieWithAmmo(FVRFireArmMagazine magazine, FireArmRoundClass roundClass) { //IL_0009: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) _magazine = magazine; RoundClass = roundClass; } public void InitialzieWithAmmo(FVRFireArmClip clip, FireArmRoundClass roundClass) { //IL_0009: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) _clip = clip; RoundClass = roundClass; } public void InitialzieWithAmmo(Speedloader speedloader, FireArmRoundClass roundClass) { //IL_0009: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) _speedloader = speedloader; RoundClass = roundClass; } } } namespace CustomScripts { public class GameManager : MonoBehaviourSingleton { public static Action OnPointsChanged; public static Action OnPowerEnabled; [HideInInspector] public int Points; [HideInInspector] public int TotalPoints; [HideInInspector] public bool GameStarted = false; [HideInInspector] public bool GameEnded = false; public Transform StartGameWaypoint; public WallShop FirstShop; public bool PowerEnabled; [HideInInspector] public int Kills; private Harmony _harmony; public override void Awake() { base.Awake(); _harmony = Harmony.CreateAndPatchAll(typeof(PlayerData), (string)null); _harmony.PatchAll(typeof(PlayerSpawner)); _harmony.PatchAll(typeof(ZombieManager)); } public void TurnOnPower() { if (!PowerEnabled) { PowerEnabled = true; MonoBehaviourSingleton.Instance.Play(MonoBehaviourSingleton.Instance.PowerOnSound, 0.8f); if (OnPowerEnabled != null) { OnPowerEnabled(); } } } public void AddPoints(int amount) { float num = (float)amount * MonoBehaviourSingleton.Instance.MoneyModifier; MonoBehaviourSingleton.Instance.MoneyModifier.ToString(); amount = (int)num; Points += amount; TotalPoints += amount; if (OnPointsChanged != null) { OnPointsChanged(); } } public bool TryRemovePoints(int amount) { if (Points >= amount) { Points -= amount; if (OnPointsChanged != null) { OnPointsChanged(); } return true; } return false; } public void KillPlayer() { if (!GameEnded) { GM.CurrentPlayerBody.KillPlayer(false); } } public void EndGame() { if (!GameEnded) { GameEnded = true; MonoBehaviourSingleton.Instance.PlayMusic(MonoBehaviourSingleton.Instance.EndMusic, 0.25f, 1f); MonoBehaviourSingleton.Instance.UpdatePanel(); if (!GameSettings.ItemSpawnerEnabled) { MonoBehaviourSingleton.Instance.SaveHighscore(TotalPoints); } } } private void OnDestroy() { _harmony.UnpatchSelf(); } } public class PowerUpManager : MonoBehaviourSingleton { public float ChanceForAmmo = 2.5f; public float ChanceForPowerUp = 6f; public float AmmoCooldownTime; public float PowerUpCooldownTime; public PowerUpMaxAmmo MaxAmmo; public List PowerUps; private readonly List _randomIndexes = new List(); private bool _isPowerUpCooldown; private bool _isMaxAmmoCooldown; public override void Awake() { base.Awake(); RoundManager.OnZombieKilled = (Action)Delegate.Remove(RoundManager.OnZombieKilled, new Action(RollForPowerUp)); RoundManager.OnZombieKilled = (Action)Delegate.Combine(RoundManager.OnZombieKilled, new Action(RollForPowerUp)); ShuffleIndexes(); } private void OnDestroy() { RoundManager.OnZombieKilled = (Action)Delegate.Remove(RoundManager.OnZombieKilled, new Action(RollForPowerUp)); } public void RollForPowerUp(GameObject spawnPos) { //IL_004e: Unknown result type (might be due to invalid IL or missing references) //IL_00cc: Unknown result type (might be due to invalid IL or missing references) float num = Random.Range(0f, 100f); if (GameSettings.LimitedAmmo && !_isMaxAmmoCooldown && num < ChanceForAmmo) { ((MonoBehaviour)this).StartCoroutine(PowerUpMaxAmmoCooldown()); SpawnPowerUp(MaxAmmo, spawnPos.transform.position); } else { if (_isPowerUpCooldown) { return; } num = Random.Range(0f, 100f); if (num < ChanceForPowerUp) { if (_randomIndexes.Count == 0) { ShuffleIndexes(); } ((MonoBehaviour)this).StartCoroutine(PowerUpMaxAmmoCooldown()); SpawnPowerUp(PowerUps[_randomIndexes[0]], spawnPos.transform.position); _randomIndexes.RemoveAt(0); } } } private void ShuffleIndexes() { _randomIndexes.Clear(); for (int i = 0; i < PowerUps.Count; i++) { _randomIndexes.Add(i); } _randomIndexes.Shuffle(); } public void SpawnPowerUp(PowerUp powerUp, Vector3 pos) { //IL_002b: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) if ((Object)(object)powerUp == (Object)null) { Debug.LogWarning((object)"PowerUp spawn failed! PowerUp == null"); return; } ((MonoBehaviour)this).StartCoroutine(PowerUpCooldown()); powerUp.Spawn(pos + Vector3.up); } private IEnumerator PowerUpCooldown() { _isPowerUpCooldown = true; yield return (object)new WaitForSeconds(PowerUpCooldownTime); _isPowerUpCooldown = false; } private IEnumerator PowerUpMaxAmmoCooldown() { _isMaxAmmoCooldown = true; yield return (object)new WaitForSeconds(AmmoCooldownTime); _isMaxAmmoCooldown = false; } } public class RoundManager : MonoBehaviourSingleton { public static Action RoundStarted; public static Action RoundEnded; public static Action OnRoundChanged; public static Action OnZombiesLeftChanged; public static Action OnZombieKilled; public static Action OnGameStarted; public int ZombieFastWalkRound = 2; public int ZombieRunRound = 6; public int HardModeFastWalkRound = 0; public int HardModeRunRound = 3; public int SpecialRoundInterval; [HideInInspector] public int RoundNumber = 0; private Coroutine _roundDelayCoroutine; public bool IsRoundSpecial { get { if (GameSettings.SpecialRoundDisabled) { return false; } return RoundNumber % SpecialRoundInterval == 0; } } public bool IsFastWalking { get { if (GameSettings.HardMode) { return RoundNumber >= HardModeFastWalkRound; } return RoundNumber >= ZombieFastWalkRound; } } public bool IsRunning { get { if (GameSettings.HardMode) { return RoundNumber >= HardModeRunRound; } return RoundNumber >= ZombieRunRound; } } public void StartGame() { //IL_001b: Unknown result type (might be due to invalid IL or missing references) if (!Application.isEditor) { GM.CurrentMovementManager.TeleportToPoint(MonoBehaviourSingleton.Instance.StartGameWaypoint.position, true); GM.CurrentSceneSettings.IsSpawnLockingEnabled = !GameSettings.LimitedAmmo; } MonoBehaviourSingleton.Instance.GameStarted = true; RoundNumber = 0; AdvanceRound(); if (OnGameStarted != null) { OnGameStarted(); } if (Object.op_Implicit((Object)(object)MonoBehaviourSingleton.Instance.FirstShop)) { MonoBehaviourSingleton.Instance.FirstShop.IsFree = true; MonoBehaviourSingleton.Instance.FirstShop.TryBuying(); } } public void AdvanceRound() { if (!MonoBehaviourSingleton.Instance.GameEnded) { RoundNumber++; MonoBehaviourSingleton.Instance.BeginSpawningEnemies(); if (OnZombiesLeftChanged != null) { OnZombiesLeftChanged(); } if (OnRoundChanged != null) { OnRoundChanged(); } } } public void EndRound() { MonoBehaviourSingleton.Instance.Play(MonoBehaviourSingleton.Instance.RoundEndSound, 0.2f, 1f); if (RoundEnded != null) { RoundEnded(); } if (GameSettings.LimitedAmmo) { _roundDelayCoroutine = ((MonoBehaviour)this).StartCoroutine(DelayedAdvanceRound(20f)); } else { _roundDelayCoroutine = ((MonoBehaviour)this).StartCoroutine(DelayedAdvanceRound(17f)); } } private IEnumerator DelayedAdvanceRound(float delay) { yield return (object)new WaitForSeconds(delay); AdvanceRound(); if (RoundStarted != null) { RoundStarted(); } } public void PauseGame() { ((MonoBehaviour)this).StopCoroutine(_roundDelayCoroutine); } public void ResumeGame() { _roundDelayCoroutine = ((MonoBehaviour)this).StartCoroutine(DelayedAdvanceRound(0f)); } } public class AudioManager : MonoBehaviourSingleton { public List FarZombieSounds; public List CloseZombieSounds; public List HellHoundsSounds; public AudioSource MainAudioSource; public AudioSource MusicAudioSource; [Space(20f)] public AudioClip Music; public AudioClip BuySound; public AudioClip DrinkSound; public AudioClip ZombieHitSound; public AudioClip ZombieDeathSound; public AudioClip HellHoundSpawnSound; public AudioClip HellHoundDeathSound; public AudioClip RoundStartSound; public AudioClip RoundEndSound; public AudioClip HellHoundRoundStartSound; public AudioClip PowerOnSound; public AudioClip EndMusic; public AudioClip TeleportingSound; public AudioClip PlayerHitSound; public AudioClip BarricadeRepairSound; private Coroutine _musicRepetition; public override void Awake() { base.Awake(); GameSettings.OnMusicSettingChanged = (Action)Delegate.Combine(GameSettings.OnMusicSettingChanged, new Action(OnMusicSettingChanged)); } private void OnMusicSettingChanged() { if (GameSettings.BackgroundMusic) { PlayMusic(Music, 0.08f, 0f, repeat: true); } else { MusicAudioSource.Stop(); } } public void Play(AudioClip audioClip, float volume = 1f, float delay = 0f) { if (delay != 0f) { ((MonoBehaviour)this).StartCoroutine(PlayDelayed(audioClip, volume, delay)); } else { MainAudioSource.PlayOneShot(audioClip, volume); } } private IEnumerator PlayDelayed(AudioClip audioClip, float volume, float delay) { yield return (object)new WaitForSeconds(delay); MainAudioSource.PlayOneShot(audioClip, volume); } public void PlayMusic(AudioClip audioClip, float volume = 1f, float delay = 0f, bool repeat = false) { if (_musicRepetition != null) { ((MonoBehaviour)this).StopCoroutine(_musicRepetition); _musicRepetition = null; } MusicAudioSource.clip = audioClip; MusicAudioSource.volume = volume; MusicAudioSource.PlayDelayed(delay); if (repeat) { _musicRepetition = ((MonoBehaviour)this).StartCoroutine(RepeatMusic(audioClip.length, volume)); } } private IEnumerator RepeatMusic(float endTimer, float volume) { yield return (object)new WaitForSeconds(endTimer); if (GameSettings.BackgroundMusic) { PlayMusic(Music, 0.08f, 0f, repeat: true); } } private void OnDestroy() { GameSettings.OnMusicSettingChanged = (Action)Delegate.Remove(GameSettings.OnMusicSettingChanged, new Action(OnMusicSettingChanged)); } } } namespace CustomScripts.Managers.Sound { public class MusicManager : MonoBehaviourSingleton { } } namespace CustomScripts { public class SoundPool : MonoBehaviour { public List PooledAudioSources; public static SoundPool Instance { get; private set; } private void Awake() { if ((Object)(object)Instance == (Object)null) { Instance = this; } } public SoundPoolableObject Spawn() { if (PooledAudioSources.Count <= 0) { return null; } SoundPoolableObject result = PooledAudioSources[0]; PooledAudioSources.RemoveAt(0); return result; } public void Despawn(SoundPoolableObject soundPoolable) { PooledAudioSources.Add(soundPoolable); } } public class SoundPoolableObject : MonoBehaviour { public AudioSource AudioSource; public float DespawnTime = 4f; public void Initialize() { AudioSource.Play(); ((MonoBehaviour)this).StartCoroutine(DespawnDelay()); } private IEnumerator DespawnDelay() { yield return (object)new WaitForSeconds(DespawnTime); SoundPool.Instance.Despawn(this); } } } namespace CustomScripts.Managers { public class ZombieManager : MonoBehaviourSingleton { public static Action LocationChangedEvent; public Location CurrentLocation; public ZombiePool NormalZombiePool; public ZombiePool SpecialZombiePool; public AnimationCurve ZombieCountCurve; public AnimationCurve CustomZombieHPCurve; public AnimationCurve ZosigHPCurve; public AnimationCurve ZosigLinkIntegrityCurve; public AnimationCurve ZosigPerRoundSpeed; public int CustomZombieDamage = 2000; public int PointsOnHit = 10; public int PointsOnKill = 100; public List AllCustomZombies; [HideInInspector] public List ExistingZombies; private Transform _zombieTarget; public ParticleSystem HellhoundExplosionPS; public int ZombieAtOnceLimit = 20; [HideInInspector] public int ZombiesRemaining; private Coroutine _spawningCoroutine; private int ZombiesToSpawnThisRound { get { if (GameSettings.HardMode) { return Mathf.CeilToInt(ZombieCountCurve.Evaluate((float)MonoBehaviourSingleton.Instance.RoundNumber) + 1f); } return Mathf.CeilToInt(ZombieCountCurve.Evaluate((float)MonoBehaviourSingleton.Instance.RoundNumber)); } } public void BeginSpawningEnemies() { ZombiesRemaining = ZombiesToSpawnThisRound; if (MonoBehaviourSingleton.Instance.IsRoundSpecial) { StartSpawningZombies(6f); MonoBehaviourSingleton.Instance.Play(MonoBehaviourSingleton.Instance.HellHoundRoundStartSound, 0.35f); } else { StartSpawningZombies(2f); MonoBehaviourSingleton.Instance.Play(MonoBehaviourSingleton.Instance.RoundStartSound, 0.2f, 1f); } } public void StartSpawningZombies(float initialDelay) { _spawningCoroutine = ((MonoBehaviour)this).StartCoroutine(DelayedZombieSpawn(initialDelay)); } public void OnZombieSpawned(ZombieController controller) { ((MonoBehaviour)this).StartCoroutine(DelayedCustomZombieSpawn(controller)); } private IEnumerator DelayedZombieSpawn(float delay) { yield return (object)new WaitForSeconds(delay); while (ZombiesRemaining > ExistingZombies.Count) { if (ExistingZombies.Count >= ZombieAtOnceLimit) { yield return (object)new WaitForSeconds(5f); continue; } _zombieTarget = MonoBehaviourSingleton.Instance.Player; if (!GameSettings.UseCustomEnemies) { SpawnZosig(); } else if (MonoBehaviourSingleton.Instance.IsRoundSpecial) { SpecialZombiePool.Spawn(); } else { NormalZombiePool.Spawn(); } yield return (object)new WaitForSeconds(2f); } } private IEnumerator DelayedCustomZombieSpawn(ZombieController controller) { yield return null; Transform spawnPoint = null; spawnPoint = ((!MonoBehaviourSingleton.Instance.IsRoundSpecial) ? CurrentLocation.ZombieSpawnPoints[Random.Range(0, CurrentLocation.ZombieSpawnPoints.Count)] : ((Component)CurrentLocation.SpecialZombieSpawnPoints[Random.Range(0, CurrentLocation.SpecialZombieSpawnPoints.Count)]).transform); if ((Object)(object)((Component)spawnPoint).GetComponent() != (Object)null) { Window windowWaypoint = ((Component)spawnPoint).GetComponent().WindowWaypoint; if ((Object)(object)windowWaypoint != (Object)null) { _zombieTarget = windowWaypoint.ZombieWaypoint; } } ExistingZombies.Add(controller); if (MonoBehaviourSingleton.Instance.IsRoundSpecial) { ((Component)spawnPoint).GetComponent().SpawnPS.Play(true); if (MonoBehaviourSingleton.Instance.IsRoundSpecial) { MonoBehaviourSingleton.Instance.Play(MonoBehaviourSingleton.Instance.HellHoundSpawnSound, 0.4f, 0.25f); } yield return (object)new WaitForSeconds(2f); } if (ExistingZombies.Contains(controller)) { ((Component)controller).transform.position = spawnPoint.position; controller.Initialize(_zombieTarget); if (MonoBehaviourSingleton.Instance.IsRoundSpecial) { controller.InitializeSpecialType(); } } } public void SpawnZosig() { if (MonoBehaviourSingleton.Instance.IsRoundSpecial) { CustomSosigSpawnPoint component = ((Component)CurrentLocation.SpecialZombieSpawnPoints[Random.Range(0, CurrentLocation.SpecialZombieSpawnPoints.Count)]).GetComponent(); component.Spawn(); return; } CustomSosigSpawnPoint component2 = ((Component)CurrentLocation.ZombieSpawnPoints[Random.Range(0, CurrentLocation.ZombieSpawnPoints.Count)]).GetComponent(); Window windowWaypoint = ((Component)component2).GetComponent().WindowWaypoint; if ((Object)(object)windowWaypoint != (Object)null) { _zombieTarget = windowWaypoint.ZombieWaypoint; } component2.Spawn(); } public void OnZosigSpawned(Sosig zosig) { ZombieController zombieController = ((Component)zosig).gameObject.AddComponent(); zombieController.Initialize(_zombieTarget); ExistingZombies.Add(zombieController); if (MonoBehaviourSingleton.Instance.IsRoundSpecial) { zombieController.InitializeSpecialType(); } } public void ChangeLocation(Location newLocation) { if (_spawningCoroutine != null) { ((MonoBehaviour)this).StopCoroutine(_spawningCoroutine); } CurrentLocation = newLocation; for (int num = ExistingZombies.Count - 1; num >= 0; num--) { ExistingZombies[num].OnKill(awardPoints: false); } StartSpawningZombies(5f); if (LocationChangedEvent != null) { LocationChangedEvent(); } } public void OnZombieDied(ZombieController controller, bool awardKill = true) { //IL_0091: Unknown result type (might be due to invalid IL or missing references) MonoBehaviourSingleton.Instance.Kills++; if (GameSettings.UseCustomEnemies) { ((MonoBehaviour)this).StartCoroutine(DelayedCustomZombieDespawn(((Component)controller).GetComponent())); } ExistingZombies.Remove(controller); if (!awardKill) { return; } ZombiesRemaining--; if (ZombiesRemaining <= 0) { if (MonoBehaviourSingleton.Instance.IsRoundSpecial && GameSettings.LimitedAmmo) { MonoBehaviourSingleton.Instance.SpawnPowerUp(MonoBehaviourSingleton.Instance.MaxAmmo, ((Component)controller).transform.position); } MonoBehaviourSingleton.Instance.EndRound(); } if (RoundManager.OnZombiesLeftChanged != null) { RoundManager.OnZombiesLeftChanged(); } if (RoundManager.OnZombieKilled != null) { RoundManager.OnZombieKilled(((Component)controller).gameObject); } } private IEnumerator DelayedCustomZombieDespawn(CustomZombieController controller) { if (MonoBehaviourSingleton.Instance.IsRoundSpecial) { yield return (object)new WaitForSeconds(0f); SpecialZombiePool.Despawn(controller); } else { yield return (object)new WaitForSeconds(5f); NormalZombiePool.Despawn(controller); } } [HarmonyPatch(typeof(Sosig), "SosigDies")] [HarmonyPostfix] private static void OnSosigDied(Sosig __instance, DamageClass damClass, SosigDeathType deathType) { ((Component)__instance).GetComponent().OnKill(); } [HarmonyPatch(typeof(Sosig), "ProcessDamage", new Type[] { typeof(Damage), typeof(SosigLink) })] [HarmonyPrefix] private static void BeforeZombieHit(Damage d, SosigLink link) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Invalid comparison between Unknown and I4 if ((int)d.Class == 3 && d.Source_IFF != GM.CurrentSceneSettings.DefaultPlayerIFF) { d.Dam_Blinding = 0f; d.Dam_TotalKinetic = 0f; d.Dam_TotalEnergetic = 0f; d.Dam_Blunt = 0f; d.Dam_Chilling = 0f; d.Dam_Cutting = 0f; d.Dam_Thermal = 0f; d.Dam_EMP = 0f; d.Dam_Piercing = 0f; d.Dam_Stunning = 0f; } } [HarmonyPatch(typeof(Sosig), "ProcessDamage", new Type[] { typeof(Damage), typeof(SosigLink) })] [HarmonyPostfix] private static void AfterZombieHit(Sosig __instance, Damage d, SosigLink link) { ((Component)__instance).GetComponent().OnHit(d); } } } namespace GunGame.Scripts { public class MonoBehaviourSingleton : MonoBehaviour where T : Component { public static T Instance { get; private set; } public virtual void Awake() { if ((Object)(object)Instance == (Object)null) { Instance = (T)(object)((this is T) ? this : null); } else { Object.Destroy((Object)(object)((Component)this).gameObject); } } } } namespace CustomScripts { public class Blockade : MonoBehaviour, IPurchasable { public Action OnPurchase; public List UnlockableZombieSpawnPoints; public List UnlockableSpecialZombieSpawnPoints; public List CostTexts; public int Cost; [SerializeField] private bool _isOneTimeOnly = true; private bool _alreadyBought; private bool _alreadyUsed; public int PurchaseCost => Cost; public bool IsOneTimeOnly => _isOneTimeOnly; public bool AlreadyBought => _alreadyBought; private void OnValidate() { foreach (Text costText in CostTexts) { costText.text = Cost.ToString(); } } public void Buy() { if (_alreadyUsed || !MonoBehaviourSingleton.Instance.TryRemovePoints(Cost)) { return; } _alreadyUsed = true; foreach (Transform unlockableZombieSpawnPoint in UnlockableZombieSpawnPoints) { if (!MonoBehaviourSingleton.Instance.CurrentLocation.ZombieSpawnPoints.Contains(unlockableZombieSpawnPoint)) { MonoBehaviourSingleton.Instance.CurrentLocation.ZombieSpawnPoints.Add(unlockableZombieSpawnPoint); } } foreach (Transform unlockableSpecialZombieSpawnPoint in UnlockableSpecialZombieSpawnPoints) { if (!MonoBehaviourSingleton.Instance.CurrentLocation.SpecialZombieSpawnPoints.Contains(unlockableSpecialZombieSpawnPoint)) { MonoBehaviourSingleton.Instance.CurrentLocation.SpecialZombieSpawnPoints.Add(unlockableSpecialZombieSpawnPoint); } } MonoBehaviourSingleton.Instance.Play(MonoBehaviourSingleton.Instance.BuySound, 0.5f); ((Component)this).gameObject.SetActive(false); if (OnPurchase != null) { OnPurchase(); } } } public class MysteryBox : MonoBehaviour, IPurchasable { public static Action WeaponSpawnedEvent; public int Cost = 950; [SerializeField] private bool _isOneTimeOnly; private bool _alreadyBought; [HideInInspector] public List LootId; [HideInInspector] public List LimitedAmmoLootId; public ObjectSpawnPoint WeaponSpawner; public ObjectSpawnPoint AmmoSpawner; public AudioClip RollSound; [HideInInspector] public bool InUse = false; private MysteryBoxMover _mysteryBoxMover; public int PurchaseCost => Cost; public bool IsOneTimeOnly => _isOneTimeOnly; public bool AlreadyBought => _alreadyBought; private void Awake() { _mysteryBoxMover = ((Component)this).GetComponent(); RoundManager.OnGameStarted = (Action)Delegate.Combine(RoundManager.OnGameStarted, new Action(LoadWeaponPool)); } private void LoadWeaponPool() { LootId = MonoBehaviourSingleton.Instance.CurrentLootPool.MysteryBoxPool; LimitedAmmoLootId = MonoBehaviourSingleton.Instance.CurrentLootPool.LimitedAmmoMysteryBoxPool; } public void SpawnWeapon() { if (!InUse && MonoBehaviourSingleton.Instance.TryRemovePoints(Cost)) { InUse = true; MonoBehaviourSingleton.Instance.Play(RollSound, 0.25f); ((MonoBehaviour)this).StartCoroutine(DelayedSpawn()); } } private IEnumerator DelayedSpawn() { yield return (object)new WaitForSeconds(5.5f); if (_mysteryBoxMover.TryTeleport()) { _mysteryBoxMover.StartTeleportAnim(); MonoBehaviourSingleton.Instance.AddPoints(Cost); yield break; } if (GameSettings.LimitedAmmo) { int index = Random.Range(0, LimitedAmmoLootId.Count); WeaponData weaponData = LimitedAmmoLootId[index]; WeaponSpawner.ObjectId = weaponData.DefaultSpawners[0]; WeaponSpawner.Spawn(); AmmoSpawner.ObjectId = weaponData.DefaultSpawners[1]; for (int i = 0; i < weaponData.LimitedAmmoMagazineCount; i++) { AmmoSpawner.Spawn(); } if (WeaponSpawnedEvent != null) { WeaponSpawnedEvent(weaponData); } } else { int index2 = Random.Range(0, LootId.Count); WeaponData weaponData2 = LootId[index2]; WeaponSpawner.ObjectId = weaponData2.DefaultSpawners[0]; AmmoSpawner.ObjectId = weaponData2.DefaultSpawners[1]; WeaponSpawner.Spawn(); AmmoSpawner.Spawn(); if (WeaponSpawnedEvent != null) { WeaponSpawnedEvent(weaponData2); } } InUse = false; _mysteryBoxMover.CurrentRoll++; } private void OnDestroy() { RoundManager.OnGameStarted = (Action)Delegate.Remove(RoundManager.OnGameStarted, new Action(LoadWeaponPool)); } } public class MysteryBoxMover : MonoBehaviour { public List SpawnPoints; [Range(0f, 100f)] public float TeleportChance = 20f; public int SafeRollsProvided = 3; public AudioClip TeddyBearSound; public AudioClip SecretTeddyBearSound; public Transform TeddyBear; [HideInInspector] public Transform CurrentPos; [HideInInspector] public int CurrentRoll = 0; private Animator _animator; private MysteryBox _mysteryBox; private Transform _parent; private void Awake() { _parent = ((Component)this).transform.parent; _animator = ((Component)_parent).GetComponent(); _mysteryBox = ((Component)this).GetComponent(); } private void Start() { Teleport(firstTime: true); } public void Teleport(bool firstTime = false) { //IL_0057: Unknown result type (might be due to invalid IL or missing references) //IL_006d: Unknown result type (might be due to invalid IL or missing references) Transform val = SpawnPoints[Random.Range(0, SpawnPoints.Count)]; if (!firstTime) { SpawnPoints.Add(CurrentPos); } CurrentPos = val; SpawnPoints.Remove(val); ((Component)_parent).transform.position = val.position; ((Component)_parent).transform.rotation = val.rotation; CurrentRoll = 0; _mysteryBox.InUse = false; } public bool TryTeleport() { if (CurrentRoll <= SafeRollsProvided) { return false; } return (float)Random.Range(0, 100) <= TeleportChance; } private void Update() { if (Input.GetKeyDown((KeyCode)104)) { StartTeleportAnim(); } } public void StartTeleportAnim() { GameObject gameObject; if (Random.Range(0, 5801) == 0) { gameObject = ((Component)TeddyBear.GetChild(1)).gameObject; MonoBehaviourSingleton.Instance.Play(SecretTeddyBearSound); } else { gameObject = ((Component)TeddyBear.GetChild(0)).gameObject; MonoBehaviourSingleton.Instance.Play(TeddyBearSound); } ((Component)TeddyBear).GetComponent().Play("Activation"); gameObject.SetActive(true); ((MonoBehaviour)this).StartCoroutine(DelayedAnimation(gameObject)); } private IEnumerator DelayedAnimation(GameObject teddy) { yield return (object)new WaitForSeconds(3f); teddy.SetActive(false); yield return (object)new WaitForSeconds(1.2f); _animator.Play("Teleport"); ((MonoBehaviour)this).StartCoroutine(DelayedTeleport()); } private IEnumerator DelayedTeleport() { yield return (object)new WaitForSeconds(4.2f); Teleport(); } } public class QuestionMarkBlinking : MonoBehaviour { public Renderer QuestionMark1; public Renderer QuestionMark2; private float _emissionValue; private int _emissionWeight; private bool _emit; private float _time; private void Awake() { _emissionWeight = Shader.PropertyToID("_EmissionWeight"); } private void Update() { if (_emit) { if (_time >= 1.5f) { _emit = false; ((MonoBehaviour)this).StartCoroutine(SmoothEmissionChange(0f, 1f, 1f)); _time = 0f; } } else if (_time >= 3f) { _emit = true; ((MonoBehaviour)this).StartCoroutine(SmoothEmissionChange(1f, 0f, 1f)); _time = 0f; } _time += Time.deltaTime; } private IEnumerator SmoothEmissionChange(float startValue, float endValue, float duration) { float elapsed = 0f; while (elapsed < duration) { _emissionValue = Mathf.Lerp(startValue, endValue, elapsed / duration); elapsed += Time.deltaTime; QuestionMark1.sharedMaterial.SetFloat(_emissionWeight, _emissionValue); QuestionMark2.sharedMaterial.SetFloat(_emissionWeight, _emissionValue); yield return null; } _emissionValue = endValue; QuestionMark1.sharedMaterial.SetFloat(_emissionWeight, _emissionValue); QuestionMark2.sharedMaterial.SetFloat(_emissionWeight, _emissionValue); } } } namespace CustomScripts.Objects { public class Radio : MonoBehaviour, IFVRDamageable { public AudioClip Song; private bool _isThrottled; private bool _isPlaying; private Coroutine _musicEndCoroutine; private void Awake() { GameSettings.OnMusicSettingChanged = (Action)Delegate.Combine(GameSettings.OnMusicSettingChanged, new Action(OnMusicSettingsChanged)); } private void OnMusicSettingsChanged() { _isPlaying = false; if (_musicEndCoroutine != null) { ((MonoBehaviour)this).StopCoroutine(_musicEndCoroutine); } } private void Update() { //IL_000e: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Expected O, but got Unknown if (Input.GetKeyDown((KeyCode)99)) { Damage dam = new Damage(); Damage(dam); } if (Input.GetKeyDown((KeyCode)118)) { MonoBehaviourSingleton.Instance.ToggleBackgroundMusic(); } } public void Damage(Damage dam) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Invalid comparison between Unknown and I4 if ((int)dam.Class == 2 || _isThrottled) { return; } if (_isPlaying) { _isPlaying = false; MonoBehaviourSingleton.Instance.MusicAudioSource.Stop(); if (GameSettings.BackgroundMusic) { MonoBehaviourSingleton.Instance.PlayMusic(MonoBehaviourSingleton.Instance.Music, 0.08f); } if (_musicEndCoroutine != null) { ((MonoBehaviour)this).StopCoroutine(_musicEndCoroutine); } } else { _isPlaying = true; float length = Song.length; _musicEndCoroutine = ((MonoBehaviour)this).StartCoroutine(OnMusicEnd(length)); MonoBehaviourSingleton.Instance.PlayMusic(Song, 0.095f); } ((MonoBehaviour)this).StartCoroutine(Throttle()); } private IEnumerator Throttle() { _isThrottled = true; yield return (object)new WaitForSeconds(0.5f); _isThrottled = false; } private IEnumerator OnMusicEnd(float endTimer) { yield return (object)new WaitForSeconds(endTimer); _isPlaying = false; if (GameSettings.BackgroundMusic) { MonoBehaviourSingleton.Instance.PlayMusic(MonoBehaviourSingleton.Instance.Music, 0.08f); } } private void OnDestroy() { GameSettings.OnMusicSettingChanged = (Action)Delegate.Remove(GameSettings.OnMusicSettingChanged, new Action(OnMusicSettingsChanged)); } } } namespace CustomScripts { public class StatPanel : MonoBehaviour { public Text RoundText; public Text PointsText; public Text LeftText; private void Start() { GameManager.OnPointsChanged = (Action)Delegate.Remove(GameManager.OnPointsChanged, new Action(UpdatePointsText)); GameManager.OnPointsChanged = (Action)Delegate.Combine(GameManager.OnPointsChanged, new Action(UpdatePointsText)); RoundManager.OnRoundChanged = (Action)Delegate.Remove(RoundManager.OnRoundChanged, new Action(UpdateRoundText)); RoundManager.OnRoundChanged = (Action)Delegate.Combine(RoundManager.OnRoundChanged, new Action(UpdateRoundText)); RoundManager.OnZombiesLeftChanged = (Action)Delegate.Remove(RoundManager.OnZombiesLeftChanged, new Action(UpdateLeftText)); RoundManager.OnZombiesLeftChanged = (Action)Delegate.Combine(RoundManager.OnZombiesLeftChanged, new Action(UpdateLeftText)); UpdateRoundText(); UpdatePointsText(); } private void OnDestroy() { GameManager.OnPointsChanged = (Action)Delegate.Remove(GameManager.OnPointsChanged, new Action(UpdatePointsText)); RoundManager.OnRoundChanged = (Action)Delegate.Remove(RoundManager.OnRoundChanged, new Action(UpdateRoundText)); RoundManager.OnZombiesLeftChanged = (Action)Delegate.Remove(RoundManager.OnZombiesLeftChanged, new Action(UpdateLeftText)); } private void UpdateRoundText() { RoundText.text = "Round:\n" + MonoBehaviourSingleton.Instance.RoundNumber; } private void UpdatePointsText() { PointsText.text = "Points:\n" + MonoBehaviourSingleton.Instance.Points; } private void UpdateLeftText() { LeftText.text = "Left:\n" + MonoBehaviourSingleton.Instance.ZombiesRemaining; } } } namespace CustomScripts.Objects { public class WallShop : MonoBehaviour, IPurchasable { [Header("LootPool asset defines which weapon can be purchased")] public int ID; private const int AMMO_SPAWNER_ID = 1; public bool ExistsInLimitedAmmo = true; public bool ExistsInSpawnlock = true; [HideInInspector] public int Cost; [SerializeField] private bool _isOneTimeOnly; private bool _alreadyBought; public Text NameText; public Text CostText; public List ItemSpawners; [HideInInspector] public WeaponData Weapon; public bool SameRebuy = false; [HideInInspector] public bool IsFree; public int PurchaseCost => Cost; public bool IsOneTimeOnly => _isOneTimeOnly; public bool AlreadyBought => _alreadyBought; private void Awake() { RoundManager.OnGameStarted = (Action)Delegate.Combine(RoundManager.OnGameStarted, new Action(OnRoundStarted)); } private void OnDestroy() { RoundManager.OnGameStarted = (Action)Delegate.Remove(RoundManager.OnGameStarted, new Action(OnRoundStarted)); } private void LoadWeapon() { if (ID >= MonoBehaviourSingleton.Instance.CurrentLootPool.WallShopsPool.Count) { ((Component)this).gameObject.SetActive(false); return; } Weapon = MonoBehaviourSingleton.Instance.CurrentLootPool.WallShopsPool[ID]; Cost = Weapon.Price; NameText.text = Weapon.DisplayName; CostText.text = Cost.ToString(); } private void OnRoundStarted() { if (GameSettings.LimitedAmmo && !ExistsInLimitedAmmo) { ((Component)this).gameObject.SetActive(false); } if (!GameSettings.LimitedAmmo && !ExistsInSpawnlock) { ((Component)this).gameObject.SetActive(false); } LoadWeapon(); } public void TryBuying() { if (!IsFree && !MonoBehaviourSingleton.Instance.TryRemovePoints(Cost)) { return; } IsFree = false; if (GameSettings.LimitedAmmo && !SameRebuy) { if (!_alreadyBought) { for (int i = 0; i < Weapon.DefaultSpawners.Count; i++) { if (i != 1) { ItemSpawners[i].ObjectId = Weapon.DefaultSpawners[i]; ItemSpawners[i].Spawn(); } } } if (SameRebuy) { for (int j = 0; j < Weapon.DefaultSpawners.Count; j++) { ItemSpawners[j].ObjectId = Weapon.DefaultSpawners[j]; ItemSpawners[j].Spawn(); } } else { ItemSpawners[1].ObjectId = Weapon.DefaultSpawners[1]; ((MonoBehaviour)this).StartCoroutine(DelayedAmmoSpawn()); } Cost = Weapon.AmmoBuyCost; CostText.text = Weapon.AmmoBuyCost.ToString(); } else { for (int k = 0; k < Weapon.DefaultSpawners.Count; k++) { ItemSpawners[k].ObjectId = Weapon.DefaultSpawners[k]; ItemSpawners[k].Spawn(); } } if (!_alreadyBought) { _alreadyBought = true; } MonoBehaviourSingleton.Instance.Play(MonoBehaviourSingleton.Instance.BuySound, 0.5f); } private IEnumerator DelayedAmmoSpawn() { for (int i = 0; i < Weapon.LimitedAmmoMagazineCount; i++) { ItemSpawners[1].Spawn(); yield return (object)new WaitForSeconds(0.15f); } } } } namespace CustomScripts.Objects.Weapons { [CreateAssetMenu(fileName = "WeaponData")] public class WeaponData : ScriptableObject { [Tooltip("Used by WallShop")] public string DisplayName; [Tooltip("No real use in the code btw")] public string Description; [Tooltip("First is always weapon, second is always ammo (if exists)")] public List DefaultSpawners; [Tooltip("Result of pack a punching")] public WeaponData UpgradedWeapon; [Tooltip("How many magazines spawn in the limited ammo mode")] public int LimitedAmmoMagazineCount = 0; [Tooltip("How much does the weapon cost in the Wallshop")] public int Price; [Tooltip("How much does ammo cost in the limited ammo mode (Wall rebuy)")] public int AmmoBuyCost = 0; public string Id => DefaultSpawners[0]; } } namespace CustomScripts { public class DropPlankZone : MonoBehaviour { private void OnTriggerExit(Collider other) { Plank component = ((Component)other).GetComponent(); if (Object.op_Implicit((Object)(object)component)) { ((FVRInteractiveObject)component.PhysicalObject).ForceBreakInteraction(); component.ReturnToRest(); } } } public class Plank : MonoBehaviour { [HideInInspector] public FVRPhysicalObject PhysicalObject; public Transform RestTransform; private void Awake() { PhysicalObject = ((Component)this).GetComponent(); } public void ReturnToRest() { ((MonoBehaviour)this).StartCoroutine(MoveTo(RestTransform, 0.5f)); } public void OnRepairDrop(Transform destination) { ((MonoBehaviour)this).StartCoroutine(MoveTo(destination, 0.2f)); MonoBehaviourSingleton.Instance.Play(MonoBehaviourSingleton.Instance.BarricadeRepairSound, 0.5f); } public IEnumerator MoveTo(Transform destination, float time) { Vector3 startingPos = ((Component)this).transform.position; Vector3 finalPos = destination.position; Quaternion startingRot = ((Component)this).transform.rotation; Quaternion finalRot = destination.rotation; float elapsedTime = 0f; while (elapsedTime < time) { ((Component)this).transform.position = Vector3.Lerp(startingPos, finalPos, elapsedTime / time); ((Component)this).transform.rotation = Quaternion.Lerp(startingRot, finalRot, elapsedTime / time); elapsedTime += Time.deltaTime; yield return null; } ((Component)this).transform.position = finalPos; ((Component)this).transform.rotation = finalRot; } } public class Window : MonoBehaviour { public static Action BarricadedEvent; public Transform ZombieWaypoint; public List PlankSlots; public List AllPlanks; private AudioSource _tearPlankAudio; public int PlanksRemain { get; set; } public bool IsOpen => PlanksRemain == 0; private void Start() { _tearPlankAudio = ((Component)this).GetComponent(); RepairAll(); } private void OnTriggerEnter(Collider other) { if (Object.op_Implicit((Object)(object)((Component)other).GetComponent())) { OnPlankTouch(((Component)other).GetComponent()); } } public void RepairAll(bool playSound = false) { //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) for (int i = 0; i < PlankSlots.Count; i++) { PlankSlots[i].Plank = AllPlanks[i]; ((Component)AllPlanks[i]).transform.position = ((Component)PlankSlots[i]).transform.position; ((Component)AllPlanks[i]).transform.rotation = ((Component)PlankSlots[i]).transform.rotation; ((FVRInteractiveObject)AllPlanks[i].PhysicalObject).ForceBreakInteraction(); AllPlanks[i].PhysicalObject.IsPickUpLocked = true; } PlanksRemain = PlankSlots.Count; if (playSound) { MonoBehaviourSingleton.Instance.Play(MonoBehaviourSingleton.Instance.BarricadeRepairSound, 0.5f); } } public void OnPlankTouch(Plank plank) { if (BarricadedEvent != null && MonoBehaviourSingleton.Instance.GameStarted) { BarricadedEvent(); } if (MonoBehaviourSingleton.Instance.SpeedColaPerkActivated) { RepairAll(playSound: true); return; } WindowPlank windowPlank = PlankSlots.FirstOrDefault((WindowPlank x) => (Object)(object)x.Plank == (Object)null); if (!Object.op_Implicit((Object)(object)windowPlank)) { RepairAll(); return; } windowPlank.Plank = plank; ((FVRInteractiveObject)plank.PhysicalObject).ForceBreakInteraction(); plank.PhysicalObject.IsPickUpLocked = true; plank.OnRepairDrop(((Component)windowPlank).transform); PlanksRemain++; } public void OnPlankRipped() { WindowPlank windowPlank = PlankSlots.LastOrDefault((WindowPlank x) => (Object)(object)x.Plank != (Object)null); if (Object.op_Implicit((Object)(object)windowPlank)) { Plank plank = windowPlank.Plank; plank.ReturnToRest(); FVRPhysicalObject component = ((Component)plank).GetComponent(); component.IsPickUpLocked = false; windowPlank.Plank = null; _tearPlankAudio.Play(); PlanksRemain--; } } } } namespace CustomScripts.Objects.Windows { public class WindowPlank : MonoBehaviour { public Plank Plank; } } namespace CustomScripts { public class WindowTrigger : MonoBehaviour { public Window Window; } } namespace GunGame.Scripts.Options { public class GameSettings : MonoBehaviourSingleton { public static Action SettingsChanged; public static Action WeaponPoolChanged; public static bool DisabledAutoLoading; public static bool AlwaysChamberRounds; public static bool HealOnPromotion; [SerializeField] private Image DisabledAutoLoadingImage; [SerializeField] private Image AlwaysChamberRoundsImage; [SerializeField] private Image HealOnPromotionImage; [SerializeField] private Text MaxSosigCountText; public static int MaxSosigCount; public static WeaponPool CurrentPool { get; private set; } private void Start() { DisabledAutoLoading = false; AlwaysChamberRounds = false; HealOnPromotion = false; ResetMaxSosigCount(); } public void IncreaseMaxSosigCount() { MaxSosigCount++; MaxSosigCountText.text = MaxSosigCount.ToString(); if (SettingsChanged != null) { SettingsChanged(); } } public void DecreaseMaxSosigCount() { MaxSosigCount--; if (MaxSosigCount < 1) { MaxSosigCount = 1; } MaxSosigCountText.text = MaxSosigCount.ToString(); if (SettingsChanged != null) { SettingsChanged(); } } public void ResetMaxSosigCount() { MaxSosigCount = MonoBehaviourSingleton.Instance.MaxSosigCount; MaxSosigCountText.text = MaxSosigCount.ToString(); if (SettingsChanged != null) { SettingsChanged(); } } public void ToggleAutoLoading() { DisabledAutoLoading = !DisabledAutoLoading; ((Behaviour)DisabledAutoLoadingImage).enabled = DisabledAutoLoading; if (SettingsChanged != null) { SettingsChanged(); } } public void ToggleAlwaysChamberRounds() { AlwaysChamberRounds = !AlwaysChamberRounds; ((Behaviour)AlwaysChamberRoundsImage).enabled = AlwaysChamberRounds; if (SettingsChanged != null) { SettingsChanged(); } } public void ToggleHealOnPromotion() { HealOnPromotion = !HealOnPromotion; ((Behaviour)HealOnPromotionImage).enabled = HealOnPromotion; if (SettingsChanged != null) { SettingsChanged(); } } public static void ChangeCurrentPool(WeaponPool newPool) { CurrentPool = newPool; CurrentPool.Initialize(); if (WeaponPoolChanged != null) { WeaponPoolChanged(); } if (SettingsChanged != null) { SettingsChanged(); } } } public class KillsPerWeaponOption : MonoBehaviour { public Action OptionChanged; public int DefaultCount; public static int KillsPerWeaponCount; [SerializeField] private Text _counterText; private void Awake() { OptionChanged = (Action)Delegate.Combine(OptionChanged, new Action(UpdateUI)); } private void Start() { ResetClicked(); } public void ArrowLeftClicked() { KillsPerWeaponCount--; if (KillsPerWeaponCount <= 1) { KillsPerWeaponCount = 1; } if (OptionChanged != null) { OptionChanged(); } } public void ArrowRightClicked() { KillsPerWeaponCount++; if (OptionChanged != null) { OptionChanged(); } } public void ResetClicked() { KillsPerWeaponCount = DefaultCount; if (OptionChanged != null) { OptionChanged(); } } private void UpdateUI() { _counterText.text = KillsPerWeaponCount.ToString(); } private void OnDestroy() { OptionChanged = (Action)Delegate.Remove(OptionChanged, new Action(UpdateUI)); } } public class LeftHandOption : MonoBehaviour { public Action OptionChanged; public static bool LeftHandModeEnabled; [SerializeField] private Image EnabledImage; private void Awake() { OptionChanged = (Action)Delegate.Combine(OptionChanged, new Action(UpdateUI)); LeftHandModeEnabled = false; ((Behaviour)EnabledImage).enabled = false; } public void ToggleClicked() { LeftHandModeEnabled = !LeftHandModeEnabled; if (OptionChanged != null) { OptionChanged(); } } private void UpdateUI() { ((Behaviour)EnabledImage).enabled = LeftHandModeEnabled; } private void OnDestroy() { OptionChanged = (Action)Delegate.Remove(OptionChanged, new Action(UpdateUI)); } } public class MusicToggleOption : MonoBehaviour { public Action OptionChanged; public static bool MusicEnabled; public AudioSource MusicAudioSource; public bool MusicEnabledAtStart = false; [SerializeField] private Image EnabledImage; private void Awake() { OptionChanged = (Action)Delegate.Combine(OptionChanged, new Action(OnToggleMusic)); MusicEnabled = MusicEnabledAtStart; ((Behaviour)EnabledImage).enabled = MusicEnabled; OnToggleMusic(); } public void ToggleClicked() { MusicEnabled = !MusicEnabled; if (OptionChanged != null) { OptionChanged(); } } private void OnToggleMusic() { if (MusicEnabled) { MusicAudioSource.Play(); } else { MusicAudioSource.Stop(); } ((Behaviour)EnabledImage).enabled = MusicEnabled; } private void OnDestroy() { OptionChanged = (Action)Delegate.Remove(OptionChanged, new Action(OnToggleMusic)); } } public class QuickbeltOption : MonoBehaviour { public static FVRQuickBeltSlot AmmoQuickbeltSlot; private FVRPhysicalObject MagObject; public Transform MagSpawnPos; private string _magName = "MagazineStanag5rnd"; private void Awake() { GameManager.BeforeGameStartedEvent = (Action)Delegate.Combine(GameManager.BeforeGameStartedEvent, new Action(OnGameStart)); } private IEnumerator Start() { yield return (object)new WaitForSeconds(0.2f); AmmoQuickbeltSlot = GM.CurrentPlayerBody.QBSlots_Internal[0]; SpawnMag(); } private void OnGameStart() { if (Object.op_Implicit((Object)(object)MagObject.QuickbeltSlot)) { AmmoQuickbeltSlot = MagObject.QuickbeltSlot; } } private void SpawnMag() { //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_0053: Unknown result type (might be due to invalid IL or missing references) FVRObject value = null; if (!IM.OD.TryGetValue(_magName, out value)) { Debug.LogError((object)("No object found with id: " + _magName)); return; } GameObject gameObject = ((AnvilAsset)value).GetGameObject(); GameObject val = Object.Instantiate(gameObject, ((Component)MagSpawnPos).transform.position, ((Component)this).transform.rotation); val.SetActive(true); MagObject = val.GetComponent(); } private void OnDestroy() { GameManager.BeforeGameStartedEvent = (Action)Delegate.Remove(GameManager.BeforeGameStartedEvent, new Action(OnGameStart)); } } public class SelectedPoolUI : MonoBehaviour { public Text TitleText; public Text DescriptionText; private void Awake() { GameSettings.SettingsChanged = (Action)Delegate.Combine(GameSettings.SettingsChanged, new Action(OnSettingsChanged)); } private void OnSettingsChanged() { TitleText.text = GameSettings.CurrentPool.Name; DescriptionText.text = GameSettings.CurrentPool.Description; } private void OnDestroy() { GameSettings.SettingsChanged = (Action)Delegate.Remove(GameSettings.SettingsChanged, new Action(OnSettingsChanged)); } } public class StartingHealthOption : MonoBehaviour { public Action OptionChanged; public int[] PossibleHealth; private int _optionIndex = 1; public static int CurrentHealth = 1000; [SerializeField] private Text _healthText; private void Awake() { PossibleHealth = new int[5] { 100, 1000, 2000, 5000, 10000 }; OptionChanged = (Action)Delegate.Combine(OptionChanged, new Action(UpdateUI)); OptionChanged = (Action)Delegate.Combine(OptionChanged, new Action(UpdateHealth)); } private IEnumerator Start() { yield return (object)new WaitForSeconds(0.1f); ResetClicked(); } public void ArrowLeftClicked() { _optionIndex--; if (_optionIndex < 0) { _optionIndex = 0; } CurrentHealth = PossibleHealth[_optionIndex]; if (OptionChanged != null) { OptionChanged(); } } public void ArrowRightClicked() { _optionIndex++; if (_optionIndex >= PossibleHealth.Length) { _optionIndex = PossibleHealth.Length - 1; } CurrentHealth = PossibleHealth[_optionIndex]; if (OptionChanged != null) { OptionChanged(); } } public void ResetClicked() { _optionIndex = 1; CurrentHealth = PossibleHealth[_optionIndex]; if (OptionChanged != null) { OptionChanged(); } } private void UpdateHealth() { GM.CurrentPlayerBody.SetHealthThreshold((float)CurrentHealth); GM.CurrentPlayerBody.ResetHealth(); } private void UpdateUI() { _healthText.text = CurrentHealth.ToString(); } private void OnDestroy() { OptionChanged = (Action)Delegate.Remove(OptionChanged, new Action(UpdateUI)); OptionChanged = (Action)Delegate.Remove(OptionChanged, new Action(UpdateHealth)); } } public class WeaponCountOption : MonoBehaviour { public Action OptionChanged; public static int WeaponCount; [SerializeField] private Text _counterText; private void Awake() { OptionChanged = (Action)Delegate.Combine(OptionChanged, new Action(UpdateUI)); GameSettings.WeaponPoolChanged = (Action)Delegate.Combine(GameSettings.WeaponPoolChanged, new Action(ResetClicked)); } public void ArrowLeftClicked() { WeaponCount--; if (WeaponCount <= 1) { WeaponCount = 1; } if (OptionChanged != null) { OptionChanged(); } } public void ArrowRightClicked() { WeaponCount++; if (WeaponCount > GameSettings.CurrentPool.Guns.Count) { WeaponCount = GameSettings.CurrentPool.Guns.Count; } if (OptionChanged != null) { OptionChanged(); } } public void ArrowRight10Clicked() { WeaponCount += 20; if (WeaponCount > GameSettings.CurrentPool.Guns.Count) { WeaponCount = GameSettings.CurrentPool.Guns.Count; } if (OptionChanged != null) { OptionChanged(); } } public void ArrowLeft10Clicked() { WeaponCount -= 20; if (WeaponCount <= 1) { WeaponCount = 1; } if (OptionChanged != null) { OptionChanged(); } } public void ResetClicked() { WeaponCount = GameSettings.CurrentPool.Guns.Count; if (OptionChanged != null) { OptionChanged(); } } private void UpdateUI() { _counterText.text = WeaponCount.ToString(); } private void OnDestroy() { OptionChanged = (Action)Delegate.Remove(OptionChanged, new Action(UpdateUI)); GameSettings.WeaponPoolChanged = (Action)Delegate.Remove(GameSettings.WeaponPoolChanged, new Action(ResetClicked)); } } } public class Pause : MonoBehaviour { [SerializeField] private Transform PauseWaypoint; [SerializeField] private Transform UnPauseWaypoint; [SerializeField] private Text TimeText; [SerializeField] private Text KillsText; [SerializeField] private Text DeathsText; private float _pauseTimer; public void PauseTheGame() { //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0028: Unknown result type (might be due to invalid IL or missing references) GM.CurrentMovementManager.TeleportToPoint(PauseWaypoint.position, true, ((Component)this).transform.position + ((Component)this).transform.forward); KillsText.text = "Kills: " + GunGame.Scripts.MonoBehaviourSingleton.Instance.Kills; DeathsText.text = "Deaths: " + GunGame.Scripts.MonoBehaviourSingleton.Instance.Deaths; TimeSpan timeSpan = TimeSpan.FromSeconds(GunGame.Scripts.MonoBehaviourSingleton.Instance.GameTime); TimeText.text = "Time: " + timeSpan.Hours.ToString("00") + ":" + timeSpan.Minutes.ToString("00") + ":" + timeSpan.Seconds.ToString("00"); _pauseTimer = Time.time; } public void UnpauseTheGame() { //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0028: Unknown result type (might be due to invalid IL or missing references) GM.CurrentMovementManager.TeleportToPoint(UnPauseWaypoint.position, true, ((Component)this).transform.position + ((Component)this).transform.forward); float timePaused = Time.time - _pauseTimer; GunGame.Scripts.MonoBehaviourSingleton.Instance.RemovePausedTime(timePaused); } } namespace CustomScripts { public class DeadShotPerkBottle : MonoBehaviour, IModifier { public void ApplyModifier() { MonoBehaviourSingleton.Instance.DeadShotPerkActivated = true; if (!GameSettings.UseCustomEnemies) { for (int i = 0; i < MonoBehaviourSingleton.Instance.ExistingZombies.Count; i++) { (MonoBehaviourSingleton.Instance.ExistingZombies[i] as ZosigZombieController).CheckPerks(); } } else { for (int j = 0; j < MonoBehaviourSingleton.Instance.AllCustomZombies.Count; j++) { CapsuleCollider component = (MonoBehaviourSingleton.Instance.AllCustomZombies[j] as CustomZombieController).HeadObject.GetComponent(); component.radius *= 1.375f; } } MonoBehaviourSingleton.Instance.Play(MonoBehaviourSingleton.Instance.DrinkSound); Object.Destroy((Object)(object)((Component)this).gameObject); } } public class DoubleTapPerkBottle : MonoBehaviour, IModifier { public float DamageMultiplier = 1.5f; public void ApplyModifier() { MonoBehaviourSingleton.Instance.DoubleTapPerkActivated = true; if (!GameSettings.UseCustomEnemies) { for (int i = 0; i < MonoBehaviourSingleton.Instance.ExistingZombies.Count; i++) { (MonoBehaviourSingleton.Instance.ExistingZombies[i] as ZosigZombieController).CheckPerks(); } } FVRInteractiveObject currentInteractable = MonoBehaviourSingleton.Instance.LeftHand.CurrentInteractable; FVRFireArm val = (FVRFireArm)(object)((currentInteractable is FVRFireArm) ? currentInteractable : null); if ((Object)(object)val != (Object)null) { ((Component)val).GetComponent().OnWeaponGrabbed(); } FVRInteractiveObject currentInteractable2 = MonoBehaviourSingleton.Instance.RightHand.CurrentInteractable; val = (FVRFireArm)(object)((currentInteractable2 is FVRFireArm) ? currentInteractable2 : null); if ((Object)(object)val != (Object)null) { ((Component)val).GetComponent().OnWeaponGrabbed(); } MonoBehaviourSingleton.Instance.DamageModifier *= DamageMultiplier; MonoBehaviourSingleton.Instance.Play(MonoBehaviourSingleton.Instance.DrinkSound); Object.Destroy((Object)(object)((Component)this).gameObject); } } } public class ElectricCherryPerkBottle : MonoBehaviour, IModifier { public void ApplyModifier() { CustomScripts.MonoBehaviourSingleton.Instance.ElectricCherryPerkActivated = true; CustomScripts.MonoBehaviourSingleton.Instance.Play(CustomScripts.MonoBehaviourSingleton.Instance.DrinkSound); Object.Destroy((Object)(object)((Component)this).gameObject); } } namespace CustomScripts { public class JuggerNogPerkBottle : MonoBehaviour, IModifier { public static Action ConsumedEvent; public float NewHealth = 10000f; public void ApplyModifier() { GM.CurrentPlayerBody.SetHealthThreshold(NewHealth); GM.CurrentPlayerBody.ResetHealth(); if (ConsumedEvent != null) { ConsumedEvent(); } MonoBehaviourSingleton.Instance.Play(MonoBehaviourSingleton.Instance.DrinkSound); Object.Destroy((Object)(object)((Component)this).gameObject); } } } namespace CustomScripts.Powerups.Perks { public class MuleKickPerkBottle : MonoBehaviour, IModifier { public ObjectSpawnPoint Spawner; public string ObjectID; public GameObject Model; public void ApplyModifier() { Spawner.ObjectId = ObjectID; Spawner.Spawn(); ((Component)this).GetComponent().IsPickUpLocked = true; ((FVRInteractiveObject)((Component)this).GetComponent()).ForceBreakInteraction(); ((Component)this).GetComponent().enabled = false; Model.SetActive(false); MonoBehaviourSingleton.Instance.Play(MonoBehaviourSingleton.Instance.DrinkSound); Object.Destroy((Object)(object)((Component)this).gameObject, 1f); } } public class PHDFlopperPerkBottle : MonoBehaviour, IModifier { public void ApplyModifier() { MonoBehaviourSingleton.Instance.PHDFlopperPerkActivated = true; MonoBehaviourSingleton.Instance.Play(MonoBehaviourSingleton.Instance.DrinkSound); Object.Destroy((Object)(object)((Component)this).gameObject); } } } namespace CustomScripts { public class PerkShop : MonoBehaviour, IPurchasable, IRequiresPower { public AudioSource PurchaseJingle; public int Cost; [SerializeField] private bool _isOneTimeOnly = true; private bool _alreadyBought; public GameObject Bottle; public Transform SpawnPoint; private bool alreadyUsed = false; public int PurchaseCost => Cost; public bool IsOneTimeOnly => _isOneTimeOnly; public bool AlreadyBought => _alreadyBought; public bool IsPowered => MonoBehaviourSingleton.Instance.PowerEnabled; public void TryBuying() { //IL_004a: Unknown result type (might be due to invalid IL or missing references) if (!alreadyUsed && IsPowered && MonoBehaviourSingleton.Instance.TryRemovePoints(Cost)) { alreadyUsed = true; Bottle.transform.position = SpawnPoint.position; PurchaseJingle.Play(); } } } } namespace CustomScripts.Powerups.Perks { public class QuickRevivePerkBottle : MonoBehaviour, IModifier { public void ApplyModifier() { MonoBehaviourSingleton.Instance.QuickRevivePerkActivated = true; MonoBehaviourSingleton.Instance.Play(MonoBehaviourSingleton.Instance.DrinkSound); Object.Destroy((Object)(object)((Component)this).gameObject); } } public class SpeedColaPerkBottle : MonoBehaviour, IModifier { public void ApplyModifier() { MonoBehaviourSingleton.Instance.SpeedColaPerkActivated = true; FVRInteractiveObject currentInteractable = MonoBehaviourSingleton.Instance.LeftHand.CurrentInteractable; FVRFireArm val = (FVRFireArm)(object)((currentInteractable is FVRFireArm) ? currentInteractable : null); if ((Object)(object)val != (Object)null) { ((Component)val).GetComponent().OnWeaponGrabbed(); } FVRInteractiveObject currentInteractable2 = MonoBehaviourSingleton.Instance.RightHand.CurrentInteractable; val = (FVRFireArm)(object)((currentInteractable2 is FVRFireArm) ? currentInteractable2 : null); if ((Object)(object)val != (Object)null) { ((Component)val).GetComponent().OnWeaponGrabbed(); } MonoBehaviourSingleton.Instance.Play(MonoBehaviourSingleton.Instance.DrinkSound); Object.Destroy((Object)(object)((Component)this).gameObject); } } public class StaminUpPerkBottle : MonoBehaviour, IModifier { public static Action ConsumedEvent; public void ApplyModifier() { MonoBehaviourSingleton.Instance.StaminUpPerkActivated = true; GM.CurrentSceneSettings.MaxSpeedClamp = 6f; MonoBehaviourSingleton.Instance.Play(MonoBehaviourSingleton.Instance.DrinkSound); Object.Destroy((Object)(object)((Component)this).gameObject); } } } namespace CustomScripts.Objects { public class ElectroTrap : MonoBehaviour, IPurchasable, IRequiresPower, ITrap { public Blockade RequiredBlockade; public GameObject LeversCanvases; public int Cost; [SerializeField] private bool _isOneTimeOnly; private bool _alreadyBought; public float EnabledTime; public float PlayerTouchDamage; public ParticleSystem ElectricityPS; public AudioSource ElectricityAudio; public Collider DamageTrigger; public GameObject PlayerBlocker; public List CanvasCostTexts; private bool _activated = false; private bool _damageThrottled = false; public int PurchaseCost => Cost; public bool IsOneTimeOnly => _isOneTimeOnly; public bool AlreadyBought => _alreadyBought; public bool IsPowered => MonoBehaviourSingleton.Instance.PowerEnabled; private void OnValidate() { for (int i = 0; i < CanvasCostTexts.Count; i++) { CanvasCostTexts[i].text = Cost.ToString(); } } private void Awake() { if (Object.op_Implicit((Object)(object)RequiredBlockade)) { LeversCanvases.SetActive(false); Blockade requiredBlockade = RequiredBlockade; requiredBlockade.OnPurchase = (Action)Delegate.Combine(requiredBlockade.OnPurchase, new Action(EnableLevers)); } } private void EnableLevers() { LeversCanvases.SetActive(true); Blockade requiredBlockade = RequiredBlockade; requiredBlockade.OnPurchase = (Action)Delegate.Remove(requiredBlockade.OnPurchase, new Action(EnableLevers)); } public void OnEnemyEntered(ZombieController controller) { controller.OnHit(99999f, headHit: true); } private void OnTriggerEnter(Collider other) { if (Object.op_Implicit((Object)(object)((Component)other).GetComponent()) && !_damageThrottled) { MonoBehaviourSingleton.Instance.Play(MonoBehaviourSingleton.Instance.PlayerHitSound); FVRPlayerBody currentPlayerBody = GM.CurrentPlayerBody; currentPlayerBody.Health -= PlayerTouchDamage; if (GM.CurrentPlayerBody.Health <= 0f) { MonoBehaviourSingleton.Instance.KillPlayer(); } ((MonoBehaviour)this).StartCoroutine(ThrottleDamage()); } } public void OnLeverPull() { if (!_activated && IsPowered && MonoBehaviourSingleton.Instance.TryRemovePoints(Cost)) { ActivateTrap(); } } private void ActivateTrap() { _activated = true; ElectricityPS.Play(true); ElectricityAudio.Play(); PlayerBlocker.SetActive(true); DamageTrigger.enabled = true; ((MonoBehaviour)this).StartCoroutine(DelayedDeactivateTrap()); } private IEnumerator DelayedDeactivateTrap() { yield return (object)new WaitForSeconds(EnabledTime); _activated = false; ElectricityPS.Stop(true); ElectricityAudio.Stop(); PlayerBlocker.SetActive(false); DamageTrigger.enabled = false; } private IEnumerator ThrottleDamage() { _damageThrottled = true; yield return (object)new WaitForSeconds(1.5f); _damageThrottled = false; } private void OnDestroy() { if (Object.op_Implicit((Object)(object)RequiredBlockade)) { Blockade requiredBlockade = RequiredBlockade; requiredBlockade.OnPurchase = (Action)Delegate.Remove(requiredBlockade.OnPurchase, new Action(EnableLevers)); } } } } public class MagazineBox : FVRPhysicalObject { public Sprite EmptySprite; [SerializeField] private Text _magazineNameText; [SerializeField] private Text _magazineCountText; [SerializeField] private Image _magazineImage; private Stack _magazines = new Stack(); private bool IsEmpty => _magazines.Count == 0; private FVRFireArmMagazine CurrentMagazine => _magazines.Peek(); public override void BeginInteraction(FVRViveHand hand) { if ((double)hand.Input.TriggerFloat > 0.5) { RetrieveMagazine(hand); } else { ((FVRPhysicalObject)this).BeginInteraction(hand); } } private void OnTriggerEnter(Collider other) { //IL_0069: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Expected O, but got Unknown //IL_0081: Unknown result type (might be due to invalid IL or missing references) //IL_008c: Expected O, but got Unknown //IL_0032: Unknown result type (might be due to invalid IL or missing references) //IL_003d: Expected O, but got Unknown //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Expected O, but got Unknown if (Object.op_Implicit((Object)(object)((Component)other).GetComponent())) { FVRViveHand component = ((Component)other).GetComponent(); if (component.IsThisTheRightHand) { component.Trigger_Button.RemoveOnStateUpListener(new StateUpHandler(TryPlacing), (SteamVR_Input_Sources)2); component.Trigger_Button.AddOnStateUpListener(new StateUpHandler(TryPlacing), (SteamVR_Input_Sources)2); } else { component.Trigger_Button.RemoveOnStateUpListener(new StateUpHandler(TryPlacing), (SteamVR_Input_Sources)1); component.Trigger_Button.AddOnStateUpListener(new StateUpHandler(TryPlacing), (SteamVR_Input_Sources)1); } } } private void OnTriggerExit(Collider other) { //IL_0051: Unknown result type (might be due to invalid IL or missing references) //IL_005c: Expected O, but got Unknown //IL_0032: Unknown result type (might be due to invalid IL or missing references) //IL_003d: Expected O, but got Unknown if (Object.op_Implicit((Object)(object)((Component)other).GetComponent())) { FVRViveHand component = ((Component)other).GetComponent(); if (component.IsThisTheRightHand) { component.Trigger_Button.RemoveOnStateUpListener(new StateUpHandler(TryPlacing), (SteamVR_Input_Sources)2); } else { component.Trigger_Button.RemoveOnStateUpListener(new StateUpHandler(TryPlacing), (SteamVR_Input_Sources)1); } } } private void TryPlacing(SteamVR_Action_Boolean fromaction, SteamVR_Input_Sources fromsource) { //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_0003: Invalid comparison between Unknown and I4 FVRViveHand val = (((int)fromsource == 2) ? GM.CurrentMovementManager.Hands[1] : GM.CurrentMovementManager.Hands[0]); if (!((Object)(object)val.CurrentInteractable == (Object)null)) { FVRFireArmMagazine component = ((Component)val.CurrentInteractable).GetComponent(); if (!((Object)(object)component == (Object)null) && (IsEmpty || (!IsEmpty && IsMagazineCompatible(component)))) { AddMagazine(component); } } } private void RetrieveMagazine(FVRViveHand hand) { if (!IsEmpty) { FVRFireArmMagazine val = _magazines.Pop(); ((Component)val).gameObject.SetActive(true); hand.RetrieveObject((FVRPhysicalObject)(object)val); UpdateUI(); } } public void AddMagazine(FVRFireArmMagazine magazine) { _magazines.Push(magazine); ((Component)magazine).gameObject.SetActive(false); UpdateUI(); } private bool IsMagazineCompatible(FVRFireArmMagazine magazine) { return ((FVRPhysicalObject)CurrentMagazine).ObjectWrapper.SpawnedFromId == ((FVRPhysicalObject)magazine).ObjectWrapper.SpawnedFromId; } private void UpdateUI() { if (IsEmpty) { _magazineNameText.text = "None"; _magazineCountText.text = "0"; _magazineImage.sprite = EmptySprite; } else { _magazineNameText.text = IM.GetSpawnerID(((FVRPhysicalObject)CurrentMagazine).ObjectWrapper.SpawnedFromId).DisplayName; _magazineCountText.text = _magazines.Count.ToString(); _magazineImage.sprite = IM.GetSpawnerID(((FVRPhysicalObject)CurrentMagazine).ObjectWrapper.SpawnedFromId).Sprite; } } } namespace CustomScripts { public class PlayerCollider : MonoBehaviour { public LayerMask EnemyLayer; private Transform _transform; private List _touchingZombies = new List(); private Coroutine _dealDamageCoroutine; private const float DamageInterval = 1.5f; private float _damageTimer; private void Awake() { _transform = ((Component)this).transform; } private void Update() { //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_002a: Unknown result type (might be due to invalid IL or missing references) //IL_002d: Unknown result type (might be due to invalid IL or missing references) //IL_0032: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_005e: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) _transform.position = MonoBehaviourSingleton.Instance.PlayerHead.position; Quaternion rotation = MonoBehaviourSingleton.Instance.PlayerHead.rotation; float y = ((Quaternion)(ref rotation)).eulerAngles.y; Quaternion rotation2 = _transform.rotation; Vector3 eulerAngles = ((Quaternion)(ref rotation2)).eulerAngles; eulerAngles.y = y; _transform.rotation = Quaternion.Euler(eulerAngles); if (_touchingZombies.Count > 0 && _damageTimer <= Time.time) { _damageTimer = Time.time + 1.5f; _touchingZombies[0].OnHitPlayer(); _touchingZombies.Clear(); } } private void OnTriggerEnter(Collider other) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) if ((LayerMask.op_Implicit(EnemyLayer) & (1 << ((Component)other).gameObject.layer)) == 1 << ((Component)other).gameObject.layer) { CustomZombieController component = ((Component)other).GetComponent(); if (Object.op_Implicit((Object)(object)component) && !_touchingZombies.Contains(component)) { _touchingZombies.Add(component); } } } private void OnTriggerExit(Collider other) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) if ((LayerMask.op_Implicit(EnemyLayer) & (1 << ((Component)other).gameObject.layer)) == 1 << ((Component)other).gameObject.layer && Object.op_Implicit((Object)(object)((Component)other).GetComponent())) { _touchingZombies.Remove(((Component)other).GetComponent()); } } } } namespace CustomScripts.Player { public class PlayerColliderSmall : MonoBehaviour { private void OnTriggerEnter(Collider other) { if (((Component)other).GetComponent() != null) { ((Component)other).GetComponent().ApplyModifier(); } } } public class PlayerData : MonoBehaviourSingleton { public static Action GettingHitEvent; public PowerUpIndicator DoublePointsPowerUpIndicator; public PowerUpIndicator InstaKillPowerUpIndicator; public PowerUpIndicator DeathMachinePowerUpIndicator; public float DamageModifier = 1f; [HideInInspector] public float MoneyModifier = 1f; public float LargeItemSpeedMult; public float MassiveItemSpeedMult; private float _currentSpeedMult = 1f; [HideInInspector] public bool InstaKill; [HideInInspector] public bool IsInvincible; [HideInInspector] public bool DeadShotPerkActivated; [HideInInspector] public bool DoubleTapPerkActivated; [HideInInspector] public bool SpeedColaPerkActivated; [HideInInspector] public bool QuickRevivePerkActivated; [HideInInspector] public bool StaminUpPerkActivated; [HideInInspector] public bool PHDFlopperPerkActivated; [HideInInspector] public bool ElectricCherryPerkActivated; private bool stunThrottle = false; public FVRViveHand LeftHand => GM.CurrentMovementManager.Hands[0]; public FVRViveHand RightHand => GM.CurrentMovementManager.Hands[1]; public override void Awake() { base.Awake(); RoundManager.OnRoundChanged = (Action)Delegate.Combine(RoundManager.OnRoundChanged, new Action(OnRoundAdvance)); DeadShotPerkActivated = false; DoubleTapPerkActivated = false; SpeedColaPerkActivated = false; QuickRevivePerkActivated = false; StaminUpPerkActivated = false; } private void OnRoundAdvance() { GM.CurrentPlayerBody.HealPercent(1f); } [HarmonyPatch(typeof(FVRPlayerHitbox), "Damage", new Type[] { typeof(Damage) })] [HarmonyPrefix] private static void OnBeforePlayerHit(Damage d) { //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0017: Invalid comparison between Unknown and I4 if (MonoBehaviourSingleton.Instance.PHDFlopperPerkActivated && (int)d.Class == 2) { d.Dam_TotalKinetic *= 0.3f; d.Dam_TotalEnergetic *= 0.3f; } if (d.Source_IFF != GM.CurrentSceneSettings.DefaultPlayerIFF && GettingHitEvent != null) { GettingHitEvent(); } } [HarmonyPatch(typeof(FVRPhysicalObject), "BeginInteraction")] [HarmonyPostfix] private static void OnPhysicalObjectStartInteraction(FVRPhysicalObject __instance, FVRViveHand hand) { //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_003e: Expected O, but got Unknown //IL_007e: Unknown result type (might be due to invalid IL or missing references) //IL_0088: Expected O, but got Unknown if (Object.op_Implicit((Object)(object)((__instance is FVRFireArm) ? __instance : null))) { WeaponWrapper weaponWrapper = ((Component)__instance).GetComponent(); if ((Object)(object)weaponWrapper == (Object)null) { weaponWrapper = ((Component)__instance).gameObject.AddComponent(); weaponWrapper.Initialize((FVRFireArm)__instance); } weaponWrapper.OnWeaponGrabbed(); } else if (Object.op_Implicit((Object)(object)((__instance is FVRFireArmMagazine) ? __instance : null))) { MagazineWrapper component = ((Component)__instance).GetComponent(); if ((Object)(object)component == (Object)null) { component = ((Component)__instance).gameObject.AddComponent(); component.Initialize((FVRFireArmMagazine)__instance); } } } [HarmonyPatch(typeof(FVRFireArmMagazine), "Release")] [HarmonyPostfix] private static void OnMagRelease(FVRFireArmMagazine __instance, bool PhysicalRelease = false) { if (MonoBehaviourSingleton.Instance.ElectricCherryPerkActivated && __instance.m_numRounds == 0 && !MonoBehaviourSingleton.Instance.stunThrottle) { ((MonoBehaviour)MonoBehaviourSingleton.Instance).StartCoroutine(MonoBehaviourSingleton.Instance.ActivateStun()); } } public IEnumerator ActivateStun() { stunThrottle = true; if (GameSettings.UseCustomEnemies) { for (int i = 0; i < MonoBehaviourSingleton.Instance.AllCustomZombies.Count; i++) { ((MonoBehaviour)this).StartCoroutine((MonoBehaviourSingleton.Instance.AllCustomZombies[i] as CustomZombieController).Stun()); } } else { for (int j = 0; j < MonoBehaviourSingleton.Instance.ExistingZombies.Count; j++) { (MonoBehaviourSingleton.Instance.ExistingZombies[j] as ZosigZombieController).Stun(2f); } } yield return (object)new WaitForSeconds(5f); stunThrottle = false; } public IEnumerator ActivateInvincibility(float time) { IsInvincible = true; yield return (object)new WaitForSeconds(10f); IsInvincible = false; } private void OnDestroy() { RoundManager.OnRoundChanged = (Action)Delegate.Remove(RoundManager.OnRoundChanged, new Action(OnRoundAdvance)); GM.Options.MovementOptions.ArmSwingerBaseSpeeMagnitudes = new float[6] { 0f, 0.15f, 0.25f, 0.5f, 0.8f, 1.2f }; } } } namespace GunGame.Scripts { public class PlayerSpawner : MonoBehaviourSingleton { public static Action BeingRevivedEvent; public Progression Progression; private IEnumerator Start() { yield return null; GM.CurrentSceneSettings.DeathResetPoint = ((Component)this).transform; GM.CurrentMovementManager.TeleportToPoint(((Component)this).transform.position, true, ((Component)this).transform.position + ((Component)this).transform.forward); } private IEnumerator DelayedRespawn() { MonoBehaviourSingleton.Instance.Deaths++; MonoBehaviourSingleton.Instance.KillsWithCurrentWeapon = 0; yield return (object)new WaitForSeconds(3f); Progression.Demote(); GM.CurrentPlayerBody.ActivatePower((PowerupType)3, (PowerUpIntensity)0, (PowerUpDuration)2, false, false, -1f); GM.CurrentPlayerBody.HealPercent(100f); MovePlayerToRandomSpawn(); if (BeingRevivedEvent != null) { BeingRevivedEvent(); } } [HarmonyPatch(typeof(GM), "KillPlayer", new Type[] { typeof(bool) })] [HarmonyPostfix] private static void Postfix(bool KilledSelf) { MonoBehaviourSingleton.Instance.OnPlayerDeath(); } private void OnPlayerDeath() { ((MonoBehaviour)this).StartCoroutine(DelayedRespawn()); } public void MovePlayerToRandomSpawn() { //IL_002d: Unknown result type (might be due to invalid IL or missing references) //IL_0042: Unknown result type (might be due to invalid IL or missing references) //IL_004e: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) //IL_005e: Unknown result type (might be due to invalid IL or missing references) int index = Random.Range(0, MonoBehaviourSingleton.Instance.PlayerSpawners.Count); ((Component)this).transform.position = MonoBehaviourSingleton.Instance.PlayerSpawners[index].position; GM.CurrentMovementManager.TeleportToPoint(((Component)this).transform.position, true, ((Component)this).transform.position + ((Component)this).transform.forward); } private void OnDrawGizmos() { //IL_0015: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_0045: Unknown result type (might be due to invalid IL or missing references) //IL_0050: Unknown result type (might be due to invalid IL or missing references) //IL_005a: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) Gizmos.color = new Color(0.2f, 0.8f, 0.2f, 0.5f); Gizmos.DrawSphere(((Component)this).transform.position, 0.1f); Gizmos.DrawLine(((Component)this).transform.position, ((Component)this).transform.position + ((Component)this).transform.forward * 0.25f); } } } namespace CustomScripts { public class PlayerTrigger : MonoBehaviour { public UnityEvent OnEnter; public UnityEvent OnExit; private void OnTriggerEnter(Collider other) { if (Object.op_Implicit((Object)(object)((Component)other).GetComponent()) && OnEnter != null) { OnEnter.Invoke(); } } private void OnTriggerExit(Collider other) { if (Object.op_Implicit((Object)(object)((Component)other).GetComponent()) && OnExit != null) { OnExit.Invoke(); } } } } public class Teleport : MonoBehaviour, IPurchasable, IRequiresPower { public Location TargetLocation; public Transform PlayerTeleportWaypoint; public Text CostText; public int Cost; [SerializeField] private bool _isOneTimeOnly; private bool _alreadyBought; public int PurchaseCost => Cost; public bool IsOneTimeOnly => _isOneTimeOnly; public bool AlreadyBought => _alreadyBought; public bool IsPowered => CustomScripts.MonoBehaviourSingleton.Instance.PowerEnabled; private void OnValidate() { if ((Object)(object)CostText != (Object)null) { CostText.text = PurchaseCost.ToString(); } } public void OnLeverPull() { //IL_003d: Unknown result type (might be due to invalid IL or missing references) if (IsPowered && CustomScripts.MonoBehaviourSingleton.Instance.TryRemovePoints(Cost)) { CustomScripts.MonoBehaviourSingleton.Instance.ChangeLocation(TargetLocation); GM.CurrentMovementManager.TeleportToPoint(PlayerTeleportWaypoint.position, true); CustomScripts.MonoBehaviourSingleton.Instance.Play(CustomScripts.MonoBehaviourSingleton.Instance.TeleportingSound, 0.5f); } } } public class PlayerFollower : MonoBehaviour { private bool _isActive; private Transform _transform; private Transform _playerHeadTransform; private void Awake() { _transform = ((Component)this).GetComponent(); } private IEnumerator Start() { yield return (object)new WaitForSeconds(0.1f); _playerHeadTransform = ((Component)GM.CurrentPlayerBody.Head).transform; _isActive = true; } private void Update() { //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_002d: Unknown result type (might be due to invalid IL or missing references) //IL_0032: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_0049: Unknown result type (might be due to invalid IL or missing references) //IL_004e: Unknown result type (might be due to invalid IL or missing references) //IL_0052: Unknown result type (might be due to invalid IL or missing references) //IL_0057: Unknown result type (might be due to invalid IL or missing references) //IL_0066: Unknown result type (might be due to invalid IL or missing references) //IL_0067: Unknown result type (might be due to invalid IL or missing references) if (_isActive) { _transform.position = _playerHeadTransform.position; Quaternion rotation = _playerHeadTransform.rotation; float y = ((Quaternion)(ref rotation)).eulerAngles.y; Quaternion rotation2 = _transform.rotation; Vector3 eulerAngles = ((Quaternion)(ref rotation2)).eulerAngles; eulerAngles.y = y; _transform.rotation = Quaternion.Euler(eulerAngles); } } } namespace CustomScripts.Powerups { public class PackAPunch : MonoBehaviour, IPurchasable, IRequiresPower { public static Action PurchaseEvent; public int Cost; [SerializeField] private bool _isOneTimeOnly; private bool _alreadyBought; public List WeaponsData; public List Spawners; public AudioClip UpgradeSound; [HideInInspector] public bool InUse = false; public int PurchaseCost => Cost; public bool IsOneTimeOnly => _isOneTimeOnly; public bool AlreadyBought => _alreadyBought; public bool IsPowered => MonoBehaviourSingleton.Instance.PowerEnabled; private void Awake() { RoundManager.OnGameStarted = (Action)Delegate.Combine(RoundManager.OnGameStarted, new Action(LoadWeaponPool)); } private void LoadWeaponPool() { WeaponsData.AddRange(MonoBehaviourSingleton.Instance.CurrentLootPool.PackAPunchPool.ToList()); } private void OnTriggerEnter(Collider other) { if (Object.op_Implicit((Object)(object)((Component)other).GetComponent())) { FVRPhysicalObject component = ((Component)other).GetComponent(); if ((Object)(object)component.ObjectWrapper != (Object)null) { TryBuying(component); } } } public void TryBuying(FVRPhysicalObject fvrPhysicalObject) { //IL_0254: Unknown result type (might be due to invalid IL or missing references) WeaponWrapper component = ((Component)fvrPhysicalObject).GetComponent(); FVRPhysicalObject obj = fvrPhysicalObject; if ((Object)(object)((obj is FVRFireArm) ? obj : null) == (Object)null || fvrPhysicalObject.ObjectWrapper.ItemID == "M134Minigun" || (Object)(object)component == (Object)null || component.PackAPunchDeactivated) { return; } WeaponData weaponData = WeaponsData.FirstOrDefault((WeaponData x) => x.Id == fvrPhysicalObject.ObjectWrapper.ItemID); if (Object.op_Implicit((Object)(object)weaponData) && !Object.op_Implicit((Object)(object)weaponData.UpgradedWeapon)) { Debug.LogWarning((object)"Weapon recognized by the PaP, but there is no Upgraded weapon specified, applying basic upgrade"); } if (Object.op_Implicit((Object)(object)weaponData)) { if (IsPowered && MonoBehaviourSingleton.Instance.TryRemovePoints(Cost) && (Object)(object)weaponData.UpgradedWeapon != (Object)null) { if (InUse) { return; } InUse = true; _alreadyBought = true; ((FVRInteractiveObject)fvrPhysicalObject).ForceBreakInteraction(); fvrPhysicalObject.IsPickUpLocked = true; Object.Destroy((Object)(object)((Component)fvrPhysicalObject).gameObject); ((MonoBehaviour)this).StartCoroutine(DelayedSpawn(weaponData)); MonoBehaviourSingleton.Instance.Play(MonoBehaviourSingleton.Instance.BuySound, 0.5f); MonoBehaviourSingleton.Instance.Play(UpgradeSound, 0.3f); component.BlockPackAPunchUpgrade(); } } else if (IsPowered && MonoBehaviourSingleton.Instance.TryRemovePoints(Cost)) { if (InUse) { return; } InUse = true; _alreadyBought = true; ((FVRInteractiveObject)fvrPhysicalObject).ForceBreakInteraction(); ((MonoBehaviour)this).StartCoroutine(DelayedReturn(fvrPhysicalObject)); MonoBehaviourSingleton.Instance.Play(MonoBehaviourSingleton.Instance.BuySound, 0.5f); MonoBehaviourSingleton.Instance.Play(UpgradeSound, 0.3f); component.IncreaseFireRate(1.4f); component.BlockPackAPunchUpgrade(); if (Object.op_Implicit((Object)(object)((Component)fvrPhysicalObject).GetComponent())) { ((Component)fvrPhysicalObject).GetComponent().velocity = Vector3.zero; } ((Component)component).gameObject.SetActive(false); } if (PurchaseEvent != null) { PurchaseEvent(); } } private IEnumerator DelayedSpawn(WeaponData weapon) { yield return (object)new WaitForSeconds(5f); for (int i = 0; i < weapon.UpgradedWeapon.DefaultSpawners.Count; i++) { Spawners[i].ObjectId = weapon.UpgradedWeapon.DefaultSpawners[i]; Spawners[i].Spawn(); } if (GameSettings.LimitedAmmo) { for (int j = 0; j < weapon.UpgradedWeapon.LimitedAmmoMagazineCount - 1; j++) { Spawners[1].ObjectId = weapon.UpgradedWeapon.DefaultSpawners[1]; Spawners[1].Spawn(); } } InUse = false; } private IEnumerator DelayedReturn(FVRPhysicalObject weapon) { yield return (object)new WaitForSeconds(5f); ((Component)weapon).transform.position = ((Component)Spawners[0]).transform.position; ((Component)weapon).transform.rotation = Quaternion.identity; ((Component)weapon).gameObject.SetActive(true); FVRFireArm fireArm = (FVRFireArm)(object)((weapon is FVRFireArm) ? weapon : null); ((Component)fireArm).GetComponent().OnPackAPunched(); List compatibleRounds = IM.OD[((FVRPhysicalObject)fireArm).ObjectWrapper.ItemID].CompatibleSingleRounds; List compatibleMags = IM.OD[((FVRPhysicalObject)fireArm).ObjectWrapper.ItemID].CompatibleMagazines; List compatibleClips = IM.OD[((FVRPhysicalObject)fireArm).ObjectWrapper.ItemID].CompatibleClips; List compatibleSpeedLoaders = IM.OD[((FVRPhysicalObject)fireArm).ObjectWrapper.ItemID].CompatibleSpeedLoaders; FVRFireArmRound randomRound = null; if (compatibleRounds.Count > 0) { int index = Random.Range(0, compatibleRounds.Count); randomRound = ((AnvilAsset)compatibleRounds[index]).GetGameObject().GetComponent(); } int ammoContainersToSpawn = 1; if (compatibleMags.Count > 0) { FVRObject val = compatibleMags.OrderByDescending((FVRObject x) => x.MagazineCapacity).FirstOrDefault(); if (GameSettings.LimitedAmmo) { ammoContainersToSpawn = 2; } for (int num = 0; num < ammoContainersToSpawn; num++) { GameObject val2 = Object.Instantiate(((AnvilAsset)val).GetGameObject(), ((Component)Spawners[1]).transform.position, Quaternion.identity); FVRFireArmMagazine component = val2.GetComponent(); val2.AddComponent().InitialzieWithAmmo(component, randomRound.RoundClass); component.ReloadMagWithType(randomRound.RoundClass); } } else if (compatibleClips.Count > 0) { FVRObject val3 = compatibleClips.OrderByDescending((FVRObject x) => x.MagazineCapacity).FirstOrDefault(); if (GameSettings.LimitedAmmo) { ammoContainersToSpawn = 4; } for (int num2 = 0; num2 < ammoContainersToSpawn; num2++) { GameObject val4 = Object.Instantiate(((AnvilAsset)val3).GetGameObject(), ((Component)Spawners[1]).transform.position, Quaternion.identity); FVRFireArmClip component2 = val4.GetComponent(); val4.AddComponent().InitialzieWithAmmo(component2, randomRound.RoundClass); component2.ReloadClipWithType(randomRound.RoundClass); } } else if (compatibleSpeedLoaders.Count > 0) { FVRObject val5 = compatibleSpeedLoaders.OrderByDescending((FVRObject x) => x.MagazineCapacity).FirstOrDefault(); if (GameSettings.LimitedAmmo) { ammoContainersToSpawn = 4; } for (int num3 = 0; num3 < ammoContainersToSpawn; num3++) { GameObject val6 = Object.Instantiate(((AnvilAsset)val5).GetGameObject(), ((Component)Spawners[1]).transform.position, Quaternion.identity); Speedloader component3 = val6.GetComponent(); val6.AddComponent().InitialzieWithAmmo(component3, randomRound.RoundClass); component3.ReloadClipWithType(randomRound.RoundClass); } } FVRFireArmMagazine loadedMag = fireArm.Magazine; if (Object.op_Implicit((Object)(object)loadedMag) && (Object)(object)randomRound != (Object)null) { if (!Object.op_Implicit((Object)(object)((Component)loadedMag).GetComponent())) { ((Component)loadedMag).gameObject.AddComponent().InitialzieWithAmmo(loadedMag, randomRound.RoundClass); } loadedMag.ReloadMagWithType(randomRound.RoundClass); } FVRFireArmClip loadedClip = fireArm.Clip; if (Object.op_Implicit((Object)(object)loadedClip) && (Object)(object)randomRound != (Object)null) { if (!Object.op_Implicit((Object)(object)((Component)loadedClip).GetComponent())) { ((Component)loadedClip).gameObject.AddComponent().InitialzieWithAmmo(loadedClip, randomRound.RoundClass); } loadedClip.ReloadClipWithType(randomRound.RoundClass); } InUse = false; } private void OnDestroy() { RoundManager.OnGameStarted = (Action)Delegate.Remove(RoundManager.OnGameStarted, new Action(LoadWeaponPool)); } } public class PowerUpCarpenter : PowerUp { public MeshRenderer Renderer; private Animator _animator; private void Awake() { _animator = ((Component)((Component)this).transform).GetComponent(); } public override void Spawn(Vector3 pos) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) ((Component)this).transform.position = pos; ((Renderer)Renderer).enabled = true; _animator.Play("Rotating"); ((MonoBehaviour)this).StartCoroutine(DespawnDelay()); } public override void ApplyModifier() { ((MonoBehaviour)this).StartCoroutine(DelayedApply()); MonoBehaviourSingleton.Instance.Play(ApplyAudio, 0.3f); Despawn(); } private IEnumerator DelayedApply() { yield return (object)new WaitForSeconds(1f); foreach (Window window in MonoBehaviourSingleton.Instance.Windows) { window.RepairAll(); } MonoBehaviourSingleton.Instance.Play(MonoBehaviourSingleton.Instance.BarricadeRepairSound, 0.5f); } private void Despawn() { //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) Transform transform = ((Component)this).transform; transform.position += new Vector3(0f, -1000f, 0f); } private IEnumerator DespawnDelay() { yield return (object)new WaitForSeconds(15f); for (int i = 0; i < 5; i++) { ((Renderer)Renderer).enabled = false; yield return (object)new WaitForSeconds(0.3f); ((Renderer)Renderer).enabled = true; yield return (object)new WaitForSeconds(0.7f); } Despawn(); } } public class PowerUpDeathMachine : PowerUp { public AudioClip EndAudio; public MeshRenderer Renderer; public CustomItemSpawner MinigunSpawner; public CustomItemSpawner MagazineSpawner; private Animator _animator; private FVRPhysicalObject _magazineObject; private FVRPhysicalObject _minigunObject; private void Awake() { _animator = ((Component)((Component)this).transform).GetComponent(); } public override void Spawn(Vector3 pos) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) ((Component)this).transform.position = pos; ((Renderer)Renderer).enabled = true; _animator.Play("Rotating"); ((MonoBehaviour)this).StartCoroutine(DespawnDelay()); } public override void ApplyModifier() { MinigunSpawner.Spawn(); MagazineSpawner.Spawn(); _minigunObject = MinigunSpawner.SpawnedObject.GetComponent(); _minigunObject.SpawnLockable = false; _minigunObject.UsesGravity = false; _minigunObject.RootRigidbody.isKinematic = true; _magazineObject = MagazineSpawner.SpawnedObject.GetComponent(); _magazineObject.SpawnLockable = false; _magazineObject.UsesGravity = false; _magazineObject.RootRigidbody.isKinematic = true; FVRPhysicalObject magazineObject = _magazineObject; ? val = ((magazineObject is FVRFireArmMagazine) ? magazineObject : null); FVRPhysicalObject minigunObject = _minigunObject; ((FVRFireArmMagazine)val).Load((FVRFireArm)(object)((minigunObject is FVRFireArm) ? minigunObject : null)); FVRViveHand rightHand = MonoBehaviourSingleton.Instance.RightHand; if ((Object)(object)rightHand.CurrentInteractable == (Object)null && rightHand.Grip_Button.stateDown) { Debug.Log((object)"Player should grab minigun"); rightHand.RetrieveObject(_minigunObject); } MonoBehaviourSingleton.Instance.DeathMachinePowerUpIndicator.Activate(30f); ((MonoBehaviour)this).StartCoroutine(DisablePowerUpDelay(30f)); MonoBehaviourSingleton.Instance.Play(ApplyAudio, 0.5f); Despawn(); } private IEnumerator DisablePowerUpDelay(float time) { yield return (object)new WaitForSeconds(time); MonoBehaviourSingleton.Instance.Play(EndAudio, 0.5f); ((FVRInteractiveObject)_minigunObject).ForceBreakInteraction(); _minigunObject.IsPickUpLocked = true; Object.Destroy((Object)(object)((Component)_minigunObject).gameObject); ((FVRInteractiveObject)_magazineObject).ForceBreakInteraction(); _magazineObject.IsPickUpLocked = true; Object.Destroy((Object)(object)((Component)_magazineObject).gameObject); } private void Despawn() { //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) Transform transform = ((Component)this).transform; transform.position += new Vector3(0f, -1000f, 0f); } private IEnumerator DespawnDelay() { yield return (object)new WaitForSeconds(15f); for (int i = 0; i < 5; i++) { ((Renderer)Renderer).enabled = false; yield return (object)new WaitForSeconds(0.3f); ((Renderer)Renderer).enabled = true; yield return (object)new WaitForSeconds(0.7f); } Despawn(); } } } namespace CustomScripts { public class PowerUpDoublePoints : PowerUp { public static Action PickedUpEvent; public AudioClip EndAudio; public MeshRenderer Renderer; private Animator _animator; private void Awake() { _animator = ((Component)((Component)this).transform).GetComponent(); } public override void Spawn(Vector3 pos) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) ((Component)this).transform.position = pos; ((Renderer)Renderer).enabled = true; _animator.Play("Rotating"); ((MonoBehaviour)this).StartCoroutine(DespawnDelay()); } public override void ApplyModifier() { MonoBehaviourSingleton.Instance.MoneyModifier = 2f; MonoBehaviourSingleton.Instance.DoublePointsPowerUpIndicator.Activate(30f); ((MonoBehaviour)this).StartCoroutine(DisablePowerUpDelay(30f)); MonoBehaviourSingleton.Instance.Play(ApplyAudio, 0.3f); if (PickedUpEvent != null) { PickedUpEvent(); } Despawn(); } private IEnumerator DisablePowerUpDelay(float time) { yield return (object)new WaitForSeconds(time); MonoBehaviourSingleton.Instance.Play(EndAudio, 0.5f); MonoBehaviourSingleton.Instance.MoneyModifier = 1f; } private void Despawn() { //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) Transform transform = ((Component)this).transform; transform.position += new Vector3(0f, -1000f, 0f); } private IEnumerator DespawnDelay() { yield return (object)new WaitForSeconds(15f); for (int i = 0; i < 5; i++) { ((Renderer)Renderer).enabled = false; yield return (object)new WaitForSeconds(0.3f); ((Renderer)Renderer).enabled = true; yield return (object)new WaitForSeconds(0.7f); } Despawn(); } } public class PowerUpIndicator : MonoBehaviour { private ParticleSystem _ps; private void Awake() { _ps = ((Component)this).GetComponent(); } public void Activate(float time) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) EmissionModule emission = _ps.emission; ((EmissionModule)(ref emission)).rateOverTime = MinMaxCurve.op_Implicit(2f); _ps.Play(true); ((MonoBehaviour)this).StartCoroutine(DisablePSTimer(time)); } private IEnumerator DisablePSTimer(float time) { yield return (object)new WaitForSeconds(time - 6f); EmissionModule emission = _ps.emission; ((EmissionModule)(ref emission)).rateOverTime = MinMaxCurve.op_Implicit(1f); yield return (object)new WaitForSeconds(6f); _ps.Stop(true); } } } namespace CustomScripts.Powerups { public class PowerUpInstaKill : PowerUp { public AudioClip EndAudio; public MeshRenderer Renderer; private Animator _animator; private void Awake() { _animator = ((Component)((Component)this).transform).GetComponent(); } public override void Spawn(Vector3 pos) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) ((Component)this).transform.position = pos; ((Renderer)Renderer).enabled = true; _animator.Play("Rotating"); ((MonoBehaviour)this).StartCoroutine(DespawnDelay()); } public override void ApplyModifier() { MonoBehaviourSingleton.Instance.InstaKill = true; MonoBehaviourSingleton.Instance.InstaKillPowerUpIndicator.Activate(30f); ((MonoBehaviour)this).StartCoroutine(DisablePowerUpDelay(30f)); MonoBehaviourSingleton.Instance.Play(ApplyAudio, 0.2f); Despawn(); } private IEnumerator DisablePowerUpDelay(float time) { yield return (object)new WaitForSeconds(time); MonoBehaviourSingleton.Instance.Play(EndAudio, 0.5f); MonoBehaviourSingleton.Instance.InstaKill = false; } private void Despawn() { //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) Transform transform = ((Component)this).transform; transform.position += new Vector3(0f, -1000f, 0f); } private IEnumerator DespawnDelay() { yield return (object)new WaitForSeconds(15f); for (int i = 0; i < 5; i++) { ((Renderer)Renderer).enabled = false; yield return (object)new WaitForSeconds(0.3f); ((Renderer)Renderer).enabled = true; yield return (object)new WaitForSeconds(0.7f); } Despawn(); } } public class PowerUpMaxAmmo : PowerUp { private Animator animator; public MeshRenderer Renderer; private void Awake() { animator = ((Component)((Component)this).transform).GetComponent(); } public override void Spawn(Vector3 pos) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) ((Component)this).transform.position = pos; ((Renderer)Renderer).enabled = true; animator.Play("Rotating"); ((MonoBehaviour)this).StartCoroutine(DespawnDelay()); } public override void ApplyModifier() { TryToLoadAmmoInQuickbelt(); TryToLoadAmmoInHand(MonoBehaviourSingleton.Instance.LeftHand); TryToLoadAmmoInHand(MonoBehaviourSingleton.Instance.RightHand); MonoBehaviourSingleton.Instance.Play(ApplyAudio, 0.5f); Despawn(); } private void TryToLoadAmmoInHand(FVRViveHand hand) { //IL_004b: Unknown result type (might be due to invalid IL or missing references) FVRInteractiveObject currentInteractable = hand.CurrentInteractable; if (!Object.op_Implicit((Object)(object)currentInteractable) || !Object.op_Implicit((Object)(object)((currentInteractable is FVRFireArm) ? currentInteractable : null))) { return; } FVRFireArmMagazine componentInChildren = ((Component)currentInteractable).GetComponentInChildren(); if (Object.op_Implicit((Object)(object)componentInChildren)) { MagazineWrapper component = ((Component)componentInChildren).GetComponent(); if (Object.op_Implicit((Object)(object)component)) { componentInChildren.ReloadMagWithType(component.RoundClass); } else if (componentInChildren.DefaultLoadingPattern.Classes.Length > 0) { componentInChildren.ReloadMagWithType(componentInChildren.DefaultLoadingPattern.Classes[0]); } } } private void TryToLoadAmmoInQuickbelt() { //IL_004e: Unknown result type (might be due to invalid IL or missing references) //IL_00b4: Unknown result type (might be due to invalid IL or missing references) //IL_01d5: Unknown result type (might be due to invalid IL or missing references) //IL_011d: Unknown result type (might be due to invalid IL or missing references) //IL_0219: Unknown result type (might be due to invalid IL or missing references) //IL_0163: Unknown result type (might be due to invalid IL or missing references) //IL_0238: Unknown result type (might be due to invalid IL or missing references) //IL_0249: Unknown result type (might be due to invalid IL or missing references) //IL_024e: Unknown result type (might be due to invalid IL or missing references) //IL_0252: Unknown result type (might be due to invalid IL or missing references) foreach (FVRQuickBeltSlot item in GM.CurrentPlayerBody.QBSlots_Internal) { MagazineWrapper magazineWrapper = null; FVRPhysicalObject curObject = item.CurObject; FVRFireArmMagazine val = (FVRFireArmMagazine)(object)((curObject is FVRFireArmMagazine) ? curObject : null); if (Object.op_Implicit((Object)(object)val)) { magazineWrapper = ((Component)val).GetComponent(); if (Object.op_Implicit((Object)(object)magazineWrapper)) { val.ReloadMagWithType(magazineWrapper.RoundClass); } else if (val.DefaultLoadingPattern.Classes.Length > 0) { val.ReloadMagWithType(val.DefaultLoadingPattern.Classes[0]); } } FVRPhysicalObject curObject2 = item.CurObject; FVRFireArmClip val2 = (FVRFireArmClip)(object)((curObject2 is FVRFireArmClip) ? curObject2 : null); if (Object.op_Implicit((Object)(object)val2)) { magazineWrapper = ((Component)val2).GetComponent(); if (Object.op_Implicit((Object)(object)magazineWrapper)) { val2.ReloadClipWithType(magazineWrapper.RoundClass); } else if (val2.DefaultLoadingPattern.Classes.Length > 0) { val2.ReloadClipWithType(val2.DefaultLoadingPattern.Classes[0]); } } FVRPhysicalObject curObject3 = item.CurObject; Speedloader val3 = (Speedloader)(object)((curObject3 is Speedloader) ? curObject3 : null); if (Object.op_Implicit((Object)(object)val3)) { magazineWrapper = ((Component)val3).GetComponent(); if (Object.op_Implicit((Object)(object)magazineWrapper)) { val3.ReloadClipWithType(magazineWrapper.RoundClass); } else { try { List compatibleSingleRounds = IM.OD[((FVRPhysicalObject)val3).ObjectWrapper.ItemID].CompatibleSingleRounds; FVRFireArmRound component = ((AnvilAsset)compatibleSingleRounds[0]).GetGameObject().GetComponent(); val3.ReloadClipWithType(component.RoundClass); } catch (Exception ex) { Debug.LogWarning((object)"Raygun failed to reload it's ammo, tell Kodeman"); Debug.LogError((object)ex); } } } FVRPhysicalObject curObject4 = item.CurObject; FVRFireArm val4 = (FVRFireArm)(object)((curObject4 is FVRFireArm) ? curObject4 : null); if (!Object.op_Implicit((Object)(object)val4)) { continue; } FVRFireArmMagazine componentInChildren = ((Component)val4).GetComponentInChildren(); if (Object.op_Implicit((Object)(object)componentInChildren)) { magazineWrapper = ((Component)componentInChildren).GetComponent(); if (Object.op_Implicit((Object)(object)magazineWrapper)) { componentInChildren.ReloadMagWithType(magazineWrapper.RoundClass); } else if (componentInChildren.DefaultLoadingPattern.Classes.Length > 0) { componentInChildren.ReloadMagWithType(componentInChildren.DefaultLoadingPattern.Classes[0]); } else if (AM.SRoundDisplayDataDic[componentInChildren.RoundType].Classes.Length > 0) { FireArmRoundClass val5 = AM.SRoundDisplayDataDic[componentInChildren.RoundType].Classes[0].Class; componentInChildren.ReloadMagWithType(val5); } } } } private void Despawn() { //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) Transform transform = ((Component)this).transform; transform.position += new Vector3(0f, -1000f, 0f); } private IEnumerator DespawnDelay() { yield return (object)new WaitForSeconds(15f); for (int i = 0; i < 5; i++) { ((Renderer)Renderer).enabled = false; yield return (object)new WaitForSeconds(0.3f); ((Renderer)Renderer).enabled = true; yield return (object)new WaitForSeconds(0.7f); } Despawn(); } } } namespace CustomScripts { public class PowerUpNuke : PowerUp { public MeshRenderer Renderer; private Animator _animator; private void Awake() { _animator = ((Component)((Component)this).transform).GetComponent(); } public override void Spawn(Vector3 pos) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) ((Component)this).transform.position = pos; ((Renderer)Renderer).enabled = true; _animator.Play("Rotating"); ((MonoBehaviour)this).StartCoroutine(DespawnDelay()); } public override void ApplyModifier() { ((MonoBehaviour)this).StartCoroutine(DelayedKillAll()); MonoBehaviourSingleton.Instance.Play(ApplyAudio, 0.5f); Despawn(); } private IEnumerator DelayedKillAll() { for (int i = MonoBehaviourSingleton.Instance.ExistingZombies.Count - 1; i >= 0; i--) { if (MonoBehaviourSingleton.Instance.ExistingZombies.Count > i) { MonoBehaviourSingleton.Instance.ExistingZombies[i].OnHit(9999f); yield return (object)new WaitForSeconds(0.2f); } } yield return null; } private void Despawn() { //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) Transform transform = ((Component)this).transform; transform.position += new Vector3(0f, -1000f, 0f); } private IEnumerator DespawnDelay() { yield return (object)new WaitForSeconds(15f); for (int i = 0; i < 5; i++) { ((Renderer)Renderer).enabled = false; yield return (object)new WaitForSeconds(0.3f); ((Renderer)Renderer).enabled = true; yield return (object)new WaitForSeconds(0.7f); } Despawn(); } } } namespace GunGame.Scripts { public class Progression : MonoBehaviourSingleton { public static Action SosigDespawnedEvent; public static Action WeaponChangedEvent; public AudioSource EquipSound; [HideInInspector] public int KillsWithCurrentWeapon = 0; public static List DeadSosigs = new List(); private List _currentEquipment = new List(); private WeaponBuffer _weaponBuffer; public int CurrentWeaponId { get; private set; } public override void Awake() { base.Awake(); _weaponBuffer = ((Component)this).GetComponent(); } public void Demote() { if (!MonoBehaviourSingleton.Instance.GameEnded) { CurrentWeaponId--; if (CurrentWeaponId < 0) { CurrentWeaponId = 0; } SpawnAndEquip(demotion: true); } } public void Promote() { if (!MonoBehaviourSingleton.Instance.GameEnded) { if (GunGame.Scripts.Options.GameSettings.HealOnPromotion) { GM.CurrentPlayerBody.HealPercent(100f); } CurrentWeaponId++; if (CurrentWeaponId >= GunGame.Scripts.Options.GameSettings.CurrentPool.Guns.Count || CurrentWeaponId >= WeaponCountOption.WeaponCount) { CurrentWeaponId = GunGame.Scripts.Options.GameSettings.CurrentPool.Guns.Count - 1; MonoBehaviourSingleton.Instance.EndGame(); } else { EquipSound.Play(); SpawnAndEquip(); } } } public void SpawnAndEquip(bool demotion = false) { DestroyOldEq(); if (((Component)MonoBehaviourSingleton.Instance.DebugWeaponText).gameObject.activeInHierarchy) { MonoBehaviourSingleton.Instance.DebugWeaponText.text = "Weapon " + GunGame.Scripts.Options.GameSettings.CurrentPool.GetWeapon(CurrentWeaponId).GunName; MonoBehaviourSingleton.Instance.DebugAmmoText.text = "Ammo " + GunGame.Scripts.Options.GameSettings.CurrentPool.GetWeapon(CurrentWeaponId).MagName; } FVRPhysicalObject fromBuffer = _weaponBuffer.GetFromBuffer(ObjectType.Gun, CurrentWeaponId, demotion); if ((Object)(object)fromBuffer == (Object)null) { Debug.LogError((object)"Trying to equip null gun! Probably the ObjectId is invalid. Attempting a fix by promoting the player"); Promote(); return; } _currentEquipment.Add(((Component)fromBuffer).gameObject); if (Utility.IsNullOrWhiteSpace(GunGame.Scripts.Options.GameSettings.CurrentPool.Guns[CurrentWeaponId].MagName)) { EquipWeapon(fromBuffer); _weaponBuffer.DestroyMagBuffer(); } else { FVRPhysicalObject fromBuffer2 = _weaponBuffer.GetFromBuffer(ObjectType.MagazineToLoad, CurrentWeaponId, demotion); if ((Object)(object)fromBuffer2 == (Object)null) { Debug.LogError((object)"Trying to equip null magazine! Probably the ObjectId is invalid. Attempting a fix by promoting the player"); Promote(); return; } fromBuffer2.UsesGravity = false; fromBuffer2.RootRigidbody.isKinematic = true; FVRPhysicalObject fromBuffer3 = _weaponBuffer.GetFromBuffer(ObjectType.MagazineForQuickbelt, CurrentWeaponId, demotion); _currentEquipment.Add(((Component)fromBuffer2).gameObject); _currentEquipment.Add(((Component)fromBuffer3).gameObject); if (!GunGame.Scripts.Options.GameSettings.DisabledAutoLoading) { LoadTheGun(fromBuffer, fromBuffer2); } EquipWeapon(fromBuffer); FixAmmoRotation(); MoveMagazineToSlot(fromBuffer3); } _weaponBuffer.ClearBuffer(); _weaponBuffer.GenerateBuffer(CurrentWeaponId); if (WeaponChangedEvent != null) { WeaponChangedEvent(); } } private void DestroyOldEq() { for (int i = 0; i < _currentEquipment.Count; i++) { if (Object.op_Implicit((Object)(object)_currentEquipment[i]) && Object.op_Implicit((Object)(object)_currentEquipment[i].GetComponent())) { ((FVRInteractiveObject)_currentEquipment[i].GetComponent()).ForceBreakInteraction(); } Object.Destroy((Object)(object)_currentEquipment[i]); } _currentEquipment.Clear(); } private void MoveMagazineToSlot(FVRPhysicalObject magazine) { if (Object.op_Implicit((Object)(object)QuickbeltOption.AmmoQuickbeltSlot.CurObject)) { QuickbeltOption.AmmoQuickbeltSlot.CurObject.ClearQuickbeltState(); } magazine.ForceObjectIntoInventorySlot(QuickbeltOption.AmmoQuickbeltSlot); magazine.m_isSpawnLock = true; } private void LoadTheGun(FVRPhysicalObject weapon, FVRPhysicalObject ammo) { //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_0053: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Expected O, but got Unknown //IL_014d: Unknown result type (might be due to invalid IL or missing references) //IL_015e: Unknown result type (might be due to invalid IL or missing references) //IL_0163: Unknown result type (might be due to invalid IL or missing references) //IL_0167: Unknown result type (might be due to invalid IL or missing references) if ((Object)(object)((ammo is FVRFireArmMagazine) ? ammo : null) != (Object)null) { ((FVRFireArmMagazine)ammo).Load((FVRFireArm)(object)((weapon is FVRFireArm) ? weapon : null)); } else if (Object.op_Implicit((Object)(object)((Component)weapon).GetComponentInChildren()) && (Object)(object)((ammo is Speedloader) ? ammo : null) != (Object)null) { ((Component)weapon).GetComponentInChildren().LoadFromSpeedLoader((Speedloader)ammo); } else if (GunGame.Scripts.Options.GameSettings.AlwaysChamberRounds || ((Object)(object)((ammo is FVRFireArmMagazine) ? ammo : null) == (Object)null && (Object)(object)((Component)weapon).GetComponentInChildren() == (Object)null && (Object)(object)((weapon is FVRFireArm) ? weapon : null) != (Object)null)) { List chambers = ((Component)weapon).GetComponent().GetChambers(); foreach (FVRFireArmChamber item in chambers) { FVRFireArmRound component = ((Component)_weaponBuffer.SpawnImmediate(ObjectType.MagazineToLoad, GunGame.Scripts.Options.GameSettings.CurrentPool.Guns[CurrentWeaponId])).GetComponent(); item.SetRound(component, false); } BreakActionWeapon componentInChildren = ((Component)weapon).GetComponentInChildren(); if ((Object)(object)componentInChildren != (Object)null) { componentInChildren.CockAllHammers(); } } FVRFireArmMagazine componentInChildren2 = ((Component)weapon).GetComponentInChildren(); if (Object.op_Implicit((Object)(object)componentInChildren2)) { FireArmRoundClass val = AM.SRoundDisplayDataDic[componentInChildren2.RoundType].Classes[0].Class; componentInChildren2.ReloadMagWithType(val); } } public void FixAmmoRotation() { //IL_0095: Unknown result type (might be due to invalid IL or missing references) if (Object.op_Implicit((Object)(object)_currentEquipment[0]) && Object.op_Implicit((Object)(object)_currentEquipment[1]) && Object.op_Implicit((Object)(object)_currentEquipment[0].GetComponent()) && Object.op_Implicit((Object)(object)_currentEquipment[0].GetComponent().MagazineMountPos)) { _currentEquipment[1].transform.rotation = ((Component)_currentEquipment[0].GetComponent().MagazineMountPos).transform.rotation; } } private void EquipWeapon(FVRPhysicalObject weapon) { FVRViveHand val = GM.CurrentMovementManager.Hands[1]; if (LeftHandOption.LeftHandModeEnabled) { val = GM.CurrentMovementManager.Hands[0]; } val.RetrieveObject(weapon); } private static void OnSosigKilledByPlayer() { MonoBehaviourSingleton.Instance.Kills++; MonoBehaviourSingleton.Instance.KillsWithCurrentWeapon++; if (MonoBehaviourSingleton.Instance.KillsWithCurrentWeapon % KillsPerWeaponOption.KillsPerWeaponCount == 0) { MonoBehaviourSingleton.Instance.Promote(); } } [HarmonyPatch(typeof(Sosig), "SosigDies")] [HarmonyPostfix] private static void OnSosigDied(Sosig __instance, DamageClass damClass, SosigDeathType deathType) { if (!DeadSosigs.Contains(((Object)__instance).GetInstanceID())) { DeadSosigs.Add(((Object)__instance).GetInstanceID()); if (__instance.GetDiedFromIFF() == GM.CurrentPlayerBody.GetPlayerIFF()) { OnSosigKilledByPlayer(); } __instance.DeSpawnSosig(); MonoBehaviourSingleton.Instance.SpawnSosigRandomPlace(); } } } } public class SaveSystem : CustomScripts.MonoBehaviourSingleton { public string MapID; public override void Awake() { base.Awake(); RoundManager.OnGameStarted = (Action)Delegate.Combine(RoundManager.OnGameStarted, new Action(SaveStartSettings)); MapID += "CodZombies"; LoadStartSettings(); } public void SaveHighscore(int score) { if (PlayerPrefs.GetInt(MapID + "HighScore") < score) { PlayerPrefs.SetInt(MapID + "HighScore", score); } } public int GetHighscore() { return PlayerPrefs.GetInt(MapID + "HighScore"); } public void SaveStartSettings() { PlayerPrefs.SetInt(MapID + "HardMode", CustomScripts.GameSettings.HardMode ? 1 : 0); PlayerPrefs.SetInt(MapID + "UseCustomEnemies", CustomScripts.GameSettings.UseCustomEnemies ? 1 : 0); PlayerPrefs.SetInt(MapID + "LimitedAmmo", CustomScripts.GameSettings.LimitedAmmo ? 1 : 0); PlayerPrefs.SetInt(MapID + "SpecialRoundDisabled", CustomScripts.GameSettings.SpecialRoundDisabled ? 1 : 0); PlayerPrefs.SetInt(MapID + "ItemSpawnerSpawned", CustomScripts.GameSettings.ItemSpawnerEnabled ? 1 : 0); PlayerPrefs.SetInt(MapID + "WeakerEnemiesEnabled", CustomScripts.GameSettings.WeakerEnemiesEnabled ? 1 : 0); } public void LoadStartSettings() { CustomScripts.GameSettings.HardMode = PlayerPrefs.GetInt(MapID + "HardMode") > 0; CustomScripts.GameSettings.UseCustomEnemies = PlayerPrefs.GetInt(MapID + "UseCustomEnemies") > 0; CustomScripts.GameSettings.LimitedAmmo = PlayerPrefs.GetInt(MapID + "LimitedAmmo") > 0; CustomScripts.GameSettings.SpecialRoundDisabled = PlayerPrefs.GetInt(MapID + "SpecialRoundDisabled") > 0; CustomScripts.GameSettings.ItemSpawnerEnabled = PlayerPrefs.GetInt(MapID + "ItemSpawnerSpawned") > 0; CustomScripts.GameSettings.WeakerEnemiesEnabled = PlayerPrefs.GetInt(MapID + "WeakerEnemiesEnabled") > 0; if (CustomScripts.GameSettings.OnSettingsChanged != null) { CustomScripts.GameSettings.OnSettingsChanged(); } } private void OnDestroy() { RoundManager.OnGameStarted = (Action)Delegate.Remove(RoundManager.OnGameStarted, new Action(SaveStartSettings)); } } namespace GunGame.Scripts { public class SosigBehavior : MonoBehaviourSingleton { public int MaxSosigCount = 8; [HideInInspector] public int RealSosigCount; [Header("Don't spawn sosigs too close or too far from the player")] public int IgnoredSpawnersCloseToPlayer = 2; public int IgnoredSpawnersFarFromPlayer = 0; public bool DespawnDistantSosigs = false; public float MaxSosigDistanceFromPlayer = 0f; public float HearRangeMultiplier = 1f; public float SightRangeMultiplier = 1f; public List Waypoints; public List SosigSpawners; [HideInInspector] public List Sosigs; public override void Awake() { base.Awake(); Sosigs = new List(); GameManager.GameStartedEvent = (Action)Delegate.Combine(GameManager.GameStartedEvent, new Action(OnGameStarted)); } private void OnGameStarted() { RealSosigCount = GunGame.Scripts.Options.GameSettings.MaxSosigCount; for (int i = 0; i < RealSosigCount; i++) { SpawnSosigRandomPlace(); } ((MonoBehaviour)this).StartCoroutine(UpdateWaypoints()); } [HarmonyPatch(typeof(Sosig), "Start")] [HarmonyPostfix] private static void SosigSpawned(Sosig __instance) { __instance.CanBeKnockedOut = false; __instance.m_maxUnconsciousTime = 0f; __instance.BleedRateMult = 0.1f; for (int i = 0; i < __instance.Links.Count; i++) { __instance.Links[i].SetIntegrity(__instance.Links[i].m_integrity * 0.65f); } __instance.Links[0].DamMult = 13.5f; __instance.Links[1].DamMult = 6f; __instance.Links[2].DamMult = 5f; __instance.Links[3].DamMult = 4f; __instance.MaxHearingRange *= MonoBehaviourSingleton.Instance.HearRangeMultiplier; __instance.MaxSightRange *= MonoBehaviourSingleton.Instance.SightRangeMultiplier; if (MonoBehaviourSingleton.Instance.DespawnDistantSosigs) { ((MonoBehaviour)MonoBehaviourSingleton.Instance).StartCoroutine(MonoBehaviourSingleton.Instance.CheckSosigDistance(__instance)); } } private IEnumerator UpdateWaypoints() { while (true) { for (int i = 0; i < Sosigs.Count; i++) { if (i < 0 || i >= Sosigs.Count) { continue; } if ((Object)(object)Sosigs[i] == (Object)null) { Sosigs.RemoveAt(i); i--; if (i < 0) { continue; } } Sosigs[i].SetCurrentOrder((SosigOrder)7); Sosigs[i].CommandAssaultPoint(Waypoints[Random.Range(0, Waypoints.Count)].position); } yield return (object)new WaitForSeconds((float)Random.Range(12, 25)); } } private IEnumerator CheckSosigDistance(Sosig sosig) { WaitForSeconds delay = new WaitForSeconds(6f); while ((Object)(object)sosig != (Object)null) { yield return delay; try { if (Vector3.Distance(((Component)GM.CurrentPlayerBody).transform.position, ((Component)sosig).transform.position) > MaxSosigDistanceFromPlayer) { if (!Progression.DeadSosigs.Contains(((Object)sosig).GetInstanceID())) { sosig.DeSpawnSosig(); MonoBehaviourSingleton.Instance.SpawnSosigRandomPlace(); } break; } } catch (Exception) { } } } public void SpawnSosigRandomPlace() { List list = SosigSpawners.OrderBy((CustomSosigSpawner spawner) => Vector3.Distance(((Component)spawner).transform.position, ((Component)GM.CurrentPlayerBody).transform.position)).ToList(); if (IgnoredSpawnersCloseToPlayer > list.Count || IgnoredSpawnersFarFromPlayer > list.Count || IgnoredSpawnersCloseToPlayer + IgnoredSpawnersFarFromPlayer > list.Count) { Debug.LogError((object)"Ignoring more spawners than available, aborting"); } int index = Random.Range(IgnoredSpawnersCloseToPlayer, list.Count - IgnoredSpawnersFarFromPlayer); Sosig item = list[index].Spawn(); Sosigs.Add(item); } private void OnDestroy() { GameManager.GameStartedEvent = (Action)Delegate.Remove(GameManager.GameStartedEvent, new Action(OnGameStarted)); } } } public class StartingArea : MonoBehaviour { public AudioSource StartingMusic; private void Awake() { RoundManager.OnGameStarted = (Action)Delegate.Combine(RoundManager.OnGameStarted, new Action(OnGameStart)); } public void OnGameStart() { StartingMusic.Stop(); Object.Destroy((Object)(object)((Component)this).gameObject); } private void OnDestroy() { RoundManager.OnGameStarted = (Action)Delegate.Remove(RoundManager.OnGameStarted, new Action(OnGameStart)); } } namespace CustomScripts.Gamemode { public class WeaponWrapper : MonoBehaviour { public bool DoubleTapActivated = false; public bool SpeedColaActivated = false; private FVRFireArm weapon; public bool PackAPunchDeactivated = false; public int TimesPackAPunched = 0; public void Initialize(FVRFireArm weapon) { this.weapon = weapon; } public void OnPackAPunched() { TimesPackAPunched++; } public void OnWeaponGrabbed() { if (!DoubleTapActivated && MonoBehaviourSingleton.Instance.DoubleTapPerkActivated) { DoubleTapActivated = true; IncreaseFireRate(1.33f); } if (!SpeedColaActivated && MonoBehaviourSingleton.Instance.SpeedColaPerkActivated) { SpeedColaActivated = true; AddSpeedColaEffect(); } if (PackAPunchDeactivated) { ((MonoBehaviour)this).StartCoroutine(DelayedReActivation()); } } public void IncreaseFireRate(float amount) { //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Expected O, but got Unknown //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Expected O, but got Unknown //IL_00d5: Unknown result type (might be due to invalid IL or missing references) //IL_00db: Expected O, but got Unknown FVRFireArm obj = weapon; if (Object.op_Implicit((Object)(object)((obj is Handgun) ? obj : null))) { Handgun val = (Handgun)weapon; HandgunSlide slide = val.Slide; slide.SpringStiffness *= amount; HandgunSlide slide2 = val.Slide; slide2.Speed_Forward *= amount; HandgunSlide slide3 = val.Slide; slide3.Speed_Rearward *= amount; } FVRFireArm obj2 = weapon; if (Object.op_Implicit((Object)(object)((obj2 is ClosedBoltWeapon) ? obj2 : null))) { ClosedBoltWeapon val2 = (ClosedBoltWeapon)weapon; ClosedBolt bolt = val2.Bolt; bolt.SpringStiffness *= amount; ClosedBolt bolt2 = val2.Bolt; bolt2.Speed_Forward *= amount; ClosedBolt bolt3 = val2.Bolt; bolt3.Speed_Rearward *= amount; } FVRFireArm obj3 = weapon; if (Object.op_Implicit((Object)(object)((obj3 is OpenBoltReceiver) ? obj3 : null))) { OpenBoltReceiver val3 = (OpenBoltReceiver)weapon; OpenBoltReceiverBolt bolt4 = val3.Bolt; bolt4.BoltSpringStiffness *= amount; OpenBoltReceiverBolt bolt5 = val3.Bolt; bolt5.BoltSpeed_Forward *= amount; OpenBoltReceiverBolt bolt6 = val3.Bolt; bolt6.BoltSpeed_Rearward *= amount; } } private void AddSpeedColaEffect() { //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Expected O, but got Unknown //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_004d: Expected O, but got Unknown //IL_0071: Unknown result type (might be due to invalid IL or missing references) //IL_0077: Expected O, but got Unknown FVRFireArm obj = weapon; if (Object.op_Implicit((Object)(object)((obj is Handgun) ? obj : null))) { Handgun val = (Handgun)weapon; val.HasMagReleaseButton = true; } FVRFireArm obj2 = weapon; if (Object.op_Implicit((Object)(object)((obj2 is ClosedBoltWeapon) ? obj2 : null))) { ClosedBoltWeapon val2 = (ClosedBoltWeapon)weapon; val2.HasMagReleaseButton = true; } FVRFireArm obj3 = weapon; if (Object.op_Implicit((Object)(object)((obj3 is OpenBoltReceiver) ? obj3 : null))) { OpenBoltReceiver val3 = (OpenBoltReceiver)weapon; val3.HasMagReleaseButton = true; } } public void BlockPackAPunchUpgrade() { PackAPunchDeactivated = true; } private IEnumerator DelayedReActivation() { yield return (object)new WaitForSeconds(2f); PackAPunchDeactivated = false; } } } namespace GunGame.Scripts.Weapons { [Serializable] public class GunData { public string GunName; public string MagName; public int CategoryID; } public class PoolChoice : MonoBehaviour { public Text TitleText; public Button Button; private WeaponPool _weaponPool; public void Initialize(WeaponPool weaponPool) { //IL_0030: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Expected O, but got Unknown _weaponPool = weaponPool; TitleText.text = _weaponPool.Name; ((UnityEvent)Button.onClick).AddListener(new UnityAction(OnClick)); } public void OnClick() { GunGame.Scripts.Options.GameSettings.ChangeCurrentPool(_weaponPool); } } public class WeaponBuffer : MonoBehaviour { public Transform BufferSpawnPos; private FVRPhysicalObject _gun; private FVRPhysicalObject _magazineToLoad; private FVRPhysicalObject _magazineForQuickbelt; private FVRPhysicalObject GetBufferObject(ObjectType type) { return (FVRPhysicalObject)(type switch { ObjectType.Gun => _gun, ObjectType.MagazineToLoad => _magazineToLoad, ObjectType.MagazineForQuickbelt => _magazineForQuickbelt, _ => null, }); } public FVRPhysicalObject GetFromBuffer(ObjectType type, int index, bool demoted) { FVRPhysicalObject bufferObject = GetBufferObject(type); if (demoted) { if (Object.op_Implicit((Object)(object)bufferObject)) { Object.Destroy((Object)(object)((Component)bufferObject).gameObject); } return SpawnImmediate(type, GunGame.Scripts.Options.GameSettings.CurrentPool.GetWeapon(index)); } FVRPhysicalObject val = bufferObject; if ((Object)(object)val == (Object)null) { val = SpawnImmediate(type, GunGame.Scripts.Options.GameSettings.CurrentPool.GetWeapon(index)); } return val; } public void ClearBuffer() { _gun = null; _magazineToLoad = null; _magazineForQuickbelt = null; } public void DestroyMagBuffer() { if (Object.op_Implicit((Object)(object)_magazineToLoad)) { Object.Destroy((Object)(object)((Component)_magazineToLoad).gameObject); } if (Object.op_Implicit((Object)(object)_magazineForQuickbelt)) { Object.Destroy((Object)(object)((Component)_magazineForQuickbelt).gameObject); } } public void GenerateBuffer(int currentIndex) { if (currentIndex + 1 < GunGame.Scripts.Options.GameSettings.CurrentPool.Guns.Count) { ((MonoBehaviour)this).StartCoroutine(SpawnAsync(ObjectType.Gun, GunGame.Scripts.Options.GameSettings.CurrentPool.GetWeapon(currentIndex + 1))); ((MonoBehaviour)this).StartCoroutine(SpawnAsync(ObjectType.MagazineToLoad, GunGame.Scripts.Options.GameSettings.CurrentPool.GetWeapon(currentIndex + 1))); ((MonoBehaviour)this).StartCoroutine(SpawnAsync(ObjectType.MagazineForQuickbelt, GunGame.Scripts.Options.GameSettings.CurrentPool.GetWeapon(currentIndex + 1))); } } private IEnumerator SpawnAsync(ObjectType type, GunData gunData) { string weaponString = ""; if (type == ObjectType.Gun) { weaponString = gunData.GunName; } if (type == ObjectType.MagazineToLoad || type == ObjectType.MagazineForQuickbelt) { weaponString = gunData.MagName; } FVRObject newObj = null; if (!IM.OD.TryGetValue(weaponString, out newObj)) { Debug.LogError((object)("No object found with id: " + weaponString)); yield break; } AnvilCallback callback = ((AnvilAsset)newObj).GetGameObjectAsync(); yield return callback; Vector3 spawnOffset = Vector3.left * (float)type; switch (type) { case ObjectType.Gun: _gun = Object.Instantiate(callback.Result, BufferSpawnPos.position + spawnOffset, BufferSpawnPos.rotation).GetComponent(); ((Component)_gun).gameObject.SetActive(true); break; case ObjectType.MagazineToLoad: _magazineToLoad = Object.Instantiate(callback.Result, BufferSpawnPos.position + spawnOffset, BufferSpawnPos.rotation).GetComponent(); ((Component)_magazineToLoad).gameObject.SetActive(true); _magazineToLoad.UsesGravity = false; _magazineToLoad.RootRigidbody.isKinematic = true; break; case ObjectType.MagazineForQuickbelt: _magazineForQuickbelt = Object.Instantiate(callback.Result, BufferSpawnPos.position + spawnOffset, BufferSpawnPos.rotation).GetComponent(); ((Component)_magazineForQuickbelt).gameObject.SetActive(true); break; } } public FVRPhysicalObject SpawnImmediate(ObjectType objectType, GunData gunData) { //IL_0063: Unknown result type (might be due to invalid IL or missing references) //IL_0068: Unknown result type (might be due to invalid IL or missing references) //IL_006d: Unknown result type (might be due to invalid IL or missing references) //IL_0078: Unknown result type (might be due to invalid IL or missing references) string text = ""; if (objectType == ObjectType.Gun) { text = gunData.GunName; } if (objectType == ObjectType.MagazineToLoad || objectType == ObjectType.MagazineForQuickbelt) { text = gunData.MagName; } FVRObject value = null; if (!IM.OD.TryGetValue(text, out value)) { Debug.LogError((object)("No object found with id: " + text)); return null; } GameObject gameObject = ((AnvilAsset)value).GetGameObject(); GameObject val = Object.Instantiate(gameObject, ((Component)this).transform.position + Vector3.up, ((Component)this).transform.rotation); val.SetActive(true); return val.GetComponent(); } } public enum ObjectType { Gun, MagazineToLoad, MagazineForQuickbelt } [Serializable] public class WeaponPool { public string Name; public string Description; public OrderType OrderType; public string EnemyType = "M_Swat_Scout"; public List Guns = new List(); [HideInInspector] public List GunNames = new List(); [HideInInspector] public List MagNames = new List(); [HideInInspector] public List CategoryIDs = new List(); public GunData GetWeapon(int index) { return Guns[index]; } public void Initialize() { SetGunOrder(); SetSpawners(); } private void SetGunOrder() { if (OrderType == OrderType.Random) { IListExtensions.Shuffle((IList)Guns); } if (OrderType == OrderType.RandomWithinCategory) { IListExtensions.Shuffle((IList)Guns); Guns = Guns.OrderBy((GunData x) => x.CategoryID).ToList(); } } private void SetSpawners() { //IL_0003: Unknown result type (might be due to invalid IL or missing references) //IL_001b: Unknown result type (might be due to invalid IL or missing references) //IL_0020: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_0065: Unknown result type (might be due to invalid IL or missing references) SosigEnemyID sosigType = (SosigEnemyID)120; try { sosigType = (SosigEnemyID)Enum.Parse(typeof(SosigEnemyID), EnemyType, ignoreCase: true); } catch (Exception) { Debug.LogError((object)(EnemyType + " is not a valid SosigEnemyID, please check your weapon pool")); } foreach (CustomSosigSpawner sosigSpawner in MonoBehaviourSingleton.Instance.SosigSpawners) { sosigSpawner.SosigType = sosigType; } } } public enum OrderType { Fixed, Random, RandomWithinCategory } public class WeaponPoolLoader : MonoBehaviourSingleton { public static Action WeaponLoadedEvent; public Transform ChoicesListParent; public PoolChoice ChoicePrefab; public List DebugWeaponPools; private List _loadedWeaponPoolsLocations = new List(); private List _weaponPools = new List(); private List _choices = new List(); public void SaveDebugWeaponPools() { for (int i = 0; i < DebugWeaponPools.Count; i++) { DebugWeaponPools[i].GunNames.Clear(); DebugWeaponPools[i].MagNames.Clear(); DebugWeaponPools[i].CategoryIDs.Clear(); for (int j = 0; j < DebugWeaponPools[i].Guns.Count; j++) { DebugWeaponPools[i].GunNames.Add(DebugWeaponPools[i].Guns[j].GunName); DebugWeaponPools[i].MagNames.Add(DebugWeaponPools[i].Guns[j].MagName); DebugWeaponPools[i].CategoryIDs.Add(DebugWeaponPools[i].Guns[j].CategoryID); } DebugWeaponPools[i].Guns.Clear(); } foreach (WeaponPool debugWeaponPool in DebugWeaponPools) { WriteWeaponPool(Application.dataPath + "/GunGame//GunGameWeaponPool_" + debugWeaponPool.Name + ".json", debugWeaponPool); } } public override void Awake() { base.Awake(); _loadedWeaponPoolsLocations = GetWeaponPoolLocations(); _weaponPools = new List(); if (_loadedWeaponPoolsLocations.Count == 0) { Debug.LogError((object)"No weapon pools found!"); return; } for (int i = 0; i < _loadedWeaponPoolsLocations.Count; i++) { WeaponPool weaponPool = LoadWeaponPool(_loadedWeaponPoolsLocations[i]); if (weaponPool != null) { _weaponPools.Add(weaponPool); Debug.Log((object)("Weapon pool loaded with name: " + weaponPool.Name + " and count: " + weaponPool.GunNames.Count)); } } for (int j = 0; j < _weaponPools.Count; j++) { PoolChoice poolChoice = Object.Instantiate(ChoicePrefab, ChoicesListParent); poolChoice.Initialize(_weaponPools[j]); _choices.Add(poolChoice); } WeaponPool newPool = _weaponPools[0]; GunGame.Scripts.Options.GameSettings.ChangeCurrentPool(newPool); if (WeaponLoadedEvent != null) { WeaponLoadedEvent(); } } public WeaponPool LoadWeaponPool(string path) { using StreamReader streamReader = new StreamReader(path); string text = streamReader.ReadToEnd(); WeaponPool newWeaponPool = JsonUtility.FromJson(text); if (_weaponPools.FirstOrDefault((WeaponPool x) => x.Name == newWeaponPool.Name) != null) { return null; } newWeaponPool.Guns.Clear(); for (int num = 0; num < newWeaponPool.GunNames.Count; num++) { GunData gunData = new GunData(); gunData.GunName = newWeaponPool.GunNames[num]; gunData.MagName = newWeaponPool.MagNames[num]; gunData.CategoryID = newWeaponPool.CategoryIDs[num]; GunData item = gunData; newWeaponPool.Guns.Add(item); } return newWeaponPool; } public void WriteWeaponPool(string path, WeaponPool weaponPool) { using StreamWriter streamWriter = new StreamWriter(path); string value = JsonUtility.ToJson((object)weaponPool, true); streamWriter.Write(value); } private List GetWeaponPoolLocations() { string pluginPath = Paths.PluginPath; return Directory.GetFiles(pluginPath, "SkitsuphreniaWeaponPool*.json", SearchOption.AllDirectories).ToList(); } } } namespace CustomScripts { public class CustomSosigSpawnPoint : MonoBehaviour { public SosigEnemyTemplate SosigEnemyTemplate; [Tooltip("Spawn when game starts?")] public bool SpawnOnStart = false; public int IFF = 1; public SosigOrder SpawnState; public float SpawnDelay = 0f; public ParticleSystem SpawnPS; private bool _spawnInterrupted = false; public IEnumerator Start() { yield return (object)new WaitForEndOfFrame(); if (SpawnOnStart) { Spawn(); } } public void Spawn() { ZombieManager.LocationChangedEvent = (Action)Delegate.Combine(ZombieManager.LocationChangedEvent, new Action(InterruptSpawn)); ((MonoBehaviour)this).StartCoroutine(DelayedSpawn()); } private IEnumerator DelayedSpawn() { if (Object.op_Implicit((Object)(object)SpawnPS)) { SpawnPS.Play(true); } if (MonoBehaviourSingleton.Instance.IsRoundSpecial) { MonoBehaviourSingleton.Instance.Play(MonoBehaviourSingleton.Instance.HellHoundSpawnSound, 0.4f, 0.25f); } yield return (object)new WaitForSeconds(SpawnDelay); ZombieManager.LocationChangedEvent = (Action)Delegate.Remove(ZombieManager.LocationChangedEvent, new Action(InterruptSpawn)); if (_spawnInterrupted) { _spawnInterrupted = false; yield break; } try { SpawnOptions val = new SpawnOptions(); val.SpawnActivated = true; val.SpawnState = SpawnState; val.IFF = IFF; val.SpawnWithFullAmmo = true; val.EquipmentMode = (EquipmentSlots)7; val.SosigTargetPosition = ((Component)this).transform.position; val.SosigTargetRotation = ((Component)this).transform.eulerAngles; SpawnOptions val2 = val; Sosig zosig = SosigAPI.Spawn(SosigEnemyTemplate, val2, ((Component)this).transform.position, ((Component)this).transform.rotation); MonoBehaviourSingleton.Instance.OnZosigSpawned(zosig); } catch (Exception ex) { MonoBehaviourSingleton.Instance.Show("Error, zosigs failed to spawn\nPlease send logs to Kodeman"); Debug.LogError((object)ex); throw; } } private void InterruptSpawn() { _spawnInterrupted = true; } private void OnDrawGizmos() { //IL_0015: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_0045: Unknown result type (might be due to invalid IL or missing references) //IL_0050: Unknown result type (might be due to invalid IL or missing references) //IL_005a: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) Gizmos.color = new Color(0.8f, 0.2f, 0.2f, 0.5f); Gizmos.DrawSphere(((Component)this).transform.position, 0.1f); Gizmos.DrawLine(((Component)this).transform.position, ((Component)this).transform.position + ((Component)this).transform.forward * 0.25f); } } } namespace CustomScripts.Zombie { public enum State { Chase, AttackWindow, Dead } public enum SpeedType { Walk, FastWalk, Run } public class CustomZombieController : ZombieController { public Action OnZombieDied; public Action OnZombieInitialize; public GameObject HeadObject; [HideInInspector] public State State; [HideInInspector] public float Health; private bool _hitThrottled; [HideInInspector] public Ragdoll Ragdoll; [HideInInspector] public Animator Animator; private RandomZombieSound _soundPlayer; private NavMeshAgent _agent; private const float agentUpdateInterval = 0.15f; private float _agentUpdateTimer; private SpeedType _moveSpeed; private int _animIndex; public ParticleSystem ExplosionPS; private void Awake() { State = State.Dead; _agent = ((Component)this).GetComponent(); Animator = ((Component)this).GetComponent(); _soundPlayer = ((Component)this).GetComponent(); Ragdoll = ((Component)this).GetComponent(); } public override void Initialize(Transform newTarget) { Target = newTarget; ((Behaviour)Animator).enabled = true; _agent.updateRotation = false; _agentUpdateTimer = 0.15f; _agent.speed = 0.1f; if (MonoBehaviourSingleton.Instance.IsFastWalking) { int animIndex = Random.Range(0, 3); _moveSpeed = SpeedType.FastWalk; _animIndex = animIndex; if (GameSettings.HardMode) { Animator.SetFloat("FastWalkSpeed", 1.05f); } else { Animator.SetFloat("FastWalkSpeed", 0.85f); } } if (MonoBehaviourSingleton.Instance.IsRunning) { int animIndex2 = Random.Range(0, 4); _moveSpeed = SpeedType.Run; _animIndex = animIndex2; if (GameSettings.HardMode) { Animator.SetFloat("RunSpeed", Random.Range(0.9f, 0.95f)); } else { Animator.SetFloat("RunSpeed", Random.Range(0.8f, 0.85f)); } } if (!MonoBehaviourSingleton.Instance.IsRunning && !MonoBehaviourSingleton.Instance.IsFastWalking) { int animIndex3 = Random.Range(0, 4); _moveSpeed = SpeedType.Walk; _animIndex = animIndex3; if (GameSettings.HardMode) { Animator.SetFloat("WalkSpeed", 1.2f); } } StartMovementAnimation(); int roundNumber = MonoBehaviourSingleton.Instance.RoundNumber; Health = MonoBehaviourSingleton.Instance.CustomZombieHPCurve.Evaluate((float)roundNumber); if (MonoBehaviourSingleton.Instance.IsRoundSpecial) { Health *= 0.65f; } if (GameSettings.WeakerEnemiesEnabled) { Health *= 0.65f; } State = State.Chase; ((Behaviour)_agent).enabled = true; _soundPlayer.Initialize(); if (OnZombieInitialize != null) { OnZombieInitialize(); } } public override void InitializeSpecialType() { Animator.SetFloat("WalkSpeed", 1.8f); Animator.SetFloat("FastWalkSpeed", 1.8f); Animator.SetFloat("RunSpeed", 1.8f); } private void Update() { //IL_0076: Unknown result type (might be due to invalid IL or missing references) //IL_007b: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_009a: Unknown result type (might be due to invalid IL or missing references) //IL_00a5: Unknown result type (might be due to invalid IL or missing references) //IL_00aa: Unknown result type (might be due to invalid IL or missing references) //IL_00ad: Unknown result type (might be due to invalid IL or missing references) //IL_00b2: Unknown result type (might be due to invalid IL or missing references) //IL_00c2: Unknown result type (might be due to invalid IL or missing references) if (State != State.Dead && State != State.AttackWindow) { _agentUpdateTimer += Time.deltaTime; if (_agentUpdateTimer >= 0.15f) { _agentUpdateTimer -= 0.15f; _agent.SetDestination(Target.position); } Vector3 velocity = _agent.velocity; if (((Vector3)(ref velocity)).sqrMagnitude > Mathf.Epsilon) { Transform transform = ((Component)this).transform; Quaternion rotation = ((Component)this).transform.rotation; Vector3 velocity2 = _agent.velocity; transform.rotation = Quaternion.Slerp(rotation, Quaternion.LookRotation(((Vector3)(ref velocity2)).normalized), 10f * Time.deltaTime); } } } public IEnumerator Stun() { if (State == State.Chase) { Animator.CrossFade("Stunned", 0.25f, 0, 0f); yield return (object)new WaitForSeconds(2f); StartMovementAnimation(); } } private void OnTriggerEnter(Collider other) { //IL_0096: Unknown result type (might be due to invalid IL or missing references) if (State == State.Dead) { return; } if (((Component)other).GetComponent() != null) { ((Component)other).GetComponent().OnEnemyEntered(this); } else { if (!Object.op_Implicit((Object)(object)((Component)other).GetComponent()) || MonoBehaviourSingleton.Instance.IsRoundSpecial) { return; } Window window = ((Component)other).GetComponent().Window; if (State != State.AttackWindow) { if (window.IsOpen) { ChangeTarget(MonoBehaviourSingleton.Instance.Player); return; } ((MonoBehaviour)this).StartCoroutine(RotateTowards(((Component)window).transform.position, 5f)); LastInteractedWindow = window; OnTouchingWindow(); } } } public override void OnHit(float damage, bool headHit = false) { if (!(Health <= 0f) && State != State.Dead) { float num = damage * MonoBehaviourSingleton.Instance.DamageModifier; damage = (int)num; MonoBehaviourSingleton.Instance.Play(MonoBehaviourSingleton.Instance.ZombieHitSound, 0.7f); MonoBehaviourSingleton.Instance.AddPoints(MonoBehaviourSingleton.Instance.PointsOnHit); Health -= damage; if (Health <= 0f || MonoBehaviourSingleton.Instance.InstaKill) { OnKill(); } else if (headHit && !_hitThrottled) { Animator.SetTrigger("GetHit"); Animator.SetFloat("HitAngle", 0.5f); ((MonoBehaviour)this).StartCoroutine(HitAnimThrottle()); } } } public override void OnKill(bool awardPoints = true) { _agent.speed = 0.1f; Animator.applyRootMotion = true; State = State.Dead; if (MonoBehaviourSingleton.Instance.IsRoundSpecial) { Explode(awardPoints); return; } if (OnZombieDied != null) { OnZombieDied(0f); } ((Behaviour)_agent).enabled = false; if (awardPoints) { MonoBehaviourSingleton.Instance.AddPoints(MonoBehaviourSingleton.Instance.PointsOnKill); MonoBehaviourSingleton.Instance.Play(MonoBehaviourSingleton.Instance.ZombieDeathSound, 0.7f); } MonoBehaviourSingleton.Instance.OnZombieDied(this, awardPoints); } private void Explode(bool awardPoints) { //IL_007e: Unknown result type (might be due to invalid IL or missing references) //IL_0092: Unknown result type (might be due to invalid IL or missing references) //IL_0097: Unknown result type (might be due to invalid IL or missing references) //IL_00a2: Unknown result type (might be due to invalid IL or missing references) if (OnZombieDied != null) { OnZombieDied(0f); } ((Behaviour)_agent).enabled = false; if (awardPoints) { MonoBehaviourSingleton.Instance.AddPoints(MonoBehaviourSingleton.Instance.PointsOnKill); MonoBehaviourSingleton.Instance.Play(MonoBehaviourSingleton.Instance.HellHoundDeathSound, 0.13f); } MonoBehaviourSingleton.Instance.OnZombieDied(this, awardPoints); ParticleSystem val = Object.Instantiate(MonoBehaviourSingleton.Instance.HellhoundExplosionPS, ((Component)this).transform.position + new Vector3(0f, 0.75f, 0f), ((Component)this).transform.rotation); Object.Destroy((Object)(object)((Component)val).gameObject, 4f); } private IEnumerator HitAnimThrottle() { _hitThrottled = true; yield return (object)new WaitForSeconds(0.25f); _hitThrottled = false; } public void ChangeTarget(Transform newTarget) { Target = newTarget; } public void OnHitPlayer() { if (State == State.Dead || MonoBehaviourSingleton.Instance.IsInvincible) { return; } MonoBehaviourSingleton.Instance.Play(MonoBehaviourSingleton.Instance.PlayerHitSound); if (!Application.isEditor) { FVRPlayerBody currentPlayerBody = GM.CurrentPlayerBody; currentPlayerBody.Health -= (float)MonoBehaviourSingleton.Instance.CustomZombieDamage; if (PlayerData.GettingHitEvent != null) { PlayerData.GettingHitEvent(); } if (GM.CurrentPlayerBody.Health <= 0f) { MonoBehaviourSingleton.Instance.KillPlayer(); } } } private IEnumerator RotateTowards(Vector3 target, float rotSpeed) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) float timer = 0f; while (timer <= 0.5f) { yield return null; timer += Time.deltaTime; Vector3 dir = target - ((Component)this).transform.position; Vector3 newDir = Vector3.RotateTowards(((Component)this).transform.forward, dir, rotSpeed * Time.deltaTime, 0f); ((Component)this).transform.rotation = Quaternion.LookRotation(newDir); } } public void OnTouchingWindow() { if (State != State.Dead) { _agent.speed = 0f; Animator.CrossFade("Attack" + Random.Range(0, 4), 0.25f, 0, 0f); State = State.AttackWindow; } } public void OnHitWindow() { LastInteractedWindow.OnPlankRipped(); } public void OnHitWindowEnd() { if (State != State.Dead) { if (LastInteractedWindow.IsOpen) { State = State.Chase; _agent.speed = 0.1f; StartMovementAnimation(); ChangeTarget(MonoBehaviourSingleton.Instance.Player); } else { Animator.CrossFade("Attack" + Random.Range(0, 4), 0.25f, 0, 0f); } } } private void StartMovementAnimation() { string text = ""; switch (_moveSpeed) { case SpeedType.Walk: text = "Walk"; break; case SpeedType.FastWalk: text = "FastWalk"; break; case SpeedType.Run: text = "Run"; break; } text += _animIndex; Animator.CrossFade(text, 0.25f, 0, 0f); } } public class Ragdoll : MonoBehaviour { private Animator _animator; private CustomZombieController _controller; private Rigidbody[] _rbs; private void Awake() { _controller = ((Component)this).GetComponent(); _rbs = ((Component)this).GetComponentsInChildren(); _animator = ((Component)this).GetComponent(); CustomZombieController controller = _controller; controller.OnZombieDied = (Action)Delegate.Combine(controller.OnZombieDied, new Action(ActivateRagdoll)); DeactivateRagdoll(); } private void OnDestroy() { CustomZombieController controller = _controller; controller.OnZombieDied = (Action)Delegate.Remove(controller.OnZombieDied, new Action(ActivateRagdoll)); } public void DeactivateRagdoll() { Rigidbody[] rbs = _rbs; foreach (Rigidbody val in rbs) { ((Component)val).gameObject.SetActive(false); ((Component)val).gameObject.SetActive(true); val.isKinematic = true; } } public void ResetRagdoll() { //IL_0020: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Unknown result type (might be due to invalid IL or missing references) Rigidbody[] rbs = _rbs; foreach (Rigidbody val in rbs) { ((Component)val).gameObject.transform.position = Vector3.zero; ((Component)val).gameObject.transform.rotation = Quaternion.identity; } } private void ActivateRagdoll(float delay) { ((MonoBehaviour)this).StartCoroutine(DelayedActivate(delay)); } private void EnableRagdoll() { ((Behaviour)_animator).enabled = false; Rigidbody[] rbs = _rbs; foreach (Rigidbody val in rbs) { val.isKinematic = false; } } private IEnumerator DelayedActivate(float delay) { yield return (object)new WaitForSeconds(delay); EnableRagdoll(); } } } namespace CustomScripts { public class RandomZombieSound : MonoBehaviour { public CustomZombieController Controller; public void Initialize() { ((MonoBehaviour)this).Invoke("PlayRandomSound", Random.Range(4f, 6f)); } private void PlayRandomSound() { //IL_003f: Unknown result type (might be due to invalid IL or missing references) if (Controller.State == State.Dead) { return; } SoundPoolableObject soundPoolableObject = SoundPool.Instance.Spawn(); if (!((Object)(object)soundPoolableObject == (Object)null)) { ((Component)soundPoolableObject).transform.position = ((Component)this).transform.position; soundPoolableObject.Initialize(); soundPoolableObject.AudioSource.pitch = Random.Range(0.8f, 1.2f); if (MonoBehaviourSingleton.Instance.IsRoundSpecial) { soundPoolableObject.AudioSource.clip = MonoBehaviourSingleton.Instance.HellHoundsSounds[Random.Range(0, MonoBehaviourSingleton.Instance.HellHoundsSounds.Count)]; } else if (MonoBehaviourSingleton.Instance.IsPlayerClose(((Component)this).transform, 5f)) { soundPoolableObject.AudioSource.clip = MonoBehaviourSingleton.Instance.CloseZombieSounds[Random.Range(0, MonoBehaviourSingleton.Instance.CloseZombieSounds.Count)]; } else { soundPoolableObject.AudioSource.clip = MonoBehaviourSingleton.Instance.FarZombieSounds[Random.Range(0, MonoBehaviourSingleton.Instance.FarZombieSounds.Count)]; } if (MonoBehaviourSingleton.Instance.IsRoundSpecial) { soundPoolableObject.AudioSource.volume = 0.4f; } else { soundPoolableObject.AudioSource.volume = 1f; } soundPoolableObject.AudioSource.Play(); ((MonoBehaviour)this).Invoke("PlayRandomSound", Random.Range(4f, 6f)); } } } public class ZombieBodyPart : MonoBehaviour, IFVRDamageable { public int PartDamageMultiplier = 1; public CustomZombieController Controller; private static WaitForSeconds staticDelay = new WaitForSeconds(0.1f); public void Damage(Damage dam) { //IL_0010: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Invalid comparison between Unknown and I4 //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Invalid comparison between Unknown and I4 ((MonoBehaviour)this).StartCoroutine(AddForce(dam)); if ((int)dam.Class == 3) { Controller.OnHit(1f); } else if ((int)dam.Class == 2) { Controller.OnHit(1f); } else { if (dam.Dam_TotalKinetic < 20f) { return; } int num = 0; if (dam.Dam_TotalKinetic < 1000f) { num = 1; } else if (dam.Dam_TotalKinetic < 2000f) { num = 2; } else if (dam.Dam_TotalKinetic >= 2000f) { num = 3; } if (dam.Dam_TotalKinetic > 10000f) { num = 20; } num *= PartDamageMultiplier; if (GameSettings.LimitedAmmo) { num *= 2; } if (PartDamageMultiplier == 3) { if (MonoBehaviourSingleton.Instance.DeadShotPerkActivated) { num = Mathf.CeilToInt((float)num * 1.2f); } Controller.OnHit(num, headHit: true); } else { Controller.OnHit(num); } } } private IEnumerator AddForce(Damage dam) { yield return staticDelay; if (Controller.State == State.Dead) { float num = dam.Dam_TotalKinetic / 20f; ((Component)this).GetComponent().AddForceAtPosition(-((Vector3)(ref dam.hitNormal)).normalized * num, dam.point, (ForceMode)1); } } } } namespace CustomScripts.Zombie { public abstract class ZombieController : MonoBehaviour { [HideInInspector] public Window LastInteractedWindow; public Transform Target; public abstract void Initialize(Transform newTarget); public abstract void InitializeSpecialType(); public abstract void OnHit(float damage, bool headHit = false); public abstract void OnKill(bool awardPoints = true); } } namespace CustomScripts { public class ZombiePool : MonoBehaviour { public Transform DespawnedWaypoint; public List AvailableZombies; private void Awake() { RoundManager.OnGameStarted = (Action)Delegate.Combine(RoundManager.OnGameStarted, new Action(OnGameStart)); } private void Start() { for (int i = 0; i < AvailableZombies.Count; i++) { ((Component)AvailableZombies[i]).gameObject.SetActive(false); } } private void OnDestroy() { RoundManager.OnGameStarted = (Action)Delegate.Remove(RoundManager.OnGameStarted, new Action(OnGameStart)); } private void OnGameStart() { if (!GameSettings.UseCustomEnemies) { ((Component)this).gameObject.SetActive(false); } } public void Spawn() { if (AvailableZombies.Count == 0) { Debug.LogWarning((object)"Trying to spawn too many zombies!"); return; } ((Component)AvailableZombies[0]).gameObject.SetActive(true); MonoBehaviourSingleton.Instance.OnZombieSpawned(AvailableZombies[0]); if (Object.op_Implicit((Object)(object)AvailableZombies[0].Ragdoll)) { AvailableZombies[0].Ragdoll.ResetRagdoll(); } AvailableZombies.Remove(AvailableZombies[0]); } public void Despawn(CustomZombieController customZombie) { //IL_0034: Unknown result type (might be due to invalid IL or missing references) if (Object.op_Implicit((Object)(object)customZombie.Ragdoll)) { customZombie.Ragdoll.DeactivateRagdoll(); } AvailableZombies.Add(customZombie); ((Component)customZombie).transform.position = DespawnedWaypoint.position; ((Component)customZombie).gameObject.SetActive(false); } } } namespace CustomScripts.Zombie { public class ZombieSpawner : MonoBehaviour { [Tooltip("If left empty, spawned zombies will go straight for the player")] public Window WindowWaypoint; } public class ZosigTrigger : MonoBehaviour { private ZosigZombieController _zosigController; private void OnTriggerEnter(Collider other) { _zosigController.OnTriggerEntered(other); } public void Initialize(ZosigZombieController controller) { _zosigController = controller; } private void OnTriggerExit(Collider other) { _zosigController.OnTriggerExited(other); } } public class ZosigZombieController : ZombieController { public bool CanInteractWithWindows = true; private const float agentUpdateInterval = 0.5f; private int _hitsGivingMoney = 6; private float _agentUpdateTimer; private float _cachedSpeed; private bool _isAttackingWindow; private bool _isDead; private Sosig _sosig; private Coroutine _tearingPlanksCoroutine; public override void Initialize(Transform newTarget) { Target = newTarget; _sosig = ((Component)this).GetComponent(); ((Component)_sosig.CoreRB).gameObject.AddComponent().Initialize(this); _sosig.Speed_Run = MonoBehaviourSingleton.Instance.ZosigPerRoundSpeed.Evaluate((float)MonoBehaviourSingleton.Instance.RoundNumber); if (GameSettings.HardMode) { Sosig sosig = _sosig; sosig.Speed_Run += 1.12f; } _sosig.Mustard = MonoBehaviourSingleton.Instance.ZosigHPCurve.Evaluate((float)MonoBehaviourSingleton.Instance.RoundNumber); foreach (SosigLink link in _sosig.Links) { link.SetIntegrity(MonoBehaviourSingleton.Instance.ZosigLinkIntegrityCurve.Evaluate((float)MonoBehaviourSingleton.Instance.RoundNumber)); } if (GameSettings.WeakerEnemiesEnabled) { Sosig sosig2 = _sosig; sosig2.Mustard *= 0.6f; foreach (SosigLink link2 in _sosig.Links) { link2.SetIntegrity(MonoBehaviourSingleton.Instance.ZosigLinkIntegrityCurve.Evaluate((float)MonoBehaviourSingleton.Instance.RoundNumber) * 0.6f); } } if (MonoBehaviourSingleton.Instance.IsRoundSpecial) { Sosig sosig3 = _sosig; sosig3.Mustard *= 0.65f; foreach (SosigLink link3 in _sosig.Links) { if (GameSettings.WeakerEnemiesEnabled) { link3.SetIntegrity(MonoBehaviourSingleton.Instance.ZosigLinkIntegrityCurve.Evaluate((float)MonoBehaviourSingleton.Instance.RoundNumber) * 0.45f); } else { link3.SetIntegrity(MonoBehaviourSingleton.Instance.ZosigLinkIntegrityCurve.Evaluate((float)MonoBehaviourSingleton.Instance.RoundNumber) * 0.65f); } } } _sosig.Speed_Walk = _sosig.Speed_Run; _sosig.Speed_Turning = _sosig.Speed_Run; _sosig.Speed_Sneak = _sosig.Speed_Run; _sosig.Speed_Crawl = _sosig.Speed_Run; for (int i = 0; i < _sosig.Hands.Count; i++) { if ((Object)(object)_sosig.Hands[i].HeldObject != (Object)null) { _sosig.Hands[i].HeldObject.SourceIFF = _sosig.E.IFFCode; _sosig.Hands[i].HeldObject.E.IFFCode = _sosig.E.IFFCode; } } _sosig.Hand_Primary.HeldObject.SourceIFF = _sosig.E.IFFCode; _sosig.Hand_Primary.HeldObject.E.IFFCode = _sosig.E.IFFCode; _cachedSpeed = _sosig.Speed_Run; CheckPerks(); } public override void InitializeSpecialType() { ((MonoBehaviour)this).StartCoroutine(SpawnSpecialEnemy()); } private IEnumerator SpawnSpecialEnemy() { _cachedSpeed = 5f; _sosig.Speed_Run = 5f; _sosig.Speed_Walk = 5f; _sosig.Speed_Turning = 5f; _sosig.Speed_Sneak = 5f; _sosig.Speed_Crawl = 5f; CanInteractWithWindows = false; yield return (object)new WaitForSeconds(2f); } private void Update() { if (!((Object)(object)_sosig == (Object)null)) { if (_isAttackingWindow) { _sosig.Speed_Run = 0f; _sosig.Speed_Walk = 0f; _sosig.Speed_Turning = 0f; _sosig.Speed_Crawl = 0f; _sosig.Speed_Sneak = 0f; } else { _sosig.Speed_Run = _cachedSpeed; _sosig.Speed_Walk = _cachedSpeed; _sosig.Speed_Turning = _cachedSpeed; _sosig.Speed_Crawl = _cachedSpeed; _sosig.Speed_Sneak = _cachedSpeed; } } } private void LateUpdate() { //IL_0058: Unknown result type (might be due to invalid IL or missing references) if (!((Object)(object)_sosig == (Object)null)) { _agentUpdateTimer += Time.deltaTime; if (_agentUpdateTimer >= 0.5f) { _agentUpdateTimer -= 0.5f; _sosig.CommandAssaultPoint(Target.position); } } } public void Stun(float time) { if (!_isDead) { _sosig.Stun(time); _sosig.Shudder(0.75f); } } public void CheckPerks() { if (MonoBehaviourSingleton.Instance.DeadShotPerkActivated) { _sosig.Links[0].DamMult = 1.35f; } if (MonoBehaviourSingleton.Instance.DoubleTapPerkActivated) { _sosig.DamMult_Projectile = 1.25f; } } public override void OnKill(bool awardPoints = true) { //IL_0060: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_0084: Unknown result type (might be due to invalid IL or missing references) if (MonoBehaviourSingleton.Instance.ExistingZombies.Contains(this)) { _isDead = true; if (MonoBehaviourSingleton.Instance.IsRoundSpecial) { MonoBehaviourSingleton.Instance.Play(MonoBehaviourSingleton.Instance.HellHoundDeathSound, 0.13f); ParticleSystem val = Object.Instantiate(MonoBehaviourSingleton.Instance.HellhoundExplosionPS, ((Component)this).transform.position + new Vector3(0f, 0.75f, 0f), ((Component)this).transform.rotation); Object.Destroy((Object)(object)((Component)val).gameObject, 4f); } if (awardPoints) { MonoBehaviourSingleton.Instance.AddPoints(MonoBehaviourSingleton.Instance.PointsOnKill); MonoBehaviourSingleton.Instance.OnZombieDied(this); } else { MonoBehaviourSingleton.Instance.ExistingZombies.Remove(this); } ((MonoBehaviour)this).StartCoroutine(DelayedDespawn()); } } public void OnHit(Damage damage) { if (!(damage.Dam_TotalKinetic < 20f)) { if (MonoBehaviourSingleton.Instance.InstaKill) { _sosig.KillSosig(); } if (_hitsGivingMoney > 0) { _hitsGivingMoney--; MonoBehaviourSingleton.Instance.AddPoints(MonoBehaviourSingleton.Instance.PointsOnHit); } } } public override void OnHit(float damage, bool headHit) { _sosig.Links[0].LinkExplodes((DamageClass)1); _sosig.KillSosig(); } public void ChangeTarget(Transform newTarget) { Target = newTarget; } public void OnTriggerEntered(Collider other) { if (_isDead) { return; } if (((Component)other).GetComponent() != null) { ((Component)other).GetComponent().OnEnemyEntered(this); } if (!_isAttackingWindow && CanInteractWithWindows && Object.op_Implicit((Object)(object)((Component)other).GetComponent())) { Window window = ((Component)other).GetComponent().Window; if (window.IsOpen) { ChangeTarget(MonoBehaviourSingleton.Instance.Player); return; } _isAttackingWindow = true; _cachedSpeed = _sosig.Speed_Run; _sosig.Speed_Run = 0f; _sosig.Speed_Walk = 0f; _sosig.Speed_Turning = 0f; _sosig.Speed_Crawl = 0f; _sosig.Speed_Sneak = 0f; LastInteractedWindow = window; OnTouchingWindow(); } } public void OnTriggerExited(Collider other) { } public void OnTouchingWindow() { if (_tearingPlanksCoroutine == null) { _tearingPlanksCoroutine = ((MonoBehaviour)this).StartCoroutine(TearPlankDelayed()); } } public void OnHitWindow() { LastInteractedWindow.OnPlankRipped(); if (LastInteractedWindow.IsOpen) { ChangeTarget(MonoBehaviourSingleton.Instance.Player); } } private IEnumerator TearPlankDelayed() { while (!LastInteractedWindow.IsOpen && !_isDead) { yield return (object)new WaitForSeconds(2.5f); if (!_isDead && (int)_sosig.BodyState == 0) { OnHitWindow(); } } _isAttackingWindow = false; _sosig.Speed_Run = _cachedSpeed; _sosig.Speed_Walk = _cachedSpeed; _sosig.Speed_Turning = _cachedSpeed; _sosig.Speed_Crawl = _cachedSpeed; _sosig.Speed_Sneak = _cachedSpeed; _tearingPlanksCoroutine = null; } private IEnumerator DelayedDespawn() { if ((Object)(object)_sosig == (Object)null) { Debug.Log((object)"Sosig is null"); yield break; } if (!MonoBehaviourSingleton.Instance.IsRoundSpecial) { yield return (object)new WaitForSeconds(5f); } _sosig.DeSpawnSosig(); } } } public class MagazineGizmos : MonoBehaviour { public float gizmoSize; public void OnDrawGizmos() { //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) Gizmos.color = Color.yellow; Gizmos.DrawSphere(((Component)this).transform.position, gizmoSize); } } public class MagazineHelper : EditorWindow { public FVRFireArmMagazine Magazine; public bool isCurved; public Transform magazineRadiusCenter; public GameObject firstCartridge; public int numberOfCartridges = 1; public bool mirrorX; public float cartridgeOffsetY = 0f; public float cartridgeOffsetZ = 0f; public float cartridgeAngleOffsetX; public bool generateFollowerPoints; public bool useFollowerOffsets = false; public bool invertFollowerOffsets = false; public GameObject follower; public float followerOffsetY = 0f; public float followerOffsetZ = 0f; public bool showGizmo = false; public float gizmoSize = 0.01f; private GameObject cartridge_root; private GameObject[] CartridgeObjectList; private MeshFilter[] CartridgeMeshFilterList; private MeshRenderer[] CartridgeMeshRendererList; private float cartridge_currentX; private float cartridge_currentY; private float cartridge_currentZ; private bool ready1 = true; private bool ready2 = true; private GameObject follower_root; private GameObject[] FollowerObjectList; private float follower_currentX; private float follower_currentY; private float follower_currentZ; private float cartridge_angleX; private float cartridge_angleY; private MagazineGizmos gizmo; [MenuItem("Window/Magazine Helper")] public static void ShowWindow() { EditorWindow.GetWindow(typeof(MagazineHelper)); } private void OnGUI() { //IL_0042: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Expected O, but got Unknown //IL_00bb: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Expected O, but got Unknown //IL_01a6: Unknown result type (might be due to invalid IL or missing references) //IL_01b0: Expected O, but got Unknown //IL_02b2: Unknown result type (might be due to invalid IL or missing references) //IL_02bc: Expected O, but got Unknown GUILayout.Label("Cartridge Settings", EditorStyles.boldLabel, (GUILayoutOption[])(object)new GUILayoutOption[0]); EditorGUIUtility.labelWidth = 300f; Magazine = (FVRFireArmMagazine)EditorGUILayout.ObjectField("Magazine", (Object)(object)Magazine, typeof(FVRFireArmMagazine), true, (GUILayoutOption[])(object)new GUILayoutOption[0]); if ((Object)(object)Magazine == (Object)null) { EditorGUILayout.HelpBox("Please add Magazine!", (MessageType)3); ready1 = false; } isCurved = EditorGUILayout.Toggle("is curved", isCurved, (GUILayoutOption[])(object)new GUILayoutOption[0]); if (isCurved) { magazineRadiusCenter = (Transform)EditorGUILayout.ObjectField("Magazine Radius Center", (Object)(object)magazineRadiusCenter, typeof(Transform), true, (GUILayoutOption[])(object)new GUILayoutOption[0]); if ((Object)(object)magazineRadiusCenter == (Object)null) { EditorGUILayout.HelpBox("Please add Magazine Radius Center!", (MessageType)3); ready1 = false; } else { cartridgeAngleOffsetX = EditorGUILayout.Slider("Cartridge Angle Offset X", cartridgeAngleOffsetX, -10f, 10f, (GUILayoutOption[])(object)new GUILayoutOption[0]); showGizmo = EditorGUILayout.Toggle("Show Curved Mag Gizmo", showGizmo, (GUILayoutOption[])(object)new GUILayoutOption[0]); gizmoSize = EditorGUILayout.FloatField("Gizmo Size", gizmoSize, (GUILayoutOption[])(object)new GUILayoutOption[0]); } } else { showGizmo = false; } ShowGizmo(showGizmo); if (showGizmo) { gizmo.gizmoSize = gizmoSize; } firstCartridge = (GameObject)EditorGUILayout.ObjectField("First Cartridge", (Object)(object)firstCartridge, typeof(GameObject), true, (GUILayoutOption[])(object)new GUILayoutOption[0]); if ((Object)(object)firstCartridge == (Object)null) { EditorGUILayout.HelpBox("Please add Reference Cartridge!", (MessageType)3); ready1 = false; } numberOfCartridges = EditorGUILayout.IntField("Number of Cartridges", numberOfCartridges, (GUILayoutOption[])(object)new GUILayoutOption[0]); if (numberOfCartridges <= 0) { numberOfCartridges = 1; } mirrorX = EditorGUILayout.Toggle("Is double stacked Magazine (mirror X axis)", mirrorX, (GUILayoutOption[])(object)new GUILayoutOption[0]); if (!isCurved) { cartridgeOffsetY = EditorGUILayout.Slider("Cartridge Offset Y", cartridgeOffsetY, -0.1f, 0.1f, (GUILayoutOption[])(object)new GUILayoutOption[0]); cartridgeOffsetZ = EditorGUILayout.Slider("Cartridge Offset Z", cartridgeOffsetZ, -0.1f, 0.1f, (GUILayoutOption[])(object)new GUILayoutOption[0]); } generateFollowerPoints = EditorGUILayout.BeginToggleGroup("Generate Follower Points", generateFollowerPoints); follower = (GameObject)EditorGUILayout.ObjectField("Last Round Follower", (Object)(object)follower, typeof(GameObject), true, (GUILayoutOption[])(object)new GUILayoutOption[0]); if ((Object)(object)follower == (Object)null && generateFollowerPoints) { EditorGUILayout.HelpBox("Please add Follower!", (MessageType)3); ready2 = false; } followerOffsetY = cartridgeOffsetY; followerOffsetZ = cartridgeOffsetZ; EditorGUILayout.EndToggleGroup(); if (ready1 && !generateFollowerPoints) { if (GUILayout.Button("Add Cartridges", (GUILayoutOption[])(object)new GUILayoutOption[1] { GUILayout.ExpandWidth(true) })) { AddCartridges(); } if (GUILayout.Button("Clear Cartridges", (GUILayoutOption[])(object)new GUILayoutOption[1] { GUILayout.ExpandWidth(true) })) { ClearCartridges(all: true); } } else if (ready1 && ready2) { if (GUILayout.Button("Add Cartridges and FollowerPoints", (GUILayoutOption[])(object)new GUILayoutOption[1] { GUILayout.ExpandWidth(true) })) { AddCartridges(); AddFollowerPoints(); } if (GUILayout.Button("Clear Cartridges and FollowerPoints", (GUILayoutOption[])(object)new GUILayoutOption[1] { GUILayout.ExpandWidth(true) })) { ClearCartridges(all: true); ClearFollowerPoints(all: true); } if (GUILayout.Button("Remove FollowerPoint Visuals", (GUILayoutOption[])(object)new GUILayoutOption[1] { GUILayout.ExpandWidth(true) })) { RemoveFollowerPointVisuals(); } } ready1 = true; ready2 = true; } private void AddCartridges() { //IL_007b: Unknown result type (might be due to invalid IL or missing references) //IL_0080: Unknown result type (might be due to invalid IL or missing references) //IL_0099: Unknown result type (might be due to invalid IL or missing references) //IL_009e: Unknown result type (might be due to invalid IL or missing references) //IL_00b7: Unknown result type (might be due to invalid IL or missing references) //IL_00bc: Unknown result type (might be due to invalid IL or missing references) //IL_00dc: Unknown result type (might be due to invalid IL or missing references) //IL_00e6: Expected O, but got Unknown //IL_0130: Unknown result type (might be due to invalid IL or missing references) //IL_0154: Unknown result type (might be due to invalid IL or missing references) //IL_0178: Unknown result type (might be due to invalid IL or missing references) //IL_01a3: Unknown result type (might be due to invalid IL or missing references) //IL_01a8: Unknown result type (might be due to invalid IL or missing references) //IL_01fd: Unknown result type (might be due to invalid IL or missing references) //IL_0202: Unknown result type (might be due to invalid IL or missing references) //IL_029a: Unknown result type (might be due to invalid IL or missing references) //IL_029f: Unknown result type (might be due to invalid IL or missing references) //IL_02a3: Unknown result type (might be due to invalid IL or missing references) //IL_02a8: Unknown result type (might be due to invalid IL or missing references) //IL_02bc: Unknown result type (might be due to invalid IL or missing references) //IL_02c1: Unknown result type (might be due to invalid IL or missing references) //IL_02c5: Unknown result type (might be due to invalid IL or missing references) //IL_02ca: Unknown result type (might be due to invalid IL or missing references) //IL_02de: Unknown result type (might be due to invalid IL or missing references) //IL_02e3: Unknown result type (might be due to invalid IL or missing references) //IL_02e7: Unknown result type (might be due to invalid IL or missing references) //IL_02ec: Unknown result type (might be due to invalid IL or missing references) //IL_021c: Unknown result type (might be due to invalid IL or missing references) //IL_0221: Unknown result type (might be due to invalid IL or missing references) //IL_0225: Unknown result type (might be due to invalid IL or missing references) //IL_022a: Unknown result type (might be due to invalid IL or missing references) //IL_024a: Unknown result type (might be due to invalid IL or missing references) //IL_024f: Unknown result type (might be due to invalid IL or missing references) //IL_0253: Unknown result type (might be due to invalid IL or missing references) //IL_0258: Unknown result type (might be due to invalid IL or missing references) //IL_026c: Unknown result type (might be due to invalid IL or missing references) //IL_0271: Unknown result type (might be due to invalid IL or missing references) //IL_0275: Unknown result type (might be due to invalid IL or missing references) //IL_027a: Unknown result type (might be due to invalid IL or missing references) //IL_02fc: Unknown result type (might be due to invalid IL or missing references) //IL_0322: Unknown result type (might be due to invalid IL or missing references) //IL_0324: Unknown result type (might be due to invalid IL or missing references) //IL_0387: Unknown result type (might be due to invalid IL or missing references) //IL_038c: Unknown result type (might be due to invalid IL or missing references) //IL_039d: Unknown result type (might be due to invalid IL or missing references) //IL_03a2: Unknown result type (might be due to invalid IL or missing references) //IL_03b2: Unknown result type (might be due to invalid IL or missing references) //IL_03b7: Unknown result type (might be due to invalid IL or missing references) //IL_03c0: Unknown result type (might be due to invalid IL or missing references) ClearCartridges(); CartridgeObjectList = (GameObject[])(object)new GameObject[numberOfCartridges]; CartridgeMeshFilterList = (MeshFilter[])(object)new MeshFilter[numberOfCartridges]; CartridgeMeshRendererList = (MeshRenderer[])(object)new MeshRenderer[numberOfCartridges]; CartridgeObjectList[0] = firstCartridge; CartridgeMeshFilterList[0] = firstCartridge.GetComponent(); CartridgeMeshRendererList[0] = firstCartridge.GetComponent(); cartridge_currentX = firstCartridge.transform.position.x; cartridge_currentY = firstCartridge.transform.position.y; cartridge_currentZ = firstCartridge.transform.position.z; if ((Object)(object)cartridge_root == (Object)null) { cartridge_root = new GameObject(); ((Object)cartridge_root).name = "Cartridge Root"; cartridge_root.transform.parent = firstCartridge.transform.parent; cartridge_root.transform.localPosition = new Vector3(0f, 0f, 0f); cartridge_root.transform.localEulerAngles = new Vector3(0f, 0f, 0f); cartridge_root.transform.localScale = new Vector3(1f, 1f, 1f); } Vector3 eulerAngles = default(Vector3); Vector3 val2 = default(Vector3); for (int i = 2; i <= numberOfCartridges; i++) { if (isCurved) { Vector3 val = CalculateNextCartridgePos(cartridgeAngleOffsetX * (float)(i - 1)); cartridge_currentY = val.y; cartridge_currentZ = val.z; } else { cartridge_currentY += cartridgeOffsetY; cartridge_currentZ += cartridgeOffsetZ; } Quaternion localRotation = firstCartridge.transform.localRotation; if (isCurved) { Quaternion localRotation2 = firstCartridge.transform.localRotation; float num = ((Quaternion)(ref localRotation2)).eulerAngles.x - cartridgeAngleOffsetX * (float)(i - 1); Quaternion localRotation3 = firstCartridge.transform.localRotation; float y = ((Quaternion)(ref localRotation3)).eulerAngles.y; Quaternion localRotation4 = firstCartridge.transform.localRotation; ((Vector3)(ref eulerAngles))..ctor(num, y, ((Quaternion)(ref localRotation4)).eulerAngles.z); } else { Quaternion localRotation5 = firstCartridge.transform.localRotation; float x = ((Quaternion)(ref localRotation5)).eulerAngles.x; Quaternion localRotation6 = firstCartridge.transform.localRotation; float y2 = ((Quaternion)(ref localRotation6)).eulerAngles.y; Quaternion localRotation7 = firstCartridge.transform.localRotation; ((Vector3)(ref eulerAngles))..ctor(x, y2, ((Quaternion)(ref localRotation7)).eulerAngles.z); } ((Quaternion)(ref localRotation)).eulerAngles = eulerAngles; ((Vector3)(ref val2))..ctor(cartridge_currentX, cartridge_currentY, cartridge_currentZ); GameObject val3 = Object.Instantiate(firstCartridge, val2, localRotation, cartridge_root.transform); ((Object)val3).name = ((Object)firstCartridge).name + " (" + i + ")"; if (mirrorX && i % 2 == 0) { val3.transform.localPosition = new Vector3(0f - val3.transform.localPosition.x, val3.transform.localPosition.y, val3.transform.localPosition.z); } CartridgeObjectList[i - 1] = val3; CartridgeMeshFilterList[i - 1] = val3.GetComponent(); CartridgeMeshRendererList[i - 1] = val3.GetComponent(); } Magazine.DisplayBullets = CartridgeObjectList; Magazine.DisplayMeshFilters = CartridgeMeshFilterList; Magazine.DisplayRenderers = (Renderer[])(object)CartridgeMeshRendererList; } private void ClearCartridges(bool all = false) { if ((Object)(object)cartridge_root != (Object)null) { int childCount = cartridge_root.transform.childCount; for (int num = childCount - 1; num >= 0; num--) { Object.DestroyImmediate((Object)(object)((Component)cartridge_root.transform.GetChild(num)).gameObject); } if (all) { Object.DestroyImmediate((Object)(object)cartridge_root); } } } private void AddFollowerPoints() { //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_0051: Unknown result type (might be due to invalid IL or missing references) //IL_0056: Unknown result type (might be due to invalid IL or missing references) //IL_006f: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_0094: Unknown result type (might be due to invalid IL or missing references) //IL_009e: Expected O, but got Unknown //IL_00e8: Unknown result type (might be due to invalid IL or missing references) //IL_010c: Unknown result type (might be due to invalid IL or missing references) //IL_0130: Unknown result type (might be due to invalid IL or missing references) //IL_015b: Unknown result type (might be due to invalid IL or missing references) //IL_0160: Unknown result type (might be due to invalid IL or missing references) //IL_01ce: Unknown result type (might be due to invalid IL or missing references) //IL_01d3: Unknown result type (might be due to invalid IL or missing references) //IL_026b: Unknown result type (might be due to invalid IL or missing references) //IL_0270: Unknown result type (might be due to invalid IL or missing references) //IL_0274: Unknown result type (might be due to invalid IL or missing references) //IL_0279: Unknown result type (might be due to invalid IL or missing references) //IL_028d: Unknown result type (might be due to invalid IL or missing references) //IL_0292: Unknown result type (might be due to invalid IL or missing references) //IL_0296: Unknown result type (might be due to invalid IL or missing references) //IL_029b: Unknown result type (might be due to invalid IL or missing references) //IL_02af: Unknown result type (might be due to invalid IL or missing references) //IL_02b4: Unknown result type (might be due to invalid IL or missing references) //IL_02b8: Unknown result type (might be due to invalid IL or missing references) //IL_02bd: Unknown result type (might be due to invalid IL or missing references) //IL_01ed: Unknown result type (might be due to invalid IL or missing references) //IL_01f2: Unknown result type (might be due to invalid IL or missing references) //IL_01f6: Unknown result type (might be due to invalid IL or missing references) //IL_01fb: Unknown result type (might be due to invalid IL or missing references) //IL_021b: Unknown result type (might be due to invalid IL or missing references) //IL_0220: Unknown result type (might be due to invalid IL or missing references) //IL_0224: Unknown result type (might be due to invalid IL or missing references) //IL_0229: Unknown result type (might be due to invalid IL or missing references) //IL_023d: Unknown result type (might be due to invalid IL or missing references) //IL_0242: Unknown result type (might be due to invalid IL or missing references) //IL_0246: Unknown result type (might be due to invalid IL or missing references) //IL_024b: Unknown result type (might be due to invalid IL or missing references) //IL_02cd: Unknown result type (might be due to invalid IL or missing references) //IL_02da: Unknown result type (might be due to invalid IL or missing references) //IL_02dc: Unknown result type (might be due to invalid IL or missing references) ClearFollowerPoints(); FollowerObjectList = (GameObject[])(object)new GameObject[numberOfCartridges]; FollowerObjectList[0] = follower; follower_currentX = follower.transform.position.x; follower_currentY = follower.transform.position.y; follower_currentZ = follower.transform.position.z; if ((Object)(object)follower_root == (Object)null) { follower_root = new GameObject(); ((Object)follower_root).name = "Follower Root"; follower_root.transform.parent = follower.transform.parent; follower_root.transform.localPosition = new Vector3(0f, 0f, 0f); follower_root.transform.localEulerAngles = new Vector3(0f, 0f, 0f); follower_root.transform.localScale = new Vector3(1f, 1f, 1f); } Vector3 val2 = default(Vector3); Vector3 eulerAngles = default(Vector3); for (int i = 2; i <= numberOfCartridges; i++) { if (isCurved) { Vector3 val = CalculateNextCartridgePos(cartridgeAngleOffsetX * (float)(i - 1)); follower_currentY = val.y; follower_currentZ = val.z; } else { follower_currentY += followerOffsetY; follower_currentZ += followerOffsetZ; } ((Vector3)(ref val2))..ctor(follower_currentX, follower_currentY, follower_currentZ); Quaternion localRotation = follower.transform.localRotation; if (isCurved) { Quaternion localRotation2 = follower.transform.localRotation; float num = ((Quaternion)(ref localRotation2)).eulerAngles.x - cartridgeAngleOffsetX * (float)(i - 1); Quaternion localRotation3 = follower.transform.localRotation; float y = ((Quaternion)(ref localRotation3)).eulerAngles.y; Quaternion localRotation4 = follower.transform.localRotation; ((Vector3)(ref eulerAngles))..ctor(num, y, ((Quaternion)(ref localRotation4)).eulerAngles.z); } else { Quaternion localRotation5 = follower.transform.localRotation; float x = ((Quaternion)(ref localRotation5)).eulerAngles.x; Quaternion localRotation6 = follower.transform.localRotation; float y2 = ((Quaternion)(ref localRotation6)).eulerAngles.y; Quaternion localRotation7 = follower.transform.localRotation; ((Vector3)(ref eulerAngles))..ctor(x, y2, ((Quaternion)(ref localRotation7)).eulerAngles.z); } ((Quaternion)(ref localRotation)).eulerAngles = eulerAngles; GameObject val3 = Object.Instantiate(follower, val2, localRotation, follower_root.transform); ((Object)val3).name = ((Object)follower).name + " (" + i + ")"; FollowerObjectList[i - 1] = val3; } } private void ClearFollowerPoints(bool all = false) { if ((Object)(object)follower_root != (Object)null) { int childCount = follower_root.transform.childCount; for (int num = childCount - 1; num >= 0; num--) { Object.DestroyImmediate((Object)(object)((Component)follower_root.transform.GetChild(num)).gameObject); } if (all) { Object.DestroyImmediate((Object)(object)follower_root); } } } private void RemoveFollowerPointVisuals() { if ((Object)(object)follower_root == (Object)null) { return; } GameObject[] followerObjectList = FollowerObjectList; foreach (GameObject val in followerObjectList) { if ((Object)(object)val != (Object)(object)follower) { MeshRenderer val2 = val.GetComponent(); if ((Object)(object)val2 == (Object)null) { val2 = val.GetComponentInChildren(); } Object.DestroyImmediate((Object)(object)val2); MeshFilter val3 = val.GetComponent(); if ((Object)(object)val3 == (Object)null) { val3 = val.GetComponentInChildren(); } Object.DestroyImmediate((Object)(object)val3); } } } private void ShowGizmo(bool on) { switch (on) { case false: if ((Object)(object)gizmo != (Object)null) { Object.DestroyImmediate((Object)(object)gizmo); } break; case true: if ((Object)(object)gizmo == (Object)null) { gizmo = ((Component)magazineRadiusCenter).gameObject.AddComponent(); } break; } } private Vector3 CalculateNextCartridgePos(float deltaA) { //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_0028: Unknown result type (might be due to invalid IL or missing references) //IL_002d: Unknown result type (might be due to invalid IL or missing references) //IL_0032: Unknown result type (might be due to invalid IL or missing references) //IL_0085: Unknown result type (might be due to invalid IL or missing references) //IL_008a: Unknown result type (might be due to invalid IL or missing references) //IL_00ab: Unknown result type (might be due to invalid IL or missing references) //IL_00b0: Unknown result type (might be due to invalid IL or missing references) //IL_00c9: Unknown result type (might be due to invalid IL or missing references) //IL_00ce: Unknown result type (might be due to invalid IL or missing references) //IL_00e0: Unknown result type (might be due to invalid IL or missing references) //IL_00e1: Unknown result type (might be due to invalid IL or missing references) //IL_00e8: Unknown result type (might be due to invalid IL or missing references) deltaA *= (float)Math.PI / 180f; Vector3 result = default(Vector3); Vector3 val = firstCartridge.transform.position - magazineRadiusCenter.position; float num = Mathf.Sqrt(Mathf.Pow(val.y, 2f) + Mathf.Pow(val.z, 2f)); float num2 = Mathf.Atan2(val.y, val.z); float num3 = Mathf.Sin(num2 + deltaA) * num + ((Component)magazineRadiusCenter).transform.position.y; float num4 = Mathf.Cos(num2 + deltaA) * num + ((Component)magazineRadiusCenter).transform.position.z; ((Vector3)(ref result))..ctor(firstCartridge.transform.position.x, num3, num4); return result; } private void ClearConsole() { Assembly assembly = Assembly.GetAssembly(typeof(ActiveEditorTracker)); Type type = assembly.GetType("UnityEditorInternal.LogEntries"); MethodInfo method = type.GetMethod("Clear"); method.Invoke(new object(), null); } private void OnDestroy() { Object.DestroyImmediate((Object)(object)gizmo); } } namespace CustomScripts.FTR { public class AttachableTubeFedBoltReleaseTrigger : FVRInteractiveObject { public AttachableTubeFed weapon; public override void Poke(FVRViveHand hand) { weapon.Bolt.ReleaseBolt(); } } } public class AutoRotate : MonoBehaviour { public float Speed = 5f; public bool RotateOnX = true; public bool RotateOnY = true; public bool RotateOnZ = true; private void Update() { //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Unknown result type (might be due to invalid IL or missing references) //IL_0063: Unknown result type (might be due to invalid IL or missing references) Vector3 val = Vector3.one * Speed; if (!RotateOnX) { val.x = 0f; } if (!RotateOnY) { val.y = 0f; } if (!RotateOnZ) { val.z = 0f; } ((Component)this).transform.Rotate(val * Time.deltaTime); } } public class ExampleWheelController : MonoBehaviour { private static class Uniforms { internal static readonly int _MotionAmount = Shader.PropertyToID("_MotionAmount"); } public float acceleration; public Renderer motionVectorRenderer; private Rigidbody m_Rigidbody; private void Start() { m_Rigidbody = ((Component)this).GetComponent(); m_Rigidbody.maxAngularVelocity = 100f; } private void Update() { //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0078: Unknown result type (might be due to invalid IL or missing references) //IL_007d: Unknown result type (might be due to invalid IL or missing references) //IL_0067: Unknown result type (might be due to invalid IL or missing references) if (Input.GetKey((KeyCode)273)) { m_Rigidbody.AddRelativeTorque(new Vector3(-1f * acceleration, 0f, 0f), (ForceMode)5); } else if (Input.GetKey((KeyCode)274)) { m_Rigidbody.AddRelativeTorque(new Vector3(1f * acceleration, 0f, 0f), (ForceMode)5); } float num = (0f - m_Rigidbody.angularVelocity.x) / 100f; if (Object.op_Implicit((Object)(object)motionVectorRenderer)) { motionVectorRenderer.material.SetFloat(Uniforms._MotionAmount, Mathf.Clamp(num, -0.25f, 0.25f)); } } } [RequireComponent(typeof(ParticleSystem))] public class CFX_AutoStopLoopedEffect : MonoBehaviour { public float effectDuration = 2.5f; private float d; private void OnEnable() { d = effectDuration; } private void Update() { if (!(d > 0f)) { return; } d -= Time.deltaTime; if (d <= 0f) { ((Component)this).GetComponent().Stop(true); CFX_Demo_Translate component = ((Component)this).gameObject.GetComponent(); if ((Object)(object)component != (Object)null) { ((Behaviour)component).enabled = false; } } } } public class CFX_Demo : MonoBehaviour { public bool orderedSpawns = true; public float step = 1f; public float range = 5f; private float order = -5f; public Material groundMat; public Material waterMat; public GameObject[] ParticleExamples; private Dictionary ParticlesYOffsetD = new Dictionary { { "CFX_ElectricGround", 0.15f }, { "CFX_ElectricityBall", 1f }, { "CFX_ElectricityBolt", 1f }, { "CFX_Explosion", 2f }, { "CFX_SmallExplosion", 1.5f }, { "CFX_SmokeExplosion", 2.5f }, { "CFX_Flame", 1f }, { "CFX_DoubleFlame", 1f }, { "CFX_Hit", 1f }, { "CFX_CircularLightWall", 0.05f }, { "CFX_LightWall", 0.05f }, { "CFX_Flash", 2f }, { "CFX_Poof", 1.5f }, { "CFX_Virus", 1f }, { "CFX_SmokePuffs", 2f }, { "CFX_Slash", 1f }, { "CFX_Splash", 0.05f }, { "CFX_Fountain", 0.05f }, { "CFX_Ripple", 0.05f }, { "CFX_Magic", 2f }, { "CFX_SoftStar", 1f }, { "CFX_SpikyAura_Sphere", 1f }, { "CFX_Firework", 2.4f }, { "CFX_GroundA", 0.05f } }; private int exampleIndex; private string randomSpawnsDelay = "0.5"; private bool randomSpawns; private bool slowMo; private void OnMouseDown() { //IL_0003: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) RaycastHit val = default(RaycastHit); if (((Component)this).GetComponent().Raycast(Camera.main.ScreenPointToRay(Input.mousePosition), ref val, 9999f)) { GameObject val2 = spawnParticle(); val2.transform.position = ((RaycastHit)(ref val)).point + val2.transform.position; } } private GameObject spawnParticle() { //IL_00c6: Unknown result type (might be due to invalid IL or missing references) GameObject val = Object.Instantiate(ParticleExamples[exampleIndex]); val.SetActive(true); for (int i = 0; i < val.transform.childCount; i++) { ((Component)val.transform.GetChild(i)).gameObject.SetActive(true); } float num = 0f; foreach (KeyValuePair item in ParticlesYOffsetD) { if (((Object)val).name.StartsWith(item.Key)) { num = item.Value; break; } } val.transform.position = new Vector3(0f, num, 0f); return val; } private void OnGUI() { //IL_0019: Unknown result type (might be due to invalid IL or missing references) GUILayout.BeginArea(new Rect(5f, 20f, (float)(Screen.width - 10), 30f)); GUILayout.BeginHorizontal((GUILayoutOption[])(object)new GUILayoutOption[0]); GUILayout.Label("Effect", (GUILayoutOption[])(object)new GUILayoutOption[1] { GUILayout.Width(50f) }); if (GUILayout.Button("<", (GUILayoutOption[])(object)new GUILayoutOption[1] { GUILayout.Width(20f) })) { prevParticle(); } GUILayout.Label(((Object)ParticleExamples[exampleIndex]).name, (GUILayoutOption[])(object)new GUILayoutOption[1] { GUILayout.Width(190f) }); if (GUILayout.Button(">", (GUILayoutOption[])(object)new GUILayoutOption[1] { GUILayout.Width(20f) })) { nextParticle(); } GUILayout.Label("Click on the ground to spawn selected particles", (GUILayoutOption[])(object)new GUILayoutOption[0]); if (GUILayout.Button((!CFX_Demo_RotateCamera.rotating) ? "Rotate Camera" : "Pause Camera", (GUILayoutOption[])(object)new GUILayoutOption[1] { GUILayout.Width(140f) })) { CFX_Demo_RotateCamera.rotating = !CFX_Demo_RotateCamera.rotating; } if (GUILayout.Button((!randomSpawns) ? "Start Random Spawns" : "Stop Random Spawns", (GUILayoutOption[])(object)new GUILayoutOption[1] { GUILayout.Width(140f) })) { randomSpawns = !randomSpawns; if (randomSpawns) { ((MonoBehaviour)this).StartCoroutine("RandomSpawnsCoroutine"); } else { ((MonoBehaviour)this).StopCoroutine("RandomSpawnsCoroutine"); } } randomSpawnsDelay = GUILayout.TextField(randomSpawnsDelay, 10, (GUILayoutOption[])(object)new GUILayoutOption[1] { GUILayout.Width(42f) }); randomSpawnsDelay = Regex.Replace(randomSpawnsDelay, "[^0-9.]", ""); if (GUILayout.Button((!((Component)this).GetComponent().enabled) ? "Show Ground" : "Hide Ground", (GUILayoutOption[])(object)new GUILayoutOption[1] { GUILayout.Width(90f) })) { ((Component)this).GetComponent().enabled = !((Component)this).GetComponent().enabled; } if (GUILayout.Button((!slowMo) ? "Slow Motion" : "Normal Speed", (GUILayoutOption[])(object)new GUILayoutOption[1] { GUILayout.Width(100f) })) { slowMo = !slowMo; if (slowMo) { Time.timeScale = 0.33f; } else { Time.timeScale = 1f; } } GUILayout.EndHorizontal(); GUILayout.EndArea(); } private IEnumerator RandomSpawnsCoroutine() { while (true) { GameObject particles = spawnParticle(); if (orderedSpawns) { particles.transform.position = ((Component)this).transform.position + new Vector3(order, particles.transform.position.y, 0f); order -= step; if (order < 0f - range) { order = range; } } else { particles.transform.position = ((Component)this).transform.position + new Vector3(Random.Range(0f - range, range), 0f, Random.Range(0f - range, range)) + new Vector3(0f, particles.transform.position.y, 0f); } yield return (object)new WaitForSeconds(float.Parse(randomSpawnsDelay)); } } private void Update() { if (Input.GetKeyDown((KeyCode)276)) { prevParticle(); } else if (Input.GetKeyDown((KeyCode)275)) { nextParticle(); } } private void prevParticle() { exampleIndex--; if (exampleIndex < 0) { exampleIndex = ParticleExamples.Length - 1; } if (((Object)ParticleExamples[exampleIndex]).name.Contains("Splash") || ((Object)ParticleExamples[exampleIndex]).name == "CFX_Ripple" || ((Object)ParticleExamples[exampleIndex]).name == "CFX_Fountain") { ((Component)this).GetComponent().material = waterMat; } else { ((Component)this).GetComponent().material = groundMat; } } private void nextParticle() { exampleIndex++; if (exampleIndex >= ParticleExamples.Length) { exampleIndex = 0; } if (((Object)ParticleExamples[exampleIndex]).name.Contains("Splash") || ((Object)ParticleExamples[exampleIndex]).name == "CFX_Ripple" || ((Object)ParticleExamples[exampleIndex]).name == "CFX_Fountain") { ((Component)this).GetComponent().material = waterMat; } else { ((Component)this).GetComponent().material = groundMat; } } } public class CFX_Demo_New : MonoBehaviour { public Renderer groundRenderer; public Collider groundCollider; [Space] [Space] public Image slowMoBtn; public Text slowMoLabel; public Image camRotBtn; public Text camRotLabel; public Image groundBtn; public Text groundLabel; [Space] public Text EffectLabel; public Text EffectIndexLabel; private GameObject[] ParticleExamples; private int exampleIndex; private bool slowMo; private Vector3 defaultCamPosition; private Quaternion defaultCamRotation; private List onScreenParticles = new List(); private void Awake() { //IL_007a: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_008f: Unknown result type (might be due to invalid IL or missing references) //IL_0094: Unknown result type (might be due to invalid IL or missing references) List list = new List(); int childCount = ((Component)this).transform.childCount; for (int i = 0; i < childCount; i++) { GameObject gameObject = ((Component)((Component)this).transform.GetChild(i)).gameObject; list.Add(gameObject); } list.Sort((GameObject o1, GameObject o2) => ((Object)o1).name.CompareTo(((Object)o2).name)); ParticleExamples = list.ToArray(); defaultCamPosition = ((Component)Camera.main).transform.position; defaultCamRotation = ((Component)Camera.main).transform.rotation; ((MonoBehaviour)this).StartCoroutine("CheckForDeletedParticles"); UpdateUI(); } private void Update() { //IL_005b: Unknown result type (might be due to invalid IL or missing references) //IL_006c: Unknown result type (might be due to invalid IL or missing references) //IL_0071: Unknown result type (might be due to invalid IL or missing references) //IL_00d4: Unknown result type (might be due to invalid IL or missing references) //IL_0097: Unknown result type (might be due to invalid IL or missing references) //IL_00a2: Unknown result type (might be due to invalid IL or missing references) //IL_00a7: Unknown result type (might be due to invalid IL or missing references) //IL_0116: Unknown result type (might be due to invalid IL or missing references) //IL_012b: Unknown result type (might be due to invalid IL or missing references) //IL_00f3: Unknown result type (might be due to invalid IL or missing references) if (Input.GetKeyDown((KeyCode)276)) { prevParticle(); } else if (Input.GetKeyDown((KeyCode)275)) { nextParticle(); } else if (Input.GetKeyDown((KeyCode)127)) { destroyParticles(); } if (Input.GetMouseButtonDown(0)) { RaycastHit val = default(RaycastHit); if (groundCollider.Raycast(Camera.main.ScreenPointToRay(Input.mousePosition), ref val, 9999f)) { GameObject val2 = spawnParticle(); val2.transform.position = ((RaycastHit)(ref val)).point + val2.transform.position; } } float axis = Input.GetAxis("Mouse ScrollWheel"); if (axis != 0f) { ((Component)Camera.main).transform.Translate(Vector3.forward * ((!(axis < 0f)) ? 1f : (-1f)), (Space)1); } if (Input.GetMouseButtonDown(2)) { ((Component)Camera.main).transform.position = defaultCamPosition; ((Component)Camera.main).transform.rotation = defaultCamRotation; } } public void OnToggleGround() { //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_0006: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Unknown result type (might be due to invalid IL or missing references) //IL_0058: Unknown result type (might be due to invalid IL or missing references) Color white = Color.white; groundRenderer.enabled = !groundRenderer.enabled; white.a = ((!groundRenderer.enabled) ? 0.33f : 1f); ((Graphic)groundBtn).color = white; ((Graphic)groundLabel).color = white; } public void OnToggleCamera() { //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_0006: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) Color white = Color.white; CFX_Demo_RotateCamera.rotating = !CFX_Demo_RotateCamera.rotating; white.a = ((!CFX_Demo_RotateCamera.rotating) ? 0.33f : 1f); ((Graphic)camRotBtn).color = white; ((Graphic)camRotLabel).color = white; } public void OnToggleSlowMo() { //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_0006: Unknown result type (might be due to invalid IL or missing references) //IL_005c: Unknown result type (might be due to invalid IL or missing references) //IL_0068: Unknown result type (might be due to invalid IL or missing references) Color white = Color.white; slowMo = !slowMo; if (slowMo) { Time.timeScale = 0.33f; white.a = 1f; } else { Time.timeScale = 1f; white.a = 0.33f; } ((Graphic)slowMoBtn).color = white; ((Graphic)slowMoLabel).color = white; } public void OnPreviousEffect() { prevParticle(); } public void OnNextEffect() { nextParticle(); } private void UpdateUI() { EffectLabel.text = ((Object)ParticleExamples[exampleIndex]).name; EffectIndexLabel.text = string.Format("{0}/{1}", (exampleIndex + 1).ToString("00"), ParticleExamples.Length.ToString("00")); } private GameObject spawnParticle() { //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_002a: Unknown result type (might be due to invalid IL or missing references) //IL_0037: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Unknown result type (might be due to invalid IL or missing references) //IL_0062: Unknown result type (might be due to invalid IL or missing references) GameObject val = Object.Instantiate(ParticleExamples[exampleIndex]); val.transform.position = new Vector3(0f, val.transform.position.y, 0f); val.SetActive(true); ParticleSystem component = val.GetComponent(); if ((Object)(object)component != (Object)null) { MainModule main = component.main; if (((MainModule)(ref main)).loop) { ((Component)component).gameObject.AddComponent(); ((Component)component).gameObject.AddComponent(); } } onScreenParticles.Add(val); return val; } private IEnumerator CheckForDeletedParticles() { while (true) { yield return (object)new WaitForSeconds(5f); for (int num = onScreenParticles.Count - 1; num >= 0; num--) { if ((Object)(object)onScreenParticles[num] == (Object)null) { onScreenParticles.RemoveAt(num); } } } } private void prevParticle() { exampleIndex--; if (exampleIndex < 0) { exampleIndex = ParticleExamples.Length - 1; } UpdateUI(); } private void nextParticle() { exampleIndex++; if (exampleIndex >= ParticleExamples.Length) { exampleIndex = 0; } UpdateUI(); } private void destroyParticles() { for (int num = onScreenParticles.Count - 1; num >= 0; num--) { if ((Object)(object)onScreenParticles[num] != (Object)null) { Object.Destroy((Object)(object)onScreenParticles[num]); } onScreenParticles.RemoveAt(num); } } } public class CFX_Demo_RandomDir : MonoBehaviour { public Vector3 min = new Vector3(0f, 0f, 0f); public Vector3 max = new Vector3(0f, 360f, 0f); private void Start() { //IL_0058: Unknown result type (might be due to invalid IL or missing references) ((Component)this).transform.eulerAngles = new Vector3(Random.Range(min.x, max.x), Random.Range(min.y, max.y), Random.Range(min.z, max.z)); } } public class CFX_Demo_RandomDirectionTranslate : MonoBehaviour { public float speed = 30f; public Vector3 baseDir = Vector3.zero; public Vector3 axis = Vector3.forward; public bool gravity; private Vector3 dir; private void Start() { //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_003d: Unknown result type (might be due to invalid IL or missing references) //IL_0049: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Unknown result type (might be due to invalid IL or missing references) //IL_005b: Unknown result type (might be due to invalid IL or missing references) //IL_0060: Unknown result type (might be due to invalid IL or missing references) //IL_0065: Unknown result type (might be due to invalid IL or missing references) Vector3 val = default(Vector3); ((Vector3)(ref val))..ctor(Random.Range(0f, 360f), Random.Range(0f, 360f), Random.Range(0f, 360f)); dir = ((Vector3)(ref val)).normalized; ((Vector3)(ref dir)).Scale(axis); dir += baseDir; } private void Update() { //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_0013: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_0043: Unknown result type (might be due to invalid IL or missing references) ((Component)this).transform.Translate(dir * speed * Time.deltaTime); if (gravity) { ((Component)this).transform.Translate(Physics.gravity * Time.deltaTime); } } } public class CFX_Demo_RotateCamera : MonoBehaviour { public static bool rotating = true; public float speed = 30f; public Transform rotationCenter; private void Update() { //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) if (rotating) { ((Component)this).transform.RotateAround(rotationCenter.position, Vector3.up, speed * Time.deltaTime); } } } public class CFX_Demo_Translate : MonoBehaviour { public float speed = 30f; public Vector3 rotation = Vector3.forward; public Vector3 axis = Vector3.forward; public bool gravity; private Vector3 dir; private void Start() { //IL_002f: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0040: Unknown result type (might be due to invalid IL or missing references) //IL_0051: Unknown result type (might be due to invalid IL or missing references) dir = new Vector3(Random.Range(0f, 360f), Random.Range(0f, 360f), Random.Range(0f, 360f)); ((Vector3)(ref dir)).Scale(rotation); ((Component)this).transform.localEulerAngles = dir; } private void Update() { //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_0013: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) ((Component)this).transform.Translate(axis * speed * Time.deltaTime, (Space)1); } } [RequireComponent(typeof(ParticleSystem))] public class CFX_AutoDestructShuriken : MonoBehaviour { public bool OnlyDeactivate; private void OnEnable() { ((MonoBehaviour)this).StartCoroutine("CheckIfAlive"); } private IEnumerator CheckIfAlive() { ParticleSystem ps = ((Component)this).GetComponent(); while (true && (Object)(object)ps != (Object)null) { yield return (object)new WaitForSeconds(0.5f); if (!ps.IsAlive(true)) { if (OnlyDeactivate) { ((Component)this).gameObject.SetActive(false); } else { Object.Destroy((Object)(object)((Component)this).gameObject); } break; } } } } public class CFX_AutoRotate : MonoBehaviour { public Vector3 rotation; public Space space = (Space)1; private void Update() { //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) ((Component)this).transform.Rotate(rotation * Time.deltaTime, space); } } public class CFX_AutodestructWhenNoChildren : MonoBehaviour { private void Update() { if (((Component)this).transform.childCount == 0) { Object.Destroy((Object)(object)((Component)this).gameObject); } } } public class CFX_InspectorHelp : MonoBehaviour { public bool Locked; public string Title; public string HelpText; public int MsgType; [ContextMenu("Unlock editing")] private void Unlock() { Locked = false; } } [RequireComponent(typeof(Light))] public class CFX_LightIntensityFade : MonoBehaviour { public float duration = 1f; public float delay = 0f; public float finalIntensity = 0f; private float baseIntensity; public bool autodestruct; private float p_lifetime = 0f; private float p_delay; private void Start() { baseIntensity = ((Component)this).GetComponent().intensity; } private void OnEnable() { p_lifetime = 0f; p_delay = delay; if (delay > 0f) { ((Behaviour)((Component)this).GetComponent()).enabled = false; } } private void Update() { if (p_delay > 0f) { p_delay -= Time.deltaTime; if (p_delay <= 0f) { ((Behaviour)((Component)this).GetComponent()).enabled = true; } } else if (p_lifetime / duration < 1f) { ((Component)this).GetComponent().intensity = Mathf.Lerp(baseIntensity, finalIntensity, p_lifetime / duration); p_lifetime += Time.deltaTime; } else if (autodestruct) { Object.Destroy((Object)(object)((Component)this).gameObject); } } } public class CFX_ShurikenThreadFix : MonoBehaviour { private ParticleSystem[] systems; private void OnEnable() { systems = ((Component)this).GetComponentsInChildren(); ParticleSystem[] array = systems; foreach (ParticleSystem val in array) { val.Stop(true); val.Clear(true); } ((MonoBehaviour)this).StartCoroutine("WaitFrame"); } private IEnumerator WaitFrame() { yield return null; ParticleSystem[] array = systems; foreach (ParticleSystem val in array) { val.Play(true); } } } public class CFX_SpawnSystem : MonoBehaviour { private static CFX_SpawnSystem instance; public GameObject[] objectsToPreload = (GameObject[])(object)new GameObject[0]; public int[] objectsToPreloadTimes = new int[0]; public bool hideObjectsInHierarchy = false; public bool spawnAsChildren = true; public bool onlyGetInactiveObjects = false; public bool instantiateIfNeeded = false; private bool allObjectsLoaded; private Dictionary> instantiatedObjects = new Dictionary>(); private Dictionary poolCursors = new Dictionary(); public static bool AllObjectsLoaded => instance.allObjectsLoaded; public static GameObject GetNextObject(GameObject sourceObj, bool activateObject = true) { int instanceID = ((Object)sourceObj).GetInstanceID(); if (!instance.poolCursors.ContainsKey(instanceID)) { Debug.LogError((object)("[CFX_SpawnSystem.GetNextObject()] Object hasn't been preloaded: " + ((Object)sourceObj).name + " (ID:" + instanceID + ")\n"), (Object)(object)instance); return null; } int num = instance.poolCursors[instanceID]; GameObject val = null; if (instance.onlyGetInactiveObjects) { int num2 = num; while (true) { val = instance.instantiatedObjects[instanceID][num]; instance.increasePoolCursor(instanceID); num = instance.poolCursors[instanceID]; if ((Object)(object)val != (Object)null && !val.activeSelf) { break; } if (num == num2) { if (instance.instantiateIfNeeded) { Debug.Log((object)("[CFX_SpawnSystem.GetNextObject()] A new instance has been created for \"" + ((Object)sourceObj).name + "\" because no active instance were found in the pool.\n"), (Object)(object)instance); PreloadObject(sourceObj); List list = instance.instantiatedObjects[instanceID]; val = list[list.Count - 1]; break; } Debug.LogWarning((object)("[CFX_SpawnSystem.GetNextObject()] There are no active instances available in the pool for \"" + ((Object)sourceObj).name + "\"\nYou may need to increase the preloaded object count for this prefab?"), (Object)(object)instance); return null; } } } else { val = instance.instantiatedObjects[instanceID][num]; instance.increasePoolCursor(instanceID); } if (activateObject && (Object)(object)val != (Object)null) { val.SetActive(true); } return val; } public static void PreloadObject(GameObject sourceObj, int poolSize = 1) { instance.addObjectToPool(sourceObj, poolSize); } public static void UnloadObjects(GameObject sourceObj) { instance.removeObjectsFromPool(sourceObj); } private void addObjectToPool(GameObject sourceObject, int number) { int instanceID = ((Object)sourceObject).GetInstanceID(); if (!instantiatedObjects.ContainsKey(instanceID)) { instantiatedObjects.Add(instanceID, new List()); poolCursors.Add(instanceID, 0); } for (int i = 0; i < number; i++) { GameObject val = Object.Instantiate(sourceObject); val.SetActive(false); CFX_AutoDestructShuriken[] componentsInChildren = val.GetComponentsInChildren(true); CFX_AutoDestructShuriken[] array = componentsInChildren; foreach (CFX_AutoDestructShuriken cFX_AutoDestructShuriken in array) { cFX_AutoDestructShuriken.OnlyDeactivate = true; } CFX_LightIntensityFade[] componentsInChildren2 = val.GetComponentsInChildren(true); CFX_LightIntensityFade[] array2 = componentsInChildren2; foreach (CFX_LightIntensityFade cFX_LightIntensityFade in array2) { cFX_LightIntensityFade.autodestruct = false; } instantiatedObjects[instanceID].Add(val); if (hideObjectsInHierarchy) { ((Object)val).hideFlags = (HideFlags)1; } if (spawnAsChildren) { val.transform.parent = ((Component)this).transform; } } } private void removeObjectsFromPool(GameObject sourceObject) { int instanceID = ((Object)sourceObject).GetInstanceID(); if (!instantiatedObjects.ContainsKey(instanceID)) { Debug.LogWarning((object)("[CFX_SpawnSystem.removeObjectsFromPool()] There aren't any preloaded object for: " + ((Object)sourceObject).name + " (ID:" + instanceID + ")\n"), (Object)(object)((Component)this).gameObject); return; } for (int num = instantiatedObjects[instanceID].Count - 1; num >= 0; num--) { GameObject val = instantiatedObjects[instanceID][num]; instantiatedObjects[instanceID].RemoveAt(num); Object.Destroy((Object)(object)val); } instantiatedObjects.Remove(instanceID); poolCursors.Remove(instanceID); } private void increasePoolCursor(int uniqueId) { instance.poolCursors[uniqueId]++; if (instance.poolCursors[uniqueId] >= instance.instantiatedObjects[uniqueId].Count) { instance.poolCursors[uniqueId] = 0; } } private void Awake() { if ((Object)(object)instance != (Object)null) { Debug.LogWarning((object)"CFX_SpawnSystem: There should only be one instance of CFX_SpawnSystem per Scene!\n", (Object)(object)((Component)this).gameObject); } instance = this; } private void Start() { allObjectsLoaded = false; for (int i = 0; i < objectsToPreload.Length; i++) { PreloadObject(objectsToPreload[i], objectsToPreloadTimes[i]); } allObjectsLoaded = true; } } namespace LuxWater.Demo { public class LuxWater_ExtendedFlycam : MonoBehaviour { public float cameraSensitivity = 90f; public float climbSpeed = 4f; public float normalMoveSpeed = 10f; public float slowMoveFactor = 0.25f; public float fastMoveFactor = 3f; private float rotationX = 0f; private float rotationY = 0f; private bool isOrtho = false; private Camera cam; private void Start() { //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) rotationX = ((Component)this).transform.eulerAngles.y; cam = ((Component)this).GetComponent(); if ((Object)(object)cam != (Object)null) { isOrtho = cam.orthographic; } } private void Update() { //IL_0068: Unknown result type (might be due to invalid IL or missing references) //IL_006d: Unknown result type (might be due to invalid IL or missing references) //IL_0072: Unknown result type (might be due to invalid IL or missing references) //IL_0073: Unknown result type (might be due to invalid IL or missing references) //IL_007a: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_0084: Unknown result type (might be due to invalid IL or missing references) //IL_0089: Unknown result type (might be due to invalid IL or missing references) //IL_0096: Unknown result type (might be due to invalid IL or missing references) //IL_009b: Unknown result type (might be due to invalid IL or missing references) //IL_00a3: Unknown result type (might be due to invalid IL or missing references) //IL_00d3: Unknown result type (might be due to invalid IL or missing references) //IL_00de: Unknown result type (might be due to invalid IL or missing references) //IL_00f0: Unknown result type (might be due to invalid IL or missing references) //IL_00ff: Unknown result type (might be due to invalid IL or missing references) //IL_0105: Unknown result type (might be due to invalid IL or missing references) //IL_010a: Unknown result type (might be due to invalid IL or missing references) //IL_011b: Unknown result type (might be due to invalid IL or missing references) //IL_0126: Unknown result type (might be due to invalid IL or missing references) //IL_0138: Unknown result type (might be due to invalid IL or missing references) //IL_0147: Unknown result type (might be due to invalid IL or missing references) //IL_014d: Unknown result type (might be due to invalid IL or missing references) //IL_0152: Unknown result type (might be due to invalid IL or missing references) //IL_02e7: Unknown result type (might be due to invalid IL or missing references) //IL_02f2: Unknown result type (might be due to invalid IL or missing references) //IL_02fd: Unknown result type (might be due to invalid IL or missing references) //IL_0303: Unknown result type (might be due to invalid IL or missing references) //IL_0308: Unknown result type (might be due to invalid IL or missing references) //IL_0188: Unknown result type (might be due to invalid IL or missing references) //IL_0193: Unknown result type (might be due to invalid IL or missing references) //IL_01a5: Unknown result type (might be due to invalid IL or missing references) //IL_01b4: Unknown result type (might be due to invalid IL or missing references) //IL_01ba: Unknown result type (might be due to invalid IL or missing references) //IL_01bf: Unknown result type (might be due to invalid IL or missing references) //IL_01d0: Unknown result type (might be due to invalid IL or missing references) //IL_01db: Unknown result type (might be due to invalid IL or missing references) //IL_01ed: Unknown result type (might be due to invalid IL or missing references) //IL_01fc: Unknown result type (might be due to invalid IL or missing references) //IL_0202: Unknown result type (might be due to invalid IL or missing references) //IL_0207: Unknown result type (might be due to invalid IL or missing references) //IL_0327: Unknown result type (might be due to invalid IL or missing references) //IL_0332: Unknown result type (might be due to invalid IL or missing references) //IL_033d: Unknown result type (might be due to invalid IL or missing references) //IL_0343: Unknown result type (might be due to invalid IL or missing references) //IL_0348: Unknown result type (might be due to invalid IL or missing references) //IL_0256: Unknown result type (might be due to invalid IL or missing references) //IL_0261: Unknown result type (might be due to invalid IL or missing references) //IL_026c: Unknown result type (might be due to invalid IL or missing references) //IL_027b: Unknown result type (might be due to invalid IL or missing references) //IL_0281: Unknown result type (might be due to invalid IL or missing references) //IL_0286: Unknown result type (might be due to invalid IL or missing references) //IL_0298: Unknown result type (might be due to invalid IL or missing references) //IL_02a3: Unknown result type (might be due to invalid IL or missing references) //IL_02ae: Unknown result type (might be due to invalid IL or missing references) //IL_02bd: Unknown result type (might be due to invalid IL or missing references) //IL_02c3: Unknown result type (might be due to invalid IL or missing references) //IL_02c8: Unknown result type (might be due to invalid IL or missing references) float deltaTime = Time.deltaTime; rotationX += Input.GetAxis("Mouse X") * cameraSensitivity * deltaTime; rotationY += Input.GetAxis("Mouse Y") * cameraSensitivity * deltaTime; rotationY = Mathf.Clamp(rotationY, -90f, 90f); Quaternion val = Quaternion.AngleAxis(rotationX, Vector3.up); val *= Quaternion.AngleAxis(rotationY, Vector3.left); ((Component)this).transform.localRotation = Quaternion.Slerp(((Component)this).transform.localRotation, val, deltaTime * 6f); if (Input.GetKey((KeyCode)304) || Input.GetKey((KeyCode)303)) { Transform transform = ((Component)this).transform; transform.position += ((Component)this).transform.forward * (normalMoveSpeed * fastMoveFactor) * Input.GetAxis("Vertical") * deltaTime; Transform transform2 = ((Component)this).transform; transform2.position += ((Component)this).transform.right * (normalMoveSpeed * fastMoveFactor) * Input.GetAxis("Horizontal") * deltaTime; } else if (Input.GetKey((KeyCode)306) || Input.GetKey((KeyCode)305)) { Transform transform3 = ((Component)this).transform; transform3.position += ((Component)this).transform.forward * (normalMoveSpeed * slowMoveFactor) * Input.GetAxis("Vertical") * deltaTime; Transform transform4 = ((Component)this).transform; transform4.position += ((Component)this).transform.right * (normalMoveSpeed * slowMoveFactor) * Input.GetAxis("Horizontal") * deltaTime; } else { if (isOrtho) { Camera obj = cam; obj.orthographicSize *= 1f - Input.GetAxis("Vertical") * deltaTime; } else { Transform transform5 = ((Component)this).transform; transform5.position += ((Component)this).transform.forward * normalMoveSpeed * Input.GetAxis("Vertical") * deltaTime; } Transform transform6 = ((Component)this).transform; transform6.position += ((Component)this).transform.right * normalMoveSpeed * Input.GetAxis("Horizontal") * deltaTime; } if (Input.GetKey((KeyCode)113)) { Transform transform7 = ((Component)this).transform; transform7.position -= ((Component)this).transform.up * climbSpeed * deltaTime; } if (Input.GetKey((KeyCode)101)) { Transform transform8 = ((Component)this).transform; transform8.position += ((Component)this).transform.up * climbSpeed * deltaTime; } } } } public class LuxWater_SetToGerstnerHeight : MonoBehaviour { public Material WaterMaterial; public Vector3 Damping = new Vector3(0.3f, 1f, 0.3f); public float TimeOffset = 0f; public bool UpdateWaterMaterialPerFrame = false; [Space(8f)] public bool AddCircleAnim = false; public float Radius = 6f; public float Speed = 1f; [Space(8f)] public Transform[] ManagedWaterProjectors; [Header("Debug")] public float MaxDisp; private Transform trans; private LuxWaterUtils.GersterWavesDescription Description; private bool ObjectIsVisible = false; private Vector3 Offset = Vector3.zero; private void Start() { trans = ((Component)this).transform; LuxWaterUtils.GetGersterWavesDescription(ref Description, WaterMaterial); } private void OnBecameVisible() { ObjectIsVisible = true; } private void OnBecameInvisible() { ObjectIsVisible = false; } private void LateUpdate() { //IL_0053: Unknown result type (might be due to invalid IL or missing references) //IL_0058: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) //IL_005b: Unknown result type (might be due to invalid IL or missing references) //IL_0060: Unknown result type (might be due to invalid IL or missing references) //IL_0065: Unknown result type (might be due to invalid IL or missing references) //IL_012a: Unknown result type (might be due to invalid IL or missing references) //IL_0137: Unknown result type (might be due to invalid IL or missing references) //IL_013c: Unknown result type (might be due to invalid IL or missing references) //IL_01e6: Unknown result type (might be due to invalid IL or missing references) //IL_01e8: Unknown result type (might be due to invalid IL or missing references) //IL_01ed: Unknown result type (might be due to invalid IL or missing references) //IL_00ec: Unknown result type (might be due to invalid IL or missing references) //IL_00f1: Unknown result type (might be due to invalid IL or missing references) //IL_0116: Unknown result type (might be due to invalid IL or missing references) if ((!ObjectIsVisible && !AddCircleAnim) || (Object)(object)WaterMaterial == (Object)null) { return; } if (UpdateWaterMaterialPerFrame) { LuxWaterUtils.GetGersterWavesDescription(ref Description, WaterMaterial); } Vector3 position = trans.position; position -= Offset; if (AddCircleAnim) { position.x += Mathf.Sin(Time.time * Speed) * Time.deltaTime * Radius; position.z += Mathf.Cos(Time.time * Speed) * Time.deltaTime * Radius; } int num = ManagedWaterProjectors.Length; if (num > 0) { for (int i = 0; i != num; i++) { Vector3 position2 = ManagedWaterProjectors[i].position; position2.x = position.x; position2.z = position.z; ManagedWaterProjectors[i].position = position2; } } Offset = LuxWaterUtils.GetGestnerDisplacement(position, Description, TimeOffset); float magnitude = ((Vector3)(ref Offset)).magnitude; if (magnitude > MaxDisp) { MaxDisp = magnitude; } ref Vector3 offset = ref Offset; offset.x += Offset.x * Damping.x; ref Vector3 offset2 = ref Offset; offset2.y += Offset.y * Damping.y; ref Vector3 offset3 = ref Offset; offset3.z += Offset.z * Damping.z; trans.position = position + Offset; } } public class LuxWater_WaterVolumeListener : MonoBehaviour { private void OnEnable() { LuxWater_WaterVolume.OnEnterWaterVolume += Enter; LuxWater_WaterVolume.OnExitWaterVolume += Exit; } private void OnDisable() { LuxWater_WaterVolume.OnEnterWaterVolume -= Enter; LuxWater_WaterVolume.OnExitWaterVolume -= Exit; } private void Enter() { Debug.Log((object)"Entered."); } private void Exit() { Debug.Log((object)"Exited."); } } namespace LuxWater { [ExecuteInEditMode] [RequireComponent(typeof(Camera))] public class LuxWater_CameraDepthMode : MonoBehaviour { public bool GrabDepthTexture = false; private Camera cam; private Material CopyDepthMat; private RenderTextureFormat format; private Dictionary m_cmdBuffer = new Dictionary(); private bool CamCallBackAdded = false; [HideInInspector] public bool ShowShaderWarning = true; private void OnEnable() { //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_0020: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Invalid comparison between Unknown and I4 //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_0043: Expected O, but got Unknown //IL_0043: Unknown result type (might be due to invalid IL or missing references) //IL_004d: Expected O, but got Unknown //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0069: Expected O, but got Unknown //IL_006c: Unknown result type (might be due to invalid IL or missing references) //IL_0072: Unknown result type (might be due to invalid IL or missing references) //IL_008a: Unknown result type (might be due to invalid IL or missing references) //IL_0084: Unknown result type (might be due to invalid IL or missing references) //IL_009b: Unknown result type (might be due to invalid IL or missing references) cam = ((Component)this).GetComponent(); Camera obj = cam; obj.depthTextureMode = (DepthTextureMode)(obj.depthTextureMode | 1); if ((int)SystemInfo.graphicsDeviceType == 16) { Camera.onPreCull = (CameraCallback)Delegate.Combine((Delegate?)(object)Camera.onPreCull, (Delegate?)new CameraCallback(OnPrecull)); CamCallBackAdded = true; CopyDepthMat = new Material(Shader.Find("Hidden/Lux Water/CopyDepth")); format = (RenderTextureFormat)14; if (!SystemInfo.SupportsRenderTextureFormat(format)) { format = (RenderTextureFormat)15; } if (!SystemInfo.SupportsRenderTextureFormat(format)) { format = (RenderTextureFormat)2; } } } private void OnDisable() { //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Expected O, but got Unknown //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_002d: Expected O, but got Unknown if (CamCallBackAdded) { Camera.onPreCull = (CameraCallback)Delegate.Remove((Delegate?)(object)Camera.onPreCull, (Delegate?)new CameraCallback(OnPrecull)); foreach (KeyValuePair item in m_cmdBuffer) { if ((Object)(object)item.Key != (Object)null) { item.Key.RemoveCommandBuffer((CameraEvent)7, item.Value); } } m_cmdBuffer.Clear(); } ShowShaderWarning = true; } private void OnPrecull(Camera camera) { //IL_0013: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001b: Invalid comparison between Unknown and I4 //IL_0020: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Invalid comparison between Unknown and I4 //IL_0091: Unknown result type (might be due to invalid IL or missing references) //IL_009e: Unknown result type (might be due to invalid IL or missing references) //IL_00a5: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Expected O, but got Unknown if (!GrabDepthTexture) { return; } RenderingPath actualRenderingPath = cam.actualRenderingPath; if ((int)actualRenderingPath == 3 && (int)SystemInfo.graphicsDeviceType == 16) { if (!m_cmdBuffer.TryGetValue(camera, out var value)) { value = new CommandBuffer(); value.name = "Lux Water Grab Depth"; camera.AddCommandBuffer((CameraEvent)14, value); m_cmdBuffer[camera] = value; } value.Clear(); int pixelWidth = camera.pixelWidth; int pixelHeight = camera.pixelHeight; int num = Shader.PropertyToID("_Lux_GrabbedDepth"); value.GetTemporaryRT(num, pixelWidth, pixelHeight, 0, (FilterMode)0, format, (RenderTextureReadWrite)1); value.Blit(RenderTargetIdentifier.op_Implicit((BuiltinRenderTextureType)1), RenderTargetIdentifier.op_Implicit(num), CopyDepthMat, 0); value.ReleaseTemporaryRT(num); return; } GrabDepthTexture = false; foreach (KeyValuePair item in m_cmdBuffer) { if ((Object)(object)item.Key != (Object)null) { item.Key.RemoveCommandBuffer((CameraEvent)7, item.Value); } } m_cmdBuffer.Clear(); ShowShaderWarning = true; } } public class LuxWater_HelpBtn : PropertyAttribute { public string URL; public LuxWater_HelpBtn(string URL) { this.URL = URL; } } [CustomPropertyDrawer(typeof(LuxWater_HelpBtn))] public class LuxWater_HelpBtnDrawer : DecoratorDrawer { private static string baseURL = "https://docs.google.com/document/d/1NDtUpVBgd3UYEI8LRNI4teFF3qm38h-u3Az-ozaaOX0/view#heading="; private LuxWater_HelpBtn help => (LuxWater_HelpBtn)(object)((DecoratorDrawer)this).attribute; public override float GetHeight() { return ((DecoratorDrawer)this).GetHeight() + 2f; } public override void OnGUI(Rect position) { //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Expected O, but got Unknown //IL_003e: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Expected O, but got Unknown //IL_005a: Unknown result type (might be due to invalid IL or missing references) //IL_0066: Unknown result type (might be due to invalid IL or missing references) //IL_0072: Unknown result type (might be due to invalid IL or missing references) //IL_007e: Unknown result type (might be due to invalid IL or missing references) //IL_008a: Unknown result type (might be due to invalid IL or missing references) //IL_0096: Unknown result type (might be due to invalid IL or missing references) //IL_00c4: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) Color blue = default(Color); ((Color)(ref blue))..ctor(0.3f, 0.47f, 1f, 1f); if (!EditorGUIUtility.isProSkin) { blue = Color.blue; } GUIStyle val = new GUIStyle(EditorStyles.miniButton); val.padding = new RectOffset(0, 0, 2, 2); val.normal.background = null; val.normal.textColor = blue; val.onNormal.textColor = blue; val.active.textColor = blue; val.onActive.textColor = blue; val.focused.textColor = blue; val.onFocused.textColor = blue; ((Rect)(ref position)).x = ((Rect)(ref position)).x + ((Rect)(ref position)).width - 30f; ((Rect)(ref position)).width = 30f; if (GUI.Button(position, "Help", val)) { Application.OpenURL(baseURL + help.URL); } } } public class LuxWater_InfiniteOcean : MonoBehaviour { [Space(6f)] [LuxWater_HelpBtn("h.c1utuz9up55r")] public Camera MainCam; public float GridSize = 10f; private Transform trans; private Transform camTrans; private void OnEnable() { trans = ((Component)this).GetComponent(); } private void LateUpdate() { //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_006b: Unknown result type (might be due to invalid IL or missing references) //IL_0070: Unknown result type (might be due to invalid IL or missing references) //IL_0077: Unknown result type (might be due to invalid IL or missing references) //IL_007c: Unknown result type (might be due to invalid IL or missing references) //IL_0120: Unknown result type (might be due to invalid IL or missing references) if ((Object)(object)MainCam == (Object)null) { Camera main = Camera.main; if ((Object)(object)main == (Object)null) { return; } MainCam = main; } if ((Object)(object)camTrans == (Object)null) { camTrans = ((Component)MainCam).transform; } Vector3 position = camTrans.position; Vector3 position2 = trans.position; Vector3 lossyScale = trans.lossyScale; Vector2 val = default(Vector2); ((Vector2)(ref val))..ctor(GridSize * lossyScale.x, GridSize * lossyScale.z); float num = (float)Math.Round(position.x / val.x); float num2 = val.x * num; num = (float)Math.Round(position.z / val.y); float num3 = val.y * num; position2.x = num2 + position2.x % val.x; position2.z = num3 + position2.z % val.y; trans.position = position2; } } [ExecuteInEditMode] public class LuxWater_PlanarReflection : MonoBehaviour { public enum ReflectionResolution { Full = 1, Half = 2, Quarter = 4, Eighth = 8 } public enum NumberOfShadowCascades { One = 1, Two = 2, Four = 4 } [Space(6f)] [LuxWater_HelpBtn("h.5c3jy4qfh163")] public bool UpdateSceneView = true; [Space(5f)] public bool isMaster = false; public Material[] WaterMaterials; [Space(5f)] public LayerMask reflectionMask = LayerMask.op_Implicit(-1); public ReflectionResolution Resolution = ReflectionResolution.Half; public Color clearColor = Color.black; public bool reflectSkybox = true; [Space(5f)] public bool disablePixelLights = false; [Space(5f)] public bool renderShadows = true; public float shadowDistance = 0f; public NumberOfShadowCascades ShadowCascades = NumberOfShadowCascades.One; [Space(5f)] public float WaterSurfaceOffset = 0f; public float clipPlaneOffset = 0.07f; private string reflectionSampler = "_LuxWater_ReflectionTex"; private Vector3 m_Oldpos; private Camera m_ReflectionCamera; private Material m_SharedMaterial; private Dictionary m_HelperCameras; private RenderTexture m_reflectionMap; private void OnEnable() { ((Component)this).gameObject.layer = LayerMask.NameToLayer("Water"); Renderer component = ((Component)this).GetComponent(); if ((Object)(object)component != (Object)null) { m_SharedMaterial = ((Component)this).GetComponent().sharedMaterial; } } private void OnDisable() { if ((Object)(object)m_ReflectionCamera != (Object)null) { Object.DestroyImmediate((Object)(object)m_ReflectionCamera.targetTexture); Object.DestroyImmediate((Object)(object)m_ReflectionCamera); } if (m_HelperCameras != null) { m_HelperCameras.Clear(); } } private Camera CreateReflectionCameraFor(Camera cam) { //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Expected O, but got Unknown //IL_0089: Unknown result type (might be due to invalid IL or missing references) //IL_00ae: Unknown result type (might be due to invalid IL or missing references) string text = ((Object)((Component)this).gameObject).name + "Reflection" + ((Object)cam).name; GameObject val = GameObject.Find(text); if (!Object.op_Implicit((Object)(object)val)) { val = new GameObject(text, new Type[1] { typeof(Camera) }); ((Object)val).hideFlags = (HideFlags)61; } if (!Object.op_Implicit((Object)(object)val.GetComponent(typeof(Camera)))) { val.AddComponent(typeof(Camera)); } Camera component = val.GetComponent(); component.backgroundColor = clearColor; component.clearFlags = (CameraClearFlags)(reflectSkybox ? 1 : 2); SetStandardCameraParameter(component, reflectionMask); if (!Object.op_Implicit((Object)(object)component.targetTexture)) { component.targetTexture = CreateTextureFor(cam); } return component; } private void SetStandardCameraParameter(Camera cam, LayerMask mask) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) cam.cullingMask = LayerMask.op_Implicit(mask) & ~(1 << LayerMask.NameToLayer("Water")); cam.backgroundColor = Color.black; ((Behaviour)cam).enabled = false; } private RenderTexture CreateTextureFor(Camera cam) { //IL_002d: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Expected O, but got Unknown int num = Mathf.FloorToInt((float)(cam.pixelWidth / (int)Resolution)); int num2 = Mathf.FloorToInt((float)(cam.pixelHeight / (int)Resolution)); RenderTexture val = new RenderTexture(num, num2, 24); ((Object)val).hideFlags = (HideFlags)52; return val; } public void RenderHelpCameras(Camera currentCam) { if (m_HelperCameras == null) { m_HelperCameras = new Dictionary(); } if (!m_HelperCameras.ContainsKey(currentCam)) { m_HelperCameras.Add(currentCam, value: false); } if (((Object.op_Implicit((Object)(object)SceneView.currentDrawingSceneView) && (Object)(object)SceneView.currentDrawingSceneView.camera == (Object)(object)Camera.current) || !m_HelperCameras[currentCam]) && !((Object)currentCam).name.Contains("Reflection Probes")) { if (!Object.op_Implicit((Object)(object)m_ReflectionCamera)) { m_ReflectionCamera = CreateReflectionCameraFor(currentCam); } RenderReflectionFor(currentCam, m_ReflectionCamera); m_HelperCameras[currentCam] = true; } } public void LateUpdate() { if (m_HelperCameras != null) { m_HelperCameras.Clear(); } } public void WaterTileBeingRendered(Transform tr, Camera currentCam) { RenderHelpCameras(currentCam); if (Object.op_Implicit((Object)(object)m_ReflectionCamera) && Object.op_Implicit((Object)(object)m_SharedMaterial)) { m_SharedMaterial.SetTexture(reflectionSampler, (Texture)(object)m_ReflectionCamera.targetTexture); } } public void OnWillRenderObject() { WaterTileBeingRendered(((Component)this).transform, Camera.current); } private void RenderReflectionFor(Camera cam, Camera reflectCamera) { //IL_00a4: Unknown result type (might be due to invalid IL or missing references) //IL_00cd: Unknown result type (might be due to invalid IL or missing references) //IL_0102: Unknown result type (might be due to invalid IL or missing references) //IL_0107: Unknown result type (might be due to invalid IL or missing references) //IL_0124: Unknown result type (might be due to invalid IL or missing references) //IL_013a: Unknown result type (might be due to invalid IL or missing references) //IL_0162: Unknown result type (might be due to invalid IL or missing references) //IL_0167: Unknown result type (might be due to invalid IL or missing references) //IL_016c: Unknown result type (might be due to invalid IL or missing references) //IL_0171: Unknown result type (might be due to invalid IL or missing references) //IL_018c: Unknown result type (might be due to invalid IL or missing references) //IL_0191: Unknown result type (might be due to invalid IL or missing references) //IL_0193: Unknown result type (might be due to invalid IL or missing references) //IL_0195: Unknown result type (might be due to invalid IL or missing references) //IL_01c4: Unknown result type (might be due to invalid IL or missing references) //IL_01c9: Unknown result type (might be due to invalid IL or missing references) //IL_01cb: Unknown result type (might be due to invalid IL or missing references) //IL_01cd: Unknown result type (might be due to invalid IL or missing references) //IL_01cf: Unknown result type (might be due to invalid IL or missing references) //IL_01d4: Unknown result type (might be due to invalid IL or missing references) //IL_01dd: Unknown result type (might be due to invalid IL or missing references) //IL_01e2: Unknown result type (might be due to invalid IL or missing references) //IL_01ea: Unknown result type (might be due to invalid IL or missing references) //IL_01ef: Unknown result type (might be due to invalid IL or missing references) //IL_01f4: Unknown result type (might be due to invalid IL or missing references) //IL_01f8: Unknown result type (might be due to invalid IL or missing references) //IL_01fd: Unknown result type (might be due to invalid IL or missing references) //IL_01ff: Unknown result type (might be due to invalid IL or missing references) //IL_020b: Unknown result type (might be due to invalid IL or missing references) //IL_020d: Unknown result type (might be due to invalid IL or missing references) //IL_0214: Unknown result type (might be due to invalid IL or missing references) //IL_0219: Unknown result type (might be due to invalid IL or missing references) //IL_021c: Unknown result type (might be due to invalid IL or missing references) //IL_0221: Unknown result type (might be due to invalid IL or missing references) //IL_0223: Unknown result type (might be due to invalid IL or missing references) //IL_0225: Unknown result type (might be due to invalid IL or missing references) //IL_0227: Unknown result type (might be due to invalid IL or missing references) //IL_022c: Unknown result type (might be due to invalid IL or missing references) //IL_022f: Unknown result type (might be due to invalid IL or missing references) //IL_023c: Unknown result type (might be due to invalid IL or missing references) //IL_0249: Unknown result type (might be due to invalid IL or missing references) //IL_024e: Unknown result type (might be due to invalid IL or missing references) //IL_026c: Unknown result type (might be due to invalid IL or missing references) if (!Object.op_Implicit((Object)(object)reflectCamera) || (Object.op_Implicit((Object)(object)m_SharedMaterial) && !m_SharedMaterial.HasProperty(reflectionSampler))) { return; } int num = Mathf.FloorToInt((float)(cam.pixelWidth / (int)Resolution)); int num2 = Mathf.FloorToInt((float)(cam.pixelHeight / (int)Resolution)); if (((Texture)reflectCamera.targetTexture).width != num || ((Texture)reflectCamera.targetTexture).height != num2) { Object.DestroyImmediate((Object)(object)reflectCamera.targetTexture); reflectCamera.targetTexture = CreateTextureFor(cam); } reflectCamera.cullingMask = LayerMask.op_Implicit(reflectionMask) & ~(1 << LayerMask.NameToLayer("Water")); SaneCameraSettings(reflectCamera); reflectCamera.backgroundColor = clearColor; reflectCamera.clearFlags = (CameraClearFlags)(reflectSkybox ? 1 : 2); GL.invertCulling = true; Transform transform = ((Component)this).transform; Vector3 eulerAngles = ((Component)cam).transform.eulerAngles; ((Component)reflectCamera).transform.eulerAngles = new Vector3(0f - eulerAngles.x, eulerAngles.y, eulerAngles.z); ((Component)reflectCamera).transform.position = ((Component)cam).transform.position; reflectCamera.orthographic = cam.orthographic; reflectCamera.orthographicSize = cam.orthographicSize; Vector3 position = ((Component)transform).transform.position; position.y = transform.position.y + WaterSurfaceOffset; Vector3 up = ((Component)transform).transform.up; float num3 = 0f - Vector3.Dot(up, position) - clipPlaneOffset; Vector4 plane = default(Vector4); ((Vector4)(ref plane))..ctor(up.x, up.y, up.z, num3); Matrix4x4 val = Matrix4x4.zero; val = CalculateReflectionMatrix(val, plane); m_Oldpos = ((Component)cam).transform.position; Vector3 position2 = ((Matrix4x4)(ref val)).MultiplyPoint(m_Oldpos); reflectCamera.worldToCameraMatrix = cam.worldToCameraMatrix * val; Vector4 clipPlane = CameraSpacePlane(reflectCamera, position, up, 1f); Matrix4x4 projectionMatrix = cam.projectionMatrix; projectionMatrix = CalculateObliqueMatrix(projectionMatrix, clipPlane); reflectCamera.projectionMatrix = projectionMatrix; ((Component)reflectCamera).transform.position = position2; Vector3 eulerAngles2 = ((Component)cam).transform.eulerAngles; ((Component)reflectCamera).transform.eulerAngles = new Vector3(0f - eulerAngles2.x, eulerAngles2.y, eulerAngles2.z); int pixelLightCount = QualitySettings.pixelLightCount; if (disablePixelLights) { QualitySettings.pixelLightCount = 0; } float num4 = QualitySettings.shadowDistance; int shadowCascades = QualitySettings.shadowCascades; if (!renderShadows) { QualitySettings.shadowDistance = 0f; } else if (shadowDistance > 0f) { QualitySettings.shadowDistance = shadowDistance; } QualitySettings.shadowCascades = (int)ShadowCascades; reflectCamera.Render(); GL.invertCulling = false; if (disablePixelLights) { QualitySettings.pixelLightCount = pixelLightCount; } if (!renderShadows || shadowDistance > 0f) { QualitySettings.shadowDistance = num4; } QualitySettings.shadowCascades = shadowCascades; if (isMaster) { for (int i = 0; i < WaterMaterials.Length; i++) { WaterMaterials[i].SetTexture(reflectionSampler, (Texture)(object)reflectCamera.targetTexture); } } } private void SaneCameraSettings(Camera helperCam) { //IL_0009: Unknown result type (might be due to invalid IL or missing references) helperCam.depthTextureMode = (DepthTextureMode)0; helperCam.backgroundColor = Color.black; helperCam.clearFlags = (CameraClearFlags)2; helperCam.renderingPath = (RenderingPath)1; } private static Matrix4x4 CalculateObliqueMatrix(Matrix4x4 projection, Vector4 clipPlane) { //IL_0003: Unknown result type (might be due to invalid IL or missing references) //IL_002a: Unknown result type (might be due to invalid IL or missing references) //IL_002f: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_003c: Unknown result type (might be due to invalid IL or missing references) //IL_0043: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_00ad: Unknown result type (might be due to invalid IL or missing references) //IL_00ae: Unknown result type (might be due to invalid IL or missing references) //IL_00b4: Unknown result type (might be due to invalid IL or missing references) Vector4 val = ((Matrix4x4)(ref projection)).inverse * new Vector4(Sgn(clipPlane.x), Sgn(clipPlane.y), 1f, 1f); Vector4 val2 = clipPlane * (2f / Vector4.Dot(clipPlane, val)); ((Matrix4x4)(ref projection))[2] = val2.x - ((Matrix4x4)(ref projection))[3]; ((Matrix4x4)(ref projection))[6] = val2.y - ((Matrix4x4)(ref projection))[7]; ((Matrix4x4)(ref projection))[10] = val2.z - ((Matrix4x4)(ref projection))[11]; ((Matrix4x4)(ref projection))[14] = val2.w - ((Matrix4x4)(ref projection))[15]; return projection; } private static Matrix4x4 CalculateReflectionMatrix(Matrix4x4 reflectionMat, Vector4 plane) { //IL_01ab: Unknown result type (might be due to invalid IL or missing references) //IL_01ac: Unknown result type (might be due to invalid IL or missing references) //IL_01b2: Unknown result type (might be due to invalid IL or missing references) reflectionMat.m00 = 1f - 2f * ((Vector4)(ref plane))[0] * ((Vector4)(ref plane))[0]; reflectionMat.m01 = -2f * ((Vector4)(ref plane))[0] * ((Vector4)(ref plane))[1]; reflectionMat.m02 = -2f * ((Vector4)(ref plane))[0] * ((Vector4)(ref plane))[2]; reflectionMat.m03 = -2f * ((Vector4)(ref plane))[3] * ((Vector4)(ref plane))[0]; reflectionMat.m10 = -2f * ((Vector4)(ref plane))[1] * ((Vector4)(ref plane))[0]; reflectionMat.m11 = 1f - 2f * ((Vector4)(ref plane))[1] * ((Vector4)(ref plane))[1]; reflectionMat.m12 = -2f * ((Vector4)(ref plane))[1] * ((Vector4)(ref plane))[2]; reflectionMat.m13 = -2f * ((Vector4)(ref plane))[3] * ((Vector4)(ref plane))[1]; reflectionMat.m20 = -2f * ((Vector4)(ref plane))[2] * ((Vector4)(ref plane))[0]; reflectionMat.m21 = -2f * ((Vector4)(ref plane))[2] * ((Vector4)(ref plane))[1]; reflectionMat.m22 = 1f - 2f * ((Vector4)(ref plane))[2] * ((Vector4)(ref plane))[2]; reflectionMat.m23 = -2f * ((Vector4)(ref plane))[3] * ((Vector4)(ref plane))[2]; reflectionMat.m30 = 0f; reflectionMat.m31 = 0f; reflectionMat.m32 = 0f; reflectionMat.m33 = 1f; return reflectionMat; } private static float Sgn(float a) { if (a > 0f) { return 1f; } if (a < 0f) { return -1f; } return 0f; } private Vector4 CameraSpacePlane(Camera cam, Vector3 pos, Vector3 normal, float sideSign) { //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_0009: Unknown result type (might be due to invalid IL or missing references) //IL_000e: Unknown result type (might be due to invalid IL or missing references) //IL_0013: Unknown result type (might be due to invalid IL or missing references) //IL_0015: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0026: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0030: Unknown result type (might be due to invalid IL or missing references) //IL_0037: Unknown result type (might be due to invalid IL or missing references) //IL_003c: Unknown result type (might be due to invalid IL or missing references) //IL_0052: Unknown result type (might be due to invalid IL or missing references) //IL_0053: Unknown result type (might be due to invalid IL or missing references) //IL_005a: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0066: Unknown result type (might be due to invalid IL or missing references) Vector3 val = pos + normal * clipPlaneOffset; Matrix4x4 worldToCameraMatrix = cam.worldToCameraMatrix; Vector3 val2 = ((Matrix4x4)(ref worldToCameraMatrix)).MultiplyPoint(val); Vector3 val3 = ((Matrix4x4)(ref worldToCameraMatrix)).MultiplyVector(normal); Vector3 val4 = ((Vector3)(ref val3)).normalized * sideSign; return new Vector4(val4.x, val4.y, val4.z, 0f - Vector3.Dot(val2, val4)); } } [ExecuteInEditMode] public class LuxWater_PlanarWaterTile : MonoBehaviour { [Space(6f)] [LuxWater_HelpBtn("h.nu6w5ylbucb7")] public LuxWater_PlanarReflection reflection; public void OnEnable() { AcquireComponents(); } private void AcquireComponents() { if (!Object.op_Implicit((Object)(object)reflection)) { if (Object.op_Implicit((Object)(object)((Component)this).transform.parent)) { reflection = ((Component)((Component)this).transform.parent).GetComponent(); } else { reflection = ((Component)((Component)this).transform).GetComponent(); } } } public void Update() { AcquireComponents(); } public void OnWillRenderObject() { if (Object.op_Implicit((Object)(object)reflection)) { reflection.WaterTileBeingRendered(((Component)this).transform, Camera.current); } } } public class LuxWater_Projector : MonoBehaviour { public enum ProjectorType { FoamProjector, NormalProjector } [Space(8f)] public ProjectorType Type = ProjectorType.FoamProjector; [NonSerialized] public static List FoamProjectors = new List(); [NonSerialized] public static List NormalProjectors = new List(); [NonSerialized] public Renderer m_Rend; [NonSerialized] public Material m_Mat; private bool added = false; private Vector3 origPos; private void Update() { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) Vector3 position = ((Component)this).transform.position; position.y = origPos.y; } private void OnEnable() { //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) origPos = ((Component)this).transform.position; Renderer component = ((Component)this).GetComponent(); if ((Object)(object)component != (Object)null) { m_Rend = ((Component)this).GetComponent(); m_Mat = m_Rend.sharedMaterials[0]; m_Rend.enabled = false; if (Type == ProjectorType.FoamProjector) { FoamProjectors.Add(this); } else { NormalProjectors.Add(this); } added = true; } } private void OnDisable() { if (added) { if (Type == ProjectorType.FoamProjector) { FoamProjectors.Remove(this); } else { NormalProjectors.Remove(this); } m_Rend.enabled = true; } } } [RequireComponent(typeof(Camera))] [ExecuteInEditMode] public class LuxWater_ProjectorRenderer : MonoBehaviour { public enum BufferResolution { Full = 1, Half = 2, Quarter = 4, Eighth = 8 } [Space(8f)] public BufferResolution FoamBufferResolution = BufferResolution.Full; public BufferResolution NormalBufferResolution = BufferResolution.Full; [Space(2f)] [Header("Debug")] [Space(4f)] public bool DebugFoamBuffer = false; public bool DebugNormalBuffer = false; public bool DebugStats = false; private int drawnFoamProjectors = 0; private int drawnNormalProjectors = 0; private static CommandBuffer cb_Foam; private static CommandBuffer cb_Normals; private Camera cam; private Transform camTransform; private RenderTexture ProjectedFoam; private RenderTexture ProjectedNormals; private Texture2D defaultBump; private Bounds tempBounds; private int _LuxWater_FoamOverlayPID; private int _LuxWater_NormalOverlayPID; private Plane[] frustumPlanes = (Plane[])(object)new Plane[6]; private Material DebugMat; private Material DebugNormalMat; private void OnEnable() { //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_002b: Expected O, but got Unknown //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Expected O, but got Unknown _LuxWater_FoamOverlayPID = Shader.PropertyToID("_LuxWater_FoamOverlay"); _LuxWater_NormalOverlayPID = Shader.PropertyToID("_LuxWater_NormalOverlay"); cb_Foam = new CommandBuffer(); cb_Foam.name = "Lux Water: Foam Overlay Buffer"; cb_Normals = new CommandBuffer(); cb_Normals.name = "Lux Water: Normal Overlay Buffer"; } private void OnDisable() { if ((Object)(object)ProjectedFoam != (Object)null) { Object.DestroyImmediate((Object)(object)ProjectedFoam); } if ((Object)(object)ProjectedNormals != (Object)null) { Object.DestroyImmediate((Object)(object)ProjectedNormals); } if ((Object)(object)defaultBump != (Object)null) { Object.DestroyImmediate((Object)(object)defaultBump); } if ((Object)(object)DebugMat != (Object)null) { Object.DestroyImmediate((Object)(object)DebugMat); } if (cb_Foam != null && cb_Foam.sizeInBytes > 0) { cb_Foam.Clear(); cb_Foam.Dispose(); } if (cb_Normals != null && cb_Normals.sizeInBytes > 0) { cb_Normals.Clear(); cb_Normals.Dispose(); } Shader.DisableKeyword("USINGWATERPROJECTORS"); } private void OnPreCull() { //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_002d: Expected O, but got Unknown //IL_0052: Unknown result type (might be due to invalid IL or missing references) //IL_0137: Unknown result type (might be due to invalid IL or missing references) //IL_013c: Unknown result type (might be due to invalid IL or missing references) //IL_0143: Unknown result type (might be due to invalid IL or missing references) //IL_0148: Unknown result type (might be due to invalid IL or missing references) //IL_014a: Unknown result type (might be due to invalid IL or missing references) //IL_014b: Unknown result type (might be due to invalid IL or missing references) //IL_014d: Unknown result type (might be due to invalid IL or missing references) //IL_0152: Unknown result type (might be due to invalid IL or missing references) //IL_0174: Unknown result type (might be due to invalid IL or missing references) //IL_01b6: Unknown result type (might be due to invalid IL or missing references) //IL_01c0: Expected O, but got Unknown //IL_01fc: Unknown result type (might be due to invalid IL or missing references) //IL_0203: Unknown result type (might be due to invalid IL or missing references) //IL_021e: Unknown result type (might be due to invalid IL or missing references) //IL_0243: Unknown result type (might be due to invalid IL or missing references) //IL_01ec: Unknown result type (might be due to invalid IL or missing references) //IL_01f6: Expected O, but got Unknown //IL_0278: Unknown result type (might be due to invalid IL or missing references) //IL_027d: Unknown result type (might be due to invalid IL or missing references) //IL_0289: Unknown result type (might be due to invalid IL or missing references) //IL_0325: Unknown result type (might be due to invalid IL or missing references) //IL_032f: Expected O, but got Unknown //IL_037b: Unknown result type (might be due to invalid IL or missing references) //IL_03a0: Unknown result type (might be due to invalid IL or missing references) //IL_035b: Unknown result type (might be due to invalid IL or missing references) //IL_0365: Expected O, but got Unknown //IL_03d5: Unknown result type (might be due to invalid IL or missing references) //IL_03da: Unknown result type (might be due to invalid IL or missing references) //IL_03e6: Unknown result type (might be due to invalid IL or missing references) if (!Application.isPlaying) { if ((Object)(object)defaultBump == (Object)null) { defaultBump = new Texture2D(1, 1, (TextureFormat)4, false); Texture2D obj = defaultBump; Color val = default(Color); ((Color)(ref val))..ctor(0.5f, 0.5f, 1f, 0.5f); obj.SetPixel(0, 0, ((Color)(ref val)).gamma); defaultBump.Apply(false); } Shader.SetGlobalTexture(_LuxWater_NormalOverlayPID, (Texture)(object)defaultBump); Shader.SetGlobalTexture(_LuxWater_FoamOverlayPID, (Texture)(object)Texture2D.blackTexture); return; } cam = ((Component)this).GetComponent(); if ((Object)(object)SceneView.currentDrawingSceneView != (Object)null && (Object)(object)SceneView.currentDrawingSceneView.camera == (Object)(object)cam) { return; } int count = LuxWater_Projector.FoamProjectors.Count; int count2 = LuxWater_Projector.NormalProjectors.Count; if (count + count2 == 0) { if (cb_Foam != null) { cb_Foam.Clear(); } if (cb_Normals != null) { cb_Normals.Clear(); } Shader.DisableKeyword("USINGWATERPROJECTORS"); return; } Shader.EnableKeyword("USINGWATERPROJECTORS"); Matrix4x4 projectionMatrix = cam.projectionMatrix; Matrix4x4 worldToCameraMatrix = cam.worldToCameraMatrix; Matrix4x4 worldToProjectMatrix = projectionMatrix * worldToCameraMatrix; int pixelWidth = cam.pixelWidth; int pixelHeight = cam.pixelHeight; GeomUtil.CalculateFrustumPlanes(frustumPlanes, worldToProjectMatrix); int num = Mathf.FloorToInt((float)(pixelWidth / (int)FoamBufferResolution)); int num2 = Mathf.FloorToInt((float)(pixelHeight / (int)FoamBufferResolution)); if (!Object.op_Implicit((Object)(object)ProjectedFoam)) { ProjectedFoam = new RenderTexture(num, num2, 0, (RenderTextureFormat)0, (RenderTextureReadWrite)1); } else if (((Texture)ProjectedFoam).width != num) { Object.DestroyImmediate((Object)(object)ProjectedFoam); ProjectedFoam = new RenderTexture(num, num2, 0, (RenderTextureFormat)0, (RenderTextureReadWrite)1); } GL.PushMatrix(); GL.modelview = worldToCameraMatrix; GL.LoadProjectionMatrix(projectionMatrix); cb_Foam.Clear(); cb_Foam.SetRenderTarget(RenderTargetIdentifier.op_Implicit((Texture)(object)ProjectedFoam)); cb_Foam.ClearRenderTarget(true, true, new Color(0f, 0f, 0f, 0f), 1f); drawnFoamProjectors = 0; for (int i = 0; i < count; i++) { LuxWater_Projector luxWater_Projector = LuxWater_Projector.FoamProjectors[i]; tempBounds = luxWater_Projector.m_Rend.bounds; if (GeometryUtility.TestPlanesAABB(frustumPlanes, tempBounds)) { cb_Foam.DrawRenderer(luxWater_Projector.m_Rend, luxWater_Projector.m_Mat); drawnFoamProjectors++; } } Graphics.ExecuteCommandBuffer(cb_Foam); Shader.SetGlobalTexture(_LuxWater_FoamOverlayPID, (Texture)(object)ProjectedFoam); num = Mathf.FloorToInt((float)(pixelWidth / (int)NormalBufferResolution)); num2 = Mathf.FloorToInt((float)(pixelHeight / (int)NormalBufferResolution)); if (!Object.op_Implicit((Object)(object)ProjectedNormals)) { ProjectedNormals = new RenderTexture(num, num2, 0, (RenderTextureFormat)2, (RenderTextureReadWrite)1); } else if (((Texture)ProjectedNormals).width != num) { Object.DestroyImmediate((Object)(object)ProjectedNormals); ProjectedNormals = new RenderTexture(num, num2, 0, (RenderTextureFormat)2, (RenderTextureReadWrite)1); } cb_Normals.Clear(); cb_Normals.SetRenderTarget(RenderTargetIdentifier.op_Implicit((Texture)(object)ProjectedNormals)); cb_Normals.ClearRenderTarget(true, true, new Color(0f, 0f, 0f, 0f), 1f); drawnNormalProjectors = 0; for (int j = 0; j < count2; j++) { LuxWater_Projector luxWater_Projector2 = LuxWater_Projector.NormalProjectors[j]; tempBounds = luxWater_Projector2.m_Rend.bounds; if (GeometryUtility.TestPlanesAABB(frustumPlanes, tempBounds)) { cb_Normals.DrawRenderer(luxWater_Projector2.m_Rend, luxWater_Projector2.m_Mat); drawnNormalProjectors++; } } Graphics.ExecuteCommandBuffer(cb_Normals); Shader.SetGlobalTexture(_LuxWater_NormalOverlayPID, (Texture)(object)ProjectedNormals); GL.PopMatrix(); } private void OnDrawGizmos() { //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Expected O, but got Unknown //IL_005d: Unknown result type (might be due to invalid IL or missing references) //IL_0067: Expected O, but got Unknown //IL_00b8: Unknown result type (might be due to invalid IL or missing references) //IL_0126: Unknown result type (might be due to invalid IL or missing references) Camera component = ((Component)this).GetComponent(); int num = 0; int num2 = (int)(component.aspect * 128f); if ((Object)(object)DebugMat == (Object)null) { DebugMat = new Material(Shader.Find("Hidden/LuxWater_Debug")); } if ((Object)(object)DebugNormalMat == (Object)null) { DebugNormalMat = new Material(Shader.Find("Hidden/LuxWater_DebugNormals")); } if (DebugFoamBuffer) { if ((Object)(object)ProjectedFoam == (Object)null) { return; } GL.PushMatrix(); GL.LoadPixelMatrix(0f, (float)Screen.width, (float)Screen.height, 0f); Graphics.DrawTexture(new Rect((float)num, 0f, (float)num2, 128f), (Texture)(object)ProjectedFoam, DebugMat); GL.PopMatrix(); num = num2; } if (DebugNormalBuffer && !((Object)(object)ProjectedNormals == (Object)null)) { GL.PushMatrix(); GL.LoadPixelMatrix(0f, (float)Screen.width, (float)Screen.height, 0f); Graphics.DrawTexture(new Rect((float)num, 0f, (float)num2, 128f), (Texture)(object)ProjectedNormals, DebugNormalMat); GL.PopMatrix(); } } private void OnGUI() { //IL_002d: Unknown result type (might be due to invalid IL or missing references) //IL_0032: Unknown result type (might be due to invalid IL or missing references) //IL_0057: Unknown result type (might be due to invalid IL or missing references) //IL_00a7: Unknown result type (might be due to invalid IL or missing references) //IL_00ed: Unknown result type (might be due to invalid IL or missing references) if (DebugStats) { int count = LuxWater_Projector.FoamProjectors.Count; int count2 = LuxWater_Projector.NormalProjectors.Count; TextAnchor alignment = GUI.skin.label.alignment; GUI.skin.label.alignment = (TextAnchor)3; GUI.Label(new Rect(10f, 0f, 300f, 40f), "Foam Projectors [Registered] " + count + " [Drawn] " + drawnFoamProjectors); GUI.Label(new Rect(10f, 18f, 300f, 40f), "Normal Projectors [Registered] " + count2 + " [Drawn] " + drawnNormalProjectors); GUI.skin.label.alignment = alignment; } } } public static class GeomUtil { private static Action _calculateFrustumPlanes_Imp; public static void CalculateFrustumPlanes(Plane[] planes, Matrix4x4 worldToProjectMatrix) { //IL_008c: Unknown result type (might be due to invalid IL or missing references) if (_calculateFrustumPlanes_Imp == null) { MethodInfo method = typeof(GeometryUtility).GetMethod("Internal_ExtractPlanes", BindingFlags.Static | BindingFlags.NonPublic, null, new Type[2] { typeof(Plane[]), typeof(Matrix4x4) }, null); if ((object)method == null) { throw new Exception("Failed to reflect internal method. Your Unity version may not contain the presumed named method in GeometryUtility."); } _calculateFrustumPlanes_Imp = Delegate.CreateDelegate(typeof(Action), method) as Action; if (_calculateFrustumPlanes_Imp == null) { throw new Exception("Failed to reflect internal method. Your Unity version may not contain the presumed named method in GeometryUtility."); } } _calculateFrustumPlanes_Imp(planes, worldToProjectMatrix); } } [RequireComponent(typeof(Camera))] public class LuxWater_UnderWaterBlur : MonoBehaviour { [Space(6f)] [LuxWater_HelpBtn("h.3a2840a53u5j")] public float blurSpread = 0.6f; public int blurDownSample = 4; public int blurIterations = 4; private Vector2[] m_offsets = (Vector2[])(object)new Vector2[4]; private Material blurMaterial; private Material blitMaterial; private LuxWater_UnderWaterRendering waterrendermanager; private bool doBlur = false; private bool initBlur = true; private void OnEnable() { //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Expected O, but got Unknown //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_002b: Expected O, but got Unknown blurMaterial = new Material(Shader.Find("Hidden/Lux Water/BlurEffectConeTap")); blitMaterial = new Material(Shader.Find("Hidden/Lux Water/UnderWaterPost")); ((MonoBehaviour)this).Invoke("GetWaterrendermanagerInstance", 0f); } private void OnDisable() { if (Object.op_Implicit((Object)(object)blurMaterial)) { Object.DestroyImmediate((Object)(object)blurMaterial); } if (Object.op_Implicit((Object)(object)blitMaterial)) { Object.DestroyImmediate((Object)(object)blitMaterial); } } private void GetWaterrendermanagerInstance() { waterrendermanager = LuxWater_UnderWaterRendering.instance; } private void OnRenderImage(RenderTexture src, RenderTexture dest) { if ((Object)(object)waterrendermanager == (Object)null) { Graphics.Blit((Texture)(object)src, dest); return; } doBlur = waterrendermanager.activeWaterVolume > -1; if (doBlur || initBlur) { initBlur = false; int num = ((Texture)src).width / blurDownSample; int num2 = ((Texture)src).height / blurDownSample; RenderTexture val = RenderTexture.GetTemporary(num, num2, 0, (RenderTextureFormat)9); DownSample(src, val); for (int i = 0; i < blurIterations; i++) { RenderTexture temporary = RenderTexture.GetTemporary(num, num2, 0, (RenderTextureFormat)9); FourTapCone(val, temporary, i); RenderTexture.ReleaseTemporary(val); val = temporary; } Shader.SetGlobalTexture("_UnderWaterTex", (Texture)(object)val); Graphics.Blit((Texture)(object)src, dest, blitMaterial, 1); RenderTexture.ReleaseTemporary(val); } else { Graphics.Blit((Texture)(object)src, dest); } } private void FourTapCone(RenderTexture source, RenderTexture dest, int iteration) { float num = 0.5f + (float)iteration * blurSpread; m_offsets[0].x = 0f - num; m_offsets[0].y = 0f - num; m_offsets[1].x = 0f - num; m_offsets[1].y = num; m_offsets[2].x = num; m_offsets[2].y = num; m_offsets[3].x = num; m_offsets[3].y = 0f - num; if (iteration == 0) { Graphics.BlitMultiTap((Texture)(object)source, dest, blurMaterial, m_offsets); } else { Graphics.BlitMultiTap((Texture)(object)source, dest, blurMaterial, m_offsets); } } private void DownSample(RenderTexture source, RenderTexture dest) { float num = 1f; m_offsets[0].x = 0f - num; m_offsets[0].y = 0f - num; m_offsets[1].x = 0f - num; m_offsets[1].y = num; m_offsets[2].x = num; m_offsets[2].y = num; m_offsets[3].x = num; m_offsets[3].y = 0f - num; Graphics.BlitMultiTap((Texture)(object)source, dest, blurMaterial, m_offsets); } } [RequireComponent(typeof(Camera))] public class LuxWater_UnderWaterRendering : MonoBehaviour { public static LuxWater_UnderWaterRendering instance; [Space(6f)] [LuxWater_HelpBtn("h.d0q6uguuxpy")] public Transform Sun; [Space(4f)] public bool FindSunOnEnable = false; public string SunGoName = ""; public string SunTagName = ""; private Light SunLight; [Space(2f)] [Header("Deep Water Lighting")] [Space(4f)] public bool EnableDeepwaterLighting = false; public float DefaultWaterSurfacePosition = 0f; public float DirectionalLightingFadeRange = 64f; public float FogLightingFadeRange = 64f; [Space(2f)] [Header("Advanced Deferred Fog")] [Space(4f)] public bool EnableAdvancedDeferredFog = false; public float FogDepthShift = 1f; public float FogEdgeBlending = 0.125f; [NonSerialized] [Space(8f)] public int activeWaterVolume = -1; [NonSerialized] public List activeWaterVolumeCameras = new List(); [NonSerialized] public float activeGridSize = 0f; [NonSerialized] public float WaterSurfacePos = 0f; [NonSerialized] [Space(8f)] public List RegisteredWaterVolumesIDs = new List(); [NonSerialized] public List RegisteredWaterVolumes = new List(); private List WaterMeshes = new List(); private List WaterTransforms = new List(); private List WaterMaterials = new List(); private List WaterIsOnScreen = new List(); private List WaterUsesSlidingVolume = new List(); private RenderTexture UnderWaterMask; [Space(2f)] [Header("Managed transparent Materials")] [Space(4f)] public List m_aboveWatersurface = new List(); public List m_belowWatersurface = new List(); [Space(2f)] [Header("Optimize")] [Space(4f)] public ShaderVariantCollection PrewarmedShaders; public int ListCapacity = 10; [Space(2f)] [Header("Debug")] [Space(4f)] public bool enableDebug = false; [Space(8f)] private Material mat; private Material blurMaterial; private Material blitMaterial; private Camera cam; private bool UnderwaterIsSetUp = false; private Transform camTransform; private Matrix4x4 frustumCornersArray = Matrix4x4.identity; private SphericalHarmonicsL2 ambientProbe; private Vector3[] directions = (Vector3[])(object)new Vector3[1] { new Vector3(0f, 1f, 0f) }; private Color[] AmbientLightingSamples = (Color[])(object)new Color[1]; private bool DoUnderWaterRendering = false; private Matrix4x4 camProj; private Vector3[] frustumCorners = (Vector3[])(object)new Vector3[4]; private float Projection; private bool islinear = false; private Matrix4x4 WatervolumeMatrix; private int UnderWaterMaskPID; private int Lux_FrustumCornersWSPID; private int Lux_CameraWSPID; private int GerstnerEnabledPID; private int LuxWaterMask_GerstnerVertexIntensityPID; private int GerstnerVertexIntensityPID; private int LuxWaterMask_GAmplitudePID; private int GAmplitudePID; private int LuxWaterMask_GFinalFrequencyPID; private int GFinalFrequencyPID; private int LuxWaterMask_GSteepnessPID; private int GSteepnessPID; private int LuxWaterMask_GFinalSpeedPID; private int GFinalSpeedPID; private int LuxWaterMask_GDirectionABPID; private int GDirectionABPID; private int LuxWaterMask_GDirectionCDPID; private int GDirectionCDPID; private int LuxWaterMask_GerstnerSecondaryWaves; private int GerstnerSecondaryWaves; private int Lux_UnderWaterAmbientSkyLightPID; private int Lux_UnderWaterSunColorPID; private int Lux_UnderWaterSunDirPID; private int Lux_UnderWaterSunDirViewSpacePID; private int Lux_EdgeLengthPID; private int Lux_CausticsEnabledPID; private int Lux_CausticModePID; private int Lux_UnderWaterFogColorPID; private int Lux_UnderWaterFogDensityPID; private int Lux_UnderWaterFogAbsorptionCancellationPID; private int Lux_UnderWaterAbsorptionHeightPID; private int Lux_UnderWaterAbsorptionMaxHeightPID; private int Lux_MaxDirLightDepthPID; private int Lux_MaxFogLightDepthPID; private int Lux_UnderWaterAbsorptionDepthPID; private int Lux_UnderWaterAbsorptionColorStrengthPID; private int Lux_UnderWaterAbsorptionStrengthPID; private int Lux_UnderWaterUnderwaterScatteringPowerPID; private int Lux_UnderWaterUnderwaterScatteringIntensityPID; private int Lux_UnderWaterUnderwaterScatteringColorPID; private int Lux_UnderWaterUnderwaterScatteringOcclusionPID; private int Lux_UnderWaterCausticsPID; private int Lux_UnderWaterDeferredFogParams; private int CausticTexPID; private void OnEnable() { //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Expected O, but got Unknown //IL_0046: Unknown result type (might be due to invalid IL or missing references) //IL_0050: Expected O, but got Unknown //IL_005b: Unknown result type (might be due to invalid IL or missing references) //IL_0065: Expected O, but got Unknown //IL_008b: Unknown result type (might be due to invalid IL or missing references) //IL_0091: Unknown result type (might be due to invalid IL or missing references) //IL_03fa: Unknown result type (might be due to invalid IL or missing references) //IL_0400: Invalid comparison between Unknown and I4 if ((Object)(object)instance != (Object)null) { Object.Destroy((Object)(object)this); } else { instance = this; } mat = new Material(Shader.Find("Hidden/Lux Water/WaterMask")); blurMaterial = new Material(Shader.Find("Hidden/Lux Water/BlurEffectConeTap")); blitMaterial = new Material(Shader.Find("Hidden/Lux Water/UnderWaterPost")); if ((Object)(object)cam == (Object)null) { cam = ((Component)this).GetComponent(); } Camera obj = cam; obj.depthTextureMode = (DepthTextureMode)(obj.depthTextureMode | 1); camTransform = ((Component)cam).transform; if (FindSunOnEnable) { if (SunGoName != "") { Sun = GameObject.Find(SunGoName).transform; } else if (SunTagName != "") { Sun = GameObject.FindWithTag(SunTagName).transform; } } if (SystemInfo.usesReversedZBuffer) { Projection = -1f; } else { Projection = 1f; } UnderWaterMaskPID = Shader.PropertyToID("_UnderWaterMask"); Lux_FrustumCornersWSPID = Shader.PropertyToID("_Lux_FrustumCornersWS"); Lux_CameraWSPID = Shader.PropertyToID("_Lux_CameraWS"); GerstnerEnabledPID = Shader.PropertyToID("_GerstnerEnabled"); LuxWaterMask_GerstnerVertexIntensityPID = Shader.PropertyToID("_LuxWaterMask_GerstnerVertexIntensity"); GerstnerVertexIntensityPID = Shader.PropertyToID("_GerstnerVertexIntensity"); LuxWaterMask_GAmplitudePID = Shader.PropertyToID("_LuxWaterMask_GAmplitude"); GAmplitudePID = Shader.PropertyToID("_GAmplitude"); LuxWaterMask_GFinalFrequencyPID = Shader.PropertyToID("_LuxWaterMask_GFinalFrequency"); GFinalFrequencyPID = Shader.PropertyToID("_GFinalFrequency"); LuxWaterMask_GSteepnessPID = Shader.PropertyToID("_LuxWaterMask_GSteepness"); GSteepnessPID = Shader.PropertyToID("_GSteepness"); LuxWaterMask_GFinalSpeedPID = Shader.PropertyToID("_LuxWaterMask_GFinalSpeed"); GFinalSpeedPID = Shader.PropertyToID("_GFinalSpeed"); LuxWaterMask_GDirectionABPID = Shader.PropertyToID("_LuxWaterMask_GDirectionAB"); GDirectionABPID = Shader.PropertyToID("_GDirectionAB"); LuxWaterMask_GDirectionCDPID = Shader.PropertyToID("_LuxWaterMask_GDirectionCD"); GDirectionCDPID = Shader.PropertyToID("_GDirectionCD"); LuxWaterMask_GerstnerSecondaryWaves = Shader.PropertyToID("_LuxWaterMask_GerstnerSecondaryWaves"); GerstnerSecondaryWaves = Shader.PropertyToID("_GerstnerSecondaryWaves"); Lux_UnderWaterAmbientSkyLightPID = Shader.PropertyToID("_Lux_UnderWaterAmbientSkyLight"); Lux_UnderWaterSunColorPID = Shader.PropertyToID("_Lux_UnderWaterSunColor"); Lux_UnderWaterSunDirPID = Shader.PropertyToID("_Lux_UnderWaterSunDir"); Lux_UnderWaterSunDirViewSpacePID = Shader.PropertyToID("_Lux_UnderWaterSunDirViewSpace"); Lux_EdgeLengthPID = Shader.PropertyToID("_LuxWater_EdgeLength"); Lux_MaxDirLightDepthPID = Shader.PropertyToID("_MaxDirLightDepth"); Lux_MaxFogLightDepthPID = Shader.PropertyToID("_MaxFogLightDepth"); Lux_CausticsEnabledPID = Shader.PropertyToID("_CausticsEnabled"); Lux_CausticModePID = Shader.PropertyToID("_CausticMode"); Lux_UnderWaterFogColorPID = Shader.PropertyToID("_Lux_UnderWaterFogColor"); Lux_UnderWaterFogDensityPID = Shader.PropertyToID("_Lux_UnderWaterFogDensity"); Lux_UnderWaterFogAbsorptionCancellationPID = Shader.PropertyToID("_Lux_UnderWaterFogAbsorptionCancellation"); Lux_UnderWaterAbsorptionHeightPID = Shader.PropertyToID("_Lux_UnderWaterAbsorptionHeight"); Lux_UnderWaterAbsorptionMaxHeightPID = Shader.PropertyToID("_Lux_UnderWaterAbsorptionMaxHeight"); Lux_UnderWaterAbsorptionDepthPID = Shader.PropertyToID("_Lux_UnderWaterAbsorptionDepth"); Lux_UnderWaterAbsorptionColorStrengthPID = Shader.PropertyToID("_Lux_UnderWaterAbsorptionColorStrength"); Lux_UnderWaterAbsorptionStrengthPID = Shader.PropertyToID("_Lux_UnderWaterAbsorptionStrength"); Lux_UnderWaterUnderwaterScatteringPowerPID = Shader.PropertyToID("_Lux_UnderWaterUnderwaterScatteringPower"); Lux_UnderWaterUnderwaterScatteringIntensityPID = Shader.PropertyToID("_Lux_UnderWaterUnderwaterScatteringIntensity"); Lux_UnderWaterUnderwaterScatteringColorPID = Shader.PropertyToID("_Lux_UnderWaterUnderwaterScatteringColor"); Lux_UnderWaterUnderwaterScatteringOcclusionPID = Shader.PropertyToID("_Lux_UnderwaterScatteringOcclusion"); Lux_UnderWaterCausticsPID = Shader.PropertyToID("_Lux_UnderWaterCaustics"); Lux_UnderWaterDeferredFogParams = Shader.PropertyToID("_LuxUnderWaterDeferredFogParams"); CausticTexPID = Shader.PropertyToID("_CausticTex"); islinear = (int)QualitySettings.desiredColorSpace == 1; if ((Object)(object)PrewarmedShaders != (Object)null && !PrewarmedShaders.isWarmedUp) { PrewarmedShaders.WarmUp(); } if ((Object)(object)Sun != (Object)null) { SunLight = ((Component)Sun).GetComponent(); } RegisteredWaterVolumesIDs.Capacity = ListCapacity; RegisteredWaterVolumes.Capacity = ListCapacity; WaterMeshes.Capacity = ListCapacity; WaterTransforms.Capacity = ListCapacity; WaterMaterials.Capacity = ListCapacity; WaterIsOnScreen.Capacity = ListCapacity; WaterUsesSlidingVolume.Capacity = ListCapacity; activeWaterVolumeCameras.Capacity = 2; SetDeepwaterLighting(); SetDeferredFogParams(); } private void CleanUp() { instance = null; if ((Object)(object)UnderWaterMask != (Object)null) { UnderWaterMask.Release(); Object.Destroy((Object)(object)UnderWaterMask); } if (Object.op_Implicit((Object)(object)mat)) { Object.Destroy((Object)(object)mat); } if (Object.op_Implicit((Object)(object)blurMaterial)) { Object.Destroy((Object)(object)blurMaterial); } if (Object.op_Implicit((Object)(object)blitMaterial)) { Object.Destroy((Object)(object)blitMaterial); } Shader.DisableKeyword("LUXWATER_DEEPWATERLIGHTING"); Shader.DisableKeyword("LUXWATER_DEFERREDFOG"); } private void OnDisable() { CleanUp(); } private void OnDestroy() { CleanUp(); } private void OnValidate() { SetDeepwaterLighting(); SetDeferredFogParams(); } public void SetDeferredFogParams() { //IL_0048: Unknown result type (might be due to invalid IL or missing references) if (EnableAdvancedDeferredFog) { Shader.EnableKeyword("LUXWATER_DEFERREDFOG"); Vector4 val = default(Vector4); ((Vector4)(ref val))..ctor((float)(DoUnderWaterRendering ? 1 : 0), FogDepthShift, FogEdgeBlending, 0f); Shader.SetGlobalVector(Lux_UnderWaterDeferredFogParams, val); } else { Shader.DisableKeyword("LUXWATER_DEFERREDFOG"); } } public void SetDeepwaterLighting() { if (EnableDeepwaterLighting) { Shader.EnableKeyword("LUXWATER_DEEPWATERLIGHTING"); if (activeWaterVolume != -1) { Shader.SetGlobalFloat("_Lux_UnderWaterWaterSurfacePos", WaterSurfacePos); } else { Shader.SetGlobalFloat("_Lux_UnderWaterWaterSurfacePos", DefaultWaterSurfacePosition); } Shader.SetGlobalFloat("_Lux_UnderWaterDirLightingDepth", DirectionalLightingFadeRange); Shader.SetGlobalFloat("_Lux_UnderWaterFogLightingDepth", FogLightingFadeRange); } else { Shader.DisableKeyword("LUXWATER_DEEPWATERLIGHTING"); } } public void RegisterWaterVolume(LuxWater_WaterVolume item, int ID, bool visible, bool SlidingVolume) { RegisteredWaterVolumesIDs.Add(ID); RegisteredWaterVolumes.Add(item); WaterMeshes.Add(item.WaterVolumeMesh); WaterMaterials.Add(((Component)((Component)item).transform).GetComponent().sharedMaterial); WaterTransforms.Add(((Component)item).transform); WaterIsOnScreen.Add(visible); WaterUsesSlidingVolume.Add(SlidingVolume); int num = WaterMaterials.Count - 1; Shader.SetGlobalTexture(Lux_UnderWaterCausticsPID, WaterMaterials[num].GetTexture(CausticTexPID)); SetGerstnerWaves(num); } public void DeRegisterWaterVolume(LuxWater_WaterVolume item, int ID) { int num = RegisteredWaterVolumesIDs.IndexOf(ID); if (activeWaterVolume == num) { activeWaterVolume = -1; } RegisteredWaterVolumesIDs.RemoveAt(num); RegisteredWaterVolumes.RemoveAt(num); WaterMeshes.RemoveAt(num); WaterMaterials.RemoveAt(num); WaterTransforms.RemoveAt(num); WaterIsOnScreen.RemoveAt(num); WaterUsesSlidingVolume.RemoveAt(num); } public void SetWaterVisible(int ID) { int index = RegisteredWaterVolumesIDs.IndexOf(ID); WaterIsOnScreen[index] = true; } public void SetWaterInvisible(int ID) { int index = RegisteredWaterVolumesIDs.IndexOf(ID); WaterIsOnScreen[index] = false; } public void EnteredWaterVolume(LuxWater_WaterVolume item, int ID, Camera triggerCam, float GridSize) { //IL_0043: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) DoUnderWaterRendering = true; int num = RegisteredWaterVolumesIDs.IndexOf(ID); if (num != activeWaterVolume) { activeWaterVolume = num; activeGridSize = GridSize; WaterSurfacePos = WaterTransforms[activeWaterVolume].position.y; for (int i = 0; i < m_aboveWatersurface.Count; i++) { m_aboveWatersurface[i].renderQueue = 2997; } for (int j = 0; j < m_belowWatersurface.Count; j++) { m_belowWatersurface[j].renderQueue = 3001; } } if (!activeWaterVolumeCameras.Contains(triggerCam)) { activeWaterVolumeCameras.Add(triggerCam); } } public void LeftWaterVolume(LuxWater_WaterVolume item, int ID, Camera triggerCam) { DoUnderWaterRendering = false; int num = RegisteredWaterVolumesIDs.IndexOf(ID); if (activeWaterVolume == num) { activeWaterVolume = -1; for (int i = 0; i < m_aboveWatersurface.Count; i++) { m_aboveWatersurface[i].renderQueue = 3000; } for (int j = 0; j < m_belowWatersurface.Count; j++) { m_belowWatersurface[j].renderQueue = 2997; } } if (activeWaterVolumeCameras.Contains(triggerCam)) { activeWaterVolumeCameras.Remove(triggerCam); } } private void OnPreCull() { SetDeferredFogParams(); RenderWaterMask(cam, SecondaryCameraRendering: false); } [ImageEffectOpaque] private void OnRenderImage(RenderTexture src, RenderTexture dest) { RenderUnderWater(src, dest, cam, SecondaryCameraRendering: false); } public void SetGerstnerWaves(int index) { //IL_0051: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_00a1: Unknown result type (might be due to invalid IL or missing references) //IL_00c9: Unknown result type (might be due to invalid IL or missing references) //IL_00f1: Unknown result type (might be due to invalid IL or missing references) //IL_0119: Unknown result type (might be due to invalid IL or missing references) //IL_0141: Unknown result type (might be due to invalid IL or missing references) //IL_0169: Unknown result type (might be due to invalid IL or missing references) if (WaterMaterials[index].GetFloat(GerstnerEnabledPID) == 1f) { mat.EnableKeyword("GERSTNERENABLED"); mat.SetVector(LuxWaterMask_GerstnerVertexIntensityPID, WaterMaterials[index].GetVector(GerstnerVertexIntensityPID)); mat.SetVector(LuxWaterMask_GAmplitudePID, WaterMaterials[index].GetVector(GAmplitudePID)); mat.SetVector(LuxWaterMask_GFinalFrequencyPID, WaterMaterials[index].GetVector(GFinalFrequencyPID)); mat.SetVector(LuxWaterMask_GSteepnessPID, WaterMaterials[index].GetVector(GSteepnessPID)); mat.SetVector(LuxWaterMask_GFinalSpeedPID, WaterMaterials[index].GetVector(GFinalSpeedPID)); mat.SetVector(LuxWaterMask_GDirectionABPID, WaterMaterials[index].GetVector(GDirectionABPID)); mat.SetVector(LuxWaterMask_GDirectionCDPID, WaterMaterials[index].GetVector(GDirectionCDPID)); mat.SetVector(LuxWaterMask_GerstnerSecondaryWaves, WaterMaterials[index].GetVector(GerstnerSecondaryWaves)); } else { mat.DisableKeyword("GERSTNERENABLED"); } } public void RenderWaterMask(Camera currentCamera, bool SecondaryCameraRendering) { //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_0056: Unknown result type (might be due to invalid IL or missing references) //IL_0060: Expected O, but got Unknown //IL_00df: Unknown result type (might be due to invalid IL or missing references) //IL_00eb: Unknown result type (might be due to invalid IL or missing references) //IL_010d: Unknown result type (might be due to invalid IL or missing references) //IL_0112: Unknown result type (might be due to invalid IL or missing references) //IL_0117: Unknown result type (might be due to invalid IL or missing references) //IL_012a: Unknown result type (might be due to invalid IL or missing references) //IL_012f: Unknown result type (might be due to invalid IL or missing references) //IL_0134: Unknown result type (might be due to invalid IL or missing references) //IL_0147: Unknown result type (might be due to invalid IL or missing references) //IL_014c: Unknown result type (might be due to invalid IL or missing references) //IL_0151: Unknown result type (might be due to invalid IL or missing references) //IL_0164: Unknown result type (might be due to invalid IL or missing references) //IL_0169: Unknown result type (might be due to invalid IL or missing references) //IL_016e: Unknown result type (might be due to invalid IL or missing references) //IL_0176: Unknown result type (might be due to invalid IL or missing references) //IL_0177: Unknown result type (might be due to invalid IL or missing references) //IL_0188: Unknown result type (might be due to invalid IL or missing references) //IL_0189: Unknown result type (might be due to invalid IL or missing references) //IL_019a: Unknown result type (might be due to invalid IL or missing references) //IL_019b: Unknown result type (might be due to invalid IL or missing references) //IL_01ac: Unknown result type (might be due to invalid IL or missing references) //IL_01ad: Unknown result type (might be due to invalid IL or missing references) //IL_01be: Unknown result type (might be due to invalid IL or missing references) //IL_01d4: Unknown result type (might be due to invalid IL or missing references) //IL_01d9: Unknown result type (might be due to invalid IL or missing references) //IL_01f3: Unknown result type (might be due to invalid IL or missing references) //IL_01f8: Unknown result type (might be due to invalid IL or missing references) //IL_0265: Unknown result type (might be due to invalid IL or missing references) //IL_026f: Unknown result type (might be due to invalid IL or missing references) //IL_0231: Unknown result type (might be due to invalid IL or missing references) //IL_023b: Unknown result type (might be due to invalid IL or missing references) //IL_0240: Unknown result type (might be due to invalid IL or missing references) //IL_0244: Unknown result type (might be due to invalid IL or missing references) //IL_0094: Unknown result type (might be due to invalid IL or missing references) //IL_009e: Expected O, but got Unknown //IL_0335: Unknown result type (might be due to invalid IL or missing references) //IL_0346: Unknown result type (might be due to invalid IL or missing references) //IL_034b: Unknown result type (might be due to invalid IL or missing references) //IL_0351: Unknown result type (might be due to invalid IL or missing references) //IL_0366: Unknown result type (might be due to invalid IL or missing references) //IL_036b: Unknown result type (might be due to invalid IL or missing references) //IL_0398: Unknown result type (might be due to invalid IL or missing references) //IL_03db: Unknown result type (might be due to invalid IL or missing references) //IL_043f: Unknown result type (might be due to invalid IL or missing references) //IL_0444: Unknown result type (might be due to invalid IL or missing references) //IL_0462: Unknown result type (might be due to invalid IL or missing references) //IL_0467: Unknown result type (might be due to invalid IL or missing references) //IL_0470: Unknown result type (might be due to invalid IL or missing references) //IL_0475: Unknown result type (might be due to invalid IL or missing references) //IL_0484: Unknown result type (might be due to invalid IL or missing references) //IL_0489: Unknown result type (might be due to invalid IL or missing references) //IL_052f: Unknown result type (might be due to invalid IL or missing references) //IL_058c: Unknown result type (might be due to invalid IL or missing references) //IL_05aa: Unknown result type (might be due to invalid IL or missing references) //IL_05c8: Unknown result type (might be due to invalid IL or missing references) //IL_05e6: Unknown result type (might be due to invalid IL or missing references) //IL_0604: Unknown result type (might be due to invalid IL or missing references) //IL_0622: Unknown result type (might be due to invalid IL or missing references) //IL_0640: Unknown result type (might be due to invalid IL or missing references) //IL_065e: Unknown result type (might be due to invalid IL or missing references) //IL_074c: Unknown result type (might be due to invalid IL or missing references) //IL_0805: Unknown result type (might be due to invalid IL or missing references) Shader.SetGlobalFloat("_Lux_Time", Time.timeSinceLevelLoad); currentCamera.depthTextureMode = (DepthTextureMode)(currentCamera.depthTextureMode | 1); camTransform = ((Component)currentCamera).transform; Profiler.BeginSample("Create UnderWaterMask Tex"); if (!Object.op_Implicit((Object)(object)UnderWaterMask)) { UnderWaterMask = new RenderTexture(currentCamera.pixelWidth, currentCamera.pixelHeight, 24, (RenderTextureFormat)0, (RenderTextureReadWrite)1); } else if (((Texture)UnderWaterMask).width != currentCamera.pixelWidth && !SecondaryCameraRendering) { UnderWaterMask = new RenderTexture(currentCamera.pixelWidth, currentCamera.pixelHeight, 24, (RenderTextureFormat)0, (RenderTextureReadWrite)1); } Shader.SetGlobalTexture(UnderWaterMaskPID, (Texture)(object)UnderWaterMask); Graphics.SetRenderTarget(UnderWaterMask); Profiler.EndSample(); Profiler.BeginSample("Set up Frustum Corners"); currentCamera.CalculateFrustumCorners(new Rect(0f, 0f, 1f, 1f), currentCamera.farClipPlane, currentCamera.stereoActiveEye, frustumCorners); Vector3 val = camTransform.TransformVector(frustumCorners[0]); Vector3 val2 = camTransform.TransformVector(frustumCorners[1]); Vector3 val3 = camTransform.TransformVector(frustumCorners[2]); Vector3 val4 = camTransform.TransformVector(frustumCorners[3]); ((Matrix4x4)(ref frustumCornersArray)).SetRow(0, Vector4.op_Implicit(val)); ((Matrix4x4)(ref frustumCornersArray)).SetRow(1, Vector4.op_Implicit(val4)); ((Matrix4x4)(ref frustumCornersArray)).SetRow(2, Vector4.op_Implicit(val2)); ((Matrix4x4)(ref frustumCornersArray)).SetRow(3, Vector4.op_Implicit(val3)); Shader.SetGlobalMatrix(Lux_FrustumCornersWSPID, frustumCornersArray); Shader.SetGlobalVector(Lux_CameraWSPID, Vector4.op_Implicit(camTransform.position)); Profiler.EndSample(); Profiler.BeginSample("Set up ambient lighting"); ambientProbe = RenderSettings.ambientProbe; ((SphericalHarmonicsL2)(ref ambientProbe)).Evaluate(directions, AmbientLightingSamples); if (islinear) { int lux_UnderWaterAmbientSkyLightPID = Lux_UnderWaterAmbientSkyLightPID; Color val5 = AmbientLightingSamples[0] * RenderSettings.ambientIntensity; Shader.SetGlobalColor(lux_UnderWaterAmbientSkyLightPID, ((Color)(ref val5)).linear); } else { Shader.SetGlobalColor(Lux_UnderWaterAmbientSkyLightPID, AmbientLightingSamples[0] * RenderSettings.ambientIntensity); } Profiler.EndSample(); if (activeWaterVolumeCameras.Contains(currentCamera) || !EnableAdvancedDeferredFog) { } if (activeWaterVolume > -1) { Shader.EnableKeyword("LUXWATERENABLED"); if (!EnableDeepwaterLighting) { Shader.SetGlobalFloat("_Lux_UnderWaterDirLightingDepth", WaterMaterials[activeWaterVolume].GetFloat(Lux_MaxDirLightDepthPID)); Shader.SetGlobalFloat("_Lux_UnderWaterFogLightingDepth", WaterMaterials[activeWaterVolume].GetFloat(Lux_MaxFogLightDepthPID)); } Shader.SetGlobalFloat("_Lux_UnderWaterWaterSurfacePos", WaterSurfacePos); } else { Shader.DisableKeyword("LUXWATERENABLED"); } GL.PushMatrix(); GL.Clear(true, true, Color.black, 1f); camProj = currentCamera.projectionMatrix; GL.LoadProjectionMatrix(camProj); Shader.SetGlobalVector("_WorldSpaceCameraPos", Vector4.op_Implicit(camTransform.position)); Shader.SetGlobalVector("_ProjectionParams", new Vector4(Projection, currentCamera.nearClipPlane, currentCamera.farClipPlane, 1f / currentCamera.farClipPlane)); Shader.SetGlobalVector("_ScreenParams", new Vector4((float)currentCamera.pixelWidth, (float)currentCamera.pixelHeight, 1f + 1f / (float)currentCamera.pixelWidth, 1f + 1f / (float)currentCamera.pixelHeight)); Vector2 val6 = default(Vector2); for (int i = 0; i < RegisteredWaterVolumes.Count; i++) { if ((!WaterIsOnScreen[i] && i != activeWaterVolume) || (!EnableAdvancedDeferredFog && i != activeWaterVolume)) { continue; } WatervolumeMatrix = WaterTransforms[i].localToWorldMatrix; if (WaterUsesSlidingVolume[i]) { Vector3 position = camTransform.position; Vector4 column = ((Matrix4x4)(ref WatervolumeMatrix)).GetColumn(3); Vector3 lossyScale = WaterTransforms[i].lossyScale; ((Vector2)(ref val6))..ctor(activeGridSize * lossyScale.x, activeGridSize * lossyScale.z); float num = (float)Math.Round(position.x / val6.x); float num2 = val6.x * num; num = (float)Math.Round(position.z / val6.y); float num3 = val6.y * num; column.x = num2 + column.x % val6.x; column.z = num3 + column.z % val6.y; ((Matrix4x4)(ref WatervolumeMatrix)).SetColumn(3, column); } Material val7 = WaterMaterials[i]; Profiler.BeginSample("Set up Gerstner"); if (val7.GetFloat(GerstnerEnabledPID) == 1f) { mat.EnableKeyword("GERSTNERENABLED"); mat.SetVector(LuxWaterMask_GerstnerVertexIntensityPID, val7.GetVector(GerstnerVertexIntensityPID)); mat.SetVector(LuxWaterMask_GAmplitudePID, val7.GetVector(GAmplitudePID)); mat.SetVector(LuxWaterMask_GFinalFrequencyPID, val7.GetVector(GFinalFrequencyPID)); mat.SetVector(LuxWaterMask_GSteepnessPID, val7.GetVector(GSteepnessPID)); mat.SetVector(LuxWaterMask_GFinalSpeedPID, val7.GetVector(GFinalSpeedPID)); mat.SetVector(LuxWaterMask_GDirectionABPID, val7.GetVector(GDirectionABPID)); mat.SetVector(LuxWaterMask_GDirectionCDPID, val7.GetVector(GDirectionCDPID)); mat.SetVector(LuxWaterMask_GerstnerSecondaryWaves, val7.GetVector(GerstnerSecondaryWaves)); } else { mat.DisableKeyword("GERSTNERENABLED"); } Profiler.EndSample(); Profiler.BeginSample("Draw Water Mask"); bool flag = val7.HasProperty(Lux_EdgeLengthPID) && SystemInfo.graphicsShaderLevel >= 46; if (flag) { mat.SetFloat(Lux_EdgeLengthPID, val7.GetFloat(Lux_EdgeLengthPID)); } Profiler.BeginSample("Draw Water Volume"); if (i == activeWaterVolume && activeWaterVolumeCameras.Contains(currentCamera)) { if (WaterUsesSlidingVolume[i] && flag) { mat.SetPass(5); } else { mat.SetPass(0); } Graphics.DrawMeshNow(WaterMeshes[i], WatervolumeMatrix, 0); } Profiler.EndSample(); if ((i == activeWaterVolume && activeWaterVolumeCameras.Contains(currentCamera)) || EnableAdvancedDeferredFog) { if (flag) { if (i == activeWaterVolume) { mat.SetPass(3); } else { mat.SetPass(4); } } else if (i == activeWaterVolume) { mat.SetPass(1); } else { mat.SetPass(2); } Graphics.DrawMeshNow(WaterMeshes[i], WatervolumeMatrix, 1); } Profiler.EndSample(); } GL.PopMatrix(); } public void RenderUnderWater(RenderTexture src, RenderTexture dest, Camera currentCamera, bool SecondaryCameraRendering) { //IL_004e: Unknown result type (might be due to invalid IL or missing references) //IL_0053: Unknown result type (might be due to invalid IL or missing references) //IL_0058: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_006f: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_0090: Unknown result type (might be due to invalid IL or missing references) //IL_0091: Unknown result type (might be due to invalid IL or missing references) //IL_0092: Unknown result type (might be due to invalid IL or missing references) //IL_00a1: Unknown result type (might be due to invalid IL or missing references) //IL_00b1: Unknown result type (might be due to invalid IL or missing references) //IL_00b2: Unknown result type (might be due to invalid IL or missing references) //IL_00b7: Unknown result type (might be due to invalid IL or missing references) //IL_00ce: Unknown result type (might be due to invalid IL or missing references) //IL_00d3: Unknown result type (might be due to invalid IL or missing references) //IL_00d9: Unknown result type (might be due to invalid IL or missing references) //IL_00de: Unknown result type (might be due to invalid IL or missing references) //IL_00e3: Unknown result type (might be due to invalid IL or missing references) //IL_00e8: Unknown result type (might be due to invalid IL or missing references) //IL_0083: Unknown result type (might be due to invalid IL or missing references) //IL_0088: Unknown result type (might be due to invalid IL or missing references) //IL_01eb: Unknown result type (might be due to invalid IL or missing references) //IL_01b8: Unknown result type (might be due to invalid IL or missing references) //IL_01bd: Unknown result type (might be due to invalid IL or missing references) //IL_01c0: Unknown result type (might be due to invalid IL or missing references) //IL_03a5: Unknown result type (might be due to invalid IL or missing references) //IL_0372: Unknown result type (might be due to invalid IL or missing references) //IL_0377: Unknown result type (might be due to invalid IL or missing references) //IL_037a: Unknown result type (might be due to invalid IL or missing references) //IL_04d0: Unknown result type (might be due to invalid IL or missing references) //IL_04f5: Unknown result type (might be due to invalid IL or missing references) if (activeWaterVolumeCameras.Contains(currentCamera)) { if (DoUnderWaterRendering && activeWaterVolume > -1) { if (!UnderwaterIsSetUp) { if (Object.op_Implicit((Object)(object)Sun)) { Vector3 val = -Sun.forward; Color val2 = SunLight.color * SunLight.intensity; if (islinear) { val2 = ((Color)(ref val2)).linear; } Shader.SetGlobalColor(Lux_UnderWaterSunColorPID, val2 * Mathf.Clamp01(Vector3.Dot(val, Vector3.up))); Shader.SetGlobalVector(Lux_UnderWaterSunDirPID, Vector4.op_Implicit(-val)); Shader.SetGlobalVector(Lux_UnderWaterSunDirViewSpacePID, Vector4.op_Implicit(currentCamera.WorldToViewportPoint(((Component)currentCamera).transform.position - val * 1000f))); } if (WaterMaterials[activeWaterVolume].GetFloat(Lux_CausticsEnabledPID) == 1f) { blitMaterial.EnableKeyword("GEOM_TYPE_FROND"); if (WaterMaterials[activeWaterVolume].GetFloat(Lux_CausticModePID) == 1f) { blitMaterial.EnableKeyword("GEOM_TYPE_LEAF"); } else { blitMaterial.DisableKeyword("GEOM_TYPE_LEAF"); } } else { blitMaterial.DisableKeyword("GEOM_TYPE_FROND"); } if (islinear) { int lux_UnderWaterFogColorPID = Lux_UnderWaterFogColorPID; Color color = WaterMaterials[activeWaterVolume].GetColor("_Color"); Shader.SetGlobalColor(lux_UnderWaterFogColorPID, ((Color)(ref color)).linear); } else { Shader.SetGlobalColor(Lux_UnderWaterFogColorPID, WaterMaterials[activeWaterVolume].GetColor("_Color")); } Shader.SetGlobalFloat(Lux_UnderWaterFogDensityPID, WaterMaterials[activeWaterVolume].GetFloat("_Density")); Shader.SetGlobalFloat(Lux_UnderWaterFogAbsorptionCancellationPID, WaterMaterials[activeWaterVolume].GetFloat("_FogAbsorptionCancellation")); Shader.SetGlobalFloat(Lux_UnderWaterAbsorptionHeightPID, WaterMaterials[activeWaterVolume].GetFloat("_AbsorptionHeight")); Shader.SetGlobalFloat(Lux_UnderWaterAbsorptionMaxHeightPID, WaterMaterials[activeWaterVolume].GetFloat("_AbsorptionMaxHeight")); Shader.SetGlobalFloat(Lux_UnderWaterAbsorptionDepthPID, WaterMaterials[activeWaterVolume].GetFloat("_AbsorptionDepth")); Shader.SetGlobalFloat(Lux_UnderWaterAbsorptionColorStrengthPID, WaterMaterials[activeWaterVolume].GetFloat("_AbsorptionColorStrength")); Shader.SetGlobalFloat(Lux_UnderWaterAbsorptionStrengthPID, WaterMaterials[activeWaterVolume].GetFloat("_AbsorptionStrength")); Shader.SetGlobalFloat(Lux_UnderWaterUnderwaterScatteringPowerPID, WaterMaterials[activeWaterVolume].GetFloat("_ScatteringPower")); Shader.SetGlobalFloat(Lux_UnderWaterUnderwaterScatteringIntensityPID, WaterMaterials[activeWaterVolume].GetFloat("_UnderwaterScatteringIntensity")); if (islinear) { int lux_UnderWaterUnderwaterScatteringColorPID = Lux_UnderWaterUnderwaterScatteringColorPID; Color color2 = WaterMaterials[activeWaterVolume].GetColor("_TranslucencyColor"); Shader.SetGlobalColor(lux_UnderWaterUnderwaterScatteringColorPID, ((Color)(ref color2)).linear); } else { Shader.SetGlobalColor(Lux_UnderWaterUnderwaterScatteringColorPID, WaterMaterials[activeWaterVolume].GetColor("_TranslucencyColor")); } Shader.SetGlobalFloat(Lux_UnderWaterUnderwaterScatteringOcclusionPID, WaterMaterials[activeWaterVolume].GetFloat("_ScatterOcclusion")); Shader.SetGlobalTexture(Lux_UnderWaterCausticsPID, WaterMaterials[activeWaterVolume].GetTexture(CausticTexPID)); Shader.SetGlobalFloat("_Lux_UnderWaterCausticsTiling", WaterMaterials[activeWaterVolume].GetFloat("_CausticsTiling")); Shader.SetGlobalFloat("_Lux_UnderWaterCausticsScale", WaterMaterials[activeWaterVolume].GetFloat("_CausticsScale")); Shader.SetGlobalFloat("_Lux_UnderWaterCausticsSpeed", WaterMaterials[activeWaterVolume].GetFloat("_CausticsSpeed")); Shader.SetGlobalFloat("_Lux_UnderWaterCausticsTiling", WaterMaterials[activeWaterVolume].GetFloat("_CausticsTiling")); Shader.SetGlobalFloat("_Lux_UnderWaterCausticsSelfDistortion", WaterMaterials[activeWaterVolume].GetFloat("_CausticsSelfDistortion")); Shader.SetGlobalVector("_Lux_UnderWaterFinalBumpSpeed01", WaterMaterials[activeWaterVolume].GetVector("_FinalBumpSpeed01")); Shader.SetGlobalVector("_Lux_UnderWaterFogDepthAtten", WaterMaterials[activeWaterVolume].GetVector("_DepthAtten")); } Graphics.Blit((Texture)(object)src, dest, blitMaterial, 0); } else { Graphics.Blit((Texture)(object)src, dest); } } else { Graphics.Blit((Texture)(object)src, dest); } } private void OnDrawGizmos() { //IL_0078: Unknown result type (might be due to invalid IL or missing references) if (enableDebug && !((Object)(object)cam == (Object)null) && !((Object)(object)UnderWaterMask == (Object)null)) { int num = (int)(cam.aspect * 128f); GL.PushMatrix(); GL.LoadPixelMatrix(0f, (float)Screen.width, (float)Screen.height, 0f); Graphics.DrawTexture(new Rect(0f, 0f, (float)num, 128f), (Texture)(object)UnderWaterMask); GL.PopMatrix(); } } private void OnGUI() { //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_008d: Unknown result type (might be due to invalid IL or missing references) //IL_004e: Unknown result type (might be due to invalid IL or missing references) //IL_00f3: Unknown result type (might be due to invalid IL or missing references) if (enableDebug) { TextAnchor alignment = GUI.skin.label.alignment; GUI.skin.label.alignment = (TextAnchor)3; if (activeWaterVolume == -1) { GUI.Label(new Rect(10f, 0f, 160f, 40f), "Active water volume: none\nRegistered volumes: " + RegisteredWaterVolumes.Count); } else { GUI.Label(new Rect(10f, 0f, 400f, 40f), "Active water volume: " + ((Object)((Component)((Component)RegisteredWaterVolumes[activeWaterVolume]).transform).gameObject).name + "\nRegistered volumes: " + RegisteredWaterVolumes.Count); } GUI.skin.label.alignment = alignment; } } } [RequireComponent(typeof(Camera))] public class LuxWater_UnderwaterRenderingSlave : MonoBehaviour { private LuxWater_UnderWaterRendering waterrendermanager; private bool readyToGo = false; public Camera cam; private void OnEnable() { cam = ((Component)this).GetComponent(); ((MonoBehaviour)this).Invoke("GetWaterrendermanager", 0f); } private void GetWaterrendermanager() { LuxWater_UnderWaterRendering instance = LuxWater_UnderWaterRendering.instance; if ((Object)(object)instance != (Object)null) { waterrendermanager = instance; readyToGo = true; } } private void OnPreCull() { if (readyToGo) { waterrendermanager.RenderWaterMask(cam, SecondaryCameraRendering: true); } } [ImageEffectOpaque] private void OnRenderImage(RenderTexture src, RenderTexture dest) { if (readyToGo) { waterrendermanager.RenderUnderWater(src, dest, cam, SecondaryCameraRendering: true); } else { Graphics.Blit((Texture)(object)src, dest); } } } public class LuxWater_WaterVolume : MonoBehaviour { public delegate void TriggerEnter(); public delegate void TriggerExit(); [Space(6f)] [LuxWater_HelpBtn("h.86taxuhovssb")] public Mesh WaterVolumeMesh; [Space(8f)] public bool SlidingVolume = false; public float GridSize = 10f; private LuxWater_UnderWaterRendering waterrendermanager; private bool readyToGo = false; private int ID; public static event TriggerEnter OnEnterWaterVolume; public static event TriggerExit OnExitWaterVolume; private void OnEnable() { //IL_006a: Unknown result type (might be due to invalid IL or missing references) //IL_006f: Unknown result type (might be due to invalid IL or missing references) if ((Object)(object)WaterVolumeMesh == (Object)null) { Debug.Log((object)"No WaterVolumeMesh assigned."); return; } ID = ((Object)this).GetInstanceID(); ((MonoBehaviour)this).Invoke("Register", 0f); Renderer component = ((Component)this).GetComponent(); component.shadowCastingMode = (ShadowCastingMode)0; Material sharedMaterial = component.sharedMaterial; sharedMaterial.EnableKeyword("USINGWATERVOLUME"); sharedMaterial.SetFloat("_WaterSurfaceYPos", ((Component)this).transform.position.y); } private void OnDisable() { if (Object.op_Implicit((Object)(object)waterrendermanager)) { waterrendermanager.DeRegisterWaterVolume(this, ID); } readyToGo = false; ((Component)this).GetComponent().sharedMaterial.DisableKeyword("USINGWATERVOLUME"); } private void Register() { LuxWater_UnderWaterRendering instance = LuxWater_UnderWaterRendering.instance; if ((Object)(object)instance != (Object)null) { waterrendermanager = LuxWater_UnderWaterRendering.instance; bool isVisible = ((Component)this).GetComponent().isVisible; waterrendermanager.RegisterWaterVolume(this, ID, isVisible, SlidingVolume); readyToGo = true; } else { ((MonoBehaviour)this).Invoke("Register", 0f); } } private void OnBecameVisible() { if (readyToGo) { waterrendermanager.SetWaterVisible(ID); } } private void OnBecameInvisible() { if (readyToGo) { waterrendermanager.SetWaterInvisible(ID); } } private void OnTriggerEnter(Collider other) { LuxWater_WaterVolumeTrigger component = ((Component)other).GetComponent(); if ((Object)(object)component != (Object)null && (Object)(object)waterrendermanager != (Object)null && readyToGo && component.active) { waterrendermanager.EnteredWaterVolume(this, ID, component.cam, GridSize); if (LuxWater_WaterVolume.OnEnterWaterVolume != null) { LuxWater_WaterVolume.OnEnterWaterVolume(); } } } private void OnTriggerStay(Collider other) { LuxWater_WaterVolumeTrigger component = ((Component)other).GetComponent(); if ((Object)(object)component != (Object)null && (Object)(object)waterrendermanager != (Object)null && readyToGo && component.active) { waterrendermanager.EnteredWaterVolume(this, ID, component.cam, GridSize); } } private void OnTriggerExit(Collider other) { LuxWater_WaterVolumeTrigger component = ((Component)other).GetComponent(); if ((Object)(object)component != (Object)null && (Object)(object)waterrendermanager != (Object)null && readyToGo && component.active) { waterrendermanager.LeftWaterVolume(this, ID, component.cam); if (LuxWater_WaterVolume.OnExitWaterVolume != null) { LuxWater_WaterVolume.OnExitWaterVolume(); } } } } public class LuxWater_WaterVolumeTrigger : MonoBehaviour { [Space(6f)] [LuxWater_HelpBtn("h.cetbv2etlk23")] public Camera cam; public bool active = true; private void OnEnable() { if ((Object)(object)cam == (Object)null) { Camera component = ((Component)this).GetComponent(); if ((Object)(object)component != (Object)null) { cam = component; } else { active = false; } } } } public class LuxWater_SetMeshBounds : MonoBehaviour { [Space(6f)] [LuxWater_HelpBtn("h.s0d0kaaphhix")] public float Expand_XZ = 0f; public float Expand_Y = 0f; private Renderer rend; private void OnEnable() { //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) Mesh sharedMesh = ((Component)this).GetComponent().sharedMesh; sharedMesh.RecalculateBounds(); Bounds bounds = sharedMesh.bounds; ((Bounds)(ref bounds)).Expand(new Vector3(Expand_XZ, Expand_Y, Expand_XZ)); sharedMesh.bounds = bounds; } private void OnDisable() { Mesh sharedMesh = ((Component)this).GetComponent().sharedMesh; sharedMesh.RecalculateBounds(); } private void OnValidate() { //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) Mesh sharedMesh = ((Component)this).GetComponent().sharedMesh; sharedMesh.RecalculateBounds(); Bounds bounds = sharedMesh.bounds; ((Bounds)(ref bounds)).Expand(new Vector3(Expand_XZ, Expand_Y, Expand_XZ)); sharedMesh.bounds = bounds; } private void OnDrawGizmosSelected() { //IL_0013: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_001b: Unknown result type (might be due to invalid IL or missing references) //IL_0020: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_002f: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) //IL_004b: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) rend = ((Component)this).GetComponent(); Bounds bounds = rend.bounds; Vector3 center = ((Bounds)(ref bounds)).center; Bounds bounds2 = rend.bounds; Vector3 extents = ((Bounds)(ref bounds2)).extents; Gizmos.color = Color.red; Bounds bounds3 = rend.bounds; Gizmos.DrawWireCube(center, ((Bounds)(ref bounds3)).size); } } } public static class LuxWaterUtils { public struct GersterWavesDescription { public Vector3 intensity; public Vector4 steepness; public Vector4 amp; public Vector4 freq; public Vector4 speed; public Vector4 dirAB; public Vector4 dirCD; public Vector4 secondaryWaveParams; } public static void GetGersterWavesDescription(ref GersterWavesDescription Description, Material WaterMaterial) { //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_002f: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0040: Unknown result type (might be due to invalid IL or missing references) //IL_0045: Unknown result type (might be due to invalid IL or missing references) //IL_0051: Unknown result type (might be due to invalid IL or missing references) //IL_0056: Unknown result type (might be due to invalid IL or missing references) //IL_0062: Unknown result type (might be due to invalid IL or missing references) //IL_0067: Unknown result type (might be due to invalid IL or missing references) //IL_0073: Unknown result type (might be due to invalid IL or missing references) //IL_0078: Unknown result type (might be due to invalid IL or missing references) //IL_0084: Unknown result type (might be due to invalid IL or missing references) //IL_0089: Unknown result type (might be due to invalid IL or missing references) Description.intensity = Vector4.op_Implicit(WaterMaterial.GetVector("_GerstnerVertexIntensity")); Description.steepness = WaterMaterial.GetVector("_GSteepness"); Description.amp = WaterMaterial.GetVector("_GAmplitude"); Description.freq = WaterMaterial.GetVector("_GFinalFrequency"); Description.speed = WaterMaterial.GetVector("_GFinalSpeed"); Description.dirAB = WaterMaterial.GetVector("_GDirectionAB"); Description.dirCD = WaterMaterial.GetVector("_GDirectionCD"); Description.secondaryWaveParams = WaterMaterial.GetVector("_GerstnerSecondaryWaves"); } public static Vector3 InternalGetGestnerDisplacement(Vector2 xzVtx, Vector4 intensity, Vector4 steepness, Vector4 amp, Vector4 freq, Vector4 speed, Vector4 dirAB, Vector4 dirCD, float TimeOffset) { //IL_03dd: Unknown result type (might be due to invalid IL or missing references) //IL_03df: Unknown result type (might be due to invalid IL or missing references) //IL_03e6: Unknown result type (might be due to invalid IL or missing references) Vector4 val = default(Vector4); val.x = steepness.x * amp.x * dirAB.x; val.y = steepness.x * amp.x * dirAB.y; val.z = steepness.y * amp.y * dirAB.z; val.w = steepness.y * amp.y * dirAB.w; Vector4 val2 = default(Vector4); val2.x = steepness.z * amp.z * dirCD.x; val2.y = steepness.z * amp.z * dirCD.y; val2.z = steepness.w * amp.w * dirCD.z; val2.w = steepness.w * amp.w * dirCD.w; Vector4 val3 = default(Vector4); val3.x = freq.x * (dirAB.x * xzVtx.x + dirAB.y * xzVtx.y); val3.y = freq.y * (dirAB.z * xzVtx.x + dirAB.w * xzVtx.y); val3.z = freq.z * (dirCD.x * xzVtx.x + dirCD.y * xzVtx.y); val3.w = freq.w * (dirCD.z * xzVtx.x + dirCD.w * xzVtx.y); float num = Time.timeSinceLevelLoad + TimeOffset; Vector4 val4 = default(Vector4); val4.x = num * speed.x; val4.y = num * speed.y; val4.z = num * speed.z; val4.w = num * speed.w; val3.x += val4.x; val3.y += val4.y; val3.z += val4.z; val3.w += val4.w; Vector4 val5 = default(Vector4); val5.x = (float)Math.Cos(val3.x); val5.y = (float)Math.Cos(val3.y); val5.z = (float)Math.Cos(val3.z); val5.w = (float)Math.Cos(val3.w); Vector4 val6 = default(Vector4); val6.x = (float)Math.Sin(val3.x); val6.y = (float)Math.Sin(val3.y); val6.z = (float)Math.Sin(val3.z); val6.w = (float)Math.Sin(val3.w); Vector3 result = default(Vector3); result.x = (val5.x * val.x + val5.y * val.z + val5.z * val2.x + val5.w * val2.z) * intensity.x; result.z = (val5.x * val.y + val5.y * val.w + val5.z * val2.y + val5.w * val2.w) * intensity.z; result.y = (val6.x * amp.x + val6.y * amp.y + val6.z * amp.z + val6.w * amp.w) * intensity.y; return result; } public static Vector3 GetGestnerDisplacement(Vector3 WorldPosition, GersterWavesDescription Description, float TimeOffset) { //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_0020: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Unknown result type (might be due to invalid IL or missing references) //IL_005a: Unknown result type (might be due to invalid IL or missing references) //IL_0181: Unknown result type (might be due to invalid IL or missing references) //IL_0182: Unknown result type (might be due to invalid IL or missing references) //IL_009c: Unknown result type (might be due to invalid IL or missing references) //IL_009d: Unknown result type (might be due to invalid IL or missing references) //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_00a5: Unknown result type (might be due to invalid IL or missing references) //IL_00ac: Unknown result type (might be due to invalid IL or missing references) //IL_00bd: Unknown result type (might be due to invalid IL or missing references) //IL_00c4: Unknown result type (might be due to invalid IL or missing references) //IL_00d5: Unknown result type (might be due to invalid IL or missing references) //IL_00dc: Unknown result type (might be due to invalid IL or missing references) //IL_00ed: Unknown result type (might be due to invalid IL or missing references) //IL_00f4: Unknown result type (might be due to invalid IL or missing references) //IL_0105: Unknown result type (might be due to invalid IL or missing references) //IL_013a: Unknown result type (might be due to invalid IL or missing references) //IL_016f: Unknown result type (might be due to invalid IL or missing references) //IL_0175: Unknown result type (might be due to invalid IL or missing references) //IL_017a: Unknown result type (might be due to invalid IL or missing references) //IL_017f: Unknown result type (might be due to invalid IL or missing references) //IL_0188: Unknown result type (might be due to invalid IL or missing references) Vector2 xzVtx = default(Vector2); xzVtx.x = WorldPosition.x; xzVtx.y = WorldPosition.z; Vector3 val = InternalGetGestnerDisplacement(xzVtx, Vector4.op_Implicit(Description.intensity), Description.steepness, Description.amp, Description.freq, Description.speed, Description.dirAB, Description.dirCD, TimeOffset); if (Description.secondaryWaveParams.x > 0f) { xzVtx.x += val.x; xzVtx.y += val.z; val += InternalGetGestnerDisplacement(xzVtx, Vector4.op_Implicit(Description.intensity), Description.steepness * Description.secondaryWaveParams.z, Description.amp * Description.secondaryWaveParams.x, Description.freq * Description.secondaryWaveParams.y, Description.speed * Description.secondaryWaveParams.w, new Vector4(Description.dirAB.z, Description.dirAB.w, Description.dirAB.x, Description.dirAB.y), new Vector4(Description.dirCD.z, Description.dirCD.w, Description.dirCD.x, Description.dirCD.y), TimeOffset); } return val; } public static Vector3 GetGestnerDisplacementSingle(Vector3 WorldPosition, GersterWavesDescription Description, float TimeOffset) { //IL_04e3: Unknown result type (might be due to invalid IL or missing references) //IL_04e5: Unknown result type (might be due to invalid IL or missing references) //IL_04ec: Unknown result type (might be due to invalid IL or missing references) Vector2 val = default(Vector2); val.x = WorldPosition.x; val.y = WorldPosition.z; Vector4 val2 = default(Vector4); val2.x = Description.steepness.x * Description.amp.x * Description.dirAB.x; val2.y = Description.steepness.x * Description.amp.x * Description.dirAB.y; val2.z = Description.steepness.y * Description.amp.y * Description.dirAB.z; val2.w = Description.steepness.y * Description.amp.y * Description.dirAB.w; Vector4 val3 = default(Vector4); val3.x = Description.steepness.z * Description.amp.z * Description.dirCD.x; val3.y = Description.steepness.z * Description.amp.z * Description.dirCD.y; val3.z = Description.steepness.w * Description.amp.w * Description.dirCD.z; val3.w = Description.steepness.w * Description.amp.w * Description.dirCD.w; Vector4 val4 = default(Vector4); val4.x = Description.freq.x * (Description.dirAB.x * val.x + Description.dirAB.y * val.y); val4.y = Description.freq.y * (Description.dirAB.z * val.x + Description.dirAB.w * val.y); val4.z = Description.freq.z * (Description.dirCD.x * val.x + Description.dirCD.y * val.y); val4.w = Description.freq.w * (Description.dirCD.z * val.x + Description.dirCD.w * val.y); float num = Time.timeSinceLevelLoad + TimeOffset; Vector4 val5 = default(Vector4); val5.x = num * Description.speed.x; val5.y = num * Description.speed.y; val5.z = num * Description.speed.z; val5.w = num * Description.speed.w; val4.x += val5.x; val4.y += val5.y; val4.z += val5.z; val4.w += val5.w; Vector4 val6 = default(Vector4); val6.x = (float)Math.Cos(val4.x); val6.y = (float)Math.Cos(val4.y); val6.z = (float)Math.Cos(val4.z); val6.w = (float)Math.Cos(val4.w); Vector4 val7 = default(Vector4); val7.x = (float)Math.Sin(val4.x); val7.y = (float)Math.Sin(val4.y); val7.z = (float)Math.Sin(val4.z); val7.w = (float)Math.Sin(val4.w); Vector3 result = default(Vector3); result.x = (val6.x * val2.x + val6.y * val2.z + val6.z * val3.x + val6.w * val3.z) * Description.intensity.x; result.z = (val6.x * val2.y + val6.y * val2.w + val6.z * val3.y + val6.w * val3.w) * Description.intensity.z; result.y = (val7.x * Description.amp.x + val7.y * Description.amp.y + val7.z * Description.amp.z + val7.w * Description.amp.w) * Description.intensity.y; return result; } } public class ScrollTexture : MonoBehaviour { public float scrollSpeed = 0.05f; public bool scrollHorizontally = true; public bool scrollVertically = true; private Vector2 value; private void Start() { //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Unknown result type (might be due to invalid IL or missing references) value = ((Component)this).GetComponent().material.mainTextureOffset; } private void Update() { //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_00a9: Unknown result type (might be due to invalid IL or missing references) //IL_00ae: Unknown result type (might be due to invalid IL or missing references) //IL_00b6: Unknown result type (might be due to invalid IL or missing references) //IL_0065: Unknown result type (might be due to invalid IL or missing references) //IL_00ed: Unknown result type (might be due to invalid IL or missing references) //IL_00f2: Unknown result type (might be due to invalid IL or missing references) //IL_0107: Unknown result type (might be due to invalid IL or missing references) float num = Time.deltaTime * scrollSpeed; value = ((Component)this).GetComponent().material.mainTextureOffset; if (scrollHorizontally && scrollVertically) { ((Component)this).GetComponent().material.SetTextureOffset("_MainTex", new Vector2(value.x + num, value.y + num)); } else if (scrollHorizontally) { ((Component)this).GetComponent().material.SetTextureOffset("_MainTex", new Vector2(value.x + num, ((Component)this).GetComponent().material.mainTextureOffset.y)); } else if (scrollVertically) { ((Component)this).GetComponent().material.SetTextureOffset("_MainTex", new Vector2(((Component)this).GetComponent().material.mainTextureOffset.x, value.y + num)); } } } public class AutoDestroyParticleSystem : MonoBehaviour { public void Update() { if (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && !((Component)this).GetComponent().IsAlive()) { Object.Destroy((Object)(object)((Component)this).gameObject); } } } public class CameraController : MonoBehaviour { [Serializable] public class Follow { [Serializable] public class SideScrolling { public bool lockZAxis = false; public bool lockXAxis = false; public bool flipAxis = false; } public bool alwaysFollow = true; public float playerHeight; public float cameraHeight = 1f; public float movementDampening = 0.1f; public float rotationDampening = 0.5f; public bool stayBehindPlayerWhileClimbingLedgeOrWall = true; public SideScrolling sideScrolling = new SideScrolling(); } [Serializable] public class MouseOrbit { public bool alwaysMouseOrbit = false; public bool switchToMouseOrbitIfInputButtonPressed = true; public string mouseOrbitInputButton = "Fire3"; public bool startOffMouseOrbitingForSwitching = false; public float cameraHeight = 1f; public float nearClippingPlane = 0.1f; public bool allowZoomingWithScrollWheel = false; public int zoomSpeed = 40; public float minZoomInDistance = 0.5f; public float xSpeed = 200f; public float ySpeed = 120f; public int yMinLimit = -68; public int yMaxLimit = 68; public float rotationDampening = 3f; public float zoomDampening = 5f; } [Serializable] public class FirstPerson { [Serializable] public class Crouching { public bool allowCrouching = true; public bool crouchWithPlayerIfPossible = true; public float crouchCameraHeightMultiple = 0.7f; public float crouchSpeed = 8f; } [Serializable] public class MouseOrbiting { public bool mouseOrbitInFirstPersonMode = true; public float xSpeed = 200f; public float ySpeed = 120f; public int yMinLimit = -68; public int yMaxLimit = 68; } public bool alwaysUseFirstPerson = false; public bool switchToFirstPersonIfInputButtonPressed = false; public string firstPersonInputButton = "Fire3"; public bool startOffInFirstPersonModeForSwitching = false; public float cameraDistance = 0f; public float cameraHeight = 1.15f; public Crouching crouching = new Crouching(); public MouseOrbiting mouseOrbiting = new MouseOrbiting(); public GameObject[] objectsToEnableInFirstPerson; public GameObject[] objectsToDisableInFirstPerson; } [Serializable] public class LockingOn { [Serializable] public class LockingOnToTags { public List tagsToLockOnTo = new List { "Enemy" }; public float lockInDistance = 6f; public float lockOutDistance = 10f; public GameObject arrowPointer; public float arrowPointerHeight = 0f; public float arrowPointerBounceHeight = 0.3f; public float arrowPointerBounceSpeed = 4f; public bool targetSameObjectWhileLockedOn = false; } public bool allowLockingOn = true; public string lockOnInputButton = "Fire2"; public Sprite barSprite; public float barCoverage = 28f; public float lockOnSpeed = 2f; public LockingOnToTags lockingOnToTags = new LockingOnToTags(); } public bool CursorInvisible = true; public Transform player; public float cameraDistance = 2.95f; public float offsetFromWall = 0.1f; public bool NewTriggered; public Transform NewCameraTarget; public float NewcameraDistance = 2.95f; public float NewcameraHeight = 1f; public float NewplayerHeight; public float NewSpeed = 0.1f; public Follow follow = new Follow(); public MouseOrbit mouseOrbit = new MouseOrbit(); public FirstPerson firstPerson = new FirstPerson(); public LockingOn lockingOn = new LockingOn(); private float xDeg = 0f; private float yDeg = 0f; private float currentDistance; private float desiredDistance; private float correctedDistance; private Vector3 position; private Quaternion rotation; private bool camTooRotated; private float playerColliderHeight; private float mouseOrbitMaxDistance; private float mouseOrbitMinDistance; private bool mouseOrbitButtonPressed; private bool mouseOrbitStart; private float firstPersonMaxDistance; private float firstPersonMinDistance; private Vector3 fpPosition; private Vector3 fpRotation; private Quaternion fpOrbitRotation; private float xFpDeg; private float yFpDeg; [HideInInspector] public float yFpDeg2; private float oldXFpDeg; private Vector3 oldEuler; [HideInInspector] public bool goneThroughFirstPersonUpdate; private bool firstPersonButtonPressed; private bool firstPersonStart; [HideInInspector] public bool inFirstPersonMode; private bool turningToClimb; private float firstPersonCameraHeight; private bool atFPPoint; private Vector3 swimmingQuat; private Vector3 finalSwimQuat; private Quaternion lookAtPos; private float outOfWaterSlerpValue = 20f; private float outOfFPInWaterTimer = 5f; private bool firstPersonModeWasTrueLastUpdate; private bool canCrouch; private bool crouching; private bool finishedCrouching; private float oldYPos; private float newYPos; private bool currentlyEnablingAndDisablingObjects = false; private bool objectWarning = false; private bool objectsFinished = false; private bool following; private Vector3 playerOffset; private Vector3 playerPos; private float playerYDeg; private float playerYDeg2; private float playerYRot; private float cameraYRot; private Vector3 velocityCamSmooth; private bool playerClimbing; private Vector3 playerForward; private Quaternion lastPlayerRot; private Quaternion rotationNormal; private bool lockedOn; private float barHeight; private GameObject barHolder; private GameObject topBar; private GameObject bottomBar; private float halfScreenHeight; private List targetableObjects = new List(); private GameObject closestTarget; private float dist; private float curDistance; private float distanceFromClosestTarget; private bool lockedOnToTarget; private bool canLockOn; private bool notBlocked; private float feetPosition; private float headPosition; private float height; private GameObject pointer; private float arrowBounciness; private float arrowPointerBounceHeightHalf; private float arrowPointerBounceHeight2; private Vector3 lookAt; private Vector3 lookDir; private Vector3 velocityLookDir; private Vector3 vector2; private Vector3 landLookAt; private bool playerEnteredWaterOnceAlready = false; private Vector3[] viewFrustum; private Vector3 nearClipDimensions; private const int frustrumBottomLeftPoint = 0; private const int frustrumTopLeftPoint = 1; private const int frustrumTopRightPoint = 2; private const int frustrumBottomRightPoint = 3; private const int frustrumBottomLeftVec = 4; private const int frustrumTopLeftVec = 5; private const int frustrumTopRightVec = 6; private const int frustrumBottomRightVec = 7; private const int frustrumSize = 8; private GameObject canvas; public LayerMask collisionLayers = LayerMask.op_Implicit(-21); public Transform Newplayertarget { get; set; } private void Start() { //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_0069: Unknown result type (might be due to invalid IL or missing references) //IL_006e: Unknown result type (might be due to invalid IL or missing references) //IL_009e: Unknown result type (might be due to invalid IL or missing references) //IL_00ae: Unknown result type (might be due to invalid IL or missing references) //IL_010c: Unknown result type (might be due to invalid IL or missing references) //IL_0111: Unknown result type (might be due to invalid IL or missing references) //IL_0125: Unknown result type (might be due to invalid IL or missing references) //IL_012a: Unknown result type (might be due to invalid IL or missing references) //IL_013e: Unknown result type (might be due to invalid IL or missing references) //IL_0143: Unknown result type (might be due to invalid IL or missing references) //IL_014f: Unknown result type (might be due to invalid IL or missing references) //IL_0154: Unknown result type (might be due to invalid IL or missing references) //IL_0190: Unknown result type (might be due to invalid IL or missing references) //IL_0195: Unknown result type (might be due to invalid IL or missing references) //IL_01e9: Unknown result type (might be due to invalid IL or missing references) //IL_01ee: Unknown result type (might be due to invalid IL or missing references) //IL_0209: Unknown result type (might be due to invalid IL or missing references) //IL_020e: Unknown result type (might be due to invalid IL or missing references) //IL_0291: Unknown result type (might be due to invalid IL or missing references) //IL_0296: Unknown result type (might be due to invalid IL or missing references) if (CursorInvisible) { Cursor.visible = false; } following = true; lockedOn = false; lookDir = ((Component)player).transform.forward; playerOffset = ((Component)player).transform.position + follow.cameraHeight * ((Component)player).transform.up; mouseOrbitMaxDistance = cameraDistance + 0.73f * (1f + 1.5f / cameraDistance) / 1.8577f / Vector3.Distance(((Component)this).transform.position, ((Component)player).transform.position); mouseOrbitMinDistance = mouseOrbit.minZoomInDistance; desiredDistance = Mathf.Clamp(desiredDistance, mouseOrbitMaxDistance, mouseOrbitMaxDistance); correctedDistance = desiredDistance; currentDistance = desiredDistance; xDeg = ((Component)this).transform.eulerAngles.y; yDeg = ((Component)this).transform.eulerAngles.x; rotation = ((Component)this).transform.rotation; position = ((Component)this).transform.position; if (mouseOrbit.switchToMouseOrbitIfInputButtonPressed && mouseOrbit.startOffMouseOrbitingForSwitching) { mouseOrbitStart = true; mouseOrbitButtonPressed = true; } xFpDeg = ((Component)this).transform.eulerAngles.y; if (!Object.op_Implicit((Object)(object)((Component)player).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && !((Component)player).GetComponent().inWater)) { yFpDeg = ((Component)this).transform.eulerAngles.x; } else { yFpDeg = ((Component)this).transform.eulerAngles.x - ((Component)player).GetComponent().swimming.firstPerson.cameraAngleOffset - 90f; } yFpDeg2 = yFpDeg; if (firstPerson.switchToFirstPersonIfInputButtonPressed && firstPerson.startOffInFirstPersonModeForSwitching && !mouseOrbit.startOffMouseOrbitingForSwitching) { firstPersonStart = true; firstPersonButtonPressed = true; } oldXFpDeg = ((Component)this).transform.eulerAngles.y; firstPersonCameraHeight = firstPerson.cameraHeight; if ((Object)(object)canvas == (Object)null) { canvas = GameObject.Find("Canvas"); } } private void Update() { //IL_0206: Unknown result type (might be due to invalid IL or missing references) //IL_022a: Unknown result type (might be due to invalid IL or missing references) //IL_019d: Unknown result type (might be due to invalid IL or missing references) //IL_01a7: Expected O, but got Unknown //IL_0247: Unknown result type (might be due to invalid IL or missing references) //IL_02fa: Unknown result type (might be due to invalid IL or missing references) //IL_0305: Unknown result type (might be due to invalid IL or missing references) //IL_030a: Unknown result type (might be due to invalid IL or missing references) //IL_031e: Unknown result type (might be due to invalid IL or missing references) //IL_0323: Unknown result type (might be due to invalid IL or missing references) //IL_032b: Unknown result type (might be due to invalid IL or missing references) //IL_0333: Unknown result type (might be due to invalid IL or missing references) if (Input.GetKeyDown("z")) { NewTriggered = true; } if (NewTriggered) { if (cameraDistance < NewcameraDistance) { cameraDistance += NewSpeed; } if (cameraDistance > NewcameraDistance) { cameraDistance -= NewSpeed; } } if (NewTriggered) { if (follow.cameraHeight < NewcameraHeight) { follow.cameraHeight += NewSpeed; } if (follow.cameraHeight > NewcameraHeight) { follow.cameraHeight -= NewSpeed; } } if (NewTriggered) { if (follow.playerHeight < NewplayerHeight) { follow.playerHeight += NewSpeed; } if (follow.playerHeight > NewplayerHeight) { follow.playerHeight -= NewSpeed; } if (NewTriggered) { player = NewCameraTarget; } } if ((Object)(object)canvas == (Object)null) { canvas = GameObject.Find("Canvas"); } if ((Object)(object)barHolder == (Object)null) { barHolder = new GameObject(); barHolder.AddComponent(); ((Object)barHolder.gameObject).name = "BarHolder"; barHolder.gameObject.layer = 5; } else { barHolder.transform.SetParent(canvas.transform); barHolder.GetComponent().anchoredPosition = Vector2.zero; ((Transform)barHolder.GetComponent()).localScale = new Vector3(1f, 1f, 1f); barHolder.transform.SetAsFirstSibling(); } RaycastHit val = default(RaycastHit); if (firstPerson.crouching.allowCrouching && (!Object.op_Implicit((Object)(object)((Component)player).GetComponent()) || !firstPerson.crouching.crouchWithPlayerIfPossible)) { if (!canCrouch && (Input.GetKeyDown((KeyCode)306) || Input.GetKeyDown((KeyCode)358)) && finishedCrouching) { finishedCrouching = false; canCrouch = true; } else if ((Input.GetKeyDown((KeyCode)306) || Input.GetKeyDown((KeyCode)358)) && !Physics.Linecast(((Component)this).transform.position, new Vector3(((Component)this).transform.position.x, newYPos, ((Component)this).transform.position.z), ref val, LayerMask.op_Implicit(collisionLayers)) && finishedCrouching) { finishedCrouching = false; crouching = false; canCrouch = false; } if (canCrouch && !crouching) { crouching = true; } } else { canCrouch = false; crouching = false; } finishedCrouching = true; } private void FixedUpdate() { //IL_00e5: Unknown result type (might be due to invalid IL or missing references) //IL_00ea: Unknown result type (might be due to invalid IL or missing references) //IL_0176: Unknown result type (might be due to invalid IL or missing references) //IL_0196: Unknown result type (might be due to invalid IL or missing references) //IL_019b: Unknown result type (might be due to invalid IL or missing references) //IL_01a1: Unknown result type (might be due to invalid IL or missing references) //IL_01a6: Unknown result type (might be due to invalid IL or missing references) //IL_01ab: Unknown result type (might be due to invalid IL or missing references) //IL_01b0: Unknown result type (might be due to invalid IL or missing references) //IL_01b4: Unknown result type (might be due to invalid IL or missing references) //IL_01b9: Unknown result type (might be due to invalid IL or missing references) //IL_011c: Unknown result type (might be due to invalid IL or missing references) //IL_013c: Unknown result type (might be due to invalid IL or missing references) //IL_0141: Unknown result type (might be due to invalid IL or missing references) //IL_0147: Unknown result type (might be due to invalid IL or missing references) //IL_014c: Unknown result type (might be due to invalid IL or missing references) //IL_0151: Unknown result type (might be due to invalid IL or missing references) //IL_0156: Unknown result type (might be due to invalid IL or missing references) //IL_015a: Unknown result type (might be due to invalid IL or missing references) //IL_015f: Unknown result type (might be due to invalid IL or missing references) //IL_01fd: Unknown result type (might be due to invalid IL or missing references) //IL_0202: Unknown result type (might be due to invalid IL or missing references) //IL_0246: Unknown result type (might be due to invalid IL or missing references) //IL_024b: Unknown result type (might be due to invalid IL or missing references) //IL_0274: Unknown result type (might be due to invalid IL or missing references) //IL_0279: Unknown result type (might be due to invalid IL or missing references) //IL_0283: Unknown result type (might be due to invalid IL or missing references) //IL_0299: Unknown result type (might be due to invalid IL or missing references) //IL_029e: Unknown result type (might be due to invalid IL or missing references) //IL_0332: Unknown result type (might be due to invalid IL or missing references) //IL_0342: Unknown result type (might be due to invalid IL or missing references) //IL_0352: Unknown result type (might be due to invalid IL or missing references) //IL_0357: Unknown result type (might be due to invalid IL or missing references) //IL_0358: Unknown result type (might be due to invalid IL or missing references) //IL_035d: Unknown result type (might be due to invalid IL or missing references) //IL_0362: Unknown result type (might be due to invalid IL or missing references) //IL_036e: Unknown result type (might be due to invalid IL or missing references) //IL_0389: Unknown result type (might be due to invalid IL or missing references) //IL_02b1: Unknown result type (might be due to invalid IL or missing references) //IL_02c1: Unknown result type (might be due to invalid IL or missing references) //IL_02d1: Unknown result type (might be due to invalid IL or missing references) //IL_02d6: Unknown result type (might be due to invalid IL or missing references) //IL_02dc: Unknown result type (might be due to invalid IL or missing references) //IL_02e7: Unknown result type (might be due to invalid IL or missing references) //IL_02ec: Unknown result type (might be due to invalid IL or missing references) //IL_02f1: Unknown result type (might be due to invalid IL or missing references) //IL_0302: Unknown result type (might be due to invalid IL or missing references) //IL_0307: Unknown result type (might be due to invalid IL or missing references) //IL_039b: Unknown result type (might be due to invalid IL or missing references) //IL_03ac: Unknown result type (might be due to invalid IL or missing references) //IL_03cc: Unknown result type (might be due to invalid IL or missing references) //IL_03d1: Unknown result type (might be due to invalid IL or missing references) //IL_0417: Unknown result type (might be due to invalid IL or missing references) //IL_041c: Unknown result type (might be due to invalid IL or missing references) //IL_0430: Unknown result type (might be due to invalid IL or missing references) //IL_0435: Unknown result type (might be due to invalid IL or missing references) //IL_044a: Unknown result type (might be due to invalid IL or missing references) //IL_044f: Unknown result type (might be due to invalid IL or missing references) //IL_045b: Unknown result type (might be due to invalid IL or missing references) //IL_0460: Unknown result type (might be due to invalid IL or missing references) if ((Object)(object)canvas == (Object)null) { canvas = GameObject.Find("Canvas"); } CamHeightDist(); LockOnValues(); FollowingState(); LockOnUI(); if (mouseOrbit.switchToMouseOrbitIfInputButtonPressed) { if (mouseOrbitStart) { mouseOrbitButtonPressed = true; } else { mouseOrbitButtonPressed = false; } } else { mouseOrbitButtonPressed = false; } if (firstPerson.switchToFirstPersonIfInputButtonPressed) { if (firstPersonStart) { firstPersonButtonPressed = true; } else { firstPersonButtonPressed = false; } } else { firstPersonButtonPressed = false; } FirstPersonState(); FollowingPlayerAndLockingOn(); MouseOrbitMode(); if (inFirstPersonMode) { swimmingQuat = ((Component)this).transform.localEulerAngles; } if (!follow.sideScrolling.lockXAxis && !follow.sideScrolling.lockZAxis) { Quaternion val = Quaternion.LookRotation(lookAt + new Vector3(0f, follow.playerHeight + 1f, 0f) - playerPos); finalSwimQuat = ((Quaternion)(ref val)).eulerAngles; } else { Quaternion val2 = Quaternion.LookRotation(((Component)player).transform.position + new Vector3(0f, follow.playerHeight + 0.5f, 0f) - playerPos); finalSwimQuat = ((Quaternion)(ref val2)).eulerAngles; } if (swimmingQuat.x >= 180f) { swimmingQuat = new Vector3(360f - swimmingQuat.x, swimmingQuat.y, swimmingQuat.z); } if (finalSwimQuat.x >= 180f) { finalSwimQuat = new Vector3(360f - finalSwimQuat.x, finalSwimQuat.y, finalSwimQuat.z); } if (((Component)player).GetComponent().currentHealth <= 0) { ((Component)this).transform.localRotation = Quaternion.Lerp(((Component)this).transform.localRotation, Quaternion.identity, Time.deltaTime); lookDir = ((Component)player).transform.forward; if (!inFirstPersonMode) { playerPos = playerOffset + ((Component)player).transform.up * follow.cameraHeight - lookDir * cameraDistance; lookAt = ((Component)player).transform.position; } else { Vector3 val3 = default(Vector3); ((Vector3)(ref val3))..ctor(0f, 0f - firstPersonCameraHeight, 0f); playerPos = player.position - (((Component)player).transform.forward * firstPerson.cameraDistance + val3); ((Component)this).transform.position = playerPos; ((Component)this).transform.eulerAngles = ((Component)player).transform.eulerAngles; } ((Component)this).transform.position = playerPos; ((Component)this).transform.LookAt(lookAt + new Vector3(0f, follow.playerHeight + 1f, 0f)); desiredDistance = Mathf.Clamp(desiredDistance, mouseOrbitMaxDistance, mouseOrbitMaxDistance); correctedDistance = desiredDistance; currentDistance = desiredDistance; xDeg = ((Component)this).transform.eulerAngles.y; yDeg = ((Component)this).transform.eulerAngles.x; rotation = ((Component)this).transform.rotation; position = ((Component)this).transform.position; } } private void CamHeightDist() { //IL_01c0: Unknown result type (might be due to invalid IL or missing references) //IL_01c5: Unknown result type (might be due to invalid IL or missing references) //IL_0198: Unknown result type (might be due to invalid IL or missing references) //IL_019d: Unknown result type (might be due to invalid IL or missing references) //IL_0240: Unknown result type (might be due to invalid IL or missing references) //IL_0250: Unknown result type (might be due to invalid IL or missing references) //IL_0300: Unknown result type (might be due to invalid IL or missing references) //IL_0310: Unknown result type (might be due to invalid IL or missing references) //IL_02a8: Unknown result type (might be due to invalid IL or missing references) //IL_02b8: Unknown result type (might be due to invalid IL or missing references) //IL_0360: Unknown result type (might be due to invalid IL or missing references) //IL_0365: Unknown result type (might be due to invalid IL or missing references) //IL_03aa: Unknown result type (might be due to invalid IL or missing references) //IL_03af: Unknown result type (might be due to invalid IL or missing references) //IL_037e: Unknown result type (might be due to invalid IL or missing references) //IL_0383: Unknown result type (might be due to invalid IL or missing references) //IL_03c8: Unknown result type (might be due to invalid IL or missing references) //IL_03cd: Unknown result type (might be due to invalid IL or missing references) //IL_0491: Unknown result type (might be due to invalid IL or missing references) //IL_04ac: Unknown result type (might be due to invalid IL or missing references) //IL_04b1: Unknown result type (might be due to invalid IL or missing references) //IL_04b6: Unknown result type (might be due to invalid IL or missing references) //IL_04bb: Unknown result type (might be due to invalid IL or missing references) //IL_0716: Unknown result type (might be due to invalid IL or missing references) //IL_071b: Unknown result type (might be due to invalid IL or missing references) //IL_057b: Unknown result type (might be due to invalid IL or missing references) //IL_0580: Unknown result type (might be due to invalid IL or missing references) //IL_0509: Unknown result type (might be due to invalid IL or missing references) //IL_0524: Unknown result type (might be due to invalid IL or missing references) //IL_0529: Unknown result type (might be due to invalid IL or missing references) //IL_052e: Unknown result type (might be due to invalid IL or missing references) //IL_0533: Unknown result type (might be due to invalid IL or missing references) //IL_0538: Unknown result type (might be due to invalid IL or missing references) //IL_06dc: Unknown result type (might be due to invalid IL or missing references) //IL_06f9: Unknown result type (might be due to invalid IL or missing references) //IL_06fe: Unknown result type (might be due to invalid IL or missing references) //IL_0703: Unknown result type (might be due to invalid IL or missing references) //IL_0708: Unknown result type (might be due to invalid IL or missing references) //IL_070d: Unknown result type (might be due to invalid IL or missing references) //IL_05cc: Unknown result type (might be due to invalid IL or missing references) //IL_05d1: Unknown result type (might be due to invalid IL or missing references) //IL_068e: Unknown result type (might be due to invalid IL or missing references) //IL_06b0: Unknown result type (might be due to invalid IL or missing references) //IL_06b5: Unknown result type (might be due to invalid IL or missing references) //IL_06ba: Unknown result type (might be due to invalid IL or missing references) //IL_06bf: Unknown result type (might be due to invalid IL or missing references) //IL_06c4: Unknown result type (might be due to invalid IL or missing references) //IL_0607: Unknown result type (might be due to invalid IL or missing references) //IL_060c: Unknown result type (might be due to invalid IL or missing references) //IL_0642: Unknown result type (might be due to invalid IL or missing references) //IL_0647: Unknown result type (might be due to invalid IL or missing references) if (firstPerson.crouching.allowCrouching) { if (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && firstPerson.crouching.crouchWithPlayerIfPossible) { if (!((Component)player).GetComponent().crouching) { firstPersonCameraHeight = Mathf.Lerp(firstPersonCameraHeight, firstPerson.cameraHeight, firstPerson.crouching.crouchSpeed * Time.deltaTime); } else { firstPersonCameraHeight = Mathf.Lerp(firstPersonCameraHeight, firstPerson.cameraHeight * firstPerson.crouching.crouchCameraHeightMultiple, firstPerson.crouching.crouchSpeed * Time.deltaTime); } } else if (!crouching) { firstPersonCameraHeight = Mathf.Lerp(firstPersonCameraHeight, firstPerson.cameraHeight, firstPerson.crouching.crouchSpeed * Time.deltaTime); } else { firstPersonCameraHeight = Mathf.Lerp(firstPersonCameraHeight, firstPerson.cameraHeight * firstPerson.crouching.crouchCameraHeightMultiple, firstPerson.crouching.crouchSpeed * Time.deltaTime); } } else { firstPersonCameraHeight = firstPerson.cameraHeight; } if (crouching) { newYPos = oldYPos + (((Component)this).transform.position.y - oldYPos); } else { oldYPos = ((Component)this).transform.position.y; } float num; float num2; if (follow.cameraHeight <= 1f) { num = 0.4f; num2 = 0.6f; } else { num = 0.65f; num2 = 0.35f; } if (cameraDistance >= 0.6f) { mouseOrbitMaxDistance = (cameraDistance + 0.73f * (1f + 1.5f / cameraDistance) / 1.8577f / Vector3.Distance(position, ((Component)player).transform.position)) * (num + follow.cameraHeight * num2); } else if (cameraDistance >= 0.4f) { mouseOrbitMaxDistance = (cameraDistance + 0.73f * (1f + cameraDistance) / 0.84f / Vector3.Distance(position, ((Component)player).transform.position)) * (num + follow.cameraHeight * num2); } else { mouseOrbitMaxDistance = (cameraDistance + 0.73f * (20f + cameraDistance) / 10.9338f / Vector3.Distance(position, ((Component)player).transform.position)) * (num + follow.cameraHeight * num2); } mouseOrbitMinDistance = mouseOrbit.minZoomInDistance; viewFrustum = CalculateViewFrustum(((Component)this).GetComponent(), ref nearClipDimensions); if (((Component)this).transform.eulerAngles.x >= 90f && ((Component)this).transform.eulerAngles.x < 180f) { camTooRotated = true; } else if (((Component)this).transform.eulerAngles.x <= 60f || (((Component)this).transform.eulerAngles.x <= 75f && ((!((Component)player).GetComponent().swimming.invertYRotation && Input.GetAxis("Vertical") <= 0f) || (((Component)player).GetComponent().swimming.invertYRotation && Input.GetAxis("Vertical") >= 0f)))) { camTooRotated = false; } if (!Object.op_Implicit((Object)(object)((Component)player).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && !((Component)player).GetComponent().inWater)) { playerOffset = ((Component)player).transform.position + follow.cameraHeight * ((Component)player).transform.up; } else if (!camTooRotated && !follow.sideScrolling.lockXAxis && !follow.sideScrolling.lockZAxis) { playerOffset = ((Component)player).transform.position + follow.cameraHeight * -((Component)player).transform.forward; } else { if (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && ((Collider)((Component)player).GetComponent()).enabled) { playerColliderHeight = ((Component)player).GetComponent().center.y; } else if (Object.op_Implicit((Object)(object)((Component)player).GetComponent())) { if (Object.op_Implicit((Object)(object)((Component)player).GetComponent())) { playerColliderHeight = ((Component)player).GetComponent().center.y; } else if (Object.op_Implicit((Object)(object)((Component)player).GetComponent())) { playerColliderHeight = ((Component)player).GetComponent().center.y; } else if (Object.op_Implicit((Object)(object)((Component)player).GetComponent())) { playerColliderHeight = ((Component)player).GetComponent().center.y; } } if (!follow.sideScrolling.lockXAxis && !follow.sideScrolling.lockZAxis) { playerOffset = ((Component)player).transform.position + (follow.cameraHeight - playerColliderHeight) * -((Component)player).transform.up; } else { playerOffset = ((Component)player).transform.position + (follow.cameraHeight - playerColliderHeight) * -((Component)this).transform.forward; } } playerPos = Vector3.zero; arrowPointerBounceHeightHalf = Mathf.Abs(lockingOn.lockingOnToTags.arrowPointerBounceHeight) / 2f; } private void LockOnValues() { LockOnVal1(); LockOnVal2(); LockOnVal3(); LockOnVal4(); } private void LockOnVal1() { if (lockingOn.lockingOnToTags.tagsToLockOnTo != null) { for (int num = targetableObjects.Count - 1; num > -1; num--) { if ((Object)(object)targetableObjects[num] != (Object)null && !lockingOn.lockingOnToTags.tagsToLockOnTo.Contains(targetableObjects[num].tag)) { targetableObjects.RemoveAt(num); } } if ((Object)(object)closestTarget != (Object)null && !lockingOn.lockingOnToTags.tagsToLockOnTo.Contains(closestTarget.tag)) { closestTarget = null; } foreach (string item2 in lockingOn.lockingOnToTags.tagsToLockOnTo) { if (item2 == null || GameObject.FindGameObjectsWithTag(item2) == null) { continue; } GameObject[] array = GameObject.FindGameObjectsWithTag(item2); foreach (GameObject item in array) { if (!targetableObjects.Contains(item)) { targetableObjects.Add(item); } } } } for (int num2 = targetableObjects.Count - 1; num2 > -1; num2--) { if ((Object)(object)targetableObjects[num2] == (Object)null) { targetableObjects.RemoveAt(num2); } } } private void LockOnVal2() { //IL_0029: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003e: Unknown result type (might be due to invalid IL or missing references) //IL_0043: Unknown result type (might be due to invalid IL or missing references) //IL_0056: Unknown result type (might be due to invalid IL or missing references) //IL_0061: Unknown result type (might be due to invalid IL or missing references) //IL_0083: Unknown result type (might be due to invalid IL or missing references) //IL_008e: Unknown result type (might be due to invalid IL or missing references) //IL_0129: Unknown result type (might be due to invalid IL or missing references) //IL_0139: Unknown result type (might be due to invalid IL or missing references) float num = float.PositiveInfinity; foreach (GameObject targetableObject in targetableObjects) { Vector3 val = targetableObject.transform.position - ((Component)player).transform.position; curDistance = ((Vector3)(ref val)).sqrMagnitude; if (Vector3.Distance(targetableObject.transform.position, ((Component)this).transform.position) * 4f >= 25f) { dist = Vector3.Distance(targetableObject.transform.position, ((Component)this).transform.position) * 4f; } if (curDistance < num && (!lockedOnToTarget || (lockedOnToTarget && !lockingOn.lockingOnToTags.targetSameObjectWhileLockedOn))) { closestTarget = targetableObject; num = curDistance; } } if ((Object)(object)closestTarget != (Object)null) { distanceFromClosestTarget = Vector3.Distance(((Component)player).transform.position, closestTarget.transform.position); } if (lockedOnToTarget && distanceFromClosestTarget > lockingOn.lockingOnToTags.lockOutDistance) { canLockOn = false; } else if (!Input.GetButton(lockingOn.lockOnInputButton) || Input.GetAxis(lockingOn.lockOnInputButton) == 0f || distanceFromClosestTarget <= lockingOn.lockingOnToTags.lockInDistance) { canLockOn = true; } } private void LockOnVal3() { //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Unknown result type (might be due to invalid IL or missing references) Rect rect = canvas.GetComponent().rect; halfScreenHeight = ((Rect)(ref rect)).height / 2f; if (lockingOn.allowLockingOn && canLockOn && (Input.GetButton(lockingOn.lockOnInputButton) || Input.GetAxis(lockingOn.lockOnInputButton) != 0f)) { barHeight = Mathf.SmoothStep(barHeight, halfScreenHeight * (lockingOn.barCoverage / 100f), lockingOn.lockOnSpeed / 4f); lockedOn = true; following = false; return; } barHeight = Mathf.SmoothStep(barHeight, 0f, lockingOn.lockOnSpeed / 4f); if ((lockedOn && (!Input.GetButton(lockingOn.lockOnInputButton) || Input.GetAxis(lockingOn.lockOnInputButton) == 0f || !canLockOn)) || !lockingOn.allowLockingOn) { following = true; lockedOn = false; } } private void LockOnVal4() { //IL_0247: Unknown result type (might be due to invalid IL or missing references) //IL_024c: Unknown result type (might be due to invalid IL or missing references) //IL_0087: Unknown result type (might be due to invalid IL or missing references) //IL_008c: Unknown result type (might be due to invalid IL or missing references) //IL_025e: Unknown result type (might be due to invalid IL or missing references) //IL_0263: Unknown result type (might be due to invalid IL or missing references) //IL_0186: Unknown result type (might be due to invalid IL or missing references) //IL_018b: Unknown result type (might be due to invalid IL or missing references) //IL_00ed: Unknown result type (might be due to invalid IL or missing references) //IL_00f3: Unknown result type (might be due to invalid IL or missing references) //IL_00d2: Unknown result type (might be due to invalid IL or missing references) //IL_00d7: Unknown result type (might be due to invalid IL or missing references) //IL_01ec: Unknown result type (might be due to invalid IL or missing references) //IL_01f2: Unknown result type (might be due to invalid IL or missing references) //IL_01d1: Unknown result type (might be due to invalid IL or missing references) //IL_01d6: Unknown result type (might be due to invalid IL or missing references) //IL_010a: Unknown result type (might be due to invalid IL or missing references) //IL_011a: Unknown result type (might be due to invalid IL or missing references) //IL_012a: Unknown result type (might be due to invalid IL or missing references) //IL_012f: Unknown result type (might be due to invalid IL or missing references) //IL_0367: Unknown result type (might be due to invalid IL or missing references) //IL_036c: Unknown result type (might be due to invalid IL or missing references) //IL_0371: Unknown result type (might be due to invalid IL or missing references) //IL_0209: Unknown result type (might be due to invalid IL or missing references) //IL_0219: Unknown result type (might be due to invalid IL or missing references) //IL_0229: Unknown result type (might be due to invalid IL or missing references) //IL_022e: Unknown result type (might be due to invalid IL or missing references) if (follow.stayBehindPlayerWhileClimbingLedgeOrWall && !follow.sideScrolling.lockXAxis && !follow.sideScrolling.lockZAxis) { if (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && (((Component)player).GetComponent().turnBack || ((Component)player).GetComponent().back2)) { if (((Component)player).GetComponent().rotationHit != Vector3.zero) { playerForward = new Vector3(((Component)player).GetComponent().rotationHit.x, lookDir.y, ((Component)player).GetComponent().rotationHit.z); } else if (Quaternion.Angle(((Component)player).transform.rotation, lastPlayerRot) <= 3f) { playerForward = Vector3.Lerp(playerForward, ((Component)player).transform.forward, 5f * Time.deltaTime); } } else if (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && (((Component)player).GetComponent().turnBack || ((Component)player).GetComponent().back2)) { if (((Component)player).GetComponent().backHit != Vector3.zero) { playerForward = new Vector3(((Component)player).GetComponent().backHit.x, lookDir.y, ((Component)player).GetComponent().backHit.z); } else if (Quaternion.Angle(((Component)player).transform.rotation, lastPlayerRot) <= 3f) { playerForward = Vector3.Lerp(playerForward, ((Component)player).transform.forward, 5f * Time.deltaTime); } } else { playerForward = ((Component)player).transform.forward; } lastPlayerRot = ((Component)player).transform.rotation; if ((Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && ((((Component)player).GetComponent().currentlyClimbingWall && ((Component)player).GetComponent().finishedRotatingToWall) || ((Component)player).GetComponent().turnBack || ((Component)player).GetComponent().back2 || (((Component)player).GetComponent().turningToWall && inFirstPersonMode))) || (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && (((Component)player).GetComponent().grabbedOn || ((Component)player).GetComponent().turnBack || ((Component)player).GetComponent().back2))) { playerClimbing = true; } else { playerClimbing = false; playerForward = -((Component)player).transform.forward; } } else { playerClimbing = false; } if (inFirstPersonMode) { if ((Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && (((Component)player).GetComponent().turnBack || ((Component)player).GetComponent().back2 || (((Component)player).GetComponent().turningToWall && inFirstPersonMode))) || (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && (((Component)player).GetComponent().turnBack || ((Component)player).GetComponent().back2))) { turningToClimb = true; } else { turningToClimb = false; } } } private void FollowingState() { Following1(); LockingOn1(); } private void Following1() { //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0029: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0049: Unknown result type (might be due to invalid IL or missing references) //IL_0073: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_008c: Unknown result type (might be due to invalid IL or missing references) //IL_008e: Unknown result type (might be due to invalid IL or missing references) //IL_0093: Unknown result type (might be due to invalid IL or missing references) //IL_00a4: Unknown result type (might be due to invalid IL or missing references) //IL_00a6: Unknown result type (might be due to invalid IL or missing references) //IL_00ab: Unknown result type (might be due to invalid IL or missing references) //IL_0ba6: Unknown result type (might be due to invalid IL or missing references) //IL_0bab: Unknown result type (might be due to invalid IL or missing references) //IL_0bb5: Unknown result type (might be due to invalid IL or missing references) //IL_0bc1: Unknown result type (might be due to invalid IL or missing references) //IL_0bc7: Unknown result type (might be due to invalid IL or missing references) //IL_0bd7: Unknown result type (might be due to invalid IL or missing references) //IL_0bdc: Unknown result type (might be due to invalid IL or missing references) //IL_0be3: Unknown result type (might be due to invalid IL or missing references) //IL_0bf3: Unknown result type (might be due to invalid IL or missing references) //IL_0c03: Unknown result type (might be due to invalid IL or missing references) //IL_0c08: Unknown result type (might be due to invalid IL or missing references) //IL_0c0e: Unknown result type (might be due to invalid IL or missing references) //IL_0c19: Unknown result type (might be due to invalid IL or missing references) //IL_0c1e: Unknown result type (might be due to invalid IL or missing references) //IL_0c23: Unknown result type (might be due to invalid IL or missing references) //IL_0c34: Unknown result type (might be due to invalid IL or missing references) //IL_0c39: Unknown result type (might be due to invalid IL or missing references) //IL_015d: Unknown result type (might be due to invalid IL or missing references) //IL_0209: Unknown result type (might be due to invalid IL or missing references) //IL_020e: Unknown result type (might be due to invalid IL or missing references) //IL_021b: Unknown result type (might be due to invalid IL or missing references) //IL_091a: Unknown result type (might be due to invalid IL or missing references) //IL_092a: Unknown result type (might be due to invalid IL or missing references) //IL_093a: Unknown result type (might be due to invalid IL or missing references) //IL_093f: Unknown result type (might be due to invalid IL or missing references) //IL_0945: Unknown result type (might be due to invalid IL or missing references) //IL_094a: Unknown result type (might be due to invalid IL or missing references) //IL_0955: Unknown result type (might be due to invalid IL or missing references) //IL_095a: Unknown result type (might be due to invalid IL or missing references) //IL_095f: Unknown result type (might be due to invalid IL or missing references) //IL_0185: Unknown result type (might be due to invalid IL or missing references) //IL_0195: Unknown result type (might be due to invalid IL or missing references) //IL_04df: Unknown result type (might be due to invalid IL or missing references) //IL_04ef: Unknown result type (might be due to invalid IL or missing references) //IL_04ff: Unknown result type (might be due to invalid IL or missing references) //IL_0504: Unknown result type (might be due to invalid IL or missing references) //IL_0518: Unknown result type (might be due to invalid IL or missing references) //IL_051d: Unknown result type (might be due to invalid IL or missing references) //IL_0528: Unknown result type (might be due to invalid IL or missing references) //IL_052d: Unknown result type (might be due to invalid IL or missing references) //IL_0532: Unknown result type (might be due to invalid IL or missing references) //IL_038d: Unknown result type (might be due to invalid IL or missing references) //IL_039d: Unknown result type (might be due to invalid IL or missing references) //IL_03ad: Unknown result type (might be due to invalid IL or missing references) //IL_03b2: Unknown result type (might be due to invalid IL or missing references) //IL_03c6: Unknown result type (might be due to invalid IL or missing references) //IL_03cb: Unknown result type (might be due to invalid IL or missing references) //IL_03d6: Unknown result type (might be due to invalid IL or missing references) //IL_03db: Unknown result type (might be due to invalid IL or missing references) //IL_03e0: Unknown result type (might be due to invalid IL or missing references) //IL_0243: Unknown result type (might be due to invalid IL or missing references) //IL_0253: Unknown result type (might be due to invalid IL or missing references) //IL_07c6: Unknown result type (might be due to invalid IL or missing references) //IL_07d6: Unknown result type (might be due to invalid IL or missing references) //IL_07e6: Unknown result type (might be due to invalid IL or missing references) //IL_07eb: Unknown result type (might be due to invalid IL or missing references) //IL_07ff: Unknown result type (might be due to invalid IL or missing references) //IL_0804: Unknown result type (might be due to invalid IL or missing references) //IL_080f: Unknown result type (might be due to invalid IL or missing references) //IL_0814: Unknown result type (might be due to invalid IL or missing references) //IL_0819: Unknown result type (might be due to invalid IL or missing references) //IL_0673: Unknown result type (might be due to invalid IL or missing references) //IL_0683: Unknown result type (might be due to invalid IL or missing references) //IL_0693: Unknown result type (might be due to invalid IL or missing references) //IL_0698: Unknown result type (might be due to invalid IL or missing references) //IL_06ac: Unknown result type (might be due to invalid IL or missing references) //IL_06b1: Unknown result type (might be due to invalid IL or missing references) //IL_06bc: Unknown result type (might be due to invalid IL or missing references) //IL_06c1: Unknown result type (might be due to invalid IL or missing references) //IL_06c6: Unknown result type (might be due to invalid IL or missing references) //IL_054a: Unknown result type (might be due to invalid IL or missing references) //IL_054f: Unknown result type (might be due to invalid IL or missing references) //IL_056e: Unknown result type (might be due to invalid IL or missing references) //IL_057e: Unknown result type (might be due to invalid IL or missing references) //IL_0583: Unknown result type (might be due to invalid IL or missing references) //IL_0592: Unknown result type (might be due to invalid IL or missing references) //IL_0597: Unknown result type (might be due to invalid IL or missing references) //IL_05a0: Unknown result type (might be due to invalid IL or missing references) //IL_05b0: Unknown result type (might be due to invalid IL or missing references) //IL_05b5: Unknown result type (might be due to invalid IL or missing references) //IL_05c9: Unknown result type (might be due to invalid IL or missing references) //IL_05ce: Unknown result type (might be due to invalid IL or missing references) //IL_05d9: Unknown result type (might be due to invalid IL or missing references) //IL_05de: Unknown result type (might be due to invalid IL or missing references) //IL_05e3: Unknown result type (might be due to invalid IL or missing references) //IL_03f8: Unknown result type (might be due to invalid IL or missing references) //IL_03fd: Unknown result type (might be due to invalid IL or missing references) //IL_041b: Unknown result type (might be due to invalid IL or missing references) //IL_042b: Unknown result type (might be due to invalid IL or missing references) //IL_0430: Unknown result type (might be due to invalid IL or missing references) //IL_043f: Unknown result type (might be due to invalid IL or missing references) //IL_0444: Unknown result type (might be due to invalid IL or missing references) //IL_044d: Unknown result type (might be due to invalid IL or missing references) //IL_045d: Unknown result type (might be due to invalid IL or missing references) //IL_0462: Unknown result type (might be due to invalid IL or missing references) //IL_0476: Unknown result type (might be due to invalid IL or missing references) //IL_047b: Unknown result type (might be due to invalid IL or missing references) //IL_0486: Unknown result type (might be due to invalid IL or missing references) //IL_048b: Unknown result type (might be due to invalid IL or missing references) //IL_0490: Unknown result type (might be due to invalid IL or missing references) //IL_01bd: Unknown result type (might be due to invalid IL or missing references) //IL_01c8: Unknown result type (might be due to invalid IL or missing references) //IL_01d8: Unknown result type (might be due to invalid IL or missing references) //IL_01e7: Unknown result type (might be due to invalid IL or missing references) //IL_01ec: Unknown result type (might be due to invalid IL or missing references) //IL_0847: Unknown result type (might be due to invalid IL or missing references) //IL_084c: Unknown result type (might be due to invalid IL or missing references) //IL_0855: Unknown result type (might be due to invalid IL or missing references) //IL_0860: Unknown result type (might be due to invalid IL or missing references) //IL_0865: Unknown result type (might be due to invalid IL or missing references) //IL_0874: Unknown result type (might be due to invalid IL or missing references) //IL_0879: Unknown result type (might be due to invalid IL or missing references) //IL_0887: Unknown result type (might be due to invalid IL or missing references) //IL_0897: Unknown result type (might be due to invalid IL or missing references) //IL_089c: Unknown result type (might be due to invalid IL or missing references) //IL_08b0: Unknown result type (might be due to invalid IL or missing references) //IL_08b5: Unknown result type (might be due to invalid IL or missing references) //IL_08c0: Unknown result type (might be due to invalid IL or missing references) //IL_08c5: Unknown result type (might be due to invalid IL or missing references) //IL_08ca: Unknown result type (might be due to invalid IL or missing references) //IL_06f4: Unknown result type (might be due to invalid IL or missing references) //IL_06f9: Unknown result type (might be due to invalid IL or missing references) //IL_0702: Unknown result type (might be due to invalid IL or missing references) //IL_070d: Unknown result type (might be due to invalid IL or missing references) //IL_0712: Unknown result type (might be due to invalid IL or missing references) //IL_0721: Unknown result type (might be due to invalid IL or missing references) //IL_0726: Unknown result type (might be due to invalid IL or missing references) //IL_0734: Unknown result type (might be due to invalid IL or missing references) //IL_0744: Unknown result type (might be due to invalid IL or missing references) //IL_0749: Unknown result type (might be due to invalid IL or missing references) //IL_075d: Unknown result type (might be due to invalid IL or missing references) //IL_0762: Unknown result type (might be due to invalid IL or missing references) //IL_076d: Unknown result type (might be due to invalid IL or missing references) //IL_0772: Unknown result type (might be due to invalid IL or missing references) //IL_0777: Unknown result type (might be due to invalid IL or missing references) //IL_02b2: Unknown result type (might be due to invalid IL or missing references) //IL_02bd: Unknown result type (might be due to invalid IL or missing references) //IL_02c2: Unknown result type (might be due to invalid IL or missing references) //IL_02c7: Unknown result type (might be due to invalid IL or missing references) //IL_02cc: Unknown result type (might be due to invalid IL or missing references) //IL_02e3: Unknown result type (might be due to invalid IL or missing references) //IL_02e9: Unknown result type (might be due to invalid IL or missing references) //IL_02ff: Unknown result type (might be due to invalid IL or missing references) //IL_0304: Unknown result type (might be due to invalid IL or missing references) //IL_027b: Unknown result type (might be due to invalid IL or missing references) //IL_0286: Unknown result type (might be due to invalid IL or missing references) //IL_0296: Unknown result type (might be due to invalid IL or missing references) //IL_02a5: Unknown result type (might be due to invalid IL or missing references) //IL_02aa: Unknown result type (might be due to invalid IL or missing references) //IL_0a0e: Unknown result type (might be due to invalid IL or missing references) //IL_0a13: Unknown result type (might be due to invalid IL or missing references) //IL_09e8: Unknown result type (might be due to invalid IL or missing references) //IL_09ed: Unknown result type (might be due to invalid IL or missing references) //IL_0a34: Unknown result type (might be due to invalid IL or missing references) //IL_0a39: Unknown result type (might be due to invalid IL or missing references) //IL_0a49: Unknown result type (might be due to invalid IL or missing references) //IL_0a54: Unknown result type (might be due to invalid IL or missing references) //IL_0a8e: Unknown result type (might be due to invalid IL or missing references) //IL_0a99: Unknown result type (might be due to invalid IL or missing references) //IL_0ac9: Unknown result type (might be due to invalid IL or missing references) //IL_0ace: Unknown result type (might be due to invalid IL or missing references) //IL_0ade: Unknown result type (might be due to invalid IL or missing references) //IL_0ae3: Unknown result type (might be due to invalid IL or missing references) //IL_0ae9: Unknown result type (might be due to invalid IL or missing references) //IL_0aee: Unknown result type (might be due to invalid IL or missing references) //IL_0af9: Unknown result type (might be due to invalid IL or missing references) //IL_0afe: Unknown result type (might be due to invalid IL or missing references) //IL_0b03: Unknown result type (might be due to invalid IL or missing references) //IL_0b0e: Unknown result type (might be due to invalid IL or missing references) //IL_0b14: Unknown result type (might be due to invalid IL or missing references) if (following && !playerClimbing) { lookAt = ((Component)player).transform.position; ((Component)this).transform.localRotation = Quaternion.Lerp(((Component)this).transform.localRotation, Quaternion.identity, Time.deltaTime); Vector3 val = default(Vector3); ((Vector3)(ref val))..ctor(Input.GetAxis("Horizontal"), 0f, Input.GetAxis("Vertical")); if (val != Vector3.zero) { float magnitude = ((Vector3)(ref val)).magnitude; val /= magnitude; magnitude = Mathf.Min(1f, magnitude); magnitude *= magnitude; val *= magnitude; } if ((((Vector3)(ref val)).magnitude > 0.2f && Mathf.Abs(Input.GetAxis("Horizontal")) >= 0.01f) || (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && ((Component)player).GetComponent().inWater && Input.GetButton("Jump"))) { if (!Object.op_Implicit((Object)(object)((Component)player).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && !((Component)player).GetComponent().inWater)) { vector2 = Vector3.Lerp(((Component)player).transform.right * ((!(Input.GetAxis("Horizontal") >= 0f)) ? 1f : (-1f)), ((Component)player).transform.forward * ((!(Input.GetAxis("Vertical") >= 0f)) ? (-1f) : 1f), Mathf.Abs(Vector3.Dot(((Component)this).transform.forward, ((Component)player).transform.forward))); } else { vector2 = Vector3.Lerp(new Vector3(0f, ((Component)player).transform.right.y, 0f) * ((!(Input.GetAxis("Horizontal") >= 0f)) ? 1f : (-1f)), ((Component)player).transform.forward * ((!(Input.GetAxis("Vertical") >= 0f)) ? (-1f) : 1f), Mathf.Abs(Vector3.Dot(((Component)this).transform.forward, ((Component)player).transform.forward))); } lookDir = Vector3.Normalize(playerOffset - ((Component)this).transform.position); lookDir.y = 0f; lookDir = Vector3.SmoothDamp(lookDir, vector2, ref velocityLookDir, follow.rotationDampening); } if (follow.sideScrolling.lockXAxis && !follow.sideScrolling.lockZAxis) { if (!follow.sideScrolling.flipAxis) { if (!Object.op_Implicit((Object)(object)((Component)player).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && !((Component)player).GetComponent().inWater)) { playerPos = playerOffset + ((Component)player).transform.up * follow.cameraHeight - Vector3.Normalize(new Vector3(1f, 0f, 0f)) * cameraDistance; } else { playerPos = new Vector3(((Component)player).transform.position.x, playerOffset.y, playerOffset.z) + new Vector3(0f, ((Component)this).transform.up.y, ((Component)this).transform.up.z) * follow.cameraHeight - Vector3.Normalize(new Vector3(1f, 0f, 0f)) * cameraDistance; } } else if (!Object.op_Implicit((Object)(object)((Component)player).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && !((Component)player).GetComponent().inWater)) { playerPos = playerOffset + ((Component)player).transform.up * follow.cameraHeight - Vector3.Normalize(new Vector3(-1f, 0f, 0f)) * cameraDistance; } else { playerPos = new Vector3(((Component)player).transform.position.x, playerOffset.y, playerOffset.z) + new Vector3(0f, ((Component)this).transform.up.y, ((Component)this).transform.up.z) * follow.cameraHeight - Vector3.Normalize(new Vector3(-1f, 0f, 0f)) * cameraDistance; } return; } if (follow.sideScrolling.lockZAxis && !follow.sideScrolling.lockXAxis) { if (!follow.sideScrolling.flipAxis) { if (!Object.op_Implicit((Object)(object)((Component)player).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && !((Component)player).GetComponent().inWater)) { playerPos = playerOffset + ((Component)player).transform.up * follow.cameraHeight - Vector3.Normalize(new Vector3(0f, 0f, 1f)) * cameraDistance; } else { playerPos = new Vector3(playerOffset.x, playerOffset.y, ((Component)player).transform.position.z) + new Vector3(((Component)this).transform.up.x, ((Component)this).transform.up.y, 0f) * follow.cameraHeight - Vector3.Normalize(new Vector3(0f, 0f, 1f)) * cameraDistance; } } else if (!Object.op_Implicit((Object)(object)((Component)player).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && !((Component)player).GetComponent().inWater)) { playerPos = playerOffset + ((Component)player).transform.up * follow.cameraHeight - Vector3.Normalize(new Vector3(0f, 0f, -1f)) * cameraDistance; } else { playerPos = new Vector3(playerOffset.x, playerOffset.y, ((Component)player).transform.position.z) + new Vector3(((Component)this).transform.up.x, ((Component)this).transform.up.y, 0f) * follow.cameraHeight - Vector3.Normalize(new Vector3(0f, 0f, -1f)) * cameraDistance; } return; } if (!Object.op_Implicit((Object)(object)((Component)player).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && !((Component)player).GetComponent().inWater)) { playerPos = playerOffset + ((Component)player).transform.up * follow.cameraHeight - Vector3.Normalize(lookDir) * cameraDistance; return; } playerYDeg = ((Component)player).GetComponent().yDeg; if (((Component)player).GetComponent().yDeg >= 90f) { playerYDeg2 = ((Component)player).GetComponent().yDeg - 90f; } else { playerYDeg2 = 0f; } if (playerYDeg <= 90f) { playerYRot = ((Component)player).transform.eulerAngles.y; } else { playerYRot = Mathf.Abs(((Component)player).transform.eulerAngles.y + 180f); } cameraYRot = ((Component)this).transform.eulerAngles.y; playerPos = playerOffset + (((Component)this).transform.forward * (0.5f - playerYDeg2 * 2f / 90f - Mathf.Abs(Mathf.DeltaAngle(cameraYRot, playerYRot)) / 90f) + ((Component)this).transform.up * (0.75f * (1f + (playerYDeg + 90f * (playerYDeg / 180f)) / 180f))) * follow.cameraHeight - Vector3.Normalize(lookDir) * cameraDistance; if (Vector3.Distance(((Component)this).transform.position, playerPos) < 0.5f) { atFPPoint = true; } } else if (playerClimbing && follow.stayBehindPlayerWhileClimbingLedgeOrWall && (!lockedOn || !lockingOn.allowLockingOn) && !follow.sideScrolling.lockXAxis && !follow.sideScrolling.lockZAxis) { ((Component)this).transform.localRotation = Quaternion.Lerp(((Component)this).transform.localRotation, Quaternion.identity, Time.deltaTime); lookDir = Vector3.Slerp(lookDir, playerForward, 6f * Time.deltaTime); playerPos = playerOffset + ((Component)player).transform.up * follow.cameraHeight - lookDir * cameraDistance; lookAt = ((Component)player).transform.position; } } private void LockingOn1() { //IL_056b: Unknown result type (might be due to invalid IL or missing references) //IL_0570: Unknown result type (might be due to invalid IL or missing references) //IL_057a: Unknown result type (might be due to invalid IL or missing references) //IL_0590: Unknown result type (might be due to invalid IL or missing references) //IL_0595: Unknown result type (might be due to invalid IL or missing references) //IL_07f4: Unknown result type (might be due to invalid IL or missing references) //IL_0804: Unknown result type (might be due to invalid IL or missing references) //IL_0814: Unknown result type (might be due to invalid IL or missing references) //IL_0819: Unknown result type (might be due to invalid IL or missing references) //IL_081b: Unknown result type (might be due to invalid IL or missing references) //IL_0820: Unknown result type (might be due to invalid IL or missing references) //IL_0825: Unknown result type (might be due to invalid IL or missing references) //IL_0831: Unknown result type (might be due to invalid IL or missing references) //IL_05e8: Unknown result type (might be due to invalid IL or missing references) //IL_05f8: Unknown result type (might be due to invalid IL or missing references) //IL_0608: Unknown result type (might be due to invalid IL or missing references) //IL_060d: Unknown result type (might be due to invalid IL or missing references) //IL_0613: Unknown result type (might be due to invalid IL or missing references) //IL_061e: Unknown result type (might be due to invalid IL or missing references) //IL_0623: Unknown result type (might be due to invalid IL or missing references) //IL_0628: Unknown result type (might be due to invalid IL or missing references) //IL_07a3: Unknown result type (might be due to invalid IL or missing references) //IL_07a8: Unknown result type (might be due to invalid IL or missing references) //IL_0636: Unknown result type (might be due to invalid IL or missing references) //IL_0646: Unknown result type (might be due to invalid IL or missing references) //IL_0656: Unknown result type (might be due to invalid IL or missing references) //IL_065b: Unknown result type (might be due to invalid IL or missing references) //IL_066b: Unknown result type (might be due to invalid IL or missing references) //IL_0676: Unknown result type (might be due to invalid IL or missing references) //IL_067b: Unknown result type (might be due to invalid IL or missing references) //IL_0680: Unknown result type (might be due to invalid IL or missing references) //IL_0696: Unknown result type (might be due to invalid IL or missing references) //IL_069b: Unknown result type (might be due to invalid IL or missing references) //IL_06a9: Unknown result type (might be due to invalid IL or missing references) //IL_088d: Unknown result type (might be due to invalid IL or missing references) //IL_06d1: Unknown result type (might be due to invalid IL or missing references) //IL_06e1: Unknown result type (might be due to invalid IL or missing references) //IL_013d: Unknown result type (might be due to invalid IL or missing references) //IL_0142: Unknown result type (might be due to invalid IL or missing references) //IL_0155: Unknown result type (might be due to invalid IL or missing references) //IL_015a: Unknown result type (might be due to invalid IL or missing references) //IL_016d: Unknown result type (might be due to invalid IL or missing references) //IL_0172: Unknown result type (might be due to invalid IL or missing references) //IL_017a: Unknown result type (might be due to invalid IL or missing references) //IL_018a: Unknown result type (might be due to invalid IL or missing references) //IL_018f: Unknown result type (might be due to invalid IL or missing references) //IL_0194: Unknown result type (might be due to invalid IL or missing references) //IL_0199: Unknown result type (might be due to invalid IL or missing references) //IL_019e: Unknown result type (might be due to invalid IL or missing references) //IL_01a3: Unknown result type (might be due to invalid IL or missing references) //IL_09e6: Unknown result type (might be due to invalid IL or missing references) //IL_09eb: Unknown result type (might be due to invalid IL or missing references) //IL_0a05: Unknown result type (might be due to invalid IL or missing references) //IL_0a0a: Unknown result type (might be due to invalid IL or missing references) //IL_02e6: Unknown result type (might be due to invalid IL or missing references) //IL_02f6: Unknown result type (might be due to invalid IL or missing references) //IL_0301: Unknown result type (might be due to invalid IL or missing references) //IL_030c: Unknown result type (might be due to invalid IL or missing references) //IL_0311: Unknown result type (might be due to invalid IL or missing references) //IL_0325: Unknown result type (might be due to invalid IL or missing references) //IL_032a: Unknown result type (might be due to invalid IL or missing references) //IL_033a: Unknown result type (might be due to invalid IL or missing references) //IL_033f: Unknown result type (might be due to invalid IL or missing references) //IL_01b5: Unknown result type (might be due to invalid IL or missing references) //IL_01c5: Unknown result type (might be due to invalid IL or missing references) //IL_01d0: Unknown result type (might be due to invalid IL or missing references) //IL_01e1: Unknown result type (might be due to invalid IL or missing references) //IL_01e6: Unknown result type (might be due to invalid IL or missing references) //IL_01fa: Unknown result type (might be due to invalid IL or missing references) //IL_01ff: Unknown result type (might be due to invalid IL or missing references) //IL_00ea: Unknown result type (might be due to invalid IL or missing references) //IL_00f5: Unknown result type (might be due to invalid IL or missing references) //IL_00fa: Unknown result type (might be due to invalid IL or missing references) //IL_011a: Unknown result type (might be due to invalid IL or missing references) //IL_011f: Unknown result type (might be due to invalid IL or missing references) //IL_0124: Unknown result type (might be due to invalid IL or missing references) //IL_0935: Unknown result type (might be due to invalid IL or missing references) //IL_0957: Unknown result type (might be due to invalid IL or missing references) //IL_095c: Unknown result type (might be due to invalid IL or missing references) //IL_096d: Unknown result type (might be due to invalid IL or missing references) //IL_0972: Unknown result type (might be due to invalid IL or missing references) //IL_08e1: Unknown result type (might be due to invalid IL or missing references) //IL_08fd: Unknown result type (might be due to invalid IL or missing references) //IL_0902: Unknown result type (might be due to invalid IL or missing references) //IL_0913: Unknown result type (might be due to invalid IL or missing references) //IL_0918: Unknown result type (might be due to invalid IL or missing references) //IL_0986: Unknown result type (might be due to invalid IL or missing references) //IL_0a85: Unknown result type (might be due to invalid IL or missing references) //IL_0a8a: Unknown result type (might be due to invalid IL or missing references) //IL_0709: Unknown result type (might be due to invalid IL or missing references) //IL_0714: Unknown result type (might be due to invalid IL or missing references) //IL_0724: Unknown result type (might be due to invalid IL or missing references) //IL_0733: Unknown result type (might be due to invalid IL or missing references) //IL_0738: Unknown result type (might be due to invalid IL or missing references) //IL_073f: Unknown result type (might be due to invalid IL or missing references) //IL_074a: Unknown result type (might be due to invalid IL or missing references) //IL_074f: Unknown result type (might be due to invalid IL or missing references) //IL_0754: Unknown result type (might be due to invalid IL or missing references) //IL_0759: Unknown result type (might be due to invalid IL or missing references) //IL_0770: Unknown result type (might be due to invalid IL or missing references) //IL_0776: Unknown result type (might be due to invalid IL or missing references) //IL_078c: Unknown result type (might be due to invalid IL or missing references) //IL_0791: Unknown result type (might be due to invalid IL or missing references) //IL_0298: Unknown result type (might be due to invalid IL or missing references) //IL_02a3: Unknown result type (might be due to invalid IL or missing references) //IL_02b4: Unknown result type (might be due to invalid IL or missing references) //IL_02b9: Unknown result type (might be due to invalid IL or missing references) //IL_02cd: Unknown result type (might be due to invalid IL or missing references) //IL_02d2: Unknown result type (might be due to invalid IL or missing references) //IL_02d7: Unknown result type (might be due to invalid IL or missing references) //IL_0216: Unknown result type (might be due to invalid IL or missing references) //IL_0226: Unknown result type (might be due to invalid IL or missing references) //IL_0231: Unknown result type (might be due to invalid IL or missing references) //IL_0242: Unknown result type (might be due to invalid IL or missing references) //IL_024d: Unknown result type (might be due to invalid IL or missing references) //IL_0252: Unknown result type (might be due to invalid IL or missing references) //IL_0266: Unknown result type (might be due to invalid IL or missing references) //IL_026b: Unknown result type (might be due to invalid IL or missing references) //IL_027b: Unknown result type (might be due to invalid IL or missing references) //IL_0280: Unknown result type (might be due to invalid IL or missing references) //IL_04d4: Unknown result type (might be due to invalid IL or missing references) //IL_04e4: Unknown result type (might be due to invalid IL or missing references) //IL_04f4: Unknown result type (might be due to invalid IL or missing references) //IL_04f9: Unknown result type (might be due to invalid IL or missing references) //IL_04fa: Unknown result type (might be due to invalid IL or missing references) //IL_04ff: Unknown result type (might be due to invalid IL or missing references) //IL_0504: Unknown result type (might be due to invalid IL or missing references) //IL_0510: Unknown result type (might be due to invalid IL or missing references) //IL_0521: Unknown result type (might be due to invalid IL or missing references) //IL_0541: Unknown result type (might be due to invalid IL or missing references) //IL_0546: Unknown result type (might be due to invalid IL or missing references) //IL_039d: Unknown result type (might be due to invalid IL or missing references) //IL_03a3: Unknown result type (might be due to invalid IL or missing references) //IL_03ad: Unknown result type (might be due to invalid IL or missing references) //IL_03b2: Unknown result type (might be due to invalid IL or missing references) //IL_03bd: Unknown result type (might be due to invalid IL or missing references) //IL_03c7: Unknown result type (might be due to invalid IL or missing references) //IL_03e4: Unknown result type (might be due to invalid IL or missing references) //IL_03f4: Unknown result type (might be due to invalid IL or missing references) //IL_03f9: Unknown result type (might be due to invalid IL or missing references) //IL_03ff: Unknown result type (might be due to invalid IL or missing references) //IL_040a: Unknown result type (might be due to invalid IL or missing references) //IL_040f: Unknown result type (might be due to invalid IL or missing references) //IL_0414: Unknown result type (might be due to invalid IL or missing references) //IL_042c: Unknown result type (might be due to invalid IL or missing references) //IL_0432: Unknown result type (might be due to invalid IL or missing references) //IL_043c: Unknown result type (might be due to invalid IL or missing references) //IL_0441: Unknown result type (might be due to invalid IL or missing references) //IL_044c: Unknown result type (might be due to invalid IL or missing references) //IL_0451: Unknown result type (might be due to invalid IL or missing references) //IL_045b: Unknown result type (might be due to invalid IL or missing references) //IL_0478: Unknown result type (might be due to invalid IL or missing references) //IL_0488: Unknown result type (might be due to invalid IL or missing references) //IL_048d: Unknown result type (might be due to invalid IL or missing references) //IL_0493: Unknown result type (might be due to invalid IL or missing references) //IL_049e: Unknown result type (might be due to invalid IL or missing references) //IL_04a3: Unknown result type (might be due to invalid IL or missing references) //IL_04a8: Unknown result type (might be due to invalid IL or missing references) if (lockedOn && lockingOn.allowLockingOn) { if ((Object)(object)closestTarget != (Object)null && (distanceFromClosestTarget <= lockingOn.lockingOnToTags.lockInDistance || (lockedOnToTarget && distanceFromClosestTarget <= lockingOn.lockingOnToTags.lockOutDistance)) && closestTarget.activeSelf && ((Object)(object)closestTarget.GetComponentInChildren() == (Object)null || ((Object)(object)closestTarget.GetComponentInChildren() != (Object)null && closestTarget.GetComponentInChildren().enabled)) && notBlocked) { if (!lockedOnToTarget && inFirstPersonMode) { lookAt = ((Component)this).transform.position + ((Component)this).transform.forward - new Vector3(0f, follow.playerHeight + 1f, 0f); } lockedOnToTarget = true; lookDir = Quaternion.LookRotation(new Vector3(closestTarget.transform.position.x, ((Component)player).transform.position.y, closestTarget.transform.position.z) - ((Component)player).transform.position) * Vector3.forward; if (!inFirstPersonMode) { if (Vector3.Distance(lookAt, closestTarget.transform.position + ((Component)this).transform.up * (25f / dist) - new Vector3(0f, 2.5f, 0f)) > 0.1f) { lookAt = Vector3.Slerp(lookAt, closestTarget.transform.position + ((Component)this).transform.up * (25f / dist) * height - new Vector3(0f, 2.5f, 0f), 8f * Time.deltaTime); } else { lookAt = closestTarget.transform.position + ((Component)this).transform.up * (25f / dist) - new Vector3(0f, 2.5f, 0f); } } else { lookAt = Vector3.Slerp(lookAt, closestTarget.transform.position + ((Component)this).transform.up * height - new Vector3(0f, 2.5f, 0f), 8f * Time.deltaTime); } if (!inFirstPersonMode) { if (!Object.op_Implicit((Object)(object)((Component)player).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && !((Component)player).GetComponent().inWater)) { playerPos = ((Component)player).transform.position - lookDir * 0.4f + player.up * 1.85f * (1f + 25f / dist / 25f) * follow.cameraHeight - lookDir * cameraDistance; } else { playerPos = ((Component)player).transform.position - lookDir * 0.4f + -player.forward * 1.85f * (1f + 25f / dist / 25f) * follow.cameraHeight - lookDir * cameraDistance; } } else { Vector3 val = default(Vector3); ((Vector3)(ref val))..ctor(0f, 0f - firstPersonCameraHeight, 0f); playerPos = player.position - (((Component)player).transform.forward * firstPerson.cameraDistance + val); ((Component)this).transform.position = playerPos; ((Component)this).transform.LookAt(lookAt + new Vector3(0f, follow.playerHeight + 1f, 0f)); } } else { lockedOnToTarget = false; ((Component)this).transform.localRotation = Quaternion.Lerp(((Component)this).transform.localRotation, Quaternion.identity, Time.deltaTime); lookDir = ((Component)player).transform.forward; if (!inFirstPersonMode) { if (!Object.op_Implicit((Object)(object)((Component)player).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && !((Component)player).GetComponent().inWater)) { playerPos = playerOffset + ((Component)player).transform.up * follow.cameraHeight - lookDir * cameraDistance; } else { playerPos = playerOffset - ((Component)player).transform.forward * follow.cameraHeight - ((Component)player).transform.up * cameraDistance; vector2 = Vector3.Lerp(new Vector3(0f, ((Component)player).transform.right.y, 0f) * ((!(Input.GetAxis("Horizontal") >= 0f)) ? 1f : (-1f)), ((Component)player).transform.forward * ((!(Input.GetAxis("Vertical") >= 0f)) ? (-1f) : 1f), Mathf.Abs(Vector3.Dot(((Component)this).transform.forward, ((Component)player).transform.forward))); lookDir = Vector3.Normalize(playerOffset - ((Component)this).transform.position); lookDir.y = 0f; lookDir = Vector3.SmoothDamp(lookDir, vector2, ref velocityLookDir, follow.rotationDampening); } lookAt = ((Component)player).transform.position; } else { Vector3 val2 = default(Vector3); ((Vector3)(ref val2))..ctor(0f, 0f - firstPersonCameraHeight, 0f); if (yFpDeg < 41f || yFpDeg > 44f) { playerPos = player.position - (((Component)player).transform.forward * firstPerson.cameraDistance + val2); ((Component)this).transform.position = playerPos; } if (!Object.op_Implicit((Object)(object)((Component)player).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && !((Component)player).GetComponent().inWater)) { ((Component)this).transform.eulerAngles = ((Component)player).transform.eulerAngles; } else if (yFpDeg < 41f || yFpDeg > 44f) { if (yFpDeg < 42.56255f) { ((Component)this).transform.eulerAngles = ((Component)player).transform.eulerAngles - new Vector3(yFpDeg2 - yFpDeg, 0f, 0f); oldEuler = ((Component)this).transform.eulerAngles; } else { ((Component)this).transform.eulerAngles = ((Component)player).transform.eulerAngles - new Vector3(357.43744f + (yFpDeg2 - yFpDeg), 0f, 0f); oldEuler = ((Component)this).transform.eulerAngles; } } else { ((Component)this).transform.eulerAngles = oldEuler; } } } SetMouseOrbitValues(); if (!Object.op_Implicit((Object)(object)((Component)player).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && !((Component)player).GetComponent().inWater)) { xFpDeg = ((Component)player).transform.eulerAngles.y; yFpDeg = ((Component)player).transform.eulerAngles.x; } else { xFpDeg = ((Component)player).GetComponent().xDeg; yFpDeg = ((Component)player).GetComponent().yDeg - ((Component)player).GetComponent().swimming.firstPerson.cameraAngleOffset - 90f; } yFpDeg2 = yFpDeg; fpOrbitRotation = ((Component)player).transform.rotation; } else { lockedOnToTarget = false; } CheckIfLockingOnIsBlocked(); if (lockedOn && lockingOn.allowLockingOn) { inFirstPersonMode = false; firstPersonButtonPressed = false; firstPersonStart = false; if (Object.op_Implicit((Object)(object)((Component)player).GetComponent())) { ((Component)player).GetComponent().inFirstPersonMode = false; ((Component)player).GetComponent().firstPersonButtonPressed = false; ((Component)player).GetComponent().firstPersonStart = false; } } } private void SetMouseOrbitValues() { //IL_003d: Unknown result type (might be due to invalid IL or missing references) //IL_0042: Unknown result type (might be due to invalid IL or missing references) //IL_0056: Unknown result type (might be due to invalid IL or missing references) //IL_005b: Unknown result type (might be due to invalid IL or missing references) //IL_006f: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_0080: Unknown result type (might be due to invalid IL or missing references) //IL_0085: Unknown result type (might be due to invalid IL or missing references) desiredDistance = Mathf.Clamp(desiredDistance, mouseOrbitMaxDistance, mouseOrbitMaxDistance); correctedDistance = desiredDistance; currentDistance = desiredDistance; xDeg = ((Component)this).transform.eulerAngles.y; yDeg = ((Component)this).transform.eulerAngles.x; rotation = ((Component)this).transform.rotation; position = ((Component)this).transform.position; } private void CheckIfLockingOnIsBlocked() { //IL_0003: Unknown result type (might be due to invalid IL or missing references) //IL_0020: Unknown result type (might be due to invalid IL or missing references) //IL_0030: Unknown result type (might be due to invalid IL or missing references) //IL_004b: Unknown result type (might be due to invalid IL or missing references) //IL_0050: Unknown result type (might be due to invalid IL or missing references) //IL_0058: Unknown result type (might be due to invalid IL or missing references) //IL_0077: Unknown result type (might be due to invalid IL or missing references) //IL_007c: Unknown result type (might be due to invalid IL or missing references) //IL_008a: Unknown result type (might be due to invalid IL or missing references) //IL_008f: Unknown result type (might be due to invalid IL or missing references) //IL_00a2: Unknown result type (might be due to invalid IL or missing references) //IL_00a7: Unknown result type (might be due to invalid IL or missing references) //IL_00af: Unknown result type (might be due to invalid IL or missing references) //IL_00c3: Unknown result type (might be due to invalid IL or missing references) //IL_00c8: Unknown result type (might be due to invalid IL or missing references) //IL_00d8: Unknown result type (might be due to invalid IL or missing references) //IL_00f3: Unknown result type (might be due to invalid IL or missing references) //IL_00f8: Unknown result type (might be due to invalid IL or missing references) //IL_0100: Unknown result type (might be due to invalid IL or missing references) //IL_011f: Unknown result type (might be due to invalid IL or missing references) //IL_0124: Unknown result type (might be due to invalid IL or missing references) //IL_0138: Unknown result type (might be due to invalid IL or missing references) //IL_013d: Unknown result type (might be due to invalid IL or missing references) //IL_0151: Unknown result type (might be due to invalid IL or missing references) //IL_0156: Unknown result type (might be due to invalid IL or missing references) //IL_015f: Unknown result type (might be due to invalid IL or missing references) //IL_0173: Unknown result type (might be due to invalid IL or missing references) //IL_0178: Unknown result type (might be due to invalid IL or missing references) //IL_0188: Unknown result type (might be due to invalid IL or missing references) //IL_01a3: Unknown result type (might be due to invalid IL or missing references) //IL_01a8: Unknown result type (might be due to invalid IL or missing references) //IL_01b0: Unknown result type (might be due to invalid IL or missing references) //IL_01cf: Unknown result type (might be due to invalid IL or missing references) //IL_01e3: Unknown result type (might be due to invalid IL or missing references) //IL_01e8: Unknown result type (might be due to invalid IL or missing references) //IL_01f8: Unknown result type (might be due to invalid IL or missing references) //IL_01fd: Unknown result type (might be due to invalid IL or missing references) //IL_0211: Unknown result type (might be due to invalid IL or missing references) //IL_0216: Unknown result type (might be due to invalid IL or missing references) //IL_022a: Unknown result type (might be due to invalid IL or missing references) //IL_022f: Unknown result type (might be due to invalid IL or missing references) //IL_0238: Unknown result type (might be due to invalid IL or missing references) //IL_0253: Unknown result type (might be due to invalid IL or missing references) //IL_0258: Unknown result type (might be due to invalid IL or missing references) //IL_0260: Unknown result type (might be due to invalid IL or missing references) RaycastHit val = default(RaycastHit); if ((Object)(object)closestTarget != (Object)null && !Physics.Linecast(((Component)this).transform.position, closestTarget.transform.position + new Vector3(0f, 1f * height, 0f), ref val, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(new Vector3(((Component)player).transform.position.x, ((Component)this).transform.position.y, ((Component)player).transform.position.z) - new Vector3(0f, 0.5f, 0f), closestTarget.transform.position + new Vector3(0f, 1f * height, 0f), ref val, LayerMask.op_Implicit(collisionLayers)) && (!Physics.Linecast(new Vector3(((Component)player).transform.position.x, closestTarget.transform.position.y, ((Component)player).transform.position.z) + new Vector3(0f, 1f, 0f), closestTarget.transform.position + new Vector3(0f, 1f * height, 0f), ref val, LayerMask.op_Implicit(collisionLayers)) || !Physics.Linecast(((Component)player).transform.position + new Vector3(0f, 0.5f, 0f), new Vector3(closestTarget.transform.position.x, ((Component)player).transform.position.y, closestTarget.transform.position.z) + new Vector3(0f, 0.5f * height, 0f), ref val, LayerMask.op_Implicit(collisionLayers)))) { notBlocked = true; } else { notBlocked = false; } } private void LockOnUI() { ArrowPointer(); LockOnBars(); } private void ArrowPointer() { //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_003d: Unknown result type (might be due to invalid IL or missing references) //IL_0042: Unknown result type (might be due to invalid IL or missing references) //IL_005b: Unknown result type (might be due to invalid IL or missing references) //IL_0060: Unknown result type (might be due to invalid IL or missing references) //IL_0063: Unknown result type (might be due to invalid IL or missing references) //IL_0068: Unknown result type (might be due to invalid IL or missing references) //IL_0080: Unknown result type (might be due to invalid IL or missing references) //IL_0085: Unknown result type (might be due to invalid IL or missing references) //IL_0118: Unknown result type (might be due to invalid IL or missing references) //IL_011d: Unknown result type (might be due to invalid IL or missing references) //IL_0121: Unknown result type (might be due to invalid IL or missing references) //IL_0126: Unknown result type (might be due to invalid IL or missing references) //IL_0140: Unknown result type (might be due to invalid IL or missing references) //IL_0145: Unknown result type (might be due to invalid IL or missing references) //IL_0149: Unknown result type (might be due to invalid IL or missing references) //IL_014e: Unknown result type (might be due to invalid IL or missing references) //IL_0167: Unknown result type (might be due to invalid IL or missing references) //IL_016c: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_00ca: Unknown result type (might be due to invalid IL or missing references) //IL_01ff: Unknown result type (might be due to invalid IL or missing references) //IL_0204: Unknown result type (might be due to invalid IL or missing references) //IL_0208: Unknown result type (might be due to invalid IL or missing references) //IL_020d: Unknown result type (might be due to invalid IL or missing references) //IL_0227: Unknown result type (might be due to invalid IL or missing references) //IL_022c: Unknown result type (might be due to invalid IL or missing references) //IL_0230: Unknown result type (might be due to invalid IL or missing references) //IL_0235: Unknown result type (might be due to invalid IL or missing references) //IL_024e: Unknown result type (might be due to invalid IL or missing references) //IL_0253: Unknown result type (might be due to invalid IL or missing references) //IL_01ac: Unknown result type (might be due to invalid IL or missing references) //IL_01b1: Unknown result type (might be due to invalid IL or missing references) //IL_03c7: Unknown result type (might be due to invalid IL or missing references) //IL_03cc: Unknown result type (might be due to invalid IL or missing references) //IL_02f2: Unknown result type (might be due to invalid IL or missing references) //IL_02f7: Unknown result type (might be due to invalid IL or missing references) //IL_02fb: Unknown result type (might be due to invalid IL or missing references) //IL_0300: Unknown result type (might be due to invalid IL or missing references) //IL_031a: Unknown result type (might be due to invalid IL or missing references) //IL_031f: Unknown result type (might be due to invalid IL or missing references) //IL_0323: Unknown result type (might be due to invalid IL or missing references) //IL_0328: Unknown result type (might be due to invalid IL or missing references) //IL_0341: Unknown result type (might be due to invalid IL or missing references) //IL_0346: Unknown result type (might be due to invalid IL or missing references) //IL_0293: Unknown result type (might be due to invalid IL or missing references) //IL_0298: Unknown result type (might be due to invalid IL or missing references) //IL_0386: Unknown result type (might be due to invalid IL or missing references) //IL_038b: Unknown result type (might be due to invalid IL or missing references) //IL_039f: Unknown result type (might be due to invalid IL or missing references) //IL_03a4: Unknown result type (might be due to invalid IL or missing references) //IL_05c1: Unknown result type (might be due to invalid IL or missing references) //IL_05ee: Unknown result type (might be due to invalid IL or missing references) //IL_05f3: Unknown result type (might be due to invalid IL or missing references) //IL_060e: Unknown result type (might be due to invalid IL or missing references) //IL_0613: Unknown result type (might be due to invalid IL or missing references) //IL_0627: Unknown result type (might be due to invalid IL or missing references) //IL_062c: Unknown result type (might be due to invalid IL or missing references) //IL_063b: Unknown result type (might be due to invalid IL or missing references) //IL_0640: Unknown result type (might be due to invalid IL or missing references) //IL_0649: Unknown result type (might be due to invalid IL or missing references) //IL_0659: Unknown result type (might be due to invalid IL or missing references) //IL_065e: Unknown result type (might be due to invalid IL or missing references) //IL_0663: Unknown result type (might be due to invalid IL or missing references) //IL_067d: Unknown result type (might be due to invalid IL or missing references) //IL_0682: Unknown result type (might be due to invalid IL or missing references) if ((Object)(object)closestTarget != (Object)null) { if (Object.op_Implicit((Object)(object)closestTarget.GetComponent())) { Bounds bounds = ((Collider)closestTarget.GetComponent()).bounds; feetPosition = ((Bounds)(ref bounds)).min.y; Bounds bounds2 = ((Collider)closestTarget.GetComponent()).bounds; headPosition = ((Bounds)(ref bounds2)).max.y; if (closestTarget.transform.localScale.y >= 1f) { height = (headPosition - feetPosition) * 1.4f; } else { height = closestTarget.transform.localScale.y * closestTarget.GetComponent().height * 1.4f; } } else if (Object.op_Implicit((Object)(object)closestTarget.GetComponent())) { Bounds bounds3 = ((Collider)closestTarget.GetComponent()).bounds; feetPosition = ((Bounds)(ref bounds3)).min.y; Bounds bounds4 = ((Collider)closestTarget.GetComponent()).bounds; headPosition = ((Bounds)(ref bounds4)).max.y; if (closestTarget.transform.localScale.y >= 1f) { height = (headPosition - feetPosition) * 1.4f; } else { height = closestTarget.transform.localScale.y * closestTarget.GetComponent().height * 1.4f; } } else if (Object.op_Implicit((Object)(object)closestTarget.GetComponent())) { Bounds bounds5 = ((Collider)closestTarget.GetComponent()).bounds; feetPosition = ((Bounds)(ref bounds5)).min.y; Bounds bounds6 = ((Collider)closestTarget.GetComponent()).bounds; headPosition = ((Bounds)(ref bounds6)).max.y; if (closestTarget.transform.localScale.y >= 1f) { height = (headPosition - feetPosition) * 1.4f; } else { height = closestTarget.transform.localScale.y / 1.83f * closestTarget.GetComponent().radius * 4.2f + 0.7f; } } else if (Object.op_Implicit((Object)(object)closestTarget.GetComponent())) { Bounds bounds7 = ((Collider)closestTarget.GetComponent()).bounds; feetPosition = ((Bounds)(ref bounds7)).min.y; Bounds bounds8 = ((Collider)closestTarget.GetComponent()).bounds; headPosition = ((Bounds)(ref bounds8)).max.y; if (closestTarget.transform.localScale.y >= 1f) { height = (headPosition - feetPosition) * 1.4f; } else { height = closestTarget.transform.localScale.y * closestTarget.GetComponent().size.y; } } else { height = closestTarget.transform.localScale.y; } if ((Object)(object)lockingOn.lockingOnToTags.arrowPointer != (Object)null && ((distanceFromClosestTarget <= lockingOn.lockingOnToTags.lockInDistance && notBlocked) || lockedOnToTarget) && ((Object.op_Implicit((Object)(object)closestTarget.GetComponent()) && closestTarget.GetComponent().enabled) || (Object.op_Implicit((Object)(object)closestTarget.GetComponent()) && closestTarget.GetComponent().enabled))) { if ((Object)(object)pointer == (Object)null) { arrowPointerBounceHeight2 = arrowPointerBounceHeightHalf; pointer = Object.Instantiate(lockingOn.lockingOnToTags.arrowPointer); ((Object)pointer.gameObject).name = ((Object)lockingOn.lockingOnToTags.arrowPointer.gameObject).name; return; } if ((arrowPointerBounceHeight2 - arrowBounciness < 0.1f * (arrowPointerBounceHeightHalf / 0.15f) && arrowPointerBounceHeight2 - arrowBounciness >= 0f) || (arrowPointerBounceHeight2 - arrowBounciness > -0.1f * (arrowPointerBounceHeightHalf / 0.15f) && arrowPointerBounceHeight2 - arrowBounciness <= 0f)) { arrowPointerBounceHeight2 = arrowPointerBounceHeightHalf * ((0f - arrowPointerBounceHeight2) / Mathf.Abs(arrowPointerBounceHeight2)); } arrowBounciness = Mathf.Lerp(arrowBounciness, arrowPointerBounceHeight2, lockingOn.lockingOnToTags.arrowPointerBounceSpeed * Time.deltaTime); pointer.transform.localPosition = closestTarget.transform.position + new Vector3(0f, height + lockingOn.lockingOnToTags.arrowPointerHeight + arrowBounciness, 0f); pointer.transform.rotation = Quaternion.LookRotation(new Vector3(((Component)this).transform.position.x, pointer.transform.position.y, ((Component)this).transform.position.z) - pointer.transform.position) * lockingOn.lockingOnToTags.arrowPointer.transform.rotation; } else if ((Object)(object)pointer != (Object)null) { Object.Destroy((Object)(object)pointer); pointer = null; } } else if ((Object)(object)pointer != (Object)null) { Object.Destroy((Object)(object)pointer); pointer = null; } } private void LockOnBars() { //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_0100: Unknown result type (might be due to invalid IL or missing references) //IL_0105: Unknown result type (might be due to invalid IL or missing references) //IL_0125: Unknown result type (might be due to invalid IL or missing references) //IL_0149: Unknown result type (might be due to invalid IL or missing references) //IL_002b: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Expected O, but got Unknown //IL_0202: Unknown result type (might be due to invalid IL or missing references) //IL_023d: Unknown result type (might be due to invalid IL or missing references) //IL_0242: Unknown result type (might be due to invalid IL or missing references) //IL_0262: Unknown result type (might be due to invalid IL or missing references) //IL_0286: Unknown result type (might be due to invalid IL or missing references) //IL_0167: Unknown result type (might be due to invalid IL or missing references) //IL_0171: Expected O, but got Unknown if ((Object)(object)lockingOn.barSprite != (Object)null) { if ((Object)(object)topBar == (Object)null) { topBar = new GameObject(); ((Object)topBar.gameObject).name = "TopBar"; topBar.gameObject.layer = 5; topBar.AddComponent(); } else { topBar.transform.SetParent(barHolder.transform); topBar.GetComponent().anchoredPosition = new Vector2(0f, halfScreenHeight + halfScreenHeight * (lockingOn.barCoverage / 100f) / 2f - barHeight); topBar.GetComponent().sprite = lockingOn.barSprite; RectTransform component = topBar.GetComponent(); Rect rect = canvas.GetComponent().rect; component.sizeDelta = new Vector2(((Rect)(ref rect)).width, halfScreenHeight * (lockingOn.barCoverage / 100f)); ((Transform)topBar.GetComponent()).localScale = new Vector3(1f, 1f, 1f); } if ((Object)(object)bottomBar == (Object)null) { bottomBar = new GameObject(); ((Object)bottomBar.gameObject).name = "BottomBar"; bottomBar.gameObject.layer = 5; bottomBar.AddComponent(); } else { bottomBar.transform.SetParent(barHolder.transform); bottomBar.GetComponent().anchoredPosition = new Vector2(0f, 0f - halfScreenHeight - halfScreenHeight * (lockingOn.barCoverage / 100f) / 2f + barHeight); bottomBar.GetComponent().sprite = lockingOn.barSprite; RectTransform component2 = bottomBar.GetComponent(); Rect rect2 = canvas.GetComponent().rect; component2.sizeDelta = new Vector2(((Rect)(ref rect2)).width, halfScreenHeight * (lockingOn.barCoverage / 100f)); ((Transform)bottomBar.GetComponent()).localScale = new Vector3(1f, 1f, 1f); } } } private void FirstPersonState() { CheckingIfFirstPersonMode(); SettingFirstPersonPosition(); ObjectEnablingDisabling(); FirstPersonModeMouseOrbiting(); } private void CheckingIfFirstPersonMode() { //IL_030d: Unknown result type (might be due to invalid IL or missing references) //IL_0312: Unknown result type (might be due to invalid IL or missing references) //IL_031c: Unknown result type (might be due to invalid IL or missing references) //IL_0332: Unknown result type (might be due to invalid IL or missing references) //IL_0337: Unknown result type (might be due to invalid IL or missing references) //IL_00e9: Unknown result type (might be due to invalid IL or missing references) //IL_00ee: Unknown result type (might be due to invalid IL or missing references) //IL_00f8: Unknown result type (might be due to invalid IL or missing references) //IL_010e: Unknown result type (might be due to invalid IL or missing references) //IL_0113: Unknown result type (might be due to invalid IL or missing references) //IL_011a: Unknown result type (might be due to invalid IL or missing references) //IL_012a: Unknown result type (might be due to invalid IL or missing references) //IL_013a: Unknown result type (might be due to invalid IL or missing references) //IL_013f: Unknown result type (might be due to invalid IL or missing references) //IL_0145: Unknown result type (might be due to invalid IL or missing references) //IL_0150: Unknown result type (might be due to invalid IL or missing references) //IL_0155: Unknown result type (might be due to invalid IL or missing references) //IL_015a: Unknown result type (might be due to invalid IL or missing references) //IL_016b: Unknown result type (might be due to invalid IL or missing references) //IL_0170: Unknown result type (might be due to invalid IL or missing references) //IL_0194: Unknown result type (might be due to invalid IL or missing references) //IL_01a4: Unknown result type (might be due to invalid IL or missing references) //IL_01b4: Unknown result type (might be due to invalid IL or missing references) //IL_01b9: Unknown result type (might be due to invalid IL or missing references) //IL_01ba: Unknown result type (might be due to invalid IL or missing references) //IL_01bf: Unknown result type (might be due to invalid IL or missing references) //IL_01c4: Unknown result type (might be due to invalid IL or missing references) //IL_01d0: Unknown result type (might be due to invalid IL or missing references) //IL_01eb: Unknown result type (might be due to invalid IL or missing references) //IL_01fc: Unknown result type (might be due to invalid IL or missing references) //IL_020d: Unknown result type (might be due to invalid IL or missing references) //IL_022d: Unknown result type (might be due to invalid IL or missing references) //IL_0232: Unknown result type (might be due to invalid IL or missing references) //IL_0278: Unknown result type (might be due to invalid IL or missing references) //IL_027d: Unknown result type (might be due to invalid IL or missing references) //IL_0291: Unknown result type (might be due to invalid IL or missing references) //IL_0296: Unknown result type (might be due to invalid IL or missing references) //IL_02aa: Unknown result type (might be due to invalid IL or missing references) //IL_02af: Unknown result type (might be due to invalid IL or missing references) //IL_02bb: Unknown result type (might be due to invalid IL or missing references) //IL_02c0: Unknown result type (might be due to invalid IL or missing references) //IL_0595: Unknown result type (might be due to invalid IL or missing references) //IL_05a5: Unknown result type (might be due to invalid IL or missing references) //IL_05b5: Unknown result type (might be due to invalid IL or missing references) //IL_05ba: Unknown result type (might be due to invalid IL or missing references) //IL_05bc: Unknown result type (might be due to invalid IL or missing references) //IL_05c1: Unknown result type (might be due to invalid IL or missing references) //IL_05c6: Unknown result type (might be due to invalid IL or missing references) //IL_05d2: Unknown result type (might be due to invalid IL or missing references) //IL_038a: Unknown result type (might be due to invalid IL or missing references) //IL_039a: Unknown result type (might be due to invalid IL or missing references) //IL_03aa: Unknown result type (might be due to invalid IL or missing references) //IL_03af: Unknown result type (might be due to invalid IL or missing references) //IL_03b5: Unknown result type (might be due to invalid IL or missing references) //IL_03c0: Unknown result type (might be due to invalid IL or missing references) //IL_03c5: Unknown result type (might be due to invalid IL or missing references) //IL_03ca: Unknown result type (might be due to invalid IL or missing references) //IL_0544: Unknown result type (might be due to invalid IL or missing references) //IL_0549: Unknown result type (might be due to invalid IL or missing references) //IL_03d8: Unknown result type (might be due to invalid IL or missing references) //IL_03e8: Unknown result type (might be due to invalid IL or missing references) //IL_03f8: Unknown result type (might be due to invalid IL or missing references) //IL_03fd: Unknown result type (might be due to invalid IL or missing references) //IL_040d: Unknown result type (might be due to invalid IL or missing references) //IL_0418: Unknown result type (might be due to invalid IL or missing references) //IL_041d: Unknown result type (might be due to invalid IL or missing references) //IL_0422: Unknown result type (might be due to invalid IL or missing references) //IL_0438: Unknown result type (might be due to invalid IL or missing references) //IL_043d: Unknown result type (might be due to invalid IL or missing references) //IL_044a: Unknown result type (might be due to invalid IL or missing references) //IL_062e: Unknown result type (might be due to invalid IL or missing references) //IL_0786: Unknown result type (might be due to invalid IL or missing references) //IL_078b: Unknown result type (might be due to invalid IL or missing references) //IL_07a5: Unknown result type (might be due to invalid IL or missing references) //IL_07aa: Unknown result type (might be due to invalid IL or missing references) //IL_0472: Unknown result type (might be due to invalid IL or missing references) //IL_0482: Unknown result type (might be due to invalid IL or missing references) //IL_0825: Unknown result type (might be due to invalid IL or missing references) //IL_082a: Unknown result type (might be due to invalid IL or missing references) //IL_06d6: Unknown result type (might be due to invalid IL or missing references) //IL_06f8: Unknown result type (might be due to invalid IL or missing references) //IL_06fd: Unknown result type (might be due to invalid IL or missing references) //IL_070e: Unknown result type (might be due to invalid IL or missing references) //IL_0713: Unknown result type (might be due to invalid IL or missing references) //IL_0682: Unknown result type (might be due to invalid IL or missing references) //IL_069e: Unknown result type (might be due to invalid IL or missing references) //IL_06a3: Unknown result type (might be due to invalid IL or missing references) //IL_06b4: Unknown result type (might be due to invalid IL or missing references) //IL_06b9: Unknown result type (might be due to invalid IL or missing references) //IL_0727: Unknown result type (might be due to invalid IL or missing references) //IL_04aa: Unknown result type (might be due to invalid IL or missing references) //IL_04b5: Unknown result type (might be due to invalid IL or missing references) //IL_04c5: Unknown result type (might be due to invalid IL or missing references) //IL_04d4: Unknown result type (might be due to invalid IL or missing references) //IL_04d9: Unknown result type (might be due to invalid IL or missing references) //IL_04e0: Unknown result type (might be due to invalid IL or missing references) //IL_04eb: Unknown result type (might be due to invalid IL or missing references) //IL_04f0: Unknown result type (might be due to invalid IL or missing references) //IL_04f5: Unknown result type (might be due to invalid IL or missing references) //IL_04fa: Unknown result type (might be due to invalid IL or missing references) //IL_0511: Unknown result type (might be due to invalid IL or missing references) //IL_0517: Unknown result type (might be due to invalid IL or missing references) //IL_052d: Unknown result type (might be due to invalid IL or missing references) //IL_0532: Unknown result type (might be due to invalid IL or missing references) if (((firstPerson.alwaysUseFirstPerson && !follow.alwaysFollow && !mouseOrbit.alwaysMouseOrbit) || (firstPerson.switchToFirstPersonIfInputButtonPressed && firstPersonButtonPressed)) && (!lockedOn || !lockingOn.allowLockingOn)) { inFirstPersonMode = true; } else { inFirstPersonMode = false; } outOfFPInWaterTimer += 0.2f; if (!inFirstPersonMode && firstPersonModeWasTrueLastUpdate) { if (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && ((Component)player).GetComponent().inWater) { outOfFPInWaterTimer = 0f; ((Component)this).transform.localRotation = Quaternion.Lerp(((Component)this).transform.localRotation, Quaternion.identity, Time.deltaTime); lookDir = ((Component)player).transform.up; playerPos = playerOffset - ((Component)player).transform.forward * follow.cameraHeight - lookDir * cameraDistance; lookAt = ((Component)player).transform.position; Vector3 val = default(Vector3); ((Vector3)(ref val))..ctor(0f, 0f - firstPersonCameraHeight, 0f); playerPos = player.position - (((Component)player).transform.up * firstPerson.cameraDistance + val); ((Component)this).transform.position = playerPos; ((Component)this).transform.eulerAngles = ((Component)player).transform.eulerAngles; ((Component)this).transform.position = playerPos; ((Component)this).transform.LookAt(lookAt + new Vector3(0f, follow.playerHeight + 1f, 0f)); desiredDistance = Mathf.Clamp(desiredDistance, mouseOrbitMaxDistance, mouseOrbitMaxDistance); correctedDistance = desiredDistance; currentDistance = desiredDistance; xDeg = ((Component)this).transform.eulerAngles.y; yDeg = ((Component)this).transform.eulerAngles.x; rotation = ((Component)this).transform.rotation; position = ((Component)this).transform.position; } firstPersonModeWasTrueLastUpdate = false; } if (inFirstPersonMode) { firstPersonModeWasTrueLastUpdate = true; } else { firstPersonModeWasTrueLastUpdate = false; } if (!(outOfFPInWaterTimer < 1f)) { return; } ((Component)this).transform.localRotation = Quaternion.Lerp(((Component)this).transform.localRotation, Quaternion.identity, Time.deltaTime); lookDir = ((Component)player).transform.forward; if (!inFirstPersonMode) { if (!Object.op_Implicit((Object)(object)((Component)player).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && !((Component)player).GetComponent().inWater)) { playerPos = playerOffset + ((Component)player).transform.up * follow.cameraHeight - lookDir * cameraDistance; } else { playerPos = playerOffset - ((Component)player).transform.forward * follow.cameraHeight - ((Component)player).transform.up * cameraDistance; vector2 = Vector3.Lerp(new Vector3(0f, ((Component)player).transform.right.y, 0f) * ((!(Input.GetAxis("Horizontal") >= 0f)) ? 1f : (-1f)), ((Component)player).transform.forward * ((!(Input.GetAxis("Vertical") >= 0f)) ? (-1f) : 1f), Mathf.Abs(Vector3.Dot(((Component)this).transform.forward, ((Component)player).transform.forward))); lookDir = Vector3.Normalize(playerOffset - ((Component)this).transform.position); lookDir.y = 0f; lookDir = Vector3.SmoothDamp(lookDir, vector2, ref velocityLookDir, follow.rotationDampening); } lookAt = ((Component)player).transform.position; } else { Vector3 val2 = default(Vector3); ((Vector3)(ref val2))..ctor(0f, 0f - firstPersonCameraHeight, 0f); if (yFpDeg < 41f || yFpDeg > 44f) { playerPos = player.position - (((Component)player).transform.forward * firstPerson.cameraDistance + val2); ((Component)this).transform.position = playerPos; } if (!Object.op_Implicit((Object)(object)((Component)player).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && !((Component)player).GetComponent().inWater)) { ((Component)this).transform.eulerAngles = ((Component)player).transform.eulerAngles; } else if (yFpDeg < 41f || yFpDeg > 44f) { if (yFpDeg < 42.56255f) { ((Component)this).transform.eulerAngles = ((Component)player).transform.eulerAngles - new Vector3(yFpDeg2 - yFpDeg, 0f, 0f); oldEuler = ((Component)this).transform.eulerAngles; } else { ((Component)this).transform.eulerAngles = ((Component)player).transform.eulerAngles - new Vector3(357.43744f + (yFpDeg2 - yFpDeg), 0f, 0f); oldEuler = ((Component)this).transform.eulerAngles; } } else { ((Component)this).transform.eulerAngles = oldEuler; } } SetMouseOrbitValues(); if (!Object.op_Implicit((Object)(object)((Component)player).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && !((Component)player).GetComponent().inWater)) { xFpDeg = ((Component)player).transform.eulerAngles.y; yFpDeg = ((Component)player).transform.eulerAngles.x; } else { xFpDeg = ((Component)player).GetComponent().xDeg; yFpDeg = ((Component)player).GetComponent().yDeg - ((Component)player).GetComponent().swimming.firstPerson.cameraAngleOffset - 90f; } yFpDeg2 = yFpDeg; fpOrbitRotation = ((Component)player).transform.rotation; } private void SettingFirstPersonPosition() { //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_003c: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Unknown result type (might be due to invalid IL or missing references) //IL_0051: Unknown result type (might be due to invalid IL or missing references) //IL_0052: Unknown result type (might be due to invalid IL or missing references) //IL_0057: Unknown result type (might be due to invalid IL or missing references) //IL_005c: Unknown result type (might be due to invalid IL or missing references) //IL_0068: Unknown result type (might be due to invalid IL or missing references) //IL_009b: Unknown result type (might be due to invalid IL or missing references) //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_00ec: Unknown result type (might be due to invalid IL or missing references) //IL_0104: Unknown result type (might be due to invalid IL or missing references) //IL_0118: Unknown result type (might be due to invalid IL or missing references) //IL_011d: Unknown result type (might be due to invalid IL or missing references) if (!inFirstPersonMode) { return; } Vector3 val = default(Vector3); ((Vector3)(ref val))..ctor(0f, 0f - firstPersonCameraHeight, 0f); fpPosition = player.position - (((Component)player).transform.forward * firstPerson.cameraDistance + val); ((Component)this).transform.position = fpPosition; atFPPoint = false; if (!firstPerson.mouseOrbiting.mouseOrbitInFirstPersonMode) { fpRotation = ((Component)player).transform.eulerAngles; if (!Object.op_Implicit((Object)(object)((Component)player).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && !((Component)player).GetComponent().inWater)) { ((Component)this).transform.eulerAngles = fpRotation; } else { ((Component)this).transform.eulerAngles = fpRotation + new Vector3(-45f, 0f, 0f); } } } private void FollowingPlayerAndLockingOn() { //IL_07f1: Unknown result type (might be due to invalid IL or missing references) //IL_07f6: Unknown result type (might be due to invalid IL or missing references) //IL_0802: Unknown result type (might be due to invalid IL or missing references) //IL_0807: Unknown result type (might be due to invalid IL or missing references) //IL_0818: Unknown result type (might be due to invalid IL or missing references) //IL_081d: Unknown result type (might be due to invalid IL or missing references) //IL_023c: Unknown result type (might be due to invalid IL or missing references) //IL_0242: Unknown result type (might be due to invalid IL or missing references) //IL_026a: Unknown result type (might be due to invalid IL or missing references) //IL_0060: Unknown result type (might be due to invalid IL or missing references) //IL_0299: Unknown result type (might be due to invalid IL or missing references) //IL_029f: Unknown result type (might be due to invalid IL or missing references) //IL_02bb: Unknown result type (might be due to invalid IL or missing references) //IL_015d: Unknown result type (might be due to invalid IL or missing references) //IL_0162: Unknown result type (might be due to invalid IL or missing references) //IL_019b: Unknown result type (might be due to invalid IL or missing references) //IL_00d4: Unknown result type (might be due to invalid IL or missing references) //IL_00da: Unknown result type (might be due to invalid IL or missing references) //IL_00f0: Unknown result type (might be due to invalid IL or missing references) //IL_01b8: Unknown result type (might be due to invalid IL or missing references) //IL_01ce: Unknown result type (might be due to invalid IL or missing references) //IL_01d3: Unknown result type (might be due to invalid IL or missing references) //IL_020c: Unknown result type (might be due to invalid IL or missing references) //IL_021d: Unknown result type (might be due to invalid IL or missing references) //IL_049e: Unknown result type (might be due to invalid IL or missing references) //IL_04a4: Unknown result type (might be due to invalid IL or missing references) //IL_04c4: Unknown result type (might be due to invalid IL or missing references) //IL_04c9: Unknown result type (might be due to invalid IL or missing references) //IL_04da: Unknown result type (might be due to invalid IL or missing references) //IL_04df: Unknown result type (might be due to invalid IL or missing references) //IL_04eb: Unknown result type (might be due to invalid IL or missing references) //IL_03d0: Unknown result type (might be due to invalid IL or missing references) //IL_03f0: Unknown result type (might be due to invalid IL or missing references) //IL_03f5: Unknown result type (might be due to invalid IL or missing references) //IL_0454: Unknown result type (might be due to invalid IL or missing references) //IL_0474: Unknown result type (might be due to invalid IL or missing references) //IL_0479: Unknown result type (might be due to invalid IL or missing references) //IL_047e: Unknown result type (might be due to invalid IL or missing references) //IL_0417: Unknown result type (might be due to invalid IL or missing references) //IL_0437: Unknown result type (might be due to invalid IL or missing references) //IL_043c: Unknown result type (might be due to invalid IL or missing references) //IL_0617: Unknown result type (might be due to invalid IL or missing references) //IL_061c: Unknown result type (might be due to invalid IL or missing references) //IL_0655: Unknown result type (might be due to invalid IL or missing references) //IL_0588: Unknown result type (might be due to invalid IL or missing references) //IL_05a8: Unknown result type (might be due to invalid IL or missing references) //IL_05ad: Unknown result type (might be due to invalid IL or missing references) //IL_0798: Unknown result type (might be due to invalid IL or missing references) //IL_06be: Unknown result type (might be due to invalid IL or missing references) //IL_06c3: Unknown result type (might be due to invalid IL or missing references) //IL_06fc: Unknown result type (might be due to invalid IL or missing references) //IL_0780: Unknown result type (might be due to invalid IL or missing references) if ((follow.alwaysFollow && !mouseOrbitButtonPressed && !firstPersonButtonPressed) || lockedOn) { if (!follow.sideScrolling.lockXAxis && !follow.sideScrolling.lockZAxis) { CompensateForWalls(playerOffset, ref playerPos); } if (!lockedOn && (outOfFPInWaterTimer >= 1f || outOfFPInWaterTimer <= 0.25f)) { if (!follow.sideScrolling.lockXAxis && !follow.sideScrolling.lockZAxis) { ((Component)this).transform.position = Vector3.SmoothDamp(((Component)this).transform.position, playerPos, ref velocityCamSmooth, follow.movementDampening); } else if (!Object.op_Implicit((Object)(object)((Component)player).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && ((Component)player).GetComponent().outOfWaterTimer >= 8f)) { ((Component)this).transform.position = new Vector3(playerPos.x, Mathf.SmoothDamp(((Component)this).transform.position.y, playerPos.y, ref velocityCamSmooth.y, follow.movementDampening), playerPos.z); } else { ((Component)this).transform.position = Vector3.Slerp(((Component)this).transform.position, new Vector3(playerPos.x, Mathf.SmoothDamp(((Component)this).transform.position.y, playerPos.y, ref velocityCamSmooth.y, follow.movementDampening), playerPos.z), outOfWaterSlerpValue * Time.deltaTime); } } else { ((Component)this).transform.position = Vector3.SmoothDamp(((Component)this).transform.position, playerPos, ref velocityCamSmooth, follow.movementDampening / (lockingOn.lockOnSpeed * 0.5f)); atFPPoint = true; } if (outOfFPInWaterTimer < 1f) { ((Component)this).transform.position = Vector3.SmoothDamp(((Component)this).transform.position, playerPos, ref velocityCamSmooth, follow.movementDampening / 0.5f); atFPPoint = true; } if (inFirstPersonMode) { return; } if (atFPPoint || ((follow.sideScrolling.lockXAxis || follow.sideScrolling.lockZAxis) && playerEnteredWaterOnceAlready)) { if (!Object.op_Implicit((Object)(object)((Component)player).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && ((Component)player).GetComponent().outOfWaterTimer >= 8f)) { if ((!follow.sideScrolling.lockXAxis && !follow.sideScrolling.lockZAxis) || !Object.op_Implicit((Object)(object)((Component)player).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && !((Component)player).GetComponent().inWater)) { ((Component)this).transform.LookAt(lookAt + new Vector3(0f, follow.playerHeight + 1f, 0f)); } else { ((Component)this).transform.LookAt(((Component)player).transform.position + new Vector3(0f, follow.playerHeight + 0.5f, 0f)); } outOfWaterSlerpValue = 15f; landLookAt = lookAt + new Vector3(0f, follow.playerHeight + 1f, 0f); } else { outOfWaterSlerpValue += 0.5f; landLookAt = Vector3.Slerp(landLookAt, lookAt + new Vector3(0f, follow.playerHeight + 1f, 0f), outOfWaterSlerpValue * Time.deltaTime); ((Component)this).transform.LookAt(landLookAt); } } else if (((Component)player).GetComponent().yDeg < 30f && ((!follow.sideScrolling.lockXAxis && !follow.sideScrolling.lockZAxis) || !Object.op_Implicit((Object)(object)((Component)player).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && !((Component)player).GetComponent().inWater))) { ((Component)this).transform.LookAt(lookAt + new Vector3(0f, follow.playerHeight + 1f, 0f)); } else if (Mathf.Abs(swimmingQuat.x - finalSwimQuat.x) < 45f && Mathf.Abs(swimmingQuat.y - finalSwimQuat.y) < 45f) { ((Component)this).transform.eulerAngles = new Vector3(Mathf.Lerp(((Component)this).transform.eulerAngles.x, finalSwimQuat.x, 12f * Time.deltaTime), finalSwimQuat.y, finalSwimQuat.z); } else if (Mathf.Abs(swimmingQuat.x - finalSwimQuat.x) < 45f && Mathf.Abs(swimmingQuat.y - finalSwimQuat.y) >= 45f) { ((Component)this).transform.eulerAngles = new Vector3(Mathf.Lerp(((Component)this).transform.eulerAngles.x, finalSwimQuat.x, 12f * Time.deltaTime), swimmingQuat.y, swimmingQuat.z); } else if (Mathf.Abs(swimmingQuat.x - finalSwimQuat.x) >= 45f && Mathf.Abs(swimmingQuat.y - finalSwimQuat.y) < 45f) { ((Component)this).transform.eulerAngles = new Vector3(swimmingQuat.x, finalSwimQuat.y, finalSwimQuat.z); } else { ((Component)this).transform.eulerAngles = swimmingQuat; } if (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && ((Component)player).GetComponent().noCollisionWithWaterTimer < 5f) { playerEnteredWaterOnceAlready = true; } } else { lookDir = ((Component)player).transform.forward; playerPos = ((Component)this).transform.position; lookAt = ((Component)player).transform.position; } } private void FirstPersonModeMouseOrbiting() { //IL_0641: Unknown result type (might be due to invalid IL or missing references) //IL_0646: Unknown result type (might be due to invalid IL or missing references) //IL_0660: Unknown result type (might be due to invalid IL or missing references) //IL_0665: Unknown result type (might be due to invalid IL or missing references) //IL_0309: Unknown result type (might be due to invalid IL or missing references) //IL_030e: Unknown result type (might be due to invalid IL or missing references) //IL_031a: Unknown result type (might be due to invalid IL or missing references) //IL_0330: Unknown result type (might be due to invalid IL or missing references) //IL_0335: Unknown result type (might be due to invalid IL or missing references) //IL_0190: Unknown result type (might be due to invalid IL or missing references) //IL_0195: Unknown result type (might be due to invalid IL or missing references) //IL_01af: Unknown result type (might be due to invalid IL or missing references) //IL_01b4: Unknown result type (might be due to invalid IL or missing references) //IL_03b4: Unknown result type (might be due to invalid IL or missing references) //IL_03cf: Unknown result type (might be due to invalid IL or missing references) //IL_03d4: Unknown result type (might be due to invalid IL or missing references) //IL_03d9: Unknown result type (might be due to invalid IL or missing references) //IL_03de: Unknown result type (might be due to invalid IL or missing references) //IL_036d: Unknown result type (might be due to invalid IL or missing references) //IL_0388: Unknown result type (might be due to invalid IL or missing references) //IL_038d: Unknown result type (might be due to invalid IL or missing references) //IL_0392: Unknown result type (might be due to invalid IL or missing references) //IL_0397: Unknown result type (might be due to invalid IL or missing references) //IL_039c: Unknown result type (might be due to invalid IL or missing references) //IL_03e6: Unknown result type (might be due to invalid IL or missing references) //IL_03f6: Unknown result type (might be due to invalid IL or missing references) //IL_0406: Unknown result type (might be due to invalid IL or missing references) //IL_040b: Unknown result type (might be due to invalid IL or missing references) //IL_041b: Unknown result type (might be due to invalid IL or missing references) //IL_0426: Unknown result type (might be due to invalid IL or missing references) //IL_042b: Unknown result type (might be due to invalid IL or missing references) //IL_0430: Unknown result type (might be due to invalid IL or missing references) //IL_0446: Unknown result type (might be due to invalid IL or missing references) //IL_044b: Unknown result type (might be due to invalid IL or missing references) //IL_0459: Unknown result type (might be due to invalid IL or missing references) //IL_0481: Unknown result type (might be due to invalid IL or missing references) //IL_0491: Unknown result type (might be due to invalid IL or missing references) //IL_04b9: Unknown result type (might be due to invalid IL or missing references) //IL_04c4: Unknown result type (might be due to invalid IL or missing references) //IL_04d4: Unknown result type (might be due to invalid IL or missing references) //IL_04e3: Unknown result type (might be due to invalid IL or missing references) //IL_04e8: Unknown result type (might be due to invalid IL or missing references) //IL_04ef: Unknown result type (might be due to invalid IL or missing references) //IL_04fa: Unknown result type (might be due to invalid IL or missing references) //IL_04ff: Unknown result type (might be due to invalid IL or missing references) //IL_0504: Unknown result type (might be due to invalid IL or missing references) //IL_0509: Unknown result type (might be due to invalid IL or missing references) //IL_0520: Unknown result type (might be due to invalid IL or missing references) //IL_0526: Unknown result type (might be due to invalid IL or missing references) //IL_053c: Unknown result type (might be due to invalid IL or missing references) //IL_0541: Unknown result type (might be due to invalid IL or missing references) //IL_0552: Unknown result type (might be due to invalid IL or missing references) //IL_0557: Unknown result type (might be due to invalid IL or missing references) if (inFirstPersonMode && firstPerson.mouseOrbiting.mouseOrbitInFirstPersonMode && (!lockedOn || !lockingOn.allowLockingOn) && !turningToClimb) { xFpDeg += Input.GetAxis("Mouse X") * firstPerson.mouseOrbiting.xSpeed * 0.02f; yFpDeg -= Input.GetAxis("Mouse Y") * firstPerson.mouseOrbiting.ySpeed * 0.02f; if (yFpDeg >= 180f) { yFpDeg = 360f - yFpDeg; } if (!Object.op_Implicit((Object)(object)((Component)player).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && (!((Component)player).GetComponent().inWater || ((Component)player).GetComponent().swimming.firstPerson.allowMovement))) { yFpDeg = ClampAngle(yFpDeg, firstPerson.mouseOrbiting.yMinLimit, firstPerson.mouseOrbiting.yMaxLimit); if (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && ((Component)player).GetComponent().grabbedOn) { float num = ((Component)player).transform.eulerAngles.y - 90f; float num2 = ((Component)player).transform.eulerAngles.y + 90f; if (num >= 180f && num2 >= 180f) { num -= 360f; num2 -= 360f; } xFpDeg = ClampAngle(xFpDeg, num, num2); } oldXFpDeg = xFpDeg; } else { if (xFpDeg >= 180f) { xFpDeg = 360f - xFpDeg; } float min = oldXFpDeg + (float)((Component)player).GetComponent().swimming.firstPerson.rotationLimitsIfMovementIsNotAllowed.xMinLimit; float max = oldXFpDeg + (float)((Component)player).GetComponent().swimming.firstPerson.rotationLimitsIfMovementIsNotAllowed.xMaxLimit; float min2 = ((Component)player).GetComponent().swimming.firstPerson.rotationLimitsIfMovementIsNotAllowed.yMinLimit; float max2 = ((Component)player).GetComponent().swimming.firstPerson.rotationLimitsIfMovementIsNotAllowed.yMaxLimit; xFpDeg = ClampAngle(xFpDeg, min, max); yFpDeg = ClampAngle(yFpDeg, min2, max2); } fpOrbitRotation = Quaternion.Euler(yFpDeg, xFpDeg, 0f); ((Component)this).transform.rotation = fpOrbitRotation; lookDir = ((Component)player).transform.forward; playerYDeg = ((Component)player).GetComponent().yDeg; if (playerYDeg >= 90f) { playerOffset = ((Component)player).transform.position + follow.cameraHeight * -((Component)player).transform.forward; } else { playerOffset = ((Component)player).transform.position + follow.cameraHeight * ((Component)player).transform.forward; } playerPos = playerOffset - ((Component)player).transform.forward * follow.cameraHeight - ((Component)player).transform.up * cameraDistance; vector2 = Vector3.Lerp(new Vector3(0f, ((Component)player).transform.right.y, 0f) * ((!(Input.GetAxis("Horizontal") >= 0f)) ? 1f : (-1f)), ((Component)player).transform.up * ((!(Input.GetAxis("Vertical") >= 0f)) ? (-1f) : 1f), Mathf.Abs(Vector3.Dot(((Component)this).transform.forward, ((Component)player).transform.up))); lookDir = Vector3.Normalize(playerOffset - ((Component)this).transform.position); lookDir.y = 0f; lookDir = Vector3.SmoothDamp(lookDir, vector2, ref velocityLookDir, follow.rotationDampening); lookAt = ((Component)player).transform.position; SetMouseOrbitValues(); yFpDeg2 -= Input.GetAxis("Mouse Y") * firstPerson.mouseOrbiting.ySpeed * 0.02f; if (yFpDeg2 >= 180f) { yFpDeg2 = 360f - yFpDeg2; } yFpDeg2 = ClampAngle(yFpDeg2, firstPerson.mouseOrbiting.yMinLimit, firstPerson.mouseOrbiting.yMaxLimit); goneThroughFirstPersonUpdate = true; } else { if (!Object.op_Implicit((Object)(object)((Component)player).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && !((Component)player).GetComponent().inWater)) { xFpDeg = ((Component)player).transform.eulerAngles.y; yFpDeg = ((Component)player).transform.eulerAngles.x; } else { xFpDeg = ((Component)player).GetComponent().xDeg; yFpDeg = ((Component)player).GetComponent().yDeg - ((Component)player).GetComponent().swimming.firstPerson.cameraAngleOffset - 90f; } yFpDeg2 = yFpDeg; goneThroughFirstPersonUpdate = false; } } private void MouseOrbitMode() { //IL_0578: Unknown result type (might be due to invalid IL or missing references) //IL_057d: Unknown result type (might be due to invalid IL or missing references) //IL_0592: Unknown result type (might be due to invalid IL or missing references) //IL_0597: Unknown result type (might be due to invalid IL or missing references) //IL_05ac: Unknown result type (might be due to invalid IL or missing references) //IL_05b1: Unknown result type (might be due to invalid IL or missing references) //IL_05bd: Unknown result type (might be due to invalid IL or missing references) //IL_05c2: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Unknown result type (might be due to invalid IL or missing references) //IL_005a: Unknown result type (might be due to invalid IL or missing references) //IL_0066: Unknown result type (might be due to invalid IL or missing references) //IL_006b: Unknown result type (might be due to invalid IL or missing references) //IL_007c: Unknown result type (might be due to invalid IL or missing references) //IL_0081: Unknown result type (might be due to invalid IL or missing references) //IL_0137: Unknown result type (might be due to invalid IL or missing references) //IL_013c: Unknown result type (might be due to invalid IL or missing references) //IL_01fa: Unknown result type (might be due to invalid IL or missing references) //IL_0200: Unknown result type (might be due to invalid IL or missing references) //IL_0205: Unknown result type (might be due to invalid IL or missing references) //IL_020a: Unknown result type (might be due to invalid IL or missing references) //IL_0215: Unknown result type (might be due to invalid IL or missing references) //IL_021a: Unknown result type (might be due to invalid IL or missing references) //IL_021b: Unknown result type (might be due to invalid IL or missing references) //IL_0220: Unknown result type (might be due to invalid IL or missing references) //IL_0225: Unknown result type (might be due to invalid IL or missing references) //IL_0232: Unknown result type (might be due to invalid IL or missing references) //IL_0237: Unknown result type (might be due to invalid IL or missing references) //IL_0245: Unknown result type (might be due to invalid IL or missing references) //IL_024a: Unknown result type (might be due to invalid IL or missing references) //IL_0265: Unknown result type (might be due to invalid IL or missing references) //IL_026a: Unknown result type (might be due to invalid IL or missing references) //IL_027b: Unknown result type (might be due to invalid IL or missing references) //IL_027d: Unknown result type (might be due to invalid IL or missing references) //IL_029b: Unknown result type (might be due to invalid IL or missing references) //IL_029e: Unknown result type (might be due to invalid IL or missing references) //IL_032c: Unknown result type (might be due to invalid IL or missing references) //IL_0332: Unknown result type (might be due to invalid IL or missing references) //IL_0337: Unknown result type (might be due to invalid IL or missing references) //IL_033c: Unknown result type (might be due to invalid IL or missing references) //IL_0347: Unknown result type (might be due to invalid IL or missing references) //IL_034c: Unknown result type (might be due to invalid IL or missing references) //IL_034d: Unknown result type (might be due to invalid IL or missing references) //IL_0352: Unknown result type (might be due to invalid IL or missing references) //IL_0357: Unknown result type (might be due to invalid IL or missing references) //IL_0363: Unknown result type (might be due to invalid IL or missing references) //IL_03b9: Unknown result type (might be due to invalid IL or missing references) //IL_03d6: Unknown result type (might be due to invalid IL or missing references) //IL_03dc: Unknown result type (might be due to invalid IL or missing references) //IL_03ed: Unknown result type (might be due to invalid IL or missing references) //IL_0434: Unknown result type (might be due to invalid IL or missing references) //IL_0439: Unknown result type (might be due to invalid IL or missing references) //IL_0447: Unknown result type (might be due to invalid IL or missing references) //IL_046f: Unknown result type (might be due to invalid IL or missing references) //IL_047f: Unknown result type (might be due to invalid IL or missing references) //IL_04a7: Unknown result type (might be due to invalid IL or missing references) //IL_04b2: Unknown result type (might be due to invalid IL or missing references) //IL_04c2: Unknown result type (might be due to invalid IL or missing references) //IL_04d1: Unknown result type (might be due to invalid IL or missing references) //IL_04d6: Unknown result type (might be due to invalid IL or missing references) //IL_04dd: Unknown result type (might be due to invalid IL or missing references) //IL_04e8: Unknown result type (might be due to invalid IL or missing references) //IL_04ed: Unknown result type (might be due to invalid IL or missing references) //IL_04f2: Unknown result type (might be due to invalid IL or missing references) //IL_04f7: Unknown result type (might be due to invalid IL or missing references) //IL_050e: Unknown result type (might be due to invalid IL or missing references) //IL_0514: Unknown result type (might be due to invalid IL or missing references) //IL_052a: Unknown result type (might be due to invalid IL or missing references) //IL_052f: Unknown result type (might be due to invalid IL or missing references) GettingMouseOrbitDistances(); if (((!follow.alwaysFollow && mouseOrbit.alwaysMouseOrbit) || mouseOrbitButtonPressed) && !lockedOn && !inFirstPersonMode) { lookDir = ((Component)player).transform.forward; playerPos = ((Component)this).transform.position; lookAt = ((Component)player).transform.position; xDeg += Input.GetAxis("Mouse X") * mouseOrbit.xSpeed * 0.02f; yDeg -= Input.GetAxis("Mouse Y") * mouseOrbit.ySpeed * 0.02f; if (yDeg >= 180f) { yDeg = 360f - yDeg; } yDeg = ClampAngle(yDeg, mouseOrbit.yMinLimit, mouseOrbit.yMaxLimit); rotation = Quaternion.Euler(yDeg, xDeg, 0f); if (mouseOrbit.allowZoomingWithScrollWheel) { desiredDistance -= Input.GetAxis("Mouse ScrollWheel") * Time.deltaTime * (float)mouseOrbit.zoomSpeed * Mathf.Abs(desiredDistance); desiredDistance = Mathf.Clamp(desiredDistance, mouseOrbitMinDistance, mouseOrbitMaxDistance); } else { desiredDistance = Mathf.Clamp(desiredDistance, mouseOrbitMaxDistance, mouseOrbitMaxDistance); } correctedDistance = desiredDistance; Vector3 val = default(Vector3); ((Vector3)(ref val))..ctor(0f, 0f - mouseOrbit.cameraHeight, 0f); position = player.position - (rotation * Vector3.forward * desiredDistance + val); Vector3 val2 = default(Vector3); ((Vector3)(ref val2))..ctor(player.position.x, player.position.y + mouseOrbit.cameraHeight, player.position.z); bool flag = false; RaycastHit val3 = default(RaycastHit); if (Physics.Linecast(val2, position, ref val3, ((LayerMask)(ref collisionLayers)).value)) { correctedDistance = Vector3.Distance(val2, ((RaycastHit)(ref val3)).point) - offsetFromWall; flag = true; } currentDistance = ((flag && !(correctedDistance > currentDistance)) ? correctedDistance : Mathf.Lerp(currentDistance, correctedDistance, Time.deltaTime * mouseOrbit.zoomDampening)); currentDistance = Mathf.Clamp(currentDistance, mouseOrbit.nearClippingPlane, mouseOrbitMaxDistance); position = player.position - (rotation * Vector3.forward * currentDistance + val); ((Component)this).transform.rotation = rotation; if (!Object.op_Implicit((Object)(object)((Component)player).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && ((Component)player).GetComponent().outOfWaterTimer >= 8f)) { ((Component)this).transform.position = position; } else { ((Component)this).transform.position = Vector3.Slerp(((Component)this).transform.position, position, outOfWaterSlerpValue * Time.deltaTime); } if (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && ((Component)player).GetComponent().inWater) { vector2 = Vector3.Lerp(new Vector3(0f, ((Component)player).transform.right.y, 0f) * ((!(Input.GetAxis("Horizontal") >= 0f)) ? 1f : (-1f)), ((Component)player).transform.forward * ((!(Input.GetAxis("Vertical") >= 0f)) ? (-1f) : 1f), Mathf.Abs(Vector3.Dot(((Component)this).transform.forward, ((Component)player).transform.forward))); lookDir = Vector3.Normalize(playerOffset - ((Component)this).transform.position); lookDir.y = 0f; lookDir = Vector3.SmoothDamp(lookDir, vector2, ref velocityLookDir, follow.rotationDampening); } } else { desiredDistance = Mathf.Clamp(desiredDistance, mouseOrbitMaxDistance, mouseOrbitMaxDistance); correctedDistance = desiredDistance; currentDistance = desiredDistance; xDeg = ((Component)this).transform.eulerAngles.y; yDeg = ((Component)this).transform.eulerAngles.x; rotation = ((Component)this).transform.rotation; position = ((Component)this).transform.position; } } private void GettingMouseOrbitDistances() { //IL_006e: Unknown result type (might be due to invalid IL or missing references) //IL_007e: Unknown result type (might be due to invalid IL or missing references) //IL_012e: Unknown result type (might be due to invalid IL or missing references) //IL_013e: Unknown result type (might be due to invalid IL or missing references) //IL_00d6: Unknown result type (might be due to invalid IL or missing references) //IL_00e6: Unknown result type (might be due to invalid IL or missing references) float num; float num2; if (follow.cameraHeight <= 1f) { num = 0.4f; num2 = 0.6f; } else { num = 0.65f; num2 = 0.35f; } if (cameraDistance >= 0.6f) { mouseOrbitMaxDistance = (cameraDistance + 0.73f * (1f + 1.5f / cameraDistance) / 1.8577f / Vector3.Distance(position, ((Component)player).transform.position)) * (num + follow.cameraHeight * num2); } else if (cameraDistance >= 0.4f) { mouseOrbitMaxDistance = (cameraDistance + 0.73f * (1f + cameraDistance) / 0.84f / Vector3.Distance(position, ((Component)player).transform.position)) * (num + follow.cameraHeight * num2); } else { mouseOrbitMaxDistance = (cameraDistance + 0.73f * (20f + cameraDistance) / 10.9338f / Vector3.Distance(position, ((Component)player).transform.position)) * (num + follow.cameraHeight * num2); } mouseOrbitMinDistance = mouseOrbit.minZoomInDistance; } private void CompensateForWalls(Vector3 fromObject, ref Vector3 toTarget) { //IL_0003: Unknown result type (might be due to invalid IL or missing references) //IL_0009: Unknown result type (might be due to invalid IL or missing references) //IL_000b: Unknown result type (might be due to invalid IL or missing references) //IL_0013: Unknown result type (might be due to invalid IL or missing references) //IL_0058: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Unknown result type (might be due to invalid IL or missing references) //IL_006a: Unknown result type (might be due to invalid IL or missing references) //IL_002b: Unknown result type (might be due to invalid IL or missing references) //IL_0032: Unknown result type (might be due to invalid IL or missing references) //IL_003d: Unknown result type (might be due to invalid IL or missing references) //IL_0042: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_0095: Unknown result type (might be due to invalid IL or missing references) //IL_009d: Unknown result type (might be due to invalid IL or missing references) //IL_01d5: Unknown result type (might be due to invalid IL or missing references) //IL_014b: Unknown result type (might be due to invalid IL or missing references) //IL_0169: Unknown result type (might be due to invalid IL or missing references) //IL_00ab: Unknown result type (might be due to invalid IL or missing references) //IL_00b0: Unknown result type (might be due to invalid IL or missing references) //IL_00b4: Unknown result type (might be due to invalid IL or missing references) //IL_00b9: Unknown result type (might be due to invalid IL or missing references) //IL_0193: Unknown result type (might be due to invalid IL or missing references) //IL_01a4: Unknown result type (might be due to invalid IL or missing references) //IL_00eb: Unknown result type (might be due to invalid IL or missing references) //IL_00f5: Unknown result type (might be due to invalid IL or missing references) //IL_00f7: Unknown result type (might be due to invalid IL or missing references) //IL_00fc: Unknown result type (might be due to invalid IL or missing references) //IL_0101: Unknown result type (might be due to invalid IL or missing references) //IL_0112: Unknown result type (might be due to invalid IL or missing references) //IL_0118: Unknown result type (might be due to invalid IL or missing references) //IL_011d: Unknown result type (might be due to invalid IL or missing references) //IL_00ca: Unknown result type (might be due to invalid IL or missing references) //IL_00cf: Unknown result type (might be due to invalid IL or missing references) //IL_00e1: Unknown result type (might be due to invalid IL or missing references) //IL_00e6: Unknown result type (might be due to invalid IL or missing references) RaycastHit val = default(RaycastHit); if (Physics.Linecast(fromObject, toTarget, ref val, LayerMask.op_Implicit(collisionLayers))) { toTarget = ((RaycastHit)(ref val)).point + ((RaycastHit)(ref val)).normal * offsetFromWall; } Vector3 val2 = ((Component)((Component)this).GetComponent()).transform.position; ((Component)((Component)this).GetComponent()).transform.position = toTarget; viewFrustum = CalculateViewFrustum(((Component)this).GetComponent(), ref nearClipDimensions); for (int i = 0; i < viewFrustum.Length / 2; i++) { RaycastHit val3 = default(RaycastHit); RaycastHit val4 = default(RaycastHit); while (Physics.Linecast(viewFrustum[i], viewFrustum[(i + 1) % (viewFrustum.Length / 2)], ref val3) || Physics.Linecast(viewFrustum[(i + 1) % (viewFrustum.Length / 2)], viewFrustum[i], ref val4)) { Vector3 normal = ((RaycastHit)(ref val)).normal; if (((RaycastHit)(ref val)).normal == Vector3.zero && ((RaycastHit)(ref val3)).normal != Vector3.zero) { normal = ((RaycastHit)(ref val3)).normal; } toTarget += 0.2f * normal; Transform transform = ((Component)((Component)this).GetComponent()).transform; transform.position += toTarget; viewFrustum = CalculateViewFrustum(((Component)this).GetComponent(), ref nearClipDimensions); } } ((Component)((Component)this).GetComponent()).transform.position = val2; viewFrustum = CalculateViewFrustum(((Component)this).GetComponent(), ref nearClipDimensions); } public static Vector3[] CalculateViewFrustum(Camera cam, ref Vector3 dimensions) { //IL_0020: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_002a: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Unknown result type (might be due to invalid IL or missing references) //IL_0051: Unknown result type (might be due to invalid IL or missing references) //IL_006e: Unknown result type (might be due to invalid IL or missing references) //IL_0073: Unknown result type (might be due to invalid IL or missing references) //IL_0078: Unknown result type (might be due to invalid IL or missing references) //IL_0095: Unknown result type (might be due to invalid IL or missing references) //IL_009a: Unknown result type (might be due to invalid IL or missing references) //IL_009f: Unknown result type (might be due to invalid IL or missing references) //IL_00b9: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_00ca: Unknown result type (might be due to invalid IL or missing references) //IL_00cf: Unknown result type (might be due to invalid IL or missing references) //IL_00e2: Unknown result type (might be due to invalid IL or missing references) //IL_00ee: Unknown result type (might be due to invalid IL or missing references) //IL_00f3: Unknown result type (might be due to invalid IL or missing references) //IL_00f8: Unknown result type (might be due to invalid IL or missing references) //IL_010b: Unknown result type (might be due to invalid IL or missing references) //IL_0117: Unknown result type (might be due to invalid IL or missing references) //IL_011c: Unknown result type (might be due to invalid IL or missing references) //IL_0121: Unknown result type (might be due to invalid IL or missing references) //IL_0134: Unknown result type (might be due to invalid IL or missing references) //IL_0140: Unknown result type (might be due to invalid IL or missing references) //IL_0145: Unknown result type (might be due to invalid IL or missing references) //IL_014a: Unknown result type (might be due to invalid IL or missing references) //IL_0157: Unknown result type (might be due to invalid IL or missing references) //IL_0163: Unknown result type (might be due to invalid IL or missing references) //IL_0168: Unknown result type (might be due to invalid IL or missing references) //IL_016d: Unknown result type (might be due to invalid IL or missing references) //IL_0182: Unknown result type (might be due to invalid IL or missing references) //IL_018e: Unknown result type (might be due to invalid IL or missing references) //IL_0193: Unknown result type (might be due to invalid IL or missing references) //IL_0198: Unknown result type (might be due to invalid IL or missing references) //IL_01ad: Unknown result type (might be due to invalid IL or missing references) //IL_01c3: Unknown result type (might be due to invalid IL or missing references) //IL_01c8: Unknown result type (might be due to invalid IL or missing references) //IL_01cd: Unknown result type (might be due to invalid IL or missing references) //IL_01d2: Unknown result type (might be due to invalid IL or missing references) Vector3[] array = (Vector3[])(object)new Vector3[8]; ref Vector3 reference = ref array[0]; reference = cam.ViewportToWorldPoint(new Vector3(0f, 0f, cam.nearClipPlane)); ref Vector3 reference2 = ref array[1]; reference2 = cam.ViewportToWorldPoint(new Vector3(0f, 1f, cam.nearClipPlane)); ref Vector3 reference3 = ref array[3]; reference3 = cam.ViewportToWorldPoint(new Vector3(1f, 0f, cam.nearClipPlane)); ref Vector3 reference4 = ref array[2]; reference4 = cam.ViewportToWorldPoint(new Vector3(1f, 1f, cam.nearClipPlane)); Plane[] array2 = GeometryUtility.CalculateFrustumPlanes(cam); ref Vector3 reference5 = ref array[4]; reference5 = Vector3.Cross(((Plane)(ref array2[0])).normal, ((Plane)(ref array2[2])).normal); ref Vector3 reference6 = ref array[5]; reference6 = Vector3.Cross(((Plane)(ref array2[3])).normal, ((Plane)(ref array2[0])).normal); ref Vector3 reference7 = ref array[6]; reference7 = Vector3.Cross(((Plane)(ref array2[1])).normal, ((Plane)(ref array2[3])).normal); ref Vector3 reference8 = ref array[7]; reference8 = Vector3.Cross(((Plane)(ref array2[2])).normal, ((Plane)(ref array2[1])).normal); Vector3 val = array[0] - array[3]; dimensions.x = ((Vector3)(ref val)).magnitude; Vector3 val2 = array[1] - array[0]; dimensions.y = ((Vector3)(ref val2)).magnitude; Vector3 val3 = array[0] - cam.ViewportToWorldPoint(new Vector3(0.5f, 0.5f, cam.nearClipPlane)); dimensions.z = ((Vector3)(ref val3)).magnitude; return array; } private void LateUpdate() { //IL_006c: Unknown result type (might be due to invalid IL or missing references) //IL_007c: Unknown result type (might be due to invalid IL or missing references) //IL_008c: Unknown result type (might be due to invalid IL or missing references) //IL_0091: Unknown result type (might be due to invalid IL or missing references) //IL_0092: Unknown result type (might be due to invalid IL or missing references) //IL_0097: Unknown result type (might be due to invalid IL or missing references) //IL_009c: Unknown result type (might be due to invalid IL or missing references) //IL_0108: Unknown result type (might be due to invalid IL or missing references) //IL_00d0: Unknown result type (might be due to invalid IL or missing references) //IL_00e0: Unknown result type (might be due to invalid IL or missing references) //IL_00eb: Unknown result type (might be due to invalid IL or missing references) //IL_00f0: Unknown result type (might be due to invalid IL or missing references) //IL_00f1: Unknown result type (might be due to invalid IL or missing references) //IL_00f6: Unknown result type (might be due to invalid IL or missing references) //IL_00fb: Unknown result type (might be due to invalid IL or missing references) //IL_017f: Unknown result type (might be due to invalid IL or missing references) //IL_0184: Unknown result type (might be due to invalid IL or missing references) //IL_019c: Unknown result type (might be due to invalid IL or missing references) //IL_01a1: Unknown result type (might be due to invalid IL or missing references) //IL_01bb: Unknown result type (might be due to invalid IL or missing references) //IL_01c0: Unknown result type (might be due to invalid IL or missing references) //IL_0208: Unknown result type (might be due to invalid IL or missing references) //IL_020d: Unknown result type (might be due to invalid IL or missing references) //IL_0288: Unknown result type (might be due to invalid IL or missing references) //IL_028d: Unknown result type (might be due to invalid IL or missing references) //IL_02de: Unknown result type (might be due to invalid IL or missing references) //IL_02e3: Unknown result type (might be due to invalid IL or missing references) //IL_03f9: Unknown result type (might be due to invalid IL or missing references) //IL_033e: Unknown result type (might be due to invalid IL or missing references) //IL_0343: Unknown result type (might be due to invalid IL or missing references) //IL_0357: Unknown result type (might be due to invalid IL or missing references) //IL_035c: Unknown result type (might be due to invalid IL or missing references) //IL_0365: Unknown result type (might be due to invalid IL or missing references) //IL_0379: Unknown result type (might be due to invalid IL or missing references) //IL_037e: Unknown result type (might be due to invalid IL or missing references) //IL_0383: Unknown result type (might be due to invalid IL or missing references) //IL_0313: Unknown result type (might be due to invalid IL or missing references) //IL_0318: Unknown result type (might be due to invalid IL or missing references) //IL_03a7: Unknown result type (might be due to invalid IL or missing references) //IL_03ac: Unknown result type (might be due to invalid IL or missing references) //IL_03c0: Unknown result type (might be due to invalid IL or missing references) //IL_03c5: Unknown result type (might be due to invalid IL or missing references) //IL_03ce: Unknown result type (might be due to invalid IL or missing references) //IL_03e2: Unknown result type (might be due to invalid IL or missing references) //IL_03e7: Unknown result type (might be due to invalid IL or missing references) //IL_03ec: Unknown result type (might be due to invalid IL or missing references) if (inFirstPersonMode) { Vector3 val = default(Vector3); if (!Object.op_Implicit((Object)(object)((Component)player).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && !((Component)player).GetComponent().inWater)) { ((Vector3)(ref val))..ctor(0f, 0f - firstPersonCameraHeight, 0f); fpPosition = player.position - (((Component)player).transform.forward * firstPerson.cameraDistance + val); } else { ((Vector3)(ref val))..ctor(0f, firstPerson.cameraDistance, 0f); fpPosition = ((Component)player).GetComponent().colliderBottom + (((Component)player).transform.up * firstPersonCameraHeight + val); } ((Component)this).transform.position = fpPosition; if (!firstPerson.mouseOrbiting.mouseOrbitInFirstPersonMode || turningToClimb) { if (!Object.op_Implicit((Object)(object)((Component)player).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && !((Component)player).GetComponent().inWater)) { xFpDeg = ((Component)player).transform.eulerAngles.y; float num = ((Component)player).transform.eulerAngles.y - 90f; float num2 = ((Component)player).transform.eulerAngles.y + 90f; if (num >= 180f && num2 >= 180f) { xFpDeg -= 360f; } yFpDeg = ((Component)player).transform.eulerAngles.x; } else { xFpDeg = ((Component)player).GetComponent().xDeg; yFpDeg = ((Component)player).GetComponent().yDeg - ((Component)player).GetComponent().swimming.firstPerson.cameraAngleOffset - 90f; } yFpDeg2 = yFpDeg; fpOrbitRotation = ((Component)player).transform.rotation; if (!Object.op_Implicit((Object)(object)((Component)player).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && !((Component)player).GetComponent().inWater)) { fpRotation = ((Component)player).transform.eulerAngles; } else if (((Component)player).GetComponent().yDeg < 90f || ((Component)player).transform.eulerAngles.x == 90f) { fpRotation = new Vector3(playerYDeg, ((Component)player).transform.eulerAngles.y, ((Component)player).transform.eulerAngles.z) + new Vector3(-60f, 0f, 0f); } else { fpRotation = new Vector3(185f - playerYDeg, ((Component)player).transform.eulerAngles.y, ((Component)player).transform.eulerAngles.z) + new Vector3(55f, 0f, 0f); } ((Component)this).transform.eulerAngles = fpRotation; } } if (Input.GetButtonDown(mouseOrbit.mouseOrbitInputButton) && mouseOrbit.switchToMouseOrbitIfInputButtonPressed) { if (mouseOrbitStart) { mouseOrbitStart = false; } else { mouseOrbitStart = true; } } else if (!mouseOrbit.switchToMouseOrbitIfInputButtonPressed) { mouseOrbitStart = false; } if (Input.GetButtonDown(firstPerson.firstPersonInputButton) && firstPerson.switchToFirstPersonIfInputButtonPressed) { if (firstPersonStart) { firstPersonStart = false; } else { firstPersonStart = true; } } else if (!firstPerson.switchToFirstPersonIfInputButtonPressed) { firstPersonStart = false; } PositionBlackBarsInFirstPersonMode(); } private void PositionBlackBarsInFirstPersonMode() { //IL_007d: Unknown result type (might be due to invalid IL or missing references) //IL_00a1: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Expected O, but got Unknown if ((Object)(object)barHolder == (Object)null) { barHolder = new GameObject(); barHolder.AddComponent(); ((Object)barHolder.gameObject).name = "BarHolder"; barHolder.gameObject.layer = 5; } else { barHolder.transform.SetParent(canvas.transform); barHolder.GetComponent().anchoredPosition = Vector2.zero; ((Transform)barHolder.GetComponent()).localScale = new Vector3(1f, 1f, 1f); barHolder.transform.SetAsFirstSibling(); } } public static float ClampAngle(float angle, float min, float max) { if (angle < -360f) { angle += 360f; } if (angle > 360f) { angle -= 360f; } return Mathf.Clamp(angle, min, max); } private void ObjectEnablingDisabling() { if (inFirstPersonMode) { if (!objectsFinished) { if (firstPerson.objectsToDisableInFirstPerson != null) { GameObject[] objectsToDisableInFirstPerson = firstPerson.objectsToDisableInFirstPerson; foreach (GameObject val in objectsToDisableInFirstPerson) { if ((Object)(object)val != (Object)null) { val.SetActive(false); } else if (!currentlyEnablingAndDisablingObjects) { objectWarning = true; } } } if (firstPerson.objectsToEnableInFirstPerson != null) { GameObject[] objectsToEnableInFirstPerson = firstPerson.objectsToEnableInFirstPerson; foreach (GameObject val2 in objectsToEnableInFirstPerson) { if ((Object)(object)val2 != (Object)null) { val2.SetActive(true); } else if (!currentlyEnablingAndDisablingObjects) { objectWarning = true; } } } currentlyEnablingAndDisablingObjects = true; } objectsFinished = true; } else { if (objectsFinished) { if (firstPerson.objectsToDisableInFirstPerson != null) { GameObject[] objectsToDisableInFirstPerson2 = firstPerson.objectsToDisableInFirstPerson; foreach (GameObject val3 in objectsToDisableInFirstPerson2) { if ((Object)(object)val3 != (Object)null) { val3.SetActive(true); } else if (!currentlyEnablingAndDisablingObjects || inFirstPersonMode) { objectWarning = true; } } } if (firstPerson.objectsToEnableInFirstPerson != null) { GameObject[] objectsToEnableInFirstPerson2 = firstPerson.objectsToEnableInFirstPerson; foreach (GameObject val4 in objectsToEnableInFirstPerson2) { if ((Object)(object)val4 != (Object)null) { val4.SetActive(false); } else if (!currentlyEnablingAndDisablingObjects || inFirstPersonMode) { objectWarning = true; } } } currentlyEnablingAndDisablingObjects = true; } objectsFinished = false; } if (!inFirstPersonMode) { currentlyEnablingAndDisablingObjects = false; } if (!objectWarning) { return; } if (firstPerson.objectsToDisableInFirstPerson != null) { GameObject[] objectsToDisableInFirstPerson3 = firstPerson.objectsToDisableInFirstPerson; foreach (GameObject val5 in objectsToDisableInFirstPerson3) { if ((Object)(object)val5 == (Object)null) { Debug.Log((object)string.Concat("The gameObject: \"", val5, "\" does not exist")); } } } if (firstPerson.objectsToEnableInFirstPerson != null) { GameObject[] objectsToEnableInFirstPerson3 = firstPerson.objectsToEnableInFirstPerson; foreach (GameObject val6 in objectsToEnableInFirstPerson3) { if ((Object)(object)val6 == (Object)null) { Debug.Log((object)string.Concat("The gameObject: \"", val6, "\" does not exist")); } } } objectWarning = false; } } public class EnemyAI : MonoBehaviour { [Serializable] public class Movement { [Serializable] public class SideScrolling { public bool lockMovementOnZAxis = false; public float zValue = 0f; public bool lockMovementOnXAxis = false; public float xValue = 0f; public bool rotateInwards = true; } public float movementSpeed = 2.5f; public float rotationSpeed = 6f; public float distanceToFacePlayerFrom = 10f; public float distanceToChasePlayerFrom = 5f; public float viewpointPlayerMustBeInToFollow = 70f; public bool stopAtEdges = true; public bool showEdgeDetectors = true; public float edgeDetectorHeight = 0f; public float edgeDetectorForward = 0f; public float minimumEdgeHeight = 0f; public SideScrolling sideScrolling = new SideScrolling(); } [Serializable] public class Attack { public int attackPower = 2; } [Serializable] public class EnemyHealth { [Serializable] public class HealthBar { [Serializable] public class HealthBarMaterials { public Material outlineMaterial; public Material healthMaterial; public Material noHealthMaterial; } public Transform playerCamera; public bool showHealthBar = true; public float healthBarUpAmount = 0f; public float healthBarOverallHeight = 1f; public float healthBarOverallWidth = 1f; public float outlineHeight = 1f; public float outlineWidth = 1f; public float healthHeight = 1f; public float healthWidth = 1f; public HealthBarMaterials healthBarMaterials = new HealthBarMaterials(); public Color outlineColor = Color.black; public Color healthColor = Color.green; public Color noHealthColor = Color.red; public float secondsToShowHealthBarAfterEnemyDeath = 0.5f; } public float maximumHealth = 3f; public bool regainHealthOverTime = true; public float healthToRegain = 3f; public float timeNeededToRegainHealth = 7f; public float minimumDistanceFromPlayerToRegainHealth = 0f; public HealthBar healthBar = new HealthBar(); } [Serializable] public class Damage { public bool acquirePlayerAttackButtonFromPlayerIfPossible = true; public string playerAttackButton = "Fire1"; public float damageRadius = 1.25f; public float knockBackFactor = 1f; public float playerViewpointEnemyMustBeInToGetHit = 80f; public GameObject hurtEffect; public GameObject deathEffect; } [Serializable] public class Respawn { public bool allowRespawn = true; public float respawnWaitTime = 3f; public Vector3 respawnLocation; public Vector3 respawnRotation; public bool respawnAtStartLocationAndRotation = true; public float minimumDistanceFromPlayerToRespawn = 3f; public GameObject respawnEffect; } public Transform player; public Movement movement = new Movement(); public Attack attack = new Attack(); public EnemyHealth health = new EnemyHealth(); public Damage damage = new Damage(); public Respawn respawn = new Respawn(); private Vector3 edgeDetectorHeight2; private Vector3 edgeDetectorForward2; private Vector3 minimumEdgeHeight2; [HideInInspector] public int attackPower; [HideInInspector] public string playerAttackButton; [HideInInspector] public float maximumHealth; [HideInInspector] public bool regainHealthOverTime = true; [HideInInspector] public float healthToRegain; [HideInInspector] public float timeNeededToRegainHealth; [HideInInspector] public float minimumDistanceFromPlayerToRegainHealth; private float regainHealthTimer; [HideInInspector] public bool allowRespawn; [HideInInspector] public float respawnWaitTime; [HideInInspector] public Vector3 respawnLocation; [HideInInspector] public Quaternion respawnRotation; [HideInInspector] public float minimumDistanceFromPlayerToRespawn; private bool dead = false; private float deathTimer; private bool colliderOnOff; private bool rendererOnOff; private bool ccOnOff; private bool rbOnOff; private Renderer[] childRenderers; private float movementSpeed2; private Quaternion rotationDifference; private float dist; private float distY; private float playerAngle; private float enemyAngle; private bool playerInView; private float hitCount; private float lastHitCount; private float attackPressedTimer; private bool attackPressed; private bool attackButtonPressed; private bool playerCanAttack; private bool knockedBack; private Vector3 knockedBackDirection; private Vector3 dir; private Vector3 lastPosBeforePlayerDeath; private GameObject enemyHealth; private GameObject outline; private GameObject black; private GameObject healthBarObject; private GameObject red; private GameObject healthObject; private GameObject green; private Material outlineMaterial; private Material healthMaterial; private Material noHealthMaterial; private float feetPosition; private float headPosition; private float enemyHeight; private float showHealthBarAfterDeathTimer; private Vector3 healthBarBeforeDeathPos; private Transform playerCamera; private float healthBarUpAmount; private float healthBarOverallHeight; private float healthBarOverallWidth; private float outlineHeight; private float outlineWidth; private float healthHeight; private float healthWidth; private float secondsToShowHealthBarAfterEnemyDeath; public LayerMask collisionLayers = LayerMask.op_Implicit(-5); private void Start() { //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0053: Unknown result type (might be due to invalid IL or missing references) //IL_0058: Unknown result type (might be due to invalid IL or missing references) //IL_008e: Unknown result type (might be due to invalid IL or missing references) //IL_0093: Unknown result type (might be due to invalid IL or missing references) //IL_002a: Unknown result type (might be due to invalid IL or missing references) //IL_002f: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0040: Unknown result type (might be due to invalid IL or missing references) lastPosBeforePlayerDeath = ((Component)this).transform.position; if (respawn.respawnAtStartLocationAndRotation) { respawnLocation = ((Component)this).transform.position; respawnRotation = ((Component)this).transform.rotation; } else { respawnLocation = respawn.respawnLocation; respawnRotation = Quaternion.Euler(respawn.respawnRotation.x, respawn.respawnRotation.y, respawn.respawnRotation.z); } } private void FixedUpdate() { SettingVariables(); GetAngleBetweenPlayer(); GetDistanceFromPlayer(); RotateTowardsPlayer(); RotateTowardsPlayerSideScrolling(); SetHealthBarDeathPosition(); LockingAxisForSideScrolling(); MovingEnemy(); AttackedByPlayer(); RegainHealth(); EnemyDeath(); KnockBack(); CreatingEnemyHealthBar(); StabilizeEnemy(); } private void SettingVariables() { //IL_00fb: Unknown result type (might be due to invalid IL or missing references) //IL_0100: Unknown result type (might be due to invalid IL or missing references) //IL_0136: Unknown result type (might be due to invalid IL or missing references) //IL_013b: Unknown result type (might be due to invalid IL or missing references) attackPower = attack.attackPower; if (damage.acquirePlayerAttackButtonFromPlayerIfPossible && Object.op_Implicit((Object)(object)((Component)player).GetComponent())) { playerAttackButton = ((Component)player).GetComponent().attacking.attackInputButton; } else { playerAttackButton = damage.playerAttackButton; } maximumHealth = health.maximumHealth; regainHealthOverTime = health.regainHealthOverTime; healthToRegain = health.healthToRegain; timeNeededToRegainHealth = health.timeNeededToRegainHealth; minimumDistanceFromPlayerToRegainHealth = health.minimumDistanceFromPlayerToRegainHealth; allowRespawn = respawn.allowRespawn; respawnWaitTime = respawn.respawnWaitTime; if (!respawn.respawnAtStartLocationAndRotation) { respawnLocation = respawn.respawnLocation; respawnRotation = Quaternion.Euler(respawn.respawnRotation.x, respawn.respawnRotation.y, respawn.respawnRotation.z); } minimumDistanceFromPlayerToRespawn = respawn.minimumDistanceFromPlayerToRespawn; if ((Object)(object)health.healthBar.playerCamera == (Object)null) { if ((Object)(object)((Component)Camera.main).transform != (Object)null) { playerCamera = ((Component)Camera.main).transform; } } else { playerCamera = health.healthBar.playerCamera; } } private void GetAngleBetweenPlayer() { //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_0013: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_0049: Unknown result type (might be due to invalid IL or missing references) //IL_0054: Unknown result type (might be due to invalid IL or missing references) playerAngle = Vector3.Angle(((Component)this).transform.position - player.position, player.forward); enemyAngle = Vector3.Angle(player.position - ((Component)this).transform.position, ((Component)this).transform.forward); if (enemyAngle <= movement.viewpointPlayerMustBeInToFollow) { playerInView = true; } else if (dist > movement.distanceToChasePlayerFrom || distY > 3f) { playerInView = false; } } private void GetDistanceFromPlayer() { //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_001b: Unknown result type (might be due to invalid IL or missing references) //IL_0020: Unknown result type (might be due to invalid IL or missing references) //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) //IL_004b: Unknown result type (might be due to invalid IL or missing references) //IL_0050: Unknown result type (might be due to invalid IL or missing references) //IL_0067: Unknown result type (might be due to invalid IL or missing references) //IL_006c: Unknown result type (might be due to invalid IL or missing references) //IL_007a: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_009e: Unknown result type (might be due to invalid IL or missing references) //IL_00a3: Unknown result type (might be due to invalid IL or missing references) //IL_00b2: Unknown result type (might be due to invalid IL or missing references) //IL_00b7: Unknown result type (might be due to invalid IL or missing references) //IL_00e2: Unknown result type (might be due to invalid IL or missing references) //IL_00e7: Unknown result type (might be due to invalid IL or missing references) //IL_00f6: Unknown result type (might be due to invalid IL or missing references) //IL_00fb: Unknown result type (might be due to invalid IL or missing references) dir = new Vector3(player.position.x, ((Component)this).transform.position.y, player.position.z) - ((Component)this).transform.position; ((Vector3)(ref dir)).Normalize(); dist = Mathf.Sqrt(Mathf.Pow(Mathf.Abs(player.position.x - ((Component)this).transform.position.x), 2f) + Mathf.Pow(Mathf.Abs(player.position.z - ((Component)this).transform.position.z), 2f)); distY = Mathf.Sqrt(Mathf.Pow(Mathf.Abs(player.position.y - ((Component)this).transform.position.y), 2f)); } private void RotateTowardsPlayer() { //IL_0376: Unknown result type (might be due to invalid IL or missing references) //IL_037c: Unknown result type (might be due to invalid IL or missing references) //IL_0381: Unknown result type (might be due to invalid IL or missing references) //IL_0397: Unknown result type (might be due to invalid IL or missing references) //IL_0093: Unknown result type (might be due to invalid IL or missing references) //IL_0098: Unknown result type (might be due to invalid IL or missing references) //IL_00a6: Unknown result type (might be due to invalid IL or missing references) //IL_00ab: Unknown result type (might be due to invalid IL or missing references) //IL_0217: Unknown result type (might be due to invalid IL or missing references) //IL_021c: Unknown result type (might be due to invalid IL or missing references) //IL_022b: Unknown result type (might be due to invalid IL or missing references) //IL_0230: Unknown result type (might be due to invalid IL or missing references) //IL_01a3: Unknown result type (might be due to invalid IL or missing references) //IL_01a8: Unknown result type (might be due to invalid IL or missing references) //IL_01ad: Unknown result type (might be due to invalid IL or missing references) //IL_01bc: Unknown result type (might be due to invalid IL or missing references) //IL_01c1: Unknown result type (might be due to invalid IL or missing references) //IL_01c6: Unknown result type (might be due to invalid IL or missing references) //IL_01cf: Unknown result type (might be due to invalid IL or missing references) //IL_01d4: Unknown result type (might be due to invalid IL or missing references) //IL_0164: Unknown result type (might be due to invalid IL or missing references) //IL_0169: Unknown result type (might be due to invalid IL or missing references) //IL_016e: Unknown result type (might be due to invalid IL or missing references) //IL_017d: Unknown result type (might be due to invalid IL or missing references) //IL_0182: Unknown result type (might be due to invalid IL or missing references) //IL_0187: Unknown result type (might be due to invalid IL or missing references) //IL_0190: Unknown result type (might be due to invalid IL or missing references) //IL_0195: Unknown result type (might be due to invalid IL or missing references) //IL_010e: Unknown result type (might be due to invalid IL or missing references) //IL_0113: Unknown result type (might be due to invalid IL or missing references) //IL_0118: Unknown result type (might be due to invalid IL or missing references) //IL_0127: Unknown result type (might be due to invalid IL or missing references) //IL_012c: Unknown result type (might be due to invalid IL or missing references) //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_013a: Unknown result type (might be due to invalid IL or missing references) //IL_013f: Unknown result type (might be due to invalid IL or missing references) //IL_00d1: Unknown result type (might be due to invalid IL or missing references) //IL_00d6: Unknown result type (might be due to invalid IL or missing references) //IL_00db: Unknown result type (might be due to invalid IL or missing references) //IL_00e9: Unknown result type (might be due to invalid IL or missing references) //IL_00ee: Unknown result type (might be due to invalid IL or missing references) //IL_00f3: Unknown result type (might be due to invalid IL or missing references) //IL_00fb: Unknown result type (might be due to invalid IL or missing references) //IL_0100: Unknown result type (might be due to invalid IL or missing references) //IL_032b: Unknown result type (might be due to invalid IL or missing references) //IL_0330: Unknown result type (might be due to invalid IL or missing references) //IL_0335: Unknown result type (might be due to invalid IL or missing references) //IL_0344: Unknown result type (might be due to invalid IL or missing references) //IL_0349: Unknown result type (might be due to invalid IL or missing references) //IL_034e: Unknown result type (might be due to invalid IL or missing references) //IL_0357: Unknown result type (might be due to invalid IL or missing references) //IL_035c: Unknown result type (might be due to invalid IL or missing references) //IL_02ec: Unknown result type (might be due to invalid IL or missing references) //IL_02f1: Unknown result type (might be due to invalid IL or missing references) //IL_02f6: Unknown result type (might be due to invalid IL or missing references) //IL_0305: Unknown result type (might be due to invalid IL or missing references) //IL_030a: Unknown result type (might be due to invalid IL or missing references) //IL_030f: Unknown result type (might be due to invalid IL or missing references) //IL_0318: Unknown result type (might be due to invalid IL or missing references) //IL_031d: Unknown result type (might be due to invalid IL or missing references) //IL_0296: Unknown result type (might be due to invalid IL or missing references) //IL_029b: Unknown result type (might be due to invalid IL or missing references) //IL_02a0: Unknown result type (might be due to invalid IL or missing references) //IL_02af: Unknown result type (might be due to invalid IL or missing references) //IL_02b4: Unknown result type (might be due to invalid IL or missing references) //IL_02b9: Unknown result type (might be due to invalid IL or missing references) //IL_02c2: Unknown result type (might be due to invalid IL or missing references) //IL_02c7: Unknown result type (might be due to invalid IL or missing references) //IL_0257: Unknown result type (might be due to invalid IL or missing references) //IL_025c: Unknown result type (might be due to invalid IL or missing references) //IL_0261: Unknown result type (might be due to invalid IL or missing references) //IL_0270: Unknown result type (might be due to invalid IL or missing references) //IL_0275: Unknown result type (might be due to invalid IL or missing references) //IL_027a: Unknown result type (might be due to invalid IL or missing references) //IL_0283: Unknown result type (might be due to invalid IL or missing references) //IL_0288: Unknown result type (might be due to invalid IL or missing references) if (!(dist <= movement.distanceToFacePlayerFrom) || !(distY <= 3f) || (!playerInView && !movement.sideScrolling.lockMovementOnZAxis && !movement.sideScrolling.lockMovementOnXAxis)) { return; } if (movement.sideScrolling.lockMovementOnXAxis && !movement.sideScrolling.lockMovementOnZAxis) { if (((Component)player).transform.position.z < ((Component)this).transform.position.z) { if (movement.sideScrolling.rotateInwards) { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, 180.001f, Quaternion.LookRotation(dir).z); } else { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, 179.999f, Quaternion.LookRotation(dir).z); } } else if (movement.sideScrolling.rotateInwards) { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, -0.001f, Quaternion.LookRotation(dir).z); } else { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, 0.001f, Quaternion.LookRotation(dir).z); } } else if (movement.sideScrolling.lockMovementOnZAxis && !movement.sideScrolling.lockMovementOnXAxis) { if (((Component)player).transform.position.x >= ((Component)this).transform.position.x) { if (movement.sideScrolling.rotateInwards) { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, 90.001f, Quaternion.LookRotation(dir).z); } else { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, 89.999f, Quaternion.LookRotation(dir).z); } } else if (movement.sideScrolling.rotateInwards) { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, -90.001f, Quaternion.LookRotation(dir).z); } else { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, -89.999f, Quaternion.LookRotation(dir).z); } } else { ((Component)this).transform.rotation = Quaternion.Slerp(((Component)this).transform.rotation, Quaternion.LookRotation(dir), movement.rotationSpeed * Time.deltaTime); } } private void RotateTowardsPlayerSideScrolling() { //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0361: Unknown result type (might be due to invalid IL or missing references) //IL_0367: Unknown result type (might be due to invalid IL or missing references) //IL_037d: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Unknown result type (might be due to invalid IL or missing references) //IL_0062: Unknown result type (might be due to invalid IL or missing references) //IL_003c: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_018f: Unknown result type (might be due to invalid IL or missing references) //IL_0194: Unknown result type (might be due to invalid IL or missing references) //IL_0199: Unknown result type (might be due to invalid IL or missing references) //IL_01a8: Unknown result type (might be due to invalid IL or missing references) //IL_01ad: Unknown result type (might be due to invalid IL or missing references) //IL_01b2: Unknown result type (might be due to invalid IL or missing references) //IL_01bb: Unknown result type (might be due to invalid IL or missing references) //IL_01c0: Unknown result type (might be due to invalid IL or missing references) //IL_0150: Unknown result type (might be due to invalid IL or missing references) //IL_0155: Unknown result type (might be due to invalid IL or missing references) //IL_015a: Unknown result type (might be due to invalid IL or missing references) //IL_0169: Unknown result type (might be due to invalid IL or missing references) //IL_016e: Unknown result type (might be due to invalid IL or missing references) //IL_0173: Unknown result type (might be due to invalid IL or missing references) //IL_017c: Unknown result type (might be due to invalid IL or missing references) //IL_0181: Unknown result type (might be due to invalid IL or missing references) //IL_00fa: Unknown result type (might be due to invalid IL or missing references) //IL_00ff: Unknown result type (might be due to invalid IL or missing references) //IL_0104: Unknown result type (might be due to invalid IL or missing references) //IL_0113: Unknown result type (might be due to invalid IL or missing references) //IL_0118: Unknown result type (might be due to invalid IL or missing references) //IL_011d: Unknown result type (might be due to invalid IL or missing references) //IL_0126: Unknown result type (might be due to invalid IL or missing references) //IL_012b: Unknown result type (might be due to invalid IL or missing references) //IL_00bb: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_00d4: Unknown result type (might be due to invalid IL or missing references) //IL_00d9: Unknown result type (might be due to invalid IL or missing references) //IL_00de: Unknown result type (might be due to invalid IL or missing references) //IL_00e7: Unknown result type (might be due to invalid IL or missing references) //IL_00ec: Unknown result type (might be due to invalid IL or missing references) //IL_02f0: Unknown result type (might be due to invalid IL or missing references) //IL_02f5: Unknown result type (might be due to invalid IL or missing references) //IL_02fa: Unknown result type (might be due to invalid IL or missing references) //IL_0309: Unknown result type (might be due to invalid IL or missing references) //IL_030e: Unknown result type (might be due to invalid IL or missing references) //IL_0313: Unknown result type (might be due to invalid IL or missing references) //IL_031c: Unknown result type (might be due to invalid IL or missing references) //IL_0321: Unknown result type (might be due to invalid IL or missing references) //IL_02b1: Unknown result type (might be due to invalid IL or missing references) //IL_02b6: Unknown result type (might be due to invalid IL or missing references) //IL_02bb: Unknown result type (might be due to invalid IL or missing references) //IL_02ca: Unknown result type (might be due to invalid IL or missing references) //IL_02cf: Unknown result type (might be due to invalid IL or missing references) //IL_02d4: Unknown result type (might be due to invalid IL or missing references) //IL_02dd: Unknown result type (might be due to invalid IL or missing references) //IL_02e2: Unknown result type (might be due to invalid IL or missing references) //IL_025b: Unknown result type (might be due to invalid IL or missing references) //IL_0260: Unknown result type (might be due to invalid IL or missing references) //IL_0265: Unknown result type (might be due to invalid IL or missing references) //IL_0274: Unknown result type (might be due to invalid IL or missing references) //IL_0279: Unknown result type (might be due to invalid IL or missing references) //IL_027e: Unknown result type (might be due to invalid IL or missing references) //IL_0287: Unknown result type (might be due to invalid IL or missing references) //IL_028c: Unknown result type (might be due to invalid IL or missing references) //IL_021c: Unknown result type (might be due to invalid IL or missing references) //IL_0221: Unknown result type (might be due to invalid IL or missing references) //IL_0226: Unknown result type (might be due to invalid IL or missing references) //IL_0235: Unknown result type (might be due to invalid IL or missing references) //IL_023a: Unknown result type (might be due to invalid IL or missing references) //IL_023f: Unknown result type (might be due to invalid IL or missing references) //IL_0248: Unknown result type (might be due to invalid IL or missing references) //IL_024d: Unknown result type (might be due to invalid IL or missing references) if (dist > movement.distanceToFacePlayerFrom) { float num = ((!(((Component)this).transform.eulerAngles.y > 180f)) ? ((Component)this).transform.eulerAngles.y : (((Component)this).transform.eulerAngles.y - 360f)); if (movement.sideScrolling.lockMovementOnXAxis && !movement.sideScrolling.lockMovementOnZAxis) { if (num >= 90f) { if (movement.sideScrolling.rotateInwards) { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, 180.001f, Quaternion.LookRotation(dir).z); } else { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, 179.999f, Quaternion.LookRotation(dir).z); } } else if (movement.sideScrolling.rotateInwards) { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, -0.001f, Quaternion.LookRotation(dir).z); } else { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, 0.001f, Quaternion.LookRotation(dir).z); } } else if (movement.sideScrolling.lockMovementOnZAxis && !movement.sideScrolling.lockMovementOnXAxis) { if (num >= 0f) { if (movement.sideScrolling.rotateInwards) { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, 90.001f, Quaternion.LookRotation(dir).z); } else { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, 89.999f, Quaternion.LookRotation(dir).z); } } else if (movement.sideScrolling.rotateInwards) { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, -90.001f, Quaternion.LookRotation(dir).z); } else { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, -89.999f, Quaternion.LookRotation(dir).z); } } } if (movement.sideScrolling.lockMovementOnXAxis || movement.sideScrolling.lockMovementOnZAxis) { ((Component)this).transform.rotation = Quaternion.Slerp(((Component)this).transform.rotation, rotationDifference, movement.rotationSpeed * Time.deltaTime); } } private void SetHealthBarDeathPosition() { //IL_002a: Unknown result type (might be due to invalid IL or missing references) if (dead && (Object)(object)enemyHealth != (Object)null) { enemyHealth.transform.position = healthBarBeforeDeathPos; } } private void LockingAxisForSideScrolling() { //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) //IL_004b: Unknown result type (might be due to invalid IL or missing references) //IL_0053: Unknown result type (might be due to invalid IL or missing references) //IL_0080: Unknown result type (might be due to invalid IL or missing references) //IL_0085: Unknown result type (might be due to invalid IL or missing references) //IL_0093: Unknown result type (might be due to invalid IL or missing references) //IL_0098: Unknown result type (might be due to invalid IL or missing references) //IL_00b0: Unknown result type (might be due to invalid IL or missing references) if (movement.sideScrolling.lockMovementOnXAxis) { ((Component)this).transform.position = new Vector3(movement.sideScrolling.xValue, ((Component)this).transform.position.y, ((Component)this).transform.position.z); } if (movement.sideScrolling.lockMovementOnZAxis) { ((Component)this).transform.position = new Vector3(((Component)this).transform.position.x, ((Component)this).transform.position.y, movement.sideScrolling.zValue); } } private void MovingEnemy() { //IL_0013: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003e: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Unknown result type (might be due to invalid IL or missing references) //IL_005a: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_019d: Unknown result type (might be due to invalid IL or missing references) //IL_007b: Unknown result type (might be due to invalid IL or missing references) //IL_0086: Unknown result type (might be due to invalid IL or missing references) //IL_0090: Unknown result type (might be due to invalid IL or missing references) //IL_0095: Unknown result type (might be due to invalid IL or missing references) //IL_009b: Unknown result type (might be due to invalid IL or missing references) //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_00ab: Unknown result type (might be due to invalid IL or missing references) //IL_00b6: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_00cb: Unknown result type (might be due to invalid IL or missing references) //IL_00d0: Unknown result type (might be due to invalid IL or missing references) //IL_00db: Unknown result type (might be due to invalid IL or missing references) //IL_00e0: Unknown result type (might be due to invalid IL or missing references) //IL_00e6: Unknown result type (might be due to invalid IL or missing references) //IL_00eb: Unknown result type (might be due to invalid IL or missing references) //IL_00f0: Unknown result type (might be due to invalid IL or missing references) //IL_0100: Unknown result type (might be due to invalid IL or missing references) //IL_010b: Unknown result type (might be due to invalid IL or missing references) //IL_0115: Unknown result type (might be due to invalid IL or missing references) //IL_011a: Unknown result type (might be due to invalid IL or missing references) //IL_0120: Unknown result type (might be due to invalid IL or missing references) //IL_0125: Unknown result type (might be due to invalid IL or missing references) //IL_0130: Unknown result type (might be due to invalid IL or missing references) //IL_0135: Unknown result type (might be due to invalid IL or missing references) //IL_013b: Unknown result type (might be due to invalid IL or missing references) //IL_0140: Unknown result type (might be due to invalid IL or missing references) //IL_014b: Unknown result type (might be due to invalid IL or missing references) //IL_0156: Unknown result type (might be due to invalid IL or missing references) //IL_0160: Unknown result type (might be due to invalid IL or missing references) //IL_0165: Unknown result type (might be due to invalid IL or missing references) //IL_016b: Unknown result type (might be due to invalid IL or missing references) //IL_0170: Unknown result type (might be due to invalid IL or missing references) //IL_017b: Unknown result type (might be due to invalid IL or missing references) //IL_0180: Unknown result type (might be due to invalid IL or missing references) //IL_0186: Unknown result type (might be due to invalid IL or missing references) //IL_018b: Unknown result type (might be due to invalid IL or missing references) //IL_0190: Unknown result type (might be due to invalid IL or missing references) //IL_01b9: Unknown result type (might be due to invalid IL or missing references) //IL_01c4: Unknown result type (might be due to invalid IL or missing references) //IL_01ce: Unknown result type (might be due to invalid IL or missing references) //IL_01d3: Unknown result type (might be due to invalid IL or missing references) //IL_01d9: Unknown result type (might be due to invalid IL or missing references) //IL_01de: Unknown result type (might be due to invalid IL or missing references) //IL_01e9: Unknown result type (might be due to invalid IL or missing references) //IL_01f4: Unknown result type (might be due to invalid IL or missing references) //IL_01fe: Unknown result type (might be due to invalid IL or missing references) //IL_0203: Unknown result type (might be due to invalid IL or missing references) //IL_0209: Unknown result type (might be due to invalid IL or missing references) //IL_020e: Unknown result type (might be due to invalid IL or missing references) //IL_0219: Unknown result type (might be due to invalid IL or missing references) //IL_021e: Unknown result type (might be due to invalid IL or missing references) //IL_0224: Unknown result type (might be due to invalid IL or missing references) //IL_0229: Unknown result type (might be due to invalid IL or missing references) //IL_0231: Unknown result type (might be due to invalid IL or missing references) //IL_024b: Unknown result type (might be due to invalid IL or missing references) //IL_0256: Unknown result type (might be due to invalid IL or missing references) //IL_0260: Unknown result type (might be due to invalid IL or missing references) //IL_0265: Unknown result type (might be due to invalid IL or missing references) //IL_026b: Unknown result type (might be due to invalid IL or missing references) //IL_0270: Unknown result type (might be due to invalid IL or missing references) //IL_027b: Unknown result type (might be due to invalid IL or missing references) //IL_0280: Unknown result type (might be due to invalid IL or missing references) //IL_0286: Unknown result type (might be due to invalid IL or missing references) //IL_028b: Unknown result type (might be due to invalid IL or missing references) //IL_0296: Unknown result type (might be due to invalid IL or missing references) //IL_02a1: Unknown result type (might be due to invalid IL or missing references) //IL_02ab: Unknown result type (might be due to invalid IL or missing references) //IL_02b0: Unknown result type (might be due to invalid IL or missing references) //IL_02b6: Unknown result type (might be due to invalid IL or missing references) //IL_02bb: Unknown result type (might be due to invalid IL or missing references) //IL_02c6: Unknown result type (might be due to invalid IL or missing references) //IL_02cb: Unknown result type (might be due to invalid IL or missing references) //IL_02d1: Unknown result type (might be due to invalid IL or missing references) //IL_02d6: Unknown result type (might be due to invalid IL or missing references) //IL_02de: Unknown result type (might be due to invalid IL or missing references) //IL_03d3: Unknown result type (might be due to invalid IL or missing references) //IL_03d8: Unknown result type (might be due to invalid IL or missing references) //IL_0336: Unknown result type (might be due to invalid IL or missing references) //IL_033b: Unknown result type (might be due to invalid IL or missing references) //IL_0349: Unknown result type (might be due to invalid IL or missing references) //IL_034e: Unknown result type (might be due to invalid IL or missing references) //IL_038f: Unknown result type (might be due to invalid IL or missing references) //IL_0394: Unknown result type (might be due to invalid IL or missing references) //IL_03a3: Unknown result type (might be due to invalid IL or missing references) //IL_03a8: Unknown result type (might be due to invalid IL or missing references) //IL_0473: Unknown result type (might be due to invalid IL or missing references) //IL_0478: Unknown result type (might be due to invalid IL or missing references) //IL_0485: Unknown result type (might be due to invalid IL or missing references) //IL_048a: Unknown result type (might be due to invalid IL or missing references) //IL_04b1: Unknown result type (might be due to invalid IL or missing references) //IL_04be: Unknown result type (might be due to invalid IL or missing references) //IL_04c3: Unknown result type (might be due to invalid IL or missing references) edgeDetectorHeight2 = movement.edgeDetectorHeight * ((Component)this).transform.up; edgeDetectorForward2 = movement.edgeDetectorForward * ((Component)this).transform.forward; minimumEdgeHeight2 = movement.minimumEdgeHeight * ((Component)this).transform.up; if (movement.showEdgeDetectors) { Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.up * 0.2f + edgeDetectorHeight2, ((Component)this).transform.position + ((Component)this).transform.up * 0.2f + edgeDetectorHeight2 + ((Component)this).transform.forward + edgeDetectorForward2, Color.blue); Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.up * 0.2f + edgeDetectorHeight2 + ((Component)this).transform.forward + edgeDetectorForward2, ((Component)this).transform.position - ((Component)this).transform.up * 0.8f - minimumEdgeHeight2 + ((Component)this).transform.forward + edgeDetectorForward2, Color.blue); } RaycastHit val = default(RaycastHit); if (movement.stopAtEdges && !Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.up * 0.2f + edgeDetectorHeight2, ((Component)this).transform.position + ((Component)this).transform.up * 0.2f + edgeDetectorHeight2 + ((Component)this).transform.forward + edgeDetectorForward2, ref val, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.up * 0.2f + edgeDetectorHeight2 + ((Component)this).transform.forward + edgeDetectorForward2, ((Component)this).transform.position - ((Component)this).transform.up * 0.8f + minimumEdgeHeight2 + ((Component)this).transform.forward + edgeDetectorForward2, ref val, LayerMask.op_Implicit(collisionLayers))) { return; } Vector3 forward = default(Vector3); if (movement.sideScrolling.lockMovementOnXAxis && !movement.sideScrolling.lockMovementOnZAxis) { ((Vector3)(ref forward))..ctor(movement.sideScrolling.xValue, ((Component)this).transform.forward.y, ((Component)this).transform.forward.z); } if (movement.sideScrolling.lockMovementOnZAxis && !movement.sideScrolling.lockMovementOnXAxis) { ((Vector3)(ref forward))..ctor(((Component)this).transform.forward.x, ((Component)this).transform.forward.y, movement.sideScrolling.zValue); } else { forward = ((Component)this).transform.forward; } if (dist <= movement.distanceToChasePlayerFrom && distY <= 3f && playerInView) { if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { ((Component)this).GetComponent().SetBool("Walking", true); } movementSpeed2 = Mathf.Lerp(movementSpeed2, movement.movementSpeed, 8f * Time.deltaTime); if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { ((Component)this).GetComponent().MovePosition(((Component)this).transform.position + forward * (movementSpeed2 * Time.deltaTime)); } else if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { ((Component)this).GetComponent().Move(forward * (movementSpeed2 * Time.deltaTime)); } } else { if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { ((Component)this).GetComponent().SetBool("Walking", false); } movementSpeed2 = 0f; } } private void AttackedByPlayer() { if (((Input.GetButton(playerAttackButton) && !attackButtonPressed) || (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && !((Component)player).GetComponent().attackFinishedLastUpdate)) && (!Object.op_Implicit((Object)(object)((Component)player).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && !Input.GetKey((KeyCode)306) && !Input.GetKey((KeyCode)358) && !((Component)player).GetComponent().crouchCancelsAttack && !((Component)player).GetComponent().currentlyOnWall && !((Component)player).GetComponent().currentlyClimbingWall))) { attackPressedTimer = 0f; attackPressed = true; playerCanAttack = true; attackButtonPressed = true; } else { attackPressedTimer += 0.02f; if (!Input.GetButton(playerAttackButton)) { attackButtonPressed = false; } } if (attackPressedTimer > 0.2f) { attackPressed = false; } } private void RegainHealth() { if (regainHealthOverTime) { if (!dead) { if (dist >= minimumDistanceFromPlayerToRegainHealth) { regainHealthTimer += 0.02f; } } else { regainHealthTimer = 0f; } if (regainHealthTimer > timeNeededToRegainHealth) { if (healthToRegain < maximumHealth) { hitCount -= healthToRegain; } else { hitCount = 0f; } } } else { regainHealthTimer = 0f; } } private void EnemyDeath() { //IL_0053: Unknown result type (might be due to invalid IL or missing references) //IL_005e: Unknown result type (might be due to invalid IL or missing references) //IL_014f: Unknown result type (might be due to invalid IL or missing references) //IL_0155: Unknown result type (might be due to invalid IL or missing references) //IL_0092: Unknown result type (might be due to invalid IL or missing references) //IL_00a7: Unknown result type (might be due to invalid IL or missing references) //IL_0120: Unknown result type (might be due to invalid IL or missing references) //IL_0125: Unknown result type (might be due to invalid IL or missing references) //IL_036b: Unknown result type (might be due to invalid IL or missing references) //IL_037c: Unknown result type (might be due to invalid IL or missing references) //IL_03b0: Unknown result type (might be due to invalid IL or missing references) //IL_03b5: Unknown result type (might be due to invalid IL or missing references) //IL_03a4: Unknown result type (might be due to invalid IL or missing references) //IL_055b: Unknown result type (might be due to invalid IL or missing references) //IL_0566: Unknown result type (might be due to invalid IL or missing references) childRenderers = ((Component)this).GetComponentsInChildren(); if (!(hitCount >= maximumHealth)) { return; } if (!dead) { if ((Object)(object)damage.hurtEffect != (Object)null) { Object.Instantiate(damage.hurtEffect, ((Component)this).transform.position, ((Component)this).transform.rotation); } if ((Object)(object)damage.deathEffect != (Object)null) { Object.Instantiate(damage.deathEffect, ((Component)this).transform.position, damage.deathEffect.transform.rotation); } } if (!allowRespawn && (secondsToShowHealthBarAfterEnemyDeath <= 0f || !health.healthBar.showHealthBar)) { Object.Destroy((Object)(object)((Component)this).gameObject); return; } if (!dead && (Object)(object)enemyHealth != (Object)null) { healthBarBeforeDeathPos = enemyHealth.transform.position; } dead = true; showHealthBarAfterDeathTimer += Time.deltaTime; if (Vector3.Distance(((Component)player).transform.position, respawnLocation) >= minimumDistanceFromPlayerToRespawn) { deathTimer += Time.deltaTime; } if (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Component)this).GetComponent().enabled) { colliderOnOff = true; ((Component)this).GetComponent().enabled = false; } Renderer[] array = childRenderers; foreach (Renderer val in array) { if (Object.op_Implicit((Object)(object)val) && val.enabled) { rendererOnOff = true; val.enabled = false; } } if (dead && showHealthBarAfterDeathTimer >= secondsToShowHealthBarAfterEnemyDeath) { if (allowRespawn) { if (health.healthBar.showHealthBar) { if ((Object)(object)black != (Object)null && Object.op_Implicit((Object)(object)black.GetComponent())) { black.GetComponent().enabled = false; } if ((Object)(object)red != (Object)null && Object.op_Implicit((Object)(object)red.GetComponent())) { red.GetComponent().enabled = false; } if ((Object)(object)green != (Object)null && Object.op_Implicit((Object)(object)green.GetComponent())) { green.GetComponent().enabled = false; } } } else { Object.Destroy((Object)(object)((Component)this).gameObject); } } if (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Collider)((Component)this).GetComponent()).enabled) { ccOnOff = true; ((Collider)((Component)this).GetComponent()).enabled = false; } if (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Component)this).GetComponent().useGravity) { rbOnOff = true; ((Component)this).GetComponent().useGravity = false; } ((Component)this).transform.position = respawnLocation; ((Component)this).transform.rotation = respawnRotation; if ((Object)(object)enemyHealth != (Object)null) { enemyHealth.transform.position = healthBarBeforeDeathPos; } knockedBackDirection = Vector3.zero; if (!(deathTimer > respawnWaitTime)) { return; } if (colliderOnOff) { ((Component)this).GetComponent().enabled = true; colliderOnOff = false; } if (rendererOnOff) { Renderer[] array2 = childRenderers; foreach (Renderer val2 in array2) { val2.enabled = true; } if (health.healthBar.showHealthBar) { if ((Object)(object)black != (Object)null && Object.op_Implicit((Object)(object)black.GetComponent())) { black.GetComponent().enabled = true; } if ((Object)(object)red != (Object)null && Object.op_Implicit((Object)(object)red.GetComponent())) { red.GetComponent().enabled = true; } if ((Object)(object)green != (Object)null && Object.op_Implicit((Object)(object)green.GetComponent())) { green.GetComponent().enabled = true; } } rendererOnOff = false; } if (ccOnOff) { ((Collider)((Component)this).GetComponent()).enabled = true; ccOnOff = false; } if (rbOnOff) { ((Component)this).GetComponent().useGravity = true; rbOnOff = false; } if ((Object)(object)respawn.respawnEffect != (Object)null) { Object.Instantiate(respawn.respawnEffect, ((Component)this).transform.position, ((Component)this).transform.rotation); } dead = false; hitCount = 0f; deathTimer = 0f; showHealthBarAfterDeathTimer = 0f; } private void KnockBack() { //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_0086: Unknown result type (might be due to invalid IL or missing references) //IL_008c: Unknown result type (might be due to invalid IL or missing references) //IL_0096: Unknown result type (might be due to invalid IL or missing references) //IL_009b: Unknown result type (might be due to invalid IL or missing references) //IL_00d3: Unknown result type (might be due to invalid IL or missing references) //IL_00dd: Unknown result type (might be due to invalid IL or missing references) //IL_00e2: Unknown result type (might be due to invalid IL or missing references) if (!knockedBack || !(damage.knockBackFactor > 0f)) { return; } movementSpeed2 = 0f; if (Vector3.Distance(knockedBackDirection, Vector3.zero) > 0.1f) { knockedBackDirection = Vector3.Slerp(knockedBackDirection, Vector3.zero, 8f * Time.deltaTime); if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { ((Component)this).GetComponent().MovePosition(((Component)this).transform.position + knockedBackDirection * Time.deltaTime); } else if (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Collider)((Component)this).GetComponent()).enabled) { ((Component)this).GetComponent().Move(knockedBackDirection * Time.deltaTime); } } else { knockedBack = false; } } private void CreatingEnemyHealthBar() { if (health.healthBar.showHealthBar) { SetHealthBarVariables(); CreateHealthBarMaterials(); CreateHealthBar(); UpdateHealthBarMaterials(); UpdateHealthBarSizes(); GetEnemyHeight(); PositionHealthBar(); } else if ((Object)(object)enemyHealth != (Object)null) { Object.Destroy((Object)(object)enemyHealth); } } private void SetHealthBarVariables() { healthBarUpAmount = health.healthBar.healthBarUpAmount - 0.38f; healthBarOverallHeight = health.healthBar.healthBarOverallHeight; healthBarOverallWidth = health.healthBar.healthBarOverallWidth; outlineHeight = health.healthBar.outlineHeight - 0.37f; outlineWidth = health.healthBar.outlineWidth - 0.35f; healthHeight = health.healthBar.healthHeight - 0.5f; healthWidth = health.healthBar.healthWidth - 0.37f; secondsToShowHealthBarAfterEnemyDeath = health.healthBar.secondsToShowHealthBarAfterEnemyDeath; } private void CreateHealthBarMaterials() { //IL_004e: Unknown result type (might be due to invalid IL or missing references) //IL_00a6: Unknown result type (might be due to invalid IL or missing references) //IL_00fe: Unknown result type (might be due to invalid IL or missing references) if ((Object)(object)health.healthBar.healthBarMaterials.outlineMaterial != (Object)null) { outlineMaterial = health.healthBar.healthBarMaterials.outlineMaterial; outlineMaterial.color = health.healthBar.outlineColor; } if ((Object)(object)health.healthBar.healthBarMaterials.healthMaterial != (Object)null) { healthMaterial = health.healthBar.healthBarMaterials.healthMaterial; healthMaterial.color = health.healthBar.healthColor; } if ((Object)(object)health.healthBar.healthBarMaterials.noHealthMaterial != (Object)null) { noHealthMaterial = health.healthBar.healthBarMaterials.noHealthMaterial; noHealthMaterial.color = health.healthBar.noHealthColor; } } private void CreateHealthBar() { //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Expected O, but got Unknown //IL_0042: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Expected O, but got Unknown //IL_00db: Unknown result type (might be due to invalid IL or missing references) //IL_0132: Unknown result type (might be due to invalid IL or missing references) //IL_013c: Expected O, but got Unknown //IL_01cb: Unknown result type (might be due to invalid IL or missing references) //IL_01ef: Unknown result type (might be due to invalid IL or missing references) //IL_0246: Unknown result type (might be due to invalid IL or missing references) //IL_0250: Expected O, but got Unknown //IL_0295: Unknown result type (might be due to invalid IL or missing references) //IL_0303: Unknown result type (might be due to invalid IL or missing references) //IL_0327: Unknown result type (might be due to invalid IL or missing references) if ((Object)(object)enemyHealth == (Object)null) { enemyHealth = new GameObject(); ((Object)enemyHealth).name = "EnemyHealth"; } if ((Object)(object)outline == (Object)null) { outline = new GameObject(); ((Object)outline).name = "Outline"; outline.transform.parent = enemyHealth.transform; } if ((Object)(object)black == (Object)null) { black = GameObject.CreatePrimitive((PrimitiveType)5); ((Object)black).name = "Black"; black.transform.parent = outline.transform; black.transform.localScale = new Vector3(1f, 0.1829655f, 1f); if ((Object)(object)outlineMaterial != (Object)null) { black.GetComponent().material = outlineMaterial; } Object.Destroy((Object)(object)black.GetComponent()); } if ((Object)(object)healthBarObject == (Object)null) { healthBarObject = new GameObject(); ((Object)healthBarObject).name = "HealthBar"; healthBarObject.transform.parent = enemyHealth.transform; } if ((Object)(object)red == (Object)null) { red = GameObject.CreatePrimitive((PrimitiveType)5); ((Object)red).name = "Red"; red.transform.parent = healthBarObject.transform; red.transform.localScale = new Vector3(0.9552082f, 0.1394147f, 1f); red.transform.localPosition = new Vector3(0f, 0f, -0.001f); if ((Object)(object)noHealthMaterial != (Object)null) { red.GetComponent().material = noHealthMaterial; } Object.Destroy((Object)(object)red.GetComponent()); } if ((Object)(object)healthObject == (Object)null) { healthObject = new GameObject(); ((Object)healthObject).name = "HealthObject"; healthObject.transform.parent = healthBarObject.transform; healthObject.transform.localPosition = new Vector3(-0.4774f, 0f, -0.002f); } if ((Object)(object)green == (Object)null) { green = GameObject.CreatePrimitive((PrimitiveType)5); ((Object)green).name = "Green"; green.transform.parent = healthObject.transform; green.transform.localScale = new Vector3(0.9552084f, 0.1394147f, 1f); green.transform.localPosition = new Vector3(0.4774f, 0f, -0.002f); if ((Object)(object)healthMaterial != (Object)null) { green.GetComponent().material = healthMaterial; } Object.Destroy((Object)(object)green.GetComponent()); } } private void UpdateHealthBarMaterials() { if ((Object)(object)black != (Object)null && (Object)(object)outlineMaterial != (Object)null) { black.GetComponent().material = outlineMaterial; } if ((Object)(object)red != (Object)null && (Object)(object)noHealthMaterial != (Object)null) { red.GetComponent().material = noHealthMaterial; } if ((Object)(object)green != (Object)null && (Object)(object)healthMaterial != (Object)null) { green.GetComponent().material = healthMaterial; } } private void UpdateHealthBarSizes() { //IL_002a: Unknown result type (might be due to invalid IL or missing references) //IL_002f: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_0049: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Unknown result type (might be due to invalid IL or missing references) //IL_0062: Unknown result type (might be due to invalid IL or missing references) //IL_006b: Unknown result type (might be due to invalid IL or missing references) //IL_00a4: Unknown result type (might be due to invalid IL or missing references) //IL_00dd: Unknown result type (might be due to invalid IL or missing references) //IL_0170: Unknown result type (might be due to invalid IL or missing references) //IL_0145: Unknown result type (might be due to invalid IL or missing references) if ((Object)(object)enemyHealth != (Object)null) { enemyHealth.transform.localScale = new Vector3(healthBarOverallWidth / ((Component)this).transform.localScale.x, healthBarOverallHeight / ((Component)this).transform.localScale.y, 1f / ((Component)this).transform.localScale.z); } if ((Object)(object)outline != (Object)null) { outline.transform.localScale = new Vector3(outlineWidth, outlineHeight, 1f); } if ((Object)(object)healthBarObject != (Object)null) { healthBarObject.transform.localScale = new Vector3(healthWidth, healthHeight, 1f); } if ((Object)(object)healthObject != (Object)null) { if (maximumHealth > 0f && hitCount <= maximumHealth) { healthObject.transform.localScale = new Vector3((maximumHealth - hitCount) / maximumHealth, 1f, 1f); } else { healthObject.transform.localScale = new Vector3(0f, 1f, 1f); } } } private void GetEnemyHeight() { //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0026: Unknown result type (might be due to invalid IL or missing references) //IL_002b: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_00e8: Unknown result type (might be due to invalid IL or missing references) //IL_00ed: Unknown result type (might be due to invalid IL or missing references) //IL_00f1: Unknown result type (might be due to invalid IL or missing references) //IL_00f6: Unknown result type (might be due to invalid IL or missing references) //IL_010b: Unknown result type (might be due to invalid IL or missing references) //IL_0110: Unknown result type (might be due to invalid IL or missing references) //IL_0114: Unknown result type (might be due to invalid IL or missing references) //IL_0119: Unknown result type (might be due to invalid IL or missing references) //IL_012d: Unknown result type (might be due to invalid IL or missing references) //IL_0132: Unknown result type (might be due to invalid IL or missing references) //IL_009f: Unknown result type (might be due to invalid IL or missing references) //IL_00a4: Unknown result type (might be due to invalid IL or missing references) //IL_01c2: Unknown result type (might be due to invalid IL or missing references) //IL_01c7: Unknown result type (might be due to invalid IL or missing references) //IL_01cb: Unknown result type (might be due to invalid IL or missing references) //IL_01d0: Unknown result type (might be due to invalid IL or missing references) //IL_01e5: Unknown result type (might be due to invalid IL or missing references) //IL_01ea: Unknown result type (might be due to invalid IL or missing references) //IL_01ee: Unknown result type (might be due to invalid IL or missing references) //IL_01f3: Unknown result type (might be due to invalid IL or missing references) //IL_0207: Unknown result type (might be due to invalid IL or missing references) //IL_020c: Unknown result type (might be due to invalid IL or missing references) //IL_016d: Unknown result type (might be due to invalid IL or missing references) //IL_0172: Unknown result type (might be due to invalid IL or missing references) //IL_0347: Unknown result type (might be due to invalid IL or missing references) //IL_034c: Unknown result type (might be due to invalid IL or missing references) //IL_028e: Unknown result type (might be due to invalid IL or missing references) //IL_0293: Unknown result type (might be due to invalid IL or missing references) //IL_0297: Unknown result type (might be due to invalid IL or missing references) //IL_029c: Unknown result type (might be due to invalid IL or missing references) //IL_02b1: Unknown result type (might be due to invalid IL or missing references) //IL_02b6: Unknown result type (might be due to invalid IL or missing references) //IL_02ba: Unknown result type (might be due to invalid IL or missing references) //IL_02bf: Unknown result type (might be due to invalid IL or missing references) //IL_02d3: Unknown result type (might be due to invalid IL or missing references) //IL_02d8: Unknown result type (might be due to invalid IL or missing references) //IL_0247: Unknown result type (might be due to invalid IL or missing references) //IL_024c: Unknown result type (might be due to invalid IL or missing references) //IL_025b: Unknown result type (might be due to invalid IL or missing references) //IL_0260: Unknown result type (might be due to invalid IL or missing references) //IL_0313: Unknown result type (might be due to invalid IL or missing references) //IL_0318: Unknown result type (might be due to invalid IL or missing references) if (Object.op_Implicit((Object)(object)((Component)((Component)this).transform).GetComponent())) { Bounds bounds = ((Collider)((Component)this).GetComponent()).bounds; feetPosition = ((Bounds)(ref bounds)).min.y; Bounds bounds2 = ((Collider)((Component)this).GetComponent()).bounds; headPosition = ((Bounds)(ref bounds2)).max.y; if (((Component)this).transform.localScale.y >= 1f) { enemyHeight = (headPosition - feetPosition) * 1.4f; } else { enemyHeight = ((Component)this).transform.localScale.y * ((Component)this).GetComponent().height * 1.4f; } } else if (Object.op_Implicit((Object)(object)((Component)((Component)this).transform).GetComponent())) { Bounds bounds3 = ((Collider)((Component)this).GetComponent()).bounds; feetPosition = ((Bounds)(ref bounds3)).min.y; Bounds bounds4 = ((Collider)((Component)this).GetComponent()).bounds; headPosition = ((Bounds)(ref bounds4)).max.y; if (((Component)this).transform.localScale.y >= 1f) { enemyHeight = (headPosition - feetPosition) * 1.4f; } else { enemyHeight = ((Component)this).transform.localScale.y / 1.83f * ((Component)this).GetComponent().radius * 4.2f + 0.7f; } } else if (Object.op_Implicit((Object)(object)((Component)((Component)this).transform).GetComponent())) { Bounds bounds5 = ((Collider)((Component)this).GetComponent()).bounds; feetPosition = ((Bounds)(ref bounds5)).min.y; Bounds bounds6 = ((Collider)((Component)this).GetComponent()).bounds; headPosition = ((Bounds)(ref bounds6)).max.y; if (((Component)this).transform.localScale.y >= 1f) { enemyHeight = (headPosition - feetPosition) * 1.4f; } else { enemyHeight = ((Component)this).transform.localScale.y * ((Component)this).GetComponent().size.y; } } else if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { Bounds bounds7 = ((Collider)((Component)this).GetComponent()).bounds; feetPosition = ((Bounds)(ref bounds7)).min.y; Bounds bounds8 = ((Collider)((Component)this).GetComponent()).bounds; headPosition = ((Bounds)(ref bounds8)).max.y; if (((Component)this).transform.localScale.y >= 1f) { enemyHeight = (headPosition - feetPosition) * 1.4f; } else { enemyHeight = ((Component)this).transform.localScale.y * ((Component)this).GetComponent().height * 1.4f; } } else { enemyHeight = ((Component)this).transform.localScale.y; } } private void PositionHealthBar() { //IL_006e: Unknown result type (might be due to invalid IL or missing references) //IL_0030: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Unknown result type (might be due to invalid IL or missing references) //IL_0051: Unknown result type (might be due to invalid IL or missing references) //IL_0147: Unknown result type (might be due to invalid IL or missing references) //IL_014c: Unknown result type (might be due to invalid IL or missing references) //IL_015f: Unknown result type (might be due to invalid IL or missing references) //IL_0164: Unknown result type (might be due to invalid IL or missing references) //IL_0190: Unknown result type (might be due to invalid IL or missing references) //IL_01a6: Unknown result type (might be due to invalid IL or missing references) //IL_01b6: Unknown result type (might be due to invalid IL or missing references) //IL_01bb: Unknown result type (might be due to invalid IL or missing references) if ((Object)(object)enemyHealth != (Object)null) { if (!dead) { enemyHealth.transform.position = ((Component)this).transform.position + new Vector3(0f, enemyHeight + healthBarUpAmount, 0f); } else { enemyHealth.transform.position = healthBarBeforeDeathPos; } if (!Object.op_Implicit((Object)(object)enemyHealth.GetComponent()) && !Object.op_Implicit((Object)(object)outline.GetComponent()) && !Object.op_Implicit((Object)(object)black.GetComponent()) && !Object.op_Implicit((Object)(object)healthBarObject.GetComponent()) && !Object.op_Implicit((Object)(object)red.GetComponent()) && !Object.op_Implicit((Object)(object)healthObject.GetComponent()) && !Object.op_Implicit((Object)(object)green.GetComponent())) { enemyHealth.transform.parent = ((Component)this).transform; } else { enemyHealth.transform.parent = null; } float num = (((Component)playerCamera).transform.position.y - enemyHealth.transform.position.y - 0.5230548f) * 5f; enemyHealth.transform.rotation = ((Component)playerCamera).transform.rotation; Transform transform = enemyHealth.transform; transform.localRotation *= Quaternion.Euler(num, 0f, 0f); } } private void StabilizeEnemy() { //IL_0061: Unknown result type (might be due to invalid IL or missing references) //IL_0066: Unknown result type (might be due to invalid IL or missing references) //IL_0049: Unknown result type (might be due to invalid IL or missing references) //IL_0095: Unknown result type (might be due to invalid IL or missing references) if (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && ((Behaviour)((Component)player).GetComponent()).enabled && ((Component)player).GetComponent().currentHealth <= 0) { ((Component)this).transform.position = lastPosBeforePlayerDeath; } else { lastPosBeforePlayerDeath = ((Component)this).transform.position; } if (dead && (Object)(object)enemyHealth != (Object)null) { enemyHealth.transform.position = healthBarBeforeDeathPos; } } private void LateUpdate() { //IL_0316: Unknown result type (might be due to invalid IL or missing references) //IL_00a1: Unknown result type (might be due to invalid IL or missing references) //IL_00ac: Unknown result type (might be due to invalid IL or missing references) //IL_0114: Unknown result type (might be due to invalid IL or missing references) //IL_0124: Unknown result type (might be due to invalid IL or missing references) //IL_0129: Unknown result type (might be due to invalid IL or missing references) //IL_00e2: Unknown result type (might be due to invalid IL or missing references) //IL_00e7: Unknown result type (might be due to invalid IL or missing references) //IL_00f7: Unknown result type (might be due to invalid IL or missing references) //IL_00fc: Unknown result type (might be due to invalid IL or missing references) if (attackPressed) { if (playerCanAttack && dist <= damage.damageRadius && distY <= 7f && hitCount < maximumHealth && lastHitCount == hitCount && playerAngle < damage.playerViewpointEnemyMustBeInToGetHit) { if ((Object)(object)damage.hurtEffect != (Object)null) { Object.Instantiate(damage.hurtEffect, ((Component)this).transform.position, ((Component)this).transform.rotation); } regainHealthTimer = 0f; playerInView = true; if (playerAngle < 60f) { knockedBackDirection = -((Component)this).transform.forward * damage.knockBackFactor; } else { knockedBackDirection = ((Component)player).transform.forward * damage.knockBackFactor; } knockedBack = true; if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { ((Component)this).GetComponent().CrossFade("BotKnockBack", 0f, -1, 0f); } if ((Object)(object)((Component)player).GetComponent() != (Object)null && ((Behaviour)((Component)player).GetComponent()).enabled) { if (!((Component)player).GetComponent().crouching) { if (((Component)player).GetComponent().currentAttackNumber - 1 <= ((Component)player).GetComponent().totalAttackNumber && ((Component)player).GetComponent().currentAttackNumber - 1 > 0 && ((Component)player).GetComponent().attacksToPerform[((Component)player).GetComponent().currentAttackNumber - 1] >= 0f) { hitCount += ((Component)player).GetComponent().attacksToPerform[((Component)player).GetComponent().currentAttackNumber - 1]; } else if (((Component)player).GetComponent().currentAttackNumber > 0) { hitCount += ((Component)player).GetComponent().attacksToPerform[0]; } } else { hitCount += ((Component)player).GetComponent().attacking.crouch.crouchAttackStrength; } } else { hitCount += 1f; } playerCanAttack = false; } } else { playerCanAttack = true; } lastHitCount = hitCount; if (dead && (Object)(object)enemyHealth != (Object)null) { enemyHealth.transform.position = healthBarBeforeDeathPos; } } private void OnDisable() { if ((Object)(object)enemyHealth != (Object)null) { Object.Destroy((Object)(object)enemyHealth); } } private void OnControllerColliderHit(ControllerColliderHit hit) { if (((Behaviour)this).enabled && Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && ((Behaviour)((Component)player).GetComponent()).enabled && ((Component)player).GetComponent().canDamage && ((Component)player).GetComponent().canDamage2 && ((Object)hit.gameObject).name == ((Object)((Component)player).gameObject).name) { ((Component)player).GetComponent().enemyAttackPower = attackPower; ((Component)player).GetComponent().applyDamage = true; ((Component)player).GetComponent().blink = true; } } private void OnCollisionStay(Collision hit) { if (((Behaviour)this).enabled && Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && ((Behaviour)((Component)player).GetComponent()).enabled && ((Component)player).GetComponent().canDamage && ((Component)player).GetComponent().canDamage2 && ((Object)hit.gameObject).name == ((Object)((Component)player).gameObject).name) { ((Component)player).GetComponent().enemyAttackPower = attackPower; ((Component)player).GetComponent().applyDamage = true; ((Component)player).GetComponent().blink = true; } } } public class EnemyAI1 : MonoBehaviour { [Serializable] public class Movement { [Serializable] public class SideScrolling { public bool lockMovementOnZAxis = false; public float zValue = 0f; public bool lockMovementOnXAxis = false; public float xValue = 0f; public bool rotateInwards = true; } public float movementSpeed = 2.5f; public float rotationSpeed = 6f; public float distanceToFacePlayerFrom = 10f; public float distanceToChasePlayerFrom = 5f; public float viewpointPlayerMustBeInToFollow = 70f; public bool stopAtEdges = true; public bool showEdgeDetectors = true; public float edgeDetectorHeight = 0f; public float edgeDetectorForward = 0f; public float minimumEdgeHeight = 0f; public SideScrolling sideScrolling = new SideScrolling(); } [Serializable] public class Attack { public int attackPower = 2; } [Serializable] public class EnemyHealth { [Serializable] public class HealthBar { [Serializable] public class HealthBarMaterials { public Material outlineMaterial; public Material healthMaterial; public Material noHealthMaterial; } public Transform playerCamera; public bool showHealthBar = true; public float healthBarUpAmount = 0f; public float healthBarOverallHeight = 1f; public float healthBarOverallWidth = 1f; public float outlineHeight = 1f; public float outlineWidth = 1f; public float healthHeight = 1f; public float healthWidth = 1f; public HealthBarMaterials healthBarMaterials = new HealthBarMaterials(); public Color outlineColor = Color.black; public Color healthColor = Color.green; public Color noHealthColor = Color.red; public float secondsToShowHealthBarAfterEnemyDeath = 0.5f; } public float maximumHealth = 3f; public bool regainHealthOverTime = true; public float healthToRegain = 3f; public float timeNeededToRegainHealth = 7f; public float minimumDistanceFromPlayerToRegainHealth = 0f; public HealthBar healthBar = new HealthBar(); } [Serializable] public class Damage { public bool acquirePlayerAttackButtonFromPlayerIfPossible = true; public string playerAttackButton = "Fire1"; public float damageRadius = 1.25f; public float knockBackFactor = 1f; public float playerViewpointEnemyMustBeInToGetHit = 80f; public GameObject hurtEffect; public GameObject deathEffect; } [Serializable] public class Respawn { public bool allowRespawn = true; public float respawnWaitTime = 3f; public Vector3 respawnLocation; public Vector3 respawnRotation; public bool respawnAtStartLocationAndRotation = true; public float minimumDistanceFromPlayerToRespawn = 3f; public GameObject respawnEffect; } public Transform player; public Movement movement = new Movement(); public Attack attack = new Attack(); public EnemyHealth health = new EnemyHealth(); public Damage damage = new Damage(); public Respawn respawn = new Respawn(); private Vector3 edgeDetectorHeight2; private Vector3 edgeDetectorForward2; private Vector3 minimumEdgeHeight2; [HideInInspector] public int attackPower; [HideInInspector] public string playerAttackButton; [HideInInspector] public float maximumHealth; [HideInInspector] public bool regainHealthOverTime = true; [HideInInspector] public float healthToRegain; [HideInInspector] public float timeNeededToRegainHealth; [HideInInspector] public float minimumDistanceFromPlayerToRegainHealth; private float regainHealthTimer; [HideInInspector] public bool allowRespawn; [HideInInspector] public float respawnWaitTime; [HideInInspector] public Vector3 respawnLocation; [HideInInspector] public Quaternion respawnRotation; [HideInInspector] public float minimumDistanceFromPlayerToRespawn; private bool dead = false; private float deathTimer; private bool colliderOnOff; private bool rendererOnOff; private bool ccOnOff; private bool rbOnOff; private Renderer[] childRenderers; private float movementSpeed2; private Quaternion rotationDifference; private float dist; private float distY; private float playerAngle; private float enemyAngle; private bool playerInView; private float hitCount; private float lastHitCount; private float attackPressedTimer; private bool attackPressed; private bool attackButtonPressed; private bool playerCanAttack; private bool knockedBack; private Vector3 knockedBackDirection; private Vector3 dir; private Vector3 lastPosBeforePlayerDeath; private GameObject enemyHealth; private GameObject outline; private GameObject black; private GameObject healthBarObject; private GameObject red; private GameObject healthObject; private GameObject green; private Material outlineMaterial; private Material healthMaterial; private Material noHealthMaterial; private float feetPosition; private float headPosition; private float enemyHeight; private float showHealthBarAfterDeathTimer; private Vector3 healthBarBeforeDeathPos; private Transform playerCamera; private float healthBarUpAmount; private float healthBarOverallHeight; private float healthBarOverallWidth; private float outlineHeight; private float outlineWidth; private float healthHeight; private float healthWidth; private float secondsToShowHealthBarAfterEnemyDeath; public LayerMask collisionLayers = LayerMask.op_Implicit(-5); private void Start() { //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0053: Unknown result type (might be due to invalid IL or missing references) //IL_0058: Unknown result type (might be due to invalid IL or missing references) //IL_008e: Unknown result type (might be due to invalid IL or missing references) //IL_0093: Unknown result type (might be due to invalid IL or missing references) //IL_002a: Unknown result type (might be due to invalid IL or missing references) //IL_002f: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0040: Unknown result type (might be due to invalid IL or missing references) lastPosBeforePlayerDeath = ((Component)this).transform.position; if (respawn.respawnAtStartLocationAndRotation) { respawnLocation = ((Component)this).transform.position; respawnRotation = ((Component)this).transform.rotation; } else { respawnLocation = respawn.respawnLocation; respawnRotation = Quaternion.Euler(respawn.respawnRotation.x, respawn.respawnRotation.y, respawn.respawnRotation.z); } } private void FixedUpdate() { SettingVariables(); GetAngleBetweenPlayer(); GetDistanceFromPlayer(); RotateTowardsPlayer(); RotateTowardsPlayerSideScrolling(); SetHealthBarDeathPosition(); LockingAxisForSideScrolling(); MovingEnemy(); AttackedByPlayer(); RegainHealth(); EnemyDeath(); KnockBack(); CreatingEnemyHealthBar(); StabilizeEnemy(); } private void SettingVariables() { //IL_00fb: Unknown result type (might be due to invalid IL or missing references) //IL_0100: Unknown result type (might be due to invalid IL or missing references) //IL_0136: Unknown result type (might be due to invalid IL or missing references) //IL_013b: Unknown result type (might be due to invalid IL or missing references) attackPower = attack.attackPower; if (damage.acquirePlayerAttackButtonFromPlayerIfPossible && Object.op_Implicit((Object)(object)((Component)player).GetComponent())) { playerAttackButton = ((Component)player).GetComponent().attacking.attackInputButton; } else { playerAttackButton = damage.playerAttackButton; } maximumHealth = health.maximumHealth; regainHealthOverTime = health.regainHealthOverTime; healthToRegain = health.healthToRegain; timeNeededToRegainHealth = health.timeNeededToRegainHealth; minimumDistanceFromPlayerToRegainHealth = health.minimumDistanceFromPlayerToRegainHealth; allowRespawn = respawn.allowRespawn; respawnWaitTime = respawn.respawnWaitTime; if (!respawn.respawnAtStartLocationAndRotation) { respawnLocation = respawn.respawnLocation; respawnRotation = Quaternion.Euler(respawn.respawnRotation.x, respawn.respawnRotation.y, respawn.respawnRotation.z); } minimumDistanceFromPlayerToRespawn = respawn.minimumDistanceFromPlayerToRespawn; if ((Object)(object)health.healthBar.playerCamera == (Object)null) { if ((Object)(object)((Component)Camera.main).transform != (Object)null) { playerCamera = ((Component)Camera.main).transform; } } else { playerCamera = health.healthBar.playerCamera; } } private void GetAngleBetweenPlayer() { //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_0013: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_0049: Unknown result type (might be due to invalid IL or missing references) //IL_0054: Unknown result type (might be due to invalid IL or missing references) playerAngle = Vector3.Angle(((Component)this).transform.position - player.position, player.forward); enemyAngle = Vector3.Angle(player.position - ((Component)this).transform.position, ((Component)this).transform.forward); if (enemyAngle <= movement.viewpointPlayerMustBeInToFollow) { playerInView = true; } else if (dist > movement.distanceToChasePlayerFrom || distY > 3f) { playerInView = false; } } private void GetDistanceFromPlayer() { //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_001b: Unknown result type (might be due to invalid IL or missing references) //IL_0020: Unknown result type (might be due to invalid IL or missing references) //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) //IL_004b: Unknown result type (might be due to invalid IL or missing references) //IL_0050: Unknown result type (might be due to invalid IL or missing references) //IL_0067: Unknown result type (might be due to invalid IL or missing references) //IL_006c: Unknown result type (might be due to invalid IL or missing references) //IL_007a: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_009e: Unknown result type (might be due to invalid IL or missing references) //IL_00a3: Unknown result type (might be due to invalid IL or missing references) //IL_00b2: Unknown result type (might be due to invalid IL or missing references) //IL_00b7: Unknown result type (might be due to invalid IL or missing references) //IL_00e2: Unknown result type (might be due to invalid IL or missing references) //IL_00e7: Unknown result type (might be due to invalid IL or missing references) //IL_00f6: Unknown result type (might be due to invalid IL or missing references) //IL_00fb: Unknown result type (might be due to invalid IL or missing references) dir = new Vector3(player.position.x, ((Component)this).transform.position.y, player.position.z) - ((Component)this).transform.position; ((Vector3)(ref dir)).Normalize(); dist = Mathf.Sqrt(Mathf.Pow(Mathf.Abs(player.position.x - ((Component)this).transform.position.x), 2f) + Mathf.Pow(Mathf.Abs(player.position.z - ((Component)this).transform.position.z), 2f)); distY = Mathf.Sqrt(Mathf.Pow(Mathf.Abs(player.position.y - ((Component)this).transform.position.y), 2f)); } private void RotateTowardsPlayer() { //IL_0376: Unknown result type (might be due to invalid IL or missing references) //IL_037c: Unknown result type (might be due to invalid IL or missing references) //IL_0381: Unknown result type (might be due to invalid IL or missing references) //IL_0397: Unknown result type (might be due to invalid IL or missing references) //IL_0093: Unknown result type (might be due to invalid IL or missing references) //IL_0098: Unknown result type (might be due to invalid IL or missing references) //IL_00a6: Unknown result type (might be due to invalid IL or missing references) //IL_00ab: Unknown result type (might be due to invalid IL or missing references) //IL_0217: Unknown result type (might be due to invalid IL or missing references) //IL_021c: Unknown result type (might be due to invalid IL or missing references) //IL_022b: Unknown result type (might be due to invalid IL or missing references) //IL_0230: Unknown result type (might be due to invalid IL or missing references) //IL_01a3: Unknown result type (might be due to invalid IL or missing references) //IL_01a8: Unknown result type (might be due to invalid IL or missing references) //IL_01ad: Unknown result type (might be due to invalid IL or missing references) //IL_01bc: Unknown result type (might be due to invalid IL or missing references) //IL_01c1: Unknown result type (might be due to invalid IL or missing references) //IL_01c6: Unknown result type (might be due to invalid IL or missing references) //IL_01cf: Unknown result type (might be due to invalid IL or missing references) //IL_01d4: Unknown result type (might be due to invalid IL or missing references) //IL_0164: Unknown result type (might be due to invalid IL or missing references) //IL_0169: Unknown result type (might be due to invalid IL or missing references) //IL_016e: Unknown result type (might be due to invalid IL or missing references) //IL_017d: Unknown result type (might be due to invalid IL or missing references) //IL_0182: Unknown result type (might be due to invalid IL or missing references) //IL_0187: Unknown result type (might be due to invalid IL or missing references) //IL_0190: Unknown result type (might be due to invalid IL or missing references) //IL_0195: Unknown result type (might be due to invalid IL or missing references) //IL_010e: Unknown result type (might be due to invalid IL or missing references) //IL_0113: Unknown result type (might be due to invalid IL or missing references) //IL_0118: Unknown result type (might be due to invalid IL or missing references) //IL_0127: Unknown result type (might be due to invalid IL or missing references) //IL_012c: Unknown result type (might be due to invalid IL or missing references) //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_013a: Unknown result type (might be due to invalid IL or missing references) //IL_013f: Unknown result type (might be due to invalid IL or missing references) //IL_00d1: Unknown result type (might be due to invalid IL or missing references) //IL_00d6: Unknown result type (might be due to invalid IL or missing references) //IL_00db: Unknown result type (might be due to invalid IL or missing references) //IL_00e9: Unknown result type (might be due to invalid IL or missing references) //IL_00ee: Unknown result type (might be due to invalid IL or missing references) //IL_00f3: Unknown result type (might be due to invalid IL or missing references) //IL_00fb: Unknown result type (might be due to invalid IL or missing references) //IL_0100: Unknown result type (might be due to invalid IL or missing references) //IL_032b: Unknown result type (might be due to invalid IL or missing references) //IL_0330: Unknown result type (might be due to invalid IL or missing references) //IL_0335: Unknown result type (might be due to invalid IL or missing references) //IL_0344: Unknown result type (might be due to invalid IL or missing references) //IL_0349: Unknown result type (might be due to invalid IL or missing references) //IL_034e: Unknown result type (might be due to invalid IL or missing references) //IL_0357: Unknown result type (might be due to invalid IL or missing references) //IL_035c: Unknown result type (might be due to invalid IL or missing references) //IL_02ec: Unknown result type (might be due to invalid IL or missing references) //IL_02f1: Unknown result type (might be due to invalid IL or missing references) //IL_02f6: Unknown result type (might be due to invalid IL or missing references) //IL_0305: Unknown result type (might be due to invalid IL or missing references) //IL_030a: Unknown result type (might be due to invalid IL or missing references) //IL_030f: Unknown result type (might be due to invalid IL or missing references) //IL_0318: Unknown result type (might be due to invalid IL or missing references) //IL_031d: Unknown result type (might be due to invalid IL or missing references) //IL_0296: Unknown result type (might be due to invalid IL or missing references) //IL_029b: Unknown result type (might be due to invalid IL or missing references) //IL_02a0: Unknown result type (might be due to invalid IL or missing references) //IL_02af: Unknown result type (might be due to invalid IL or missing references) //IL_02b4: Unknown result type (might be due to invalid IL or missing references) //IL_02b9: Unknown result type (might be due to invalid IL or missing references) //IL_02c2: Unknown result type (might be due to invalid IL or missing references) //IL_02c7: Unknown result type (might be due to invalid IL or missing references) //IL_0257: Unknown result type (might be due to invalid IL or missing references) //IL_025c: Unknown result type (might be due to invalid IL or missing references) //IL_0261: Unknown result type (might be due to invalid IL or missing references) //IL_0270: Unknown result type (might be due to invalid IL or missing references) //IL_0275: Unknown result type (might be due to invalid IL or missing references) //IL_027a: Unknown result type (might be due to invalid IL or missing references) //IL_0283: Unknown result type (might be due to invalid IL or missing references) //IL_0288: Unknown result type (might be due to invalid IL or missing references) if (!(dist <= movement.distanceToFacePlayerFrom) || !(distY <= 3f) || (!playerInView && !movement.sideScrolling.lockMovementOnZAxis && !movement.sideScrolling.lockMovementOnXAxis)) { return; } if (movement.sideScrolling.lockMovementOnXAxis && !movement.sideScrolling.lockMovementOnZAxis) { if (((Component)player).transform.position.z < ((Component)this).transform.position.z) { if (movement.sideScrolling.rotateInwards) { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, 180.001f, Quaternion.LookRotation(dir).z); } else { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, 179.999f, Quaternion.LookRotation(dir).z); } } else if (movement.sideScrolling.rotateInwards) { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, -0.001f, Quaternion.LookRotation(dir).z); } else { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, 0.001f, Quaternion.LookRotation(dir).z); } } else if (movement.sideScrolling.lockMovementOnZAxis && !movement.sideScrolling.lockMovementOnXAxis) { if (((Component)player).transform.position.x >= ((Component)this).transform.position.x) { if (movement.sideScrolling.rotateInwards) { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, 90.001f, Quaternion.LookRotation(dir).z); } else { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, 89.999f, Quaternion.LookRotation(dir).z); } } else if (movement.sideScrolling.rotateInwards) { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, -90.001f, Quaternion.LookRotation(dir).z); } else { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, -89.999f, Quaternion.LookRotation(dir).z); } } else { ((Component)this).transform.rotation = Quaternion.Slerp(((Component)this).transform.rotation, Quaternion.LookRotation(dir), movement.rotationSpeed * Time.deltaTime); } } private void RotateTowardsPlayerSideScrolling() { //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0361: Unknown result type (might be due to invalid IL or missing references) //IL_0367: Unknown result type (might be due to invalid IL or missing references) //IL_037d: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Unknown result type (might be due to invalid IL or missing references) //IL_0062: Unknown result type (might be due to invalid IL or missing references) //IL_003c: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_018f: Unknown result type (might be due to invalid IL or missing references) //IL_0194: Unknown result type (might be due to invalid IL or missing references) //IL_0199: Unknown result type (might be due to invalid IL or missing references) //IL_01a8: Unknown result type (might be due to invalid IL or missing references) //IL_01ad: Unknown result type (might be due to invalid IL or missing references) //IL_01b2: Unknown result type (might be due to invalid IL or missing references) //IL_01bb: Unknown result type (might be due to invalid IL or missing references) //IL_01c0: Unknown result type (might be due to invalid IL or missing references) //IL_0150: Unknown result type (might be due to invalid IL or missing references) //IL_0155: Unknown result type (might be due to invalid IL or missing references) //IL_015a: Unknown result type (might be due to invalid IL or missing references) //IL_0169: Unknown result type (might be due to invalid IL or missing references) //IL_016e: Unknown result type (might be due to invalid IL or missing references) //IL_0173: Unknown result type (might be due to invalid IL or missing references) //IL_017c: Unknown result type (might be due to invalid IL or missing references) //IL_0181: Unknown result type (might be due to invalid IL or missing references) //IL_00fa: Unknown result type (might be due to invalid IL or missing references) //IL_00ff: Unknown result type (might be due to invalid IL or missing references) //IL_0104: Unknown result type (might be due to invalid IL or missing references) //IL_0113: Unknown result type (might be due to invalid IL or missing references) //IL_0118: Unknown result type (might be due to invalid IL or missing references) //IL_011d: Unknown result type (might be due to invalid IL or missing references) //IL_0126: Unknown result type (might be due to invalid IL or missing references) //IL_012b: Unknown result type (might be due to invalid IL or missing references) //IL_00bb: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_00d4: Unknown result type (might be due to invalid IL or missing references) //IL_00d9: Unknown result type (might be due to invalid IL or missing references) //IL_00de: Unknown result type (might be due to invalid IL or missing references) //IL_00e7: Unknown result type (might be due to invalid IL or missing references) //IL_00ec: Unknown result type (might be due to invalid IL or missing references) //IL_02f0: Unknown result type (might be due to invalid IL or missing references) //IL_02f5: Unknown result type (might be due to invalid IL or missing references) //IL_02fa: Unknown result type (might be due to invalid IL or missing references) //IL_0309: Unknown result type (might be due to invalid IL or missing references) //IL_030e: Unknown result type (might be due to invalid IL or missing references) //IL_0313: Unknown result type (might be due to invalid IL or missing references) //IL_031c: Unknown result type (might be due to invalid IL or missing references) //IL_0321: Unknown result type (might be due to invalid IL or missing references) //IL_02b1: Unknown result type (might be due to invalid IL or missing references) //IL_02b6: Unknown result type (might be due to invalid IL or missing references) //IL_02bb: Unknown result type (might be due to invalid IL or missing references) //IL_02ca: Unknown result type (might be due to invalid IL or missing references) //IL_02cf: Unknown result type (might be due to invalid IL or missing references) //IL_02d4: Unknown result type (might be due to invalid IL or missing references) //IL_02dd: Unknown result type (might be due to invalid IL or missing references) //IL_02e2: Unknown result type (might be due to invalid IL or missing references) //IL_025b: Unknown result type (might be due to invalid IL or missing references) //IL_0260: Unknown result type (might be due to invalid IL or missing references) //IL_0265: Unknown result type (might be due to invalid IL or missing references) //IL_0274: Unknown result type (might be due to invalid IL or missing references) //IL_0279: Unknown result type (might be due to invalid IL or missing references) //IL_027e: Unknown result type (might be due to invalid IL or missing references) //IL_0287: Unknown result type (might be due to invalid IL or missing references) //IL_028c: Unknown result type (might be due to invalid IL or missing references) //IL_021c: Unknown result type (might be due to invalid IL or missing references) //IL_0221: Unknown result type (might be due to invalid IL or missing references) //IL_0226: Unknown result type (might be due to invalid IL or missing references) //IL_0235: Unknown result type (might be due to invalid IL or missing references) //IL_023a: Unknown result type (might be due to invalid IL or missing references) //IL_023f: Unknown result type (might be due to invalid IL or missing references) //IL_0248: Unknown result type (might be due to invalid IL or missing references) //IL_024d: Unknown result type (might be due to invalid IL or missing references) if (dist > movement.distanceToFacePlayerFrom) { float num = ((!(((Component)this).transform.eulerAngles.y > 180f)) ? ((Component)this).transform.eulerAngles.y : (((Component)this).transform.eulerAngles.y - 360f)); if (movement.sideScrolling.lockMovementOnXAxis && !movement.sideScrolling.lockMovementOnZAxis) { if (num >= 90f) { if (movement.sideScrolling.rotateInwards) { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, 180.001f, Quaternion.LookRotation(dir).z); } else { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, 179.999f, Quaternion.LookRotation(dir).z); } } else if (movement.sideScrolling.rotateInwards) { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, -0.001f, Quaternion.LookRotation(dir).z); } else { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, 0.001f, Quaternion.LookRotation(dir).z); } } else if (movement.sideScrolling.lockMovementOnZAxis && !movement.sideScrolling.lockMovementOnXAxis) { if (num >= 0f) { if (movement.sideScrolling.rotateInwards) { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, 90.001f, Quaternion.LookRotation(dir).z); } else { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, 89.999f, Quaternion.LookRotation(dir).z); } } else if (movement.sideScrolling.rotateInwards) { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, -90.001f, Quaternion.LookRotation(dir).z); } else { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, -89.999f, Quaternion.LookRotation(dir).z); } } } if (movement.sideScrolling.lockMovementOnXAxis || movement.sideScrolling.lockMovementOnZAxis) { ((Component)this).transform.rotation = Quaternion.Slerp(((Component)this).transform.rotation, rotationDifference, movement.rotationSpeed * Time.deltaTime); } } private void SetHealthBarDeathPosition() { //IL_002a: Unknown result type (might be due to invalid IL or missing references) if (dead && (Object)(object)enemyHealth != (Object)null) { enemyHealth.transform.position = healthBarBeforeDeathPos; } } private void LockingAxisForSideScrolling() { //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) //IL_004b: Unknown result type (might be due to invalid IL or missing references) //IL_0053: Unknown result type (might be due to invalid IL or missing references) //IL_0080: Unknown result type (might be due to invalid IL or missing references) //IL_0085: Unknown result type (might be due to invalid IL or missing references) //IL_0093: Unknown result type (might be due to invalid IL or missing references) //IL_0098: Unknown result type (might be due to invalid IL or missing references) //IL_00b0: Unknown result type (might be due to invalid IL or missing references) if (movement.sideScrolling.lockMovementOnXAxis) { ((Component)this).transform.position = new Vector3(movement.sideScrolling.xValue, ((Component)this).transform.position.y, ((Component)this).transform.position.z); } if (movement.sideScrolling.lockMovementOnZAxis) { ((Component)this).transform.position = new Vector3(((Component)this).transform.position.x, ((Component)this).transform.position.y, movement.sideScrolling.zValue); } } private void MovingEnemy() { //IL_0013: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003e: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Unknown result type (might be due to invalid IL or missing references) //IL_005a: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_019d: Unknown result type (might be due to invalid IL or missing references) //IL_007b: Unknown result type (might be due to invalid IL or missing references) //IL_0086: Unknown result type (might be due to invalid IL or missing references) //IL_0090: Unknown result type (might be due to invalid IL or missing references) //IL_0095: Unknown result type (might be due to invalid IL or missing references) //IL_009b: Unknown result type (might be due to invalid IL or missing references) //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_00ab: Unknown result type (might be due to invalid IL or missing references) //IL_00b6: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_00cb: Unknown result type (might be due to invalid IL or missing references) //IL_00d0: Unknown result type (might be due to invalid IL or missing references) //IL_00db: Unknown result type (might be due to invalid IL or missing references) //IL_00e0: Unknown result type (might be due to invalid IL or missing references) //IL_00e6: Unknown result type (might be due to invalid IL or missing references) //IL_00eb: Unknown result type (might be due to invalid IL or missing references) //IL_00f0: Unknown result type (might be due to invalid IL or missing references) //IL_0100: Unknown result type (might be due to invalid IL or missing references) //IL_010b: Unknown result type (might be due to invalid IL or missing references) //IL_0115: Unknown result type (might be due to invalid IL or missing references) //IL_011a: Unknown result type (might be due to invalid IL or missing references) //IL_0120: Unknown result type (might be due to invalid IL or missing references) //IL_0125: Unknown result type (might be due to invalid IL or missing references) //IL_0130: Unknown result type (might be due to invalid IL or missing references) //IL_0135: Unknown result type (might be due to invalid IL or missing references) //IL_013b: Unknown result type (might be due to invalid IL or missing references) //IL_0140: Unknown result type (might be due to invalid IL or missing references) //IL_014b: Unknown result type (might be due to invalid IL or missing references) //IL_0156: Unknown result type (might be due to invalid IL or missing references) //IL_0160: Unknown result type (might be due to invalid IL or missing references) //IL_0165: Unknown result type (might be due to invalid IL or missing references) //IL_016b: Unknown result type (might be due to invalid IL or missing references) //IL_0170: Unknown result type (might be due to invalid IL or missing references) //IL_017b: Unknown result type (might be due to invalid IL or missing references) //IL_0180: Unknown result type (might be due to invalid IL or missing references) //IL_0186: Unknown result type (might be due to invalid IL or missing references) //IL_018b: Unknown result type (might be due to invalid IL or missing references) //IL_0190: Unknown result type (might be due to invalid IL or missing references) //IL_01b9: Unknown result type (might be due to invalid IL or missing references) //IL_01c4: Unknown result type (might be due to invalid IL or missing references) //IL_01ce: Unknown result type (might be due to invalid IL or missing references) //IL_01d3: Unknown result type (might be due to invalid IL or missing references) //IL_01d9: Unknown result type (might be due to invalid IL or missing references) //IL_01de: Unknown result type (might be due to invalid IL or missing references) //IL_01e9: Unknown result type (might be due to invalid IL or missing references) //IL_01f4: Unknown result type (might be due to invalid IL or missing references) //IL_01fe: Unknown result type (might be due to invalid IL or missing references) //IL_0203: Unknown result type (might be due to invalid IL or missing references) //IL_0209: Unknown result type (might be due to invalid IL or missing references) //IL_020e: Unknown result type (might be due to invalid IL or missing references) //IL_0219: Unknown result type (might be due to invalid IL or missing references) //IL_021e: Unknown result type (might be due to invalid IL or missing references) //IL_0224: Unknown result type (might be due to invalid IL or missing references) //IL_0229: Unknown result type (might be due to invalid IL or missing references) //IL_0231: Unknown result type (might be due to invalid IL or missing references) //IL_024b: Unknown result type (might be due to invalid IL or missing references) //IL_0256: Unknown result type (might be due to invalid IL or missing references) //IL_0260: Unknown result type (might be due to invalid IL or missing references) //IL_0265: Unknown result type (might be due to invalid IL or missing references) //IL_026b: Unknown result type (might be due to invalid IL or missing references) //IL_0270: Unknown result type (might be due to invalid IL or missing references) //IL_027b: Unknown result type (might be due to invalid IL or missing references) //IL_0280: Unknown result type (might be due to invalid IL or missing references) //IL_0286: Unknown result type (might be due to invalid IL or missing references) //IL_028b: Unknown result type (might be due to invalid IL or missing references) //IL_0296: Unknown result type (might be due to invalid IL or missing references) //IL_02a1: Unknown result type (might be due to invalid IL or missing references) //IL_02ab: Unknown result type (might be due to invalid IL or missing references) //IL_02b0: Unknown result type (might be due to invalid IL or missing references) //IL_02b6: Unknown result type (might be due to invalid IL or missing references) //IL_02bb: Unknown result type (might be due to invalid IL or missing references) //IL_02c6: Unknown result type (might be due to invalid IL or missing references) //IL_02cb: Unknown result type (might be due to invalid IL or missing references) //IL_02d1: Unknown result type (might be due to invalid IL or missing references) //IL_02d6: Unknown result type (might be due to invalid IL or missing references) //IL_02de: Unknown result type (might be due to invalid IL or missing references) //IL_03d3: Unknown result type (might be due to invalid IL or missing references) //IL_03d8: Unknown result type (might be due to invalid IL or missing references) //IL_0336: Unknown result type (might be due to invalid IL or missing references) //IL_033b: Unknown result type (might be due to invalid IL or missing references) //IL_0349: Unknown result type (might be due to invalid IL or missing references) //IL_034e: Unknown result type (might be due to invalid IL or missing references) //IL_038f: Unknown result type (might be due to invalid IL or missing references) //IL_0394: Unknown result type (might be due to invalid IL or missing references) //IL_03a3: Unknown result type (might be due to invalid IL or missing references) //IL_03a8: Unknown result type (might be due to invalid IL or missing references) //IL_0473: Unknown result type (might be due to invalid IL or missing references) //IL_0478: Unknown result type (might be due to invalid IL or missing references) //IL_0485: Unknown result type (might be due to invalid IL or missing references) //IL_048a: Unknown result type (might be due to invalid IL or missing references) //IL_04b1: Unknown result type (might be due to invalid IL or missing references) //IL_04be: Unknown result type (might be due to invalid IL or missing references) //IL_04c3: Unknown result type (might be due to invalid IL or missing references) edgeDetectorHeight2 = movement.edgeDetectorHeight * ((Component)this).transform.up; edgeDetectorForward2 = movement.edgeDetectorForward * ((Component)this).transform.forward; minimumEdgeHeight2 = movement.minimumEdgeHeight * ((Component)this).transform.up; if (movement.showEdgeDetectors) { Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.up * 0.2f + edgeDetectorHeight2, ((Component)this).transform.position + ((Component)this).transform.up * 0.2f + edgeDetectorHeight2 + ((Component)this).transform.forward + edgeDetectorForward2, Color.blue); Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.up * 0.2f + edgeDetectorHeight2 + ((Component)this).transform.forward + edgeDetectorForward2, ((Component)this).transform.position - ((Component)this).transform.up * 0.8f - minimumEdgeHeight2 + ((Component)this).transform.forward + edgeDetectorForward2, Color.blue); } RaycastHit val = default(RaycastHit); if (movement.stopAtEdges && !Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.up * 0.2f + edgeDetectorHeight2, ((Component)this).transform.position + ((Component)this).transform.up * 0.2f + edgeDetectorHeight2 + ((Component)this).transform.forward + edgeDetectorForward2, ref val, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.up * 0.2f + edgeDetectorHeight2 + ((Component)this).transform.forward + edgeDetectorForward2, ((Component)this).transform.position - ((Component)this).transform.up * 0.8f + minimumEdgeHeight2 + ((Component)this).transform.forward + edgeDetectorForward2, ref val, LayerMask.op_Implicit(collisionLayers))) { return; } Vector3 forward = default(Vector3); if (movement.sideScrolling.lockMovementOnXAxis && !movement.sideScrolling.lockMovementOnZAxis) { ((Vector3)(ref forward))..ctor(movement.sideScrolling.xValue, ((Component)this).transform.forward.y, ((Component)this).transform.forward.z); } if (movement.sideScrolling.lockMovementOnZAxis && !movement.sideScrolling.lockMovementOnXAxis) { ((Vector3)(ref forward))..ctor(((Component)this).transform.forward.x, ((Component)this).transform.forward.y, movement.sideScrolling.zValue); } else { forward = ((Component)this).transform.forward; } if (dist <= movement.distanceToChasePlayerFrom && distY <= 3f && playerInView) { if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { ((Component)this).GetComponent().SetBool("Walking", true); } movementSpeed2 = Mathf.Lerp(movementSpeed2, movement.movementSpeed, 8f * Time.deltaTime); if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { ((Component)this).GetComponent().MovePosition(((Component)this).transform.position + forward * (movementSpeed2 * Time.deltaTime)); } else if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { ((Component)this).GetComponent().Move(forward * (movementSpeed2 * Time.deltaTime)); } } else { if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { ((Component)this).GetComponent().SetBool("Walking", false); } movementSpeed2 = 0f; } } private void AttackedByPlayer() { if (((Input.GetButton(playerAttackButton) && !attackButtonPressed) || (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && !((Component)player).GetComponent().attackFinishedLastUpdate)) && (!Object.op_Implicit((Object)(object)((Component)player).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && !Input.GetKey((KeyCode)306) && !Input.GetKey((KeyCode)358) && !((Component)player).GetComponent().crouchCancelsAttack && !((Component)player).GetComponent().currentlyOnWall && !((Component)player).GetComponent().currentlyClimbingWall))) { attackPressedTimer = 0f; attackPressed = true; playerCanAttack = true; attackButtonPressed = true; } else { attackPressedTimer += 0.02f; if (!Input.GetButton(playerAttackButton)) { attackButtonPressed = false; } } if (attackPressedTimer > 0.2f) { attackPressed = false; } } private void RegainHealth() { if (regainHealthOverTime) { if (!dead) { if (dist >= minimumDistanceFromPlayerToRegainHealth) { regainHealthTimer += 0.02f; } } else { regainHealthTimer = 0f; } if (regainHealthTimer > timeNeededToRegainHealth) { if (healthToRegain < maximumHealth) { hitCount -= healthToRegain; } else { hitCount = 0f; } } } else { regainHealthTimer = 0f; } } private void EnemyDeath() { //IL_0053: Unknown result type (might be due to invalid IL or missing references) //IL_005e: Unknown result type (might be due to invalid IL or missing references) //IL_014f: Unknown result type (might be due to invalid IL or missing references) //IL_0155: Unknown result type (might be due to invalid IL or missing references) //IL_0092: Unknown result type (might be due to invalid IL or missing references) //IL_00a7: Unknown result type (might be due to invalid IL or missing references) //IL_0120: Unknown result type (might be due to invalid IL or missing references) //IL_0125: Unknown result type (might be due to invalid IL or missing references) //IL_036b: Unknown result type (might be due to invalid IL or missing references) //IL_037c: Unknown result type (might be due to invalid IL or missing references) //IL_03b0: Unknown result type (might be due to invalid IL or missing references) //IL_03b5: Unknown result type (might be due to invalid IL or missing references) //IL_03a4: Unknown result type (might be due to invalid IL or missing references) //IL_055b: Unknown result type (might be due to invalid IL or missing references) //IL_0566: Unknown result type (might be due to invalid IL or missing references) childRenderers = ((Component)this).GetComponentsInChildren(); if (!(hitCount >= maximumHealth)) { return; } if (!dead) { if ((Object)(object)damage.hurtEffect != (Object)null) { Object.Instantiate(damage.hurtEffect, ((Component)this).transform.position, ((Component)this).transform.rotation); } if ((Object)(object)damage.deathEffect != (Object)null) { Object.Instantiate(damage.deathEffect, ((Component)this).transform.position, damage.deathEffect.transform.rotation); } } if (!allowRespawn && (secondsToShowHealthBarAfterEnemyDeath <= 0f || !health.healthBar.showHealthBar)) { Object.Destroy((Object)(object)((Component)this).gameObject); return; } if (!dead && (Object)(object)enemyHealth != (Object)null) { healthBarBeforeDeathPos = enemyHealth.transform.position; } dead = true; showHealthBarAfterDeathTimer += Time.deltaTime; if (Vector3.Distance(((Component)player).transform.position, respawnLocation) >= minimumDistanceFromPlayerToRespawn) { deathTimer += Time.deltaTime; } if (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Component)this).GetComponent().enabled) { colliderOnOff = true; ((Component)this).GetComponent().enabled = false; } Renderer[] array = childRenderers; foreach (Renderer val in array) { if (Object.op_Implicit((Object)(object)val) && val.enabled) { rendererOnOff = true; val.enabled = false; } } if (dead && showHealthBarAfterDeathTimer >= secondsToShowHealthBarAfterEnemyDeath) { if (allowRespawn) { if (health.healthBar.showHealthBar) { if ((Object)(object)black != (Object)null && Object.op_Implicit((Object)(object)black.GetComponent())) { black.GetComponent().enabled = false; } if ((Object)(object)red != (Object)null && Object.op_Implicit((Object)(object)red.GetComponent())) { red.GetComponent().enabled = false; } if ((Object)(object)green != (Object)null && Object.op_Implicit((Object)(object)green.GetComponent())) { green.GetComponent().enabled = false; } } } else { Object.Destroy((Object)(object)((Component)this).gameObject); } } if (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Collider)((Component)this).GetComponent()).enabled) { ccOnOff = true; ((Collider)((Component)this).GetComponent()).enabled = false; } if (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Component)this).GetComponent().useGravity) { rbOnOff = true; ((Component)this).GetComponent().useGravity = false; } ((Component)this).transform.position = respawnLocation; ((Component)this).transform.rotation = respawnRotation; if ((Object)(object)enemyHealth != (Object)null) { enemyHealth.transform.position = healthBarBeforeDeathPos; } knockedBackDirection = Vector3.zero; if (!(deathTimer > respawnWaitTime)) { return; } if (colliderOnOff) { ((Component)this).GetComponent().enabled = true; colliderOnOff = false; } if (rendererOnOff) { Renderer[] array2 = childRenderers; foreach (Renderer val2 in array2) { val2.enabled = true; } if (health.healthBar.showHealthBar) { if ((Object)(object)black != (Object)null && Object.op_Implicit((Object)(object)black.GetComponent())) { black.GetComponent().enabled = true; } if ((Object)(object)red != (Object)null && Object.op_Implicit((Object)(object)red.GetComponent())) { red.GetComponent().enabled = true; } if ((Object)(object)green != (Object)null && Object.op_Implicit((Object)(object)green.GetComponent())) { green.GetComponent().enabled = true; } } rendererOnOff = false; } if (ccOnOff) { ((Collider)((Component)this).GetComponent()).enabled = true; ccOnOff = false; } if (rbOnOff) { ((Component)this).GetComponent().useGravity = true; rbOnOff = false; } if ((Object)(object)respawn.respawnEffect != (Object)null) { Object.Instantiate(respawn.respawnEffect, ((Component)this).transform.position, ((Component)this).transform.rotation); } dead = false; hitCount = 0f; deathTimer = 0f; showHealthBarAfterDeathTimer = 0f; } private void KnockBack() { //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_0086: Unknown result type (might be due to invalid IL or missing references) //IL_008c: Unknown result type (might be due to invalid IL or missing references) //IL_0096: Unknown result type (might be due to invalid IL or missing references) //IL_009b: Unknown result type (might be due to invalid IL or missing references) //IL_00d3: Unknown result type (might be due to invalid IL or missing references) //IL_00dd: Unknown result type (might be due to invalid IL or missing references) //IL_00e2: Unknown result type (might be due to invalid IL or missing references) if (!knockedBack || !(damage.knockBackFactor > 0f)) { return; } movementSpeed2 = 0f; if (Vector3.Distance(knockedBackDirection, Vector3.zero) > 0.1f) { knockedBackDirection = Vector3.Slerp(knockedBackDirection, Vector3.zero, 8f * Time.deltaTime); if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { ((Component)this).GetComponent().MovePosition(((Component)this).transform.position + knockedBackDirection * Time.deltaTime); } else if (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Collider)((Component)this).GetComponent()).enabled) { ((Component)this).GetComponent().Move(knockedBackDirection * Time.deltaTime); } } else { knockedBack = false; } } private void CreatingEnemyHealthBar() { if (health.healthBar.showHealthBar) { SetHealthBarVariables(); CreateHealthBarMaterials(); CreateHealthBar(); UpdateHealthBarMaterials(); UpdateHealthBarSizes(); GetEnemyHeight(); PositionHealthBar(); } else if ((Object)(object)enemyHealth != (Object)null) { Object.Destroy((Object)(object)enemyHealth); } } private void SetHealthBarVariables() { healthBarUpAmount = health.healthBar.healthBarUpAmount - 0.38f; healthBarOverallHeight = health.healthBar.healthBarOverallHeight; healthBarOverallWidth = health.healthBar.healthBarOverallWidth; outlineHeight = health.healthBar.outlineHeight - 0.37f; outlineWidth = health.healthBar.outlineWidth - 0.35f; healthHeight = health.healthBar.healthHeight - 0.5f; healthWidth = health.healthBar.healthWidth - 0.37f; secondsToShowHealthBarAfterEnemyDeath = health.healthBar.secondsToShowHealthBarAfterEnemyDeath; } private void CreateHealthBarMaterials() { //IL_004e: Unknown result type (might be due to invalid IL or missing references) //IL_00a6: Unknown result type (might be due to invalid IL or missing references) //IL_00fe: Unknown result type (might be due to invalid IL or missing references) if ((Object)(object)health.healthBar.healthBarMaterials.outlineMaterial != (Object)null) { outlineMaterial = health.healthBar.healthBarMaterials.outlineMaterial; outlineMaterial.color = health.healthBar.outlineColor; } if ((Object)(object)health.healthBar.healthBarMaterials.healthMaterial != (Object)null) { healthMaterial = health.healthBar.healthBarMaterials.healthMaterial; healthMaterial.color = health.healthBar.healthColor; } if ((Object)(object)health.healthBar.healthBarMaterials.noHealthMaterial != (Object)null) { noHealthMaterial = health.healthBar.healthBarMaterials.noHealthMaterial; noHealthMaterial.color = health.healthBar.noHealthColor; } } private void CreateHealthBar() { //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Expected O, but got Unknown //IL_0042: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Expected O, but got Unknown //IL_00db: Unknown result type (might be due to invalid IL or missing references) //IL_0132: Unknown result type (might be due to invalid IL or missing references) //IL_013c: Expected O, but got Unknown //IL_01cb: Unknown result type (might be due to invalid IL or missing references) //IL_01ef: Unknown result type (might be due to invalid IL or missing references) //IL_0246: Unknown result type (might be due to invalid IL or missing references) //IL_0250: Expected O, but got Unknown //IL_0295: Unknown result type (might be due to invalid IL or missing references) //IL_0303: Unknown result type (might be due to invalid IL or missing references) //IL_0327: Unknown result type (might be due to invalid IL or missing references) if ((Object)(object)enemyHealth == (Object)null) { enemyHealth = new GameObject(); ((Object)enemyHealth).name = "EnemyHealth"; } if ((Object)(object)outline == (Object)null) { outline = new GameObject(); ((Object)outline).name = "Outline"; outline.transform.parent = enemyHealth.transform; } if ((Object)(object)black == (Object)null) { black = GameObject.CreatePrimitive((PrimitiveType)5); ((Object)black).name = "Black"; black.transform.parent = outline.transform; black.transform.localScale = new Vector3(1f, 0.1829655f, 1f); if ((Object)(object)outlineMaterial != (Object)null) { black.GetComponent().material = outlineMaterial; } Object.Destroy((Object)(object)black.GetComponent()); } if ((Object)(object)healthBarObject == (Object)null) { healthBarObject = new GameObject(); ((Object)healthBarObject).name = "HealthBar"; healthBarObject.transform.parent = enemyHealth.transform; } if ((Object)(object)red == (Object)null) { red = GameObject.CreatePrimitive((PrimitiveType)5); ((Object)red).name = "Red"; red.transform.parent = healthBarObject.transform; red.transform.localScale = new Vector3(0.9552082f, 0.1394147f, 1f); red.transform.localPosition = new Vector3(0f, 0f, -0.001f); if ((Object)(object)noHealthMaterial != (Object)null) { red.GetComponent().material = noHealthMaterial; } Object.Destroy((Object)(object)red.GetComponent()); } if ((Object)(object)healthObject == (Object)null) { healthObject = new GameObject(); ((Object)healthObject).name = "HealthObject"; healthObject.transform.parent = healthBarObject.transform; healthObject.transform.localPosition = new Vector3(-0.4774f, 0f, -0.002f); } if ((Object)(object)green == (Object)null) { green = GameObject.CreatePrimitive((PrimitiveType)5); ((Object)green).name = "Green"; green.transform.parent = healthObject.transform; green.transform.localScale = new Vector3(0.9552084f, 0.1394147f, 1f); green.transform.localPosition = new Vector3(0.4774f, 0f, -0.002f); if ((Object)(object)healthMaterial != (Object)null) { green.GetComponent().material = healthMaterial; } Object.Destroy((Object)(object)green.GetComponent()); } } private void UpdateHealthBarMaterials() { if ((Object)(object)black != (Object)null && (Object)(object)outlineMaterial != (Object)null) { black.GetComponent().material = outlineMaterial; } if ((Object)(object)red != (Object)null && (Object)(object)noHealthMaterial != (Object)null) { red.GetComponent().material = noHealthMaterial; } if ((Object)(object)green != (Object)null && (Object)(object)healthMaterial != (Object)null) { green.GetComponent().material = healthMaterial; } } private void UpdateHealthBarSizes() { //IL_002a: Unknown result type (might be due to invalid IL or missing references) //IL_002f: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_0049: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Unknown result type (might be due to invalid IL or missing references) //IL_0062: Unknown result type (might be due to invalid IL or missing references) //IL_006b: Unknown result type (might be due to invalid IL or missing references) //IL_00a4: Unknown result type (might be due to invalid IL or missing references) //IL_00dd: Unknown result type (might be due to invalid IL or missing references) //IL_0170: Unknown result type (might be due to invalid IL or missing references) //IL_0145: Unknown result type (might be due to invalid IL or missing references) if ((Object)(object)enemyHealth != (Object)null) { enemyHealth.transform.localScale = new Vector3(healthBarOverallWidth / ((Component)this).transform.localScale.x, healthBarOverallHeight / ((Component)this).transform.localScale.y, 1f / ((Component)this).transform.localScale.z); } if ((Object)(object)outline != (Object)null) { outline.transform.localScale = new Vector3(outlineWidth, outlineHeight, 1f); } if ((Object)(object)healthBarObject != (Object)null) { healthBarObject.transform.localScale = new Vector3(healthWidth, healthHeight, 1f); } if ((Object)(object)healthObject != (Object)null) { if (maximumHealth > 0f && hitCount <= maximumHealth) { healthObject.transform.localScale = new Vector3((maximumHealth - hitCount) / maximumHealth, 1f, 1f); } else { healthObject.transform.localScale = new Vector3(0f, 1f, 1f); } } } private void GetEnemyHeight() { //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0026: Unknown result type (might be due to invalid IL or missing references) //IL_002b: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_00e8: Unknown result type (might be due to invalid IL or missing references) //IL_00ed: Unknown result type (might be due to invalid IL or missing references) //IL_00f1: Unknown result type (might be due to invalid IL or missing references) //IL_00f6: Unknown result type (might be due to invalid IL or missing references) //IL_010b: Unknown result type (might be due to invalid IL or missing references) //IL_0110: Unknown result type (might be due to invalid IL or missing references) //IL_0114: Unknown result type (might be due to invalid IL or missing references) //IL_0119: Unknown result type (might be due to invalid IL or missing references) //IL_012d: Unknown result type (might be due to invalid IL or missing references) //IL_0132: Unknown result type (might be due to invalid IL or missing references) //IL_009f: Unknown result type (might be due to invalid IL or missing references) //IL_00a4: Unknown result type (might be due to invalid IL or missing references) //IL_01c2: Unknown result type (might be due to invalid IL or missing references) //IL_01c7: Unknown result type (might be due to invalid IL or missing references) //IL_01cb: Unknown result type (might be due to invalid IL or missing references) //IL_01d0: Unknown result type (might be due to invalid IL or missing references) //IL_01e5: Unknown result type (might be due to invalid IL or missing references) //IL_01ea: Unknown result type (might be due to invalid IL or missing references) //IL_01ee: Unknown result type (might be due to invalid IL or missing references) //IL_01f3: Unknown result type (might be due to invalid IL or missing references) //IL_0207: Unknown result type (might be due to invalid IL or missing references) //IL_020c: Unknown result type (might be due to invalid IL or missing references) //IL_016d: Unknown result type (might be due to invalid IL or missing references) //IL_0172: Unknown result type (might be due to invalid IL or missing references) //IL_0347: Unknown result type (might be due to invalid IL or missing references) //IL_034c: Unknown result type (might be due to invalid IL or missing references) //IL_028e: Unknown result type (might be due to invalid IL or missing references) //IL_0293: Unknown result type (might be due to invalid IL or missing references) //IL_0297: Unknown result type (might be due to invalid IL or missing references) //IL_029c: Unknown result type (might be due to invalid IL or missing references) //IL_02b1: Unknown result type (might be due to invalid IL or missing references) //IL_02b6: Unknown result type (might be due to invalid IL or missing references) //IL_02ba: Unknown result type (might be due to invalid IL or missing references) //IL_02bf: Unknown result type (might be due to invalid IL or missing references) //IL_02d3: Unknown result type (might be due to invalid IL or missing references) //IL_02d8: Unknown result type (might be due to invalid IL or missing references) //IL_0247: Unknown result type (might be due to invalid IL or missing references) //IL_024c: Unknown result type (might be due to invalid IL or missing references) //IL_025b: Unknown result type (might be due to invalid IL or missing references) //IL_0260: Unknown result type (might be due to invalid IL or missing references) //IL_0313: Unknown result type (might be due to invalid IL or missing references) //IL_0318: Unknown result type (might be due to invalid IL or missing references) if (Object.op_Implicit((Object)(object)((Component)((Component)this).transform).GetComponent())) { Bounds bounds = ((Collider)((Component)this).GetComponent()).bounds; feetPosition = ((Bounds)(ref bounds)).min.y; Bounds bounds2 = ((Collider)((Component)this).GetComponent()).bounds; headPosition = ((Bounds)(ref bounds2)).max.y; if (((Component)this).transform.localScale.y >= 1f) { enemyHeight = (headPosition - feetPosition) * 1.4f; } else { enemyHeight = ((Component)this).transform.localScale.y * ((Component)this).GetComponent().height * 1.4f; } } else if (Object.op_Implicit((Object)(object)((Component)((Component)this).transform).GetComponent())) { Bounds bounds3 = ((Collider)((Component)this).GetComponent()).bounds; feetPosition = ((Bounds)(ref bounds3)).min.y; Bounds bounds4 = ((Collider)((Component)this).GetComponent()).bounds; headPosition = ((Bounds)(ref bounds4)).max.y; if (((Component)this).transform.localScale.y >= 1f) { enemyHeight = (headPosition - feetPosition) * 1.4f; } else { enemyHeight = ((Component)this).transform.localScale.y / 1.83f * ((Component)this).GetComponent().radius * 4.2f + 0.7f; } } else if (Object.op_Implicit((Object)(object)((Component)((Component)this).transform).GetComponent())) { Bounds bounds5 = ((Collider)((Component)this).GetComponent()).bounds; feetPosition = ((Bounds)(ref bounds5)).min.y; Bounds bounds6 = ((Collider)((Component)this).GetComponent()).bounds; headPosition = ((Bounds)(ref bounds6)).max.y; if (((Component)this).transform.localScale.y >= 1f) { enemyHeight = (headPosition - feetPosition) * 1.4f; } else { enemyHeight = ((Component)this).transform.localScale.y * ((Component)this).GetComponent().size.y; } } else if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { Bounds bounds7 = ((Collider)((Component)this).GetComponent()).bounds; feetPosition = ((Bounds)(ref bounds7)).min.y; Bounds bounds8 = ((Collider)((Component)this).GetComponent()).bounds; headPosition = ((Bounds)(ref bounds8)).max.y; if (((Component)this).transform.localScale.y >= 1f) { enemyHeight = (headPosition - feetPosition) * 1.4f; } else { enemyHeight = ((Component)this).transform.localScale.y * ((Component)this).GetComponent().height * 1.4f; } } else { enemyHeight = ((Component)this).transform.localScale.y; } } private void PositionHealthBar() { //IL_006e: Unknown result type (might be due to invalid IL or missing references) //IL_0030: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Unknown result type (might be due to invalid IL or missing references) //IL_0051: Unknown result type (might be due to invalid IL or missing references) //IL_0147: Unknown result type (might be due to invalid IL or missing references) //IL_014c: Unknown result type (might be due to invalid IL or missing references) //IL_015f: Unknown result type (might be due to invalid IL or missing references) //IL_0164: Unknown result type (might be due to invalid IL or missing references) //IL_0190: Unknown result type (might be due to invalid IL or missing references) //IL_01a6: Unknown result type (might be due to invalid IL or missing references) //IL_01b6: Unknown result type (might be due to invalid IL or missing references) //IL_01bb: Unknown result type (might be due to invalid IL or missing references) if ((Object)(object)enemyHealth != (Object)null) { if (!dead) { enemyHealth.transform.position = ((Component)this).transform.position + new Vector3(0f, enemyHeight + healthBarUpAmount, 0f); } else { enemyHealth.transform.position = healthBarBeforeDeathPos; } if (!Object.op_Implicit((Object)(object)enemyHealth.GetComponent()) && !Object.op_Implicit((Object)(object)outline.GetComponent()) && !Object.op_Implicit((Object)(object)black.GetComponent()) && !Object.op_Implicit((Object)(object)healthBarObject.GetComponent()) && !Object.op_Implicit((Object)(object)red.GetComponent()) && !Object.op_Implicit((Object)(object)healthObject.GetComponent()) && !Object.op_Implicit((Object)(object)green.GetComponent())) { enemyHealth.transform.parent = ((Component)this).transform; } else { enemyHealth.transform.parent = null; } float num = (((Component)playerCamera).transform.position.y - enemyHealth.transform.position.y - 0.5230548f) * 5f; enemyHealth.transform.rotation = ((Component)playerCamera).transform.rotation; Transform transform = enemyHealth.transform; transform.localRotation *= Quaternion.Euler(num, 0f, 0f); } } private void StabilizeEnemy() { //IL_0061: Unknown result type (might be due to invalid IL or missing references) //IL_0066: Unknown result type (might be due to invalid IL or missing references) //IL_0049: Unknown result type (might be due to invalid IL or missing references) //IL_0095: Unknown result type (might be due to invalid IL or missing references) if (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && ((Behaviour)((Component)player).GetComponent()).enabled && ((Component)player).GetComponent().currentHealth <= 0) { ((Component)this).transform.position = lastPosBeforePlayerDeath; } else { lastPosBeforePlayerDeath = ((Component)this).transform.position; } if (dead && (Object)(object)enemyHealth != (Object)null) { enemyHealth.transform.position = healthBarBeforeDeathPos; } } private void LateUpdate() { //IL_0316: Unknown result type (might be due to invalid IL or missing references) //IL_00a1: Unknown result type (might be due to invalid IL or missing references) //IL_00ac: Unknown result type (might be due to invalid IL or missing references) //IL_0114: Unknown result type (might be due to invalid IL or missing references) //IL_0124: Unknown result type (might be due to invalid IL or missing references) //IL_0129: Unknown result type (might be due to invalid IL or missing references) //IL_00e2: Unknown result type (might be due to invalid IL or missing references) //IL_00e7: Unknown result type (might be due to invalid IL or missing references) //IL_00f7: Unknown result type (might be due to invalid IL or missing references) //IL_00fc: Unknown result type (might be due to invalid IL or missing references) if (attackPressed) { if (playerCanAttack && dist <= damage.damageRadius && distY <= 7f && hitCount < maximumHealth && lastHitCount == hitCount && playerAngle < damage.playerViewpointEnemyMustBeInToGetHit) { if ((Object)(object)damage.hurtEffect != (Object)null) { Object.Instantiate(damage.hurtEffect, ((Component)this).transform.position, ((Component)this).transform.rotation); } regainHealthTimer = 0f; playerInView = true; if (playerAngle < 60f) { knockedBackDirection = -((Component)this).transform.forward * damage.knockBackFactor; } else { knockedBackDirection = ((Component)player).transform.forward * damage.knockBackFactor; } knockedBack = true; if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { ((Component)this).GetComponent().CrossFade("BotKnockBack", 0f, -1, 0f); } if ((Object)(object)((Component)player).GetComponent() != (Object)null && ((Behaviour)((Component)player).GetComponent()).enabled) { if (!((Component)player).GetComponent().crouching) { if (((Component)player).GetComponent().currentAttackNumber - 1 <= ((Component)player).GetComponent().totalAttackNumber && ((Component)player).GetComponent().currentAttackNumber - 1 > 0 && ((Component)player).GetComponent().attacksToPerform[((Component)player).GetComponent().currentAttackNumber - 1] >= 0f) { hitCount += ((Component)player).GetComponent().attacksToPerform[((Component)player).GetComponent().currentAttackNumber - 1]; } else if (((Component)player).GetComponent().currentAttackNumber > 0) { hitCount += ((Component)player).GetComponent().attacksToPerform[0]; } } else { hitCount += ((Component)player).GetComponent().attacking.crouch.crouchAttackStrength; } } else { hitCount += 1f; } playerCanAttack = false; } } else { playerCanAttack = true; } lastHitCount = hitCount; if (dead && (Object)(object)enemyHealth != (Object)null) { enemyHealth.transform.position = healthBarBeforeDeathPos; } } private void OnDisable() { if ((Object)(object)enemyHealth != (Object)null) { Object.Destroy((Object)(object)enemyHealth); } } private void OnControllerColliderHit(ControllerColliderHit hit) { if (((Behaviour)this).enabled && Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && ((Behaviour)((Component)player).GetComponent()).enabled && ((Component)player).GetComponent().canDamage && ((Component)player).GetComponent().canDamage2 && ((Object)hit.gameObject).name == ((Object)((Component)player).gameObject).name) { ((Component)player).GetComponent().enemyAttackPower = attackPower; ((Component)player).GetComponent().applyDamage = true; ((Component)player).GetComponent().blink = true; } } private void OnCollisionStay(Collision hit) { if (((Behaviour)this).enabled && Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && ((Behaviour)((Component)player).GetComponent()).enabled && ((Component)player).GetComponent().canDamage && ((Component)player).GetComponent().canDamage2 && ((Object)hit.gameObject).name == ((Object)((Component)player).gameObject).name) { ((Component)player).GetComponent().enemyAttackPower = attackPower; ((Component)player).GetComponent().applyDamage = true; ((Component)player).GetComponent().blink = true; } } } public class EnemyAIAdam : MonoBehaviour { [Serializable] public class Movement { [Serializable] public class SideScrolling { public bool lockMovementOnZAxis = false; public float zValue = 0f; public bool lockMovementOnXAxis = false; public float xValue = 0f; public bool rotateInwards = true; } public float movementSpeed = 2.5f; public float rotationSpeed = 6f; public float distanceToFacePlayerFrom = 10f; public float distanceToChasePlayerFrom = 5f; public float viewpointPlayerMustBeInToFollow = 70f; public bool stopAtEdges = true; public bool showEdgeDetectors = true; public float edgeDetectorHeight = 0f; public float edgeDetectorForward = 0f; public float minimumEdgeHeight = 0f; public SideScrolling sideScrolling = new SideScrolling(); } [Serializable] public class Attack { public int attackPower = 2; } [Serializable] public class EnemyHealth { [Serializable] public class HealthBar { [Serializable] public class HealthBarMaterials { public Material outlineMaterial; public Material healthMaterial; public Material noHealthMaterial; } public Transform playerCamera; public bool showHealthBar = true; public float healthBarUpAmount = 0f; public float healthBarOverallHeight = 1f; public float healthBarOverallWidth = 1f; public float outlineHeight = 1f; public float outlineWidth = 1f; public float healthHeight = 1f; public float healthWidth = 1f; public HealthBarMaterials healthBarMaterials = new HealthBarMaterials(); public Color outlineColor = Color.black; public Color healthColor = Color.green; public Color noHealthColor = Color.red; public float secondsToShowHealthBarAfterEnemyDeath = 0.5f; } public float maximumHealth = 3f; public bool regainHealthOverTime = true; public float healthToRegain = 3f; public float timeNeededToRegainHealth = 7f; public float minimumDistanceFromPlayerToRegainHealth = 0f; public HealthBar healthBar = new HealthBar(); } [Serializable] public class Damage { public bool acquirePlayerAttackButtonFromPlayerIfPossible = true; public string playerAttackButton = "Fire1"; public float damageRadius = 1.25f; public float knockBackFactor = 1f; public float playerViewpointEnemyMustBeInToGetHit = 80f; public GameObject hurtEffect; public GameObject deathEffect; } [Serializable] public class Respawn { public bool allowRespawn = true; public float respawnWaitTime = 3f; public Vector3 respawnLocation; public Vector3 respawnRotation; public bool respawnAtStartLocationAndRotation = true; public float minimumDistanceFromPlayerToRespawn = 3f; public GameObject respawnEffect; } public Transform player; public GameObject playerhello; public bool squishable = true; public float Xsquish = 1f; public float Ysquish = 1f; public float Zsquish = 1f; public float Timesquish = 100f; public float squished = 0f; public Vector3 squishtemp; public float squishYlimit = 1f; public Animator myAnimationController; public Movement movement = new Movement(); public Attack attack = new Attack(); public EnemyHealth health = new EnemyHealth(); public Damage damage = new Damage(); public Respawn respawn = new Respawn(); private Vector3 edgeDetectorHeight2; private Vector3 edgeDetectorForward2; private Vector3 minimumEdgeHeight2; [HideInInspector] public int attackPower; [HideInInspector] public string playerAttackButton; [HideInInspector] public float maximumHealth; [HideInInspector] public bool regainHealthOverTime = true; [HideInInspector] public float healthToRegain; [HideInInspector] public float timeNeededToRegainHealth; [HideInInspector] public float minimumDistanceFromPlayerToRegainHealth; private float regainHealthTimer; [HideInInspector] public bool allowRespawn; [HideInInspector] public float respawnWaitTime; [HideInInspector] public Vector3 respawnLocation; [HideInInspector] public Quaternion respawnRotation; [HideInInspector] public float minimumDistanceFromPlayerToRespawn; private bool dead = false; private float deathTimer; private bool colliderOnOff; private bool rendererOnOff; private bool ccOnOff; private bool rbOnOff; private Renderer[] childRenderers; private float movementSpeed2; private Quaternion rotationDifference; private float dist; private float distY; private float playerAngle; private float enemyAngle; private bool playerInView; private float hitCount; private float lastHitCount; private float attackPressedTimer; private bool attackPressed; private bool attackButtonPressed; private bool playerCanAttack; private bool knockedBack; private Vector3 knockedBackDirection; private Vector3 dir; private Vector3 lastPosBeforePlayerDeath; private GameObject enemyHealth; private GameObject outline; private GameObject black; private GameObject healthBarObject; private GameObject red; private GameObject healthObject; private GameObject green; private Material outlineMaterial; private Material healthMaterial; private Material noHealthMaterial; private float feetPosition; private float headPosition; private float enemyHeight; private float showHealthBarAfterDeathTimer; private Vector3 healthBarBeforeDeathPos; private Transform playerCamera; private float healthBarUpAmount; private float healthBarOverallHeight; private float healthBarOverallWidth; private float outlineHeight; private float outlineWidth; private float healthHeight; private float healthWidth; private float secondsToShowHealthBarAfterEnemyDeath; public LayerMask collisionLayers = LayerMask.op_Implicit(-5); private Collider m_Collider; private void Start() { //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_009a: Unknown result type (might be due to invalid IL or missing references) //IL_009f: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Unknown result type (might be due to invalid IL or missing references) m_Collider = ((Component)this).GetComponent(); lastPosBeforePlayerDeath = ((Component)this).transform.position; if (respawn.respawnAtStartLocationAndRotation) { respawnLocation = ((Component)this).transform.position; respawnRotation = ((Component)this).transform.rotation; } else { respawnLocation = respawn.respawnLocation; respawnRotation = Quaternion.Euler(respawn.respawnRotation.x, respawn.respawnRotation.y, respawn.respawnRotation.z); } } private void OnTriggerEnter(Collider other) { if (((Component)other).gameObject.CompareTag("Squisher")) { squished = 1f; movement.movementSpeed = 0f; movementSpeed2 = 0f; movement.rotationSpeed = 0f; movement.distanceToFacePlayerFrom = 0f; movement.distanceToChasePlayerFrom = 0f; myAnimationController.SetBool("Squished", true); dead = true; ((Collider)((Component)this).GetComponent()).enabled = false; ((Collider)((Component)this).GetComponent()).enabled = false; ((Component)this).GetComponent().isKinematic = true; playerhello.GetComponent().gravity = -100f; } } private void FixedUpdate() { SettingVariables(); Squish(); GetAngleBetweenPlayer(); GetDistanceFromPlayer(); RotateTowardsPlayer(); RotateTowardsPlayerSideScrolling(); SetHealthBarDeathPosition(); LockingAxisForSideScrolling(); MovingEnemy(); AttackedByPlayer(); RegainHealth(); EnemyDeath(); KnockBack(); CreatingEnemyHealthBar(); StabilizeEnemy(); } private void Squish() { //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) AnimatorStateInfo currentAnimatorStateInfo = myAnimationController.GetCurrentAnimatorStateInfo(0); if (((AnimatorStateInfo)(ref currentAnimatorStateInfo)).IsName("BotDead")) { ((Component)this).gameObject.SetActive(false); } } private void SettingVariables() { //IL_00fb: Unknown result type (might be due to invalid IL or missing references) //IL_0100: Unknown result type (might be due to invalid IL or missing references) //IL_0136: Unknown result type (might be due to invalid IL or missing references) //IL_013b: Unknown result type (might be due to invalid IL or missing references) attackPower = attack.attackPower; if (damage.acquirePlayerAttackButtonFromPlayerIfPossible && Object.op_Implicit((Object)(object)((Component)player).GetComponent())) { playerAttackButton = ((Component)player).GetComponent().attacking.attackInputButton; } else { playerAttackButton = damage.playerAttackButton; } maximumHealth = health.maximumHealth; regainHealthOverTime = health.regainHealthOverTime; healthToRegain = health.healthToRegain; timeNeededToRegainHealth = health.timeNeededToRegainHealth; minimumDistanceFromPlayerToRegainHealth = health.minimumDistanceFromPlayerToRegainHealth; allowRespawn = respawn.allowRespawn; respawnWaitTime = respawn.respawnWaitTime; if (!respawn.respawnAtStartLocationAndRotation) { respawnLocation = respawn.respawnLocation; respawnRotation = Quaternion.Euler(respawn.respawnRotation.x, respawn.respawnRotation.y, respawn.respawnRotation.z); } minimumDistanceFromPlayerToRespawn = respawn.minimumDistanceFromPlayerToRespawn; if ((Object)(object)health.healthBar.playerCamera == (Object)null) { if ((Object)(object)((Component)Camera.main).transform != (Object)null) { playerCamera = ((Component)Camera.main).transform; } } else { playerCamera = health.healthBar.playerCamera; } } private void GetAngleBetweenPlayer() { //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_0013: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_0049: Unknown result type (might be due to invalid IL or missing references) //IL_0054: Unknown result type (might be due to invalid IL or missing references) playerAngle = Vector3.Angle(((Component)this).transform.position - player.position, player.forward); enemyAngle = Vector3.Angle(player.position - ((Component)this).transform.position, ((Component)this).transform.forward); if (enemyAngle <= movement.viewpointPlayerMustBeInToFollow) { playerInView = true; } else if (dist > movement.distanceToChasePlayerFrom || distY > 3f) { playerInView = false; } } private void GetDistanceFromPlayer() { //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_001b: Unknown result type (might be due to invalid IL or missing references) //IL_0020: Unknown result type (might be due to invalid IL or missing references) //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) //IL_004b: Unknown result type (might be due to invalid IL or missing references) //IL_0050: Unknown result type (might be due to invalid IL or missing references) //IL_0067: Unknown result type (might be due to invalid IL or missing references) //IL_006c: Unknown result type (might be due to invalid IL or missing references) //IL_007a: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_009e: Unknown result type (might be due to invalid IL or missing references) //IL_00a3: Unknown result type (might be due to invalid IL or missing references) //IL_00b2: Unknown result type (might be due to invalid IL or missing references) //IL_00b7: Unknown result type (might be due to invalid IL or missing references) //IL_00e2: Unknown result type (might be due to invalid IL or missing references) //IL_00e7: Unknown result type (might be due to invalid IL or missing references) //IL_00f6: Unknown result type (might be due to invalid IL or missing references) //IL_00fb: Unknown result type (might be due to invalid IL or missing references) dir = new Vector3(player.position.x, ((Component)this).transform.position.y, player.position.z) - ((Component)this).transform.position; ((Vector3)(ref dir)).Normalize(); dist = Mathf.Sqrt(Mathf.Pow(Mathf.Abs(player.position.x - ((Component)this).transform.position.x), 2f) + Mathf.Pow(Mathf.Abs(player.position.z - ((Component)this).transform.position.z), 2f)); distY = Mathf.Sqrt(Mathf.Pow(Mathf.Abs(player.position.y - ((Component)this).transform.position.y), 2f)); } private void RotateTowardsPlayer() { //IL_0376: Unknown result type (might be due to invalid IL or missing references) //IL_037c: Unknown result type (might be due to invalid IL or missing references) //IL_0381: Unknown result type (might be due to invalid IL or missing references) //IL_0397: Unknown result type (might be due to invalid IL or missing references) //IL_0093: Unknown result type (might be due to invalid IL or missing references) //IL_0098: Unknown result type (might be due to invalid IL or missing references) //IL_00a6: Unknown result type (might be due to invalid IL or missing references) //IL_00ab: Unknown result type (might be due to invalid IL or missing references) //IL_0217: Unknown result type (might be due to invalid IL or missing references) //IL_021c: Unknown result type (might be due to invalid IL or missing references) //IL_022b: Unknown result type (might be due to invalid IL or missing references) //IL_0230: Unknown result type (might be due to invalid IL or missing references) //IL_01a3: Unknown result type (might be due to invalid IL or missing references) //IL_01a8: Unknown result type (might be due to invalid IL or missing references) //IL_01ad: Unknown result type (might be due to invalid IL or missing references) //IL_01bc: Unknown result type (might be due to invalid IL or missing references) //IL_01c1: Unknown result type (might be due to invalid IL or missing references) //IL_01c6: Unknown result type (might be due to invalid IL or missing references) //IL_01cf: Unknown result type (might be due to invalid IL or missing references) //IL_01d4: Unknown result type (might be due to invalid IL or missing references) //IL_0164: Unknown result type (might be due to invalid IL or missing references) //IL_0169: Unknown result type (might be due to invalid IL or missing references) //IL_016e: Unknown result type (might be due to invalid IL or missing references) //IL_017d: Unknown result type (might be due to invalid IL or missing references) //IL_0182: Unknown result type (might be due to invalid IL or missing references) //IL_0187: Unknown result type (might be due to invalid IL or missing references) //IL_0190: Unknown result type (might be due to invalid IL or missing references) //IL_0195: Unknown result type (might be due to invalid IL or missing references) //IL_010e: Unknown result type (might be due to invalid IL or missing references) //IL_0113: Unknown result type (might be due to invalid IL or missing references) //IL_0118: Unknown result type (might be due to invalid IL or missing references) //IL_0127: Unknown result type (might be due to invalid IL or missing references) //IL_012c: Unknown result type (might be due to invalid IL or missing references) //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_013a: Unknown result type (might be due to invalid IL or missing references) //IL_013f: Unknown result type (might be due to invalid IL or missing references) //IL_00d1: Unknown result type (might be due to invalid IL or missing references) //IL_00d6: Unknown result type (might be due to invalid IL or missing references) //IL_00db: Unknown result type (might be due to invalid IL or missing references) //IL_00e9: Unknown result type (might be due to invalid IL or missing references) //IL_00ee: Unknown result type (might be due to invalid IL or missing references) //IL_00f3: Unknown result type (might be due to invalid IL or missing references) //IL_00fb: Unknown result type (might be due to invalid IL or missing references) //IL_0100: Unknown result type (might be due to invalid IL or missing references) //IL_032b: Unknown result type (might be due to invalid IL or missing references) //IL_0330: Unknown result type (might be due to invalid IL or missing references) //IL_0335: Unknown result type (might be due to invalid IL or missing references) //IL_0344: Unknown result type (might be due to invalid IL or missing references) //IL_0349: Unknown result type (might be due to invalid IL or missing references) //IL_034e: Unknown result type (might be due to invalid IL or missing references) //IL_0357: Unknown result type (might be due to invalid IL or missing references) //IL_035c: Unknown result type (might be due to invalid IL or missing references) //IL_02ec: Unknown result type (might be due to invalid IL or missing references) //IL_02f1: Unknown result type (might be due to invalid IL or missing references) //IL_02f6: Unknown result type (might be due to invalid IL or missing references) //IL_0305: Unknown result type (might be due to invalid IL or missing references) //IL_030a: Unknown result type (might be due to invalid IL or missing references) //IL_030f: Unknown result type (might be due to invalid IL or missing references) //IL_0318: Unknown result type (might be due to invalid IL or missing references) //IL_031d: Unknown result type (might be due to invalid IL or missing references) //IL_0296: Unknown result type (might be due to invalid IL or missing references) //IL_029b: Unknown result type (might be due to invalid IL or missing references) //IL_02a0: Unknown result type (might be due to invalid IL or missing references) //IL_02af: Unknown result type (might be due to invalid IL or missing references) //IL_02b4: Unknown result type (might be due to invalid IL or missing references) //IL_02b9: Unknown result type (might be due to invalid IL or missing references) //IL_02c2: Unknown result type (might be due to invalid IL or missing references) //IL_02c7: Unknown result type (might be due to invalid IL or missing references) //IL_0257: Unknown result type (might be due to invalid IL or missing references) //IL_025c: Unknown result type (might be due to invalid IL or missing references) //IL_0261: Unknown result type (might be due to invalid IL or missing references) //IL_0270: Unknown result type (might be due to invalid IL or missing references) //IL_0275: Unknown result type (might be due to invalid IL or missing references) //IL_027a: Unknown result type (might be due to invalid IL or missing references) //IL_0283: Unknown result type (might be due to invalid IL or missing references) //IL_0288: Unknown result type (might be due to invalid IL or missing references) if (!(dist <= movement.distanceToFacePlayerFrom) || !(distY <= 3f) || (!playerInView && !movement.sideScrolling.lockMovementOnZAxis && !movement.sideScrolling.lockMovementOnXAxis)) { return; } if (movement.sideScrolling.lockMovementOnXAxis && !movement.sideScrolling.lockMovementOnZAxis) { if (((Component)player).transform.position.z < ((Component)this).transform.position.z) { if (movement.sideScrolling.rotateInwards) { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, 180.001f, Quaternion.LookRotation(dir).z); } else { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, 179.999f, Quaternion.LookRotation(dir).z); } } else if (movement.sideScrolling.rotateInwards) { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, -0.001f, Quaternion.LookRotation(dir).z); } else { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, 0.001f, Quaternion.LookRotation(dir).z); } } else if (movement.sideScrolling.lockMovementOnZAxis && !movement.sideScrolling.lockMovementOnXAxis) { if (((Component)player).transform.position.x >= ((Component)this).transform.position.x) { if (movement.sideScrolling.rotateInwards) { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, 90.001f, Quaternion.LookRotation(dir).z); } else { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, 89.999f, Quaternion.LookRotation(dir).z); } } else if (movement.sideScrolling.rotateInwards) { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, -90.001f, Quaternion.LookRotation(dir).z); } else { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, -89.999f, Quaternion.LookRotation(dir).z); } } else { ((Component)this).transform.rotation = Quaternion.Slerp(((Component)this).transform.rotation, Quaternion.LookRotation(dir), movement.rotationSpeed * Time.deltaTime); } } private void RotateTowardsPlayerSideScrolling() { //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0361: Unknown result type (might be due to invalid IL or missing references) //IL_0367: Unknown result type (might be due to invalid IL or missing references) //IL_037d: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Unknown result type (might be due to invalid IL or missing references) //IL_0062: Unknown result type (might be due to invalid IL or missing references) //IL_003c: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_018f: Unknown result type (might be due to invalid IL or missing references) //IL_0194: Unknown result type (might be due to invalid IL or missing references) //IL_0199: Unknown result type (might be due to invalid IL or missing references) //IL_01a8: Unknown result type (might be due to invalid IL or missing references) //IL_01ad: Unknown result type (might be due to invalid IL or missing references) //IL_01b2: Unknown result type (might be due to invalid IL or missing references) //IL_01bb: Unknown result type (might be due to invalid IL or missing references) //IL_01c0: Unknown result type (might be due to invalid IL or missing references) //IL_0150: Unknown result type (might be due to invalid IL or missing references) //IL_0155: Unknown result type (might be due to invalid IL or missing references) //IL_015a: Unknown result type (might be due to invalid IL or missing references) //IL_0169: Unknown result type (might be due to invalid IL or missing references) //IL_016e: Unknown result type (might be due to invalid IL or missing references) //IL_0173: Unknown result type (might be due to invalid IL or missing references) //IL_017c: Unknown result type (might be due to invalid IL or missing references) //IL_0181: Unknown result type (might be due to invalid IL or missing references) //IL_00fa: Unknown result type (might be due to invalid IL or missing references) //IL_00ff: Unknown result type (might be due to invalid IL or missing references) //IL_0104: Unknown result type (might be due to invalid IL or missing references) //IL_0113: Unknown result type (might be due to invalid IL or missing references) //IL_0118: Unknown result type (might be due to invalid IL or missing references) //IL_011d: Unknown result type (might be due to invalid IL or missing references) //IL_0126: Unknown result type (might be due to invalid IL or missing references) //IL_012b: Unknown result type (might be due to invalid IL or missing references) //IL_00bb: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_00d4: Unknown result type (might be due to invalid IL or missing references) //IL_00d9: Unknown result type (might be due to invalid IL or missing references) //IL_00de: Unknown result type (might be due to invalid IL or missing references) //IL_00e7: Unknown result type (might be due to invalid IL or missing references) //IL_00ec: Unknown result type (might be due to invalid IL or missing references) //IL_02f0: Unknown result type (might be due to invalid IL or missing references) //IL_02f5: Unknown result type (might be due to invalid IL or missing references) //IL_02fa: Unknown result type (might be due to invalid IL or missing references) //IL_0309: Unknown result type (might be due to invalid IL or missing references) //IL_030e: Unknown result type (might be due to invalid IL or missing references) //IL_0313: Unknown result type (might be due to invalid IL or missing references) //IL_031c: Unknown result type (might be due to invalid IL or missing references) //IL_0321: Unknown result type (might be due to invalid IL or missing references) //IL_02b1: Unknown result type (might be due to invalid IL or missing references) //IL_02b6: Unknown result type (might be due to invalid IL or missing references) //IL_02bb: Unknown result type (might be due to invalid IL or missing references) //IL_02ca: Unknown result type (might be due to invalid IL or missing references) //IL_02cf: Unknown result type (might be due to invalid IL or missing references) //IL_02d4: Unknown result type (might be due to invalid IL or missing references) //IL_02dd: Unknown result type (might be due to invalid IL or missing references) //IL_02e2: Unknown result type (might be due to invalid IL or missing references) //IL_025b: Unknown result type (might be due to invalid IL or missing references) //IL_0260: Unknown result type (might be due to invalid IL or missing references) //IL_0265: Unknown result type (might be due to invalid IL or missing references) //IL_0274: Unknown result type (might be due to invalid IL or missing references) //IL_0279: Unknown result type (might be due to invalid IL or missing references) //IL_027e: Unknown result type (might be due to invalid IL or missing references) //IL_0287: Unknown result type (might be due to invalid IL or missing references) //IL_028c: Unknown result type (might be due to invalid IL or missing references) //IL_021c: Unknown result type (might be due to invalid IL or missing references) //IL_0221: Unknown result type (might be due to invalid IL or missing references) //IL_0226: Unknown result type (might be due to invalid IL or missing references) //IL_0235: Unknown result type (might be due to invalid IL or missing references) //IL_023a: Unknown result type (might be due to invalid IL or missing references) //IL_023f: Unknown result type (might be due to invalid IL or missing references) //IL_0248: Unknown result type (might be due to invalid IL or missing references) //IL_024d: Unknown result type (might be due to invalid IL or missing references) if (dist > movement.distanceToFacePlayerFrom) { float num = ((!(((Component)this).transform.eulerAngles.y > 180f)) ? ((Component)this).transform.eulerAngles.y : (((Component)this).transform.eulerAngles.y - 360f)); if (movement.sideScrolling.lockMovementOnXAxis && !movement.sideScrolling.lockMovementOnZAxis) { if (num >= 90f) { if (movement.sideScrolling.rotateInwards) { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, 180.001f, Quaternion.LookRotation(dir).z); } else { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, 179.999f, Quaternion.LookRotation(dir).z); } } else if (movement.sideScrolling.rotateInwards) { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, -0.001f, Quaternion.LookRotation(dir).z); } else { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, 0.001f, Quaternion.LookRotation(dir).z); } } else if (movement.sideScrolling.lockMovementOnZAxis && !movement.sideScrolling.lockMovementOnXAxis) { if (num >= 0f) { if (movement.sideScrolling.rotateInwards) { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, 90.001f, Quaternion.LookRotation(dir).z); } else { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, 89.999f, Quaternion.LookRotation(dir).z); } } else if (movement.sideScrolling.rotateInwards) { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, -90.001f, Quaternion.LookRotation(dir).z); } else { rotationDifference = Quaternion.Euler(Quaternion.LookRotation(dir).x, -89.999f, Quaternion.LookRotation(dir).z); } } } if (movement.sideScrolling.lockMovementOnXAxis || movement.sideScrolling.lockMovementOnZAxis) { ((Component)this).transform.rotation = Quaternion.Slerp(((Component)this).transform.rotation, rotationDifference, movement.rotationSpeed * Time.deltaTime); } } private void SetHealthBarDeathPosition() { //IL_002a: Unknown result type (might be due to invalid IL or missing references) if (dead && (Object)(object)enemyHealth != (Object)null) { enemyHealth.transform.position = healthBarBeforeDeathPos; } } private void LockingAxisForSideScrolling() { //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) //IL_004b: Unknown result type (might be due to invalid IL or missing references) //IL_0053: Unknown result type (might be due to invalid IL or missing references) //IL_0080: Unknown result type (might be due to invalid IL or missing references) //IL_0085: Unknown result type (might be due to invalid IL or missing references) //IL_0093: Unknown result type (might be due to invalid IL or missing references) //IL_0098: Unknown result type (might be due to invalid IL or missing references) //IL_00b0: Unknown result type (might be due to invalid IL or missing references) if (movement.sideScrolling.lockMovementOnXAxis) { ((Component)this).transform.position = new Vector3(movement.sideScrolling.xValue, ((Component)this).transform.position.y, ((Component)this).transform.position.z); } if (movement.sideScrolling.lockMovementOnZAxis) { ((Component)this).transform.position = new Vector3(((Component)this).transform.position.x, ((Component)this).transform.position.y, movement.sideScrolling.zValue); } } private void MovingEnemy() { //IL_0013: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003e: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Unknown result type (might be due to invalid IL or missing references) //IL_005a: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_019d: Unknown result type (might be due to invalid IL or missing references) //IL_007b: Unknown result type (might be due to invalid IL or missing references) //IL_0086: Unknown result type (might be due to invalid IL or missing references) //IL_0090: Unknown result type (might be due to invalid IL or missing references) //IL_0095: Unknown result type (might be due to invalid IL or missing references) //IL_009b: Unknown result type (might be due to invalid IL or missing references) //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_00ab: Unknown result type (might be due to invalid IL or missing references) //IL_00b6: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_00cb: Unknown result type (might be due to invalid IL or missing references) //IL_00d0: Unknown result type (might be due to invalid IL or missing references) //IL_00db: Unknown result type (might be due to invalid IL or missing references) //IL_00e0: Unknown result type (might be due to invalid IL or missing references) //IL_00e6: Unknown result type (might be due to invalid IL or missing references) //IL_00eb: Unknown result type (might be due to invalid IL or missing references) //IL_00f0: Unknown result type (might be due to invalid IL or missing references) //IL_0100: Unknown result type (might be due to invalid IL or missing references) //IL_010b: Unknown result type (might be due to invalid IL or missing references) //IL_0115: Unknown result type (might be due to invalid IL or missing references) //IL_011a: Unknown result type (might be due to invalid IL or missing references) //IL_0120: Unknown result type (might be due to invalid IL or missing references) //IL_0125: Unknown result type (might be due to invalid IL or missing references) //IL_0130: Unknown result type (might be due to invalid IL or missing references) //IL_0135: Unknown result type (might be due to invalid IL or missing references) //IL_013b: Unknown result type (might be due to invalid IL or missing references) //IL_0140: Unknown result type (might be due to invalid IL or missing references) //IL_014b: Unknown result type (might be due to invalid IL or missing references) //IL_0156: Unknown result type (might be due to invalid IL or missing references) //IL_0160: Unknown result type (might be due to invalid IL or missing references) //IL_0165: Unknown result type (might be due to invalid IL or missing references) //IL_016b: Unknown result type (might be due to invalid IL or missing references) //IL_0170: Unknown result type (might be due to invalid IL or missing references) //IL_017b: Unknown result type (might be due to invalid IL or missing references) //IL_0180: Unknown result type (might be due to invalid IL or missing references) //IL_0186: Unknown result type (might be due to invalid IL or missing references) //IL_018b: Unknown result type (might be due to invalid IL or missing references) //IL_0190: Unknown result type (might be due to invalid IL or missing references) //IL_01b9: Unknown result type (might be due to invalid IL or missing references) //IL_01c4: Unknown result type (might be due to invalid IL or missing references) //IL_01ce: Unknown result type (might be due to invalid IL or missing references) //IL_01d3: Unknown result type (might be due to invalid IL or missing references) //IL_01d9: Unknown result type (might be due to invalid IL or missing references) //IL_01de: Unknown result type (might be due to invalid IL or missing references) //IL_01e9: Unknown result type (might be due to invalid IL or missing references) //IL_01f4: Unknown result type (might be due to invalid IL or missing references) //IL_01fe: Unknown result type (might be due to invalid IL or missing references) //IL_0203: Unknown result type (might be due to invalid IL or missing references) //IL_0209: Unknown result type (might be due to invalid IL or missing references) //IL_020e: Unknown result type (might be due to invalid IL or missing references) //IL_0219: Unknown result type (might be due to invalid IL or missing references) //IL_021e: Unknown result type (might be due to invalid IL or missing references) //IL_0224: Unknown result type (might be due to invalid IL or missing references) //IL_0229: Unknown result type (might be due to invalid IL or missing references) //IL_0231: Unknown result type (might be due to invalid IL or missing references) //IL_024b: Unknown result type (might be due to invalid IL or missing references) //IL_0256: Unknown result type (might be due to invalid IL or missing references) //IL_0260: Unknown result type (might be due to invalid IL or missing references) //IL_0265: Unknown result type (might be due to invalid IL or missing references) //IL_026b: Unknown result type (might be due to invalid IL or missing references) //IL_0270: Unknown result type (might be due to invalid IL or missing references) //IL_027b: Unknown result type (might be due to invalid IL or missing references) //IL_0280: Unknown result type (might be due to invalid IL or missing references) //IL_0286: Unknown result type (might be due to invalid IL or missing references) //IL_028b: Unknown result type (might be due to invalid IL or missing references) //IL_0296: Unknown result type (might be due to invalid IL or missing references) //IL_02a1: Unknown result type (might be due to invalid IL or missing references) //IL_02ab: Unknown result type (might be due to invalid IL or missing references) //IL_02b0: Unknown result type (might be due to invalid IL or missing references) //IL_02b6: Unknown result type (might be due to invalid IL or missing references) //IL_02bb: Unknown result type (might be due to invalid IL or missing references) //IL_02c6: Unknown result type (might be due to invalid IL or missing references) //IL_02cb: Unknown result type (might be due to invalid IL or missing references) //IL_02d1: Unknown result type (might be due to invalid IL or missing references) //IL_02d6: Unknown result type (might be due to invalid IL or missing references) //IL_02de: Unknown result type (might be due to invalid IL or missing references) //IL_03d3: Unknown result type (might be due to invalid IL or missing references) //IL_03d8: Unknown result type (might be due to invalid IL or missing references) //IL_0336: Unknown result type (might be due to invalid IL or missing references) //IL_033b: Unknown result type (might be due to invalid IL or missing references) //IL_0349: Unknown result type (might be due to invalid IL or missing references) //IL_034e: Unknown result type (might be due to invalid IL or missing references) //IL_038f: Unknown result type (might be due to invalid IL or missing references) //IL_0394: Unknown result type (might be due to invalid IL or missing references) //IL_03a3: Unknown result type (might be due to invalid IL or missing references) //IL_03a8: Unknown result type (might be due to invalid IL or missing references) //IL_0473: Unknown result type (might be due to invalid IL or missing references) //IL_0478: Unknown result type (might be due to invalid IL or missing references) //IL_0485: Unknown result type (might be due to invalid IL or missing references) //IL_048a: Unknown result type (might be due to invalid IL or missing references) //IL_04b1: Unknown result type (might be due to invalid IL or missing references) //IL_04be: Unknown result type (might be due to invalid IL or missing references) //IL_04c3: Unknown result type (might be due to invalid IL or missing references) edgeDetectorHeight2 = movement.edgeDetectorHeight * ((Component)this).transform.up; edgeDetectorForward2 = movement.edgeDetectorForward * ((Component)this).transform.forward; minimumEdgeHeight2 = movement.minimumEdgeHeight * ((Component)this).transform.up; if (movement.showEdgeDetectors) { Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.up * 0.2f + edgeDetectorHeight2, ((Component)this).transform.position + ((Component)this).transform.up * 0.2f + edgeDetectorHeight2 + ((Component)this).transform.forward + edgeDetectorForward2, Color.blue); Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.up * 0.2f + edgeDetectorHeight2 + ((Component)this).transform.forward + edgeDetectorForward2, ((Component)this).transform.position - ((Component)this).transform.up * 0.8f - minimumEdgeHeight2 + ((Component)this).transform.forward + edgeDetectorForward2, Color.blue); } RaycastHit val = default(RaycastHit); if (movement.stopAtEdges && !Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.up * 0.2f + edgeDetectorHeight2, ((Component)this).transform.position + ((Component)this).transform.up * 0.2f + edgeDetectorHeight2 + ((Component)this).transform.forward + edgeDetectorForward2, ref val, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.up * 0.2f + edgeDetectorHeight2 + ((Component)this).transform.forward + edgeDetectorForward2, ((Component)this).transform.position - ((Component)this).transform.up * 0.8f + minimumEdgeHeight2 + ((Component)this).transform.forward + edgeDetectorForward2, ref val, LayerMask.op_Implicit(collisionLayers))) { return; } Vector3 forward = default(Vector3); if (movement.sideScrolling.lockMovementOnXAxis && !movement.sideScrolling.lockMovementOnZAxis) { ((Vector3)(ref forward))..ctor(movement.sideScrolling.xValue, ((Component)this).transform.forward.y, ((Component)this).transform.forward.z); } if (movement.sideScrolling.lockMovementOnZAxis && !movement.sideScrolling.lockMovementOnXAxis) { ((Vector3)(ref forward))..ctor(((Component)this).transform.forward.x, ((Component)this).transform.forward.y, movement.sideScrolling.zValue); } else { forward = ((Component)this).transform.forward; } if (dist <= movement.distanceToChasePlayerFrom && distY <= 3f && playerInView) { if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { ((Component)this).GetComponent().SetBool("Walking", true); } movementSpeed2 = Mathf.Lerp(movementSpeed2, movement.movementSpeed, 8f * Time.deltaTime); if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { ((Component)this).GetComponent().MovePosition(((Component)this).transform.position + forward * (movementSpeed2 * Time.deltaTime)); } else if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { ((Component)this).GetComponent().Move(forward * (movementSpeed2 * Time.deltaTime)); } } else { if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { ((Component)this).GetComponent().SetBool("Walking", false); } movementSpeed2 = 0f; } } private void AttackedByPlayer() { if (((Input.GetButton(playerAttackButton) && !attackButtonPressed) || (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && !((Component)player).GetComponent().attackFinishedLastUpdate)) && (!Object.op_Implicit((Object)(object)((Component)player).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && !Input.GetKey((KeyCode)306) && !Input.GetKey((KeyCode)358) && !((Component)player).GetComponent().crouchCancelsAttack && !((Component)player).GetComponent().currentlyOnWall && !((Component)player).GetComponent().currentlyClimbingWall))) { attackPressedTimer = 0f; attackPressed = true; playerCanAttack = true; attackButtonPressed = true; } else { attackPressedTimer += 0.02f; if (!Input.GetButton(playerAttackButton)) { attackButtonPressed = false; } } if (attackPressedTimer > 0.2f) { attackPressed = false; } } private void RegainHealth() { if (regainHealthOverTime) { if (!dead) { if (dist >= minimumDistanceFromPlayerToRegainHealth) { regainHealthTimer += 0.02f; } } else { regainHealthTimer = 0f; } if (regainHealthTimer > timeNeededToRegainHealth) { if (healthToRegain < maximumHealth) { hitCount -= healthToRegain; } else { hitCount = 0f; } } } else { regainHealthTimer = 0f; } } private void EnemyDeath() { //IL_0053: Unknown result type (might be due to invalid IL or missing references) //IL_005e: Unknown result type (might be due to invalid IL or missing references) //IL_014f: Unknown result type (might be due to invalid IL or missing references) //IL_0155: Unknown result type (might be due to invalid IL or missing references) //IL_0092: Unknown result type (might be due to invalid IL or missing references) //IL_00a7: Unknown result type (might be due to invalid IL or missing references) //IL_0120: Unknown result type (might be due to invalid IL or missing references) //IL_0125: Unknown result type (might be due to invalid IL or missing references) //IL_036b: Unknown result type (might be due to invalid IL or missing references) //IL_037c: Unknown result type (might be due to invalid IL or missing references) //IL_03b0: Unknown result type (might be due to invalid IL or missing references) //IL_03b5: Unknown result type (might be due to invalid IL or missing references) //IL_03a4: Unknown result type (might be due to invalid IL or missing references) //IL_055b: Unknown result type (might be due to invalid IL or missing references) //IL_0566: Unknown result type (might be due to invalid IL or missing references) childRenderers = ((Component)this).GetComponentsInChildren(); if (!(hitCount >= maximumHealth)) { return; } if (!dead) { if ((Object)(object)damage.hurtEffect != (Object)null) { Object.Instantiate(damage.hurtEffect, ((Component)this).transform.position, ((Component)this).transform.rotation); } if ((Object)(object)damage.deathEffect != (Object)null) { Object.Instantiate(damage.deathEffect, ((Component)this).transform.position, damage.deathEffect.transform.rotation); } } if (!allowRespawn && (secondsToShowHealthBarAfterEnemyDeath <= 0f || !health.healthBar.showHealthBar)) { Object.Destroy((Object)(object)((Component)this).gameObject); return; } if (!dead && (Object)(object)enemyHealth != (Object)null) { healthBarBeforeDeathPos = enemyHealth.transform.position; } dead = true; showHealthBarAfterDeathTimer += Time.deltaTime; if (Vector3.Distance(((Component)player).transform.position, respawnLocation) >= minimumDistanceFromPlayerToRespawn) { deathTimer += Time.deltaTime; } if (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Component)this).GetComponent().enabled) { colliderOnOff = true; ((Component)this).GetComponent().enabled = false; } Renderer[] array = childRenderers; foreach (Renderer val in array) { if (Object.op_Implicit((Object)(object)val) && val.enabled) { rendererOnOff = true; val.enabled = false; } } if (dead && showHealthBarAfterDeathTimer >= secondsToShowHealthBarAfterEnemyDeath) { if (allowRespawn) { if (health.healthBar.showHealthBar) { if ((Object)(object)black != (Object)null && Object.op_Implicit((Object)(object)black.GetComponent())) { black.GetComponent().enabled = false; } if ((Object)(object)red != (Object)null && Object.op_Implicit((Object)(object)red.GetComponent())) { red.GetComponent().enabled = false; } if ((Object)(object)green != (Object)null && Object.op_Implicit((Object)(object)green.GetComponent())) { green.GetComponent().enabled = false; } } } else { Object.Destroy((Object)(object)((Component)this).gameObject); } } if (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Collider)((Component)this).GetComponent()).enabled) { ccOnOff = true; ((Collider)((Component)this).GetComponent()).enabled = false; } if (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Component)this).GetComponent().useGravity) { rbOnOff = true; ((Component)this).GetComponent().useGravity = false; } ((Component)this).transform.position = respawnLocation; ((Component)this).transform.rotation = respawnRotation; if ((Object)(object)enemyHealth != (Object)null) { enemyHealth.transform.position = healthBarBeforeDeathPos; } knockedBackDirection = Vector3.zero; if (!(deathTimer > respawnWaitTime)) { return; } if (colliderOnOff) { ((Component)this).GetComponent().enabled = true; colliderOnOff = false; } if (rendererOnOff) { Renderer[] array2 = childRenderers; foreach (Renderer val2 in array2) { val2.enabled = true; } if (health.healthBar.showHealthBar) { if ((Object)(object)black != (Object)null && Object.op_Implicit((Object)(object)black.GetComponent())) { black.GetComponent().enabled = true; } if ((Object)(object)red != (Object)null && Object.op_Implicit((Object)(object)red.GetComponent())) { red.GetComponent().enabled = true; } if ((Object)(object)green != (Object)null && Object.op_Implicit((Object)(object)green.GetComponent())) { green.GetComponent().enabled = true; } } rendererOnOff = false; } if (ccOnOff) { ((Collider)((Component)this).GetComponent()).enabled = true; ccOnOff = false; } if (rbOnOff) { ((Component)this).GetComponent().useGravity = true; rbOnOff = false; } if ((Object)(object)respawn.respawnEffect != (Object)null) { Object.Instantiate(respawn.respawnEffect, ((Component)this).transform.position, ((Component)this).transform.rotation); } dead = false; hitCount = 0f; deathTimer = 0f; showHealthBarAfterDeathTimer = 0f; } private void KnockBack() { //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_0086: Unknown result type (might be due to invalid IL or missing references) //IL_008c: Unknown result type (might be due to invalid IL or missing references) //IL_0096: Unknown result type (might be due to invalid IL or missing references) //IL_009b: Unknown result type (might be due to invalid IL or missing references) //IL_00d3: Unknown result type (might be due to invalid IL or missing references) //IL_00dd: Unknown result type (might be due to invalid IL or missing references) //IL_00e2: Unknown result type (might be due to invalid IL or missing references) if (!knockedBack || !(damage.knockBackFactor > 0f)) { return; } movementSpeed2 = 0f; if (Vector3.Distance(knockedBackDirection, Vector3.zero) > 0.1f) { knockedBackDirection = Vector3.Slerp(knockedBackDirection, Vector3.zero, 8f * Time.deltaTime); if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { ((Component)this).GetComponent().MovePosition(((Component)this).transform.position + knockedBackDirection * Time.deltaTime); } else if (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Collider)((Component)this).GetComponent()).enabled) { ((Component)this).GetComponent().Move(knockedBackDirection * Time.deltaTime); } } else { knockedBack = false; } } private void CreatingEnemyHealthBar() { if (health.healthBar.showHealthBar) { SetHealthBarVariables(); CreateHealthBarMaterials(); CreateHealthBar(); UpdateHealthBarMaterials(); UpdateHealthBarSizes(); GetEnemyHeight(); PositionHealthBar(); } else if ((Object)(object)enemyHealth != (Object)null) { Object.Destroy((Object)(object)enemyHealth); } } private void SetHealthBarVariables() { healthBarUpAmount = health.healthBar.healthBarUpAmount - 0.38f; healthBarOverallHeight = health.healthBar.healthBarOverallHeight; healthBarOverallWidth = health.healthBar.healthBarOverallWidth; outlineHeight = health.healthBar.outlineHeight - 0.37f; outlineWidth = health.healthBar.outlineWidth - 0.35f; healthHeight = health.healthBar.healthHeight - 0.5f; healthWidth = health.healthBar.healthWidth - 0.37f; secondsToShowHealthBarAfterEnemyDeath = health.healthBar.secondsToShowHealthBarAfterEnemyDeath; } private void CreateHealthBarMaterials() { //IL_004e: Unknown result type (might be due to invalid IL or missing references) //IL_00a6: Unknown result type (might be due to invalid IL or missing references) //IL_00fe: Unknown result type (might be due to invalid IL or missing references) if ((Object)(object)health.healthBar.healthBarMaterials.outlineMaterial != (Object)null) { outlineMaterial = health.healthBar.healthBarMaterials.outlineMaterial; outlineMaterial.color = health.healthBar.outlineColor; } if ((Object)(object)health.healthBar.healthBarMaterials.healthMaterial != (Object)null) { healthMaterial = health.healthBar.healthBarMaterials.healthMaterial; healthMaterial.color = health.healthBar.healthColor; } if ((Object)(object)health.healthBar.healthBarMaterials.noHealthMaterial != (Object)null) { noHealthMaterial = health.healthBar.healthBarMaterials.noHealthMaterial; noHealthMaterial.color = health.healthBar.noHealthColor; } } private void CreateHealthBar() { //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Expected O, but got Unknown //IL_0042: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Expected O, but got Unknown //IL_00db: Unknown result type (might be due to invalid IL or missing references) //IL_0132: Unknown result type (might be due to invalid IL or missing references) //IL_013c: Expected O, but got Unknown //IL_01cb: Unknown result type (might be due to invalid IL or missing references) //IL_01ef: Unknown result type (might be due to invalid IL or missing references) //IL_0246: Unknown result type (might be due to invalid IL or missing references) //IL_0250: Expected O, but got Unknown //IL_0295: Unknown result type (might be due to invalid IL or missing references) //IL_0303: Unknown result type (might be due to invalid IL or missing references) //IL_0327: Unknown result type (might be due to invalid IL or missing references) if ((Object)(object)enemyHealth == (Object)null) { enemyHealth = new GameObject(); ((Object)enemyHealth).name = "EnemyHealth"; } if ((Object)(object)outline == (Object)null) { outline = new GameObject(); ((Object)outline).name = "Outline"; outline.transform.parent = enemyHealth.transform; } if ((Object)(object)black == (Object)null) { black = GameObject.CreatePrimitive((PrimitiveType)5); ((Object)black).name = "Black"; black.transform.parent = outline.transform; black.transform.localScale = new Vector3(1f, 0.1829655f, 1f); if ((Object)(object)outlineMaterial != (Object)null) { black.GetComponent().material = outlineMaterial; } Object.Destroy((Object)(object)black.GetComponent()); } if ((Object)(object)healthBarObject == (Object)null) { healthBarObject = new GameObject(); ((Object)healthBarObject).name = "HealthBar"; healthBarObject.transform.parent = enemyHealth.transform; } if ((Object)(object)red == (Object)null) { red = GameObject.CreatePrimitive((PrimitiveType)5); ((Object)red).name = "Red"; red.transform.parent = healthBarObject.transform; red.transform.localScale = new Vector3(0.9552082f, 0.1394147f, 1f); red.transform.localPosition = new Vector3(0f, 0f, -0.001f); if ((Object)(object)noHealthMaterial != (Object)null) { red.GetComponent().material = noHealthMaterial; } Object.Destroy((Object)(object)red.GetComponent()); } if ((Object)(object)healthObject == (Object)null) { healthObject = new GameObject(); ((Object)healthObject).name = "HealthObject"; healthObject.transform.parent = healthBarObject.transform; healthObject.transform.localPosition = new Vector3(-0.4774f, 0f, -0.002f); } if ((Object)(object)green == (Object)null) { green = GameObject.CreatePrimitive((PrimitiveType)5); ((Object)green).name = "Green"; green.transform.parent = healthObject.transform; green.transform.localScale = new Vector3(0.9552084f, 0.1394147f, 1f); green.transform.localPosition = new Vector3(0.4774f, 0f, -0.002f); if ((Object)(object)healthMaterial != (Object)null) { green.GetComponent().material = healthMaterial; } Object.Destroy((Object)(object)green.GetComponent()); } } private void UpdateHealthBarMaterials() { if ((Object)(object)black != (Object)null && (Object)(object)outlineMaterial != (Object)null) { black.GetComponent().material = outlineMaterial; } if ((Object)(object)red != (Object)null && (Object)(object)noHealthMaterial != (Object)null) { red.GetComponent().material = noHealthMaterial; } if ((Object)(object)green != (Object)null && (Object)(object)healthMaterial != (Object)null) { green.GetComponent().material = healthMaterial; } } private void UpdateHealthBarSizes() { //IL_002a: Unknown result type (might be due to invalid IL or missing references) //IL_002f: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_0049: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Unknown result type (might be due to invalid IL or missing references) //IL_0062: Unknown result type (might be due to invalid IL or missing references) //IL_006b: Unknown result type (might be due to invalid IL or missing references) //IL_00a4: Unknown result type (might be due to invalid IL or missing references) //IL_00dd: Unknown result type (might be due to invalid IL or missing references) //IL_0170: Unknown result type (might be due to invalid IL or missing references) //IL_0145: Unknown result type (might be due to invalid IL or missing references) if ((Object)(object)enemyHealth != (Object)null) { enemyHealth.transform.localScale = new Vector3(healthBarOverallWidth / ((Component)this).transform.localScale.x, healthBarOverallHeight / ((Component)this).transform.localScale.y, 1f / ((Component)this).transform.localScale.z); } if ((Object)(object)outline != (Object)null) { outline.transform.localScale = new Vector3(outlineWidth, outlineHeight, 1f); } if ((Object)(object)healthBarObject != (Object)null) { healthBarObject.transform.localScale = new Vector3(healthWidth, healthHeight, 1f); } if ((Object)(object)healthObject != (Object)null) { if (maximumHealth > 0f && hitCount <= maximumHealth) { healthObject.transform.localScale = new Vector3((maximumHealth - hitCount) / maximumHealth, 1f, 1f); } else { healthObject.transform.localScale = new Vector3(0f, 1f, 1f); } } } private void GetEnemyHeight() { //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0026: Unknown result type (might be due to invalid IL or missing references) //IL_002b: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_00e8: Unknown result type (might be due to invalid IL or missing references) //IL_00ed: Unknown result type (might be due to invalid IL or missing references) //IL_00f1: Unknown result type (might be due to invalid IL or missing references) //IL_00f6: Unknown result type (might be due to invalid IL or missing references) //IL_010b: Unknown result type (might be due to invalid IL or missing references) //IL_0110: Unknown result type (might be due to invalid IL or missing references) //IL_0114: Unknown result type (might be due to invalid IL or missing references) //IL_0119: Unknown result type (might be due to invalid IL or missing references) //IL_012d: Unknown result type (might be due to invalid IL or missing references) //IL_0132: Unknown result type (might be due to invalid IL or missing references) //IL_009f: Unknown result type (might be due to invalid IL or missing references) //IL_00a4: Unknown result type (might be due to invalid IL or missing references) //IL_01c2: Unknown result type (might be due to invalid IL or missing references) //IL_01c7: Unknown result type (might be due to invalid IL or missing references) //IL_01cb: Unknown result type (might be due to invalid IL or missing references) //IL_01d0: Unknown result type (might be due to invalid IL or missing references) //IL_01e5: Unknown result type (might be due to invalid IL or missing references) //IL_01ea: Unknown result type (might be due to invalid IL or missing references) //IL_01ee: Unknown result type (might be due to invalid IL or missing references) //IL_01f3: Unknown result type (might be due to invalid IL or missing references) //IL_0207: Unknown result type (might be due to invalid IL or missing references) //IL_020c: Unknown result type (might be due to invalid IL or missing references) //IL_016d: Unknown result type (might be due to invalid IL or missing references) //IL_0172: Unknown result type (might be due to invalid IL or missing references) //IL_0347: Unknown result type (might be due to invalid IL or missing references) //IL_034c: Unknown result type (might be due to invalid IL or missing references) //IL_028e: Unknown result type (might be due to invalid IL or missing references) //IL_0293: Unknown result type (might be due to invalid IL or missing references) //IL_0297: Unknown result type (might be due to invalid IL or missing references) //IL_029c: Unknown result type (might be due to invalid IL or missing references) //IL_02b1: Unknown result type (might be due to invalid IL or missing references) //IL_02b6: Unknown result type (might be due to invalid IL or missing references) //IL_02ba: Unknown result type (might be due to invalid IL or missing references) //IL_02bf: Unknown result type (might be due to invalid IL or missing references) //IL_02d3: Unknown result type (might be due to invalid IL or missing references) //IL_02d8: Unknown result type (might be due to invalid IL or missing references) //IL_0247: Unknown result type (might be due to invalid IL or missing references) //IL_024c: Unknown result type (might be due to invalid IL or missing references) //IL_025b: Unknown result type (might be due to invalid IL or missing references) //IL_0260: Unknown result type (might be due to invalid IL or missing references) //IL_0313: Unknown result type (might be due to invalid IL or missing references) //IL_0318: Unknown result type (might be due to invalid IL or missing references) if (Object.op_Implicit((Object)(object)((Component)((Component)this).transform).GetComponent())) { Bounds bounds = ((Collider)((Component)this).GetComponent()).bounds; feetPosition = ((Bounds)(ref bounds)).min.y; Bounds bounds2 = ((Collider)((Component)this).GetComponent()).bounds; headPosition = ((Bounds)(ref bounds2)).max.y; if (((Component)this).transform.localScale.y >= 1f) { enemyHeight = (headPosition - feetPosition) * 1.4f; } else { enemyHeight = ((Component)this).transform.localScale.y * ((Component)this).GetComponent().height * 1.4f; } } else if (Object.op_Implicit((Object)(object)((Component)((Component)this).transform).GetComponent())) { Bounds bounds3 = ((Collider)((Component)this).GetComponent()).bounds; feetPosition = ((Bounds)(ref bounds3)).min.y; Bounds bounds4 = ((Collider)((Component)this).GetComponent()).bounds; headPosition = ((Bounds)(ref bounds4)).max.y; if (((Component)this).transform.localScale.y >= 1f) { enemyHeight = (headPosition - feetPosition) * 1.4f; } else { enemyHeight = ((Component)this).transform.localScale.y / 1.83f * ((Component)this).GetComponent().radius * 4.2f + 0.7f; } } else if (Object.op_Implicit((Object)(object)((Component)((Component)this).transform).GetComponent())) { Bounds bounds5 = ((Collider)((Component)this).GetComponent()).bounds; feetPosition = ((Bounds)(ref bounds5)).min.y; Bounds bounds6 = ((Collider)((Component)this).GetComponent()).bounds; headPosition = ((Bounds)(ref bounds6)).max.y; if (((Component)this).transform.localScale.y >= 1f) { enemyHeight = (headPosition - feetPosition) * 1.4f; } else { enemyHeight = ((Component)this).transform.localScale.y * ((Component)this).GetComponent().size.y; } } else if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { Bounds bounds7 = ((Collider)((Component)this).GetComponent()).bounds; feetPosition = ((Bounds)(ref bounds7)).min.y; Bounds bounds8 = ((Collider)((Component)this).GetComponent()).bounds; headPosition = ((Bounds)(ref bounds8)).max.y; if (((Component)this).transform.localScale.y >= 1f) { enemyHeight = (headPosition - feetPosition) * 1.4f; } else { enemyHeight = ((Component)this).transform.localScale.y * ((Component)this).GetComponent().height * 1.4f; } } else { enemyHeight = ((Component)this).transform.localScale.y; } } private void PositionHealthBar() { //IL_006e: Unknown result type (might be due to invalid IL or missing references) //IL_0030: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Unknown result type (might be due to invalid IL or missing references) //IL_0051: Unknown result type (might be due to invalid IL or missing references) //IL_0147: Unknown result type (might be due to invalid IL or missing references) //IL_014c: Unknown result type (might be due to invalid IL or missing references) //IL_015f: Unknown result type (might be due to invalid IL or missing references) //IL_0164: Unknown result type (might be due to invalid IL or missing references) //IL_0190: Unknown result type (might be due to invalid IL or missing references) //IL_01a6: Unknown result type (might be due to invalid IL or missing references) //IL_01b6: Unknown result type (might be due to invalid IL or missing references) //IL_01bb: Unknown result type (might be due to invalid IL or missing references) if ((Object)(object)enemyHealth != (Object)null) { if (!dead) { enemyHealth.transform.position = ((Component)this).transform.position + new Vector3(0f, enemyHeight + healthBarUpAmount, 0f); } else { enemyHealth.transform.position = healthBarBeforeDeathPos; } if (!Object.op_Implicit((Object)(object)enemyHealth.GetComponent()) && !Object.op_Implicit((Object)(object)outline.GetComponent()) && !Object.op_Implicit((Object)(object)black.GetComponent()) && !Object.op_Implicit((Object)(object)healthBarObject.GetComponent()) && !Object.op_Implicit((Object)(object)red.GetComponent()) && !Object.op_Implicit((Object)(object)healthObject.GetComponent()) && !Object.op_Implicit((Object)(object)green.GetComponent())) { enemyHealth.transform.parent = ((Component)this).transform; } else { enemyHealth.transform.parent = null; } float num = (((Component)playerCamera).transform.position.y - enemyHealth.transform.position.y - 0.5230548f) * 5f; enemyHealth.transform.rotation = ((Component)playerCamera).transform.rotation; Transform transform = enemyHealth.transform; transform.localRotation *= Quaternion.Euler(num, 0f, 0f); } } private void StabilizeEnemy() { //IL_0061: Unknown result type (might be due to invalid IL or missing references) //IL_0066: Unknown result type (might be due to invalid IL or missing references) //IL_0049: Unknown result type (might be due to invalid IL or missing references) //IL_0095: Unknown result type (might be due to invalid IL or missing references) if (Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && ((Behaviour)((Component)player).GetComponent()).enabled && ((Component)player).GetComponent().currentHealth <= 0) { ((Component)this).transform.position = lastPosBeforePlayerDeath; } else { lastPosBeforePlayerDeath = ((Component)this).transform.position; } if (dead && (Object)(object)enemyHealth != (Object)null) { enemyHealth.transform.position = healthBarBeforeDeathPos; } } private void LateUpdate() { //IL_0316: Unknown result type (might be due to invalid IL or missing references) //IL_00a1: Unknown result type (might be due to invalid IL or missing references) //IL_00ac: Unknown result type (might be due to invalid IL or missing references) //IL_0114: Unknown result type (might be due to invalid IL or missing references) //IL_0124: Unknown result type (might be due to invalid IL or missing references) //IL_0129: Unknown result type (might be due to invalid IL or missing references) //IL_00e2: Unknown result type (might be due to invalid IL or missing references) //IL_00e7: Unknown result type (might be due to invalid IL or missing references) //IL_00f7: Unknown result type (might be due to invalid IL or missing references) //IL_00fc: Unknown result type (might be due to invalid IL or missing references) if (attackPressed) { if (playerCanAttack && dist <= damage.damageRadius && distY <= 7f && hitCount < maximumHealth && lastHitCount == hitCount && playerAngle < damage.playerViewpointEnemyMustBeInToGetHit) { if ((Object)(object)damage.hurtEffect != (Object)null) { Object.Instantiate(damage.hurtEffect, ((Component)this).transform.position, ((Component)this).transform.rotation); } regainHealthTimer = 0f; playerInView = true; if (playerAngle < 60f) { knockedBackDirection = -((Component)this).transform.forward * damage.knockBackFactor; } else { knockedBackDirection = ((Component)player).transform.forward * damage.knockBackFactor; } knockedBack = true; if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { ((Component)this).GetComponent().CrossFade("BotKnockBack", 0f, -1, 0f); } if ((Object)(object)((Component)player).GetComponent() != (Object)null && ((Behaviour)((Component)player).GetComponent()).enabled) { if (!((Component)player).GetComponent().crouching) { if (((Component)player).GetComponent().currentAttackNumber - 1 <= ((Component)player).GetComponent().totalAttackNumber && ((Component)player).GetComponent().currentAttackNumber - 1 > 0 && ((Component)player).GetComponent().attacksToPerform[((Component)player).GetComponent().currentAttackNumber - 1] >= 0f) { hitCount += ((Component)player).GetComponent().attacksToPerform[((Component)player).GetComponent().currentAttackNumber - 1]; } else if (((Component)player).GetComponent().currentAttackNumber > 0) { hitCount += ((Component)player).GetComponent().attacksToPerform[0]; } } else { hitCount += ((Component)player).GetComponent().attacking.crouch.crouchAttackStrength; } } else { hitCount += 1f; } playerCanAttack = false; } } else { playerCanAttack = true; } lastHitCount = hitCount; if (dead && (Object)(object)enemyHealth != (Object)null) { enemyHealth.transform.position = healthBarBeforeDeathPos; } } private void OnDisable() { if ((Object)(object)enemyHealth != (Object)null) { Object.Destroy((Object)(object)enemyHealth); } } private void OnControllerColliderHit(ControllerColliderHit hit) { if (((Behaviour)this).enabled && Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && ((Behaviour)((Component)player).GetComponent()).enabled && ((Component)player).GetComponent().canDamage && ((Component)player).GetComponent().canDamage2 && ((Object)hit.gameObject).name == ((Object)((Component)player).gameObject).name) { ((Component)player).GetComponent().enemyAttackPower = attackPower; ((Component)player).GetComponent().applyDamage = true; ((Component)player).GetComponent().blink = true; } } private void OnCollisionStay(Collision hit) { if (((Behaviour)this).enabled && Object.op_Implicit((Object)(object)((Component)player).GetComponent()) && ((Behaviour)((Component)player).GetComponent()).enabled && ((Component)player).GetComponent().canDamage && ((Component)player).GetComponent().canDamage2 && ((Object)hit.gameObject).name == ((Object)((Component)player).gameObject).name) { ((Component)player).GetComponent().enemyAttackPower = attackPower; ((Component)player).GetComponent().applyDamage = true; ((Component)player).GetComponent().blink = true; } } } public class ItemRotation : MonoBehaviour { public Vector3 direction; private void Start() { } private void LateUpdate() { ((Component)this).transform.Rotate(direction.x, direction.y, direction.z); } } public class MovingPlatform : MonoBehaviour { [Serializable] public class Movement { public Vector3 startPosition; public Vector3 endPosition; public float movementSpeed = 3f; public float waitingTimeBeforeMoving = 1f; public bool startMovingImmediately = true; } [Serializable] public class Rotation { public Vector3 rotationDirection = new Vector3(0f, 0f, 0f); public bool onlyRotateWhenMoving = false; } public Movement movement = new Movement(); public Rotation rotation = new Rotation(); private bool atStart; private float waitingTimer; private void Start() { //IL_000d: Unknown result type (might be due to invalid IL or missing references) ((Component)this).transform.localPosition = movement.startPosition; atStart = true; if (movement.startMovingImmediately) { waitingTimer = movement.waitingTimeBeforeMoving; } } private void FixedUpdate() { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_0052: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Unknown result type (might be due to invalid IL or missing references) //IL_0111: Unknown result type (might be due to invalid IL or missing references) //IL_011c: Unknown result type (might be due to invalid IL or missing references) //IL_0132: Unknown result type (might be due to invalid IL or missing references) //IL_00d3: Unknown result type (might be due to invalid IL or missing references) //IL_00de: Unknown result type (might be due to invalid IL or missing references) //IL_00f4: Unknown result type (might be due to invalid IL or missing references) if (Vector3.Distance(((Component)this).transform.localPosition, movement.startPosition) <= 0.01f) { if (!atStart) { waitingTimer = 0f; atStart = true; } } else if (Vector3.Distance(((Component)this).transform.localPosition, movement.endPosition) <= 0.01f && atStart) { waitingTimer = 0f; atStart = false; } waitingTimer += 0.02f; if (waitingTimer >= movement.waitingTimeBeforeMoving) { if (atStart) { ((Component)this).transform.localPosition = Vector3.MoveTowards(((Component)this).transform.localPosition, movement.endPosition, movement.movementSpeed * Time.deltaTime); } else { ((Component)this).transform.localPosition = Vector3.MoveTowards(((Component)this).transform.localPosition, movement.startPosition, movement.movementSpeed * Time.deltaTime); } if (rotation.onlyRotateWhenMoving) { ((Component)this).transform.Rotate(rotation.rotationDirection.x, rotation.rotationDirection.y, rotation.rotationDirection.z); } } if (!rotation.onlyRotateWhenMoving) { ((Component)this).transform.Rotate(rotation.rotationDirection.x, rotation.rotationDirection.y, rotation.rotationDirection.z); } } } public class Health : MonoBehaviour { [Serializable] public class PlayerHealth { [Serializable] public class HealthUI { public Sprite[] heartSprites = (Sprite[])(object)new Sprite[5]; public bool overlayHearts = true; public Vector2 uISpacing = new Vector2(1f, 1f); public Vector3 uIPosition = new Vector3(8f, 188f, 0f); public Vector2 uIScale = new Vector2(73f, 73f); } public int numberOfHearts = 3; public int maxHeartsPerRow = 8; public bool regainHealthOverTime = false; public int quartersOfHealthToRegain = 2; public float timeNeededToRegainHealth = 7f; public HealthUI healthUI = new HealthUI(); [HideInInspector] public bool debugHealth = false; } [Serializable] public class PlayerDamage { [Serializable] public class EnemyDamage { public string enemyTag = "Enemy"; public float secondsToStayInvincibleAfterAttacking = 0.7f; public float secondsToStayInvincibleAfterBeingHurt = 1f; } [Serializable] public class FallDamage { public bool receiveFallDamage = true; public float minimumFallSpeedToReceiveDamage = 4f; public int minimumReceivableDamage = 2; public int speedDamageMultiple = 6; public float maxGroundedDistance = 0.2f; public LayerMask collisionLayers = LayerMask.op_Implicit(-21); } public EnemyDamage enemyDamage = new EnemyDamage(); public FallDamage fallDamage = new FallDamage(); public float damageBlinkSpeed = 0.1f; } [Serializable] public class Respawn { public Vector3 respawnLocation; public Vector3 respawnRotation; public bool respawnAtStartLocationAndRotation = true; } [Serializable] public class HealthItems { public string healthItemTag = "Heart"; public int quartersOfHealthToRegain = 4; } [Serializable] public class DamageItems { public string damageItemTag = "Hurt"; public int quartersOfHealthToLose = 2; } public PlayerHealth health = new PlayerHealth(); public PlayerDamage damage = new PlayerDamage(); public Respawn respawn = new Respawn(); public HealthItems[] healthItems = new HealthItems[1]; public DamageItems[] damageItems = new DamageItems[1]; [HideInInspector] public int currentHealth; private GameObject healthHolder; private GameObject canvas; private List hearts = new List(); private int newNumberOfHearts = 3; private int lastNumberOfHearts = 3; [HideInInspector] public bool canDamage = true; [HideInInspector] public bool canDamage2 = true; private float damageTimer = 0f; private bool invincible = false; private float blinkTimer; private float damageTimeoutTimer; private Renderer[] renderers; [HideInInspector] public bool applyDamage = false; [HideInInspector] public bool blink = false; [HideInInspector] public int enemyAttackPower = 2; private bool disableCollider; private float regainHealthTimer; private bool grounded; private float lastYPos; private int fallDamageToReceive; private int quartersOfHealthToRegain; private int quartersOfHealthToLose; [HideInInspector] public Vector3 respawnLocation; [HideInInspector] public Quaternion respawnRotation; private float spacingX; private float spacingY; private float dist; private float distY; private float angle; private GameObject closest; private Vector2 anchorMin; private void Start() { //IL_00da: Unknown result type (might be due to invalid IL or missing references) //IL_00df: Unknown result type (might be due to invalid IL or missing references) //IL_0115: Unknown result type (might be due to invalid IL or missing references) //IL_011a: Unknown result type (might be due to invalid IL or missing references) //IL_00b1: Unknown result type (might be due to invalid IL or missing references) //IL_00b6: Unknown result type (might be due to invalid IL or missing references) //IL_00c2: Unknown result type (might be due to invalid IL or missing references) //IL_00c7: Unknown result type (might be due to invalid IL or missing references) //IL_0127: Unknown result type (might be due to invalid IL or missing references) //IL_012c: Unknown result type (might be due to invalid IL or missing references) newNumberOfHearts = health.numberOfHearts; lastNumberOfHearts = health.numberOfHearts; spacingX = health.healthUI.uIScale.x; spacingY = 0f - health.healthUI.uIScale.y; AddHearts(newNumberOfHearts); blinkTimer = damage.damageBlinkSpeed + 0.02f; damageTimeoutTimer = damage.enemyDamage.secondsToStayInvincibleAfterBeingHurt + 0.02f; if (respawn.respawnAtStartLocationAndRotation) { respawnLocation = ((Component)this).transform.position; respawnRotation = ((Component)this).transform.rotation; } else { respawnLocation = respawn.respawnLocation; respawnRotation = Quaternion.Euler(respawn.respawnRotation.x, respawn.respawnRotation.y, respawn.respawnRotation.z); } lastYPos = ((Component)this).transform.position.y; } private void Update() { //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_0054: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) //IL_005a: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_00b2: Unknown result type (might be due to invalid IL or missing references) //IL_00bd: Unknown result type (might be due to invalid IL or missing references) //IL_00c2: Unknown result type (might be due to invalid IL or missing references) //IL_00c7: Unknown result type (might be due to invalid IL or missing references) //IL_00ca: Unknown result type (might be due to invalid IL or missing references) //IL_00d2: Unknown result type (might be due to invalid IL or missing references) //IL_00ed: Unknown result type (might be due to invalid IL or missing references) //IL_00f2: Unknown result type (might be due to invalid IL or missing references) //IL_0101: Unknown result type (might be due to invalid IL or missing references) //IL_0106: Unknown result type (might be due to invalid IL or missing references) //IL_012a: Unknown result type (might be due to invalid IL or missing references) //IL_012f: Unknown result type (might be due to invalid IL or missing references) //IL_013e: Unknown result type (might be due to invalid IL or missing references) //IL_0143: Unknown result type (might be due to invalid IL or missing references) //IL_0173: Unknown result type (might be due to invalid IL or missing references) //IL_0178: Unknown result type (might be due to invalid IL or missing references) //IL_0187: Unknown result type (might be due to invalid IL or missing references) //IL_018c: Unknown result type (might be due to invalid IL or missing references) //IL_04ae: Unknown result type (might be due to invalid IL or missing references) //IL_04b3: Unknown result type (might be due to invalid IL or missing references) //IL_04e9: Unknown result type (might be due to invalid IL or missing references) //IL_04ee: Unknown result type (might be due to invalid IL or missing references) renderers = ((Component)((Component)this).transform).GetComponentsInChildren(true); GameObject[] array = GameObject.FindGameObjectsWithTag(damage.enemyDamage.enemyTag); float num = float.PositiveInfinity; Vector3 position = ((Component)this).transform.position; GameObject[] array2 = array; foreach (GameObject val in array2) { Vector3 val2 = val.transform.position - position; float sqrMagnitude = ((Vector3)(ref val2)).sqrMagnitude; if (sqrMagnitude < num) { closest = val; num = sqrMagnitude; } } if ((Object)(object)closest == (Object)null) { return; } Vector3 val3 = closest.transform.position - ((Component)this).transform.position; angle = Vector3.Angle(val3, ((Component)this).transform.forward); dist = Mathf.Sqrt(Mathf.Pow(Mathf.Abs(closest.transform.position.x - ((Component)this).transform.position.x), 2f) + Mathf.Pow(Mathf.Abs(closest.transform.position.z - ((Component)this).transform.position.z), 2f)); distY = Mathf.Sqrt(Mathf.Pow(Mathf.Abs(closest.transform.position.y - ((Component)this).transform.position.y), 2f)); if (angle <= 60f && dist <= 3f && distY <= 5f) { invincible = true; } else { invincible = false; } if (damageTimeoutTimer > damage.enemyDamage.secondsToStayInvincibleAfterBeingHurt) { Renderer[] array3 = renderers; foreach (Renderer val4 in array3) { val4.enabled = true; canDamage = true; canDamage2 = true; } } if (invincible) { if (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Component)this).GetComponent().attackTimer <= damage.enemyDamage.secondsToStayInvincibleAfterAttacking) { canDamage2 = false; } } else { canDamage2 = true; } if (applyDamage && canDamage && enemyAttackPower != 0) { ApplyDamage(); applyDamage = false; } damageTimer += 0.02f; if (damageTimer >= damage.enemyDamage.secondsToStayInvincibleAfterBeingHurt) { canDamage = true; } if (blink && damageTimeoutTimer >= damage.enemyDamage.secondsToStayInvincibleAfterBeingHurt && enemyAttackPower != 0) { BlinkOut(); blink = false; } if (blinkTimer > damage.damageBlinkSpeed) { blinkTimer = 0f; } if (damage.damageBlinkSpeed > 0f) { if (blinkTimer == 0f && damageTimeoutTimer <= damage.enemyDamage.secondsToStayInvincibleAfterBeingHurt - 0.2f) { Renderer[] array4 = renderers; foreach (Renderer val5 in array4) { if (val5.enabled) { val5.enabled = false; } else if (!val5.enabled) { val5.enabled = true; } } } else if (damageTimeoutTimer > damage.enemyDamage.secondsToStayInvincibleAfterBeingHurt - 0.2f) { Renderer[] array5 = renderers; foreach (Renderer val6 in array5) { val6.enabled = true; } } } blinkTimer += 0.02f; damageTimeoutTimer += 0.02f; if (!respawn.respawnAtStartLocationAndRotation) { respawnLocation = respawn.respawnLocation; respawnRotation = Quaternion.Euler(respawn.respawnRotation.x, respawn.respawnRotation.y, respawn.respawnRotation.z); } } private void FixedUpdate() { //IL_0075: Unknown result type (might be due to invalid IL or missing references) //IL_0086: Unknown result type (might be due to invalid IL or missing references) //IL_00e3: Unknown result type (might be due to invalid IL or missing references) //IL_00e8: Unknown result type (might be due to invalid IL or missing references) //IL_00c2: Unknown result type (might be due to invalid IL or missing references) //IL_00c7: Unknown result type (might be due to invalid IL or missing references) //IL_03f7: Unknown result type (might be due to invalid IL or missing references) //IL_043c: Unknown result type (might be due to invalid IL or missing references) //IL_0466: Unknown result type (might be due to invalid IL or missing references) //IL_05ff: Unknown result type (might be due to invalid IL or missing references) //IL_058d: Unknown result type (might be due to invalid IL or missing references) //IL_0597: Expected O, but got Unknown if (currentHealth <= 0) { ((MonoBehaviour)this).Invoke("Reload", 0.25f); if (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Component)this).GetComponent().enabled) { disableCollider = true; } else { disableCollider = false; } if (disableCollider) { ((Component)this).GetComponent().enabled = false; } ((Component)this).transform.position = respawnLocation; ((Component)this).transform.rotation = respawnRotation; if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { float num = ((!(respawn.respawnRotation.y > 180f)) ? ((Component)this).transform.eulerAngles.y : (((Component)this).transform.eulerAngles.y - 360f)); if (((Component)this).GetComponent().movement.sideScrolling.lockMovementOnXAxis && !((Component)this).GetComponent().movement.sideScrolling.lockMovementOnZAxis) { if (num >= 90f) { ((Component)this).GetComponent().horizontalValue = -1f; if (((Component)this).GetComponent().movement.sideScrolling.rotateInwards) { ((Component)this).GetComponent().bodyRotation = 180.001f; } else { ((Component)this).GetComponent().bodyRotation = 179.999f; } } else { ((Component)this).GetComponent().horizontalValue = 1f; if (((Component)this).GetComponent().movement.sideScrolling.rotateInwards) { ((Component)this).GetComponent().bodyRotation = -0.001f; } else { ((Component)this).GetComponent().bodyRotation = 0.001f; } } } else if (((Component)this).GetComponent().movement.sideScrolling.lockMovementOnZAxis && !((Component)this).GetComponent().movement.sideScrolling.lockMovementOnXAxis) { if (num >= 0f) { ((Component)this).GetComponent().horizontalValue = 1f; if (((Component)this).GetComponent().movement.sideScrolling.rotateInwards) { ((Component)this).GetComponent().bodyRotation = 90.001f; } else { ((Component)this).GetComponent().bodyRotation = 89.999f; } } else { ((Component)this).GetComponent().horizontalValue = -1f; if (((Component)this).GetComponent().movement.sideScrolling.rotateInwards) { ((Component)this).GetComponent().bodyRotation = -90.001f; } else { ((Component)this).GetComponent().bodyRotation = -89.999f; } } } } if (disableCollider) { ((Component)this).GetComponent().enabled = true; } } if (health.numberOfHearts >= 0 && health.maxHeartsPerRow > 0) { newNumberOfHearts = health.numberOfHearts; } else { newNumberOfHearts = 0; } for (int i = 0; i < hearts.Count; i++) { int num2 = ((health.maxHeartsPerRow <= 0) ? Mathf.FloorToInt(0f) : Mathf.FloorToInt((float)(i / health.maxHeartsPerRow))); int num3 = i - num2 * health.maxHeartsPerRow; if (Object.op_Implicit((Object)(object)hearts[i].GetComponent())) { hearts[i].GetComponent().anchoredPosition = new Vector2((float)num3 * spacingX * health.healthUI.uISpacing.x, (float)num2 * spacingY * health.healthUI.uISpacing.y); hearts[i].GetComponent().sizeDelta = new Vector2(health.healthUI.uIScale.x, health.healthUI.uIScale.y); ((Transform)hearts[i].GetComponent()).localScale = new Vector3(1f, 1f, 1f); if (health.healthUI.overlayHearts) { hearts[i].transform.SetSiblingIndex(i); } else { hearts[i].transform.SetSiblingIndex(0); } } if (i + 1 > newNumberOfHearts) { Object.Destroy((Object)(object)hearts[i]); hearts.RemoveAt(i); } } if (currentHealth > newNumberOfHearts * 40) { currentHealth = newNumberOfHearts * 40; } if (newNumberOfHearts > lastNumberOfHearts) { AddHearts(newNumberOfHearts - lastNumberOfHearts); } lastNumberOfHearts = newNumberOfHearts; if ((Object)(object)canvas == (Object)null) { canvas = GameObject.Find("Canvas"); } if ((Object)(object)healthHolder == (Object)null) { healthHolder = new GameObject(); healthHolder.AddComponent(); ((Object)healthHolder.gameObject).name = "PlayerHealth"; healthHolder.gameObject.layer = 5; } healthHolder.transform.SetParent(canvas.transform); ((Transform)healthHolder.GetComponent()).localScale = new Vector3(1f, 1f, 1f); AutoAnchor(); healthHolder.transform.SetSiblingIndex((int)health.healthUI.uIPosition.z); if (health.regainHealthOverTime) { if (currentHealth > 0 && currentHealth < newNumberOfHearts * 40) { regainHealthTimer += 0.02f; } else { regainHealthTimer = 0f; } if (regainHealthTimer > health.timeNeededToRegainHealth) { modifyHealth(health.quartersOfHealthToRegain); regainHealthTimer = 0f; } } else { regainHealthTimer = 0f; } if (damage.fallDamage.receiveFallDamage) { FallingDamage(); } } private void LateUpdate() { //IL_00a9: Unknown result type (might be due to invalid IL or missing references) //IL_0037: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Expected O, but got Unknown //IL_019b: Unknown result type (might be due to invalid IL or missing references) //IL_01e0: Unknown result type (might be due to invalid IL or missing references) //IL_020a: Unknown result type (might be due to invalid IL or missing references) if ((Object)(object)canvas == (Object)null) { canvas = GameObject.Find("Canvas"); } if ((Object)(object)healthHolder == (Object)null) { healthHolder = new GameObject(); healthHolder.AddComponent(); ((Object)healthHolder.gameObject).name = "PlayerHealth"; healthHolder.gameObject.layer = 5; } healthHolder.transform.SetParent(canvas.transform); ((Transform)healthHolder.GetComponent()).localScale = new Vector3(1f, 1f, 1f); AutoAnchor(); healthHolder.transform.SetSiblingIndex((int)health.healthUI.uIPosition.z); for (int i = 0; i < hearts.Count; i++) { int num = ((health.maxHeartsPerRow <= 0) ? Mathf.FloorToInt(0f) : Mathf.FloorToInt((float)(i / health.maxHeartsPerRow))); int num2 = i - num * health.maxHeartsPerRow; if (Object.op_Implicit((Object)(object)hearts[i].GetComponent())) { hearts[i].GetComponent().anchoredPosition = new Vector2((float)num2 * spacingX * health.healthUI.uISpacing.x, (float)num * spacingY * health.healthUI.uISpacing.y); hearts[i].GetComponent().sizeDelta = new Vector2(health.healthUI.uIScale.x, health.healthUI.uIScale.y); ((Transform)hearts[i].GetComponent()).localScale = new Vector3(1f, 1f, 1f); if (health.healthUI.overlayHearts) { hearts[i].transform.SetSiblingIndex(i); } else { hearts[i].transform.SetSiblingIndex(0); } } if (i + 1 > newNumberOfHearts) { Object.Destroy((Object)(object)hearts[i]); hearts.RemoveAt(i); } } } private void FallingDamage() { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_0015: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_0022: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_0056: Unknown result type (might be due to invalid IL or missing references) //IL_006a: Unknown result type (might be due to invalid IL or missing references) //IL_0071: Unknown result type (might be due to invalid IL or missing references) //IL_007b: Unknown result type (might be due to invalid IL or missing references) //IL_0080: Unknown result type (might be due to invalid IL or missing references) //IL_0085: Unknown result type (might be due to invalid IL or missing references) //IL_00a5: Unknown result type (might be due to invalid IL or missing references) //IL_00b9: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00ca: Unknown result type (might be due to invalid IL or missing references) //IL_00cf: Unknown result type (might be due to invalid IL or missing references) //IL_00d4: Unknown result type (might be due to invalid IL or missing references) //IL_00f4: Unknown result type (might be due to invalid IL or missing references) //IL_01f5: Unknown result type (might be due to invalid IL or missing references) //IL_01fa: Unknown result type (might be due to invalid IL or missing references) //IL_0108: Unknown result type (might be due to invalid IL or missing references) //IL_010f: Unknown result type (might be due to invalid IL or missing references) //IL_0119: Unknown result type (might be due to invalid IL or missing references) //IL_011e: Unknown result type (might be due to invalid IL or missing references) //IL_0123: Unknown result type (might be due to invalid IL or missing references) //IL_0143: Unknown result type (might be due to invalid IL or missing references) //IL_023c: Unknown result type (might be due to invalid IL or missing references) //IL_0241: Unknown result type (might be due to invalid IL or missing references) //IL_0157: Unknown result type (might be due to invalid IL or missing references) //IL_015e: Unknown result type (might be due to invalid IL or missing references) //IL_0168: Unknown result type (might be due to invalid IL or missing references) //IL_016d: Unknown result type (might be due to invalid IL or missing references) //IL_0172: Unknown result type (might be due to invalid IL or missing references) //IL_0192: Unknown result type (might be due to invalid IL or missing references) //IL_0291: Unknown result type (might be due to invalid IL or missing references) //IL_0296: Unknown result type (might be due to invalid IL or missing references) Vector3 position = ((Component)this).transform.position; Bounds bounds = ((Component)this).GetComponent().bounds; position.y = ((Bounds)(ref bounds)).min.y + 0.1f; if (Physics.Raycast(position, Vector3.down, damage.fallDamage.maxGroundedDistance, LayerMask.op_Implicit(damage.fallDamage.collisionLayers)) || Physics.Raycast(position - ((Component)this).transform.forward / 10f, Vector3.down, damage.fallDamage.maxGroundedDistance, LayerMask.op_Implicit(damage.fallDamage.collisionLayers)) || Physics.Raycast(position + ((Component)this).transform.forward / 10f, Vector3.down, damage.fallDamage.maxGroundedDistance, LayerMask.op_Implicit(damage.fallDamage.collisionLayers)) || Physics.Raycast(position - ((Component)this).transform.right / 10f, Vector3.down, damage.fallDamage.maxGroundedDistance, LayerMask.op_Implicit(damage.fallDamage.collisionLayers)) || Physics.Raycast(position + ((Component)this).transform.right / 10f, Vector3.down, damage.fallDamage.maxGroundedDistance, LayerMask.op_Implicit(damage.fallDamage.collisionLayers))) { if (!grounded && fallDamageToReceive > 0) { modifyHealth(-fallDamageToReceive); BlinkOut(); } grounded = true; } else { grounded = false; } if (lastYPos - ((Component)this).transform.position.y >= damage.fallDamage.minimumFallSpeedToReceiveDamage / 10f) { fallDamageToReceive = damage.fallDamage.minimumReceivableDamage + (int)((lastYPos - ((Component)this).transform.position.y - damage.fallDamage.minimumFallSpeedToReceiveDamage / 10f) * (float)damage.fallDamage.speedDamageMultiple); } else { fallDamageToReceive = 0; } lastYPos = ((Component)this).transform.position.y; } private void Reload() { if (((Behaviour)this).enabled) { currentHealth = newNumberOfHearts * 40; modifyHealth(1); } } public void AddHearts(int n) { //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_002e: Expected O, but got Unknown //IL_0087: Unknown result type (might be due to invalid IL or missing references) //IL_008d: Expected O, but got Unknown //IL_00a2: Unknown result type (might be due to invalid IL or missing references) //IL_00bf: Unknown result type (might be due to invalid IL or missing references) //IL_00c4: Unknown result type (might be due to invalid IL or missing references) //IL_01b2: Unknown result type (might be due to invalid IL or missing references) //IL_01ec: Unknown result type (might be due to invalid IL or missing references) //IL_020b: Unknown result type (might be due to invalid IL or missing references) if (!((Behaviour)this).enabled) { return; } if ((Object)(object)healthHolder == (Object)null) { healthHolder = new GameObject(); healthHolder.AddComponent(); ((Object)healthHolder.gameObject).name = "PlayerHealth"; healthHolder.gameObject.layer = 5; } if (newNumberOfHearts >= 0 && health.maxHeartsPerRow > 0) { for (int i = 0; i < n; i++) { GameObject val = new GameObject(); val.transform.localScale = new Vector3(0f, 0f, 0f); val.AddComponent(); Transform transform = Object.Instantiate(val, healthHolder.transform.position, Quaternion.identity).transform; ((Object)((Component)transform).gameObject).name = "Heart" + (i + 1); ((Component)transform).gameObject.layer = 5; ((Component)transform).transform.SetParent(healthHolder.transform); Object.Destroy((Object)(object)val); int num = ((health.maxHeartsPerRow <= 0) ? Mathf.FloorToInt(0f) : Mathf.FloorToInt((float)(i / health.maxHeartsPerRow))); int num2 = hearts.Count - num * health.maxHeartsPerRow; ((Component)transform).GetComponent().anchoredPosition = new Vector2((float)num2 * spacingX * health.healthUI.uISpacing.x, (float)num * spacingY * health.healthUI.uISpacing.y); ((Component)transform).GetComponent().sizeDelta = new Vector2(health.healthUI.uIScale.x, health.healthUI.uIScale.y); ((Transform)((Component)transform).GetComponent()).localScale = new Vector3(1f, 1f, 1f); ((Component)transform).GetComponent().sprite = health.healthUI.heartSprites[0]; hearts.Add(((Component)transform).gameObject); } } currentHealth = newNumberOfHearts * 40; UpdateHearts(); } public void modifyHealth(int amount) { if (((Behaviour)this).enabled) { currentHealth += 10 * amount; regainHealthTimer = 0f; UpdateHearts(); } } private void UpdateHearts() { if (!((Behaviour)this).enabled) { return; } bool flag = false; int num = 0; foreach (GameObject heart in hearts) { if (flag) { heart.GetComponent().sprite = health.healthUI.heartSprites[0]; continue; } num++; if (currentHealth >= num * 40) { heart.GetComponent().sprite = health.healthUI.heartSprites[health.healthUI.heartSprites.Length - 1]; continue; } int num2 = 40 - (40 * num - currentHealth); int num3 = 40 / health.healthUI.heartSprites.Length; int num4 = ((num2 / num3 >= 0) ? (num2 / num3) : 0); if (num4 == 0 && num2 > 0) { num4 = 1; } heart.GetComponent().sprite = health.healthUI.heartSprites[num4]; flag = true; } } private void OnGUI() { //IL_0030: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_00ba: Unknown result type (might be due to invalid IL or missing references) //IL_011d: Unknown result type (might be due to invalid IL or missing references) if (health.debugHealth) { if (GUI.Button(new Rect((float)Screen.width / 1.5f, (float)(Screen.height / 4), 100f, 25f), "Regain Health")) { modifyHealth(1); } if (GUI.Button(new Rect((float)Screen.width / 1.5f, (float)(Screen.height / 4 + Screen.height / 10), 100f, 25f), "Take Damage")) { modifyHealth(-1); } if (GUI.Button(new Rect((float)Screen.width / 1.5f, (float)(Screen.height / 4 + Screen.height / 10 * 2), 100f, 25f), "Add Heart")) { health.numberOfHearts++; currentHealth = health.numberOfHearts; } if (GUI.Button(new Rect((float)Screen.width / 1.5f, (float)(Screen.height / 4 + Screen.height / 10 * 3), 100f, 25f), "Remove Heart") && newNumberOfHearts != 0) { health.numberOfHearts--; } } } public void RegainHealth() { if (((Behaviour)this).enabled) { modifyHealth(quartersOfHealthToRegain); } } public void LoseHealth() { if (((Behaviour)this).enabled) { modifyHealth(-quartersOfHealthToLose); } } public void ApplyDamage() { if (((Behaviour)this).enabled) { modifyHealth(-enemyAttackPower); canDamage = false; damageTimer = 0f; } } public void BlinkOut() { if (((Behaviour)this).enabled) { blinkTimer = 0f; damageTimeoutTimer = 0f; } } public void AutoAnchor() { //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_0026: Unknown result type (might be due to invalid IL or missing references) //IL_0028: Unknown result type (might be due to invalid IL or missing references) //IL_002d: Unknown result type (might be due to invalid IL or missing references) //IL_004b: Unknown result type (might be due to invalid IL or missing references) //IL_0050: Unknown result type (might be due to invalid IL or missing references) //IL_0053: Unknown result type (might be due to invalid IL or missing references) //IL_0058: Unknown result type (might be due to invalid IL or missing references) //IL_005b: Unknown result type (might be due to invalid IL or missing references) //IL_0060: Unknown result type (might be due to invalid IL or missing references) //IL_006c: Unknown result type (might be due to invalid IL or missing references) //IL_0071: Unknown result type (might be due to invalid IL or missing references) //IL_00a1: Unknown result type (might be due to invalid IL or missing references) //IL_00a6: Unknown result type (might be due to invalid IL or missing references) //IL_00d8: Unknown result type (might be due to invalid IL or missing references) //IL_0113: Unknown result type (might be due to invalid IL or missing references) //IL_0118: Unknown result type (might be due to invalid IL or missing references) //IL_0123: Unknown result type (might be due to invalid IL or missing references) //IL_0135: Unknown result type (might be due to invalid IL or missing references) //IL_014a: Unknown result type (might be due to invalid IL or missing references) //IL_015f: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) RectTransform component = healthHolder.GetComponent(); RectTransform component2 = canvas.GetComponent(); Vector2 offsetMin = component.offsetMin; Vector2 offsetMax = component.offsetMax; if (anchorMin == Vector2.zero) { anchorMin = component.anchorMin; } Vector2 val = anchorMin; Vector2 anchorMax = component.anchorMax; Rect rect = component2.rect; float width = ((Rect)(ref rect)).width; Rect rect2 = component2.rect; float height = ((Rect)(ref rect2)).height; anchorMin = new Vector2(val.x + offsetMin.x / width, val.y + offsetMin.y / height); Vector2 anchorMax2 = default(Vector2); ((Vector2)(ref anchorMax2))..ctor(anchorMax.x + offsetMax.x / width, anchorMax.y + offsetMax.y / height); component.anchorMin = anchorMin + new Vector2(health.healthUI.uIPosition.x / 100f, health.healthUI.uIPosition.y / 100f); component.anchorMax = anchorMax2; component.offsetMin = new Vector2(0f, 0f); component.offsetMax = new Vector2(0f, 0f); component.pivot = new Vector2(0.5f, 0.5f); } private void OnControllerColliderHit(ControllerColliderHit hit) { if (!((Behaviour)this).enabled) { return; } for (int i = 0; i < healthItems.Length; i++) { if (hit.gameObject.tag == healthItems[i].healthItemTag) { quartersOfHealthToRegain = healthItems[i].quartersOfHealthToRegain; RegainHealth(); Object.Destroy((Object)(object)hit.gameObject); } } for (int j = 0; j < damageItems.Length; j++) { if (hit.gameObject.tag == damageItems[j].damageItemTag && canDamage && canDamage2) { quartersOfHealthToLose = damageItems[j].quartersOfHealthToLose; LoseHealth(); blinkTimer = 0f; damageTimeoutTimer = 0f; canDamage = false; damageTimer = 0f; blink = true; } } } private void OnCollisionStay(Collision hit) { if (!((Behaviour)this).enabled) { return; } for (int i = 0; i < healthItems.Length; i++) { if (hit.gameObject.tag == healthItems[i].healthItemTag) { quartersOfHealthToRegain = healthItems[i].quartersOfHealthToRegain; RegainHealth(); Object.Destroy((Object)(object)hit.gameObject); } } for (int j = 0; j < damageItems.Length; j++) { if (hit.gameObject.tag == damageItems[j].damageItemTag && canDamage && canDamage2) { quartersOfHealthToLose = damageItems[j].quartersOfHealthToLose; LoseHealth(); blinkTimer = 0f; damageTimeoutTimer = 0f; canDamage = false; damageTimer = 0f; blink = true; } } } private void OnTriggerStay(Collider hit) { if (!((Behaviour)this).enabled) { return; } for (int i = 0; i < healthItems.Length; i++) { if (((Component)hit).gameObject.tag == healthItems[i].healthItemTag) { quartersOfHealthToRegain = healthItems[i].quartersOfHealthToRegain; RegainHealth(); Object.Destroy((Object)(object)((Component)hit).gameObject); } } for (int j = 0; j < damageItems.Length; j++) { if (((Component)hit).gameObject.tag == damageItems[j].damageItemTag && canDamage && canDamage2) { quartersOfHealthToLose = damageItems[j].quartersOfHealthToLose; LoseHealth(); blinkTimer = 0f; damageTimeoutTimer = 0f; canDamage = false; damageTimer = 0f; blink = true; } } } private void OnEnable() { if ((Object)(object)healthHolder != (Object)null) { healthHolder.SetActive(true); } } private void OnDisable() { if ((Object)(object)healthHolder != (Object)null) { healthHolder.SetActive(false); } } } public class ItemManager : MonoBehaviour { [Serializable] public class ItemList { public string itemTag = "Coin"; public Sprite itemUI; public Vector3 uIPosition = new Vector3(7f, 163f, 1f); public Vector2 uIScale = new Vector2(60f, 60f); public Font font; public int fontSize = 72; public int outlineSize = 19; public Color fontColor = Color.white; public Color outlineColor = Color.black; public string itemCountPrefix; public string itemCountSuffix; public bool useItemLimit = true; public int maximumItemLimit = 99; public bool addZerosBeforeItemCount = true; public Vector2 uITextPosition = Vector2.op_Implicit(new Vector3(82f, -3f)); [HideInInspector] public int currentValue; [HideInInspector] public string itemCount; [HideInInspector] public GameObject item; [HideInInspector] public GameObject text; [HideInInspector] public float textValueX; [HideInInspector] public float textValueY; [HideInInspector] public float textValueX2; [HideInInspector] public float textValueY2; [HideInInspector] public Vector3 textPos; [HideInInspector] public GameObject itemHolder; [HideInInspector] public Vector2 anchorMin; } public Transform playerCamera; public ItemList[] itemList = new ItemList[1]; private GameObject canvas; private void Start() { if ((Object)(object)playerCamera == (Object)null && (Object)(object)((Component)Camera.main).transform != (Object)null) { playerCamera = ((Component)Camera.main).transform; } } private void FixedUpdate() { //IL_0202: Unknown result type (might be due to invalid IL or missing references) //IL_015b: Unknown result type (might be due to invalid IL or missing references) //IL_0165: Expected O, but got Unknown //IL_042c: Unknown result type (might be due to invalid IL or missing references) //IL_0660: Unknown result type (might be due to invalid IL or missing references) //IL_070f: Unknown result type (might be due to invalid IL or missing references) //IL_0753: Unknown result type (might be due to invalid IL or missing references) //IL_0777: Unknown result type (might be due to invalid IL or missing references) //IL_027b: Unknown result type (might be due to invalid IL or missing references) //IL_0282: Expected O, but got Unknown //IL_0298: Unknown result type (might be due to invalid IL or missing references) //IL_02d8: Unknown result type (might be due to invalid IL or missing references) //IL_02dd: Unknown result type (might be due to invalid IL or missing references) //IL_0391: Unknown result type (might be due to invalid IL or missing references) //IL_03bc: Unknown result type (might be due to invalid IL or missing references) //IL_03d8: Unknown result type (might be due to invalid IL or missing references) //IL_04cc: Unknown result type (might be due to invalid IL or missing references) //IL_04d3: Expected O, but got Unknown //IL_04e9: Unknown result type (might be due to invalid IL or missing references) //IL_0518: Unknown result type (might be due to invalid IL or missing references) //IL_051d: Unknown result type (might be due to invalid IL or missing references) //IL_05bc: Unknown result type (might be due to invalid IL or missing references) //IL_05e0: Unknown result type (might be due to invalid IL or missing references) if ((Object)(object)canvas == (Object)null) { canvas = GameObject.Find("Canvas"); } for (int i = 0; i < itemList.Length; i++) { if (itemList[i].useItemLimit && itemList[i].currentValue > itemList[i].maximumItemLimit) { itemList[i].currentValue = itemList[i].maximumItemLimit; } string text = itemList[i].maximumItemLimit.ToString(); int length = text.Length; string text2 = itemList[i].currentValue.ToString(); int num = length - text2.Length; string text3 = ""; for (int j = 0; j < num; j++) { text3 += "0"; } if (itemList[i].useItemLimit && itemList[i].addZerosBeforeItemCount) { itemList[i].itemCount = text3 + text2; } else { itemList[i].itemCount = text2; } if ((Object)(object)itemList[i].itemHolder == (Object)null) { itemList[i].itemHolder = new GameObject(); itemList[i].itemHolder.AddComponent(); ((Object)itemList[i].itemHolder.gameObject).name = itemList[i].itemTag + "Holder"; itemList[i].itemHolder.gameObject.layer = 5; } itemList[i].itemHolder.transform.SetParent(canvas.transform); ((Transform)itemList[i].itemHolder.GetComponent()).localScale = new Vector3(1f, 1f, 1f); if (!((Object)(object)itemList[i].itemHolder != (Object)null)) { continue; } if ((Object)(object)itemList[i].item == (Object)null) { if ((Object)(object)itemList[i].itemUI != (Object)null && itemList[i].itemHolder.transform.childCount < itemList.Length) { GameObject val = new GameObject(); val.transform.localScale = new Vector3(0f, 0f, 0f); val.AddComponent(); val.GetComponent().sprite = itemList[i].itemUI; itemList[i].item = Object.Instantiate(val.gameObject, ((Component)this).transform.position, Quaternion.identity); ((Object)itemList[i].item.gameObject).name = itemList[i].itemTag + "Image"; itemList[i].item.gameObject.layer = 5; itemList[i].item.transform.SetParent(itemList[i].itemHolder.transform); itemList[i].item.GetComponent().sizeDelta = new Vector2(itemList[i].uIScale.x, itemList[i].uIScale.y); ((Transform)itemList[i].item.GetComponent()).localScale = new Vector3(1f, 1f, 1f); itemList[i].item.GetComponent().anchoredPosition = Vector2.zero; Object.Destroy((Object)(object)val.gameObject); } } else { itemList[i].item.GetComponent().sizeDelta = new Vector2(itemList[i].uIScale.x, itemList[i].uIScale.y); itemList[i].item.GetComponent().sprite = itemList[i].itemUI; itemList[i].itemHolder.transform.SetSiblingIndex((int)itemList[i].uIPosition.z); AutoAnchor(i); } if ((Object)(object)itemList[i].text == (Object)null) { if (itemList[i].itemHolder.transform.childCount < itemList.Length + 1) { GameObject val2 = new GameObject(); val2.transform.localScale = new Vector3(0f, 0f, 0f); val2.AddComponent(); val2.AddComponent(); itemList[i].text = Object.Instantiate(val2.gameObject, ((Component)this).transform.position, Quaternion.identity); ((Object)itemList[i].text.gameObject).name = itemList[i].itemTag + "Text"; itemList[i].text.gameObject.layer = 5; itemList[i].text.transform.SetParent(itemList[i].itemHolder.transform); ((Transform)itemList[i].text.GetComponent()).localScale = new Vector3(1f, 1f, 1f); itemList[i].text.GetComponent().anchoredPosition = itemList[i].uITextPosition; Object.Destroy((Object)(object)val2.gameObject); } } else { itemList[i].text.GetComponent().font = itemList[i].font; itemList[i].text.GetComponent().fontSize = itemList[i].fontSize; ((Graphic)itemList[i].text.GetComponent()).color = itemList[i].fontColor; itemList[i].text.GetComponent().text = itemList[i].itemCountPrefix + itemList[i].itemCount + itemList[i].itemCountSuffix; itemList[i].text.GetComponent().alignment = (TextAnchor)3; itemList[i].text.GetComponent().horizontalOverflow = (HorizontalWrapMode)1; itemList[i].text.GetComponent().verticalOverflow = (VerticalWrapMode)1; ((Shadow)itemList[i].text.GetComponent()).effectColor = itemList[i].outlineColor; ((Shadow)itemList[i].text.GetComponent()).effectDistance = new Vector2((float)itemList[i].outlineSize / 10f, (float)itemList[i].outlineSize / 10f); itemList[i].text.GetComponent().anchoredPosition = itemList[i].uITextPosition; } } } private void LateUpdate() { //IL_00f4: Unknown result type (might be due to invalid IL or missing references) //IL_004d: Unknown result type (might be due to invalid IL or missing references) //IL_0057: Expected O, but got Unknown //IL_0318: Unknown result type (might be due to invalid IL or missing references) //IL_0546: Unknown result type (might be due to invalid IL or missing references) //IL_05f5: Unknown result type (might be due to invalid IL or missing references) //IL_0639: Unknown result type (might be due to invalid IL or missing references) //IL_065d: Unknown result type (might be due to invalid IL or missing references) //IL_016d: Unknown result type (might be due to invalid IL or missing references) //IL_0173: Expected O, but got Unknown //IL_0188: Unknown result type (might be due to invalid IL or missing references) //IL_01c5: Unknown result type (might be due to invalid IL or missing references) //IL_01ca: Unknown result type (might be due to invalid IL or missing references) //IL_027e: Unknown result type (might be due to invalid IL or missing references) //IL_02a9: Unknown result type (might be due to invalid IL or missing references) //IL_02c5: Unknown result type (might be due to invalid IL or missing references) //IL_03b8: Unknown result type (might be due to invalid IL or missing references) //IL_03be: Expected O, but got Unknown //IL_03d3: Unknown result type (might be due to invalid IL or missing references) //IL_03ff: Unknown result type (might be due to invalid IL or missing references) //IL_0404: Unknown result type (might be due to invalid IL or missing references) //IL_04a3: Unknown result type (might be due to invalid IL or missing references) //IL_04c7: Unknown result type (might be due to invalid IL or missing references) if ((Object)(object)canvas == (Object)null) { canvas = GameObject.Find("Canvas"); } for (int i = 0; i < itemList.Length; i++) { if ((Object)(object)itemList[i].itemHolder == (Object)null) { itemList[i].itemHolder = new GameObject(); itemList[i].itemHolder.AddComponent(); ((Object)itemList[i].itemHolder.gameObject).name = itemList[i].itemTag + "Holder"; itemList[i].itemHolder.gameObject.layer = 5; } itemList[i].itemHolder.transform.SetParent(canvas.transform); ((Transform)itemList[i].itemHolder.GetComponent()).localScale = new Vector3(1f, 1f, 1f); if (!((Object)(object)itemList[i].itemHolder != (Object)null)) { continue; } if ((Object)(object)itemList[i].item == (Object)null) { if ((Object)(object)itemList[i].itemUI != (Object)null && itemList[i].itemHolder.transform.childCount < itemList.Length) { GameObject val = new GameObject(); val.transform.localScale = new Vector3(0f, 0f, 0f); val.AddComponent(); val.GetComponent().sprite = itemList[i].itemUI; itemList[i].item = Object.Instantiate(val.gameObject, ((Component)this).transform.position, Quaternion.identity); ((Object)itemList[i].item.gameObject).name = itemList[i].itemTag + "Image"; itemList[i].item.gameObject.layer = 5; itemList[i].item.transform.SetParent(itemList[i].itemHolder.transform); itemList[i].item.GetComponent().sizeDelta = new Vector2(itemList[i].uIScale.x, itemList[i].uIScale.y); ((Transform)itemList[i].item.GetComponent()).localScale = new Vector3(1f, 1f, 1f); itemList[i].item.GetComponent().anchoredPosition = Vector2.zero; Object.Destroy((Object)(object)val.gameObject); } } else { itemList[i].item.GetComponent().sizeDelta = new Vector2(itemList[i].uIScale.x, itemList[i].uIScale.y); itemList[i].item.GetComponent().sprite = itemList[i].itemUI; itemList[i].itemHolder.transform.SetSiblingIndex((int)itemList[i].uIPosition.z); AutoAnchor(i); } if ((Object)(object)itemList[i].text == (Object)null) { if (itemList[i].itemHolder.transform.childCount < itemList.Length + 1) { GameObject val2 = new GameObject(); val2.transform.localScale = new Vector3(0f, 0f, 0f); val2.AddComponent(); val2.AddComponent(); itemList[i].text = Object.Instantiate(val2.gameObject, ((Component)this).transform.position, Quaternion.identity); ((Object)itemList[i].text.gameObject).name = itemList[i].itemTag + "Text"; itemList[i].text.gameObject.layer = 5; itemList[i].text.transform.SetParent(itemList[i].itemHolder.transform); ((Transform)itemList[i].text.GetComponent()).localScale = new Vector3(1f, 1f, 1f); itemList[i].text.GetComponent().anchoredPosition = itemList[i].uITextPosition; Object.Destroy((Object)(object)val2.gameObject); } } else { itemList[i].text.GetComponent().font = itemList[i].font; itemList[i].text.GetComponent().fontSize = itemList[i].fontSize; ((Graphic)itemList[i].text.GetComponent()).color = itemList[i].fontColor; itemList[i].text.GetComponent().text = itemList[i].itemCountPrefix + itemList[i].itemCount + itemList[i].itemCountSuffix; itemList[i].text.GetComponent().alignment = (TextAnchor)3; itemList[i].text.GetComponent().horizontalOverflow = (HorizontalWrapMode)1; itemList[i].text.GetComponent().verticalOverflow = (VerticalWrapMode)1; ((Shadow)itemList[i].text.GetComponent()).effectColor = itemList[i].outlineColor; ((Shadow)itemList[i].text.GetComponent()).effectDistance = new Vector2((float)itemList[i].outlineSize / 10f, (float)itemList[i].outlineSize / 10f); itemList[i].text.GetComponent().anchoredPosition = itemList[i].uITextPosition; } } } public void AutoAnchor(int i) { //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_0026: Unknown result type (might be due to invalid IL or missing references) //IL_0028: Unknown result type (might be due to invalid IL or missing references) //IL_002d: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0067: Unknown result type (might be due to invalid IL or missing references) //IL_006c: Unknown result type (might be due to invalid IL or missing references) //IL_006f: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_0077: Unknown result type (might be due to invalid IL or missing references) //IL_007c: Unknown result type (might be due to invalid IL or missing references) //IL_0088: Unknown result type (might be due to invalid IL or missing references) //IL_008d: Unknown result type (might be due to invalid IL or missing references) //IL_00c4: Unknown result type (might be due to invalid IL or missing references) //IL_00c9: Unknown result type (might be due to invalid IL or missing references) //IL_0102: Unknown result type (might be due to invalid IL or missing references) //IL_0137: Unknown result type (might be due to invalid IL or missing references) //IL_013c: Unknown result type (might be due to invalid IL or missing references) //IL_0147: Unknown result type (might be due to invalid IL or missing references) //IL_0159: Unknown result type (might be due to invalid IL or missing references) //IL_016e: Unknown result type (might be due to invalid IL or missing references) //IL_0183: Unknown result type (might be due to invalid IL or missing references) //IL_0054: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) RectTransform component = itemList[i].itemHolder.GetComponent(); RectTransform component2 = canvas.GetComponent(); Vector2 offsetMin = component.offsetMin; Vector2 offsetMax = component.offsetMax; if (itemList[i].anchorMin == Vector2.zero) { itemList[i].anchorMin = component.anchorMin; } Vector2 anchorMin = itemList[i].anchorMin; Vector2 anchorMax = component.anchorMax; Rect rect = component2.rect; float width = ((Rect)(ref rect)).width; Rect rect2 = component2.rect; float height = ((Rect)(ref rect2)).height; itemList[i].anchorMin = new Vector2(anchorMin.x + offsetMin.x / width, anchorMin.y + offsetMin.y / height); Vector2 anchorMax2 = default(Vector2); ((Vector2)(ref anchorMax2))..ctor(anchorMax.x + offsetMax.x / width, anchorMax.y + offsetMax.y / height); component.anchorMin = itemList[i].anchorMin + new Vector2(itemList[i].uIPosition.x / 100f, itemList[i].uIPosition.y / 100f); component.anchorMax = anchorMax2; component.offsetMin = new Vector2(0f, 0f); component.offsetMax = new Vector2(0f, 0f); component.pivot = new Vector2(0.5f, 0.5f); } private void OnControllerColliderHit(ControllerColliderHit hit) { if (!((Behaviour)this).enabled) { return; } for (int i = 0; i < itemList.Length; i++) { if (hit.gameObject.tag == itemList[i].itemTag) { itemList[i].currentValue++; Object.Destroy((Object)(object)hit.gameObject); } } } private void OnCollisionStay(Collision hit) { if (!((Behaviour)this).enabled) { return; } for (int i = 0; i < itemList.Length; i++) { if (hit.gameObject.tag == itemList[i].itemTag) { itemList[i].currentValue++; Object.Destroy((Object)(object)hit.gameObject); } } } private void OnTriggerStay(Collider hit) { if (!((Behaviour)this).enabled) { return; } for (int i = 0; i < itemList.Length; i++) { if (((Component)hit).gameObject.tag == itemList[i].itemTag) { itemList[i].currentValue++; Object.Destroy((Object)(object)((Component)hit).gameObject); } } } } public class LedgeClimbController : MonoBehaviour { [Serializable] public class ClimbingDetectors { public float pullUpSpeed = 4f; public bool allowClimbingOverLedgesIfInAir = true; public bool allowClimbingOverLedgesIfOnGround = true; public bool automaticallyClimbOverGroundLedgeIfColliding = true; public bool climbOverLedgesWithoutLettingGoOfJoystickFirst = false; public bool showClimbDetectionRays = true; public float spaceAboveHeadNeededToGrabOn = 0f; public float spaceAboveHeadNeededToClimbUp = 0f; public float rodHoldingLedgeDetectorHeight = 0f; public float rodHoldingLedgeDetectorForward = 0f; public float ledgeDetectorHeight = 0f; public float ledgeDetectorForward = 0f; public float topOfLedgeSurfaceDetectorHeight = 0f; public bool showSurfaceLevelRays = false; public float maxSurfaceLevelHeight = 0f; public float underPlatformMaxSurfaceLevelHeight = 0f; public bool showNonLedgeSurfaceDetectionRays = false; public float nonLedgeSurfaceDetectorsHeight = 0f; public float nonLedgeSurfaceDetectorsForward = 0f; } [Serializable] public class MovingDetectors { [Serializable] public class SideScrolling { public bool lockMovementOnZAxis = false; public float zValue = 0f; public bool lockMovementOnXAxis = false; public float xValue = 0f; } public float moveSpeed = 3f; public float rotationSpeed = 8f; public bool moveInBursts = true; public float burstLength = 1f; public bool showMovingRays = true; public float movingDetectorsHeight = 0f; public float firstFrontWallDetectorsForward = 0f; public float firstFrontWallDetectorsWidth = 0f; public float firstBackWallDetectorsForward = 0f; public float firstBackWallDetectorsWidth = 0f; public float secondFrontWallDetectorsForward = 0f; public float secondFrontWallDetectorsWidth = 0f; public float secondBackWallDetectorsForward = 0f; public float secondBackWallDetectorsWidth = 0f; public float frontTopOfLedgeSurfaceDetectorsForward = 0f; public float backTopOfLedgeSurfaceDetectorsForward = 0f; public bool showGroundRays = true; public float minDistFromGroundHeight = 0f; public float minDistFromGroundWidth = 0f; public SideScrolling sideScrolling = new SideScrolling(); } [Serializable] public class BlockingDetectors { public bool showRotationBlockingRays = false; public float preventRotatingToSideWallHeight = 0f; public float preventRotatingToSideWallWidth = 0f; public float firstAllowRotatingIfLedgeHitWidth = 0f; public float secondAllowRotatingIfLedgeHitWidth = 0f; public bool showMovementBlockingRays = false; public float midSideWallDetectorsForward = 0f; public float midSideWallDetectorsWidth = 0f; public float sideWallDetectorsWidth = 0f; public float frontSideBlockageDetectorsHeight = 0f; public float frontSideBlockageDetectorsWidth = 0f; public float frontSideBlockageDetectorsForward = 0f; public float aboveHeadPlatformDetectorsHeight = 0f; public float aboveHeadPlatformDetectorsForward = 0f; public bool showAngleDetectionRays = false; public float ledgeAngleDetectorsHeight = 0f; public float ledgeAngleDetectorsWidth = 0f; } [Serializable] public class LedgeSwitchingDetectors { public bool allowLedgeSwitching = true; public float switchJumpHeight = 5f; public float switchJumpSpeed = 4f; public float inputPercentageNeededToSwitch = 95f; public bool showFirstLedgeSwitchingRays = false; public float firstSurfaceDetectorWidth = 0f; public float firstNoSurfaceDetectorLength = 0f; public float firstNoSurfaceDetectorWidth = 0f; public bool showSecondLedgeSwitchingRays = false; public float secondSurfaceDetectorWidth = 0f; public float secondNoSurfaceDetectorLength = 0f; public float secondNoSurfaceDetectorWidth = 0f; public bool showThirdLedgeSwitchingRays = false; public float thirdSurfaceDetectorWidth = 0f; public float thirdNoSurfaceDetectorLength = 0f; public float thirdNoSurfaceDetectorWidth = 0f; public float surfaceDetectorForward = 0f; public float surfaceDetectorHeight = 0f; public float surfaceDetectorLength = 0f; public float surfaceDetectorWidth = 0f; public float switchPointDetectorWidth = 0f; public float noSurfaceDetectorHeight = 0f; public float noSurfaceDetectorWidth = 0f; public float wallInFrontDetectorUpAmount = 0f; public float wallInFrontDetectorHeight = 0f; } [Serializable] public class WalkingOffLedgeDetectors { public bool allowGrabbingBackOnToLedges = true; public bool showGrabBackOnToLedgesRays = true; public float spaceInFrontNeededToGrabBackOn = 0f; public float spaceBelowNeededToGrabBackOnHeight = 0f; public float spaceBelowNeededToGrabBackOnForward = 0f; public float firstSideLedgeDetectorsHeight = 0f; public float secondSideLedgeDetectorsHeight = 0f; public float thirdSideLedgeDetectorsHeight = 0f; public float sideLedgeDetectorsWidth = 0f; public float sideLedgeDetectorsLength = 0f; public float grabBackOnLocationHeight = 0f; public float grabBackOnLocationWidth = 0f; public float grabBackOnLocationForward = 0f; public bool allowJumpingOffLedges = false; public bool showJumpOffLedgesRays = false; public float spaceBelowNeededToJump = 0f; public float jumpHeight = 7f; public float jumpDistance = 2f; public float jumpDecelerationRate = 4f; public bool useGravity; public float gravity = 20f; public float inputPercentageNeededToJump = 95f; public bool disableScriptsWhileJumping; public GameObject jumpLandingEffect; } [Serializable] public class OverallPositionOfDetectors { public float upDistance = 0f; public float forwardDistance = 0f; public float sideDistance = 0f; } [Serializable] public class OverallScaleOfDetectors { public float length = 1f; public float width = 1f; public float height = 1f; } [Serializable] public class CurrentStatesOfVariables { public bool ledgeGrabPossible; public bool climbUpPossible; public bool leftMovementPossible; public bool rightMovementPossible; public bool currentlyOnLedge; public bool grounded; } public bool showMainRaysOnly = false; public bool stayUpright = true; public bool inheritScale = false; public float onLedgeHeight = 0f; public float ledgeAngleLimit = 25f; public float distanceToPushOffOfLedgeAfterLettingGo = 0.5f; public float maxGroundedDistance = 0.2f; public GameObject varGameObject; public ClimbingDetectors climbingDetectors = new ClimbingDetectors(); public MovingDetectors movingDetectors = new MovingDetectors(); public BlockingDetectors blockingDetectors = new BlockingDetectors(); public LedgeSwitchingDetectors ledgeSwitchingDetectors = new LedgeSwitchingDetectors(); public WalkingOffLedgeDetectors walkingOffLedgeDetectors = new WalkingOffLedgeDetectors(); public OverallPositionOfDetectors overallPositionOfDetectors = new OverallPositionOfDetectors(); public OverallScaleOfDetectors overallScaleOfDetectors = new OverallScaleOfDetectors(); public string[] scriptsToEnableOnGrab; private MonoBehaviour scriptToEnable; public string[] scriptsToDisableOnGrab = new string[1] { "PlayerController" }; private MonoBehaviour scriptToDisable; public CurrentStatesOfVariables currentStatesOfVariables = new CurrentStatesOfVariables(); private Vector3 spaceAboveHeadNeededToGrabOn2; private Vector3 spaceAboveHeadNeededToClimbUp2; private Vector3 rodHoldingLedgeDetectorHeight2; private Vector3 rodHoldingLedgeDetectorForward2; private Vector3 ledgeDetectorHeight2; private Vector3 ledgeDetectorForward2; private float topOfLedgeSurfaceDetectorHeight2; private Vector3 maxSurfaceLevelHeight2; private Vector3 underPlatformMaxSurfaceLevelHeight2; private Vector3 nonLedgeSurfaceDetectorsHeight2; private Vector3 nonLedgeSurfaceDetectorsForward2; private Vector3 heightOfMidSideDetectors2; private Vector3 firstFrontWallDetectorsForward2; private Vector3 secondFrontWallDetectorsForward2; private Vector3 firstFrontWallDetectorsWidth2; private Vector3 secondFrontWallDetectorsWidth2; private Vector3 firstBackWallDetectorsForward2; private Vector3 secondBackWallDetectorsForward2; private Vector3 firstBackWallDetectorsWidth2; private Vector3 secondBackWallDetectorsWidth2; private Vector3 frontTopOfLedgeSurfaceDetectorsForward2; private Vector3 backTopOfLedgeSurfaceDetectorsForward2; private Vector3 minDistFromGroundHeight2; private Vector3 minDistFromGroundWidth2; private Vector3 preventRotatingToSideWallHeight2; private Vector3 preventRotatingToSideWallWidth2; private Vector3 firstAllowRotatingIfLedgeHitWidth2; private Vector3 secondAllowRotatingIfLedgeHitWidth2; private Vector3 midSideWallDetectorsForward2; private Vector3 midSideWallDetectorsWidth2; private Vector3 sideWallDetectorsWidth2; private Vector3 frontSideBlockageDetectorsHeight2; private Vector3 frontSideBlockageDetectorsWidth2; private Vector3 frontSideBlockageDetectorsForward2; private Vector3 aboveHeadPlatformDetectorsHeight2; private Vector3 aboveHeadPlatformDetectorsForward2; private Vector3 ledgeAngleDetectorsHeight2; private Vector3 ledgeAngleDetectorsWidth2; private Vector3 firstSurfaceDetectorWidth2; private float firstNoSurfaceDetectorLength2; private float firstNoSurfaceDetectorWidth2; private Vector3 secondSurfaceDetectorWidth2; private float secondNoSurfaceDetectorLength2; private float secondNoSurfaceDetectorWidth2; private Vector3 thirdSurfaceDetectorWidth2; private float thirdNoSurfaceDetectorLength2; private float thirdNoSurfaceDetectorWidth2; private Vector3 surfaceDetectorForward2; private Vector3 surfaceDetectorHeight2; private float surfaceDetectorLength2; private Vector3 surfaceDetectorWidth2; private Vector3 switchPointDetectorWidth2; private Vector3 noSurfaceDetectorHeight2; private float noSurfaceDetectorWidth2; private Vector3 wallInFrontDetectorUpAmount2; private float wallInFrontDetectorHeight2; private Vector3 leftSpace; private Vector3 rightSpace; private Vector3 firstSwitchSurfaceWidth; private Vector3 secondSwitchSurfaceWidth; private Vector3 thirdSwitchSurfaceWidth; private Vector3 spaceInFrontNeededToGrabBackOn2; private Vector3 spaceBelowNeededToGrabBackOnHeight2; private Vector3 spaceBelowNeededToGrabBackOnForward2; private Vector3 firstSideLedgeDetectorsHeight2; private Vector3 secondSideLedgeDetectorsHeight2; private Vector3 thirdSideLedgeDetectorsHeight2; private Vector3 sideLedgeDetectorsWidth2; private Vector3 sideLedgeDetectorsLength2; private Vector3 grabBackOnLocationHeight2; private Vector3 grabBackOnLocationWidth2; private Vector3 grabBackOnLocationForward2; private bool climbable = false; private bool climbableL = false; private bool climbableR = false; private bool climbPossible = false; private bool climbPossibleL = false; private bool climbPossibleR = false; private bool getOn = false; private bool getOn2 = false; [HideInInspector] public bool grabbedOn = false; [HideInInspector] public bool canGrabBackOn = true; private float axisBeforeGrab; private bool grabbedOnLastUpdate = false; private bool hasNotMovedOnLedgeYet; private bool hasNotMovedOnLedgeAsideFromLedgeSwitchingYet; private float ledgeAngle; private bool pullingUp = false; private float pullingUpTimer; private bool animatePullingUp = false; private Vector3 hitPoint; private bool pullingUpOnToPlatform; private Vector3 originalPullUpPoint; private Vector3 playerPosXZ; private float playerPosY; private float rbPosY; private bool rbPosYIncreasing; private bool rbUsesGravity; private bool canChangeRbGravity; private float angle; private Vector3 colliderCenter; private Vector3 colliderBack; private Vector3 colliderFront; private Vector3 colliderBottom; private Vector3 colliderTop; private float colliderLengthFromCenter; [HideInInspector] public GameObject oldParent; [HideInInspector] public GameObject emptyObject; private Quaternion rotationNormal; private float rotationState = 2f; private float wallInFrontAngle; private bool leaningForward; private bool upfront; private bool upright; private bool upleft; private bool movingToSide; private bool axisChanged; private float horizontalAxis; private Quaternion lastRot; private Quaternion lastRot2; private Quaternion lastRot3; private float rotTimer; private float yRotationValue; private Vector3 lSide; private Vector3 rSide; private bool leftBlocked; private bool rightBlocked; private bool leftMovable; private bool rightMovable; private bool stuckToLeft; private bool stuckToRight; private bool angledLeft; private bool angledRight; private bool sR; private bool sL; private bool movingRight; private bool left; private bool right; private bool startingLeft = true; private bool startingRight = true; private float movementSpeed; private Vector3 lastPos; private bool stuckInSamePos; private bool stuckInSamePosNoCol; private float distFromWall; private Vector3 directionVector; private Vector3 movementVector; private bool switching; private bool atMidPoint; private bool switchJumping; private Vector3 midSwitchPoint; private Vector3 ledgeSwitchPoint; private Vector3 currentLedgeSwitchPoint; private float switchPointDist; private bool l1SecondForwardClear; private bool l1FirstForwardClear; private bool l1MiddleClear; private bool l1FirstBackClear; private bool l1SecondBackClear; private bool l2SecondForwardClear; private bool l2FirstForwardClear; private bool l2MiddleClear; private bool l2FirstBackClear; private bool l2SecondBackClear; private bool l3SecondForwardClear; private bool l3FirstForwardClear; private bool l3MiddleClear; private bool l3FirstBackClear; private bool l3SecondBackClear; private float l1SecondForwardTimer; private float l1FirstForwardTimer; private float l1MiddleTimer; private float l1FirstBackTimer; private float l1SecondBackTimer; private float l2SecondForwardTimer; private float l2FirstForwardTimer; private float l2MiddleTimer; private float l2FirstBackTimer; private float l2SecondBackTimer; private float l3SecondForwardTimer; private float l3FirstForwardTimer; private float l3MiddleTimer; private float l3FirstBackTimer; private float l3SecondBackTimer; private bool l1FirstForwardSurfaceDetectorsHit; private bool l1MiddleSurfaceDetectorsHit; private bool l1FirstBackSurfaceDetectorsHit; private bool l1SecondBackSurfaceDetectorsHit; private bool l1ThirdBackSurfaceDetectorsHit; private bool l2FirstForwardSurfaceDetectorsHit; private bool l2MiddleSurfaceDetectorsHit; private bool l2FirstBackSurfaceDetectorsHit; private bool l2SecondBackSurfaceDetectorsHit; private bool l2ThirdBackSurfaceDetectorsHit; private bool l3FirstForwardSurfaceDetectorsHit; private bool l3MiddleSurfaceDetectorsHit; private bool l3FirstBackSurfaceDetectorsHit; private bool l3SecondBackSurfaceDetectorsHit; private bool l3ThirdBackSurfaceDetectorsHit; private bool l1SecondForwardHit; private bool l1FirstForwardHit; private bool l1MiddleHit; private bool l1FirstBackHit; private bool l1SecondBackHit; private bool l1ThirdBackHit; private bool l2SecondForwardHit; private bool l2FirstForwardHit; private bool l2MiddleHit; private bool l2FirstBackHit; private bool l2SecondBackHit; private bool l2ThirdBackHit; private bool l3SecondForwardHit; private bool l3FirstForwardHit; private bool l3MiddleHit; private bool l3FirstBackHit; private bool l3SecondBackHit; private bool l3ThirdBackHit; private Vector3 l1SecondForwardHitPoint; private Vector3 l1FirstForwardHitPoint; private Vector3 l1MiddleHitPoint; private Vector3 l1FirstBackHitPoint; private Vector3 l1SecondBackHitPoint; private Vector3 l2SecondForwardHitPoint; private Vector3 l2FirstForwardHitPoint; private Vector3 l2MiddleHitPoint; private Vector3 l2FirstBackHitPoint; private Vector3 l2SecondBackHitPoint; private Vector3 l3SecondForwardHitPoint; private Vector3 l3FirstForwardHitPoint; private Vector3 l3MiddleHitPoint; private Vector3 l3FirstBackHitPoint; private Vector3 l3SecondBackHitPoint; private bool r1SecondForwardClear; private bool r1FirstForwardClear; private bool r1MiddleClear; private bool r1FirstBackClear; private bool r1SecondBackClear; private bool r2SecondForwardClear; private bool r2FirstForwardClear; private bool r2MiddleClear; private bool r2FirstBackClear; private bool r2SecondBackClear; private bool r3SecondForwardClear; private bool r3FirstForwardClear; private bool r3MiddleClear; private bool r3FirstBackClear; private bool r3SecondBackClear; private float r1SecondForwardTimer; private float r1FirstForwardTimer; private float r1MiddleTimer; private float r1FirstBackTimer; private float r1SecondBackTimer; private float r2SecondForwardTimer; private float r2FirstForwardTimer; private float r2MiddleTimer; private float r2FirstBackTimer; private float r2SecondBackTimer; private float r3SecondForwardTimer; private float r3FirstForwardTimer; private float r3MiddleTimer; private float r3FirstBackTimer; private float r3SecondBackTimer; private bool r1FirstForwardSurfaceDetectorsHit; private bool r1MiddleSurfaceDetectorsHit; private bool r1FirstBackSurfaceDetectorsHit; private bool r1SecondBackSurfaceDetectorsHit; private bool r1ThirdBackSurfaceDetectorsHit; private bool r2FirstForwardSurfaceDetectorsHit; private bool r2MiddleSurfaceDetectorsHit; private bool r2FirstBackSurfaceDetectorsHit; private bool r2SecondBackSurfaceDetectorsHit; private bool r2ThirdBackSurfaceDetectorsHit; private bool r3FirstForwardSurfaceDetectorsHit; private bool r3MiddleSurfaceDetectorsHit; private bool r3FirstBackSurfaceDetectorsHit; private bool r3SecondBackSurfaceDetectorsHit; private bool r3ThirdBackSurfaceDetectorsHit; private bool r1SecondForwardHit; private bool r1FirstForwardHit; private bool r1MiddleHit; private bool r1FirstBackHit; private bool r1SecondBackHit; private bool r1ThirdBackHit; private bool r2SecondForwardHit; private bool r2FirstForwardHit; private bool r2MiddleHit; private bool r2FirstBackHit; private bool r2SecondBackHit; private bool r2ThirdBackHit; private bool r3SecondForwardHit; private bool r3FirstForwardHit; private bool r3MiddleHit; private bool r3FirstBackHit; private bool r3SecondBackHit; private bool r3ThirdBackHit; private Vector3 r1SecondForwardHitPoint; private Vector3 r1FirstForwardHitPoint; private Vector3 r1MiddleHitPoint; private Vector3 r1FirstBackHitPoint; private Vector3 r1SecondBackHitPoint; private Vector3 r2SecondForwardHitPoint; private Vector3 r2FirstForwardHitPoint; private Vector3 r2MiddleHitPoint; private Vector3 r2FirstBackHitPoint; private Vector3 r2SecondBackHitPoint; private Vector3 r3SecondForwardHitPoint; private Vector3 r3FirstForwardHitPoint; private Vector3 r3MiddleHitPoint; private Vector3 r3FirstBackHitPoint; private Vector3 r3SecondBackHitPoint; [HideInInspector] public bool turnBack = false; private float turnBackTimer = 0f; private bool turnBackMiddle = true; private bool turnBackLeft; private bool turnBackRight; [HideInInspector] public bool back2 = false; private Vector3 backPoint; private Vector3 turnBackPoint; private bool onPlatform; private Vector3 originalPlatformPosition; private Vector3 originalTurnBackPoint; private float originalPlayerPosY; private Quaternion originalPlatformRotation; private Quaternion originalBackRotation; private bool platformParentLastUpdate; [HideInInspector] public Vector3 backHit; private Quaternion backRotation; private float angleBetweenPlayerAndTurnBackWall; private float jumpedOffTimer = 1f; private bool ledgeJumpPossible; private Vector3 jumpedOffDirection; private Vector3 jumpDir; private Vector3 vel; private float yPosDiff; private float lastYPos; private bool inAirFromJumpingOffLedge; private bool inAirFromJumpingOffLedgeNoCollision; private bool canJumpOffLedge; private bool animateLedgeJump; private bool turnedBackToLedge; private Vector3 spaceBelowNeededToJump2; private bool nonJumpTurnAround; private bool jumpDust; private GameObject jumpLandingEffect2; private bool currentlyEnablingAndDisablingScripts = false; private bool scriptWarning = false; private float onLedgeHeight2; private float height2; private float length2; private float width2; private Vector3 posChange1; private Vector3 posChange2; private Vector3 midSidePosChange; private Vector3 upHeight; private Vector3 forwardLength; private Vector3 rightWidth; private Vector3 ledgeSwitchHeight; private Vector3 ledgeSwitchSurfaceLength; private Vector3 ledgeSwitchFirstNoSurfaceLength; private Vector3 ledgeSwitchSecondNoSurfaceLength; private Vector3 ledgeSwitchThirdNoSurfaceLength; private Vector3 ledgeSwitchFirstWidthBack; private Vector3 ledgeSwitchFirstWidthForward; private Vector3 ledgeSwitchSecondWidthForward; private Vector3 ledgeSwitchSecondWidthBack; private Vector3 ledgeSwitchThirdWidthForward; private Vector3 ledgeSwitchThirdWidthBack; private float noCollisionTimer; private bool inMidAir; private bool axisInUse = false; private RaycastHit hit = default(RaycastHit); private RaycastHit switchHitPoint = default(RaycastHit); private Animator animator; private int entryAnimation; public GameObject dustEffect; private CharacterController characterController; private Rigidbody rigidBody; public LayerMask collisionLayers = LayerMask.op_Implicit(-21); private void Start() { //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_007e: Unknown result type (might be due to invalid IL or missing references) if (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Collider)((Component)this).GetComponent()).enabled) { characterController = ((Component)this).GetComponent(); rigidBody = null; } else if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { rigidBody = ((Component)this).GetComponent(); characterController = null; } if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { AnimatorStateInfo currentAnimatorStateInfo = ((Component)this).GetComponent().GetCurrentAnimatorStateInfo(0); entryAnimation = ((AnimatorStateInfo)(ref currentAnimatorStateInfo)).fullPathHash; } } private void LateUpdate() { DrawDetectors(); GetLedgeSwitchingDetectorValues(); DrawFirstLedgeSwitchingDetectors(); DrawSecondLedgeSwitchingDetectors(); DrawThirdLedgeSwitchingDetectors(); } private void DrawDetectors() { //IL_0003: Unknown result type (might be due to invalid IL or missing references) //IL_0013: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_002f: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_004b: Unknown result type (might be due to invalid IL or missing references) //IL_0050: Unknown result type (might be due to invalid IL or missing references) //IL_0057: Unknown result type (might be due to invalid IL or missing references) //IL_0067: Unknown result type (might be due to invalid IL or missing references) //IL_006c: Unknown result type (might be due to invalid IL or missing references) //IL_0073: Unknown result type (might be due to invalid IL or missing references) //IL_0089: Unknown result type (might be due to invalid IL or missing references) //IL_008e: Unknown result type (might be due to invalid IL or missing references) //IL_0095: Unknown result type (might be due to invalid IL or missing references) //IL_00a5: Unknown result type (might be due to invalid IL or missing references) //IL_00aa: Unknown result type (might be due to invalid IL or missing references) //IL_00cf: Unknown result type (might be due to invalid IL or missing references) //IL_00df: Unknown result type (might be due to invalid IL or missing references) //IL_00e4: Unknown result type (might be due to invalid IL or missing references) //IL_00eb: Unknown result type (might be due to invalid IL or missing references) //IL_00fb: Unknown result type (might be due to invalid IL or missing references) //IL_0100: Unknown result type (might be due to invalid IL or missing references) //IL_010c: Unknown result type (might be due to invalid IL or missing references) //IL_0122: Unknown result type (might be due to invalid IL or missing references) //IL_0127: Unknown result type (might be due to invalid IL or missing references) //IL_012e: Unknown result type (might be due to invalid IL or missing references) //IL_013e: Unknown result type (might be due to invalid IL or missing references) //IL_0143: Unknown result type (might be due to invalid IL or missing references) //IL_016a: Unknown result type (might be due to invalid IL or missing references) //IL_0170: Unknown result type (might be due to invalid IL or missing references) //IL_0175: Unknown result type (might be due to invalid IL or missing references) //IL_017b: Unknown result type (might be due to invalid IL or missing references) //IL_0180: Unknown result type (might be due to invalid IL or missing references) //IL_018b: Unknown result type (might be due to invalid IL or missing references) //IL_0191: Unknown result type (might be due to invalid IL or missing references) //IL_0196: Unknown result type (might be due to invalid IL or missing references) //IL_019c: Unknown result type (might be due to invalid IL or missing references) //IL_01a1: Unknown result type (might be due to invalid IL or missing references) //IL_01a7: Unknown result type (might be due to invalid IL or missing references) //IL_01b1: Unknown result type (might be due to invalid IL or missing references) //IL_01b6: Unknown result type (might be due to invalid IL or missing references) //IL_01bc: Unknown result type (might be due to invalid IL or missing references) //IL_01c6: Unknown result type (might be due to invalid IL or missing references) //IL_01cb: Unknown result type (might be due to invalid IL or missing references) //IL_01d1: Unknown result type (might be due to invalid IL or missing references) //IL_01d7: Unknown result type (might be due to invalid IL or missing references) //IL_01dc: Unknown result type (might be due to invalid IL or missing references) //IL_01e1: Unknown result type (might be due to invalid IL or missing references) //IL_01e6: Unknown result type (might be due to invalid IL or missing references) //IL_01f6: Unknown result type (might be due to invalid IL or missing references) //IL_01fc: Unknown result type (might be due to invalid IL or missing references) //IL_0201: Unknown result type (might be due to invalid IL or missing references) //IL_0207: Unknown result type (might be due to invalid IL or missing references) //IL_020c: Unknown result type (might be due to invalid IL or missing references) //IL_0212: Unknown result type (might be due to invalid IL or missing references) //IL_021c: Unknown result type (might be due to invalid IL or missing references) //IL_0221: Unknown result type (might be due to invalid IL or missing references) //IL_0227: Unknown result type (might be due to invalid IL or missing references) //IL_0231: Unknown result type (might be due to invalid IL or missing references) //IL_0236: Unknown result type (might be due to invalid IL or missing references) //IL_023c: Unknown result type (might be due to invalid IL or missing references) //IL_0242: Unknown result type (might be due to invalid IL or missing references) //IL_0247: Unknown result type (might be due to invalid IL or missing references) //IL_024c: Unknown result type (might be due to invalid IL or missing references) //IL_0257: Unknown result type (might be due to invalid IL or missing references) //IL_025d: Unknown result type (might be due to invalid IL or missing references) //IL_0262: Unknown result type (might be due to invalid IL or missing references) //IL_0268: Unknown result type (might be due to invalid IL or missing references) //IL_0272: Unknown result type (might be due to invalid IL or missing references) //IL_0277: Unknown result type (might be due to invalid IL or missing references) //IL_027d: Unknown result type (might be due to invalid IL or missing references) //IL_0287: Unknown result type (might be due to invalid IL or missing references) //IL_028c: Unknown result type (might be due to invalid IL or missing references) //IL_0292: Unknown result type (might be due to invalid IL or missing references) //IL_0298: Unknown result type (might be due to invalid IL or missing references) //IL_029d: Unknown result type (might be due to invalid IL or missing references) //IL_02a3: Unknown result type (might be due to invalid IL or missing references) //IL_02a8: Unknown result type (might be due to invalid IL or missing references) //IL_02ae: Unknown result type (might be due to invalid IL or missing references) //IL_02b3: Unknown result type (might be due to invalid IL or missing references) //IL_02b8: Unknown result type (might be due to invalid IL or missing references) //IL_02bd: Unknown result type (might be due to invalid IL or missing references) //IL_02cd: Unknown result type (might be due to invalid IL or missing references) //IL_02d3: Unknown result type (might be due to invalid IL or missing references) //IL_02d8: Unknown result type (might be due to invalid IL or missing references) //IL_02de: Unknown result type (might be due to invalid IL or missing references) //IL_02e8: Unknown result type (might be due to invalid IL or missing references) //IL_02ed: Unknown result type (might be due to invalid IL or missing references) //IL_02f3: Unknown result type (might be due to invalid IL or missing references) //IL_02fd: Unknown result type (might be due to invalid IL or missing references) //IL_0302: Unknown result type (might be due to invalid IL or missing references) //IL_0308: Unknown result type (might be due to invalid IL or missing references) //IL_0312: Unknown result type (might be due to invalid IL or missing references) //IL_0317: Unknown result type (might be due to invalid IL or missing references) //IL_031d: Unknown result type (might be due to invalid IL or missing references) //IL_0334: Unknown result type (might be due to invalid IL or missing references) //IL_033a: Unknown result type (might be due to invalid IL or missing references) //IL_0351: Unknown result type (might be due to invalid IL or missing references) //IL_0356: Unknown result type (might be due to invalid IL or missing references) //IL_035c: Unknown result type (might be due to invalid IL or missing references) //IL_0361: Unknown result type (might be due to invalid IL or missing references) //IL_0367: Unknown result type (might be due to invalid IL or missing references) //IL_036c: Unknown result type (might be due to invalid IL or missing references) //IL_0377: Unknown result type (might be due to invalid IL or missing references) //IL_0389: Unknown result type (might be due to invalid IL or missing references) //IL_0393: Unknown result type (might be due to invalid IL or missing references) //IL_0398: Unknown result type (might be due to invalid IL or missing references) //IL_03a3: Unknown result type (might be due to invalid IL or missing references) //IL_03b5: Unknown result type (might be due to invalid IL or missing references) //IL_03ba: Unknown result type (might be due to invalid IL or missing references) //IL_03bf: Unknown result type (might be due to invalid IL or missing references) //IL_03ca: Unknown result type (might be due to invalid IL or missing references) //IL_03d0: Unknown result type (might be due to invalid IL or missing references) //IL_03d5: Unknown result type (might be due to invalid IL or missing references) //IL_03db: Unknown result type (might be due to invalid IL or missing references) //IL_03e5: Unknown result type (might be due to invalid IL or missing references) //IL_03ea: Unknown result type (might be due to invalid IL or missing references) //IL_03f0: Unknown result type (might be due to invalid IL or missing references) //IL_03fa: Unknown result type (might be due to invalid IL or missing references) //IL_03ff: Unknown result type (might be due to invalid IL or missing references) //IL_0405: Unknown result type (might be due to invalid IL or missing references) //IL_040b: Unknown result type (might be due to invalid IL or missing references) //IL_0410: Unknown result type (might be due to invalid IL or missing references) //IL_0416: Unknown result type (might be due to invalid IL or missing references) //IL_041b: Unknown result type (might be due to invalid IL or missing references) //IL_0421: Unknown result type (might be due to invalid IL or missing references) //IL_0426: Unknown result type (might be due to invalid IL or missing references) //IL_042b: Unknown result type (might be due to invalid IL or missing references) //IL_0430: Unknown result type (might be due to invalid IL or missing references) //IL_0440: Unknown result type (might be due to invalid IL or missing references) //IL_0446: Unknown result type (might be due to invalid IL or missing references) //IL_044b: Unknown result type (might be due to invalid IL or missing references) //IL_0451: Unknown result type (might be due to invalid IL or missing references) //IL_0456: Unknown result type (might be due to invalid IL or missing references) //IL_045c: Unknown result type (might be due to invalid IL or missing references) //IL_0466: Unknown result type (might be due to invalid IL or missing references) //IL_046b: Unknown result type (might be due to invalid IL or missing references) //IL_0471: Unknown result type (might be due to invalid IL or missing references) //IL_047b: Unknown result type (might be due to invalid IL or missing references) //IL_0480: Unknown result type (might be due to invalid IL or missing references) //IL_0486: Unknown result type (might be due to invalid IL or missing references) //IL_048c: Unknown result type (might be due to invalid IL or missing references) //IL_0491: Unknown result type (might be due to invalid IL or missing references) //IL_0496: Unknown result type (might be due to invalid IL or missing references) //IL_04a1: Unknown result type (might be due to invalid IL or missing references) //IL_04a7: Unknown result type (might be due to invalid IL or missing references) //IL_04ac: Unknown result type (might be due to invalid IL or missing references) //IL_04b2: Unknown result type (might be due to invalid IL or missing references) //IL_04b7: Unknown result type (might be due to invalid IL or missing references) //IL_04bd: Unknown result type (might be due to invalid IL or missing references) //IL_04c2: Unknown result type (might be due to invalid IL or missing references) //IL_04c8: Unknown result type (might be due to invalid IL or missing references) //IL_04d2: Unknown result type (might be due to invalid IL or missing references) //IL_04d7: Unknown result type (might be due to invalid IL or missing references) //IL_04dd: Unknown result type (might be due to invalid IL or missing references) //IL_04e3: Unknown result type (might be due to invalid IL or missing references) //IL_04e8: Unknown result type (might be due to invalid IL or missing references) //IL_04ed: Unknown result type (might be due to invalid IL or missing references) //IL_04f2: Unknown result type (might be due to invalid IL or missing references) //IL_0502: Unknown result type (might be due to invalid IL or missing references) //IL_0508: Unknown result type (might be due to invalid IL or missing references) //IL_050d: Unknown result type (might be due to invalid IL or missing references) //IL_0513: Unknown result type (might be due to invalid IL or missing references) //IL_0518: Unknown result type (might be due to invalid IL or missing references) //IL_0523: Unknown result type (might be due to invalid IL or missing references) //IL_0529: Unknown result type (might be due to invalid IL or missing references) //IL_052e: Unknown result type (might be due to invalid IL or missing references) //IL_0534: Unknown result type (might be due to invalid IL or missing references) //IL_053e: Unknown result type (might be due to invalid IL or missing references) //IL_0543: Unknown result type (might be due to invalid IL or missing references) //IL_0549: Unknown result type (might be due to invalid IL or missing references) //IL_054e: Unknown result type (might be due to invalid IL or missing references) //IL_0553: Unknown result type (might be due to invalid IL or missing references) //IL_0563: Unknown result type (might be due to invalid IL or missing references) //IL_0569: Unknown result type (might be due to invalid IL or missing references) //IL_056e: Unknown result type (might be due to invalid IL or missing references) //IL_0574: Unknown result type (might be due to invalid IL or missing references) //IL_057e: Unknown result type (might be due to invalid IL or missing references) //IL_0583: Unknown result type (might be due to invalid IL or missing references) //IL_058e: Unknown result type (might be due to invalid IL or missing references) //IL_0594: Unknown result type (might be due to invalid IL or missing references) //IL_0599: Unknown result type (might be due to invalid IL or missing references) //IL_059f: Unknown result type (might be due to invalid IL or missing references) //IL_05a9: Unknown result type (might be due to invalid IL or missing references) //IL_05ae: Unknown result type (might be due to invalid IL or missing references) //IL_05b4: Unknown result type (might be due to invalid IL or missing references) //IL_05be: Unknown result type (might be due to invalid IL or missing references) //IL_05c3: Unknown result type (might be due to invalid IL or missing references) //IL_05c9: Unknown result type (might be due to invalid IL or missing references) //IL_05ce: Unknown result type (might be due to invalid IL or missing references) //IL_05d3: Unknown result type (might be due to invalid IL or missing references) //IL_09f8: Unknown result type (might be due to invalid IL or missing references) //IL_0a08: Unknown result type (might be due to invalid IL or missing references) //IL_0a0d: Unknown result type (might be due to invalid IL or missing references) //IL_0a14: Unknown result type (might be due to invalid IL or missing references) //IL_0a24: Unknown result type (might be due to invalid IL or missing references) //IL_0a29: Unknown result type (might be due to invalid IL or missing references) //IL_0a30: Unknown result type (might be due to invalid IL or missing references) //IL_0a40: Unknown result type (might be due to invalid IL or missing references) //IL_0a45: Unknown result type (might be due to invalid IL or missing references) //IL_0a4c: Unknown result type (might be due to invalid IL or missing references) //IL_0a5c: Unknown result type (might be due to invalid IL or missing references) //IL_0a61: Unknown result type (might be due to invalid IL or missing references) //IL_0a68: Unknown result type (might be due to invalid IL or missing references) //IL_0a78: Unknown result type (might be due to invalid IL or missing references) //IL_0a7d: Unknown result type (might be due to invalid IL or missing references) //IL_0a84: Unknown result type (might be due to invalid IL or missing references) //IL_0a94: Unknown result type (might be due to invalid IL or missing references) //IL_0a99: Unknown result type (might be due to invalid IL or missing references) //IL_0aa0: Unknown result type (might be due to invalid IL or missing references) //IL_0ab0: Unknown result type (might be due to invalid IL or missing references) //IL_0ab5: Unknown result type (might be due to invalid IL or missing references) //IL_0abc: Unknown result type (might be due to invalid IL or missing references) //IL_0acc: Unknown result type (might be due to invalid IL or missing references) //IL_0ad1: Unknown result type (might be due to invalid IL or missing references) //IL_0ad8: Unknown result type (might be due to invalid IL or missing references) //IL_0ae8: Unknown result type (might be due to invalid IL or missing references) //IL_0aed: Unknown result type (might be due to invalid IL or missing references) //IL_0af4: Unknown result type (might be due to invalid IL or missing references) //IL_0b04: Unknown result type (might be due to invalid IL or missing references) //IL_0b09: Unknown result type (might be due to invalid IL or missing references) //IL_0b10: Unknown result type (might be due to invalid IL or missing references) //IL_0b20: Unknown result type (might be due to invalid IL or missing references) //IL_0b25: Unknown result type (might be due to invalid IL or missing references) //IL_0b2c: Unknown result type (might be due to invalid IL or missing references) //IL_0b3c: Unknown result type (might be due to invalid IL or missing references) //IL_0b41: Unknown result type (might be due to invalid IL or missing references) //IL_0b48: Unknown result type (might be due to invalid IL or missing references) //IL_0b58: Unknown result type (might be due to invalid IL or missing references) //IL_0b5d: Unknown result type (might be due to invalid IL or missing references) //IL_0b84: Unknown result type (might be due to invalid IL or missing references) //IL_0b8a: Unknown result type (might be due to invalid IL or missing references) //IL_0b8f: Unknown result type (might be due to invalid IL or missing references) //IL_0b95: Unknown result type (might be due to invalid IL or missing references) //IL_0b9a: Unknown result type (might be due to invalid IL or missing references) //IL_0ba0: Unknown result type (might be due to invalid IL or missing references) //IL_0baa: Unknown result type (might be due to invalid IL or missing references) //IL_0baf: Unknown result type (might be due to invalid IL or missing references) //IL_0bb5: Unknown result type (might be due to invalid IL or missing references) //IL_0bbf: Unknown result type (might be due to invalid IL or missing references) //IL_0bc4: Unknown result type (might be due to invalid IL or missing references) //IL_0bca: Unknown result type (might be due to invalid IL or missing references) //IL_0bd4: Unknown result type (might be due to invalid IL or missing references) //IL_0bd9: Unknown result type (might be due to invalid IL or missing references) //IL_0bdf: Unknown result type (might be due to invalid IL or missing references) //IL_0be9: Unknown result type (might be due to invalid IL or missing references) //IL_0bee: Unknown result type (might be due to invalid IL or missing references) //IL_0bf4: Unknown result type (might be due to invalid IL or missing references) //IL_0bf9: Unknown result type (might be due to invalid IL or missing references) //IL_0c04: Unknown result type (might be due to invalid IL or missing references) //IL_0c0a: Unknown result type (might be due to invalid IL or missing references) //IL_0c0f: Unknown result type (might be due to invalid IL or missing references) //IL_0c15: Unknown result type (might be due to invalid IL or missing references) //IL_0c1a: Unknown result type (might be due to invalid IL or missing references) //IL_0c20: Unknown result type (might be due to invalid IL or missing references) //IL_0c25: Unknown result type (might be due to invalid IL or missing references) //IL_0c2b: Unknown result type (might be due to invalid IL or missing references) //IL_0c35: Unknown result type (might be due to invalid IL or missing references) //IL_0c3a: Unknown result type (might be due to invalid IL or missing references) //IL_0c40: Unknown result type (might be due to invalid IL or missing references) //IL_0c4a: Unknown result type (might be due to invalid IL or missing references) //IL_0c4f: Unknown result type (might be due to invalid IL or missing references) //IL_0c55: Unknown result type (might be due to invalid IL or missing references) //IL_0c5f: Unknown result type (might be due to invalid IL or missing references) //IL_0c64: Unknown result type (might be due to invalid IL or missing references) //IL_0c6a: Unknown result type (might be due to invalid IL or missing references) //IL_0c6f: Unknown result type (might be due to invalid IL or missing references) //IL_0c74: Unknown result type (might be due to invalid IL or missing references) //IL_0c84: Unknown result type (might be due to invalid IL or missing references) //IL_0c8a: Unknown result type (might be due to invalid IL or missing references) //IL_0c8f: Unknown result type (might be due to invalid IL or missing references) //IL_0c95: Unknown result type (might be due to invalid IL or missing references) //IL_0c9a: Unknown result type (might be due to invalid IL or missing references) //IL_0ca0: Unknown result type (might be due to invalid IL or missing references) //IL_0caa: Unknown result type (might be due to invalid IL or missing references) //IL_0caf: Unknown result type (might be due to invalid IL or missing references) //IL_0cb5: Unknown result type (might be due to invalid IL or missing references) //IL_0cbf: Unknown result type (might be due to invalid IL or missing references) //IL_0cc4: Unknown result type (might be due to invalid IL or missing references) //IL_0cca: Unknown result type (might be due to invalid IL or missing references) //IL_0cd4: Unknown result type (might be due to invalid IL or missing references) //IL_0cd9: Unknown result type (might be due to invalid IL or missing references) //IL_0cdf: Unknown result type (might be due to invalid IL or missing references) //IL_0ce9: Unknown result type (might be due to invalid IL or missing references) //IL_0cee: Unknown result type (might be due to invalid IL or missing references) //IL_0cf4: Unknown result type (might be due to invalid IL or missing references) //IL_0cf9: Unknown result type (might be due to invalid IL or missing references) //IL_0d04: Unknown result type (might be due to invalid IL or missing references) //IL_0d0a: Unknown result type (might be due to invalid IL or missing references) //IL_0d0f: Unknown result type (might be due to invalid IL or missing references) //IL_0d15: Unknown result type (might be due to invalid IL or missing references) //IL_0d1a: Unknown result type (might be due to invalid IL or missing references) //IL_0d20: Unknown result type (might be due to invalid IL or missing references) //IL_0d25: Unknown result type (might be due to invalid IL or missing references) //IL_0d2b: Unknown result type (might be due to invalid IL or missing references) //IL_0d35: Unknown result type (might be due to invalid IL or missing references) //IL_0d3a: Unknown result type (might be due to invalid IL or missing references) //IL_0d40: Unknown result type (might be due to invalid IL or missing references) //IL_0d4a: Unknown result type (might be due to invalid IL or missing references) //IL_0d4f: Unknown result type (might be due to invalid IL or missing references) //IL_0d55: Unknown result type (might be due to invalid IL or missing references) //IL_0d5f: Unknown result type (might be due to invalid IL or missing references) //IL_0d64: Unknown result type (might be due to invalid IL or missing references) //IL_0d6a: Unknown result type (might be due to invalid IL or missing references) //IL_0d6f: Unknown result type (might be due to invalid IL or missing references) //IL_0d74: Unknown result type (might be due to invalid IL or missing references) //IL_0d84: Unknown result type (might be due to invalid IL or missing references) //IL_0d8a: Unknown result type (might be due to invalid IL or missing references) //IL_0d8f: Unknown result type (might be due to invalid IL or missing references) //IL_0d95: Unknown result type (might be due to invalid IL or missing references) //IL_0d9a: Unknown result type (might be due to invalid IL or missing references) //IL_0da0: Unknown result type (might be due to invalid IL or missing references) //IL_0da5: Unknown result type (might be due to invalid IL or missing references) //IL_0dab: Unknown result type (might be due to invalid IL or missing references) //IL_0db0: Unknown result type (might be due to invalid IL or missing references) //IL_0db6: Unknown result type (might be due to invalid IL or missing references) //IL_0dc0: Unknown result type (might be due to invalid IL or missing references) //IL_0dc5: Unknown result type (might be due to invalid IL or missing references) //IL_0dd0: Unknown result type (might be due to invalid IL or missing references) //IL_0dd6: Unknown result type (might be due to invalid IL or missing references) //IL_0ddb: Unknown result type (might be due to invalid IL or missing references) //IL_0de1: Unknown result type (might be due to invalid IL or missing references) //IL_0de6: Unknown result type (might be due to invalid IL or missing references) //IL_0dec: Unknown result type (might be due to invalid IL or missing references) //IL_0df1: Unknown result type (might be due to invalid IL or missing references) //IL_0df7: Unknown result type (might be due to invalid IL or missing references) //IL_0dfc: Unknown result type (might be due to invalid IL or missing references) //IL_0e02: Unknown result type (might be due to invalid IL or missing references) //IL_0e0c: Unknown result type (might be due to invalid IL or missing references) //IL_0e11: Unknown result type (might be due to invalid IL or missing references) //IL_0e17: Unknown result type (might be due to invalid IL or missing references) //IL_0e1c: Unknown result type (might be due to invalid IL or missing references) //IL_0e21: Unknown result type (might be due to invalid IL or missing references) //IL_0e31: Unknown result type (might be due to invalid IL or missing references) //IL_0e37: Unknown result type (might be due to invalid IL or missing references) //IL_0e3c: Unknown result type (might be due to invalid IL or missing references) //IL_0e42: Unknown result type (might be due to invalid IL or missing references) //IL_0e47: Unknown result type (might be due to invalid IL or missing references) //IL_0e4d: Unknown result type (might be due to invalid IL or missing references) //IL_0e52: Unknown result type (might be due to invalid IL or missing references) //IL_0e58: Unknown result type (might be due to invalid IL or missing references) //IL_0e62: Unknown result type (might be due to invalid IL or missing references) //IL_0e67: Unknown result type (might be due to invalid IL or missing references) //IL_0e6d: Unknown result type (might be due to invalid IL or missing references) //IL_0e77: Unknown result type (might be due to invalid IL or missing references) //IL_0e7c: Unknown result type (might be due to invalid IL or missing references) //IL_0e82: Unknown result type (might be due to invalid IL or missing references) //IL_0e87: Unknown result type (might be due to invalid IL or missing references) //IL_0e92: Unknown result type (might be due to invalid IL or missing references) //IL_0e98: Unknown result type (might be due to invalid IL or missing references) //IL_0e9d: Unknown result type (might be due to invalid IL or missing references) //IL_0ea3: Unknown result type (might be due to invalid IL or missing references) //IL_0ea8: Unknown result type (might be due to invalid IL or missing references) //IL_0eae: Unknown result type (might be due to invalid IL or missing references) //IL_0eb3: Unknown result type (might be due to invalid IL or missing references) //IL_0eb9: Unknown result type (might be due to invalid IL or missing references) //IL_0ec3: Unknown result type (might be due to invalid IL or missing references) //IL_0ec8: Unknown result type (might be due to invalid IL or missing references) //IL_0ece: Unknown result type (might be due to invalid IL or missing references) //IL_0ed3: Unknown result type (might be due to invalid IL or missing references) //IL_0ed9: Unknown result type (might be due to invalid IL or missing references) //IL_0ede: Unknown result type (might be due to invalid IL or missing references) //IL_0ee4: Unknown result type (might be due to invalid IL or missing references) //IL_0ee9: Unknown result type (might be due to invalid IL or missing references) //IL_0eee: Unknown result type (might be due to invalid IL or missing references) //IL_0efe: Unknown result type (might be due to invalid IL or missing references) //IL_0f04: Unknown result type (might be due to invalid IL or missing references) //IL_0f09: Unknown result type (might be due to invalid IL or missing references) //IL_0f0f: Unknown result type (might be due to invalid IL or missing references) //IL_0f14: Unknown result type (might be due to invalid IL or missing references) //IL_0f1a: Unknown result type (might be due to invalid IL or missing references) //IL_0f1f: Unknown result type (might be due to invalid IL or missing references) //IL_0f25: Unknown result type (might be due to invalid IL or missing references) //IL_0f2a: Unknown result type (might be due to invalid IL or missing references) //IL_0f30: Unknown result type (might be due to invalid IL or missing references) //IL_0f3a: Unknown result type (might be due to invalid IL or missing references) //IL_0f3f: Unknown result type (might be due to invalid IL or missing references) //IL_0f45: Unknown result type (might be due to invalid IL or missing references) //IL_0f4a: Unknown result type (might be due to invalid IL or missing references) //IL_0f55: Unknown result type (might be due to invalid IL or missing references) //IL_0f5b: Unknown result type (might be due to invalid IL or missing references) //IL_0f60: Unknown result type (might be due to invalid IL or missing references) //IL_0f66: Unknown result type (might be due to invalid IL or missing references) //IL_0f6b: Unknown result type (might be due to invalid IL or missing references) //IL_0f71: Unknown result type (might be due to invalid IL or missing references) //IL_0f76: Unknown result type (might be due to invalid IL or missing references) //IL_0f7c: Unknown result type (might be due to invalid IL or missing references) //IL_0f81: Unknown result type (might be due to invalid IL or missing references) //IL_0f87: Unknown result type (might be due to invalid IL or missing references) //IL_0f8c: Unknown result type (might be due to invalid IL or missing references) //IL_0f92: Unknown result type (might be due to invalid IL or missing references) //IL_0f97: Unknown result type (might be due to invalid IL or missing references) //IL_0f9d: Unknown result type (might be due to invalid IL or missing references) //IL_0fa2: Unknown result type (might be due to invalid IL or missing references) //IL_0fa7: Unknown result type (might be due to invalid IL or missing references) //IL_0fb7: Unknown result type (might be due to invalid IL or missing references) //IL_0fbd: Unknown result type (might be due to invalid IL or missing references) //IL_0fc2: Unknown result type (might be due to invalid IL or missing references) //IL_0fc8: Unknown result type (might be due to invalid IL or missing references) //IL_0fcd: Unknown result type (might be due to invalid IL or missing references) //IL_0fd3: Unknown result type (might be due to invalid IL or missing references) //IL_0fd8: Unknown result type (might be due to invalid IL or missing references) //IL_0fde: Unknown result type (might be due to invalid IL or missing references) //IL_0fe8: Unknown result type (might be due to invalid IL or missing references) //IL_0fed: Unknown result type (might be due to invalid IL or missing references) //IL_0ff3: Unknown result type (might be due to invalid IL or missing references) //IL_0ff8: Unknown result type (might be due to invalid IL or missing references) //IL_1003: Unknown result type (might be due to invalid IL or missing references) //IL_1009: Unknown result type (might be due to invalid IL or missing references) //IL_100e: Unknown result type (might be due to invalid IL or missing references) //IL_1014: Unknown result type (might be due to invalid IL or missing references) //IL_1019: Unknown result type (might be due to invalid IL or missing references) //IL_101f: Unknown result type (might be due to invalid IL or missing references) //IL_1024: Unknown result type (might be due to invalid IL or missing references) //IL_102a: Unknown result type (might be due to invalid IL or missing references) //IL_1034: Unknown result type (might be due to invalid IL or missing references) //IL_1039: Unknown result type (might be due to invalid IL or missing references) //IL_103f: Unknown result type (might be due to invalid IL or missing references) //IL_1044: Unknown result type (might be due to invalid IL or missing references) //IL_104a: Unknown result type (might be due to invalid IL or missing references) //IL_104f: Unknown result type (might be due to invalid IL or missing references) //IL_1055: Unknown result type (might be due to invalid IL or missing references) //IL_105a: Unknown result type (might be due to invalid IL or missing references) //IL_105f: Unknown result type (might be due to invalid IL or missing references) //IL_106f: Unknown result type (might be due to invalid IL or missing references) //IL_1075: Unknown result type (might be due to invalid IL or missing references) //IL_107a: Unknown result type (might be due to invalid IL or missing references) //IL_1080: Unknown result type (might be due to invalid IL or missing references) //IL_1085: Unknown result type (might be due to invalid IL or missing references) //IL_108b: Unknown result type (might be due to invalid IL or missing references) //IL_1090: Unknown result type (might be due to invalid IL or missing references) //IL_1096: Unknown result type (might be due to invalid IL or missing references) //IL_10a0: Unknown result type (might be due to invalid IL or missing references) //IL_10a5: Unknown result type (might be due to invalid IL or missing references) //IL_10ab: Unknown result type (might be due to invalid IL or missing references) //IL_10b0: Unknown result type (might be due to invalid IL or missing references) //IL_10bb: Unknown result type (might be due to invalid IL or missing references) //IL_10c1: Unknown result type (might be due to invalid IL or missing references) //IL_10c6: Unknown result type (might be due to invalid IL or missing references) //IL_10cc: Unknown result type (might be due to invalid IL or missing references) //IL_10d1: Unknown result type (might be due to invalid IL or missing references) //IL_10d7: Unknown result type (might be due to invalid IL or missing references) //IL_10dc: Unknown result type (might be due to invalid IL or missing references) //IL_10e2: Unknown result type (might be due to invalid IL or missing references) //IL_10ec: Unknown result type (might be due to invalid IL or missing references) //IL_10f1: Unknown result type (might be due to invalid IL or missing references) //IL_10f7: Unknown result type (might be due to invalid IL or missing references) //IL_10fc: Unknown result type (might be due to invalid IL or missing references) //IL_1102: Unknown result type (might be due to invalid IL or missing references) //IL_1107: Unknown result type (might be due to invalid IL or missing references) //IL_110d: Unknown result type (might be due to invalid IL or missing references) //IL_1112: Unknown result type (might be due to invalid IL or missing references) //IL_1117: Unknown result type (might be due to invalid IL or missing references) //IL_1127: Unknown result type (might be due to invalid IL or missing references) //IL_112d: Unknown result type (might be due to invalid IL or missing references) //IL_1132: Unknown result type (might be due to invalid IL or missing references) //IL_1138: Unknown result type (might be due to invalid IL or missing references) //IL_113d: Unknown result type (might be due to invalid IL or missing references) //IL_1143: Unknown result type (might be due to invalid IL or missing references) //IL_114d: Unknown result type (might be due to invalid IL or missing references) //IL_1152: Unknown result type (might be due to invalid IL or missing references) //IL_1158: Unknown result type (might be due to invalid IL or missing references) //IL_1162: Unknown result type (might be due to invalid IL or missing references) //IL_1167: Unknown result type (might be due to invalid IL or missing references) //IL_116d: Unknown result type (might be due to invalid IL or missing references) //IL_1177: Unknown result type (might be due to invalid IL or missing references) //IL_117c: Unknown result type (might be due to invalid IL or missing references) //IL_1182: Unknown result type (might be due to invalid IL or missing references) //IL_118c: Unknown result type (might be due to invalid IL or missing references) //IL_1191: Unknown result type (might be due to invalid IL or missing references) //IL_1197: Unknown result type (might be due to invalid IL or missing references) //IL_119c: Unknown result type (might be due to invalid IL or missing references) //IL_11a7: Unknown result type (might be due to invalid IL or missing references) //IL_11ad: Unknown result type (might be due to invalid IL or missing references) //IL_11b2: Unknown result type (might be due to invalid IL or missing references) //IL_11b8: Unknown result type (might be due to invalid IL or missing references) //IL_11bd: Unknown result type (might be due to invalid IL or missing references) //IL_11c3: Unknown result type (might be due to invalid IL or missing references) //IL_11c8: Unknown result type (might be due to invalid IL or missing references) //IL_11ce: Unknown result type (might be due to invalid IL or missing references) //IL_11d8: Unknown result type (might be due to invalid IL or missing references) //IL_11dd: Unknown result type (might be due to invalid IL or missing references) //IL_11e3: Unknown result type (might be due to invalid IL or missing references) //IL_11ed: Unknown result type (might be due to invalid IL or missing references) //IL_11f2: Unknown result type (might be due to invalid IL or missing references) //IL_11f8: Unknown result type (might be due to invalid IL or missing references) //IL_1202: Unknown result type (might be due to invalid IL or missing references) //IL_1207: Unknown result type (might be due to invalid IL or missing references) //IL_120d: Unknown result type (might be due to invalid IL or missing references) //IL_1212: Unknown result type (might be due to invalid IL or missing references) //IL_1217: Unknown result type (might be due to invalid IL or missing references) //IL_1227: Unknown result type (might be due to invalid IL or missing references) //IL_122d: Unknown result type (might be due to invalid IL or missing references) //IL_1232: Unknown result type (might be due to invalid IL or missing references) //IL_1238: Unknown result type (might be due to invalid IL or missing references) //IL_123d: Unknown result type (might be due to invalid IL or missing references) //IL_1243: Unknown result type (might be due to invalid IL or missing references) //IL_124d: Unknown result type (might be due to invalid IL or missing references) //IL_1252: Unknown result type (might be due to invalid IL or missing references) //IL_1258: Unknown result type (might be due to invalid IL or missing references) //IL_1262: Unknown result type (might be due to invalid IL or missing references) //IL_1267: Unknown result type (might be due to invalid IL or missing references) //IL_126d: Unknown result type (might be due to invalid IL or missing references) //IL_1277: Unknown result type (might be due to invalid IL or missing references) //IL_127c: Unknown result type (might be due to invalid IL or missing references) //IL_1282: Unknown result type (might be due to invalid IL or missing references) //IL_128c: Unknown result type (might be due to invalid IL or missing references) //IL_1291: Unknown result type (might be due to invalid IL or missing references) //IL_1297: Unknown result type (might be due to invalid IL or missing references) //IL_129c: Unknown result type (might be due to invalid IL or missing references) //IL_12a7: Unknown result type (might be due to invalid IL or missing references) //IL_12ad: Unknown result type (might be due to invalid IL or missing references) //IL_12b2: Unknown result type (might be due to invalid IL or missing references) //IL_12b8: Unknown result type (might be due to invalid IL or missing references) //IL_12bd: Unknown result type (might be due to invalid IL or missing references) //IL_12c3: Unknown result type (might be due to invalid IL or missing references) //IL_12c8: Unknown result type (might be due to invalid IL or missing references) //IL_12ce: Unknown result type (might be due to invalid IL or missing references) //IL_12d8: Unknown result type (might be due to invalid IL or missing references) //IL_12dd: Unknown result type (might be due to invalid IL or missing references) //IL_12e3: Unknown result type (might be due to invalid IL or missing references) //IL_12ed: Unknown result type (might be due to invalid IL or missing references) //IL_12f2: Unknown result type (might be due to invalid IL or missing references) //IL_12f8: Unknown result type (might be due to invalid IL or missing references) //IL_1302: Unknown result type (might be due to invalid IL or missing references) //IL_1307: Unknown result type (might be due to invalid IL or missing references) //IL_130d: Unknown result type (might be due to invalid IL or missing references) //IL_1312: Unknown result type (might be due to invalid IL or missing references) //IL_1317: Unknown result type (might be due to invalid IL or missing references) //IL_1327: Unknown result type (might be due to invalid IL or missing references) //IL_132d: Unknown result type (might be due to invalid IL or missing references) //IL_1332: Unknown result type (might be due to invalid IL or missing references) //IL_1338: Unknown result type (might be due to invalid IL or missing references) //IL_133d: Unknown result type (might be due to invalid IL or missing references) //IL_1343: Unknown result type (might be due to invalid IL or missing references) //IL_1348: Unknown result type (might be due to invalid IL or missing references) //IL_134e: Unknown result type (might be due to invalid IL or missing references) //IL_1353: Unknown result type (might be due to invalid IL or missing references) //IL_1359: Unknown result type (might be due to invalid IL or missing references) //IL_1363: Unknown result type (might be due to invalid IL or missing references) //IL_1368: Unknown result type (might be due to invalid IL or missing references) //IL_1373: Unknown result type (might be due to invalid IL or missing references) //IL_1379: Unknown result type (might be due to invalid IL or missing references) //IL_137e: Unknown result type (might be due to invalid IL or missing references) //IL_1384: Unknown result type (might be due to invalid IL or missing references) //IL_1389: Unknown result type (might be due to invalid IL or missing references) //IL_138f: Unknown result type (might be due to invalid IL or missing references) //IL_1394: Unknown result type (might be due to invalid IL or missing references) //IL_139a: Unknown result type (might be due to invalid IL or missing references) //IL_139f: Unknown result type (might be due to invalid IL or missing references) //IL_13a5: Unknown result type (might be due to invalid IL or missing references) //IL_13af: Unknown result type (might be due to invalid IL or missing references) //IL_13b4: Unknown result type (might be due to invalid IL or missing references) //IL_13ba: Unknown result type (might be due to invalid IL or missing references) //IL_13bf: Unknown result type (might be due to invalid IL or missing references) //IL_13c4: Unknown result type (might be due to invalid IL or missing references) //IL_13d4: Unknown result type (might be due to invalid IL or missing references) //IL_13da: Unknown result type (might be due to invalid IL or missing references) //IL_13df: Unknown result type (might be due to invalid IL or missing references) //IL_13e5: Unknown result type (might be due to invalid IL or missing references) //IL_13ea: Unknown result type (might be due to invalid IL or missing references) //IL_13f0: Unknown result type (might be due to invalid IL or missing references) //IL_13f5: Unknown result type (might be due to invalid IL or missing references) //IL_13fb: Unknown result type (might be due to invalid IL or missing references) //IL_1405: Unknown result type (might be due to invalid IL or missing references) //IL_140a: Unknown result type (might be due to invalid IL or missing references) //IL_1410: Unknown result type (might be due to invalid IL or missing references) //IL_141a: Unknown result type (might be due to invalid IL or missing references) //IL_141f: Unknown result type (might be due to invalid IL or missing references) //IL_1425: Unknown result type (might be due to invalid IL or missing references) //IL_142a: Unknown result type (might be due to invalid IL or missing references) //IL_1435: Unknown result type (might be due to invalid IL or missing references) //IL_143b: Unknown result type (might be due to invalid IL or missing references) //IL_1440: Unknown result type (might be due to invalid IL or missing references) //IL_1446: Unknown result type (might be due to invalid IL or missing references) //IL_144b: Unknown result type (might be due to invalid IL or missing references) //IL_1451: Unknown result type (might be due to invalid IL or missing references) //IL_1456: Unknown result type (might be due to invalid IL or missing references) //IL_145c: Unknown result type (might be due to invalid IL or missing references) //IL_1466: Unknown result type (might be due to invalid IL or missing references) //IL_146b: Unknown result type (might be due to invalid IL or missing references) //IL_1471: Unknown result type (might be due to invalid IL or missing references) //IL_1476: Unknown result type (might be due to invalid IL or missing references) //IL_147c: Unknown result type (might be due to invalid IL or missing references) //IL_1481: Unknown result type (might be due to invalid IL or missing references) //IL_1487: Unknown result type (might be due to invalid IL or missing references) //IL_148c: Unknown result type (might be due to invalid IL or missing references) //IL_1491: Unknown result type (might be due to invalid IL or missing references) //IL_14a1: Unknown result type (might be due to invalid IL or missing references) //IL_14a7: Unknown result type (might be due to invalid IL or missing references) //IL_14ac: Unknown result type (might be due to invalid IL or missing references) //IL_14b2: Unknown result type (might be due to invalid IL or missing references) //IL_14b7: Unknown result type (might be due to invalid IL or missing references) //IL_14bd: Unknown result type (might be due to invalid IL or missing references) //IL_14c2: Unknown result type (might be due to invalid IL or missing references) //IL_14c8: Unknown result type (might be due to invalid IL or missing references) //IL_14cd: Unknown result type (might be due to invalid IL or missing references) //IL_14d3: Unknown result type (might be due to invalid IL or missing references) //IL_14dd: Unknown result type (might be due to invalid IL or missing references) //IL_14e2: Unknown result type (might be due to invalid IL or missing references) //IL_14e8: Unknown result type (might be due to invalid IL or missing references) //IL_14ed: Unknown result type (might be due to invalid IL or missing references) //IL_14f8: Unknown result type (might be due to invalid IL or missing references) //IL_14fe: Unknown result type (might be due to invalid IL or missing references) //IL_1503: Unknown result type (might be due to invalid IL or missing references) //IL_1509: Unknown result type (might be due to invalid IL or missing references) //IL_150e: Unknown result type (might be due to invalid IL or missing references) //IL_1514: Unknown result type (might be due to invalid IL or missing references) //IL_1519: Unknown result type (might be due to invalid IL or missing references) //IL_151f: Unknown result type (might be due to invalid IL or missing references) //IL_1524: Unknown result type (might be due to invalid IL or missing references) //IL_152a: Unknown result type (might be due to invalid IL or missing references) //IL_152f: Unknown result type (might be due to invalid IL or missing references) //IL_1535: Unknown result type (might be due to invalid IL or missing references) //IL_153a: Unknown result type (might be due to invalid IL or missing references) //IL_1540: Unknown result type (might be due to invalid IL or missing references) //IL_1545: Unknown result type (might be due to invalid IL or missing references) //IL_154a: Unknown result type (might be due to invalid IL or missing references) //IL_155a: Unknown result type (might be due to invalid IL or missing references) //IL_1560: Unknown result type (might be due to invalid IL or missing references) //IL_1565: Unknown result type (might be due to invalid IL or missing references) //IL_156b: Unknown result type (might be due to invalid IL or missing references) //IL_1570: Unknown result type (might be due to invalid IL or missing references) //IL_1576: Unknown result type (might be due to invalid IL or missing references) //IL_157b: Unknown result type (might be due to invalid IL or missing references) //IL_1581: Unknown result type (might be due to invalid IL or missing references) //IL_158b: Unknown result type (might be due to invalid IL or missing references) //IL_1590: Unknown result type (might be due to invalid IL or missing references) //IL_1596: Unknown result type (might be due to invalid IL or missing references) //IL_159b: Unknown result type (might be due to invalid IL or missing references) //IL_15a6: Unknown result type (might be due to invalid IL or missing references) //IL_15ac: Unknown result type (might be due to invalid IL or missing references) //IL_15b1: Unknown result type (might be due to invalid IL or missing references) //IL_15b7: Unknown result type (might be due to invalid IL or missing references) //IL_15bc: Unknown result type (might be due to invalid IL or missing references) //IL_15c2: Unknown result type (might be due to invalid IL or missing references) //IL_15c7: Unknown result type (might be due to invalid IL or missing references) //IL_15cd: Unknown result type (might be due to invalid IL or missing references) //IL_15d7: Unknown result type (might be due to invalid IL or missing references) //IL_15dc: Unknown result type (might be due to invalid IL or missing references) //IL_15e2: Unknown result type (might be due to invalid IL or missing references) //IL_15e7: Unknown result type (might be due to invalid IL or missing references) //IL_15ed: Unknown result type (might be due to invalid IL or missing references) //IL_15f2: Unknown result type (might be due to invalid IL or missing references) //IL_15f8: Unknown result type (might be due to invalid IL or missing references) //IL_15fd: Unknown result type (might be due to invalid IL or missing references) //IL_1602: Unknown result type (might be due to invalid IL or missing references) //IL_1612: Unknown result type (might be due to invalid IL or missing references) //IL_1618: Unknown result type (might be due to invalid IL or missing references) //IL_161d: Unknown result type (might be due to invalid IL or missing references) //IL_1623: Unknown result type (might be due to invalid IL or missing references) //IL_1628: Unknown result type (might be due to invalid IL or missing references) //IL_162e: Unknown result type (might be due to invalid IL or missing references) //IL_1633: Unknown result type (might be due to invalid IL or missing references) //IL_1639: Unknown result type (might be due to invalid IL or missing references) //IL_1643: Unknown result type (might be due to invalid IL or missing references) //IL_1648: Unknown result type (might be due to invalid IL or missing references) //IL_164e: Unknown result type (might be due to invalid IL or missing references) //IL_1653: Unknown result type (might be due to invalid IL or missing references) //IL_165e: Unknown result type (might be due to invalid IL or missing references) //IL_1664: Unknown result type (might be due to invalid IL or missing references) //IL_1669: Unknown result type (might be due to invalid IL or missing references) //IL_166f: Unknown result type (might be due to invalid IL or missing references) //IL_1674: Unknown result type (might be due to invalid IL or missing references) //IL_167a: Unknown result type (might be due to invalid IL or missing references) //IL_167f: Unknown result type (might be due to invalid IL or missing references) //IL_1685: Unknown result type (might be due to invalid IL or missing references) //IL_168f: Unknown result type (might be due to invalid IL or missing references) //IL_1694: Unknown result type (might be due to invalid IL or missing references) //IL_169a: Unknown result type (might be due to invalid IL or missing references) //IL_169f: Unknown result type (might be due to invalid IL or missing references) //IL_16a5: Unknown result type (might be due to invalid IL or missing references) //IL_16aa: Unknown result type (might be due to invalid IL or missing references) //IL_16b0: Unknown result type (might be due to invalid IL or missing references) //IL_16b5: Unknown result type (might be due to invalid IL or missing references) //IL_16ba: Unknown result type (might be due to invalid IL or missing references) //IL_0601: Unknown result type (might be due to invalid IL or missing references) //IL_0607: Unknown result type (might be due to invalid IL or missing references) //IL_060c: Unknown result type (might be due to invalid IL or missing references) //IL_0612: Unknown result type (might be due to invalid IL or missing references) //IL_061c: Unknown result type (might be due to invalid IL or missing references) //IL_0621: Unknown result type (might be due to invalid IL or missing references) //IL_0627: Unknown result type (might be due to invalid IL or missing references) //IL_0631: Unknown result type (might be due to invalid IL or missing references) //IL_0636: Unknown result type (might be due to invalid IL or missing references) //IL_063c: Unknown result type (might be due to invalid IL or missing references) //IL_0641: Unknown result type (might be due to invalid IL or missing references) //IL_064c: Unknown result type (might be due to invalid IL or missing references) //IL_0652: Unknown result type (might be due to invalid IL or missing references) //IL_0657: Unknown result type (might be due to invalid IL or missing references) //IL_065d: Unknown result type (might be due to invalid IL or missing references) //IL_0667: Unknown result type (might be due to invalid IL or missing references) //IL_066c: Unknown result type (might be due to invalid IL or missing references) //IL_0672: Unknown result type (might be due to invalid IL or missing references) //IL_067c: Unknown result type (might be due to invalid IL or missing references) //IL_0681: Unknown result type (might be due to invalid IL or missing references) //IL_0686: Unknown result type (might be due to invalid IL or missing references) //IL_0696: Unknown result type (might be due to invalid IL or missing references) //IL_069c: Unknown result type (might be due to invalid IL or missing references) //IL_06a1: Unknown result type (might be due to invalid IL or missing references) //IL_06a7: Unknown result type (might be due to invalid IL or missing references) //IL_06b1: Unknown result type (might be due to invalid IL or missing references) //IL_06b6: Unknown result type (might be due to invalid IL or missing references) //IL_06bc: Unknown result type (might be due to invalid IL or missing references) //IL_06c6: Unknown result type (might be due to invalid IL or missing references) //IL_06cb: Unknown result type (might be due to invalid IL or missing references) //IL_06d1: Unknown result type (might be due to invalid IL or missing references) //IL_06d6: Unknown result type (might be due to invalid IL or missing references) //IL_06e1: Unknown result type (might be due to invalid IL or missing references) //IL_06e7: Unknown result type (might be due to invalid IL or missing references) //IL_06ec: Unknown result type (might be due to invalid IL or missing references) //IL_06f2: Unknown result type (might be due to invalid IL or missing references) //IL_06fc: Unknown result type (might be due to invalid IL or missing references) //IL_0701: Unknown result type (might be due to invalid IL or missing references) //IL_0707: Unknown result type (might be due to invalid IL or missing references) //IL_0711: Unknown result type (might be due to invalid IL or missing references) //IL_0716: Unknown result type (might be due to invalid IL or missing references) //IL_071c: Unknown result type (might be due to invalid IL or missing references) //IL_0721: Unknown result type (might be due to invalid IL or missing references) //IL_0726: Unknown result type (might be due to invalid IL or missing references) //IL_0736: Unknown result type (might be due to invalid IL or missing references) //IL_073c: Unknown result type (might be due to invalid IL or missing references) //IL_0741: Unknown result type (might be due to invalid IL or missing references) //IL_0747: Unknown result type (might be due to invalid IL or missing references) //IL_0751: Unknown result type (might be due to invalid IL or missing references) //IL_0756: Unknown result type (might be due to invalid IL or missing references) //IL_075c: Unknown result type (might be due to invalid IL or missing references) //IL_0766: Unknown result type (might be due to invalid IL or missing references) //IL_076b: Unknown result type (might be due to invalid IL or missing references) //IL_0771: Unknown result type (might be due to invalid IL or missing references) //IL_0776: Unknown result type (might be due to invalid IL or missing references) //IL_0781: Unknown result type (might be due to invalid IL or missing references) //IL_0787: Unknown result type (might be due to invalid IL or missing references) //IL_078c: Unknown result type (might be due to invalid IL or missing references) //IL_0792: Unknown result type (might be due to invalid IL or missing references) //IL_079c: Unknown result type (might be due to invalid IL or missing references) //IL_07a1: Unknown result type (might be due to invalid IL or missing references) //IL_07a7: Unknown result type (might be due to invalid IL or missing references) //IL_07b1: Unknown result type (might be due to invalid IL or missing references) //IL_07b6: Unknown result type (might be due to invalid IL or missing references) //IL_07bb: Unknown result type (might be due to invalid IL or missing references) //IL_07dd: Unknown result type (might be due to invalid IL or missing references) //IL_07e3: Unknown result type (might be due to invalid IL or missing references) //IL_07e8: Unknown result type (might be due to invalid IL or missing references) //IL_07f3: Unknown result type (might be due to invalid IL or missing references) //IL_07f9: Unknown result type (might be due to invalid IL or missing references) //IL_07fe: Unknown result type (might be due to invalid IL or missing references) //IL_0809: Unknown result type (might be due to invalid IL or missing references) //IL_0813: Unknown result type (might be due to invalid IL or missing references) //IL_0818: Unknown result type (might be due to invalid IL or missing references) //IL_0823: Unknown result type (might be due to invalid IL or missing references) //IL_0829: Unknown result type (might be due to invalid IL or missing references) //IL_082e: Unknown result type (might be due to invalid IL or missing references) //IL_0839: Unknown result type (might be due to invalid IL or missing references) //IL_083f: Unknown result type (might be due to invalid IL or missing references) //IL_0844: Unknown result type (might be due to invalid IL or missing references) //IL_084f: Unknown result type (might be due to invalid IL or missing references) //IL_0859: Unknown result type (might be due to invalid IL or missing references) //IL_085e: Unknown result type (might be due to invalid IL or missing references) //IL_0864: Unknown result type (might be due to invalid IL or missing references) //IL_0869: Unknown result type (might be due to invalid IL or missing references) //IL_086f: Unknown result type (might be due to invalid IL or missing references) //IL_0874: Unknown result type (might be due to invalid IL or missing references) //IL_0879: Unknown result type (might be due to invalid IL or missing references) //IL_0889: Unknown result type (might be due to invalid IL or missing references) //IL_088f: Unknown result type (might be due to invalid IL or missing references) //IL_0894: Unknown result type (might be due to invalid IL or missing references) //IL_089f: Unknown result type (might be due to invalid IL or missing references) //IL_08a5: Unknown result type (might be due to invalid IL or missing references) //IL_08aa: Unknown result type (might be due to invalid IL or missing references) //IL_08b5: Unknown result type (might be due to invalid IL or missing references) //IL_08bf: Unknown result type (might be due to invalid IL or missing references) //IL_08c4: Unknown result type (might be due to invalid IL or missing references) //IL_08cf: Unknown result type (might be due to invalid IL or missing references) //IL_08d5: Unknown result type (might be due to invalid IL or missing references) //IL_08da: Unknown result type (might be due to invalid IL or missing references) //IL_08e5: Unknown result type (might be due to invalid IL or missing references) //IL_08eb: Unknown result type (might be due to invalid IL or missing references) //IL_08f0: Unknown result type (might be due to invalid IL or missing references) //IL_08fb: Unknown result type (might be due to invalid IL or missing references) //IL_0905: Unknown result type (might be due to invalid IL or missing references) //IL_090a: Unknown result type (might be due to invalid IL or missing references) //IL_0910: Unknown result type (might be due to invalid IL or missing references) //IL_091a: Unknown result type (might be due to invalid IL or missing references) //IL_091f: Unknown result type (might be due to invalid IL or missing references) //IL_0925: Unknown result type (might be due to invalid IL or missing references) //IL_092a: Unknown result type (might be due to invalid IL or missing references) //IL_092f: Unknown result type (might be due to invalid IL or missing references) //IL_093f: Unknown result type (might be due to invalid IL or missing references) //IL_0945: Unknown result type (might be due to invalid IL or missing references) //IL_094a: Unknown result type (might be due to invalid IL or missing references) //IL_0955: Unknown result type (might be due to invalid IL or missing references) //IL_095b: Unknown result type (might be due to invalid IL or missing references) //IL_0960: Unknown result type (might be due to invalid IL or missing references) //IL_096b: Unknown result type (might be due to invalid IL or missing references) //IL_0975: Unknown result type (might be due to invalid IL or missing references) //IL_097a: Unknown result type (might be due to invalid IL or missing references) //IL_0985: Unknown result type (might be due to invalid IL or missing references) //IL_098b: Unknown result type (might be due to invalid IL or missing references) //IL_0990: Unknown result type (might be due to invalid IL or missing references) //IL_099b: Unknown result type (might be due to invalid IL or missing references) //IL_09a1: Unknown result type (might be due to invalid IL or missing references) //IL_09a6: Unknown result type (might be due to invalid IL or missing references) //IL_09b1: Unknown result type (might be due to invalid IL or missing references) //IL_09bb: Unknown result type (might be due to invalid IL or missing references) //IL_09c0: Unknown result type (might be due to invalid IL or missing references) //IL_09c6: Unknown result type (might be due to invalid IL or missing references) //IL_09d0: Unknown result type (might be due to invalid IL or missing references) //IL_09d5: Unknown result type (might be due to invalid IL or missing references) //IL_09db: Unknown result type (might be due to invalid IL or missing references) //IL_09e0: Unknown result type (might be due to invalid IL or missing references) //IL_09e5: Unknown result type (might be due to invalid IL or missing references) //IL_16e7: Unknown result type (might be due to invalid IL or missing references) //IL_16ed: Unknown result type (might be due to invalid IL or missing references) //IL_16f2: Unknown result type (might be due to invalid IL or missing references) //IL_16f8: Unknown result type (might be due to invalid IL or missing references) //IL_16fd: Unknown result type (might be due to invalid IL or missing references) //IL_1703: Unknown result type (might be due to invalid IL or missing references) //IL_170d: Unknown result type (might be due to invalid IL or missing references) //IL_1712: Unknown result type (might be due to invalid IL or missing references) //IL_1718: Unknown result type (might be due to invalid IL or missing references) //IL_171d: Unknown result type (might be due to invalid IL or missing references) //IL_1728: Unknown result type (might be due to invalid IL or missing references) //IL_172e: Unknown result type (might be due to invalid IL or missing references) //IL_1733: Unknown result type (might be due to invalid IL or missing references) //IL_1739: Unknown result type (might be due to invalid IL or missing references) //IL_1743: Unknown result type (might be due to invalid IL or missing references) //IL_1748: Unknown result type (might be due to invalid IL or missing references) //IL_174e: Unknown result type (might be due to invalid IL or missing references) //IL_1758: Unknown result type (might be due to invalid IL or missing references) //IL_175d: Unknown result type (might be due to invalid IL or missing references) //IL_1763: Unknown result type (might be due to invalid IL or missing references) //IL_1768: Unknown result type (might be due to invalid IL or missing references) //IL_176e: Unknown result type (might be due to invalid IL or missing references) //IL_1773: Unknown result type (might be due to invalid IL or missing references) //IL_1778: Unknown result type (might be due to invalid IL or missing references) //IL_1836: Unknown result type (might be due to invalid IL or missing references) //IL_183c: Unknown result type (might be due to invalid IL or missing references) //IL_1841: Unknown result type (might be due to invalid IL or missing references) //IL_1847: Unknown result type (might be due to invalid IL or missing references) //IL_184c: Unknown result type (might be due to invalid IL or missing references) //IL_1852: Unknown result type (might be due to invalid IL or missing references) //IL_185c: Unknown result type (might be due to invalid IL or missing references) //IL_1861: Unknown result type (might be due to invalid IL or missing references) //IL_1867: Unknown result type (might be due to invalid IL or missing references) //IL_186c: Unknown result type (might be due to invalid IL or missing references) //IL_1877: Unknown result type (might be due to invalid IL or missing references) //IL_187d: Unknown result type (might be due to invalid IL or missing references) //IL_1882: Unknown result type (might be due to invalid IL or missing references) //IL_1888: Unknown result type (might be due to invalid IL or missing references) //IL_1892: Unknown result type (might be due to invalid IL or missing references) //IL_1897: Unknown result type (might be due to invalid IL or missing references) //IL_189d: Unknown result type (might be due to invalid IL or missing references) //IL_18a7: Unknown result type (might be due to invalid IL or missing references) //IL_18ac: Unknown result type (might be due to invalid IL or missing references) //IL_18b2: Unknown result type (might be due to invalid IL or missing references) //IL_18b7: Unknown result type (might be due to invalid IL or missing references) //IL_18bd: Unknown result type (might be due to invalid IL or missing references) //IL_18c2: Unknown result type (might be due to invalid IL or missing references) //IL_18c7: Unknown result type (might be due to invalid IL or missing references) //IL_1794: Unknown result type (might be due to invalid IL or missing references) //IL_179a: Unknown result type (might be due to invalid IL or missing references) //IL_179f: Unknown result type (might be due to invalid IL or missing references) //IL_17a5: Unknown result type (might be due to invalid IL or missing references) //IL_17aa: Unknown result type (might be due to invalid IL or missing references) //IL_17b0: Unknown result type (might be due to invalid IL or missing references) //IL_17ba: Unknown result type (might be due to invalid IL or missing references) //IL_17bf: Unknown result type (might be due to invalid IL or missing references) //IL_17c5: Unknown result type (might be due to invalid IL or missing references) //IL_17ca: Unknown result type (might be due to invalid IL or missing references) //IL_17d5: Unknown result type (might be due to invalid IL or missing references) //IL_17db: Unknown result type (might be due to invalid IL or missing references) //IL_17e0: Unknown result type (might be due to invalid IL or missing references) //IL_17e6: Unknown result type (might be due to invalid IL or missing references) //IL_17f0: Unknown result type (might be due to invalid IL or missing references) //IL_17f5: Unknown result type (might be due to invalid IL or missing references) //IL_17fb: Unknown result type (might be due to invalid IL or missing references) //IL_1805: Unknown result type (might be due to invalid IL or missing references) //IL_180a: Unknown result type (might be due to invalid IL or missing references) //IL_1810: Unknown result type (might be due to invalid IL or missing references) //IL_1815: Unknown result type (might be due to invalid IL or missing references) //IL_181b: Unknown result type (might be due to invalid IL or missing references) //IL_1820: Unknown result type (might be due to invalid IL or missing references) //IL_1825: Unknown result type (might be due to invalid IL or missing references) //IL_19e3: Unknown result type (might be due to invalid IL or missing references) //IL_19f3: Unknown result type (might be due to invalid IL or missing references) //IL_19f8: Unknown result type (might be due to invalid IL or missing references) //IL_19ff: Unknown result type (might be due to invalid IL or missing references) //IL_1a0f: Unknown result type (might be due to invalid IL or missing references) //IL_1a14: Unknown result type (might be due to invalid IL or missing references) //IL_1a1b: Unknown result type (might be due to invalid IL or missing references) //IL_1a2b: Unknown result type (might be due to invalid IL or missing references) //IL_1a30: Unknown result type (might be due to invalid IL or missing references) //IL_1a37: Unknown result type (might be due to invalid IL or missing references) //IL_1a47: Unknown result type (might be due to invalid IL or missing references) //IL_1a4c: Unknown result type (might be due to invalid IL or missing references) //IL_1a53: Unknown result type (might be due to invalid IL or missing references) //IL_1a63: Unknown result type (might be due to invalid IL or missing references) //IL_1a68: Unknown result type (might be due to invalid IL or missing references) //IL_1a6f: Unknown result type (might be due to invalid IL or missing references) //IL_1a7f: Unknown result type (might be due to invalid IL or missing references) //IL_1a84: Unknown result type (might be due to invalid IL or missing references) //IL_1a8b: Unknown result type (might be due to invalid IL or missing references) //IL_1a9b: Unknown result type (might be due to invalid IL or missing references) //IL_1aa0: Unknown result type (might be due to invalid IL or missing references) //IL_1aa7: Unknown result type (might be due to invalid IL or missing references) //IL_1ab7: Unknown result type (might be due to invalid IL or missing references) //IL_1abc: Unknown result type (might be due to invalid IL or missing references) //IL_1ac3: Unknown result type (might be due to invalid IL or missing references) //IL_1ad3: Unknown result type (might be due to invalid IL or missing references) //IL_1ad8: Unknown result type (might be due to invalid IL or missing references) //IL_1adf: Unknown result type (might be due to invalid IL or missing references) //IL_1aef: Unknown result type (might be due to invalid IL or missing references) //IL_1af4: Unknown result type (might be due to invalid IL or missing references) //IL_1afb: Unknown result type (might be due to invalid IL or missing references) //IL_1b0b: Unknown result type (might be due to invalid IL or missing references) //IL_1b10: Unknown result type (might be due to invalid IL or missing references) //IL_1b17: Unknown result type (might be due to invalid IL or missing references) //IL_1b27: Unknown result type (might be due to invalid IL or missing references) //IL_1b2c: Unknown result type (might be due to invalid IL or missing references) //IL_1b33: Unknown result type (might be due to invalid IL or missing references) //IL_1b43: Unknown result type (might be due to invalid IL or missing references) //IL_1b48: Unknown result type (might be due to invalid IL or missing references) //IL_1b4f: Unknown result type (might be due to invalid IL or missing references) //IL_1b5f: Unknown result type (might be due to invalid IL or missing references) //IL_1b64: Unknown result type (might be due to invalid IL or missing references) //IL_1985: Unknown result type (might be due to invalid IL or missing references) //IL_198b: Unknown result type (might be due to invalid IL or missing references) //IL_1990: Unknown result type (might be due to invalid IL or missing references) //IL_1996: Unknown result type (might be due to invalid IL or missing references) //IL_199b: Unknown result type (might be due to invalid IL or missing references) //IL_19a6: Unknown result type (might be due to invalid IL or missing references) //IL_19ac: Unknown result type (might be due to invalid IL or missing references) //IL_19b1: Unknown result type (might be due to invalid IL or missing references) //IL_19b7: Unknown result type (might be due to invalid IL or missing references) //IL_19c1: Unknown result type (might be due to invalid IL or missing references) //IL_19c6: Unknown result type (might be due to invalid IL or missing references) //IL_19cc: Unknown result type (might be due to invalid IL or missing references) //IL_19d1: Unknown result type (might be due to invalid IL or missing references) //IL_19d6: Unknown result type (might be due to invalid IL or missing references) //IL_18e3: Unknown result type (might be due to invalid IL or missing references) //IL_18e9: Unknown result type (might be due to invalid IL or missing references) //IL_18ee: Unknown result type (might be due to invalid IL or missing references) //IL_18f4: Unknown result type (might be due to invalid IL or missing references) //IL_18f9: Unknown result type (might be due to invalid IL or missing references) //IL_18ff: Unknown result type (might be due to invalid IL or missing references) //IL_1909: Unknown result type (might be due to invalid IL or missing references) //IL_190e: Unknown result type (might be due to invalid IL or missing references) //IL_1914: Unknown result type (might be due to invalid IL or missing references) //IL_1919: Unknown result type (might be due to invalid IL or missing references) //IL_1924: Unknown result type (might be due to invalid IL or missing references) //IL_192a: Unknown result type (might be due to invalid IL or missing references) //IL_192f: Unknown result type (might be due to invalid IL or missing references) //IL_1935: Unknown result type (might be due to invalid IL or missing references) //IL_193f: Unknown result type (might be due to invalid IL or missing references) //IL_1944: Unknown result type (might be due to invalid IL or missing references) //IL_194a: Unknown result type (might be due to invalid IL or missing references) //IL_1954: Unknown result type (might be due to invalid IL or missing references) //IL_1959: Unknown result type (might be due to invalid IL or missing references) //IL_195f: Unknown result type (might be due to invalid IL or missing references) //IL_1964: Unknown result type (might be due to invalid IL or missing references) //IL_196a: Unknown result type (might be due to invalid IL or missing references) //IL_196f: Unknown result type (might be due to invalid IL or missing references) //IL_1974: Unknown result type (might be due to invalid IL or missing references) //IL_2d58: Unknown result type (might be due to invalid IL or missing references) //IL_2d68: Unknown result type (might be due to invalid IL or missing references) //IL_2d6d: Unknown result type (might be due to invalid IL or missing references) //IL_2d74: Unknown result type (might be due to invalid IL or missing references) //IL_2d84: Unknown result type (might be due to invalid IL or missing references) //IL_2d89: Unknown result type (might be due to invalid IL or missing references) //IL_2d90: Unknown result type (might be due to invalid IL or missing references) //IL_2da0: Unknown result type (might be due to invalid IL or missing references) //IL_2da5: Unknown result type (might be due to invalid IL or missing references) //IL_2dac: Unknown result type (might be due to invalid IL or missing references) //IL_2dbc: Unknown result type (might be due to invalid IL or missing references) //IL_2dc1: Unknown result type (might be due to invalid IL or missing references) //IL_2dc8: Unknown result type (might be due to invalid IL or missing references) //IL_2dd8: Unknown result type (might be due to invalid IL or missing references) //IL_2ddd: Unknown result type (might be due to invalid IL or missing references) //IL_2de4: Unknown result type (might be due to invalid IL or missing references) //IL_2df4: Unknown result type (might be due to invalid IL or missing references) //IL_2df9: Unknown result type (might be due to invalid IL or missing references) //IL_2e00: Unknown result type (might be due to invalid IL or missing references) //IL_2e16: Unknown result type (might be due to invalid IL or missing references) //IL_2e1b: Unknown result type (might be due to invalid IL or missing references) //IL_2e22: Unknown result type (might be due to invalid IL or missing references) //IL_2e32: Unknown result type (might be due to invalid IL or missing references) //IL_2e37: Unknown result type (might be due to invalid IL or missing references) //IL_2e3e: Unknown result type (might be due to invalid IL or missing references) //IL_2e4e: Unknown result type (might be due to invalid IL or missing references) //IL_2e53: Unknown result type (might be due to invalid IL or missing references) //IL_2e5a: Unknown result type (might be due to invalid IL or missing references) //IL_2e6a: Unknown result type (might be due to invalid IL or missing references) //IL_2e6f: Unknown result type (might be due to invalid IL or missing references) //IL_2e76: Unknown result type (might be due to invalid IL or missing references) //IL_2e86: Unknown result type (might be due to invalid IL or missing references) //IL_2e8b: Unknown result type (might be due to invalid IL or missing references) //IL_2e92: Unknown result type (might be due to invalid IL or missing references) //IL_2ea2: Unknown result type (might be due to invalid IL or missing references) //IL_2ea7: Unknown result type (might be due to invalid IL or missing references) //IL_2ece: Unknown result type (might be due to invalid IL or missing references) //IL_2ed4: Unknown result type (might be due to invalid IL or missing references) //IL_2ed9: Unknown result type (might be due to invalid IL or missing references) //IL_2edf: Unknown result type (might be due to invalid IL or missing references) //IL_2ee9: Unknown result type (might be due to invalid IL or missing references) //IL_2eee: Unknown result type (might be due to invalid IL or missing references) //IL_2ef9: Unknown result type (might be due to invalid IL or missing references) //IL_2eff: Unknown result type (might be due to invalid IL or missing references) //IL_2f04: Unknown result type (might be due to invalid IL or missing references) //IL_2f0a: Unknown result type (might be due to invalid IL or missing references) //IL_2f14: Unknown result type (might be due to invalid IL or missing references) //IL_2f19: Unknown result type (might be due to invalid IL or missing references) //IL_2f1f: Unknown result type (might be due to invalid IL or missing references) //IL_2f29: Unknown result type (might be due to invalid IL or missing references) //IL_2f2e: Unknown result type (might be due to invalid IL or missing references) //IL_2f34: Unknown result type (might be due to invalid IL or missing references) //IL_2f39: Unknown result type (might be due to invalid IL or missing references) //IL_2f3e: Unknown result type (might be due to invalid IL or missing references) //IL_2f4e: Unknown result type (might be due to invalid IL or missing references) //IL_2f54: Unknown result type (might be due to invalid IL or missing references) //IL_2f59: Unknown result type (might be due to invalid IL or missing references) //IL_2f5f: Unknown result type (might be due to invalid IL or missing references) //IL_2f69: Unknown result type (might be due to invalid IL or missing references) //IL_2f6e: Unknown result type (might be due to invalid IL or missing references) //IL_2f74: Unknown result type (might be due to invalid IL or missing references) //IL_2f7e: Unknown result type (might be due to invalid IL or missing references) //IL_2f83: Unknown result type (might be due to invalid IL or missing references) //IL_2f89: Unknown result type (might be due to invalid IL or missing references) //IL_2f8e: Unknown result type (might be due to invalid IL or missing references) //IL_2f99: Unknown result type (might be due to invalid IL or missing references) //IL_2f9f: Unknown result type (might be due to invalid IL or missing references) //IL_2fa4: Unknown result type (might be due to invalid IL or missing references) //IL_2faa: Unknown result type (might be due to invalid IL or missing references) //IL_2fb4: Unknown result type (might be due to invalid IL or missing references) //IL_2fb9: Unknown result type (might be due to invalid IL or missing references) //IL_2fbf: Unknown result type (might be due to invalid IL or missing references) //IL_2fc9: Unknown result type (might be due to invalid IL or missing references) //IL_2fce: Unknown result type (might be due to invalid IL or missing references) //IL_2fd4: Unknown result type (might be due to invalid IL or missing references) //IL_2fd9: Unknown result type (might be due to invalid IL or missing references) //IL_2fdf: Unknown result type (might be due to invalid IL or missing references) //IL_2fe4: Unknown result type (might be due to invalid IL or missing references) //IL_2fe9: Unknown result type (might be due to invalid IL or missing references) //IL_2ff9: Unknown result type (might be due to invalid IL or missing references) //IL_2fff: Unknown result type (might be due to invalid IL or missing references) //IL_3004: Unknown result type (might be due to invalid IL or missing references) //IL_300a: Unknown result type (might be due to invalid IL or missing references) //IL_3014: Unknown result type (might be due to invalid IL or missing references) //IL_3019: Unknown result type (might be due to invalid IL or missing references) //IL_301f: Unknown result type (might be due to invalid IL or missing references) //IL_3029: Unknown result type (might be due to invalid IL or missing references) //IL_302e: Unknown result type (might be due to invalid IL or missing references) //IL_3034: Unknown result type (might be due to invalid IL or missing references) //IL_3039: Unknown result type (might be due to invalid IL or missing references) //IL_3044: Unknown result type (might be due to invalid IL or missing references) //IL_304a: Unknown result type (might be due to invalid IL or missing references) //IL_304f: Unknown result type (might be due to invalid IL or missing references) //IL_3055: Unknown result type (might be due to invalid IL or missing references) //IL_305f: Unknown result type (might be due to invalid IL or missing references) //IL_3064: Unknown result type (might be due to invalid IL or missing references) //IL_306a: Unknown result type (might be due to invalid IL or missing references) //IL_3074: Unknown result type (might be due to invalid IL or missing references) //IL_3079: Unknown result type (might be due to invalid IL or missing references) //IL_307f: Unknown result type (might be due to invalid IL or missing references) //IL_3084: Unknown result type (might be due to invalid IL or missing references) //IL_308a: Unknown result type (might be due to invalid IL or missing references) //IL_308f: Unknown result type (might be due to invalid IL or missing references) //IL_3094: Unknown result type (might be due to invalid IL or missing references) //IL_30a4: Unknown result type (might be due to invalid IL or missing references) //IL_30aa: Unknown result type (might be due to invalid IL or missing references) //IL_30af: Unknown result type (might be due to invalid IL or missing references) //IL_30b5: Unknown result type (might be due to invalid IL or missing references) //IL_30ba: Unknown result type (might be due to invalid IL or missing references) //IL_30c0: Unknown result type (might be due to invalid IL or missing references) //IL_30ca: Unknown result type (might be due to invalid IL or missing references) //IL_30cf: Unknown result type (might be due to invalid IL or missing references) //IL_30d5: Unknown result type (might be due to invalid IL or missing references) //IL_30da: Unknown result type (might be due to invalid IL or missing references) //IL_30e0: Unknown result type (might be due to invalid IL or missing references) //IL_30e5: Unknown result type (might be due to invalid IL or missing references) //IL_30f0: Unknown result type (might be due to invalid IL or missing references) //IL_30f6: Unknown result type (might be due to invalid IL or missing references) //IL_30fb: Unknown result type (might be due to invalid IL or missing references) //IL_3101: Unknown result type (might be due to invalid IL or missing references) //IL_3106: Unknown result type (might be due to invalid IL or missing references) //IL_310c: Unknown result type (might be due to invalid IL or missing references) //IL_3116: Unknown result type (might be due to invalid IL or missing references) //IL_311b: Unknown result type (might be due to invalid IL or missing references) //IL_3121: Unknown result type (might be due to invalid IL or missing references) //IL_3126: Unknown result type (might be due to invalid IL or missing references) //IL_312b: Unknown result type (might be due to invalid IL or missing references) //IL_313b: Unknown result type (might be due to invalid IL or missing references) //IL_3141: Unknown result type (might be due to invalid IL or missing references) //IL_3146: Unknown result type (might be due to invalid IL or missing references) //IL_314c: Unknown result type (might be due to invalid IL or missing references) //IL_3151: Unknown result type (might be due to invalid IL or missing references) //IL_3157: Unknown result type (might be due to invalid IL or missing references) //IL_3161: Unknown result type (might be due to invalid IL or missing references) //IL_3166: Unknown result type (might be due to invalid IL or missing references) //IL_316c: Unknown result type (might be due to invalid IL or missing references) //IL_3176: Unknown result type (might be due to invalid IL or missing references) //IL_317b: Unknown result type (might be due to invalid IL or missing references) //IL_3181: Unknown result type (might be due to invalid IL or missing references) //IL_3186: Unknown result type (might be due to invalid IL or missing references) //IL_318c: Unknown result type (might be due to invalid IL or missing references) //IL_3191: Unknown result type (might be due to invalid IL or missing references) //IL_3197: Unknown result type (might be due to invalid IL or missing references) //IL_319c: Unknown result type (might be due to invalid IL or missing references) //IL_31a7: Unknown result type (might be due to invalid IL or missing references) //IL_31ad: Unknown result type (might be due to invalid IL or missing references) //IL_31b2: Unknown result type (might be due to invalid IL or missing references) //IL_31b8: Unknown result type (might be due to invalid IL or missing references) //IL_31bd: Unknown result type (might be due to invalid IL or missing references) //IL_31c3: Unknown result type (might be due to invalid IL or missing references) //IL_31cd: Unknown result type (might be due to invalid IL or missing references) //IL_31d2: Unknown result type (might be due to invalid IL or missing references) //IL_31d8: Unknown result type (might be due to invalid IL or missing references) //IL_31e2: Unknown result type (might be due to invalid IL or missing references) //IL_31e7: Unknown result type (might be due to invalid IL or missing references) //IL_31ed: Unknown result type (might be due to invalid IL or missing references) //IL_31f2: Unknown result type (might be due to invalid IL or missing references) //IL_31f8: Unknown result type (might be due to invalid IL or missing references) //IL_31fd: Unknown result type (might be due to invalid IL or missing references) //IL_3202: Unknown result type (might be due to invalid IL or missing references) //IL_3212: Unknown result type (might be due to invalid IL or missing references) //IL_3218: Unknown result type (might be due to invalid IL or missing references) //IL_321d: Unknown result type (might be due to invalid IL or missing references) //IL_3223: Unknown result type (might be due to invalid IL or missing references) //IL_3228: Unknown result type (might be due to invalid IL or missing references) //IL_322e: Unknown result type (might be due to invalid IL or missing references) //IL_3238: Unknown result type (might be due to invalid IL or missing references) //IL_323d: Unknown result type (might be due to invalid IL or missing references) //IL_3243: Unknown result type (might be due to invalid IL or missing references) //IL_324d: Unknown result type (might be due to invalid IL or missing references) //IL_3252: Unknown result type (might be due to invalid IL or missing references) //IL_3258: Unknown result type (might be due to invalid IL or missing references) //IL_325d: Unknown result type (might be due to invalid IL or missing references) //IL_3263: Unknown result type (might be due to invalid IL or missing references) //IL_3268: Unknown result type (might be due to invalid IL or missing references) //IL_326e: Unknown result type (might be due to invalid IL or missing references) //IL_3273: Unknown result type (might be due to invalid IL or missing references) //IL_327e: Unknown result type (might be due to invalid IL or missing references) //IL_3284: Unknown result type (might be due to invalid IL or missing references) //IL_3289: Unknown result type (might be due to invalid IL or missing references) //IL_328f: Unknown result type (might be due to invalid IL or missing references) //IL_3294: Unknown result type (might be due to invalid IL or missing references) //IL_329a: Unknown result type (might be due to invalid IL or missing references) //IL_32a4: Unknown result type (might be due to invalid IL or missing references) //IL_32a9: Unknown result type (might be due to invalid IL or missing references) //IL_32af: Unknown result type (might be due to invalid IL or missing references) //IL_32b9: Unknown result type (might be due to invalid IL or missing references) //IL_32be: Unknown result type (might be due to invalid IL or missing references) //IL_32c4: Unknown result type (might be due to invalid IL or missing references) //IL_32c9: Unknown result type (might be due to invalid IL or missing references) //IL_32cf: Unknown result type (might be due to invalid IL or missing references) //IL_32d4: Unknown result type (might be due to invalid IL or missing references) //IL_32d9: Unknown result type (might be due to invalid IL or missing references) //IL_32e9: Unknown result type (might be due to invalid IL or missing references) //IL_32ef: Unknown result type (might be due to invalid IL or missing references) //IL_32f4: Unknown result type (might be due to invalid IL or missing references) //IL_32fa: Unknown result type (might be due to invalid IL or missing references) //IL_3304: Unknown result type (might be due to invalid IL or missing references) //IL_3309: Unknown result type (might be due to invalid IL or missing references) //IL_330f: Unknown result type (might be due to invalid IL or missing references) //IL_3319: Unknown result type (might be due to invalid IL or missing references) //IL_331e: Unknown result type (might be due to invalid IL or missing references) //IL_3324: Unknown result type (might be due to invalid IL or missing references) //IL_3329: Unknown result type (might be due to invalid IL or missing references) //IL_332f: Unknown result type (might be due to invalid IL or missing references) //IL_3334: Unknown result type (might be due to invalid IL or missing references) //IL_333f: Unknown result type (might be due to invalid IL or missing references) //IL_3345: Unknown result type (might be due to invalid IL or missing references) //IL_334a: Unknown result type (might be due to invalid IL or missing references) //IL_3350: Unknown result type (might be due to invalid IL or missing references) //IL_335a: Unknown result type (might be due to invalid IL or missing references) //IL_335f: Unknown result type (might be due to invalid IL or missing references) //IL_3365: Unknown result type (might be due to invalid IL or missing references) //IL_336f: Unknown result type (might be due to invalid IL or missing references) //IL_3374: Unknown result type (might be due to invalid IL or missing references) //IL_337a: Unknown result type (might be due to invalid IL or missing references) //IL_3384: Unknown result type (might be due to invalid IL or missing references) //IL_3389: Unknown result type (might be due to invalid IL or missing references) //IL_338f: Unknown result type (might be due to invalid IL or missing references) //IL_3394: Unknown result type (might be due to invalid IL or missing references) //IL_339a: Unknown result type (might be due to invalid IL or missing references) //IL_339f: Unknown result type (might be due to invalid IL or missing references) //IL_33a5: Unknown result type (might be due to invalid IL or missing references) //IL_33aa: Unknown result type (might be due to invalid IL or missing references) //IL_33b0: Unknown result type (might be due to invalid IL or missing references) //IL_33b5: Unknown result type (might be due to invalid IL or missing references) //IL_33ba: Unknown result type (might be due to invalid IL or missing references) //IL_33ca: Unknown result type (might be due to invalid IL or missing references) //IL_33d0: Unknown result type (might be due to invalid IL or missing references) //IL_33d5: Unknown result type (might be due to invalid IL or missing references) //IL_33db: Unknown result type (might be due to invalid IL or missing references) //IL_33e5: Unknown result type (might be due to invalid IL or missing references) //IL_33ea: Unknown result type (might be due to invalid IL or missing references) //IL_33f0: Unknown result type (might be due to invalid IL or missing references) //IL_33fa: Unknown result type (might be due to invalid IL or missing references) //IL_33ff: Unknown result type (might be due to invalid IL or missing references) //IL_3405: Unknown result type (might be due to invalid IL or missing references) //IL_340a: Unknown result type (might be due to invalid IL or missing references) //IL_3410: Unknown result type (might be due to invalid IL or missing references) //IL_3415: Unknown result type (might be due to invalid IL or missing references) //IL_3420: Unknown result type (might be due to invalid IL or missing references) //IL_3426: Unknown result type (might be due to invalid IL or missing references) //IL_342b: Unknown result type (might be due to invalid IL or missing references) //IL_3431: Unknown result type (might be due to invalid IL or missing references) //IL_343b: Unknown result type (might be due to invalid IL or missing references) //IL_3440: Unknown result type (might be due to invalid IL or missing references) //IL_3446: Unknown result type (might be due to invalid IL or missing references) //IL_3450: Unknown result type (might be due to invalid IL or missing references) //IL_3455: Unknown result type (might be due to invalid IL or missing references) //IL_345b: Unknown result type (might be due to invalid IL or missing references) //IL_3465: Unknown result type (might be due to invalid IL or missing references) //IL_346a: Unknown result type (might be due to invalid IL or missing references) //IL_3470: Unknown result type (might be due to invalid IL or missing references) //IL_3475: Unknown result type (might be due to invalid IL or missing references) //IL_347b: Unknown result type (might be due to invalid IL or missing references) //IL_3480: Unknown result type (might be due to invalid IL or missing references) //IL_3486: Unknown result type (might be due to invalid IL or missing references) //IL_348b: Unknown result type (might be due to invalid IL or missing references) //IL_3490: Unknown result type (might be due to invalid IL or missing references) //IL_34a0: Unknown result type (might be due to invalid IL or missing references) //IL_34a6: Unknown result type (might be due to invalid IL or missing references) //IL_34ab: Unknown result type (might be due to invalid IL or missing references) //IL_34b1: Unknown result type (might be due to invalid IL or missing references) //IL_34bb: Unknown result type (might be due to invalid IL or missing references) //IL_34c0: Unknown result type (might be due to invalid IL or missing references) //IL_34c6: Unknown result type (might be due to invalid IL or missing references) //IL_34d0: Unknown result type (might be due to invalid IL or missing references) //IL_34d5: Unknown result type (might be due to invalid IL or missing references) //IL_34db: Unknown result type (might be due to invalid IL or missing references) //IL_34e0: Unknown result type (might be due to invalid IL or missing references) //IL_34e6: Unknown result type (might be due to invalid IL or missing references) //IL_34eb: Unknown result type (might be due to invalid IL or missing references) //IL_34f6: Unknown result type (might be due to invalid IL or missing references) //IL_34fc: Unknown result type (might be due to invalid IL or missing references) //IL_3501: Unknown result type (might be due to invalid IL or missing references) //IL_3507: Unknown result type (might be due to invalid IL or missing references) //IL_3511: Unknown result type (might be due to invalid IL or missing references) //IL_3516: Unknown result type (might be due to invalid IL or missing references) //IL_351c: Unknown result type (might be due to invalid IL or missing references) //IL_3526: Unknown result type (might be due to invalid IL or missing references) //IL_352b: Unknown result type (might be due to invalid IL or missing references) //IL_3531: Unknown result type (might be due to invalid IL or missing references) //IL_353b: Unknown result type (might be due to invalid IL or missing references) //IL_3540: Unknown result type (might be due to invalid IL or missing references) //IL_3546: Unknown result type (might be due to invalid IL or missing references) //IL_354b: Unknown result type (might be due to invalid IL or missing references) //IL_3551: Unknown result type (might be due to invalid IL or missing references) //IL_3556: Unknown result type (might be due to invalid IL or missing references) //IL_355c: Unknown result type (might be due to invalid IL or missing references) //IL_3561: Unknown result type (might be due to invalid IL or missing references) //IL_3567: Unknown result type (might be due to invalid IL or missing references) //IL_356c: Unknown result type (might be due to invalid IL or missing references) //IL_3571: Unknown result type (might be due to invalid IL or missing references) //IL_3581: Unknown result type (might be due to invalid IL or missing references) //IL_3587: Unknown result type (might be due to invalid IL or missing references) //IL_358c: Unknown result type (might be due to invalid IL or missing references) //IL_3592: Unknown result type (might be due to invalid IL or missing references) //IL_359c: Unknown result type (might be due to invalid IL or missing references) //IL_35a1: Unknown result type (might be due to invalid IL or missing references) //IL_35a7: Unknown result type (might be due to invalid IL or missing references) //IL_35b1: Unknown result type (might be due to invalid IL or missing references) //IL_35b6: Unknown result type (might be due to invalid IL or missing references) //IL_35bc: Unknown result type (might be due to invalid IL or missing references) //IL_35c1: Unknown result type (might be due to invalid IL or missing references) //IL_35c7: Unknown result type (might be due to invalid IL or missing references) //IL_35cc: Unknown result type (might be due to invalid IL or missing references) //IL_35d7: Unknown result type (might be due to invalid IL or missing references) //IL_35dd: Unknown result type (might be due to invalid IL or missing references) //IL_35e2: Unknown result type (might be due to invalid IL or missing references) //IL_35e8: Unknown result type (might be due to invalid IL or missing references) //IL_35f2: Unknown result type (might be due to invalid IL or missing references) //IL_35f7: Unknown result type (might be due to invalid IL or missing references) //IL_35fd: Unknown result type (might be due to invalid IL or missing references) //IL_3607: Unknown result type (might be due to invalid IL or missing references) //IL_360c: Unknown result type (might be due to invalid IL or missing references) //IL_3612: Unknown result type (might be due to invalid IL or missing references) //IL_361c: Unknown result type (might be due to invalid IL or missing references) //IL_3621: Unknown result type (might be due to invalid IL or missing references) //IL_3627: Unknown result type (might be due to invalid IL or missing references) //IL_362c: Unknown result type (might be due to invalid IL or missing references) //IL_3632: Unknown result type (might be due to invalid IL or missing references) //IL_3637: Unknown result type (might be due to invalid IL or missing references) //IL_363d: Unknown result type (might be due to invalid IL or missing references) //IL_3642: Unknown result type (might be due to invalid IL or missing references) //IL_3647: Unknown result type (might be due to invalid IL or missing references) //IL_3657: Unknown result type (might be due to invalid IL or missing references) //IL_365d: Unknown result type (might be due to invalid IL or missing references) //IL_3662: Unknown result type (might be due to invalid IL or missing references) //IL_3668: Unknown result type (might be due to invalid IL or missing references) //IL_3672: Unknown result type (might be due to invalid IL or missing references) //IL_3677: Unknown result type (might be due to invalid IL or missing references) //IL_367d: Unknown result type (might be due to invalid IL or missing references) //IL_3682: Unknown result type (might be due to invalid IL or missing references) //IL_3688: Unknown result type (might be due to invalid IL or missing references) //IL_368d: Unknown result type (might be due to invalid IL or missing references) //IL_3693: Unknown result type (might be due to invalid IL or missing references) //IL_3698: Unknown result type (might be due to invalid IL or missing references) //IL_36a3: Unknown result type (might be due to invalid IL or missing references) //IL_36a9: Unknown result type (might be due to invalid IL or missing references) //IL_36ae: Unknown result type (might be due to invalid IL or missing references) //IL_36b4: Unknown result type (might be due to invalid IL or missing references) //IL_36be: Unknown result type (might be due to invalid IL or missing references) //IL_36c3: Unknown result type (might be due to invalid IL or missing references) //IL_36c9: Unknown result type (might be due to invalid IL or missing references) //IL_36d3: Unknown result type (might be due to invalid IL or missing references) //IL_36d8: Unknown result type (might be due to invalid IL or missing references) //IL_36de: Unknown result type (might be due to invalid IL or missing references) //IL_36e3: Unknown result type (might be due to invalid IL or missing references) //IL_36e9: Unknown result type (might be due to invalid IL or missing references) //IL_36ee: Unknown result type (might be due to invalid IL or missing references) //IL_36f4: Unknown result type (might be due to invalid IL or missing references) //IL_36f9: Unknown result type (might be due to invalid IL or missing references) //IL_36ff: Unknown result type (might be due to invalid IL or missing references) //IL_3704: Unknown result type (might be due to invalid IL or missing references) //IL_370a: Unknown result type (might be due to invalid IL or missing references) //IL_370f: Unknown result type (might be due to invalid IL or missing references) //IL_3714: Unknown result type (might be due to invalid IL or missing references) //IL_3724: Unknown result type (might be due to invalid IL or missing references) //IL_372a: Unknown result type (might be due to invalid IL or missing references) //IL_372f: Unknown result type (might be due to invalid IL or missing references) //IL_3735: Unknown result type (might be due to invalid IL or missing references) //IL_373f: Unknown result type (might be due to invalid IL or missing references) //IL_3744: Unknown result type (might be due to invalid IL or missing references) //IL_374a: Unknown result type (might be due to invalid IL or missing references) //IL_374f: Unknown result type (might be due to invalid IL or missing references) //IL_3755: Unknown result type (might be due to invalid IL or missing references) //IL_375a: Unknown result type (might be due to invalid IL or missing references) //IL_3760: Unknown result type (might be due to invalid IL or missing references) //IL_3765: Unknown result type (might be due to invalid IL or missing references) //IL_3770: Unknown result type (might be due to invalid IL or missing references) //IL_3776: Unknown result type (might be due to invalid IL or missing references) //IL_377b: Unknown result type (might be due to invalid IL or missing references) //IL_3781: Unknown result type (might be due to invalid IL or missing references) //IL_378b: Unknown result type (might be due to invalid IL or missing references) //IL_3790: Unknown result type (might be due to invalid IL or missing references) //IL_3796: Unknown result type (might be due to invalid IL or missing references) //IL_379b: Unknown result type (might be due to invalid IL or missing references) //IL_37a1: Unknown result type (might be due to invalid IL or missing references) //IL_37ab: Unknown result type (might be due to invalid IL or missing references) //IL_37b0: Unknown result type (might be due to invalid IL or missing references) //IL_37b6: Unknown result type (might be due to invalid IL or missing references) //IL_37bb: Unknown result type (might be due to invalid IL or missing references) //IL_37c1: Unknown result type (might be due to invalid IL or missing references) //IL_37c6: Unknown result type (might be due to invalid IL or missing references) //IL_37cc: Unknown result type (might be due to invalid IL or missing references) //IL_37d1: Unknown result type (might be due to invalid IL or missing references) //IL_37d6: Unknown result type (might be due to invalid IL or missing references) //IL_37e6: Unknown result type (might be due to invalid IL or missing references) //IL_37ec: Unknown result type (might be due to invalid IL or missing references) //IL_37f1: Unknown result type (might be due to invalid IL or missing references) //IL_37f7: Unknown result type (might be due to invalid IL or missing references) //IL_3801: Unknown result type (might be due to invalid IL or missing references) //IL_3806: Unknown result type (might be due to invalid IL or missing references) //IL_380c: Unknown result type (might be due to invalid IL or missing references) //IL_3816: Unknown result type (might be due to invalid IL or missing references) //IL_381b: Unknown result type (might be due to invalid IL or missing references) //IL_3821: Unknown result type (might be due to invalid IL or missing references) //IL_3826: Unknown result type (might be due to invalid IL or missing references) //IL_382c: Unknown result type (might be due to invalid IL or missing references) //IL_3831: Unknown result type (might be due to invalid IL or missing references) //IL_383c: Unknown result type (might be due to invalid IL or missing references) //IL_3842: Unknown result type (might be due to invalid IL or missing references) //IL_3847: Unknown result type (might be due to invalid IL or missing references) //IL_384d: Unknown result type (might be due to invalid IL or missing references) //IL_3857: Unknown result type (might be due to invalid IL or missing references) //IL_385c: Unknown result type (might be due to invalid IL or missing references) //IL_3862: Unknown result type (might be due to invalid IL or missing references) //IL_386c: Unknown result type (might be due to invalid IL or missing references) //IL_3871: Unknown result type (might be due to invalid IL or missing references) //IL_3877: Unknown result type (might be due to invalid IL or missing references) //IL_3881: Unknown result type (might be due to invalid IL or missing references) //IL_3886: Unknown result type (might be due to invalid IL or missing references) //IL_388c: Unknown result type (might be due to invalid IL or missing references) //IL_3891: Unknown result type (might be due to invalid IL or missing references) //IL_3897: Unknown result type (might be due to invalid IL or missing references) //IL_389c: Unknown result type (might be due to invalid IL or missing references) //IL_38a2: Unknown result type (might be due to invalid IL or missing references) //IL_38a7: Unknown result type (might be due to invalid IL or missing references) //IL_38ad: Unknown result type (might be due to invalid IL or missing references) //IL_38b2: Unknown result type (might be due to invalid IL or missing references) //IL_38b7: Unknown result type (might be due to invalid IL or missing references) //IL_38c7: Unknown result type (might be due to invalid IL or missing references) //IL_38cd: Unknown result type (might be due to invalid IL or missing references) //IL_38d2: Unknown result type (might be due to invalid IL or missing references) //IL_38d8: Unknown result type (might be due to invalid IL or missing references) //IL_38e2: Unknown result type (might be due to invalid IL or missing references) //IL_38e7: Unknown result type (might be due to invalid IL or missing references) //IL_38ed: Unknown result type (might be due to invalid IL or missing references) //IL_38f7: Unknown result type (might be due to invalid IL or missing references) //IL_38fc: Unknown result type (might be due to invalid IL or missing references) //IL_3902: Unknown result type (might be due to invalid IL or missing references) //IL_3907: Unknown result type (might be due to invalid IL or missing references) //IL_390d: Unknown result type (might be due to invalid IL or missing references) //IL_3912: Unknown result type (might be due to invalid IL or missing references) //IL_391d: Unknown result type (might be due to invalid IL or missing references) //IL_3923: Unknown result type (might be due to invalid IL or missing references) //IL_3928: Unknown result type (might be due to invalid IL or missing references) //IL_392e: Unknown result type (might be due to invalid IL or missing references) //IL_3938: Unknown result type (might be due to invalid IL or missing references) //IL_393d: Unknown result type (might be due to invalid IL or missing references) //IL_3943: Unknown result type (might be due to invalid IL or missing references) //IL_394d: Unknown result type (might be due to invalid IL or missing references) //IL_3952: Unknown result type (might be due to invalid IL or missing references) //IL_3958: Unknown result type (might be due to invalid IL or missing references) //IL_3962: Unknown result type (might be due to invalid IL or missing references) //IL_3967: Unknown result type (might be due to invalid IL or missing references) //IL_396d: Unknown result type (might be due to invalid IL or missing references) //IL_3972: Unknown result type (might be due to invalid IL or missing references) //IL_3978: Unknown result type (might be due to invalid IL or missing references) //IL_397d: Unknown result type (might be due to invalid IL or missing references) //IL_3983: Unknown result type (might be due to invalid IL or missing references) //IL_3988: Unknown result type (might be due to invalid IL or missing references) //IL_398d: Unknown result type (might be due to invalid IL or missing references) //IL_399d: Unknown result type (might be due to invalid IL or missing references) //IL_39a3: Unknown result type (might be due to invalid IL or missing references) //IL_39a8: Unknown result type (might be due to invalid IL or missing references) //IL_39ae: Unknown result type (might be due to invalid IL or missing references) //IL_39b8: Unknown result type (might be due to invalid IL or missing references) //IL_39bd: Unknown result type (might be due to invalid IL or missing references) //IL_39c3: Unknown result type (might be due to invalid IL or missing references) //IL_39cd: Unknown result type (might be due to invalid IL or missing references) //IL_39d2: Unknown result type (might be due to invalid IL or missing references) //IL_39d8: Unknown result type (might be due to invalid IL or missing references) //IL_39dd: Unknown result type (might be due to invalid IL or missing references) //IL_39e3: Unknown result type (might be due to invalid IL or missing references) //IL_39e8: Unknown result type (might be due to invalid IL or missing references) //IL_39f3: Unknown result type (might be due to invalid IL or missing references) //IL_39f9: Unknown result type (might be due to invalid IL or missing references) //IL_39fe: Unknown result type (might be due to invalid IL or missing references) //IL_3a04: Unknown result type (might be due to invalid IL or missing references) //IL_3a0e: Unknown result type (might be due to invalid IL or missing references) //IL_3a13: Unknown result type (might be due to invalid IL or missing references) //IL_3a19: Unknown result type (might be due to invalid IL or missing references) //IL_3a23: Unknown result type (might be due to invalid IL or missing references) //IL_3a28: Unknown result type (might be due to invalid IL or missing references) //IL_3a2e: Unknown result type (might be due to invalid IL or missing references) //IL_3a38: Unknown result type (might be due to invalid IL or missing references) //IL_3a3d: Unknown result type (might be due to invalid IL or missing references) //IL_3a43: Unknown result type (might be due to invalid IL or missing references) //IL_3a48: Unknown result type (might be due to invalid IL or missing references) //IL_3a4e: Unknown result type (might be due to invalid IL or missing references) //IL_3a53: Unknown result type (might be due to invalid IL or missing references) //IL_3a59: Unknown result type (might be due to invalid IL or missing references) //IL_3a5e: Unknown result type (might be due to invalid IL or missing references) //IL_3a64: Unknown result type (might be due to invalid IL or missing references) //IL_3a69: Unknown result type (might be due to invalid IL or missing references) //IL_3a6e: Unknown result type (might be due to invalid IL or missing references) //IL_3a7e: Unknown result type (might be due to invalid IL or missing references) //IL_3a84: Unknown result type (might be due to invalid IL or missing references) //IL_3a89: Unknown result type (might be due to invalid IL or missing references) //IL_3a8f: Unknown result type (might be due to invalid IL or missing references) //IL_3a99: Unknown result type (might be due to invalid IL or missing references) //IL_3a9e: Unknown result type (might be due to invalid IL or missing references) //IL_3aa4: Unknown result type (might be due to invalid IL or missing references) //IL_3aae: Unknown result type (might be due to invalid IL or missing references) //IL_3ab3: Unknown result type (might be due to invalid IL or missing references) //IL_3ab9: Unknown result type (might be due to invalid IL or missing references) //IL_3abe: Unknown result type (might be due to invalid IL or missing references) //IL_3ac4: Unknown result type (might be due to invalid IL or missing references) //IL_3ac9: Unknown result type (might be due to invalid IL or missing references) //IL_3ad4: Unknown result type (might be due to invalid IL or missing references) //IL_3ada: Unknown result type (might be due to invalid IL or missing references) //IL_3adf: Unknown result type (might be due to invalid IL or missing references) //IL_3ae5: Unknown result type (might be due to invalid IL or missing references) //IL_3aef: Unknown result type (might be due to invalid IL or missing references) //IL_3af4: Unknown result type (might be due to invalid IL or missing references) //IL_3afa: Unknown result type (might be due to invalid IL or missing references) //IL_3b04: Unknown result type (might be due to invalid IL or missing references) //IL_3b09: Unknown result type (might be due to invalid IL or missing references) //IL_3b0f: Unknown result type (might be due to invalid IL or missing references) //IL_3b19: Unknown result type (might be due to invalid IL or missing references) //IL_3b1e: Unknown result type (might be due to invalid IL or missing references) //IL_3b24: Unknown result type (might be due to invalid IL or missing references) //IL_3b29: Unknown result type (might be due to invalid IL or missing references) //IL_3b2f: Unknown result type (might be due to invalid IL or missing references) //IL_3b34: Unknown result type (might be due to invalid IL or missing references) //IL_3b3a: Unknown result type (might be due to invalid IL or missing references) //IL_3b3f: Unknown result type (might be due to invalid IL or missing references) //IL_3b44: Unknown result type (might be due to invalid IL or missing references) //IL_3b54: Unknown result type (might be due to invalid IL or missing references) //IL_3b5a: Unknown result type (might be due to invalid IL or missing references) //IL_3b5f: Unknown result type (might be due to invalid IL or missing references) //IL_3b65: Unknown result type (might be due to invalid IL or missing references) //IL_3b6f: Unknown result type (might be due to invalid IL or missing references) //IL_3b74: Unknown result type (might be due to invalid IL or missing references) //IL_3b7a: Unknown result type (might be due to invalid IL or missing references) //IL_3b7f: Unknown result type (might be due to invalid IL or missing references) //IL_3b85: Unknown result type (might be due to invalid IL or missing references) //IL_3b8a: Unknown result type (might be due to invalid IL or missing references) //IL_3b90: Unknown result type (might be due to invalid IL or missing references) //IL_3b95: Unknown result type (might be due to invalid IL or missing references) //IL_3ba0: Unknown result type (might be due to invalid IL or missing references) //IL_3ba6: Unknown result type (might be due to invalid IL or missing references) //IL_3bab: Unknown result type (might be due to invalid IL or missing references) //IL_3bb1: Unknown result type (might be due to invalid IL or missing references) //IL_3bbb: Unknown result type (might be due to invalid IL or missing references) //IL_3bc0: Unknown result type (might be due to invalid IL or missing references) //IL_3bc6: Unknown result type (might be due to invalid IL or missing references) //IL_3bd0: Unknown result type (might be due to invalid IL or missing references) //IL_3bd5: Unknown result type (might be due to invalid IL or missing references) //IL_3bdb: Unknown result type (might be due to invalid IL or missing references) //IL_3be0: Unknown result type (might be due to invalid IL or missing references) //IL_3be6: Unknown result type (might be due to invalid IL or missing references) //IL_3beb: Unknown result type (might be due to invalid IL or missing references) //IL_3bf1: Unknown result type (might be due to invalid IL or missing references) //IL_3bf6: Unknown result type (might be due to invalid IL or missing references) //IL_3bfc: Unknown result type (might be due to invalid IL or missing references) //IL_3c01: Unknown result type (might be due to invalid IL or missing references) //IL_3c07: Unknown result type (might be due to invalid IL or missing references) //IL_3c0c: Unknown result type (might be due to invalid IL or missing references) //IL_3c11: Unknown result type (might be due to invalid IL or missing references) //IL_3c21: Unknown result type (might be due to invalid IL or missing references) //IL_3c27: Unknown result type (might be due to invalid IL or missing references) //IL_3c2c: Unknown result type (might be due to invalid IL or missing references) //IL_3c32: Unknown result type (might be due to invalid IL or missing references) //IL_3c3c: Unknown result type (might be due to invalid IL or missing references) //IL_3c41: Unknown result type (might be due to invalid IL or missing references) //IL_3c47: Unknown result type (might be due to invalid IL or missing references) //IL_3c4c: Unknown result type (might be due to invalid IL or missing references) //IL_3c52: Unknown result type (might be due to invalid IL or missing references) //IL_3c57: Unknown result type (might be due to invalid IL or missing references) //IL_3c5d: Unknown result type (might be due to invalid IL or missing references) //IL_3c62: Unknown result type (might be due to invalid IL or missing references) //IL_3c6d: Unknown result type (might be due to invalid IL or missing references) //IL_3c73: Unknown result type (might be due to invalid IL or missing references) //IL_3c78: Unknown result type (might be due to invalid IL or missing references) //IL_3c7e: Unknown result type (might be due to invalid IL or missing references) //IL_3c88: Unknown result type (might be due to invalid IL or missing references) //IL_3c8d: Unknown result type (might be due to invalid IL or missing references) //IL_3c93: Unknown result type (might be due to invalid IL or missing references) //IL_3c98: Unknown result type (might be due to invalid IL or missing references) //IL_3c9e: Unknown result type (might be due to invalid IL or missing references) //IL_3ca8: Unknown result type (might be due to invalid IL or missing references) //IL_3cad: Unknown result type (might be due to invalid IL or missing references) //IL_3cb3: Unknown result type (might be due to invalid IL or missing references) //IL_3cb8: Unknown result type (might be due to invalid IL or missing references) //IL_3cbe: Unknown result type (might be due to invalid IL or missing references) //IL_3cc3: Unknown result type (might be due to invalid IL or missing references) //IL_3cc9: Unknown result type (might be due to invalid IL or missing references) //IL_3cce: Unknown result type (might be due to invalid IL or missing references) //IL_3cd3: Unknown result type (might be due to invalid IL or missing references) //IL_1b8c: Unknown result type (might be due to invalid IL or missing references) //IL_1b92: Unknown result type (might be due to invalid IL or missing references) //IL_1b97: Unknown result type (might be due to invalid IL or missing references) //IL_1b9d: Unknown result type (might be due to invalid IL or missing references) //IL_1ba2: Unknown result type (might be due to invalid IL or missing references) //IL_1ba8: Unknown result type (might be due to invalid IL or missing references) //IL_1bb2: Unknown result type (might be due to invalid IL or missing references) //IL_1bb7: Unknown result type (might be due to invalid IL or missing references) //IL_1bbd: Unknown result type (might be due to invalid IL or missing references) //IL_1bc2: Unknown result type (might be due to invalid IL or missing references) //IL_1bcd: Unknown result type (might be due to invalid IL or missing references) //IL_1bd3: Unknown result type (might be due to invalid IL or missing references) //IL_1bd8: Unknown result type (might be due to invalid IL or missing references) //IL_1bde: Unknown result type (might be due to invalid IL or missing references) //IL_1be3: Unknown result type (might be due to invalid IL or missing references) //IL_1be9: Unknown result type (might be due to invalid IL or missing references) //IL_1bf3: Unknown result type (might be due to invalid IL or missing references) //IL_1bf8: Unknown result type (might be due to invalid IL or missing references) //IL_1bfe: Unknown result type (might be due to invalid IL or missing references) //IL_1c03: Unknown result type (might be due to invalid IL or missing references) //IL_1c09: Unknown result type (might be due to invalid IL or missing references) //IL_1c0e: Unknown result type (might be due to invalid IL or missing references) //IL_1c13: Unknown result type (might be due to invalid IL or missing references) //IL_1c23: Unknown result type (might be due to invalid IL or missing references) //IL_1c29: Unknown result type (might be due to invalid IL or missing references) //IL_1c2e: Unknown result type (might be due to invalid IL or missing references) //IL_1c34: Unknown result type (might be due to invalid IL or missing references) //IL_1c3e: Unknown result type (might be due to invalid IL or missing references) //IL_1c43: Unknown result type (might be due to invalid IL or missing references) //IL_1c49: Unknown result type (might be due to invalid IL or missing references) //IL_1c53: Unknown result type (might be due to invalid IL or missing references) //IL_1c58: Unknown result type (might be due to invalid IL or missing references) //IL_1c5e: Unknown result type (might be due to invalid IL or missing references) //IL_1c63: Unknown result type (might be due to invalid IL or missing references) //IL_1c6e: Unknown result type (might be due to invalid IL or missing references) //IL_1c74: Unknown result type (might be due to invalid IL or missing references) //IL_1c79: Unknown result type (might be due to invalid IL or missing references) //IL_1c7f: Unknown result type (might be due to invalid IL or missing references) //IL_1c89: Unknown result type (might be due to invalid IL or missing references) //IL_1c8e: Unknown result type (might be due to invalid IL or missing references) //IL_1c94: Unknown result type (might be due to invalid IL or missing references) //IL_1c9e: Unknown result type (might be due to invalid IL or missing references) //IL_1ca3: Unknown result type (might be due to invalid IL or missing references) //IL_1ca9: Unknown result type (might be due to invalid IL or missing references) //IL_1cae: Unknown result type (might be due to invalid IL or missing references) //IL_1cb4: Unknown result type (might be due to invalid IL or missing references) //IL_1cb9: Unknown result type (might be due to invalid IL or missing references) //IL_1cbe: Unknown result type (might be due to invalid IL or missing references) //IL_1cce: Unknown result type (might be due to invalid IL or missing references) //IL_1cd4: Unknown result type (might be due to invalid IL or missing references) //IL_1cd9: Unknown result type (might be due to invalid IL or missing references) //IL_1cdf: Unknown result type (might be due to invalid IL or missing references) //IL_1ce9: Unknown result type (might be due to invalid IL or missing references) //IL_1cee: Unknown result type (might be due to invalid IL or missing references) //IL_1cf4: Unknown result type (might be due to invalid IL or missing references) //IL_1cfe: Unknown result type (might be due to invalid IL or missing references) //IL_1d03: Unknown result type (might be due to invalid IL or missing references) //IL_1d09: Unknown result type (might be due to invalid IL or missing references) //IL_1d0e: Unknown result type (might be due to invalid IL or missing references) //IL_1d19: Unknown result type (might be due to invalid IL or missing references) //IL_1d1f: Unknown result type (might be due to invalid IL or missing references) //IL_1d24: Unknown result type (might be due to invalid IL or missing references) //IL_1d2a: Unknown result type (might be due to invalid IL or missing references) //IL_1d34: Unknown result type (might be due to invalid IL or missing references) //IL_1d39: Unknown result type (might be due to invalid IL or missing references) //IL_1d3f: Unknown result type (might be due to invalid IL or missing references) //IL_1d49: Unknown result type (might be due to invalid IL or missing references) //IL_1d4e: Unknown result type (might be due to invalid IL or missing references) //IL_1d54: Unknown result type (might be due to invalid IL or missing references) //IL_1d59: Unknown result type (might be due to invalid IL or missing references) //IL_1d5f: Unknown result type (might be due to invalid IL or missing references) //IL_1d64: Unknown result type (might be due to invalid IL or missing references) //IL_1d69: Unknown result type (might be due to invalid IL or missing references) //IL_1d79: Unknown result type (might be due to invalid IL or missing references) //IL_1d7f: Unknown result type (might be due to invalid IL or missing references) //IL_1d84: Unknown result type (might be due to invalid IL or missing references) //IL_1d8a: Unknown result type (might be due to invalid IL or missing references) //IL_1d94: Unknown result type (might be due to invalid IL or missing references) //IL_1d99: Unknown result type (might be due to invalid IL or missing references) //IL_1d9f: Unknown result type (might be due to invalid IL or missing references) //IL_1da9: Unknown result type (might be due to invalid IL or missing references) //IL_1dae: Unknown result type (might be due to invalid IL or missing references) //IL_1db4: Unknown result type (might be due to invalid IL or missing references) //IL_1db9: Unknown result type (might be due to invalid IL or missing references) //IL_1dc4: Unknown result type (might be due to invalid IL or missing references) //IL_1dca: Unknown result type (might be due to invalid IL or missing references) //IL_1dcf: Unknown result type (might be due to invalid IL or missing references) //IL_1dd5: Unknown result type (might be due to invalid IL or missing references) //IL_1ddf: Unknown result type (might be due to invalid IL or missing references) //IL_1de4: Unknown result type (might be due to invalid IL or missing references) //IL_1dea: Unknown result type (might be due to invalid IL or missing references) //IL_1df4: Unknown result type (might be due to invalid IL or missing references) //IL_1df9: Unknown result type (might be due to invalid IL or missing references) //IL_1dff: Unknown result type (might be due to invalid IL or missing references) //IL_1e04: Unknown result type (might be due to invalid IL or missing references) //IL_1e0a: Unknown result type (might be due to invalid IL or missing references) //IL_1e0f: Unknown result type (might be due to invalid IL or missing references) //IL_1e14: Unknown result type (might be due to invalid IL or missing references) //IL_1e24: Unknown result type (might be due to invalid IL or missing references) //IL_1e2a: Unknown result type (might be due to invalid IL or missing references) //IL_1e2f: Unknown result type (might be due to invalid IL or missing references) //IL_1e35: Unknown result type (might be due to invalid IL or missing references) //IL_1e3f: Unknown result type (might be due to invalid IL or missing references) //IL_1e44: Unknown result type (might be due to invalid IL or missing references) //IL_1e4a: Unknown result type (might be due to invalid IL or missing references) //IL_1e54: Unknown result type (might be due to invalid IL or missing references) //IL_1e59: Unknown result type (might be due to invalid IL or missing references) //IL_1e5f: Unknown result type (might be due to invalid IL or missing references) //IL_1e64: Unknown result type (might be due to invalid IL or missing references) //IL_1e6a: Unknown result type (might be due to invalid IL or missing references) //IL_1e6f: Unknown result type (might be due to invalid IL or missing references) //IL_1e75: Unknown result type (might be due to invalid IL or missing references) //IL_1e7a: Unknown result type (might be due to invalid IL or missing references) //IL_1e85: Unknown result type (might be due to invalid IL or missing references) //IL_1e8b: Unknown result type (might be due to invalid IL or missing references) //IL_1e90: Unknown result type (might be due to invalid IL or missing references) //IL_1e96: Unknown result type (might be due to invalid IL or missing references) //IL_1ea0: Unknown result type (might be due to invalid IL or missing references) //IL_1ea5: Unknown result type (might be due to invalid IL or missing references) //IL_1eab: Unknown result type (might be due to invalid IL or missing references) //IL_1eb5: Unknown result type (might be due to invalid IL or missing references) //IL_1eba: Unknown result type (might be due to invalid IL or missing references) //IL_1ec0: Unknown result type (might be due to invalid IL or missing references) //IL_1ec5: Unknown result type (might be due to invalid IL or missing references) //IL_1ecb: Unknown result type (might be due to invalid IL or missing references) //IL_1ed0: Unknown result type (might be due to invalid IL or missing references) //IL_1ed6: Unknown result type (might be due to invalid IL or missing references) //IL_1edb: Unknown result type (might be due to invalid IL or missing references) //IL_1ee0: Unknown result type (might be due to invalid IL or missing references) //IL_1ef0: Unknown result type (might be due to invalid IL or missing references) //IL_1ef6: Unknown result type (might be due to invalid IL or missing references) //IL_1efb: Unknown result type (might be due to invalid IL or missing references) //IL_1f01: Unknown result type (might be due to invalid IL or missing references) //IL_1f0b: Unknown result type (might be due to invalid IL or missing references) //IL_1f10: Unknown result type (might be due to invalid IL or missing references) //IL_1f16: Unknown result type (might be due to invalid IL or missing references) //IL_1f1b: Unknown result type (might be due to invalid IL or missing references) //IL_1f21: Unknown result type (might be due to invalid IL or missing references) //IL_1f26: Unknown result type (might be due to invalid IL or missing references) //IL_1f2c: Unknown result type (might be due to invalid IL or missing references) //IL_1f31: Unknown result type (might be due to invalid IL or missing references) //IL_1f37: Unknown result type (might be due to invalid IL or missing references) //IL_1f3c: Unknown result type (might be due to invalid IL or missing references) //IL_1f47: Unknown result type (might be due to invalid IL or missing references) //IL_1f4d: Unknown result type (might be due to invalid IL or missing references) //IL_1f52: Unknown result type (might be due to invalid IL or missing references) //IL_1f58: Unknown result type (might be due to invalid IL or missing references) //IL_1f62: Unknown result type (might be due to invalid IL or missing references) //IL_1f67: Unknown result type (might be due to invalid IL or missing references) //IL_1f6d: Unknown result type (might be due to invalid IL or missing references) //IL_1f72: Unknown result type (might be due to invalid IL or missing references) //IL_1f78: Unknown result type (might be due to invalid IL or missing references) //IL_1f7d: Unknown result type (might be due to invalid IL or missing references) //IL_1f83: Unknown result type (might be due to invalid IL or missing references) //IL_1f88: Unknown result type (might be due to invalid IL or missing references) //IL_1f8e: Unknown result type (might be due to invalid IL or missing references) //IL_1f93: Unknown result type (might be due to invalid IL or missing references) //IL_1f98: Unknown result type (might be due to invalid IL or missing references) //IL_1fa8: Unknown result type (might be due to invalid IL or missing references) //IL_1fae: Unknown result type (might be due to invalid IL or missing references) //IL_1fb3: Unknown result type (might be due to invalid IL or missing references) //IL_1fb9: Unknown result type (might be due to invalid IL or missing references) //IL_1fbe: Unknown result type (might be due to invalid IL or missing references) //IL_1fc4: Unknown result type (might be due to invalid IL or missing references) //IL_1fce: Unknown result type (might be due to invalid IL or missing references) //IL_1fd3: Unknown result type (might be due to invalid IL or missing references) //IL_1fd9: Unknown result type (might be due to invalid IL or missing references) //IL_1fde: Unknown result type (might be due to invalid IL or missing references) //IL_1fe9: Unknown result type (might be due to invalid IL or missing references) //IL_1fef: Unknown result type (might be due to invalid IL or missing references) //IL_1ff4: Unknown result type (might be due to invalid IL or missing references) //IL_1ffa: Unknown result type (might be due to invalid IL or missing references) //IL_1fff: Unknown result type (might be due to invalid IL or missing references) //IL_2005: Unknown result type (might be due to invalid IL or missing references) //IL_200f: Unknown result type (might be due to invalid IL or missing references) //IL_2014: Unknown result type (might be due to invalid IL or missing references) //IL_201a: Unknown result type (might be due to invalid IL or missing references) //IL_201f: Unknown result type (might be due to invalid IL or missing references) //IL_2025: Unknown result type (might be due to invalid IL or missing references) //IL_202a: Unknown result type (might be due to invalid IL or missing references) //IL_202f: Unknown result type (might be due to invalid IL or missing references) //IL_203f: Unknown result type (might be due to invalid IL or missing references) //IL_2045: Unknown result type (might be due to invalid IL or missing references) //IL_204a: Unknown result type (might be due to invalid IL or missing references) //IL_2050: Unknown result type (might be due to invalid IL or missing references) //IL_205a: Unknown result type (might be due to invalid IL or missing references) //IL_205f: Unknown result type (might be due to invalid IL or missing references) //IL_2065: Unknown result type (might be due to invalid IL or missing references) //IL_206f: Unknown result type (might be due to invalid IL or missing references) //IL_2074: Unknown result type (might be due to invalid IL or missing references) //IL_207a: Unknown result type (might be due to invalid IL or missing references) //IL_207f: Unknown result type (might be due to invalid IL or missing references) //IL_208a: Unknown result type (might be due to invalid IL or missing references) //IL_2090: Unknown result type (might be due to invalid IL or missing references) //IL_2095: Unknown result type (might be due to invalid IL or missing references) //IL_209b: Unknown result type (might be due to invalid IL or missing references) //IL_20a5: Unknown result type (might be due to invalid IL or missing references) //IL_20aa: Unknown result type (might be due to invalid IL or missing references) //IL_20b0: Unknown result type (might be due to invalid IL or missing references) //IL_20ba: Unknown result type (might be due to invalid IL or missing references) //IL_20bf: Unknown result type (might be due to invalid IL or missing references) //IL_20c5: Unknown result type (might be due to invalid IL or missing references) //IL_20ca: Unknown result type (might be due to invalid IL or missing references) //IL_20d0: Unknown result type (might be due to invalid IL or missing references) //IL_20d5: Unknown result type (might be due to invalid IL or missing references) //IL_20da: Unknown result type (might be due to invalid IL or missing references) //IL_20ea: Unknown result type (might be due to invalid IL or missing references) //IL_20f0: Unknown result type (might be due to invalid IL or missing references) //IL_20f5: Unknown result type (might be due to invalid IL or missing references) //IL_20fb: Unknown result type (might be due to invalid IL or missing references) //IL_2105: Unknown result type (might be due to invalid IL or missing references) //IL_210a: Unknown result type (might be due to invalid IL or missing references) //IL_2110: Unknown result type (might be due to invalid IL or missing references) //IL_211a: Unknown result type (might be due to invalid IL or missing references) //IL_211f: Unknown result type (might be due to invalid IL or missing references) //IL_2125: Unknown result type (might be due to invalid IL or missing references) //IL_212a: Unknown result type (might be due to invalid IL or missing references) //IL_2135: Unknown result type (might be due to invalid IL or missing references) //IL_213b: Unknown result type (might be due to invalid IL or missing references) //IL_2140: Unknown result type (might be due to invalid IL or missing references) //IL_2146: Unknown result type (might be due to invalid IL or missing references) //IL_2150: Unknown result type (might be due to invalid IL or missing references) //IL_2155: Unknown result type (might be due to invalid IL or missing references) //IL_215b: Unknown result type (might be due to invalid IL or missing references) //IL_2165: Unknown result type (might be due to invalid IL or missing references) //IL_216a: Unknown result type (might be due to invalid IL or missing references) //IL_2170: Unknown result type (might be due to invalid IL or missing references) //IL_2175: Unknown result type (might be due to invalid IL or missing references) //IL_217b: Unknown result type (might be due to invalid IL or missing references) //IL_2180: Unknown result type (might be due to invalid IL or missing references) //IL_2185: Unknown result type (might be due to invalid IL or missing references) //IL_2195: Unknown result type (might be due to invalid IL or missing references) //IL_219b: Unknown result type (might be due to invalid IL or missing references) //IL_21a0: Unknown result type (might be due to invalid IL or missing references) //IL_21a6: Unknown result type (might be due to invalid IL or missing references) //IL_21b0: Unknown result type (might be due to invalid IL or missing references) //IL_21b5: Unknown result type (might be due to invalid IL or missing references) //IL_21bb: Unknown result type (might be due to invalid IL or missing references) //IL_21c5: Unknown result type (might be due to invalid IL or missing references) //IL_21ca: Unknown result type (might be due to invalid IL or missing references) //IL_21d0: Unknown result type (might be due to invalid IL or missing references) //IL_21d5: Unknown result type (might be due to invalid IL or missing references) //IL_21e0: Unknown result type (might be due to invalid IL or missing references) //IL_21e6: Unknown result type (might be due to invalid IL or missing references) //IL_21eb: Unknown result type (might be due to invalid IL or missing references) //IL_21f1: Unknown result type (might be due to invalid IL or missing references) //IL_21fb: Unknown result type (might be due to invalid IL or missing references) //IL_2200: Unknown result type (might be due to invalid IL or missing references) //IL_2206: Unknown result type (might be due to invalid IL or missing references) //IL_2210: Unknown result type (might be due to invalid IL or missing references) //IL_2215: Unknown result type (might be due to invalid IL or missing references) //IL_221b: Unknown result type (might be due to invalid IL or missing references) //IL_2220: Unknown result type (might be due to invalid IL or missing references) //IL_2226: Unknown result type (might be due to invalid IL or missing references) //IL_222b: Unknown result type (might be due to invalid IL or missing references) //IL_2230: Unknown result type (might be due to invalid IL or missing references) //IL_2240: Unknown result type (might be due to invalid IL or missing references) //IL_2246: Unknown result type (might be due to invalid IL or missing references) //IL_224b: Unknown result type (might be due to invalid IL or missing references) //IL_2251: Unknown result type (might be due to invalid IL or missing references) //IL_225b: Unknown result type (might be due to invalid IL or missing references) //IL_2260: Unknown result type (might be due to invalid IL or missing references) //IL_2266: Unknown result type (might be due to invalid IL or missing references) //IL_2270: Unknown result type (might be due to invalid IL or missing references) //IL_2275: Unknown result type (might be due to invalid IL or missing references) //IL_227b: Unknown result type (might be due to invalid IL or missing references) //IL_2280: Unknown result type (might be due to invalid IL or missing references) //IL_2286: Unknown result type (might be due to invalid IL or missing references) //IL_228b: Unknown result type (might be due to invalid IL or missing references) //IL_2291: Unknown result type (might be due to invalid IL or missing references) //IL_2296: Unknown result type (might be due to invalid IL or missing references) //IL_22a1: Unknown result type (might be due to invalid IL or missing references) //IL_22a7: Unknown result type (might be due to invalid IL or missing references) //IL_22ac: Unknown result type (might be due to invalid IL or missing references) //IL_22b2: Unknown result type (might be due to invalid IL or missing references) //IL_22bc: Unknown result type (might be due to invalid IL or missing references) //IL_22c1: Unknown result type (might be due to invalid IL or missing references) //IL_22c7: Unknown result type (might be due to invalid IL or missing references) //IL_22d1: Unknown result type (might be due to invalid IL or missing references) //IL_22d6: Unknown result type (might be due to invalid IL or missing references) //IL_22dc: Unknown result type (might be due to invalid IL or missing references) //IL_22e1: Unknown result type (might be due to invalid IL or missing references) //IL_22e7: Unknown result type (might be due to invalid IL or missing references) //IL_22ec: Unknown result type (might be due to invalid IL or missing references) //IL_22f2: Unknown result type (might be due to invalid IL or missing references) //IL_22f7: Unknown result type (might be due to invalid IL or missing references) //IL_22fc: Unknown result type (might be due to invalid IL or missing references) //IL_230c: Unknown result type (might be due to invalid IL or missing references) //IL_2312: Unknown result type (might be due to invalid IL or missing references) //IL_2317: Unknown result type (might be due to invalid IL or missing references) //IL_231d: Unknown result type (might be due to invalid IL or missing references) //IL_2327: Unknown result type (might be due to invalid IL or missing references) //IL_232c: Unknown result type (might be due to invalid IL or missing references) //IL_2332: Unknown result type (might be due to invalid IL or missing references) //IL_2337: Unknown result type (might be due to invalid IL or missing references) //IL_233d: Unknown result type (might be due to invalid IL or missing references) //IL_2342: Unknown result type (might be due to invalid IL or missing references) //IL_2348: Unknown result type (might be due to invalid IL or missing references) //IL_234d: Unknown result type (might be due to invalid IL or missing references) //IL_2353: Unknown result type (might be due to invalid IL or missing references) //IL_2358: Unknown result type (might be due to invalid IL or missing references) //IL_2363: Unknown result type (might be due to invalid IL or missing references) //IL_2369: Unknown result type (might be due to invalid IL or missing references) //IL_236e: Unknown result type (might be due to invalid IL or missing references) //IL_2374: Unknown result type (might be due to invalid IL or missing references) //IL_237e: Unknown result type (might be due to invalid IL or missing references) //IL_2383: Unknown result type (might be due to invalid IL or missing references) //IL_2389: Unknown result type (might be due to invalid IL or missing references) //IL_238e: Unknown result type (might be due to invalid IL or missing references) //IL_2394: Unknown result type (might be due to invalid IL or missing references) //IL_2399: Unknown result type (might be due to invalid IL or missing references) //IL_239f: Unknown result type (might be due to invalid IL or missing references) //IL_23a4: Unknown result type (might be due to invalid IL or missing references) //IL_23aa: Unknown result type (might be due to invalid IL or missing references) //IL_23af: Unknown result type (might be due to invalid IL or missing references) //IL_23b4: Unknown result type (might be due to invalid IL or missing references) //IL_23d6: Unknown result type (might be due to invalid IL or missing references) //IL_23dc: Unknown result type (might be due to invalid IL or missing references) //IL_23e1: Unknown result type (might be due to invalid IL or missing references) //IL_23e7: Unknown result type (might be due to invalid IL or missing references) //IL_23ec: Unknown result type (might be due to invalid IL or missing references) //IL_23f2: Unknown result type (might be due to invalid IL or missing references) //IL_23fc: Unknown result type (might be due to invalid IL or missing references) //IL_2401: Unknown result type (might be due to invalid IL or missing references) //IL_240c: Unknown result type (might be due to invalid IL or missing references) //IL_2412: Unknown result type (might be due to invalid IL or missing references) //IL_2417: Unknown result type (might be due to invalid IL or missing references) //IL_241d: Unknown result type (might be due to invalid IL or missing references) //IL_2427: Unknown result type (might be due to invalid IL or missing references) //IL_242c: Unknown result type (might be due to invalid IL or missing references) //IL_2432: Unknown result type (might be due to invalid IL or missing references) //IL_243c: Unknown result type (might be due to invalid IL or missing references) //IL_2441: Unknown result type (might be due to invalid IL or missing references) //IL_2447: Unknown result type (might be due to invalid IL or missing references) //IL_2451: Unknown result type (might be due to invalid IL or missing references) //IL_2456: Unknown result type (might be due to invalid IL or missing references) //IL_245c: Unknown result type (might be due to invalid IL or missing references) //IL_2461: Unknown result type (might be due to invalid IL or missing references) //IL_2467: Unknown result type (might be due to invalid IL or missing references) //IL_246c: Unknown result type (might be due to invalid IL or missing references) //IL_2471: Unknown result type (might be due to invalid IL or missing references) //IL_2481: Unknown result type (might be due to invalid IL or missing references) //IL_2487: Unknown result type (might be due to invalid IL or missing references) //IL_248c: Unknown result type (might be due to invalid IL or missing references) //IL_2492: Unknown result type (might be due to invalid IL or missing references) //IL_2497: Unknown result type (might be due to invalid IL or missing references) //IL_249d: Unknown result type (might be due to invalid IL or missing references) //IL_24a7: Unknown result type (might be due to invalid IL or missing references) //IL_24ac: Unknown result type (might be due to invalid IL or missing references) //IL_24b7: Unknown result type (might be due to invalid IL or missing references) //IL_24bd: Unknown result type (might be due to invalid IL or missing references) //IL_24c2: Unknown result type (might be due to invalid IL or missing references) //IL_24c8: Unknown result type (might be due to invalid IL or missing references) //IL_24d2: Unknown result type (might be due to invalid IL or missing references) //IL_24d7: Unknown result type (might be due to invalid IL or missing references) //IL_24dd: Unknown result type (might be due to invalid IL or missing references) //IL_24e2: Unknown result type (might be due to invalid IL or missing references) //IL_24e8: Unknown result type (might be due to invalid IL or missing references) //IL_24ed: Unknown result type (might be due to invalid IL or missing references) //IL_24f2: Unknown result type (might be due to invalid IL or missing references) //IL_2502: Unknown result type (might be due to invalid IL or missing references) //IL_2508: Unknown result type (might be due to invalid IL or missing references) //IL_250d: Unknown result type (might be due to invalid IL or missing references) //IL_2513: Unknown result type (might be due to invalid IL or missing references) //IL_2518: Unknown result type (might be due to invalid IL or missing references) //IL_251e: Unknown result type (might be due to invalid IL or missing references) //IL_2528: Unknown result type (might be due to invalid IL or missing references) //IL_252d: Unknown result type (might be due to invalid IL or missing references) //IL_2538: Unknown result type (might be due to invalid IL or missing references) //IL_253e: Unknown result type (might be due to invalid IL or missing references) //IL_2543: Unknown result type (might be due to invalid IL or missing references) //IL_2549: Unknown result type (might be due to invalid IL or missing references) //IL_2553: Unknown result type (might be due to invalid IL or missing references) //IL_2558: Unknown result type (might be due to invalid IL or missing references) //IL_255e: Unknown result type (might be due to invalid IL or missing references) //IL_2568: Unknown result type (might be due to invalid IL or missing references) //IL_256d: Unknown result type (might be due to invalid IL or missing references) //IL_2573: Unknown result type (might be due to invalid IL or missing references) //IL_257d: Unknown result type (might be due to invalid IL or missing references) //IL_2582: Unknown result type (might be due to invalid IL or missing references) //IL_2588: Unknown result type (might be due to invalid IL or missing references) //IL_258d: Unknown result type (might be due to invalid IL or missing references) //IL_2593: Unknown result type (might be due to invalid IL or missing references) //IL_2598: Unknown result type (might be due to invalid IL or missing references) //IL_259d: Unknown result type (might be due to invalid IL or missing references) //IL_25ad: Unknown result type (might be due to invalid IL or missing references) //IL_25b3: Unknown result type (might be due to invalid IL or missing references) //IL_25b8: Unknown result type (might be due to invalid IL or missing references) //IL_25be: Unknown result type (might be due to invalid IL or missing references) //IL_25c3: Unknown result type (might be due to invalid IL or missing references) //IL_25c9: Unknown result type (might be due to invalid IL or missing references) //IL_25d3: Unknown result type (might be due to invalid IL or missing references) //IL_25d8: Unknown result type (might be due to invalid IL or missing references) //IL_25e3: Unknown result type (might be due to invalid IL or missing references) //IL_25e9: Unknown result type (might be due to invalid IL or missing references) //IL_25ee: Unknown result type (might be due to invalid IL or missing references) //IL_25f4: Unknown result type (might be due to invalid IL or missing references) //IL_25fe: Unknown result type (might be due to invalid IL or missing references) //IL_2603: Unknown result type (might be due to invalid IL or missing references) //IL_2609: Unknown result type (might be due to invalid IL or missing references) //IL_260e: Unknown result type (might be due to invalid IL or missing references) //IL_2614: Unknown result type (might be due to invalid IL or missing references) //IL_2619: Unknown result type (might be due to invalid IL or missing references) //IL_261e: Unknown result type (might be due to invalid IL or missing references) //IL_262e: Unknown result type (might be due to invalid IL or missing references) //IL_2634: Unknown result type (might be due to invalid IL or missing references) //IL_2639: Unknown result type (might be due to invalid IL or missing references) //IL_263f: Unknown result type (might be due to invalid IL or missing references) //IL_2649: Unknown result type (might be due to invalid IL or missing references) //IL_264e: Unknown result type (might be due to invalid IL or missing references) //IL_2654: Unknown result type (might be due to invalid IL or missing references) //IL_265e: Unknown result type (might be due to invalid IL or missing references) //IL_2663: Unknown result type (might be due to invalid IL or missing references) //IL_2669: Unknown result type (might be due to invalid IL or missing references) //IL_266e: Unknown result type (might be due to invalid IL or missing references) //IL_2674: Unknown result type (might be due to invalid IL or missing references) //IL_2679: Unknown result type (might be due to invalid IL or missing references) //IL_2684: Unknown result type (might be due to invalid IL or missing references) //IL_268a: Unknown result type (might be due to invalid IL or missing references) //IL_268f: Unknown result type (might be due to invalid IL or missing references) //IL_2695: Unknown result type (might be due to invalid IL or missing references) //IL_269f: Unknown result type (might be due to invalid IL or missing references) //IL_26a4: Unknown result type (might be due to invalid IL or missing references) //IL_26aa: Unknown result type (might be due to invalid IL or missing references) //IL_26b4: Unknown result type (might be due to invalid IL or missing references) //IL_26b9: Unknown result type (might be due to invalid IL or missing references) //IL_26bf: Unknown result type (might be due to invalid IL or missing references) //IL_26c9: Unknown result type (might be due to invalid IL or missing references) //IL_26ce: Unknown result type (might be due to invalid IL or missing references) //IL_26d4: Unknown result type (might be due to invalid IL or missing references) //IL_26d9: Unknown result type (might be due to invalid IL or missing references) //IL_26df: Unknown result type (might be due to invalid IL or missing references) //IL_26e4: Unknown result type (might be due to invalid IL or missing references) //IL_26ea: Unknown result type (might be due to invalid IL or missing references) //IL_26ef: Unknown result type (might be due to invalid IL or missing references) //IL_26f4: Unknown result type (might be due to invalid IL or missing references) //IL_2704: Unknown result type (might be due to invalid IL or missing references) //IL_270a: Unknown result type (might be due to invalid IL or missing references) //IL_270f: Unknown result type (might be due to invalid IL or missing references) //IL_2715: Unknown result type (might be due to invalid IL or missing references) //IL_271f: Unknown result type (might be due to invalid IL or missing references) //IL_2724: Unknown result type (might be due to invalid IL or missing references) //IL_272a: Unknown result type (might be due to invalid IL or missing references) //IL_2734: Unknown result type (might be due to invalid IL or missing references) //IL_2739: Unknown result type (might be due to invalid IL or missing references) //IL_273f: Unknown result type (might be due to invalid IL or missing references) //IL_2744: Unknown result type (might be due to invalid IL or missing references) //IL_274a: Unknown result type (might be due to invalid IL or missing references) //IL_274f: Unknown result type (might be due to invalid IL or missing references) //IL_275a: Unknown result type (might be due to invalid IL or missing references) //IL_2760: Unknown result type (might be due to invalid IL or missing references) //IL_2765: Unknown result type (might be due to invalid IL or missing references) //IL_276b: Unknown result type (might be due to invalid IL or missing references) //IL_2775: Unknown result type (might be due to invalid IL or missing references) //IL_277a: Unknown result type (might be due to invalid IL or missing references) //IL_2780: Unknown result type (might be due to invalid IL or missing references) //IL_278a: Unknown result type (might be due to invalid IL or missing references) //IL_278f: Unknown result type (might be due to invalid IL or missing references) //IL_2795: Unknown result type (might be due to invalid IL or missing references) //IL_279f: Unknown result type (might be due to invalid IL or missing references) //IL_27a4: Unknown result type (might be due to invalid IL or missing references) //IL_27aa: Unknown result type (might be due to invalid IL or missing references) //IL_27af: Unknown result type (might be due to invalid IL or missing references) //IL_27b5: Unknown result type (might be due to invalid IL or missing references) //IL_27ba: Unknown result type (might be due to invalid IL or missing references) //IL_27c0: Unknown result type (might be due to invalid IL or missing references) //IL_27c5: Unknown result type (might be due to invalid IL or missing references) //IL_27ca: Unknown result type (might be due to invalid IL or missing references) //IL_27da: Unknown result type (might be due to invalid IL or missing references) //IL_27e0: Unknown result type (might be due to invalid IL or missing references) //IL_27e5: Unknown result type (might be due to invalid IL or missing references) //IL_27eb: Unknown result type (might be due to invalid IL or missing references) //IL_27f5: Unknown result type (might be due to invalid IL or missing references) //IL_27fa: Unknown result type (might be due to invalid IL or missing references) //IL_2800: Unknown result type (might be due to invalid IL or missing references) //IL_280a: Unknown result type (might be due to invalid IL or missing references) //IL_280f: Unknown result type (might be due to invalid IL or missing references) //IL_2815: Unknown result type (might be due to invalid IL or missing references) //IL_281f: Unknown result type (might be due to invalid IL or missing references) //IL_2824: Unknown result type (might be due to invalid IL or missing references) //IL_282a: Unknown result type (might be due to invalid IL or missing references) //IL_282f: Unknown result type (might be due to invalid IL or missing references) //IL_2835: Unknown result type (might be due to invalid IL or missing references) //IL_283a: Unknown result type (might be due to invalid IL or missing references) //IL_2840: Unknown result type (might be due to invalid IL or missing references) //IL_2845: Unknown result type (might be due to invalid IL or missing references) //IL_2850: Unknown result type (might be due to invalid IL or missing references) //IL_2856: Unknown result type (might be due to invalid IL or missing references) //IL_285b: Unknown result type (might be due to invalid IL or missing references) //IL_2861: Unknown result type (might be due to invalid IL or missing references) //IL_286b: Unknown result type (might be due to invalid IL or missing references) //IL_2870: Unknown result type (might be due to invalid IL or missing references) //IL_2876: Unknown result type (might be due to invalid IL or missing references) //IL_2880: Unknown result type (might be due to invalid IL or missing references) //IL_2885: Unknown result type (might be due to invalid IL or missing references) //IL_288b: Unknown result type (might be due to invalid IL or missing references) //IL_2895: Unknown result type (might be due to invalid IL or missing references) //IL_289a: Unknown result type (might be due to invalid IL or missing references) //IL_28a0: Unknown result type (might be due to invalid IL or missing references) //IL_28a5: Unknown result type (might be due to invalid IL or missing references) //IL_28ab: Unknown result type (might be due to invalid IL or missing references) //IL_28b0: Unknown result type (might be due to invalid IL or missing references) //IL_28b6: Unknown result type (might be due to invalid IL or missing references) //IL_28bb: Unknown result type (might be due to invalid IL or missing references) //IL_28c1: Unknown result type (might be due to invalid IL or missing references) //IL_28c6: Unknown result type (might be due to invalid IL or missing references) //IL_28cb: Unknown result type (might be due to invalid IL or missing references) //IL_28db: Unknown result type (might be due to invalid IL or missing references) //IL_28e1: Unknown result type (might be due to invalid IL or missing references) //IL_28e6: Unknown result type (might be due to invalid IL or missing references) //IL_28ec: Unknown result type (might be due to invalid IL or missing references) //IL_28f6: Unknown result type (might be due to invalid IL or missing references) //IL_28fb: Unknown result type (might be due to invalid IL or missing references) //IL_2901: Unknown result type (might be due to invalid IL or missing references) //IL_290b: Unknown result type (might be due to invalid IL or missing references) //IL_2910: Unknown result type (might be due to invalid IL or missing references) //IL_2916: Unknown result type (might be due to invalid IL or missing references) //IL_2920: Unknown result type (might be due to invalid IL or missing references) //IL_2925: Unknown result type (might be due to invalid IL or missing references) //IL_292b: Unknown result type (might be due to invalid IL or missing references) //IL_2930: Unknown result type (might be due to invalid IL or missing references) //IL_2936: Unknown result type (might be due to invalid IL or missing references) //IL_293b: Unknown result type (might be due to invalid IL or missing references) //IL_2941: Unknown result type (might be due to invalid IL or missing references) //IL_2946: Unknown result type (might be due to invalid IL or missing references) //IL_2951: Unknown result type (might be due to invalid IL or missing references) //IL_2957: Unknown result type (might be due to invalid IL or missing references) //IL_295c: Unknown result type (might be due to invalid IL or missing references) //IL_2962: Unknown result type (might be due to invalid IL or missing references) //IL_296c: Unknown result type (might be due to invalid IL or missing references) //IL_2971: Unknown result type (might be due to invalid IL or missing references) //IL_2977: Unknown result type (might be due to invalid IL or missing references) //IL_2981: Unknown result type (might be due to invalid IL or missing references) //IL_2986: Unknown result type (might be due to invalid IL or missing references) //IL_298c: Unknown result type (might be due to invalid IL or missing references) //IL_2996: Unknown result type (might be due to invalid IL or missing references) //IL_299b: Unknown result type (might be due to invalid IL or missing references) //IL_29a1: Unknown result type (might be due to invalid IL or missing references) //IL_29a6: Unknown result type (might be due to invalid IL or missing references) //IL_29ac: Unknown result type (might be due to invalid IL or missing references) //IL_29b1: Unknown result type (might be due to invalid IL or missing references) //IL_29b7: Unknown result type (might be due to invalid IL or missing references) //IL_29bc: Unknown result type (might be due to invalid IL or missing references) //IL_29c2: Unknown result type (might be due to invalid IL or missing references) //IL_29c7: Unknown result type (might be due to invalid IL or missing references) //IL_29cc: Unknown result type (might be due to invalid IL or missing references) //IL_29ee: Unknown result type (might be due to invalid IL or missing references) //IL_29f4: Unknown result type (might be due to invalid IL or missing references) //IL_29f9: Unknown result type (might be due to invalid IL or missing references) //IL_29ff: Unknown result type (might be due to invalid IL or missing references) //IL_2a09: Unknown result type (might be due to invalid IL or missing references) //IL_2a0e: Unknown result type (might be due to invalid IL or missing references) //IL_2a14: Unknown result type (might be due to invalid IL or missing references) //IL_2a1e: Unknown result type (might be due to invalid IL or missing references) //IL_2a23: Unknown result type (might be due to invalid IL or missing references) //IL_2a29: Unknown result type (might be due to invalid IL or missing references) //IL_2a33: Unknown result type (might be due to invalid IL or missing references) //IL_2a38: Unknown result type (might be due to invalid IL or missing references) //IL_2a3e: Unknown result type (might be due to invalid IL or missing references) //IL_2a43: Unknown result type (might be due to invalid IL or missing references) //IL_2a49: Unknown result type (might be due to invalid IL or missing references) //IL_2a4e: Unknown result type (might be due to invalid IL or missing references) //IL_2a59: Unknown result type (might be due to invalid IL or missing references) //IL_2a5f: Unknown result type (might be due to invalid IL or missing references) //IL_2a64: Unknown result type (might be due to invalid IL or missing references) //IL_2a6a: Unknown result type (might be due to invalid IL or missing references) //IL_2a6f: Unknown result type (might be due to invalid IL or missing references) //IL_2a75: Unknown result type (might be due to invalid IL or missing references) //IL_2a7f: Unknown result type (might be due to invalid IL or missing references) //IL_2a84: Unknown result type (might be due to invalid IL or missing references) //IL_2a8a: Unknown result type (might be due to invalid IL or missing references) //IL_2a94: Unknown result type (might be due to invalid IL or missing references) //IL_2a99: Unknown result type (might be due to invalid IL or missing references) //IL_2a9f: Unknown result type (might be due to invalid IL or missing references) //IL_2aa9: Unknown result type (might be due to invalid IL or missing references) //IL_2aae: Unknown result type (might be due to invalid IL or missing references) //IL_2ab4: Unknown result type (might be due to invalid IL or missing references) //IL_2ab9: Unknown result type (might be due to invalid IL or missing references) //IL_2abe: Unknown result type (might be due to invalid IL or missing references) //IL_2ace: Unknown result type (might be due to invalid IL or missing references) //IL_2ad4: Unknown result type (might be due to invalid IL or missing references) //IL_2ad9: Unknown result type (might be due to invalid IL or missing references) //IL_2adf: Unknown result type (might be due to invalid IL or missing references) //IL_2ae9: Unknown result type (might be due to invalid IL or missing references) //IL_2aee: Unknown result type (might be due to invalid IL or missing references) //IL_2af4: Unknown result type (might be due to invalid IL or missing references) //IL_2afe: Unknown result type (might be due to invalid IL or missing references) //IL_2b03: Unknown result type (might be due to invalid IL or missing references) //IL_2b09: Unknown result type (might be due to invalid IL or missing references) //IL_2b13: Unknown result type (might be due to invalid IL or missing references) //IL_2b18: Unknown result type (might be due to invalid IL or missing references) //IL_2b1e: Unknown result type (might be due to invalid IL or missing references) //IL_2b23: Unknown result type (might be due to invalid IL or missing references) //IL_2b29: Unknown result type (might be due to invalid IL or missing references) //IL_2b2e: Unknown result type (might be due to invalid IL or missing references) //IL_2b39: Unknown result type (might be due to invalid IL or missing references) //IL_2b3f: Unknown result type (might be due to invalid IL or missing references) //IL_2b44: Unknown result type (might be due to invalid IL or missing references) //IL_2b4a: Unknown result type (might be due to invalid IL or missing references) //IL_2b54: Unknown result type (might be due to invalid IL or missing references) //IL_2b59: Unknown result type (might be due to invalid IL or missing references) //IL_2b5f: Unknown result type (might be due to invalid IL or missing references) //IL_2b64: Unknown result type (might be due to invalid IL or missing references) //IL_2b6a: Unknown result type (might be due to invalid IL or missing references) //IL_2b74: Unknown result type (might be due to invalid IL or missing references) //IL_2b79: Unknown result type (might be due to invalid IL or missing references) //IL_2b7f: Unknown result type (might be due to invalid IL or missing references) //IL_2b84: Unknown result type (might be due to invalid IL or missing references) //IL_2b8a: Unknown result type (might be due to invalid IL or missing references) //IL_2b8f: Unknown result type (might be due to invalid IL or missing references) //IL_2b94: Unknown result type (might be due to invalid IL or missing references) //IL_2ba4: Unknown result type (might be due to invalid IL or missing references) //IL_2baa: Unknown result type (might be due to invalid IL or missing references) //IL_2baf: Unknown result type (might be due to invalid IL or missing references) //IL_2bb5: Unknown result type (might be due to invalid IL or missing references) //IL_2bbf: Unknown result type (might be due to invalid IL or missing references) //IL_2bc4: Unknown result type (might be due to invalid IL or missing references) //IL_2bca: Unknown result type (might be due to invalid IL or missing references) //IL_2bd4: Unknown result type (might be due to invalid IL or missing references) //IL_2bd9: Unknown result type (might be due to invalid IL or missing references) //IL_2bdf: Unknown result type (might be due to invalid IL or missing references) //IL_2be9: Unknown result type (might be due to invalid IL or missing references) //IL_2bee: Unknown result type (might be due to invalid IL or missing references) //IL_2bf4: Unknown result type (might be due to invalid IL or missing references) //IL_2bf9: Unknown result type (might be due to invalid IL or missing references) //IL_2bff: Unknown result type (might be due to invalid IL or missing references) //IL_2c04: Unknown result type (might be due to invalid IL or missing references) //IL_2c0f: Unknown result type (might be due to invalid IL or missing references) //IL_2c15: Unknown result type (might be due to invalid IL or missing references) //IL_2c1a: Unknown result type (might be due to invalid IL or missing references) //IL_2c20: Unknown result type (might be due to invalid IL or missing references) //IL_2c25: Unknown result type (might be due to invalid IL or missing references) //IL_2c2b: Unknown result type (might be due to invalid IL or missing references) //IL_2c35: Unknown result type (might be due to invalid IL or missing references) //IL_2c3a: Unknown result type (might be due to invalid IL or missing references) //IL_2c40: Unknown result type (might be due to invalid IL or missing references) //IL_2c4a: Unknown result type (might be due to invalid IL or missing references) //IL_2c4f: Unknown result type (might be due to invalid IL or missing references) //IL_2c55: Unknown result type (might be due to invalid IL or missing references) //IL_2c5f: Unknown result type (might be due to invalid IL or missing references) //IL_2c64: Unknown result type (might be due to invalid IL or missing references) //IL_2c6a: Unknown result type (might be due to invalid IL or missing references) //IL_2c6f: Unknown result type (might be due to invalid IL or missing references) //IL_2c74: Unknown result type (might be due to invalid IL or missing references) //IL_2c84: Unknown result type (might be due to invalid IL or missing references) //IL_2c8a: Unknown result type (might be due to invalid IL or missing references) //IL_2c8f: Unknown result type (might be due to invalid IL or missing references) //IL_2c95: Unknown result type (might be due to invalid IL or missing references) //IL_2c9f: Unknown result type (might be due to invalid IL or missing references) //IL_2ca4: Unknown result type (might be due to invalid IL or missing references) //IL_2caa: Unknown result type (might be due to invalid IL or missing references) //IL_2cb4: Unknown result type (might be due to invalid IL or missing references) //IL_2cb9: Unknown result type (might be due to invalid IL or missing references) //IL_2cbf: Unknown result type (might be due to invalid IL or missing references) //IL_2cc9: Unknown result type (might be due to invalid IL or missing references) //IL_2cce: Unknown result type (might be due to invalid IL or missing references) //IL_2cd4: Unknown result type (might be due to invalid IL or missing references) //IL_2cd9: Unknown result type (might be due to invalid IL or missing references) //IL_2cdf: Unknown result type (might be due to invalid IL or missing references) //IL_2ce4: Unknown result type (might be due to invalid IL or missing references) //IL_2cef: Unknown result type (might be due to invalid IL or missing references) //IL_2cf5: Unknown result type (might be due to invalid IL or missing references) //IL_2cfa: Unknown result type (might be due to invalid IL or missing references) //IL_2d00: Unknown result type (might be due to invalid IL or missing references) //IL_2d0a: Unknown result type (might be due to invalid IL or missing references) //IL_2d0f: Unknown result type (might be due to invalid IL or missing references) //IL_2d15: Unknown result type (might be due to invalid IL or missing references) //IL_2d1a: Unknown result type (might be due to invalid IL or missing references) //IL_2d20: Unknown result type (might be due to invalid IL or missing references) //IL_2d2a: Unknown result type (might be due to invalid IL or missing references) //IL_2d2f: Unknown result type (might be due to invalid IL or missing references) //IL_2d35: Unknown result type (might be due to invalid IL or missing references) //IL_2d3a: Unknown result type (might be due to invalid IL or missing references) //IL_2d40: Unknown result type (might be due to invalid IL or missing references) //IL_2d45: Unknown result type (might be due to invalid IL or missing references) //IL_2d4a: Unknown result type (might be due to invalid IL or missing references) //IL_3d01: Unknown result type (might be due to invalid IL or missing references) //IL_3d07: Unknown result type (might be due to invalid IL or missing references) //IL_3d0c: Unknown result type (might be due to invalid IL or missing references) //IL_3d12: Unknown result type (might be due to invalid IL or missing references) //IL_3d1c: Unknown result type (might be due to invalid IL or missing references) //IL_3d21: Unknown result type (might be due to invalid IL or missing references) //IL_3d27: Unknown result type (might be due to invalid IL or missing references) //IL_3d31: Unknown result type (might be due to invalid IL or missing references) //IL_3d36: Unknown result type (might be due to invalid IL or missing references) //IL_3d3c: Unknown result type (might be due to invalid IL or missing references) //IL_3d41: Unknown result type (might be due to invalid IL or missing references) //IL_3d4c: Unknown result type (might be due to invalid IL or missing references) //IL_3d52: Unknown result type (might be due to invalid IL or missing references) //IL_3d57: Unknown result type (might be due to invalid IL or missing references) //IL_3d5d: Unknown result type (might be due to invalid IL or missing references) //IL_3d67: Unknown result type (might be due to invalid IL or missing references) //IL_3d6c: Unknown result type (might be due to invalid IL or missing references) //IL_3d72: Unknown result type (might be due to invalid IL or missing references) //IL_3d7c: Unknown result type (might be due to invalid IL or missing references) //IL_3d81: Unknown result type (might be due to invalid IL or missing references) //IL_3d87: Unknown result type (might be due to invalid IL or missing references) //IL_3d8c: Unknown result type (might be due to invalid IL or missing references) //IL_3d92: Unknown result type (might be due to invalid IL or missing references) //IL_3d97: Unknown result type (might be due to invalid IL or missing references) //IL_3d9c: Unknown result type (might be due to invalid IL or missing references) //IL_3dac: Unknown result type (might be due to invalid IL or missing references) //IL_3db2: Unknown result type (might be due to invalid IL or missing references) //IL_3db7: Unknown result type (might be due to invalid IL or missing references) //IL_3dbd: Unknown result type (might be due to invalid IL or missing references) //IL_3dc7: Unknown result type (might be due to invalid IL or missing references) //IL_3dcc: Unknown result type (might be due to invalid IL or missing references) //IL_3dd2: Unknown result type (might be due to invalid IL or missing references) //IL_3ddc: Unknown result type (might be due to invalid IL or missing references) //IL_3de1: Unknown result type (might be due to invalid IL or missing references) //IL_3de7: Unknown result type (might be due to invalid IL or missing references) //IL_3dec: Unknown result type (might be due to invalid IL or missing references) //IL_3df7: Unknown result type (might be due to invalid IL or missing references) //IL_3dfd: Unknown result type (might be due to invalid IL or missing references) //IL_3e02: Unknown result type (might be due to invalid IL or missing references) //IL_3e08: Unknown result type (might be due to invalid IL or missing references) //IL_3e12: Unknown result type (might be due to invalid IL or missing references) //IL_3e17: Unknown result type (might be due to invalid IL or missing references) //IL_3e1d: Unknown result type (might be due to invalid IL or missing references) //IL_3e27: Unknown result type (might be due to invalid IL or missing references) //IL_3e2c: Unknown result type (might be due to invalid IL or missing references) //IL_3e32: Unknown result type (might be due to invalid IL or missing references) //IL_3e37: Unknown result type (might be due to invalid IL or missing references) //IL_3e3d: Unknown result type (might be due to invalid IL or missing references) //IL_3e42: Unknown result type (might be due to invalid IL or missing references) //IL_3e47: Unknown result type (might be due to invalid IL or missing references) spaceAboveHeadNeededToGrabOn2 = upHeight * climbingDetectors.spaceAboveHeadNeededToGrabOn; spaceAboveHeadNeededToClimbUp2 = upHeight * climbingDetectors.spaceAboveHeadNeededToClimbUp; rodHoldingLedgeDetectorHeight2 = upHeight * climbingDetectors.rodHoldingLedgeDetectorHeight; rodHoldingLedgeDetectorForward2 = forwardLength * climbingDetectors.rodHoldingLedgeDetectorForward; ledgeDetectorHeight2 = upHeight * (climbingDetectors.ledgeDetectorHeight - 0.48f); ledgeDetectorForward2 = forwardLength * climbingDetectors.ledgeDetectorForward; topOfLedgeSurfaceDetectorHeight2 = (climbingDetectors.topOfLedgeSurfaceDetectorHeight + 0.25f) * height2; maxSurfaceLevelHeight2 = upHeight * climbingDetectors.maxSurfaceLevelHeight; underPlatformMaxSurfaceLevelHeight2 = upHeight * climbingDetectors.underPlatformMaxSurfaceLevelHeight; nonLedgeSurfaceDetectorsHeight2 = ((Component)this).transform.up * (climbingDetectors.nonLedgeSurfaceDetectorsHeight - 0.48f); nonLedgeSurfaceDetectorsForward2 = forwardLength * climbingDetectors.nonLedgeSurfaceDetectorsForward; if (climbingDetectors.showClimbDetectionRays || showMainRaysOnly) { Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight, ((Component)this).transform.position + posChange2 + upHeight + forwardLength / 1.25f + upHeight * 1.5f + (rodHoldingLedgeDetectorHeight2 + rodHoldingLedgeDetectorForward2), Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight + forwardLength / 1.25f + upHeight * 1.5f + (rodHoldingLedgeDetectorHeight2 + rodHoldingLedgeDetectorForward2), ((Component)this).transform.position + posChange2 + upHeight * 0.8f + forwardLength / 1.75f + (ledgeDetectorHeight2 + ledgeDetectorForward2 + rodHoldingLedgeDetectorHeight2 + rodHoldingLedgeDetectorForward2), Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight / 2f + forwardLength / 1.52f + upHeight * 0.9f + (ledgeDetectorHeight2 * (0.65f - topOfLedgeSurfaceDetectorHeight2 * 0.59f) + ledgeDetectorForward2 * (0.65f - topOfLedgeSurfaceDetectorHeight2 * 0.59f) + rodHoldingLedgeDetectorHeight2 + rodHoldingLedgeDetectorForward2 + ((Component)this).transform.forward * (topOfLedgeSurfaceDetectorHeight2 * length2) * 0.14f + ((Component)this).transform.up * (topOfLedgeSurfaceDetectorHeight2 * height2)), ((Component)this).transform.position + posChange2 + upHeight * 0.8f + forwardLength / 1.75f + (ledgeDetectorHeight2 + ledgeDetectorForward2 + rodHoldingLedgeDetectorHeight2 + rodHoldingLedgeDetectorForward2), Color.magenta); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight + forwardLength / 1.25f + upHeight * 1.5f + (rodHoldingLedgeDetectorHeight2 + rodHoldingLedgeDetectorForward2), ((Component)this).transform.position + posChange2 + upHeight + forwardLength + upHeight * 1.25f + (rodHoldingLedgeDetectorHeight2 + rodHoldingLedgeDetectorForward2), Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight, ((Component)this).transform.position + posChange2 + upHeight * 2.5f + spaceAboveHeadNeededToClimbUp2, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 - forwardLength / 20f, ((Component)this).transform.position + posChange2 - forwardLength / 20f + upHeight * 1.5f + spaceAboveHeadNeededToGrabOn2, Color.cyan); } if (!showMainRaysOnly) { if (climbingDetectors.showSurfaceLevelRays) { Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 2.2f + forwardLength / 1.75f + maxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f + forwardLength / 1.75f, Color.magenta); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.5f + forwardLength / 1.75f + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + forwardLength / 1.75f + maxSurfaceLevelHeight2, Color.magenta); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.5f + forwardLength / 1.7f + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f + forwardLength / 1.7f, Color.green); } if (climbingDetectors.showNonLedgeSurfaceDetectionRays) { Debug.DrawLine(((Component)this).transform.position + posChange1 + (((Component)this).transform.up + nonLedgeSurfaceDetectorsHeight2) * height2 * 0.3f, ((Component)this).transform.position + posChange1 + (((Component)this).transform.up + nonLedgeSurfaceDetectorsHeight2) * height2 * 0.1f + forwardLength + nonLedgeSurfaceDetectorsForward2, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange1 + (((Component)this).transform.up + nonLedgeSurfaceDetectorsHeight2) * height2 * 0.6f, ((Component)this).transform.position + posChange1 + (((Component)this).transform.up + nonLedgeSurfaceDetectorsHeight2) * height2 * 0.6f + forwardLength / 2.5f + nonLedgeSurfaceDetectorsForward2, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange1 + (((Component)this).transform.up + nonLedgeSurfaceDetectorsHeight2) * height2 * 0.8f, ((Component)this).transform.position + posChange1 + (((Component)this).transform.up + nonLedgeSurfaceDetectorsHeight2) * height2 * 0.8f + forwardLength / 2.3f + nonLedgeSurfaceDetectorsForward2, Color.blue); } } heightOfMidSideDetectors2 = ((Component)this).transform.up * movingDetectors.movingDetectorsHeight; firstFrontWallDetectorsForward2 = forwardLength * movingDetectors.firstFrontWallDetectorsForward; firstFrontWallDetectorsWidth2 = rightWidth * movingDetectors.firstFrontWallDetectorsWidth; firstBackWallDetectorsForward2 = forwardLength * movingDetectors.firstBackWallDetectorsForward; firstBackWallDetectorsWidth2 = rightWidth * movingDetectors.firstBackWallDetectorsWidth; secondFrontWallDetectorsForward2 = forwardLength * movingDetectors.secondFrontWallDetectorsForward; secondFrontWallDetectorsWidth2 = rightWidth * movingDetectors.secondFrontWallDetectorsWidth; secondBackWallDetectorsForward2 = forwardLength * movingDetectors.secondBackWallDetectorsForward; secondBackWallDetectorsWidth2 = rightWidth * movingDetectors.secondBackWallDetectorsWidth; frontTopOfLedgeSurfaceDetectorsForward2 = forwardLength * movingDetectors.frontTopOfLedgeSurfaceDetectorsForward; backTopOfLedgeSurfaceDetectorsForward2 = forwardLength * movingDetectors.backTopOfLedgeSurfaceDetectorsForward; minDistFromGroundHeight2 = upHeight * movingDetectors.minDistFromGroundHeight; minDistFromGroundWidth2 = rightWidth * movingDetectors.minDistFromGroundWidth; if (movingDetectors.showMovingRays || showMainRaysOnly) { Debug.DrawLine(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight * 1.2f + forwardLength / 1.25f + upHeight * 1.5f - rightWidth / 2f + frontTopOfLedgeSurfaceDetectorsForward2, ((Component)this).transform.position + midSidePosChange + posChange2 + upHeight + forwardLength / 1.75f - upHeight / 2f - rightWidth / 2f + frontTopOfLedgeSurfaceDetectorsForward2, Color.blue); Debug.DrawLine(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight * 1.2f - forwardLength / 1.75f + upHeight * 1.5f - rightWidth / 2f + backTopOfLedgeSurfaceDetectorsForward2, ((Component)this).transform.position + midSidePosChange + posChange2 + upHeight - forwardLength / 2f - upHeight / 2f - rightWidth / 2f + backTopOfLedgeSurfaceDetectorsForward2, Color.blue); Debug.DrawLine(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight - forwardLength - rightWidth / 2f, ((Component)this).transform.position + midSidePosChange + posChange2 + upHeight + forwardLength - rightWidth / 2f + secondFrontWallDetectorsForward2, Color.blue); Debug.DrawLine(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight + forwardLength / 2f - rightWidth / 2f + firstFrontWallDetectorsForward2, ((Component)this).transform.position + midSidePosChange + posChange2 + upHeight + forwardLength / 2f + rightWidth + firstFrontWallDetectorsForward2 + firstFrontWallDetectorsWidth2, Color.blue); Debug.DrawLine(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight + forwardLength - rightWidth / 2f + secondFrontWallDetectorsForward2, ((Component)this).transform.position + midSidePosChange + posChange2 + upHeight + forwardLength + rightWidth + secondFrontWallDetectorsForward2 + secondFrontWallDetectorsWidth2, Color.blue); Debug.DrawLine(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight - forwardLength / 3f + firstBackWallDetectorsForward2, ((Component)this).transform.position + midSidePosChange + posChange2 + upHeight - forwardLength / 3f - rightWidth + firstBackWallDetectorsForward2 + firstBackWallDetectorsWidth2, Color.blue); Debug.DrawLine(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight - forwardLength / 2f + secondBackWallDetectorsForward2, ((Component)this).transform.position + midSidePosChange + posChange2 + upHeight - forwardLength / 2f - rightWidth + secondBackWallDetectorsForward2 + secondBackWallDetectorsWidth2, Color.blue); Debug.DrawLine(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight * 1.2f + forwardLength / 1.25f + upHeight * 1.5f + rightWidth / 2f + frontTopOfLedgeSurfaceDetectorsForward2, ((Component)this).transform.position + midSidePosChange + posChange2 + upHeight + forwardLength / 1.75f - upHeight / 2f + rightWidth / 2f + frontTopOfLedgeSurfaceDetectorsForward2, Color.blue); Debug.DrawLine(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight * 1.2f - forwardLength / 1.75f + upHeight * 1.5f + rightWidth / 2f + backTopOfLedgeSurfaceDetectorsForward2, ((Component)this).transform.position + midSidePosChange + posChange2 + upHeight - forwardLength / 2f - upHeight / 2f + rightWidth / 2f + backTopOfLedgeSurfaceDetectorsForward2, Color.blue); Debug.DrawLine(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight - forwardLength + rightWidth / 2f, ((Component)this).transform.position + midSidePosChange + posChange2 + upHeight + forwardLength + rightWidth / 2f + secondFrontWallDetectorsForward2, Color.blue); Debug.DrawLine(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight + forwardLength / 2f + rightWidth / 2f + firstFrontWallDetectorsForward2, ((Component)this).transform.position + midSidePosChange + posChange2 + upHeight + forwardLength / 2f - rightWidth + firstFrontWallDetectorsForward2 - firstFrontWallDetectorsWidth2, Color.blue); Debug.DrawLine(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight + forwardLength + rightWidth / 2f + secondFrontWallDetectorsForward2, ((Component)this).transform.position + midSidePosChange + posChange2 + upHeight + forwardLength - rightWidth + secondFrontWallDetectorsForward2 - secondFrontWallDetectorsWidth2, Color.blue); Debug.DrawLine(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight - forwardLength / 3f + firstBackWallDetectorsForward2, ((Component)this).transform.position + midSidePosChange + posChange2 + upHeight - forwardLength / 3f + rightWidth + firstBackWallDetectorsForward2 - firstBackWallDetectorsWidth2, Color.blue); Debug.DrawLine(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight - forwardLength / 2f + secondBackWallDetectorsForward2, ((Component)this).transform.position + midSidePosChange + posChange2 + upHeight - forwardLength / 2f + rightWidth + secondBackWallDetectorsForward2 - secondBackWallDetectorsWidth2, Color.blue); } if (movingDetectors.showGroundRays || showMainRaysOnly) { Debug.DrawLine(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2, ((Component)this).transform.position + posChange1 - upHeight / 4f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2, Color.red); if (sL) { Debug.DrawLine(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2, ((Component)this).transform.position + posChange1 - upHeight / 3f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2, Color.red); } Debug.DrawLine(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2, ((Component)this).transform.position + posChange1 - upHeight / 4f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2, Color.red); if (sR) { Debug.DrawLine(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2, ((Component)this).transform.position + posChange1 - upHeight / 3f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2, Color.red); } Debug.DrawLine(((Component)this).transform.position + posChange1 + upHeight, ((Component)this).transform.position + posChange1 - upHeight / 3f + minDistFromGroundHeight2, Color.red); } preventRotatingToSideWallHeight2 = upHeight * blockingDetectors.preventRotatingToSideWallHeight; preventRotatingToSideWallWidth2 = rightWidth * blockingDetectors.preventRotatingToSideWallWidth; firstAllowRotatingIfLedgeHitWidth2 = rightWidth * blockingDetectors.firstAllowRotatingIfLedgeHitWidth; secondAllowRotatingIfLedgeHitWidth2 = rightWidth * blockingDetectors.secondAllowRotatingIfLedgeHitWidth; midSideWallDetectorsForward2 = forwardLength * blockingDetectors.midSideWallDetectorsForward; midSideWallDetectorsWidth2 = rightWidth * blockingDetectors.midSideWallDetectorsWidth; sideWallDetectorsWidth2 = rightWidth * blockingDetectors.sideWallDetectorsWidth; frontSideBlockageDetectorsHeight2 = upHeight * blockingDetectors.frontSideBlockageDetectorsHeight; frontSideBlockageDetectorsWidth2 = rightWidth * blockingDetectors.frontSideBlockageDetectorsWidth; frontSideBlockageDetectorsForward2 = forwardLength * blockingDetectors.frontSideBlockageDetectorsForward; aboveHeadPlatformDetectorsHeight2 = upHeight * blockingDetectors.aboveHeadPlatformDetectorsHeight; aboveHeadPlatformDetectorsForward2 = forwardLength * blockingDetectors.aboveHeadPlatformDetectorsForward; ledgeAngleDetectorsHeight2 = upHeight * blockingDetectors.ledgeAngleDetectorsHeight; ledgeAngleDetectorsWidth2 = rightWidth * blockingDetectors.ledgeAngleDetectorsWidth; if (!showMainRaysOnly) { if (blockingDetectors.showRotationBlockingRays) { Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight - rightWidth / 10f + preventRotatingToSideWallHeight2, ((Component)this).transform.position + posChange2 + upHeight - rightWidth * 1.35f + preventRotatingToSideWallHeight2 - preventRotatingToSideWallWidth2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.25f - rightWidth / 10f + preventRotatingToSideWallHeight2, ((Component)this).transform.position + posChange2 + upHeight * 1.25f - rightWidth * 1.35f + preventRotatingToSideWallHeight2 - preventRotatingToSideWallWidth2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.5f - rightWidth / 10f + preventRotatingToSideWallHeight2, ((Component)this).transform.position + posChange2 + upHeight * 1.5f - rightWidth * 1.35f + preventRotatingToSideWallHeight2 - preventRotatingToSideWallWidth2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.75f - rightWidth / 10f + preventRotatingToSideWallHeight2, ((Component)this).transform.position + posChange2 + upHeight * 1.75f - rightWidth * 1.35f + preventRotatingToSideWallHeight2 - preventRotatingToSideWallWidth2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.75f - rightWidth / 1.5f + preventRotatingToSideWallHeight2 - preventRotatingToSideWallWidth2 - firstAllowRotatingIfLedgeHitWidth2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f - rightWidth / 1.5f + preventRotatingToSideWallHeight2 - preventRotatingToSideWallWidth2 - firstAllowRotatingIfLedgeHitWidth2, Color.green); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.75f - rightWidth + preventRotatingToSideWallHeight2 - preventRotatingToSideWallWidth2 - secondAllowRotatingIfLedgeHitWidth2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f - rightWidth + preventRotatingToSideWallHeight2 - preventRotatingToSideWallWidth2 - secondAllowRotatingIfLedgeHitWidth2, Color.green); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight + rightWidth / 10f + preventRotatingToSideWallHeight2, ((Component)this).transform.position + posChange2 + upHeight + rightWidth * 1.35f + preventRotatingToSideWallHeight2 + preventRotatingToSideWallWidth2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.25f + rightWidth / 10f + preventRotatingToSideWallHeight2, ((Component)this).transform.position + posChange2 + upHeight * 1.25f + rightWidth * 1.35f + preventRotatingToSideWallHeight2 + preventRotatingToSideWallWidth2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.5f + rightWidth / 10f + preventRotatingToSideWallHeight2, ((Component)this).transform.position + posChange2 + upHeight * 1.5f + rightWidth * 1.35f + preventRotatingToSideWallHeight2 + preventRotatingToSideWallWidth2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.75f + rightWidth / 10f + preventRotatingToSideWallHeight2, ((Component)this).transform.position + posChange2 + upHeight * 1.75f + rightWidth * 1.35f + preventRotatingToSideWallHeight2 + preventRotatingToSideWallWidth2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.75f + rightWidth / 1.5f + preventRotatingToSideWallHeight2 + preventRotatingToSideWallWidth2 + firstAllowRotatingIfLedgeHitWidth2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f + rightWidth / 1.5f + preventRotatingToSideWallHeight2 + preventRotatingToSideWallWidth2 + firstAllowRotatingIfLedgeHitWidth2, Color.green); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.75f + rightWidth + preventRotatingToSideWallHeight2 + preventRotatingToSideWallWidth2 + secondAllowRotatingIfLedgeHitWidth2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f + rightWidth + preventRotatingToSideWallHeight2 + preventRotatingToSideWallWidth2 + secondAllowRotatingIfLedgeHitWidth2, Color.green); } if (blockingDetectors.showMovementBlockingRays) { Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight - rightWidth / 10f, ((Component)this).transform.position + posChange2 + upHeight * 2f + forwardLength / 1.7f - rightWidth / 4f + midSideWallDetectorsForward2 - midSideWallDetectorsWidth2, Color.yellow); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight - rightWidth / 10f, ((Component)this).transform.position + posChange2 + upHeight * 2f - rightWidth - sideWallDetectorsWidth2, Color.yellow); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight + rightWidth / 10f, ((Component)this).transform.position + posChange2 + upHeight * 2f + forwardLength / 1.7f + rightWidth / 4f + midSideWallDetectorsForward2 + midSideWallDetectorsWidth2, Color.yellow); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight + rightWidth / 10f, ((Component)this).transform.position + posChange2 + upHeight * 2f + rightWidth + sideWallDetectorsWidth2, Color.yellow); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.5f - rightWidth / 4f + frontSideBlockageDetectorsHeight2 - frontSideBlockageDetectorsWidth2, ((Component)this).transform.position + posChange2 + upHeight * 1.5f + forwardLength * 1.2f - rightWidth / 4f + frontSideBlockageDetectorsForward2 + frontSideBlockageDetectorsHeight2 - frontSideBlockageDetectorsWidth2, Color.green); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.5f + rightWidth / 4f + frontSideBlockageDetectorsHeight2 + frontSideBlockageDetectorsWidth2, ((Component)this).transform.position + posChange2 + upHeight * 1.5f + forwardLength * 1.2f + rightWidth / 4f + frontSideBlockageDetectorsForward2 + frontSideBlockageDetectorsHeight2 + frontSideBlockageDetectorsWidth2, Color.green); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.5f + forwardLength / 1.6f - rightWidth / 4f + frontSideBlockageDetectorsHeight2 - frontSideBlockageDetectorsWidth2 + aboveHeadPlatformDetectorsForward2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + forwardLength / 1.25f - rightWidth / 4f + frontSideBlockageDetectorsHeight2 - frontSideBlockageDetectorsWidth2 + aboveHeadPlatformDetectorsForward2 + aboveHeadPlatformDetectorsHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.5f + forwardLength / 1.6f + rightWidth / 4f + frontSideBlockageDetectorsHeight2 + frontSideBlockageDetectorsWidth2 + aboveHeadPlatformDetectorsForward2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + forwardLength / 1.25f + rightWidth / 4f + frontSideBlockageDetectorsHeight2 + frontSideBlockageDetectorsWidth2 + aboveHeadPlatformDetectorsForward2 + aboveHeadPlatformDetectorsHeight2, Color.red); } if (blockingDetectors.showAngleDetectionRays) { Debug.DrawLine(((Component)this).transform.position + posChange2 + forwardLength / 2f + upHeight * 1.5f - rightWidth / 2f + ledgeAngleDetectorsHeight2 - ledgeAngleDetectorsWidth2, ((Component)this).transform.position + posChange2 + upHeight + forwardLength / 2f - upHeight / 2f - rightWidth / 2f - ledgeAngleDetectorsWidth2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + forwardLength / 2f + upHeight * 1.5f - rightWidth / 2f + ledgeAngleDetectorsHeight2 - ledgeAngleDetectorsWidth2, ((Component)this).transform.position + posChange2 + upHeight * 1.5f + forwardLength - rightWidth / 2f + ledgeAngleDetectorsHeight2 - ledgeAngleDetectorsWidth2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + forwardLength / 2f + upHeight * 1.5f + rightWidth / 2f + ledgeAngleDetectorsHeight2 + ledgeAngleDetectorsWidth2, ((Component)this).transform.position + posChange2 + upHeight + forwardLength / 2f - upHeight / 2f + rightWidth / 2f + ledgeAngleDetectorsWidth2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + forwardLength / 2f + upHeight * 1.5f + rightWidth / 2f + ledgeAngleDetectorsHeight2 + ledgeAngleDetectorsWidth2, ((Component)this).transform.position + posChange2 + upHeight * 1.5f + forwardLength + rightWidth / 2f + ledgeAngleDetectorsHeight2 + ledgeAngleDetectorsWidth2, Color.red); } } spaceInFrontNeededToGrabBackOn2 = forwardLength * walkingOffLedgeDetectors.spaceInFrontNeededToGrabBackOn; firstSideLedgeDetectorsHeight2 = upHeight * walkingOffLedgeDetectors.firstSideLedgeDetectorsHeight; secondSideLedgeDetectorsHeight2 = upHeight * walkingOffLedgeDetectors.secondSideLedgeDetectorsHeight; thirdSideLedgeDetectorsHeight2 = upHeight * walkingOffLedgeDetectors.thirdSideLedgeDetectorsHeight; sideLedgeDetectorsWidth2 = rightWidth * walkingOffLedgeDetectors.sideLedgeDetectorsWidth; sideLedgeDetectorsLength2 = forwardLength * walkingOffLedgeDetectors.sideLedgeDetectorsLength; spaceBelowNeededToGrabBackOnHeight2 = upHeight * (walkingOffLedgeDetectors.spaceBelowNeededToGrabBackOnHeight + 0.07f); spaceBelowNeededToGrabBackOnForward2 = forwardLength * walkingOffLedgeDetectors.spaceBelowNeededToGrabBackOnForward; grabBackOnLocationHeight2 = upHeight * walkingOffLedgeDetectors.grabBackOnLocationHeight; grabBackOnLocationWidth2 = rightWidth * walkingOffLedgeDetectors.grabBackOnLocationWidth; grabBackOnLocationForward2 = forwardLength * walkingOffLedgeDetectors.grabBackOnLocationForward; spaceBelowNeededToJump2 = upHeight * walkingOffLedgeDetectors.spaceBelowNeededToJump; if (walkingOffLedgeDetectors.showGrabBackOnToLedgesRays || showMainRaysOnly) { Debug.DrawLine(((Component)this).transform.position + posChange1 + upHeight * 0.5f, ((Component)this).transform.position + posChange1 + forwardLength / 1.5f + upHeight * 0.5f + spaceInFrontNeededToGrabBackOn2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange1 + forwardLength / 4f + upHeight * 0.5f + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 + forwardLength / 4f - upHeight * 1.5f - spaceBelowNeededToGrabBackOnHeight2 + spaceBelowNeededToGrabBackOnForward2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange1 + forwardLength / 1.5f + upHeight * 0.5f + spaceInFrontNeededToGrabBackOn2, ((Component)this).transform.position + posChange1 + forwardLength / 1.5f - upHeight * 1.5f + spaceInFrontNeededToGrabBackOn2 - spaceBelowNeededToGrabBackOnHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange1 + upHeight - forwardLength / 2f + grabBackOnLocationForward2 + grabBackOnLocationHeight2, ((Component)this).transform.position + posChange1 - upHeight - forwardLength / 2f + grabBackOnLocationForward2, Color.yellow); Debug.DrawLine(((Component)this).transform.position + posChange1 + upHeight - forwardLength / 2f - rightWidth * 0.4f + grabBackOnLocationForward2 - grabBackOnLocationWidth2 + grabBackOnLocationHeight2, ((Component)this).transform.position + posChange1 - upHeight - forwardLength / 2f - rightWidth * 0.4f + grabBackOnLocationForward2 - grabBackOnLocationWidth2, Color.yellow); Debug.DrawLine(((Component)this).transform.position + posChange1 + upHeight - forwardLength / 2f + rightWidth * 0.4f + grabBackOnLocationForward2 + grabBackOnLocationWidth2 + grabBackOnLocationHeight2, ((Component)this).transform.position + posChange1 - upHeight - forwardLength / 2f + rightWidth * 0.4f + grabBackOnLocationForward2 + grabBackOnLocationWidth2, Color.yellow); Debug.DrawLine(((Component)this).transform.position + posChange1 + forwardLength / 4f - upHeight * 0.1f + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 + forwardLength / 2f - upHeight * 0.1f - rightWidth / 4f + sideLedgeDetectorsLength2 + firstSideLedgeDetectorsHeight2 - sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange1 + forwardLength / 3f - upHeight * 0.1f + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 - forwardLength / 4f - upHeight * 0.1f + rightWidth / 4f - sideLedgeDetectorsLength2 + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange1 + forwardLength / 4f - upHeight * 0.5f + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 + forwardLength / 2f - upHeight * 0.5f - rightWidth / 4f + sideLedgeDetectorsLength2 + secondSideLedgeDetectorsHeight2 - sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange1 + forwardLength / 3f - upHeight * 0.5f + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 - forwardLength / 4f - upHeight * 0.5f + rightWidth / 4f - sideLedgeDetectorsLength2 + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange1 + forwardLength / 4f - upHeight + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 + forwardLength / 2f - rightWidth / 4f + sideLedgeDetectorsLength2 - upHeight + thirdSideLedgeDetectorsHeight2 - sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange1 + forwardLength / 3f - upHeight + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 - forwardLength / 4f - upHeight + rightWidth / 4f - sideLedgeDetectorsLength2 + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange1 + forwardLength / 4f - upHeight * 0.1f + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 + forwardLength / 2f - upHeight * 0.1f + rightWidth / 4f + sideLedgeDetectorsLength2 + firstSideLedgeDetectorsHeight2 + sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange1 + forwardLength / 3f - upHeight * 0.1f + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 - forwardLength / 4f - upHeight * 0.1f - rightWidth / 4f - sideLedgeDetectorsLength2 + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange1 + forwardLength / 4f - upHeight * 0.5f + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 + forwardLength / 2f - upHeight * 0.5f + rightWidth / 4f + sideLedgeDetectorsLength2 + secondSideLedgeDetectorsHeight2 + sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange1 + forwardLength / 3f - upHeight * 0.5f + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 - forwardLength / 4f - upHeight * 0.5f - rightWidth / 4f - sideLedgeDetectorsLength2 + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange1 + forwardLength / 4f - upHeight + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 + forwardLength / 2f + rightWidth / 4f + sideLedgeDetectorsLength2 - upHeight + thirdSideLedgeDetectorsHeight2 + sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange1 + forwardLength / 3f - upHeight + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 - forwardLength / 4f - upHeight - rightWidth / 4f - sideLedgeDetectorsLength2 + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, Color.red); } if (!showMainRaysOnly && walkingOffLedgeDetectors.showJumpOffLedgesRays) { Debug.DrawLine(((Component)this).transform.position + posChange1 + forwardLength / 3.8f + upHeight * 0.5f + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 + forwardLength / 3.8f - upHeight * 0.5f - spaceBelowNeededToJump2 + spaceBelowNeededToGrabBackOnForward2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + posChange1 + forwardLength / 1.48f + upHeight * 0.5f + spaceInFrontNeededToGrabBackOn2, ((Component)this).transform.position + posChange1 + forwardLength / 1.48f - upHeight * 0.5f + spaceInFrontNeededToGrabBackOn2 - spaceBelowNeededToJump2, Color.cyan); } } private void GetLedgeSwitchingDetectorValues() { //IL_0003: Unknown result type (might be due to invalid IL or missing references) //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_004d: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Unknown result type (might be due to invalid IL or missing references) //IL_0062: Unknown result type (might be due to invalid IL or missing references) //IL_008b: Unknown result type (might be due to invalid IL or missing references) //IL_00a1: Unknown result type (might be due to invalid IL or missing references) //IL_00a6: Unknown result type (might be due to invalid IL or missing references) //IL_00d5: Unknown result type (might be due to invalid IL or missing references) //IL_00eb: Unknown result type (might be due to invalid IL or missing references) //IL_00f0: Unknown result type (might be due to invalid IL or missing references) //IL_00f7: Unknown result type (might be due to invalid IL or missing references) //IL_0107: Unknown result type (might be due to invalid IL or missing references) //IL_010c: Unknown result type (might be due to invalid IL or missing references) //IL_012a: Unknown result type (might be due to invalid IL or missing references) //IL_0140: Unknown result type (might be due to invalid IL or missing references) //IL_0145: Unknown result type (might be due to invalid IL or missing references) //IL_014c: Unknown result type (might be due to invalid IL or missing references) //IL_0162: Unknown result type (might be due to invalid IL or missing references) //IL_0167: Unknown result type (might be due to invalid IL or missing references) //IL_016e: Unknown result type (might be due to invalid IL or missing references) //IL_017e: Unknown result type (might be due to invalid IL or missing references) //IL_0183: Unknown result type (might be due to invalid IL or missing references) //IL_01a1: Unknown result type (might be due to invalid IL or missing references) //IL_01b7: Unknown result type (might be due to invalid IL or missing references) //IL_01bc: Unknown result type (might be due to invalid IL or missing references) //IL_01df: Unknown result type (might be due to invalid IL or missing references) //IL_01e5: Unknown result type (might be due to invalid IL or missing references) //IL_01ea: Unknown result type (might be due to invalid IL or missing references) //IL_01f0: Unknown result type (might be due to invalid IL or missing references) //IL_01fa: Unknown result type (might be due to invalid IL or missing references) //IL_01ff: Unknown result type (might be due to invalid IL or missing references) //IL_0205: Unknown result type (might be due to invalid IL or missing references) //IL_020a: Unknown result type (might be due to invalid IL or missing references) //IL_020f: Unknown result type (might be due to invalid IL or missing references) //IL_021b: Unknown result type (might be due to invalid IL or missing references) //IL_0221: Unknown result type (might be due to invalid IL or missing references) //IL_0226: Unknown result type (might be due to invalid IL or missing references) //IL_022c: Unknown result type (might be due to invalid IL or missing references) //IL_0236: Unknown result type (might be due to invalid IL or missing references) //IL_023b: Unknown result type (might be due to invalid IL or missing references) //IL_0241: Unknown result type (might be due to invalid IL or missing references) //IL_0246: Unknown result type (might be due to invalid IL or missing references) //IL_024b: Unknown result type (might be due to invalid IL or missing references) //IL_0252: Unknown result type (might be due to invalid IL or missing references) //IL_0258: Unknown result type (might be due to invalid IL or missing references) //IL_025d: Unknown result type (might be due to invalid IL or missing references) //IL_0263: Unknown result type (might be due to invalid IL or missing references) //IL_0285: Unknown result type (might be due to invalid IL or missing references) //IL_028a: Unknown result type (might be due to invalid IL or missing references) //IL_028f: Unknown result type (might be due to invalid IL or missing references) //IL_0296: Unknown result type (might be due to invalid IL or missing references) //IL_029c: Unknown result type (might be due to invalid IL or missing references) //IL_02a1: Unknown result type (might be due to invalid IL or missing references) //IL_02a7: Unknown result type (might be due to invalid IL or missing references) //IL_02c9: Unknown result type (might be due to invalid IL or missing references) //IL_02ce: Unknown result type (might be due to invalid IL or missing references) //IL_02d3: Unknown result type (might be due to invalid IL or missing references) //IL_02da: Unknown result type (might be due to invalid IL or missing references) //IL_02e0: Unknown result type (might be due to invalid IL or missing references) //IL_02e5: Unknown result type (might be due to invalid IL or missing references) //IL_02eb: Unknown result type (might be due to invalid IL or missing references) //IL_030d: Unknown result type (might be due to invalid IL or missing references) //IL_0312: Unknown result type (might be due to invalid IL or missing references) //IL_0317: Unknown result type (might be due to invalid IL or missing references) firstSurfaceDetectorWidth2 = rightWidth * (ledgeSwitchingDetectors.firstSurfaceDetectorWidth - 1f); firstNoSurfaceDetectorLength2 = ledgeSwitchingDetectors.firstNoSurfaceDetectorLength; firstNoSurfaceDetectorWidth2 = ledgeSwitchingDetectors.firstNoSurfaceDetectorWidth + 0.773f; secondSurfaceDetectorWidth2 = rightWidth * ledgeSwitchingDetectors.secondSurfaceDetectorWidth; secondNoSurfaceDetectorLength2 = ledgeSwitchingDetectors.secondNoSurfaceDetectorLength; secondNoSurfaceDetectorWidth2 = ledgeSwitchingDetectors.secondNoSurfaceDetectorWidth; thirdSurfaceDetectorWidth2 = rightWidth * (ledgeSwitchingDetectors.thirdSurfaceDetectorWidth + 1f); thirdNoSurfaceDetectorLength2 = ledgeSwitchingDetectors.thirdNoSurfaceDetectorLength; thirdNoSurfaceDetectorWidth2 = ledgeSwitchingDetectors.thirdNoSurfaceDetectorWidth - 0.2189f; surfaceDetectorForward2 = forwardLength * (ledgeSwitchingDetectors.surfaceDetectorForward - 0.05f); surfaceDetectorHeight2 = upHeight * ledgeSwitchingDetectors.surfaceDetectorHeight; surfaceDetectorLength2 = ledgeSwitchingDetectors.surfaceDetectorLength + 0.3f; surfaceDetectorWidth2 = rightWidth * (ledgeSwitchingDetectors.surfaceDetectorWidth + 0.3f); switchPointDetectorWidth2 = rightWidth * (ledgeSwitchingDetectors.switchPointDetectorWidth - 0.2f); noSurfaceDetectorHeight2 = upHeight * ledgeSwitchingDetectors.noSurfaceDetectorHeight; noSurfaceDetectorWidth2 = ledgeSwitchingDetectors.noSurfaceDetectorWidth - 0.5f; wallInFrontDetectorUpAmount2 = upHeight * (ledgeSwitchingDetectors.wallInFrontDetectorUpAmount + 0.3f); wallInFrontDetectorHeight2 = ledgeSwitchingDetectors.wallInFrontDetectorHeight - 0.21f; leftSpace = ((Component)this).transform.position + posChange2 - rightWidth / 10f + wallInFrontDetectorUpAmount2; rightSpace = ((Component)this).transform.position + posChange2 + rightWidth / 10f + wallInFrontDetectorUpAmount2; firstSwitchSurfaceWidth = switchPointDetectorWidth2 + firstSurfaceDetectorWidth2 + surfaceDetectorWidth2 * (1.24f * (ledgeSwitchingDetectors.switchPointDetectorWidth / 2.67f + 1f)); secondSwitchSurfaceWidth = switchPointDetectorWidth2 + secondSurfaceDetectorWidth2 + surfaceDetectorWidth2 * (1.24f * (ledgeSwitchingDetectors.switchPointDetectorWidth / 2.67f + 1f)); thirdSwitchSurfaceWidth = switchPointDetectorWidth2 + thirdSurfaceDetectorWidth2 + surfaceDetectorWidth2 * (1.24f * (ledgeSwitchingDetectors.switchPointDetectorWidth / 2.67f + 1f)); } private void DrawFirstLedgeSwitchingDetectors() { //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_002a: Unknown result type (might be due to invalid IL or missing references) //IL_002f: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_006a: Unknown result type (might be due to invalid IL or missing references) //IL_006f: Unknown result type (might be due to invalid IL or missing references) //IL_007a: Unknown result type (might be due to invalid IL or missing references) //IL_0080: Unknown result type (might be due to invalid IL or missing references) //IL_0085: Unknown result type (might be due to invalid IL or missing references) //IL_008b: Unknown result type (might be due to invalid IL or missing references) //IL_0095: Unknown result type (might be due to invalid IL or missing references) //IL_009a: Unknown result type (might be due to invalid IL or missing references) //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_00a5: Unknown result type (might be due to invalid IL or missing references) //IL_00ab: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) //IL_00ba: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_00ca: Unknown result type (might be due to invalid IL or missing references) //IL_00da: Unknown result type (might be due to invalid IL or missing references) //IL_00e0: Unknown result type (might be due to invalid IL or missing references) //IL_00e5: Unknown result type (might be due to invalid IL or missing references) //IL_00eb: Unknown result type (might be due to invalid IL or missing references) //IL_00f5: Unknown result type (might be due to invalid IL or missing references) //IL_00fa: Unknown result type (might be due to invalid IL or missing references) //IL_0100: Unknown result type (might be due to invalid IL or missing references) //IL_0105: Unknown result type (might be due to invalid IL or missing references) //IL_010b: Unknown result type (might be due to invalid IL or missing references) //IL_0115: Unknown result type (might be due to invalid IL or missing references) //IL_011a: Unknown result type (might be due to invalid IL or missing references) //IL_0120: Unknown result type (might be due to invalid IL or missing references) //IL_0125: Unknown result type (might be due to invalid IL or missing references) //IL_0130: Unknown result type (might be due to invalid IL or missing references) //IL_0136: Unknown result type (might be due to invalid IL or missing references) //IL_013b: Unknown result type (might be due to invalid IL or missing references) //IL_0141: Unknown result type (might be due to invalid IL or missing references) //IL_014b: Unknown result type (might be due to invalid IL or missing references) //IL_0150: Unknown result type (might be due to invalid IL or missing references) //IL_0156: Unknown result type (might be due to invalid IL or missing references) //IL_015b: Unknown result type (might be due to invalid IL or missing references) //IL_0161: Unknown result type (might be due to invalid IL or missing references) //IL_016b: Unknown result type (might be due to invalid IL or missing references) //IL_0170: Unknown result type (might be due to invalid IL or missing references) //IL_0176: Unknown result type (might be due to invalid IL or missing references) //IL_017b: Unknown result type (might be due to invalid IL or missing references) //IL_0180: Unknown result type (might be due to invalid IL or missing references) //IL_0190: Unknown result type (might be due to invalid IL or missing references) //IL_0196: Unknown result type (might be due to invalid IL or missing references) //IL_019b: Unknown result type (might be due to invalid IL or missing references) //IL_01a1: Unknown result type (might be due to invalid IL or missing references) //IL_01ab: Unknown result type (might be due to invalid IL or missing references) //IL_01b0: Unknown result type (might be due to invalid IL or missing references) //IL_01b6: Unknown result type (might be due to invalid IL or missing references) //IL_01bb: Unknown result type (might be due to invalid IL or missing references) //IL_01c1: Unknown result type (might be due to invalid IL or missing references) //IL_01cb: Unknown result type (might be due to invalid IL or missing references) //IL_01d0: Unknown result type (might be due to invalid IL or missing references) //IL_01d6: Unknown result type (might be due to invalid IL or missing references) //IL_01db: Unknown result type (might be due to invalid IL or missing references) //IL_01e6: Unknown result type (might be due to invalid IL or missing references) //IL_01ec: Unknown result type (might be due to invalid IL or missing references) //IL_01f1: Unknown result type (might be due to invalid IL or missing references) //IL_01f7: Unknown result type (might be due to invalid IL or missing references) //IL_0201: Unknown result type (might be due to invalid IL or missing references) //IL_0206: Unknown result type (might be due to invalid IL or missing references) //IL_020c: Unknown result type (might be due to invalid IL or missing references) //IL_0211: Unknown result type (might be due to invalid IL or missing references) //IL_0217: Unknown result type (might be due to invalid IL or missing references) //IL_0221: Unknown result type (might be due to invalid IL or missing references) //IL_0226: Unknown result type (might be due to invalid IL or missing references) //IL_022c: Unknown result type (might be due to invalid IL or missing references) //IL_0231: Unknown result type (might be due to invalid IL or missing references) //IL_0236: Unknown result type (might be due to invalid IL or missing references) //IL_0246: Unknown result type (might be due to invalid IL or missing references) //IL_024c: Unknown result type (might be due to invalid IL or missing references) //IL_0251: Unknown result type (might be due to invalid IL or missing references) //IL_0257: Unknown result type (might be due to invalid IL or missing references) //IL_0261: Unknown result type (might be due to invalid IL or missing references) //IL_0266: Unknown result type (might be due to invalid IL or missing references) //IL_026c: Unknown result type (might be due to invalid IL or missing references) //IL_0271: Unknown result type (might be due to invalid IL or missing references) //IL_0277: Unknown result type (might be due to invalid IL or missing references) //IL_0281: Unknown result type (might be due to invalid IL or missing references) //IL_0286: Unknown result type (might be due to invalid IL or missing references) //IL_028c: Unknown result type (might be due to invalid IL or missing references) //IL_0291: Unknown result type (might be due to invalid IL or missing references) //IL_029c: Unknown result type (might be due to invalid IL or missing references) //IL_02a2: Unknown result type (might be due to invalid IL or missing references) //IL_02a7: Unknown result type (might be due to invalid IL or missing references) //IL_02ad: Unknown result type (might be due to invalid IL or missing references) //IL_02b7: Unknown result type (might be due to invalid IL or missing references) //IL_02bc: Unknown result type (might be due to invalid IL or missing references) //IL_02c2: Unknown result type (might be due to invalid IL or missing references) //IL_02c7: Unknown result type (might be due to invalid IL or missing references) //IL_02cd: Unknown result type (might be due to invalid IL or missing references) //IL_02d7: Unknown result type (might be due to invalid IL or missing references) //IL_02dc: Unknown result type (might be due to invalid IL or missing references) //IL_02e2: Unknown result type (might be due to invalid IL or missing references) //IL_02e7: Unknown result type (might be due to invalid IL or missing references) //IL_02ec: Unknown result type (might be due to invalid IL or missing references) //IL_02fc: Unknown result type (might be due to invalid IL or missing references) //IL_0302: Unknown result type (might be due to invalid IL or missing references) //IL_0307: Unknown result type (might be due to invalid IL or missing references) //IL_030d: Unknown result type (might be due to invalid IL or missing references) //IL_0317: Unknown result type (might be due to invalid IL or missing references) //IL_031c: Unknown result type (might be due to invalid IL or missing references) //IL_0322: Unknown result type (might be due to invalid IL or missing references) //IL_0327: Unknown result type (might be due to invalid IL or missing references) //IL_032d: Unknown result type (might be due to invalid IL or missing references) //IL_0337: Unknown result type (might be due to invalid IL or missing references) //IL_033c: Unknown result type (might be due to invalid IL or missing references) //IL_0342: Unknown result type (might be due to invalid IL or missing references) //IL_0347: Unknown result type (might be due to invalid IL or missing references) //IL_0352: Unknown result type (might be due to invalid IL or missing references) //IL_0358: Unknown result type (might be due to invalid IL or missing references) //IL_035d: Unknown result type (might be due to invalid IL or missing references) //IL_0363: Unknown result type (might be due to invalid IL or missing references) //IL_036d: Unknown result type (might be due to invalid IL or missing references) //IL_0372: Unknown result type (might be due to invalid IL or missing references) //IL_0378: Unknown result type (might be due to invalid IL or missing references) //IL_037d: Unknown result type (might be due to invalid IL or missing references) //IL_0383: Unknown result type (might be due to invalid IL or missing references) //IL_038d: Unknown result type (might be due to invalid IL or missing references) //IL_0392: Unknown result type (might be due to invalid IL or missing references) //IL_0398: Unknown result type (might be due to invalid IL or missing references) //IL_039d: Unknown result type (might be due to invalid IL or missing references) //IL_03a2: Unknown result type (might be due to invalid IL or missing references) //IL_03b2: Unknown result type (might be due to invalid IL or missing references) //IL_03b8: Unknown result type (might be due to invalid IL or missing references) //IL_03bd: Unknown result type (might be due to invalid IL or missing references) //IL_03c3: Unknown result type (might be due to invalid IL or missing references) //IL_03cd: Unknown result type (might be due to invalid IL or missing references) //IL_03d2: Unknown result type (might be due to invalid IL or missing references) //IL_03d8: Unknown result type (might be due to invalid IL or missing references) //IL_03dd: Unknown result type (might be due to invalid IL or missing references) //IL_03e3: Unknown result type (might be due to invalid IL or missing references) //IL_03ed: Unknown result type (might be due to invalid IL or missing references) //IL_03f2: Unknown result type (might be due to invalid IL or missing references) //IL_03f8: Unknown result type (might be due to invalid IL or missing references) //IL_03fd: Unknown result type (might be due to invalid IL or missing references) //IL_0408: Unknown result type (might be due to invalid IL or missing references) //IL_040e: Unknown result type (might be due to invalid IL or missing references) //IL_0413: Unknown result type (might be due to invalid IL or missing references) //IL_0419: Unknown result type (might be due to invalid IL or missing references) //IL_0423: Unknown result type (might be due to invalid IL or missing references) //IL_0428: Unknown result type (might be due to invalid IL or missing references) //IL_042e: Unknown result type (might be due to invalid IL or missing references) //IL_0433: Unknown result type (might be due to invalid IL or missing references) //IL_0439: Unknown result type (might be due to invalid IL or missing references) //IL_0443: Unknown result type (might be due to invalid IL or missing references) //IL_0448: Unknown result type (might be due to invalid IL or missing references) //IL_044e: Unknown result type (might be due to invalid IL or missing references) //IL_0453: Unknown result type (might be due to invalid IL or missing references) //IL_0458: Unknown result type (might be due to invalid IL or missing references) //IL_0468: Unknown result type (might be due to invalid IL or missing references) //IL_046e: Unknown result type (might be due to invalid IL or missing references) //IL_0473: Unknown result type (might be due to invalid IL or missing references) //IL_0479: Unknown result type (might be due to invalid IL or missing references) //IL_047e: Unknown result type (might be due to invalid IL or missing references) //IL_0484: Unknown result type (might be due to invalid IL or missing references) //IL_048e: Unknown result type (might be due to invalid IL or missing references) //IL_0493: Unknown result type (might be due to invalid IL or missing references) //IL_0499: Unknown result type (might be due to invalid IL or missing references) //IL_049e: Unknown result type (might be due to invalid IL or missing references) //IL_04a9: Unknown result type (might be due to invalid IL or missing references) //IL_04af: Unknown result type (might be due to invalid IL or missing references) //IL_04b4: Unknown result type (might be due to invalid IL or missing references) //IL_04ba: Unknown result type (might be due to invalid IL or missing references) //IL_04bf: Unknown result type (might be due to invalid IL or missing references) //IL_04c5: Unknown result type (might be due to invalid IL or missing references) //IL_04cf: Unknown result type (might be due to invalid IL or missing references) //IL_04d4: Unknown result type (might be due to invalid IL or missing references) //IL_04da: Unknown result type (might be due to invalid IL or missing references) //IL_04df: Unknown result type (might be due to invalid IL or missing references) //IL_04e4: Unknown result type (might be due to invalid IL or missing references) //IL_04f4: Unknown result type (might be due to invalid IL or missing references) //IL_04fa: Unknown result type (might be due to invalid IL or missing references) //IL_04ff: Unknown result type (might be due to invalid IL or missing references) //IL_0505: Unknown result type (might be due to invalid IL or missing references) //IL_050a: Unknown result type (might be due to invalid IL or missing references) //IL_0510: Unknown result type (might be due to invalid IL or missing references) //IL_051a: Unknown result type (might be due to invalid IL or missing references) //IL_051f: Unknown result type (might be due to invalid IL or missing references) //IL_0525: Unknown result type (might be due to invalid IL or missing references) //IL_052a: Unknown result type (might be due to invalid IL or missing references) //IL_0535: Unknown result type (might be due to invalid IL or missing references) //IL_053b: Unknown result type (might be due to invalid IL or missing references) //IL_0540: Unknown result type (might be due to invalid IL or missing references) //IL_0546: Unknown result type (might be due to invalid IL or missing references) //IL_054b: Unknown result type (might be due to invalid IL or missing references) //IL_0551: Unknown result type (might be due to invalid IL or missing references) //IL_055b: Unknown result type (might be due to invalid IL or missing references) //IL_0560: Unknown result type (might be due to invalid IL or missing references) //IL_0566: Unknown result type (might be due to invalid IL or missing references) //IL_056b: Unknown result type (might be due to invalid IL or missing references) //IL_0570: Unknown result type (might be due to invalid IL or missing references) //IL_0580: Unknown result type (might be due to invalid IL or missing references) //IL_0586: Unknown result type (might be due to invalid IL or missing references) //IL_058b: Unknown result type (might be due to invalid IL or missing references) //IL_0591: Unknown result type (might be due to invalid IL or missing references) //IL_059b: Unknown result type (might be due to invalid IL or missing references) //IL_05a0: Unknown result type (might be due to invalid IL or missing references) //IL_05a6: Unknown result type (might be due to invalid IL or missing references) //IL_05ab: Unknown result type (might be due to invalid IL or missing references) //IL_05b1: Unknown result type (might be due to invalid IL or missing references) //IL_05bb: Unknown result type (might be due to invalid IL or missing references) //IL_05c0: Unknown result type (might be due to invalid IL or missing references) //IL_05c6: Unknown result type (might be due to invalid IL or missing references) //IL_05cb: Unknown result type (might be due to invalid IL or missing references) //IL_05d6: Unknown result type (might be due to invalid IL or missing references) //IL_05dc: Unknown result type (might be due to invalid IL or missing references) //IL_05e1: Unknown result type (might be due to invalid IL or missing references) //IL_05e7: Unknown result type (might be due to invalid IL or missing references) //IL_05f1: Unknown result type (might be due to invalid IL or missing references) //IL_05f6: Unknown result type (might be due to invalid IL or missing references) //IL_05fc: Unknown result type (might be due to invalid IL or missing references) //IL_0601: Unknown result type (might be due to invalid IL or missing references) //IL_0607: Unknown result type (might be due to invalid IL or missing references) //IL_0611: Unknown result type (might be due to invalid IL or missing references) //IL_0616: Unknown result type (might be due to invalid IL or missing references) //IL_061c: Unknown result type (might be due to invalid IL or missing references) //IL_0621: Unknown result type (might be due to invalid IL or missing references) //IL_0626: Unknown result type (might be due to invalid IL or missing references) //IL_0636: Unknown result type (might be due to invalid IL or missing references) //IL_063c: Unknown result type (might be due to invalid IL or missing references) //IL_0641: Unknown result type (might be due to invalid IL or missing references) //IL_0647: Unknown result type (might be due to invalid IL or missing references) //IL_0651: Unknown result type (might be due to invalid IL or missing references) //IL_0656: Unknown result type (might be due to invalid IL or missing references) //IL_065c: Unknown result type (might be due to invalid IL or missing references) //IL_0661: Unknown result type (might be due to invalid IL or missing references) //IL_0667: Unknown result type (might be due to invalid IL or missing references) //IL_0671: Unknown result type (might be due to invalid IL or missing references) //IL_0676: Unknown result type (might be due to invalid IL or missing references) //IL_067c: Unknown result type (might be due to invalid IL or missing references) //IL_0681: Unknown result type (might be due to invalid IL or missing references) //IL_068c: Unknown result type (might be due to invalid IL or missing references) //IL_0692: Unknown result type (might be due to invalid IL or missing references) //IL_0697: Unknown result type (might be due to invalid IL or missing references) //IL_069d: Unknown result type (might be due to invalid IL or missing references) //IL_06a7: Unknown result type (might be due to invalid IL or missing references) //IL_06ac: Unknown result type (might be due to invalid IL or missing references) //IL_06b2: Unknown result type (might be due to invalid IL or missing references) //IL_06b7: Unknown result type (might be due to invalid IL or missing references) //IL_06bd: Unknown result type (might be due to invalid IL or missing references) //IL_06c7: Unknown result type (might be due to invalid IL or missing references) //IL_06cc: Unknown result type (might be due to invalid IL or missing references) //IL_06d2: Unknown result type (might be due to invalid IL or missing references) //IL_06d7: Unknown result type (might be due to invalid IL or missing references) //IL_06dc: Unknown result type (might be due to invalid IL or missing references) //IL_06ec: Unknown result type (might be due to invalid IL or missing references) //IL_06f2: Unknown result type (might be due to invalid IL or missing references) //IL_06f7: Unknown result type (might be due to invalid IL or missing references) //IL_06fd: Unknown result type (might be due to invalid IL or missing references) //IL_0707: Unknown result type (might be due to invalid IL or missing references) //IL_070c: Unknown result type (might be due to invalid IL or missing references) //IL_0712: Unknown result type (might be due to invalid IL or missing references) //IL_0717: Unknown result type (might be due to invalid IL or missing references) //IL_071d: Unknown result type (might be due to invalid IL or missing references) //IL_0727: Unknown result type (might be due to invalid IL or missing references) //IL_072c: Unknown result type (might be due to invalid IL or missing references) //IL_0732: Unknown result type (might be due to invalid IL or missing references) //IL_0737: Unknown result type (might be due to invalid IL or missing references) //IL_0742: Unknown result type (might be due to invalid IL or missing references) //IL_0748: Unknown result type (might be due to invalid IL or missing references) //IL_074d: Unknown result type (might be due to invalid IL or missing references) //IL_0753: Unknown result type (might be due to invalid IL or missing references) //IL_075d: Unknown result type (might be due to invalid IL or missing references) //IL_0762: Unknown result type (might be due to invalid IL or missing references) //IL_0768: Unknown result type (might be due to invalid IL or missing references) //IL_076d: Unknown result type (might be due to invalid IL or missing references) //IL_0773: Unknown result type (might be due to invalid IL or missing references) //IL_077d: Unknown result type (might be due to invalid IL or missing references) //IL_0782: Unknown result type (might be due to invalid IL or missing references) //IL_0788: Unknown result type (might be due to invalid IL or missing references) //IL_078d: Unknown result type (might be due to invalid IL or missing references) //IL_0792: Unknown result type (might be due to invalid IL or missing references) //IL_07a2: Unknown result type (might be due to invalid IL or missing references) //IL_07a8: Unknown result type (might be due to invalid IL or missing references) //IL_07ad: Unknown result type (might be due to invalid IL or missing references) //IL_07b3: Unknown result type (might be due to invalid IL or missing references) //IL_07bd: Unknown result type (might be due to invalid IL or missing references) //IL_07c2: Unknown result type (might be due to invalid IL or missing references) //IL_07c8: Unknown result type (might be due to invalid IL or missing references) //IL_07cd: Unknown result type (might be due to invalid IL or missing references) //IL_07d3: Unknown result type (might be due to invalid IL or missing references) //IL_07dd: Unknown result type (might be due to invalid IL or missing references) //IL_07e2: Unknown result type (might be due to invalid IL or missing references) //IL_07e8: Unknown result type (might be due to invalid IL or missing references) //IL_07ed: Unknown result type (might be due to invalid IL or missing references) //IL_07f8: Unknown result type (might be due to invalid IL or missing references) //IL_07fe: Unknown result type (might be due to invalid IL or missing references) //IL_0803: Unknown result type (might be due to invalid IL or missing references) //IL_0809: Unknown result type (might be due to invalid IL or missing references) //IL_0813: Unknown result type (might be due to invalid IL or missing references) //IL_0818: Unknown result type (might be due to invalid IL or missing references) //IL_081e: Unknown result type (might be due to invalid IL or missing references) //IL_0823: Unknown result type (might be due to invalid IL or missing references) //IL_0829: Unknown result type (might be due to invalid IL or missing references) //IL_0833: Unknown result type (might be due to invalid IL or missing references) //IL_0838: Unknown result type (might be due to invalid IL or missing references) //IL_083e: Unknown result type (might be due to invalid IL or missing references) //IL_0843: Unknown result type (might be due to invalid IL or missing references) //IL_0848: Unknown result type (might be due to invalid IL or missing references) //IL_0858: Unknown result type (might be due to invalid IL or missing references) //IL_085e: Unknown result type (might be due to invalid IL or missing references) //IL_0863: Unknown result type (might be due to invalid IL or missing references) //IL_0869: Unknown result type (might be due to invalid IL or missing references) //IL_0873: Unknown result type (might be due to invalid IL or missing references) //IL_0878: Unknown result type (might be due to invalid IL or missing references) //IL_087e: Unknown result type (might be due to invalid IL or missing references) //IL_0883: Unknown result type (might be due to invalid IL or missing references) //IL_0889: Unknown result type (might be due to invalid IL or missing references) //IL_0893: Unknown result type (might be due to invalid IL or missing references) //IL_0898: Unknown result type (might be due to invalid IL or missing references) //IL_089e: Unknown result type (might be due to invalid IL or missing references) //IL_08a3: Unknown result type (might be due to invalid IL or missing references) //IL_08ae: Unknown result type (might be due to invalid IL or missing references) //IL_08b4: Unknown result type (might be due to invalid IL or missing references) //IL_08b9: Unknown result type (might be due to invalid IL or missing references) //IL_08bf: Unknown result type (might be due to invalid IL or missing references) //IL_08c9: Unknown result type (might be due to invalid IL or missing references) //IL_08ce: Unknown result type (might be due to invalid IL or missing references) //IL_08d4: Unknown result type (might be due to invalid IL or missing references) //IL_08d9: Unknown result type (might be due to invalid IL or missing references) //IL_08df: Unknown result type (might be due to invalid IL or missing references) //IL_08e9: Unknown result type (might be due to invalid IL or missing references) //IL_08ee: Unknown result type (might be due to invalid IL or missing references) //IL_08f4: Unknown result type (might be due to invalid IL or missing references) //IL_08f9: Unknown result type (might be due to invalid IL or missing references) //IL_08fe: Unknown result type (might be due to invalid IL or missing references) //IL_090e: Unknown result type (might be due to invalid IL or missing references) //IL_0914: Unknown result type (might be due to invalid IL or missing references) //IL_0919: Unknown result type (might be due to invalid IL or missing references) //IL_091f: Unknown result type (might be due to invalid IL or missing references) //IL_0929: Unknown result type (might be due to invalid IL or missing references) //IL_092e: Unknown result type (might be due to invalid IL or missing references) //IL_0934: Unknown result type (might be due to invalid IL or missing references) //IL_0939: Unknown result type (might be due to invalid IL or missing references) //IL_093f: Unknown result type (might be due to invalid IL or missing references) //IL_0949: Unknown result type (might be due to invalid IL or missing references) //IL_094e: Unknown result type (might be due to invalid IL or missing references) //IL_0954: Unknown result type (might be due to invalid IL or missing references) //IL_0959: Unknown result type (might be due to invalid IL or missing references) //IL_0964: Unknown result type (might be due to invalid IL or missing references) //IL_096a: Unknown result type (might be due to invalid IL or missing references) //IL_096f: Unknown result type (might be due to invalid IL or missing references) //IL_0975: Unknown result type (might be due to invalid IL or missing references) //IL_097f: Unknown result type (might be due to invalid IL or missing references) //IL_0984: Unknown result type (might be due to invalid IL or missing references) //IL_098a: Unknown result type (might be due to invalid IL or missing references) //IL_098f: Unknown result type (might be due to invalid IL or missing references) //IL_0995: Unknown result type (might be due to invalid IL or missing references) //IL_099f: Unknown result type (might be due to invalid IL or missing references) //IL_09a4: Unknown result type (might be due to invalid IL or missing references) //IL_09aa: Unknown result type (might be due to invalid IL or missing references) //IL_09af: Unknown result type (might be due to invalid IL or missing references) //IL_09b4: Unknown result type (might be due to invalid IL or missing references) //IL_09c4: Unknown result type (might be due to invalid IL or missing references) //IL_09ca: Unknown result type (might be due to invalid IL or missing references) //IL_09cf: Unknown result type (might be due to invalid IL or missing references) //IL_09d5: Unknown result type (might be due to invalid IL or missing references) //IL_09df: Unknown result type (might be due to invalid IL or missing references) //IL_09e4: Unknown result type (might be due to invalid IL or missing references) //IL_09ea: Unknown result type (might be due to invalid IL or missing references) //IL_09ef: Unknown result type (might be due to invalid IL or missing references) //IL_09f5: Unknown result type (might be due to invalid IL or missing references) //IL_09ff: Unknown result type (might be due to invalid IL or missing references) //IL_0a04: Unknown result type (might be due to invalid IL or missing references) //IL_0a0a: Unknown result type (might be due to invalid IL or missing references) //IL_0a0f: Unknown result type (might be due to invalid IL or missing references) //IL_0a1a: Unknown result type (might be due to invalid IL or missing references) //IL_0a20: Unknown result type (might be due to invalid IL or missing references) //IL_0a25: Unknown result type (might be due to invalid IL or missing references) //IL_0a2b: Unknown result type (might be due to invalid IL or missing references) //IL_0a35: Unknown result type (might be due to invalid IL or missing references) //IL_0a3a: Unknown result type (might be due to invalid IL or missing references) //IL_0a40: Unknown result type (might be due to invalid IL or missing references) //IL_0a45: Unknown result type (might be due to invalid IL or missing references) //IL_0a4b: Unknown result type (might be due to invalid IL or missing references) //IL_0a55: Unknown result type (might be due to invalid IL or missing references) //IL_0a5a: Unknown result type (might be due to invalid IL or missing references) //IL_0a60: Unknown result type (might be due to invalid IL or missing references) //IL_0a65: Unknown result type (might be due to invalid IL or missing references) //IL_0a6a: Unknown result type (might be due to invalid IL or missing references) //IL_0a7a: Unknown result type (might be due to invalid IL or missing references) //IL_0a80: Unknown result type (might be due to invalid IL or missing references) //IL_0a85: Unknown result type (might be due to invalid IL or missing references) //IL_0a8b: Unknown result type (might be due to invalid IL or missing references) //IL_0a95: Unknown result type (might be due to invalid IL or missing references) //IL_0a9a: Unknown result type (might be due to invalid IL or missing references) //IL_0aa0: Unknown result type (might be due to invalid IL or missing references) //IL_0aa5: Unknown result type (might be due to invalid IL or missing references) //IL_0aab: Unknown result type (might be due to invalid IL or missing references) //IL_0ab5: Unknown result type (might be due to invalid IL or missing references) //IL_0aba: Unknown result type (might be due to invalid IL or missing references) //IL_0ac0: Unknown result type (might be due to invalid IL or missing references) //IL_0ac5: Unknown result type (might be due to invalid IL or missing references) //IL_0ad0: Unknown result type (might be due to invalid IL or missing references) //IL_0ad6: Unknown result type (might be due to invalid IL or missing references) //IL_0adb: Unknown result type (might be due to invalid IL or missing references) //IL_0ae1: Unknown result type (might be due to invalid IL or missing references) //IL_0aeb: Unknown result type (might be due to invalid IL or missing references) //IL_0af0: Unknown result type (might be due to invalid IL or missing references) //IL_0af6: Unknown result type (might be due to invalid IL or missing references) //IL_0afb: Unknown result type (might be due to invalid IL or missing references) //IL_0b01: Unknown result type (might be due to invalid IL or missing references) //IL_0b0b: Unknown result type (might be due to invalid IL or missing references) //IL_0b10: Unknown result type (might be due to invalid IL or missing references) //IL_0b16: Unknown result type (might be due to invalid IL or missing references) //IL_0b1b: Unknown result type (might be due to invalid IL or missing references) //IL_0b20: Unknown result type (might be due to invalid IL or missing references) //IL_0b30: Unknown result type (might be due to invalid IL or missing references) //IL_0b36: Unknown result type (might be due to invalid IL or missing references) //IL_0b3b: Unknown result type (might be due to invalid IL or missing references) //IL_0b41: Unknown result type (might be due to invalid IL or missing references) //IL_0b46: Unknown result type (might be due to invalid IL or missing references) //IL_0b4c: Unknown result type (might be due to invalid IL or missing references) //IL_0b56: Unknown result type (might be due to invalid IL or missing references) //IL_0b5b: Unknown result type (might be due to invalid IL or missing references) //IL_0b61: Unknown result type (might be due to invalid IL or missing references) //IL_0b66: Unknown result type (might be due to invalid IL or missing references) //IL_0b71: Unknown result type (might be due to invalid IL or missing references) //IL_0b77: Unknown result type (might be due to invalid IL or missing references) //IL_0b7c: Unknown result type (might be due to invalid IL or missing references) //IL_0b82: Unknown result type (might be due to invalid IL or missing references) //IL_0b87: Unknown result type (might be due to invalid IL or missing references) //IL_0b8d: Unknown result type (might be due to invalid IL or missing references) //IL_0b97: Unknown result type (might be due to invalid IL or missing references) //IL_0b9c: Unknown result type (might be due to invalid IL or missing references) //IL_0ba2: Unknown result type (might be due to invalid IL or missing references) //IL_0ba7: Unknown result type (might be due to invalid IL or missing references) //IL_0bac: Unknown result type (might be due to invalid IL or missing references) //IL_0bbc: Unknown result type (might be due to invalid IL or missing references) //IL_0bc2: Unknown result type (might be due to invalid IL or missing references) //IL_0bc7: Unknown result type (might be due to invalid IL or missing references) //IL_0bcd: Unknown result type (might be due to invalid IL or missing references) //IL_0bd2: Unknown result type (might be due to invalid IL or missing references) //IL_0bd8: Unknown result type (might be due to invalid IL or missing references) //IL_0be2: Unknown result type (might be due to invalid IL or missing references) //IL_0be7: Unknown result type (might be due to invalid IL or missing references) //IL_0bed: Unknown result type (might be due to invalid IL or missing references) //IL_0bf2: Unknown result type (might be due to invalid IL or missing references) //IL_0bfd: Unknown result type (might be due to invalid IL or missing references) //IL_0c03: Unknown result type (might be due to invalid IL or missing references) //IL_0c08: Unknown result type (might be due to invalid IL or missing references) //IL_0c0e: Unknown result type (might be due to invalid IL or missing references) //IL_0c13: Unknown result type (might be due to invalid IL or missing references) //IL_0c19: Unknown result type (might be due to invalid IL or missing references) //IL_0c23: Unknown result type (might be due to invalid IL or missing references) //IL_0c28: Unknown result type (might be due to invalid IL or missing references) //IL_0c2e: Unknown result type (might be due to invalid IL or missing references) //IL_0c33: Unknown result type (might be due to invalid IL or missing references) //IL_0c38: Unknown result type (might be due to invalid IL or missing references) //IL_0c48: Unknown result type (might be due to invalid IL or missing references) //IL_0c4e: Unknown result type (might be due to invalid IL or missing references) //IL_0c53: Unknown result type (might be due to invalid IL or missing references) //IL_0c59: Unknown result type (might be due to invalid IL or missing references) //IL_0c63: Unknown result type (might be due to invalid IL or missing references) //IL_0c68: Unknown result type (might be due to invalid IL or missing references) //IL_0c6e: Unknown result type (might be due to invalid IL or missing references) //IL_0c73: Unknown result type (might be due to invalid IL or missing references) //IL_0c79: Unknown result type (might be due to invalid IL or missing references) //IL_0c83: Unknown result type (might be due to invalid IL or missing references) //IL_0c88: Unknown result type (might be due to invalid IL or missing references) //IL_0c8e: Unknown result type (might be due to invalid IL or missing references) //IL_0c93: Unknown result type (might be due to invalid IL or missing references) //IL_0c9e: Unknown result type (might be due to invalid IL or missing references) //IL_0ca4: Unknown result type (might be due to invalid IL or missing references) //IL_0ca9: Unknown result type (might be due to invalid IL or missing references) //IL_0caf: Unknown result type (might be due to invalid IL or missing references) //IL_0cb9: Unknown result type (might be due to invalid IL or missing references) //IL_0cbe: Unknown result type (might be due to invalid IL or missing references) //IL_0cc4: Unknown result type (might be due to invalid IL or missing references) //IL_0cc9: Unknown result type (might be due to invalid IL or missing references) //IL_0ccf: Unknown result type (might be due to invalid IL or missing references) //IL_0cd9: Unknown result type (might be due to invalid IL or missing references) //IL_0cde: Unknown result type (might be due to invalid IL or missing references) //IL_0ce4: Unknown result type (might be due to invalid IL or missing references) //IL_0ce9: Unknown result type (might be due to invalid IL or missing references) //IL_0cee: Unknown result type (might be due to invalid IL or missing references) //IL_0cfe: Unknown result type (might be due to invalid IL or missing references) //IL_0d04: Unknown result type (might be due to invalid IL or missing references) //IL_0d09: Unknown result type (might be due to invalid IL or missing references) //IL_0d0f: Unknown result type (might be due to invalid IL or missing references) //IL_0d19: Unknown result type (might be due to invalid IL or missing references) //IL_0d1e: Unknown result type (might be due to invalid IL or missing references) //IL_0d24: Unknown result type (might be due to invalid IL or missing references) //IL_0d29: Unknown result type (might be due to invalid IL or missing references) //IL_0d2f: Unknown result type (might be due to invalid IL or missing references) //IL_0d39: Unknown result type (might be due to invalid IL or missing references) //IL_0d3e: Unknown result type (might be due to invalid IL or missing references) //IL_0d44: Unknown result type (might be due to invalid IL or missing references) //IL_0d49: Unknown result type (might be due to invalid IL or missing references) //IL_0d54: Unknown result type (might be due to invalid IL or missing references) //IL_0d5a: Unknown result type (might be due to invalid IL or missing references) //IL_0d5f: Unknown result type (might be due to invalid IL or missing references) //IL_0d65: Unknown result type (might be due to invalid IL or missing references) //IL_0d6f: Unknown result type (might be due to invalid IL or missing references) //IL_0d74: Unknown result type (might be due to invalid IL or missing references) //IL_0d7a: Unknown result type (might be due to invalid IL or missing references) //IL_0d7f: Unknown result type (might be due to invalid IL or missing references) //IL_0d85: Unknown result type (might be due to invalid IL or missing references) //IL_0d8f: Unknown result type (might be due to invalid IL or missing references) //IL_0d94: Unknown result type (might be due to invalid IL or missing references) //IL_0d9a: Unknown result type (might be due to invalid IL or missing references) //IL_0d9f: Unknown result type (might be due to invalid IL or missing references) //IL_0da4: Unknown result type (might be due to invalid IL or missing references) //IL_0db4: Unknown result type (might be due to invalid IL or missing references) //IL_0dba: Unknown result type (might be due to invalid IL or missing references) //IL_0dbf: Unknown result type (might be due to invalid IL or missing references) //IL_0dc5: Unknown result type (might be due to invalid IL or missing references) //IL_0dca: Unknown result type (might be due to invalid IL or missing references) //IL_0dd0: Unknown result type (might be due to invalid IL or missing references) //IL_0dd5: Unknown result type (might be due to invalid IL or missing references) //IL_0ddb: Unknown result type (might be due to invalid IL or missing references) //IL_0de5: Unknown result type (might be due to invalid IL or missing references) //IL_0dea: Unknown result type (might be due to invalid IL or missing references) //IL_0df0: Unknown result type (might be due to invalid IL or missing references) //IL_0dfa: Unknown result type (might be due to invalid IL or missing references) //IL_0dff: Unknown result type (might be due to invalid IL or missing references) //IL_0e05: Unknown result type (might be due to invalid IL or missing references) //IL_0e0f: Unknown result type (might be due to invalid IL or missing references) //IL_0e14: Unknown result type (might be due to invalid IL or missing references) //IL_0e1a: Unknown result type (might be due to invalid IL or missing references) //IL_0e1f: Unknown result type (might be due to invalid IL or missing references) //IL_0e25: Unknown result type (might be due to invalid IL or missing references) //IL_0e2a: Unknown result type (might be due to invalid IL or missing references) //IL_0e35: Unknown result type (might be due to invalid IL or missing references) //IL_0e3b: Unknown result type (might be due to invalid IL or missing references) //IL_0e40: Unknown result type (might be due to invalid IL or missing references) //IL_0e46: Unknown result type (might be due to invalid IL or missing references) //IL_0e4b: Unknown result type (might be due to invalid IL or missing references) //IL_0e51: Unknown result type (might be due to invalid IL or missing references) //IL_0e56: Unknown result type (might be due to invalid IL or missing references) //IL_0e5c: Unknown result type (might be due to invalid IL or missing references) //IL_0e66: Unknown result type (might be due to invalid IL or missing references) //IL_0e6b: Unknown result type (might be due to invalid IL or missing references) //IL_0e71: Unknown result type (might be due to invalid IL or missing references) //IL_0e76: Unknown result type (might be due to invalid IL or missing references) //IL_0e7c: Unknown result type (might be due to invalid IL or missing references) //IL_0e86: Unknown result type (might be due to invalid IL or missing references) //IL_0e8b: Unknown result type (might be due to invalid IL or missing references) //IL_0e91: Unknown result type (might be due to invalid IL or missing references) //IL_0e9b: Unknown result type (might be due to invalid IL or missing references) //IL_0ea0: Unknown result type (might be due to invalid IL or missing references) //IL_0ea6: Unknown result type (might be due to invalid IL or missing references) //IL_0eab: Unknown result type (might be due to invalid IL or missing references) //IL_0eb0: Unknown result type (might be due to invalid IL or missing references) //IL_0ec0: Unknown result type (might be due to invalid IL or missing references) //IL_0ec6: Unknown result type (might be due to invalid IL or missing references) //IL_0ecb: Unknown result type (might be due to invalid IL or missing references) //IL_0ed1: Unknown result type (might be due to invalid IL or missing references) //IL_0ed6: Unknown result type (might be due to invalid IL or missing references) //IL_0edc: Unknown result type (might be due to invalid IL or missing references) //IL_0ee1: Unknown result type (might be due to invalid IL or missing references) //IL_0ee7: Unknown result type (might be due to invalid IL or missing references) //IL_0ef1: Unknown result type (might be due to invalid IL or missing references) //IL_0ef6: Unknown result type (might be due to invalid IL or missing references) //IL_0efc: Unknown result type (might be due to invalid IL or missing references) //IL_0f06: Unknown result type (might be due to invalid IL or missing references) //IL_0f0b: Unknown result type (might be due to invalid IL or missing references) //IL_0f11: Unknown result type (might be due to invalid IL or missing references) //IL_0f1b: Unknown result type (might be due to invalid IL or missing references) //IL_0f20: Unknown result type (might be due to invalid IL or missing references) //IL_0f26: Unknown result type (might be due to invalid IL or missing references) //IL_0f2b: Unknown result type (might be due to invalid IL or missing references) //IL_0f31: Unknown result type (might be due to invalid IL or missing references) //IL_0f36: Unknown result type (might be due to invalid IL or missing references) //IL_0f41: Unknown result type (might be due to invalid IL or missing references) //IL_0f47: Unknown result type (might be due to invalid IL or missing references) //IL_0f4c: Unknown result type (might be due to invalid IL or missing references) //IL_0f52: Unknown result type (might be due to invalid IL or missing references) //IL_0f57: Unknown result type (might be due to invalid IL or missing references) //IL_0f5d: Unknown result type (might be due to invalid IL or missing references) //IL_0f62: Unknown result type (might be due to invalid IL or missing references) //IL_0f68: Unknown result type (might be due to invalid IL or missing references) //IL_0f72: Unknown result type (might be due to invalid IL or missing references) //IL_0f77: Unknown result type (might be due to invalid IL or missing references) //IL_0f7d: Unknown result type (might be due to invalid IL or missing references) //IL_0f87: Unknown result type (might be due to invalid IL or missing references) //IL_0f8c: Unknown result type (might be due to invalid IL or missing references) //IL_0f92: Unknown result type (might be due to invalid IL or missing references) //IL_0f9c: Unknown result type (might be due to invalid IL or missing references) //IL_0fa1: Unknown result type (might be due to invalid IL or missing references) //IL_0fa7: Unknown result type (might be due to invalid IL or missing references) //IL_0fac: Unknown result type (might be due to invalid IL or missing references) //IL_0fb2: Unknown result type (might be due to invalid IL or missing references) //IL_0fb7: Unknown result type (might be due to invalid IL or missing references) //IL_0fbc: Unknown result type (might be due to invalid IL or missing references) //IL_0fcc: Unknown result type (might be due to invalid IL or missing references) //IL_0fd2: Unknown result type (might be due to invalid IL or missing references) //IL_0fd7: Unknown result type (might be due to invalid IL or missing references) //IL_0fdd: Unknown result type (might be due to invalid IL or missing references) //IL_0fe7: Unknown result type (might be due to invalid IL or missing references) //IL_0fec: Unknown result type (might be due to invalid IL or missing references) //IL_0ff2: Unknown result type (might be due to invalid IL or missing references) //IL_0ffc: Unknown result type (might be due to invalid IL or missing references) //IL_1001: Unknown result type (might be due to invalid IL or missing references) //IL_1007: Unknown result type (might be due to invalid IL or missing references) //IL_1011: Unknown result type (might be due to invalid IL or missing references) //IL_1016: Unknown result type (might be due to invalid IL or missing references) //IL_101c: Unknown result type (might be due to invalid IL or missing references) //IL_1021: Unknown result type (might be due to invalid IL or missing references) //IL_1027: Unknown result type (might be due to invalid IL or missing references) //IL_102c: Unknown result type (might be due to invalid IL or missing references) //IL_1032: Unknown result type (might be due to invalid IL or missing references) //IL_1037: Unknown result type (might be due to invalid IL or missing references) //IL_1042: Unknown result type (might be due to invalid IL or missing references) //IL_1048: Unknown result type (might be due to invalid IL or missing references) //IL_104d: Unknown result type (might be due to invalid IL or missing references) //IL_1053: Unknown result type (might be due to invalid IL or missing references) //IL_105d: Unknown result type (might be due to invalid IL or missing references) //IL_1062: Unknown result type (might be due to invalid IL or missing references) //IL_1068: Unknown result type (might be due to invalid IL or missing references) //IL_106d: Unknown result type (might be due to invalid IL or missing references) //IL_1073: Unknown result type (might be due to invalid IL or missing references) //IL_107d: Unknown result type (might be due to invalid IL or missing references) //IL_1082: Unknown result type (might be due to invalid IL or missing references) //IL_1088: Unknown result type (might be due to invalid IL or missing references) //IL_1092: Unknown result type (might be due to invalid IL or missing references) //IL_1097: Unknown result type (might be due to invalid IL or missing references) //IL_109d: Unknown result type (might be due to invalid IL or missing references) //IL_10a2: Unknown result type (might be due to invalid IL or missing references) //IL_10a8: Unknown result type (might be due to invalid IL or missing references) //IL_10ad: Unknown result type (might be due to invalid IL or missing references) //IL_10b2: Unknown result type (might be due to invalid IL or missing references) //IL_10c2: Unknown result type (might be due to invalid IL or missing references) //IL_10c8: Unknown result type (might be due to invalid IL or missing references) //IL_10cd: Unknown result type (might be due to invalid IL or missing references) //IL_10d3: Unknown result type (might be due to invalid IL or missing references) //IL_10dd: Unknown result type (might be due to invalid IL or missing references) //IL_10e2: Unknown result type (might be due to invalid IL or missing references) //IL_10e8: Unknown result type (might be due to invalid IL or missing references) //IL_10f2: Unknown result type (might be due to invalid IL or missing references) //IL_10f7: Unknown result type (might be due to invalid IL or missing references) //IL_10fd: Unknown result type (might be due to invalid IL or missing references) //IL_1107: Unknown result type (might be due to invalid IL or missing references) //IL_110c: Unknown result type (might be due to invalid IL or missing references) //IL_1112: Unknown result type (might be due to invalid IL or missing references) //IL_1117: Unknown result type (might be due to invalid IL or missing references) //IL_111d: Unknown result type (might be due to invalid IL or missing references) //IL_1122: Unknown result type (might be due to invalid IL or missing references) //IL_1128: Unknown result type (might be due to invalid IL or missing references) //IL_112d: Unknown result type (might be due to invalid IL or missing references) //IL_1138: Unknown result type (might be due to invalid IL or missing references) //IL_113e: Unknown result type (might be due to invalid IL or missing references) //IL_1143: Unknown result type (might be due to invalid IL or missing references) //IL_1149: Unknown result type (might be due to invalid IL or missing references) //IL_1153: Unknown result type (might be due to invalid IL or missing references) //IL_1158: Unknown result type (might be due to invalid IL or missing references) //IL_115e: Unknown result type (might be due to invalid IL or missing references) //IL_1168: Unknown result type (might be due to invalid IL or missing references) //IL_116d: Unknown result type (might be due to invalid IL or missing references) //IL_1173: Unknown result type (might be due to invalid IL or missing references) //IL_117d: Unknown result type (might be due to invalid IL or missing references) //IL_1182: Unknown result type (might be due to invalid IL or missing references) //IL_1188: Unknown result type (might be due to invalid IL or missing references) //IL_118d: Unknown result type (might be due to invalid IL or missing references) //IL_1193: Unknown result type (might be due to invalid IL or missing references) //IL_1198: Unknown result type (might be due to invalid IL or missing references) //IL_119e: Unknown result type (might be due to invalid IL or missing references) //IL_11a3: Unknown result type (might be due to invalid IL or missing references) //IL_11a8: Unknown result type (might be due to invalid IL or missing references) //IL_11b8: Unknown result type (might be due to invalid IL or missing references) //IL_11be: Unknown result type (might be due to invalid IL or missing references) //IL_11c3: Unknown result type (might be due to invalid IL or missing references) //IL_11c9: Unknown result type (might be due to invalid IL or missing references) //IL_11ce: Unknown result type (might be due to invalid IL or missing references) //IL_11d4: Unknown result type (might be due to invalid IL or missing references) //IL_11d9: Unknown result type (might be due to invalid IL or missing references) //IL_11df: Unknown result type (might be due to invalid IL or missing references) //IL_11e9: Unknown result type (might be due to invalid IL or missing references) //IL_11ee: Unknown result type (might be due to invalid IL or missing references) //IL_11f4: Unknown result type (might be due to invalid IL or missing references) //IL_11fe: Unknown result type (might be due to invalid IL or missing references) //IL_1203: Unknown result type (might be due to invalid IL or missing references) //IL_1209: Unknown result type (might be due to invalid IL or missing references) //IL_1213: Unknown result type (might be due to invalid IL or missing references) //IL_1218: Unknown result type (might be due to invalid IL or missing references) //IL_121e: Unknown result type (might be due to invalid IL or missing references) //IL_1223: Unknown result type (might be due to invalid IL or missing references) //IL_1229: Unknown result type (might be due to invalid IL or missing references) //IL_122e: Unknown result type (might be due to invalid IL or missing references) //IL_1239: Unknown result type (might be due to invalid IL or missing references) //IL_123f: Unknown result type (might be due to invalid IL or missing references) //IL_1244: Unknown result type (might be due to invalid IL or missing references) //IL_124a: Unknown result type (might be due to invalid IL or missing references) //IL_124f: Unknown result type (might be due to invalid IL or missing references) //IL_1255: Unknown result type (might be due to invalid IL or missing references) //IL_125a: Unknown result type (might be due to invalid IL or missing references) //IL_1260: Unknown result type (might be due to invalid IL or missing references) //IL_126a: Unknown result type (might be due to invalid IL or missing references) //IL_126f: Unknown result type (might be due to invalid IL or missing references) //IL_1275: Unknown result type (might be due to invalid IL or missing references) //IL_127a: Unknown result type (might be due to invalid IL or missing references) //IL_1280: Unknown result type (might be due to invalid IL or missing references) //IL_128a: Unknown result type (might be due to invalid IL or missing references) //IL_128f: Unknown result type (might be due to invalid IL or missing references) //IL_1295: Unknown result type (might be due to invalid IL or missing references) //IL_129f: Unknown result type (might be due to invalid IL or missing references) //IL_12a4: Unknown result type (might be due to invalid IL or missing references) //IL_12aa: Unknown result type (might be due to invalid IL or missing references) //IL_12af: Unknown result type (might be due to invalid IL or missing references) //IL_12b4: Unknown result type (might be due to invalid IL or missing references) //IL_12c4: Unknown result type (might be due to invalid IL or missing references) //IL_12ca: Unknown result type (might be due to invalid IL or missing references) //IL_12cf: Unknown result type (might be due to invalid IL or missing references) //IL_12d5: Unknown result type (might be due to invalid IL or missing references) //IL_12da: Unknown result type (might be due to invalid IL or missing references) //IL_12e0: Unknown result type (might be due to invalid IL or missing references) //IL_12e5: Unknown result type (might be due to invalid IL or missing references) //IL_12eb: Unknown result type (might be due to invalid IL or missing references) //IL_12f5: Unknown result type (might be due to invalid IL or missing references) //IL_12fa: Unknown result type (might be due to invalid IL or missing references) //IL_1300: Unknown result type (might be due to invalid IL or missing references) //IL_130a: Unknown result type (might be due to invalid IL or missing references) //IL_130f: Unknown result type (might be due to invalid IL or missing references) //IL_1315: Unknown result type (might be due to invalid IL or missing references) //IL_131f: Unknown result type (might be due to invalid IL or missing references) //IL_1324: Unknown result type (might be due to invalid IL or missing references) //IL_132a: Unknown result type (might be due to invalid IL or missing references) //IL_132f: Unknown result type (might be due to invalid IL or missing references) //IL_1335: Unknown result type (might be due to invalid IL or missing references) //IL_133a: Unknown result type (might be due to invalid IL or missing references) //IL_1345: Unknown result type (might be due to invalid IL or missing references) //IL_134b: Unknown result type (might be due to invalid IL or missing references) //IL_1350: Unknown result type (might be due to invalid IL or missing references) //IL_1356: Unknown result type (might be due to invalid IL or missing references) //IL_135b: Unknown result type (might be due to invalid IL or missing references) //IL_1361: Unknown result type (might be due to invalid IL or missing references) //IL_1366: Unknown result type (might be due to invalid IL or missing references) //IL_136c: Unknown result type (might be due to invalid IL or missing references) //IL_1376: Unknown result type (might be due to invalid IL or missing references) //IL_137b: Unknown result type (might be due to invalid IL or missing references) //IL_1381: Unknown result type (might be due to invalid IL or missing references) //IL_138b: Unknown result type (might be due to invalid IL or missing references) //IL_1390: Unknown result type (might be due to invalid IL or missing references) //IL_1396: Unknown result type (might be due to invalid IL or missing references) //IL_13a0: Unknown result type (might be due to invalid IL or missing references) //IL_13a5: Unknown result type (might be due to invalid IL or missing references) //IL_13ab: Unknown result type (might be due to invalid IL or missing references) //IL_13b0: Unknown result type (might be due to invalid IL or missing references) //IL_13b6: Unknown result type (might be due to invalid IL or missing references) //IL_13bb: Unknown result type (might be due to invalid IL or missing references) //IL_13c0: Unknown result type (might be due to invalid IL or missing references) //IL_13d0: Unknown result type (might be due to invalid IL or missing references) //IL_13d6: Unknown result type (might be due to invalid IL or missing references) //IL_13db: Unknown result type (might be due to invalid IL or missing references) //IL_13e1: Unknown result type (might be due to invalid IL or missing references) //IL_13eb: Unknown result type (might be due to invalid IL or missing references) //IL_13f0: Unknown result type (might be due to invalid IL or missing references) //IL_13f6: Unknown result type (might be due to invalid IL or missing references) //IL_1400: Unknown result type (might be due to invalid IL or missing references) //IL_1405: Unknown result type (might be due to invalid IL or missing references) //IL_140b: Unknown result type (might be due to invalid IL or missing references) //IL_1415: Unknown result type (might be due to invalid IL or missing references) //IL_141a: Unknown result type (might be due to invalid IL or missing references) //IL_1420: Unknown result type (might be due to invalid IL or missing references) //IL_1425: Unknown result type (might be due to invalid IL or missing references) //IL_142b: Unknown result type (might be due to invalid IL or missing references) //IL_1430: Unknown result type (might be due to invalid IL or missing references) //IL_1436: Unknown result type (might be due to invalid IL or missing references) //IL_143b: Unknown result type (might be due to invalid IL or missing references) //IL_1446: Unknown result type (might be due to invalid IL or missing references) //IL_144c: Unknown result type (might be due to invalid IL or missing references) //IL_1451: Unknown result type (might be due to invalid IL or missing references) //IL_1457: Unknown result type (might be due to invalid IL or missing references) //IL_1461: Unknown result type (might be due to invalid IL or missing references) //IL_1466: Unknown result type (might be due to invalid IL or missing references) //IL_146c: Unknown result type (might be due to invalid IL or missing references) //IL_1471: Unknown result type (might be due to invalid IL or missing references) //IL_1477: Unknown result type (might be due to invalid IL or missing references) //IL_1481: Unknown result type (might be due to invalid IL or missing references) //IL_1486: Unknown result type (might be due to invalid IL or missing references) //IL_148c: Unknown result type (might be due to invalid IL or missing references) //IL_1496: Unknown result type (might be due to invalid IL or missing references) //IL_149b: Unknown result type (might be due to invalid IL or missing references) //IL_14a1: Unknown result type (might be due to invalid IL or missing references) //IL_14a6: Unknown result type (might be due to invalid IL or missing references) //IL_14ac: Unknown result type (might be due to invalid IL or missing references) //IL_14b1: Unknown result type (might be due to invalid IL or missing references) //IL_14b6: Unknown result type (might be due to invalid IL or missing references) //IL_14c6: Unknown result type (might be due to invalid IL or missing references) //IL_14cc: Unknown result type (might be due to invalid IL or missing references) //IL_14d1: Unknown result type (might be due to invalid IL or missing references) //IL_14d7: Unknown result type (might be due to invalid IL or missing references) //IL_14e1: Unknown result type (might be due to invalid IL or missing references) //IL_14e6: Unknown result type (might be due to invalid IL or missing references) //IL_14ec: Unknown result type (might be due to invalid IL or missing references) //IL_14f6: Unknown result type (might be due to invalid IL or missing references) //IL_14fb: Unknown result type (might be due to invalid IL or missing references) //IL_1501: Unknown result type (might be due to invalid IL or missing references) //IL_150b: Unknown result type (might be due to invalid IL or missing references) //IL_1510: Unknown result type (might be due to invalid IL or missing references) //IL_1516: Unknown result type (might be due to invalid IL or missing references) //IL_151b: Unknown result type (might be due to invalid IL or missing references) //IL_1521: Unknown result type (might be due to invalid IL or missing references) //IL_1526: Unknown result type (might be due to invalid IL or missing references) //IL_152c: Unknown result type (might be due to invalid IL or missing references) //IL_1531: Unknown result type (might be due to invalid IL or missing references) //IL_153c: Unknown result type (might be due to invalid IL or missing references) //IL_1542: Unknown result type (might be due to invalid IL or missing references) //IL_1547: Unknown result type (might be due to invalid IL or missing references) //IL_154d: Unknown result type (might be due to invalid IL or missing references) //IL_1557: Unknown result type (might be due to invalid IL or missing references) //IL_155c: Unknown result type (might be due to invalid IL or missing references) //IL_1562: Unknown result type (might be due to invalid IL or missing references) //IL_156c: Unknown result type (might be due to invalid IL or missing references) //IL_1571: Unknown result type (might be due to invalid IL or missing references) //IL_1577: Unknown result type (might be due to invalid IL or missing references) //IL_1581: Unknown result type (might be due to invalid IL or missing references) //IL_1586: Unknown result type (might be due to invalid IL or missing references) //IL_158c: Unknown result type (might be due to invalid IL or missing references) //IL_1591: Unknown result type (might be due to invalid IL or missing references) //IL_1597: Unknown result type (might be due to invalid IL or missing references) //IL_159c: Unknown result type (might be due to invalid IL or missing references) //IL_15a2: Unknown result type (might be due to invalid IL or missing references) //IL_15a7: Unknown result type (might be due to invalid IL or missing references) //IL_15ac: Unknown result type (might be due to invalid IL or missing references) //IL_15bc: Unknown result type (might be due to invalid IL or missing references) //IL_15c2: Unknown result type (might be due to invalid IL or missing references) //IL_15c7: Unknown result type (might be due to invalid IL or missing references) //IL_15cd: Unknown result type (might be due to invalid IL or missing references) //IL_15d2: Unknown result type (might be due to invalid IL or missing references) //IL_15d8: Unknown result type (might be due to invalid IL or missing references) //IL_15dd: Unknown result type (might be due to invalid IL or missing references) //IL_15e3: Unknown result type (might be due to invalid IL or missing references) //IL_15ed: Unknown result type (might be due to invalid IL or missing references) //IL_15f2: Unknown result type (might be due to invalid IL or missing references) //IL_15f8: Unknown result type (might be due to invalid IL or missing references) //IL_1602: Unknown result type (might be due to invalid IL or missing references) //IL_1607: Unknown result type (might be due to invalid IL or missing references) //IL_160d: Unknown result type (might be due to invalid IL or missing references) //IL_1617: Unknown result type (might be due to invalid IL or missing references) //IL_161c: Unknown result type (might be due to invalid IL or missing references) //IL_1622: Unknown result type (might be due to invalid IL or missing references) //IL_1627: Unknown result type (might be due to invalid IL or missing references) //IL_162d: Unknown result type (might be due to invalid IL or missing references) //IL_1632: Unknown result type (might be due to invalid IL or missing references) //IL_163d: Unknown result type (might be due to invalid IL or missing references) //IL_1643: Unknown result type (might be due to invalid IL or missing references) //IL_1648: Unknown result type (might be due to invalid IL or missing references) //IL_164e: Unknown result type (might be due to invalid IL or missing references) //IL_1653: Unknown result type (might be due to invalid IL or missing references) //IL_1659: Unknown result type (might be due to invalid IL or missing references) //IL_165e: Unknown result type (might be due to invalid IL or missing references) //IL_1664: Unknown result type (might be due to invalid IL or missing references) //IL_166e: Unknown result type (might be due to invalid IL or missing references) //IL_1673: Unknown result type (might be due to invalid IL or missing references) //IL_1679: Unknown result type (might be due to invalid IL or missing references) //IL_167e: Unknown result type (might be due to invalid IL or missing references) //IL_1684: Unknown result type (might be due to invalid IL or missing references) //IL_168e: Unknown result type (might be due to invalid IL or missing references) //IL_1693: Unknown result type (might be due to invalid IL or missing references) //IL_1699: Unknown result type (might be due to invalid IL or missing references) //IL_16a3: Unknown result type (might be due to invalid IL or missing references) //IL_16a8: Unknown result type (might be due to invalid IL or missing references) //IL_16ae: Unknown result type (might be due to invalid IL or missing references) //IL_16b3: Unknown result type (might be due to invalid IL or missing references) //IL_16b8: Unknown result type (might be due to invalid IL or missing references) //IL_16c8: Unknown result type (might be due to invalid IL or missing references) //IL_16ce: Unknown result type (might be due to invalid IL or missing references) //IL_16d3: Unknown result type (might be due to invalid IL or missing references) //IL_16d9: Unknown result type (might be due to invalid IL or missing references) //IL_16de: Unknown result type (might be due to invalid IL or missing references) //IL_16e4: Unknown result type (might be due to invalid IL or missing references) //IL_16e9: Unknown result type (might be due to invalid IL or missing references) //IL_16ef: Unknown result type (might be due to invalid IL or missing references) //IL_16f9: Unknown result type (might be due to invalid IL or missing references) //IL_16fe: Unknown result type (might be due to invalid IL or missing references) //IL_1704: Unknown result type (might be due to invalid IL or missing references) //IL_170e: Unknown result type (might be due to invalid IL or missing references) //IL_1713: Unknown result type (might be due to invalid IL or missing references) //IL_1719: Unknown result type (might be due to invalid IL or missing references) //IL_1723: Unknown result type (might be due to invalid IL or missing references) //IL_1728: Unknown result type (might be due to invalid IL or missing references) //IL_172e: Unknown result type (might be due to invalid IL or missing references) //IL_1733: Unknown result type (might be due to invalid IL or missing references) //IL_1739: Unknown result type (might be due to invalid IL or missing references) //IL_173e: Unknown result type (might be due to invalid IL or missing references) //IL_1749: Unknown result type (might be due to invalid IL or missing references) //IL_174f: Unknown result type (might be due to invalid IL or missing references) //IL_1754: Unknown result type (might be due to invalid IL or missing references) //IL_175a: Unknown result type (might be due to invalid IL or missing references) //IL_175f: Unknown result type (might be due to invalid IL or missing references) //IL_1765: Unknown result type (might be due to invalid IL or missing references) //IL_176a: Unknown result type (might be due to invalid IL or missing references) //IL_1770: Unknown result type (might be due to invalid IL or missing references) //IL_177a: Unknown result type (might be due to invalid IL or missing references) //IL_177f: Unknown result type (might be due to invalid IL or missing references) //IL_1785: Unknown result type (might be due to invalid IL or missing references) //IL_178f: Unknown result type (might be due to invalid IL or missing references) //IL_1794: Unknown result type (might be due to invalid IL or missing references) //IL_179a: Unknown result type (might be due to invalid IL or missing references) //IL_17a4: Unknown result type (might be due to invalid IL or missing references) //IL_17a9: Unknown result type (might be due to invalid IL or missing references) //IL_17af: Unknown result type (might be due to invalid IL or missing references) //IL_17b4: Unknown result type (might be due to invalid IL or missing references) //IL_17ba: Unknown result type (might be due to invalid IL or missing references) //IL_17bf: Unknown result type (might be due to invalid IL or missing references) //IL_17c4: Unknown result type (might be due to invalid IL or missing references) //IL_17d4: Unknown result type (might be due to invalid IL or missing references) //IL_17da: Unknown result type (might be due to invalid IL or missing references) //IL_17df: Unknown result type (might be due to invalid IL or missing references) //IL_17e5: Unknown result type (might be due to invalid IL or missing references) //IL_17ef: Unknown result type (might be due to invalid IL or missing references) //IL_17f4: Unknown result type (might be due to invalid IL or missing references) //IL_17fa: Unknown result type (might be due to invalid IL or missing references) //IL_1804: Unknown result type (might be due to invalid IL or missing references) //IL_1809: Unknown result type (might be due to invalid IL or missing references) //IL_180f: Unknown result type (might be due to invalid IL or missing references) //IL_1819: Unknown result type (might be due to invalid IL or missing references) //IL_181e: Unknown result type (might be due to invalid IL or missing references) //IL_1824: Unknown result type (might be due to invalid IL or missing references) //IL_1829: Unknown result type (might be due to invalid IL or missing references) //IL_182f: Unknown result type (might be due to invalid IL or missing references) //IL_1834: Unknown result type (might be due to invalid IL or missing references) //IL_183a: Unknown result type (might be due to invalid IL or missing references) //IL_183f: Unknown result type (might be due to invalid IL or missing references) //IL_184a: Unknown result type (might be due to invalid IL or missing references) //IL_1850: Unknown result type (might be due to invalid IL or missing references) //IL_1855: Unknown result type (might be due to invalid IL or missing references) //IL_185b: Unknown result type (might be due to invalid IL or missing references) //IL_1865: Unknown result type (might be due to invalid IL or missing references) //IL_186a: Unknown result type (might be due to invalid IL or missing references) //IL_1870: Unknown result type (might be due to invalid IL or missing references) //IL_1875: Unknown result type (might be due to invalid IL or missing references) //IL_187b: Unknown result type (might be due to invalid IL or missing references) //IL_1885: Unknown result type (might be due to invalid IL or missing references) //IL_188a: Unknown result type (might be due to invalid IL or missing references) //IL_1890: Unknown result type (might be due to invalid IL or missing references) //IL_189a: Unknown result type (might be due to invalid IL or missing references) //IL_189f: Unknown result type (might be due to invalid IL or missing references) //IL_18a5: Unknown result type (might be due to invalid IL or missing references) //IL_18aa: Unknown result type (might be due to invalid IL or missing references) //IL_18b0: Unknown result type (might be due to invalid IL or missing references) //IL_18b5: Unknown result type (might be due to invalid IL or missing references) //IL_18ba: Unknown result type (might be due to invalid IL or missing references) //IL_18ca: Unknown result type (might be due to invalid IL or missing references) //IL_18d0: Unknown result type (might be due to invalid IL or missing references) //IL_18d5: Unknown result type (might be due to invalid IL or missing references) //IL_18db: Unknown result type (might be due to invalid IL or missing references) //IL_18e5: Unknown result type (might be due to invalid IL or missing references) //IL_18ea: Unknown result type (might be due to invalid IL or missing references) //IL_18f0: Unknown result type (might be due to invalid IL or missing references) //IL_18fa: Unknown result type (might be due to invalid IL or missing references) //IL_18ff: Unknown result type (might be due to invalid IL or missing references) //IL_1905: Unknown result type (might be due to invalid IL or missing references) //IL_190f: Unknown result type (might be due to invalid IL or missing references) //IL_1914: Unknown result type (might be due to invalid IL or missing references) //IL_191a: Unknown result type (might be due to invalid IL or missing references) //IL_191f: Unknown result type (might be due to invalid IL or missing references) //IL_1925: Unknown result type (might be due to invalid IL or missing references) //IL_192a: Unknown result type (might be due to invalid IL or missing references) //IL_1930: Unknown result type (might be due to invalid IL or missing references) //IL_1935: Unknown result type (might be due to invalid IL or missing references) //IL_1940: Unknown result type (might be due to invalid IL or missing references) //IL_1946: Unknown result type (might be due to invalid IL or missing references) //IL_194b: Unknown result type (might be due to invalid IL or missing references) //IL_1951: Unknown result type (might be due to invalid IL or missing references) //IL_195b: Unknown result type (might be due to invalid IL or missing references) //IL_1960: Unknown result type (might be due to invalid IL or missing references) //IL_1966: Unknown result type (might be due to invalid IL or missing references) //IL_1970: Unknown result type (might be due to invalid IL or missing references) //IL_1975: Unknown result type (might be due to invalid IL or missing references) //IL_197b: Unknown result type (might be due to invalid IL or missing references) //IL_1985: Unknown result type (might be due to invalid IL or missing references) //IL_198a: Unknown result type (might be due to invalid IL or missing references) //IL_1990: Unknown result type (might be due to invalid IL or missing references) //IL_1995: Unknown result type (might be due to invalid IL or missing references) //IL_199b: Unknown result type (might be due to invalid IL or missing references) //IL_19a0: Unknown result type (might be due to invalid IL or missing references) //IL_19a6: Unknown result type (might be due to invalid IL or missing references) //IL_19ab: Unknown result type (might be due to invalid IL or missing references) //IL_19b0: Unknown result type (might be due to invalid IL or missing references) //IL_19c0: Unknown result type (might be due to invalid IL or missing references) //IL_19c6: Unknown result type (might be due to invalid IL or missing references) //IL_19cb: Unknown result type (might be due to invalid IL or missing references) //IL_19d1: Unknown result type (might be due to invalid IL or missing references) //IL_19d6: Unknown result type (might be due to invalid IL or missing references) //IL_19dc: Unknown result type (might be due to invalid IL or missing references) //IL_19e1: Unknown result type (might be due to invalid IL or missing references) //IL_19e7: Unknown result type (might be due to invalid IL or missing references) //IL_19f1: Unknown result type (might be due to invalid IL or missing references) //IL_19f6: Unknown result type (might be due to invalid IL or missing references) //IL_19fc: Unknown result type (might be due to invalid IL or missing references) //IL_1a06: Unknown result type (might be due to invalid IL or missing references) //IL_1a0b: Unknown result type (might be due to invalid IL or missing references) //IL_1a11: Unknown result type (might be due to invalid IL or missing references) //IL_1a16: Unknown result type (might be due to invalid IL or missing references) //IL_1a1c: Unknown result type (might be due to invalid IL or missing references) //IL_1a21: Unknown result type (might be due to invalid IL or missing references) //IL_1a2c: Unknown result type (might be due to invalid IL or missing references) //IL_1a32: Unknown result type (might be due to invalid IL or missing references) //IL_1a37: Unknown result type (might be due to invalid IL or missing references) //IL_1a3d: Unknown result type (might be due to invalid IL or missing references) //IL_1a42: Unknown result type (might be due to invalid IL or missing references) //IL_1a48: Unknown result type (might be due to invalid IL or missing references) //IL_1a4d: Unknown result type (might be due to invalid IL or missing references) //IL_1a53: Unknown result type (might be due to invalid IL or missing references) //IL_1a5d: Unknown result type (might be due to invalid IL or missing references) //IL_1a62: Unknown result type (might be due to invalid IL or missing references) //IL_1a68: Unknown result type (might be due to invalid IL or missing references) //IL_1a6d: Unknown result type (might be due to invalid IL or missing references) //IL_1a73: Unknown result type (might be due to invalid IL or missing references) //IL_1a7d: Unknown result type (might be due to invalid IL or missing references) //IL_1a82: Unknown result type (might be due to invalid IL or missing references) //IL_1a88: Unknown result type (might be due to invalid IL or missing references) //IL_1a8d: Unknown result type (might be due to invalid IL or missing references) //IL_1a92: Unknown result type (might be due to invalid IL or missing references) //IL_1aa2: Unknown result type (might be due to invalid IL or missing references) //IL_1aa8: Unknown result type (might be due to invalid IL or missing references) //IL_1aad: Unknown result type (might be due to invalid IL or missing references) //IL_1ab3: Unknown result type (might be due to invalid IL or missing references) //IL_1ab8: Unknown result type (might be due to invalid IL or missing references) //IL_1abe: Unknown result type (might be due to invalid IL or missing references) //IL_1ac3: Unknown result type (might be due to invalid IL or missing references) //IL_1ac9: Unknown result type (might be due to invalid IL or missing references) //IL_1ad3: Unknown result type (might be due to invalid IL or missing references) //IL_1ad8: Unknown result type (might be due to invalid IL or missing references) //IL_1ade: Unknown result type (might be due to invalid IL or missing references) //IL_1ae8: Unknown result type (might be due to invalid IL or missing references) //IL_1aed: Unknown result type (might be due to invalid IL or missing references) //IL_1af3: Unknown result type (might be due to invalid IL or missing references) //IL_1af8: Unknown result type (might be due to invalid IL or missing references) //IL_1afe: Unknown result type (might be due to invalid IL or missing references) //IL_1b03: Unknown result type (might be due to invalid IL or missing references) //IL_1b0e: Unknown result type (might be due to invalid IL or missing references) //IL_1b14: Unknown result type (might be due to invalid IL or missing references) //IL_1b19: Unknown result type (might be due to invalid IL or missing references) //IL_1b1f: Unknown result type (might be due to invalid IL or missing references) //IL_1b24: Unknown result type (might be due to invalid IL or missing references) //IL_1b2a: Unknown result type (might be due to invalid IL or missing references) //IL_1b2f: Unknown result type (might be due to invalid IL or missing references) //IL_1b35: Unknown result type (might be due to invalid IL or missing references) //IL_1b3f: Unknown result type (might be due to invalid IL or missing references) //IL_1b44: Unknown result type (might be due to invalid IL or missing references) //IL_1b4a: Unknown result type (might be due to invalid IL or missing references) //IL_1b54: Unknown result type (might be due to invalid IL or missing references) //IL_1b59: Unknown result type (might be due to invalid IL or missing references) //IL_1b5f: Unknown result type (might be due to invalid IL or missing references) //IL_1b64: Unknown result type (might be due to invalid IL or missing references) //IL_1b6a: Unknown result type (might be due to invalid IL or missing references) //IL_1b6f: Unknown result type (might be due to invalid IL or missing references) //IL_1b74: Unknown result type (might be due to invalid IL or missing references) //IL_1b84: Unknown result type (might be due to invalid IL or missing references) //IL_1b8a: Unknown result type (might be due to invalid IL or missing references) //IL_1b8f: Unknown result type (might be due to invalid IL or missing references) //IL_1b95: Unknown result type (might be due to invalid IL or missing references) //IL_1b9f: Unknown result type (might be due to invalid IL or missing references) //IL_1ba4: Unknown result type (might be due to invalid IL or missing references) //IL_1baa: Unknown result type (might be due to invalid IL or missing references) //IL_1bb4: Unknown result type (might be due to invalid IL or missing references) //IL_1bb9: Unknown result type (might be due to invalid IL or missing references) //IL_1bbf: Unknown result type (might be due to invalid IL or missing references) //IL_1bc4: Unknown result type (might be due to invalid IL or missing references) //IL_1bca: Unknown result type (might be due to invalid IL or missing references) //IL_1bcf: Unknown result type (might be due to invalid IL or missing references) //IL_1bd5: Unknown result type (might be due to invalid IL or missing references) //IL_1bda: Unknown result type (might be due to invalid IL or missing references) //IL_1be5: Unknown result type (might be due to invalid IL or missing references) //IL_1beb: Unknown result type (might be due to invalid IL or missing references) //IL_1bf0: Unknown result type (might be due to invalid IL or missing references) //IL_1bf6: Unknown result type (might be due to invalid IL or missing references) //IL_1c00: Unknown result type (might be due to invalid IL or missing references) //IL_1c05: Unknown result type (might be due to invalid IL or missing references) //IL_1c0b: Unknown result type (might be due to invalid IL or missing references) //IL_1c10: Unknown result type (might be due to invalid IL or missing references) //IL_1c16: Unknown result type (might be due to invalid IL or missing references) //IL_1c20: Unknown result type (might be due to invalid IL or missing references) //IL_1c25: Unknown result type (might be due to invalid IL or missing references) //IL_1c2b: Unknown result type (might be due to invalid IL or missing references) //IL_1c30: Unknown result type (might be due to invalid IL or missing references) //IL_1c36: Unknown result type (might be due to invalid IL or missing references) //IL_1c3b: Unknown result type (might be due to invalid IL or missing references) //IL_1c40: Unknown result type (might be due to invalid IL or missing references) //IL_1c50: Unknown result type (might be due to invalid IL or missing references) //IL_1c56: Unknown result type (might be due to invalid IL or missing references) //IL_1c5b: Unknown result type (might be due to invalid IL or missing references) //IL_1c61: Unknown result type (might be due to invalid IL or missing references) //IL_1c6b: Unknown result type (might be due to invalid IL or missing references) //IL_1c70: Unknown result type (might be due to invalid IL or missing references) //IL_1c76: Unknown result type (might be due to invalid IL or missing references) //IL_1c80: Unknown result type (might be due to invalid IL or missing references) //IL_1c85: Unknown result type (might be due to invalid IL or missing references) //IL_1c8b: Unknown result type (might be due to invalid IL or missing references) //IL_1c90: Unknown result type (might be due to invalid IL or missing references) //IL_1c96: Unknown result type (might be due to invalid IL or missing references) //IL_1c9b: Unknown result type (might be due to invalid IL or missing references) //IL_1ca1: Unknown result type (might be due to invalid IL or missing references) //IL_1ca6: Unknown result type (might be due to invalid IL or missing references) //IL_1cb1: Unknown result type (might be due to invalid IL or missing references) //IL_1cb7: Unknown result type (might be due to invalid IL or missing references) //IL_1cbc: Unknown result type (might be due to invalid IL or missing references) //IL_1cc2: Unknown result type (might be due to invalid IL or missing references) //IL_1ccc: Unknown result type (might be due to invalid IL or missing references) //IL_1cd1: Unknown result type (might be due to invalid IL or missing references) //IL_1cd7: Unknown result type (might be due to invalid IL or missing references) //IL_1ce1: Unknown result type (might be due to invalid IL or missing references) //IL_1ce6: Unknown result type (might be due to invalid IL or missing references) //IL_1cec: Unknown result type (might be due to invalid IL or missing references) //IL_1cf1: Unknown result type (might be due to invalid IL or missing references) //IL_1cf7: Unknown result type (might be due to invalid IL or missing references) //IL_1cfc: Unknown result type (might be due to invalid IL or missing references) //IL_1d02: Unknown result type (might be due to invalid IL or missing references) //IL_1d07: Unknown result type (might be due to invalid IL or missing references) //IL_1d0c: Unknown result type (might be due to invalid IL or missing references) //IL_1d1c: Unknown result type (might be due to invalid IL or missing references) //IL_1d22: Unknown result type (might be due to invalid IL or missing references) //IL_1d27: Unknown result type (might be due to invalid IL or missing references) //IL_1d2d: Unknown result type (might be due to invalid IL or missing references) //IL_1d32: Unknown result type (might be due to invalid IL or missing references) //IL_1d38: Unknown result type (might be due to invalid IL or missing references) //IL_1d3d: Unknown result type (might be due to invalid IL or missing references) //IL_1d43: Unknown result type (might be due to invalid IL or missing references) //IL_1d4d: Unknown result type (might be due to invalid IL or missing references) //IL_1d52: Unknown result type (might be due to invalid IL or missing references) //IL_1d58: Unknown result type (might be due to invalid IL or missing references) //IL_1d62: Unknown result type (might be due to invalid IL or missing references) //IL_1d67: Unknown result type (might be due to invalid IL or missing references) //IL_1d6d: Unknown result type (might be due to invalid IL or missing references) //IL_1d77: Unknown result type (might be due to invalid IL or missing references) //IL_1d7c: Unknown result type (might be due to invalid IL or missing references) //IL_1d82: Unknown result type (might be due to invalid IL or missing references) //IL_1d87: Unknown result type (might be due to invalid IL or missing references) //IL_1d8d: Unknown result type (might be due to invalid IL or missing references) //IL_1d92: Unknown result type (might be due to invalid IL or missing references) //IL_1d9d: Unknown result type (might be due to invalid IL or missing references) //IL_1da3: Unknown result type (might be due to invalid IL or missing references) //IL_1da8: Unknown result type (might be due to invalid IL or missing references) //IL_1dae: Unknown result type (might be due to invalid IL or missing references) //IL_1db3: Unknown result type (might be due to invalid IL or missing references) //IL_1db9: Unknown result type (might be due to invalid IL or missing references) //IL_1dbe: Unknown result type (might be due to invalid IL or missing references) //IL_1dc4: Unknown result type (might be due to invalid IL or missing references) //IL_1dce: Unknown result type (might be due to invalid IL or missing references) //IL_1dd3: Unknown result type (might be due to invalid IL or missing references) //IL_1dd9: Unknown result type (might be due to invalid IL or missing references) //IL_1dde: Unknown result type (might be due to invalid IL or missing references) //IL_1de4: Unknown result type (might be due to invalid IL or missing references) //IL_1dee: Unknown result type (might be due to invalid IL or missing references) //IL_1df3: Unknown result type (might be due to invalid IL or missing references) //IL_1df9: Unknown result type (might be due to invalid IL or missing references) //IL_1e03: Unknown result type (might be due to invalid IL or missing references) //IL_1e08: Unknown result type (might be due to invalid IL or missing references) //IL_1e0e: Unknown result type (might be due to invalid IL or missing references) //IL_1e13: Unknown result type (might be due to invalid IL or missing references) //IL_1e18: Unknown result type (might be due to invalid IL or missing references) //IL_1e28: Unknown result type (might be due to invalid IL or missing references) //IL_1e2e: Unknown result type (might be due to invalid IL or missing references) //IL_1e33: Unknown result type (might be due to invalid IL or missing references) //IL_1e39: Unknown result type (might be due to invalid IL or missing references) //IL_1e3e: Unknown result type (might be due to invalid IL or missing references) //IL_1e44: Unknown result type (might be due to invalid IL or missing references) //IL_1e49: Unknown result type (might be due to invalid IL or missing references) //IL_1e4f: Unknown result type (might be due to invalid IL or missing references) //IL_1e59: Unknown result type (might be due to invalid IL or missing references) //IL_1e5e: Unknown result type (might be due to invalid IL or missing references) //IL_1e64: Unknown result type (might be due to invalid IL or missing references) //IL_1e6e: Unknown result type (might be due to invalid IL or missing references) //IL_1e73: Unknown result type (might be due to invalid IL or missing references) //IL_1e79: Unknown result type (might be due to invalid IL or missing references) //IL_1e83: Unknown result type (might be due to invalid IL or missing references) //IL_1e88: Unknown result type (might be due to invalid IL or missing references) //IL_1e8e: Unknown result type (might be due to invalid IL or missing references) //IL_1e93: Unknown result type (might be due to invalid IL or missing references) //IL_1e99: Unknown result type (might be due to invalid IL or missing references) //IL_1e9e: Unknown result type (might be due to invalid IL or missing references) //IL_1ea9: Unknown result type (might be due to invalid IL or missing references) //IL_1eaf: Unknown result type (might be due to invalid IL or missing references) //IL_1eb4: Unknown result type (might be due to invalid IL or missing references) //IL_1eba: Unknown result type (might be due to invalid IL or missing references) //IL_1ebf: Unknown result type (might be due to invalid IL or missing references) //IL_1ec5: Unknown result type (might be due to invalid IL or missing references) //IL_1eca: Unknown result type (might be due to invalid IL or missing references) //IL_1ed0: Unknown result type (might be due to invalid IL or missing references) //IL_1eda: Unknown result type (might be due to invalid IL or missing references) //IL_1edf: Unknown result type (might be due to invalid IL or missing references) //IL_1ee5: Unknown result type (might be due to invalid IL or missing references) //IL_1eef: Unknown result type (might be due to invalid IL or missing references) //IL_1ef4: Unknown result type (might be due to invalid IL or missing references) //IL_1efa: Unknown result type (might be due to invalid IL or missing references) //IL_1f04: Unknown result type (might be due to invalid IL or missing references) //IL_1f09: Unknown result type (might be due to invalid IL or missing references) //IL_1f0f: Unknown result type (might be due to invalid IL or missing references) //IL_1f14: Unknown result type (might be due to invalid IL or missing references) //IL_1f1a: Unknown result type (might be due to invalid IL or missing references) //IL_1f1f: Unknown result type (might be due to invalid IL or missing references) //IL_1f24: Unknown result type (might be due to invalid IL or missing references) //IL_1f34: Unknown result type (might be due to invalid IL or missing references) //IL_1f3a: Unknown result type (might be due to invalid IL or missing references) //IL_1f3f: Unknown result type (might be due to invalid IL or missing references) //IL_1f45: Unknown result type (might be due to invalid IL or missing references) //IL_1f4f: Unknown result type (might be due to invalid IL or missing references) //IL_1f54: Unknown result type (might be due to invalid IL or missing references) //IL_1f5a: Unknown result type (might be due to invalid IL or missing references) //IL_1f64: Unknown result type (might be due to invalid IL or missing references) //IL_1f69: Unknown result type (might be due to invalid IL or missing references) //IL_1f6f: Unknown result type (might be due to invalid IL or missing references) //IL_1f79: Unknown result type (might be due to invalid IL or missing references) //IL_1f7e: Unknown result type (might be due to invalid IL or missing references) //IL_1f84: Unknown result type (might be due to invalid IL or missing references) //IL_1f89: Unknown result type (might be due to invalid IL or missing references) //IL_1f8f: Unknown result type (might be due to invalid IL or missing references) //IL_1f94: Unknown result type (might be due to invalid IL or missing references) //IL_1f9a: Unknown result type (might be due to invalid IL or missing references) //IL_1f9f: Unknown result type (might be due to invalid IL or missing references) //IL_1faa: Unknown result type (might be due to invalid IL or missing references) //IL_1fb0: Unknown result type (might be due to invalid IL or missing references) //IL_1fb5: Unknown result type (might be due to invalid IL or missing references) //IL_1fbb: Unknown result type (might be due to invalid IL or missing references) //IL_1fc5: Unknown result type (might be due to invalid IL or missing references) //IL_1fca: Unknown result type (might be due to invalid IL or missing references) //IL_1fd0: Unknown result type (might be due to invalid IL or missing references) //IL_1fd5: Unknown result type (might be due to invalid IL or missing references) //IL_1fdb: Unknown result type (might be due to invalid IL or missing references) //IL_1fe5: Unknown result type (might be due to invalid IL or missing references) //IL_1fea: Unknown result type (might be due to invalid IL or missing references) //IL_1ff0: Unknown result type (might be due to invalid IL or missing references) //IL_1ffa: Unknown result type (might be due to invalid IL or missing references) //IL_1fff: Unknown result type (might be due to invalid IL or missing references) //IL_2005: Unknown result type (might be due to invalid IL or missing references) //IL_200a: Unknown result type (might be due to invalid IL or missing references) //IL_2010: Unknown result type (might be due to invalid IL or missing references) //IL_2015: Unknown result type (might be due to invalid IL or missing references) //IL_201a: Unknown result type (might be due to invalid IL or missing references) //IL_202a: Unknown result type (might be due to invalid IL or missing references) //IL_2030: Unknown result type (might be due to invalid IL or missing references) //IL_2035: Unknown result type (might be due to invalid IL or missing references) //IL_203b: Unknown result type (might be due to invalid IL or missing references) //IL_2045: Unknown result type (might be due to invalid IL or missing references) //IL_204a: Unknown result type (might be due to invalid IL or missing references) //IL_2050: Unknown result type (might be due to invalid IL or missing references) //IL_205a: Unknown result type (might be due to invalid IL or missing references) //IL_205f: Unknown result type (might be due to invalid IL or missing references) //IL_2065: Unknown result type (might be due to invalid IL or missing references) //IL_206f: Unknown result type (might be due to invalid IL or missing references) //IL_2074: Unknown result type (might be due to invalid IL or missing references) //IL_207a: Unknown result type (might be due to invalid IL or missing references) //IL_207f: Unknown result type (might be due to invalid IL or missing references) //IL_2085: Unknown result type (might be due to invalid IL or missing references) //IL_208a: Unknown result type (might be due to invalid IL or missing references) //IL_2090: Unknown result type (might be due to invalid IL or missing references) //IL_2095: Unknown result type (might be due to invalid IL or missing references) //IL_20a0: Unknown result type (might be due to invalid IL or missing references) //IL_20a6: Unknown result type (might be due to invalid IL or missing references) //IL_20ab: Unknown result type (might be due to invalid IL or missing references) //IL_20b1: Unknown result type (might be due to invalid IL or missing references) //IL_20bb: Unknown result type (might be due to invalid IL or missing references) //IL_20c0: Unknown result type (might be due to invalid IL or missing references) //IL_20c6: Unknown result type (might be due to invalid IL or missing references) //IL_20d0: Unknown result type (might be due to invalid IL or missing references) //IL_20d5: Unknown result type (might be due to invalid IL or missing references) //IL_20db: Unknown result type (might be due to invalid IL or missing references) //IL_20e5: Unknown result type (might be due to invalid IL or missing references) //IL_20ea: Unknown result type (might be due to invalid IL or missing references) //IL_20f0: Unknown result type (might be due to invalid IL or missing references) //IL_20f5: Unknown result type (might be due to invalid IL or missing references) //IL_20fb: Unknown result type (might be due to invalid IL or missing references) //IL_2100: Unknown result type (might be due to invalid IL or missing references) //IL_2106: Unknown result type (might be due to invalid IL or missing references) //IL_210b: Unknown result type (might be due to invalid IL or missing references) //IL_2110: Unknown result type (might be due to invalid IL or missing references) //IL_2120: Unknown result type (might be due to invalid IL or missing references) //IL_2126: Unknown result type (might be due to invalid IL or missing references) //IL_212b: Unknown result type (might be due to invalid IL or missing references) //IL_2131: Unknown result type (might be due to invalid IL or missing references) //IL_2136: Unknown result type (might be due to invalid IL or missing references) //IL_213c: Unknown result type (might be due to invalid IL or missing references) //IL_2141: Unknown result type (might be due to invalid IL or missing references) //IL_2147: Unknown result type (might be due to invalid IL or missing references) //IL_2151: Unknown result type (might be due to invalid IL or missing references) //IL_2156: Unknown result type (might be due to invalid IL or missing references) //IL_215c: Unknown result type (might be due to invalid IL or missing references) //IL_2166: Unknown result type (might be due to invalid IL or missing references) //IL_216b: Unknown result type (might be due to invalid IL or missing references) //IL_2171: Unknown result type (might be due to invalid IL or missing references) //IL_217b: Unknown result type (might be due to invalid IL or missing references) //IL_2180: Unknown result type (might be due to invalid IL or missing references) //IL_2186: Unknown result type (might be due to invalid IL or missing references) //IL_218b: Unknown result type (might be due to invalid IL or missing references) //IL_2191: Unknown result type (might be due to invalid IL or missing references) //IL_2196: Unknown result type (might be due to invalid IL or missing references) //IL_21a1: Unknown result type (might be due to invalid IL or missing references) //IL_21a7: Unknown result type (might be due to invalid IL or missing references) //IL_21ac: Unknown result type (might be due to invalid IL or missing references) //IL_21b2: Unknown result type (might be due to invalid IL or missing references) //IL_21b7: Unknown result type (might be due to invalid IL or missing references) //IL_21bd: Unknown result type (might be due to invalid IL or missing references) //IL_21c2: Unknown result type (might be due to invalid IL or missing references) //IL_21c8: Unknown result type (might be due to invalid IL or missing references) //IL_21d2: Unknown result type (might be due to invalid IL or missing references) //IL_21d7: Unknown result type (might be due to invalid IL or missing references) //IL_21dd: Unknown result type (might be due to invalid IL or missing references) //IL_21e2: Unknown result type (might be due to invalid IL or missing references) //IL_21e8: Unknown result type (might be due to invalid IL or missing references) //IL_21f2: Unknown result type (might be due to invalid IL or missing references) //IL_21f7: Unknown result type (might be due to invalid IL or missing references) //IL_21fd: Unknown result type (might be due to invalid IL or missing references) //IL_2207: Unknown result type (might be due to invalid IL or missing references) //IL_220c: Unknown result type (might be due to invalid IL or missing references) //IL_2212: Unknown result type (might be due to invalid IL or missing references) //IL_2217: Unknown result type (might be due to invalid IL or missing references) //IL_221c: Unknown result type (might be due to invalid IL or missing references) //IL_222c: Unknown result type (might be due to invalid IL or missing references) //IL_2232: Unknown result type (might be due to invalid IL or missing references) //IL_2237: Unknown result type (might be due to invalid IL or missing references) //IL_223d: Unknown result type (might be due to invalid IL or missing references) //IL_2242: Unknown result type (might be due to invalid IL or missing references) //IL_2248: Unknown result type (might be due to invalid IL or missing references) //IL_224d: Unknown result type (might be due to invalid IL or missing references) //IL_2253: Unknown result type (might be due to invalid IL or missing references) //IL_225d: Unknown result type (might be due to invalid IL or missing references) //IL_2262: Unknown result type (might be due to invalid IL or missing references) //IL_2268: Unknown result type (might be due to invalid IL or missing references) //IL_2272: Unknown result type (might be due to invalid IL or missing references) //IL_2277: Unknown result type (might be due to invalid IL or missing references) //IL_227d: Unknown result type (might be due to invalid IL or missing references) //IL_2287: Unknown result type (might be due to invalid IL or missing references) //IL_228c: Unknown result type (might be due to invalid IL or missing references) //IL_2292: Unknown result type (might be due to invalid IL or missing references) //IL_2297: Unknown result type (might be due to invalid IL or missing references) //IL_229d: Unknown result type (might be due to invalid IL or missing references) //IL_22a2: Unknown result type (might be due to invalid IL or missing references) //IL_22ad: Unknown result type (might be due to invalid IL or missing references) //IL_22b3: Unknown result type (might be due to invalid IL or missing references) //IL_22b8: Unknown result type (might be due to invalid IL or missing references) //IL_22be: Unknown result type (might be due to invalid IL or missing references) //IL_22c3: Unknown result type (might be due to invalid IL or missing references) //IL_22c9: Unknown result type (might be due to invalid IL or missing references) //IL_22ce: Unknown result type (might be due to invalid IL or missing references) //IL_22d4: Unknown result type (might be due to invalid IL or missing references) //IL_22de: Unknown result type (might be due to invalid IL or missing references) //IL_22e3: Unknown result type (might be due to invalid IL or missing references) //IL_22e9: Unknown result type (might be due to invalid IL or missing references) //IL_22f3: Unknown result type (might be due to invalid IL or missing references) //IL_22f8: Unknown result type (might be due to invalid IL or missing references) //IL_22fe: Unknown result type (might be due to invalid IL or missing references) //IL_2308: Unknown result type (might be due to invalid IL or missing references) //IL_230d: Unknown result type (might be due to invalid IL or missing references) //IL_2313: Unknown result type (might be due to invalid IL or missing references) //IL_2318: Unknown result type (might be due to invalid IL or missing references) //IL_231e: Unknown result type (might be due to invalid IL or missing references) //IL_2323: Unknown result type (might be due to invalid IL or missing references) //IL_2328: Unknown result type (might be due to invalid IL or missing references) //IL_2338: Unknown result type (might be due to invalid IL or missing references) //IL_233e: Unknown result type (might be due to invalid IL or missing references) //IL_2343: Unknown result type (might be due to invalid IL or missing references) //IL_2349: Unknown result type (might be due to invalid IL or missing references) //IL_2353: Unknown result type (might be due to invalid IL or missing references) //IL_2358: Unknown result type (might be due to invalid IL or missing references) //IL_235e: Unknown result type (might be due to invalid IL or missing references) //IL_2368: Unknown result type (might be due to invalid IL or missing references) //IL_236d: Unknown result type (might be due to invalid IL or missing references) //IL_2373: Unknown result type (might be due to invalid IL or missing references) //IL_237d: Unknown result type (might be due to invalid IL or missing references) //IL_2382: Unknown result type (might be due to invalid IL or missing references) //IL_2388: Unknown result type (might be due to invalid IL or missing references) //IL_238d: Unknown result type (might be due to invalid IL or missing references) //IL_2393: Unknown result type (might be due to invalid IL or missing references) //IL_2398: Unknown result type (might be due to invalid IL or missing references) //IL_239e: Unknown result type (might be due to invalid IL or missing references) //IL_23a3: Unknown result type (might be due to invalid IL or missing references) //IL_23ae: Unknown result type (might be due to invalid IL or missing references) //IL_23b4: Unknown result type (might be due to invalid IL or missing references) //IL_23b9: Unknown result type (might be due to invalid IL or missing references) //IL_23bf: Unknown result type (might be due to invalid IL or missing references) //IL_23c9: Unknown result type (might be due to invalid IL or missing references) //IL_23ce: Unknown result type (might be due to invalid IL or missing references) //IL_23d4: Unknown result type (might be due to invalid IL or missing references) //IL_23d9: Unknown result type (might be due to invalid IL or missing references) //IL_23df: Unknown result type (might be due to invalid IL or missing references) //IL_23e9: Unknown result type (might be due to invalid IL or missing references) //IL_23ee: Unknown result type (might be due to invalid IL or missing references) //IL_23f4: Unknown result type (might be due to invalid IL or missing references) //IL_23fe: Unknown result type (might be due to invalid IL or missing references) //IL_2403: Unknown result type (might be due to invalid IL or missing references) //IL_2409: Unknown result type (might be due to invalid IL or missing references) //IL_240e: Unknown result type (might be due to invalid IL or missing references) //IL_2414: Unknown result type (might be due to invalid IL or missing references) //IL_2419: Unknown result type (might be due to invalid IL or missing references) //IL_241e: Unknown result type (might be due to invalid IL or missing references) //IL_242e: Unknown result type (might be due to invalid IL or missing references) //IL_2434: Unknown result type (might be due to invalid IL or missing references) //IL_2439: Unknown result type (might be due to invalid IL or missing references) //IL_243f: Unknown result type (might be due to invalid IL or missing references) //IL_2449: Unknown result type (might be due to invalid IL or missing references) //IL_244e: Unknown result type (might be due to invalid IL or missing references) //IL_2454: Unknown result type (might be due to invalid IL or missing references) //IL_245e: Unknown result type (might be due to invalid IL or missing references) //IL_2463: Unknown result type (might be due to invalid IL or missing references) //IL_2469: Unknown result type (might be due to invalid IL or missing references) //IL_2473: Unknown result type (might be due to invalid IL or missing references) //IL_2478: Unknown result type (might be due to invalid IL or missing references) //IL_247e: Unknown result type (might be due to invalid IL or missing references) //IL_2483: Unknown result type (might be due to invalid IL or missing references) //IL_2489: Unknown result type (might be due to invalid IL or missing references) //IL_248e: Unknown result type (might be due to invalid IL or missing references) //IL_2494: Unknown result type (might be due to invalid IL or missing references) //IL_2499: Unknown result type (might be due to invalid IL or missing references) //IL_24a4: Unknown result type (might be due to invalid IL or missing references) //IL_24aa: Unknown result type (might be due to invalid IL or missing references) //IL_24af: Unknown result type (might be due to invalid IL or missing references) //IL_24b5: Unknown result type (might be due to invalid IL or missing references) //IL_24bf: Unknown result type (might be due to invalid IL or missing references) //IL_24c4: Unknown result type (might be due to invalid IL or missing references) //IL_24ca: Unknown result type (might be due to invalid IL or missing references) //IL_24d4: Unknown result type (might be due to invalid IL or missing references) //IL_24d9: Unknown result type (might be due to invalid IL or missing references) //IL_24df: Unknown result type (might be due to invalid IL or missing references) //IL_24e9: Unknown result type (might be due to invalid IL or missing references) //IL_24ee: Unknown result type (might be due to invalid IL or missing references) //IL_24f4: Unknown result type (might be due to invalid IL or missing references) //IL_24f9: Unknown result type (might be due to invalid IL or missing references) //IL_24ff: Unknown result type (might be due to invalid IL or missing references) //IL_2504: Unknown result type (might be due to invalid IL or missing references) //IL_250a: Unknown result type (might be due to invalid IL or missing references) //IL_250f: Unknown result type (might be due to invalid IL or missing references) //IL_2514: Unknown result type (might be due to invalid IL or missing references) //IL_2524: Unknown result type (might be due to invalid IL or missing references) //IL_252a: Unknown result type (might be due to invalid IL or missing references) //IL_252f: Unknown result type (might be due to invalid IL or missing references) //IL_2535: Unknown result type (might be due to invalid IL or missing references) //IL_253a: Unknown result type (might be due to invalid IL or missing references) //IL_2540: Unknown result type (might be due to invalid IL or missing references) //IL_2545: Unknown result type (might be due to invalid IL or missing references) //IL_254b: Unknown result type (might be due to invalid IL or missing references) //IL_2555: Unknown result type (might be due to invalid IL or missing references) //IL_255a: Unknown result type (might be due to invalid IL or missing references) //IL_2560: Unknown result type (might be due to invalid IL or missing references) //IL_256a: Unknown result type (might be due to invalid IL or missing references) //IL_256f: Unknown result type (might be due to invalid IL or missing references) //IL_2575: Unknown result type (might be due to invalid IL or missing references) //IL_257f: Unknown result type (might be due to invalid IL or missing references) //IL_2584: Unknown result type (might be due to invalid IL or missing references) //IL_258a: Unknown result type (might be due to invalid IL or missing references) //IL_258f: Unknown result type (might be due to invalid IL or missing references) //IL_2595: Unknown result type (might be due to invalid IL or missing references) //IL_259a: Unknown result type (might be due to invalid IL or missing references) //IL_25a5: Unknown result type (might be due to invalid IL or missing references) //IL_25ab: Unknown result type (might be due to invalid IL or missing references) //IL_25b0: Unknown result type (might be due to invalid IL or missing references) //IL_25b6: Unknown result type (might be due to invalid IL or missing references) //IL_25bb: Unknown result type (might be due to invalid IL or missing references) //IL_25c1: Unknown result type (might be due to invalid IL or missing references) //IL_25c6: Unknown result type (might be due to invalid IL or missing references) //IL_25cc: Unknown result type (might be due to invalid IL or missing references) //IL_25d6: Unknown result type (might be due to invalid IL or missing references) //IL_25db: Unknown result type (might be due to invalid IL or missing references) //IL_25e1: Unknown result type (might be due to invalid IL or missing references) //IL_25e6: Unknown result type (might be due to invalid IL or missing references) //IL_25ec: Unknown result type (might be due to invalid IL or missing references) //IL_25f6: Unknown result type (might be due to invalid IL or missing references) //IL_25fb: Unknown result type (might be due to invalid IL or missing references) //IL_2601: Unknown result type (might be due to invalid IL or missing references) //IL_260b: Unknown result type (might be due to invalid IL or missing references) //IL_2610: Unknown result type (might be due to invalid IL or missing references) //IL_2616: Unknown result type (might be due to invalid IL or missing references) //IL_261b: Unknown result type (might be due to invalid IL or missing references) //IL_2620: Unknown result type (might be due to invalid IL or missing references) //IL_2630: Unknown result type (might be due to invalid IL or missing references) //IL_2636: Unknown result type (might be due to invalid IL or missing references) //IL_263b: Unknown result type (might be due to invalid IL or missing references) //IL_2641: Unknown result type (might be due to invalid IL or missing references) //IL_2646: Unknown result type (might be due to invalid IL or missing references) //IL_264c: Unknown result type (might be due to invalid IL or missing references) //IL_2651: Unknown result type (might be due to invalid IL or missing references) //IL_2657: Unknown result type (might be due to invalid IL or missing references) //IL_2661: Unknown result type (might be due to invalid IL or missing references) //IL_2666: Unknown result type (might be due to invalid IL or missing references) //IL_266c: Unknown result type (might be due to invalid IL or missing references) //IL_2676: Unknown result type (might be due to invalid IL or missing references) //IL_267b: Unknown result type (might be due to invalid IL or missing references) //IL_2681: Unknown result type (might be due to invalid IL or missing references) //IL_268b: Unknown result type (might be due to invalid IL or missing references) //IL_2690: Unknown result type (might be due to invalid IL or missing references) //IL_2696: Unknown result type (might be due to invalid IL or missing references) //IL_269b: Unknown result type (might be due to invalid IL or missing references) //IL_26a1: Unknown result type (might be due to invalid IL or missing references) //IL_26a6: Unknown result type (might be due to invalid IL or missing references) //IL_26b1: Unknown result type (might be due to invalid IL or missing references) //IL_26b7: Unknown result type (might be due to invalid IL or missing references) //IL_26bc: Unknown result type (might be due to invalid IL or missing references) //IL_26c2: Unknown result type (might be due to invalid IL or missing references) //IL_26c7: Unknown result type (might be due to invalid IL or missing references) //IL_26cd: Unknown result type (might be due to invalid IL or missing references) //IL_26d2: Unknown result type (might be due to invalid IL or missing references) //IL_26d8: Unknown result type (might be due to invalid IL or missing references) //IL_26e2: Unknown result type (might be due to invalid IL or missing references) //IL_26e7: Unknown result type (might be due to invalid IL or missing references) //IL_26ed: Unknown result type (might be due to invalid IL or missing references) //IL_26f7: Unknown result type (might be due to invalid IL or missing references) //IL_26fc: Unknown result type (might be due to invalid IL or missing references) //IL_2702: Unknown result type (might be due to invalid IL or missing references) //IL_270c: Unknown result type (might be due to invalid IL or missing references) //IL_2711: Unknown result type (might be due to invalid IL or missing references) //IL_2717: Unknown result type (might be due to invalid IL or missing references) //IL_271c: Unknown result type (might be due to invalid IL or missing references) //IL_2722: Unknown result type (might be due to invalid IL or missing references) //IL_2727: Unknown result type (might be due to invalid IL or missing references) //IL_272c: Unknown result type (might be due to invalid IL or missing references) //IL_273c: Unknown result type (might be due to invalid IL or missing references) //IL_2742: Unknown result type (might be due to invalid IL or missing references) //IL_2747: Unknown result type (might be due to invalid IL or missing references) //IL_274d: Unknown result type (might be due to invalid IL or missing references) //IL_2757: Unknown result type (might be due to invalid IL or missing references) //IL_275c: Unknown result type (might be due to invalid IL or missing references) //IL_2762: Unknown result type (might be due to invalid IL or missing references) //IL_276c: Unknown result type (might be due to invalid IL or missing references) //IL_2771: Unknown result type (might be due to invalid IL or missing references) //IL_2777: Unknown result type (might be due to invalid IL or missing references) //IL_2781: Unknown result type (might be due to invalid IL or missing references) //IL_2786: Unknown result type (might be due to invalid IL or missing references) //IL_278c: Unknown result type (might be due to invalid IL or missing references) //IL_2791: Unknown result type (might be due to invalid IL or missing references) //IL_2797: Unknown result type (might be due to invalid IL or missing references) //IL_279c: Unknown result type (might be due to invalid IL or missing references) //IL_27a2: Unknown result type (might be due to invalid IL or missing references) //IL_27a7: Unknown result type (might be due to invalid IL or missing references) //IL_27b2: Unknown result type (might be due to invalid IL or missing references) //IL_27b8: Unknown result type (might be due to invalid IL or missing references) //IL_27bd: Unknown result type (might be due to invalid IL or missing references) //IL_27c3: Unknown result type (might be due to invalid IL or missing references) //IL_27cd: Unknown result type (might be due to invalid IL or missing references) //IL_27d2: Unknown result type (might be due to invalid IL or missing references) //IL_27d8: Unknown result type (might be due to invalid IL or missing references) //IL_27dd: Unknown result type (might be due to invalid IL or missing references) //IL_27e3: Unknown result type (might be due to invalid IL or missing references) //IL_27ed: Unknown result type (might be due to invalid IL or missing references) //IL_27f2: Unknown result type (might be due to invalid IL or missing references) //IL_27f8: Unknown result type (might be due to invalid IL or missing references) //IL_2802: Unknown result type (might be due to invalid IL or missing references) //IL_2807: Unknown result type (might be due to invalid IL or missing references) //IL_280d: Unknown result type (might be due to invalid IL or missing references) //IL_2812: Unknown result type (might be due to invalid IL or missing references) //IL_2818: Unknown result type (might be due to invalid IL or missing references) //IL_281d: Unknown result type (might be due to invalid IL or missing references) //IL_2822: Unknown result type (might be due to invalid IL or missing references) //IL_2832: Unknown result type (might be due to invalid IL or missing references) //IL_2838: Unknown result type (might be due to invalid IL or missing references) //IL_283d: Unknown result type (might be due to invalid IL or missing references) //IL_2843: Unknown result type (might be due to invalid IL or missing references) //IL_284d: Unknown result type (might be due to invalid IL or missing references) //IL_2852: Unknown result type (might be due to invalid IL or missing references) //IL_2858: Unknown result type (might be due to invalid IL or missing references) //IL_2862: Unknown result type (might be due to invalid IL or missing references) //IL_2867: Unknown result type (might be due to invalid IL or missing references) //IL_286d: Unknown result type (might be due to invalid IL or missing references) //IL_2877: Unknown result type (might be due to invalid IL or missing references) //IL_287c: Unknown result type (might be due to invalid IL or missing references) //IL_2882: Unknown result type (might be due to invalid IL or missing references) //IL_2887: Unknown result type (might be due to invalid IL or missing references) //IL_288d: Unknown result type (might be due to invalid IL or missing references) //IL_2892: Unknown result type (might be due to invalid IL or missing references) //IL_2898: Unknown result type (might be due to invalid IL or missing references) //IL_289d: Unknown result type (might be due to invalid IL or missing references) //IL_28a8: Unknown result type (might be due to invalid IL or missing references) //IL_28ae: Unknown result type (might be due to invalid IL or missing references) //IL_28b3: Unknown result type (might be due to invalid IL or missing references) //IL_28b9: Unknown result type (might be due to invalid IL or missing references) //IL_28c3: Unknown result type (might be due to invalid IL or missing references) //IL_28c8: Unknown result type (might be due to invalid IL or missing references) //IL_28ce: Unknown result type (might be due to invalid IL or missing references) //IL_28d8: Unknown result type (might be due to invalid IL or missing references) //IL_28dd: Unknown result type (might be due to invalid IL or missing references) //IL_28e3: Unknown result type (might be due to invalid IL or missing references) //IL_28ed: Unknown result type (might be due to invalid IL or missing references) //IL_28f2: Unknown result type (might be due to invalid IL or missing references) //IL_28f8: Unknown result type (might be due to invalid IL or missing references) //IL_28fd: Unknown result type (might be due to invalid IL or missing references) //IL_2903: Unknown result type (might be due to invalid IL or missing references) //IL_2908: Unknown result type (might be due to invalid IL or missing references) //IL_290e: Unknown result type (might be due to invalid IL or missing references) //IL_2913: Unknown result type (might be due to invalid IL or missing references) //IL_2918: Unknown result type (might be due to invalid IL or missing references) //IL_2928: Unknown result type (might be due to invalid IL or missing references) //IL_292e: Unknown result type (might be due to invalid IL or missing references) //IL_2933: Unknown result type (might be due to invalid IL or missing references) //IL_2939: Unknown result type (might be due to invalid IL or missing references) //IL_293e: Unknown result type (might be due to invalid IL or missing references) //IL_2944: Unknown result type (might be due to invalid IL or missing references) //IL_2949: Unknown result type (might be due to invalid IL or missing references) //IL_294f: Unknown result type (might be due to invalid IL or missing references) //IL_2959: Unknown result type (might be due to invalid IL or missing references) //IL_295e: Unknown result type (might be due to invalid IL or missing references) //IL_2964: Unknown result type (might be due to invalid IL or missing references) //IL_296e: Unknown result type (might be due to invalid IL or missing references) //IL_2973: Unknown result type (might be due to invalid IL or missing references) //IL_2979: Unknown result type (might be due to invalid IL or missing references) //IL_2983: Unknown result type (might be due to invalid IL or missing references) //IL_2988: Unknown result type (might be due to invalid IL or missing references) //IL_298e: Unknown result type (might be due to invalid IL or missing references) //IL_2993: Unknown result type (might be due to invalid IL or missing references) //IL_2999: Unknown result type (might be due to invalid IL or missing references) //IL_299e: Unknown result type (might be due to invalid IL or missing references) //IL_29a9: Unknown result type (might be due to invalid IL or missing references) //IL_29af: Unknown result type (might be due to invalid IL or missing references) //IL_29b4: Unknown result type (might be due to invalid IL or missing references) //IL_29ba: Unknown result type (might be due to invalid IL or missing references) //IL_29bf: Unknown result type (might be due to invalid IL or missing references) //IL_29c5: Unknown result type (might be due to invalid IL or missing references) //IL_29ca: Unknown result type (might be due to invalid IL or missing references) //IL_29d0: Unknown result type (might be due to invalid IL or missing references) //IL_29da: Unknown result type (might be due to invalid IL or missing references) //IL_29df: Unknown result type (might be due to invalid IL or missing references) //IL_29e5: Unknown result type (might be due to invalid IL or missing references) //IL_29ea: Unknown result type (might be due to invalid IL or missing references) //IL_29f0: Unknown result type (might be due to invalid IL or missing references) //IL_29fa: Unknown result type (might be due to invalid IL or missing references) //IL_29ff: Unknown result type (might be due to invalid IL or missing references) //IL_2a05: Unknown result type (might be due to invalid IL or missing references) //IL_2a0f: Unknown result type (might be due to invalid IL or missing references) //IL_2a14: Unknown result type (might be due to invalid IL or missing references) //IL_2a1a: Unknown result type (might be due to invalid IL or missing references) //IL_2a1f: Unknown result type (might be due to invalid IL or missing references) //IL_2a24: Unknown result type (might be due to invalid IL or missing references) //IL_2a34: Unknown result type (might be due to invalid IL or missing references) //IL_2a3a: Unknown result type (might be due to invalid IL or missing references) //IL_2a3f: Unknown result type (might be due to invalid IL or missing references) //IL_2a45: Unknown result type (might be due to invalid IL or missing references) //IL_2a4a: Unknown result type (might be due to invalid IL or missing references) //IL_2a50: Unknown result type (might be due to invalid IL or missing references) //IL_2a55: Unknown result type (might be due to invalid IL or missing references) //IL_2a5b: Unknown result type (might be due to invalid IL or missing references) //IL_2a65: Unknown result type (might be due to invalid IL or missing references) //IL_2a6a: Unknown result type (might be due to invalid IL or missing references) //IL_2a70: Unknown result type (might be due to invalid IL or missing references) //IL_2a7a: Unknown result type (might be due to invalid IL or missing references) //IL_2a7f: Unknown result type (might be due to invalid IL or missing references) //IL_2a85: Unknown result type (might be due to invalid IL or missing references) //IL_2a8f: Unknown result type (might be due to invalid IL or missing references) //IL_2a94: Unknown result type (might be due to invalid IL or missing references) //IL_2a9a: Unknown result type (might be due to invalid IL or missing references) //IL_2a9f: Unknown result type (might be due to invalid IL or missing references) //IL_2aa5: Unknown result type (might be due to invalid IL or missing references) //IL_2aaa: Unknown result type (might be due to invalid IL or missing references) //IL_2ab5: Unknown result type (might be due to invalid IL or missing references) //IL_2abb: Unknown result type (might be due to invalid IL or missing references) //IL_2ac0: Unknown result type (might be due to invalid IL or missing references) //IL_2ac6: Unknown result type (might be due to invalid IL or missing references) //IL_2acb: Unknown result type (might be due to invalid IL or missing references) //IL_2ad1: Unknown result type (might be due to invalid IL or missing references) //IL_2ad6: Unknown result type (might be due to invalid IL or missing references) //IL_2adc: Unknown result type (might be due to invalid IL or missing references) //IL_2ae6: Unknown result type (might be due to invalid IL or missing references) //IL_2aeb: Unknown result type (might be due to invalid IL or missing references) //IL_2af1: Unknown result type (might be due to invalid IL or missing references) //IL_2afb: Unknown result type (might be due to invalid IL or missing references) //IL_2b00: Unknown result type (might be due to invalid IL or missing references) //IL_2b06: Unknown result type (might be due to invalid IL or missing references) //IL_2b10: Unknown result type (might be due to invalid IL or missing references) //IL_2b15: Unknown result type (might be due to invalid IL or missing references) //IL_2b1b: Unknown result type (might be due to invalid IL or missing references) //IL_2b20: Unknown result type (might be due to invalid IL or missing references) //IL_2b26: Unknown result type (might be due to invalid IL or missing references) //IL_2b2b: Unknown result type (might be due to invalid IL or missing references) //IL_2b30: Unknown result type (might be due to invalid IL or missing references) //IL_2b40: Unknown result type (might be due to invalid IL or missing references) //IL_2b46: Unknown result type (might be due to invalid IL or missing references) //IL_2b4b: Unknown result type (might be due to invalid IL or missing references) //IL_2b51: Unknown result type (might be due to invalid IL or missing references) //IL_2b5b: Unknown result type (might be due to invalid IL or missing references) //IL_2b60: Unknown result type (might be due to invalid IL or missing references) //IL_2b66: Unknown result type (might be due to invalid IL or missing references) //IL_2b70: Unknown result type (might be due to invalid IL or missing references) //IL_2b75: Unknown result type (might be due to invalid IL or missing references) //IL_2b7b: Unknown result type (might be due to invalid IL or missing references) //IL_2b85: Unknown result type (might be due to invalid IL or missing references) //IL_2b8a: Unknown result type (might be due to invalid IL or missing references) //IL_2b90: Unknown result type (might be due to invalid IL or missing references) //IL_2b95: Unknown result type (might be due to invalid IL or missing references) //IL_2b9b: Unknown result type (might be due to invalid IL or missing references) //IL_2ba0: Unknown result type (might be due to invalid IL or missing references) //IL_2ba6: Unknown result type (might be due to invalid IL or missing references) //IL_2bab: Unknown result type (might be due to invalid IL or missing references) //IL_2bb6: Unknown result type (might be due to invalid IL or missing references) //IL_2bbc: Unknown result type (might be due to invalid IL or missing references) //IL_2bc1: Unknown result type (might be due to invalid IL or missing references) //IL_2bc7: Unknown result type (might be due to invalid IL or missing references) //IL_2bd1: Unknown result type (might be due to invalid IL or missing references) //IL_2bd6: Unknown result type (might be due to invalid IL or missing references) //IL_2bdc: Unknown result type (might be due to invalid IL or missing references) //IL_2be1: Unknown result type (might be due to invalid IL or missing references) //IL_2be7: Unknown result type (might be due to invalid IL or missing references) //IL_2bf1: Unknown result type (might be due to invalid IL or missing references) //IL_2bf6: Unknown result type (might be due to invalid IL or missing references) //IL_2bfc: Unknown result type (might be due to invalid IL or missing references) //IL_2c06: Unknown result type (might be due to invalid IL or missing references) //IL_2c0b: Unknown result type (might be due to invalid IL or missing references) //IL_2c11: Unknown result type (might be due to invalid IL or missing references) //IL_2c16: Unknown result type (might be due to invalid IL or missing references) //IL_2c1c: Unknown result type (might be due to invalid IL or missing references) //IL_2c21: Unknown result type (might be due to invalid IL or missing references) //IL_2c26: Unknown result type (might be due to invalid IL or missing references) //IL_2c36: Unknown result type (might be due to invalid IL or missing references) //IL_2c3c: Unknown result type (might be due to invalid IL or missing references) //IL_2c41: Unknown result type (might be due to invalid IL or missing references) //IL_2c47: Unknown result type (might be due to invalid IL or missing references) //IL_2c51: Unknown result type (might be due to invalid IL or missing references) //IL_2c56: Unknown result type (might be due to invalid IL or missing references) //IL_2c5c: Unknown result type (might be due to invalid IL or missing references) //IL_2c66: Unknown result type (might be due to invalid IL or missing references) //IL_2c6b: Unknown result type (might be due to invalid IL or missing references) //IL_2c71: Unknown result type (might be due to invalid IL or missing references) //IL_2c7b: Unknown result type (might be due to invalid IL or missing references) //IL_2c80: Unknown result type (might be due to invalid IL or missing references) //IL_2c86: Unknown result type (might be due to invalid IL or missing references) //IL_2c8b: Unknown result type (might be due to invalid IL or missing references) //IL_2c91: Unknown result type (might be due to invalid IL or missing references) //IL_2c96: Unknown result type (might be due to invalid IL or missing references) //IL_2c9c: Unknown result type (might be due to invalid IL or missing references) //IL_2ca1: Unknown result type (might be due to invalid IL or missing references) //IL_2cac: Unknown result type (might be due to invalid IL or missing references) //IL_2cb2: Unknown result type (might be due to invalid IL or missing references) //IL_2cb7: Unknown result type (might be due to invalid IL or missing references) //IL_2cbd: Unknown result type (might be due to invalid IL or missing references) //IL_2cc7: Unknown result type (might be due to invalid IL or missing references) //IL_2ccc: Unknown result type (might be due to invalid IL or missing references) //IL_2cd2: Unknown result type (might be due to invalid IL or missing references) //IL_2cdc: Unknown result type (might be due to invalid IL or missing references) //IL_2ce1: Unknown result type (might be due to invalid IL or missing references) //IL_2ce7: Unknown result type (might be due to invalid IL or missing references) //IL_2cf1: Unknown result type (might be due to invalid IL or missing references) //IL_2cf6: Unknown result type (might be due to invalid IL or missing references) //IL_2cfc: Unknown result type (might be due to invalid IL or missing references) //IL_2d01: Unknown result type (might be due to invalid IL or missing references) //IL_2d07: Unknown result type (might be due to invalid IL or missing references) //IL_2d0c: Unknown result type (might be due to invalid IL or missing references) //IL_2d12: Unknown result type (might be due to invalid IL or missing references) //IL_2d17: Unknown result type (might be due to invalid IL or missing references) //IL_2d1c: Unknown result type (might be due to invalid IL or missing references) //IL_2d2c: Unknown result type (might be due to invalid IL or missing references) //IL_2d32: Unknown result type (might be due to invalid IL or missing references) //IL_2d37: Unknown result type (might be due to invalid IL or missing references) //IL_2d3d: Unknown result type (might be due to invalid IL or missing references) //IL_2d42: Unknown result type (might be due to invalid IL or missing references) //IL_2d48: Unknown result type (might be due to invalid IL or missing references) //IL_2d4d: Unknown result type (might be due to invalid IL or missing references) //IL_2d53: Unknown result type (might be due to invalid IL or missing references) //IL_2d5d: Unknown result type (might be due to invalid IL or missing references) //IL_2d62: Unknown result type (might be due to invalid IL or missing references) //IL_2d68: Unknown result type (might be due to invalid IL or missing references) //IL_2d72: Unknown result type (might be due to invalid IL or missing references) //IL_2d77: Unknown result type (might be due to invalid IL or missing references) //IL_2d7d: Unknown result type (might be due to invalid IL or missing references) //IL_2d82: Unknown result type (might be due to invalid IL or missing references) //IL_2d88: Unknown result type (might be due to invalid IL or missing references) //IL_2d8d: Unknown result type (might be due to invalid IL or missing references) //IL_2d98: Unknown result type (might be due to invalid IL or missing references) //IL_2d9e: Unknown result type (might be due to invalid IL or missing references) //IL_2da3: Unknown result type (might be due to invalid IL or missing references) //IL_2da9: Unknown result type (might be due to invalid IL or missing references) //IL_2dae: Unknown result type (might be due to invalid IL or missing references) //IL_2db4: Unknown result type (might be due to invalid IL or missing references) //IL_2db9: Unknown result type (might be due to invalid IL or missing references) //IL_2dbf: Unknown result type (might be due to invalid IL or missing references) //IL_2dc9: Unknown result type (might be due to invalid IL or missing references) //IL_2dce: Unknown result type (might be due to invalid IL or missing references) //IL_2dd4: Unknown result type (might be due to invalid IL or missing references) //IL_2dd9: Unknown result type (might be due to invalid IL or missing references) //IL_2ddf: Unknown result type (might be due to invalid IL or missing references) //IL_2de9: Unknown result type (might be due to invalid IL or missing references) //IL_2dee: Unknown result type (might be due to invalid IL or missing references) //IL_2df4: Unknown result type (might be due to invalid IL or missing references) //IL_2df9: Unknown result type (might be due to invalid IL or missing references) //IL_2dfe: Unknown result type (might be due to invalid IL or missing references) //IL_2e0e: Unknown result type (might be due to invalid IL or missing references) //IL_2e14: Unknown result type (might be due to invalid IL or missing references) //IL_2e19: Unknown result type (might be due to invalid IL or missing references) //IL_2e1f: Unknown result type (might be due to invalid IL or missing references) //IL_2e24: Unknown result type (might be due to invalid IL or missing references) //IL_2e2a: Unknown result type (might be due to invalid IL or missing references) //IL_2e2f: Unknown result type (might be due to invalid IL or missing references) //IL_2e35: Unknown result type (might be due to invalid IL or missing references) //IL_2e3f: Unknown result type (might be due to invalid IL or missing references) //IL_2e44: Unknown result type (might be due to invalid IL or missing references) //IL_2e4a: Unknown result type (might be due to invalid IL or missing references) //IL_2e54: Unknown result type (might be due to invalid IL or missing references) //IL_2e59: Unknown result type (might be due to invalid IL or missing references) //IL_2e5f: Unknown result type (might be due to invalid IL or missing references) //IL_2e64: Unknown result type (might be due to invalid IL or missing references) //IL_2e6a: Unknown result type (might be due to invalid IL or missing references) //IL_2e6f: Unknown result type (might be due to invalid IL or missing references) //IL_2e7a: Unknown result type (might be due to invalid IL or missing references) //IL_2e80: Unknown result type (might be due to invalid IL or missing references) //IL_2e85: Unknown result type (might be due to invalid IL or missing references) //IL_2e8b: Unknown result type (might be due to invalid IL or missing references) //IL_2e90: Unknown result type (might be due to invalid IL or missing references) //IL_2e96: Unknown result type (might be due to invalid IL or missing references) //IL_2e9b: Unknown result type (might be due to invalid IL or missing references) //IL_2ea1: Unknown result type (might be due to invalid IL or missing references) //IL_2eab: Unknown result type (might be due to invalid IL or missing references) //IL_2eb0: Unknown result type (might be due to invalid IL or missing references) //IL_2eb6: Unknown result type (might be due to invalid IL or missing references) //IL_2ec0: Unknown result type (might be due to invalid IL or missing references) //IL_2ec5: Unknown result type (might be due to invalid IL or missing references) //IL_2ecb: Unknown result type (might be due to invalid IL or missing references) //IL_2ed0: Unknown result type (might be due to invalid IL or missing references) //IL_2ed6: Unknown result type (might be due to invalid IL or missing references) //IL_2edb: Unknown result type (might be due to invalid IL or missing references) //IL_2ee0: Unknown result type (might be due to invalid IL or missing references) //IL_2ef0: Unknown result type (might be due to invalid IL or missing references) //IL_2ef6: Unknown result type (might be due to invalid IL or missing references) //IL_2efb: Unknown result type (might be due to invalid IL or missing references) //IL_2f01: Unknown result type (might be due to invalid IL or missing references) //IL_2f0b: Unknown result type (might be due to invalid IL or missing references) //IL_2f10: Unknown result type (might be due to invalid IL or missing references) //IL_2f16: Unknown result type (might be due to invalid IL or missing references) //IL_2f20: Unknown result type (might be due to invalid IL or missing references) //IL_2f25: Unknown result type (might be due to invalid IL or missing references) //IL_2f2b: Unknown result type (might be due to invalid IL or missing references) //IL_2f30: Unknown result type (might be due to invalid IL or missing references) //IL_2f36: Unknown result type (might be due to invalid IL or missing references) //IL_2f3b: Unknown result type (might be due to invalid IL or missing references) //IL_2f41: Unknown result type (might be due to invalid IL or missing references) //IL_2f46: Unknown result type (might be due to invalid IL or missing references) //IL_2f51: Unknown result type (might be due to invalid IL or missing references) //IL_2f57: Unknown result type (might be due to invalid IL or missing references) //IL_2f5c: Unknown result type (might be due to invalid IL or missing references) //IL_2f62: Unknown result type (might be due to invalid IL or missing references) //IL_2f6c: Unknown result type (might be due to invalid IL or missing references) //IL_2f71: Unknown result type (might be due to invalid IL or missing references) //IL_2f77: Unknown result type (might be due to invalid IL or missing references) //IL_2f7c: Unknown result type (might be due to invalid IL or missing references) //IL_2f82: Unknown result type (might be due to invalid IL or missing references) //IL_2f8c: Unknown result type (might be due to invalid IL or missing references) //IL_2f91: Unknown result type (might be due to invalid IL or missing references) //IL_2f97: Unknown result type (might be due to invalid IL or missing references) //IL_2f9c: Unknown result type (might be due to invalid IL or missing references) //IL_2fa2: Unknown result type (might be due to invalid IL or missing references) //IL_2fa7: Unknown result type (might be due to invalid IL or missing references) //IL_2fac: Unknown result type (might be due to invalid IL or missing references) //IL_2fbc: Unknown result type (might be due to invalid IL or missing references) //IL_2fc2: Unknown result type (might be due to invalid IL or missing references) //IL_2fc7: Unknown result type (might be due to invalid IL or missing references) //IL_2fcd: Unknown result type (might be due to invalid IL or missing references) //IL_2fd7: Unknown result type (might be due to invalid IL or missing references) //IL_2fdc: Unknown result type (might be due to invalid IL or missing references) //IL_2fe2: Unknown result type (might be due to invalid IL or missing references) //IL_2fec: Unknown result type (might be due to invalid IL or missing references) //IL_2ff1: Unknown result type (might be due to invalid IL or missing references) //IL_2ff7: Unknown result type (might be due to invalid IL or missing references) //IL_2ffc: Unknown result type (might be due to invalid IL or missing references) //IL_3002: Unknown result type (might be due to invalid IL or missing references) //IL_3007: Unknown result type (might be due to invalid IL or missing references) //IL_300d: Unknown result type (might be due to invalid IL or missing references) //IL_3012: Unknown result type (might be due to invalid IL or missing references) //IL_301d: Unknown result type (might be due to invalid IL or missing references) //IL_3023: Unknown result type (might be due to invalid IL or missing references) //IL_3028: Unknown result type (might be due to invalid IL or missing references) //IL_302e: Unknown result type (might be due to invalid IL or missing references) //IL_3038: Unknown result type (might be due to invalid IL or missing references) //IL_303d: Unknown result type (might be due to invalid IL or missing references) //IL_3043: Unknown result type (might be due to invalid IL or missing references) //IL_304d: Unknown result type (might be due to invalid IL or missing references) //IL_3052: Unknown result type (might be due to invalid IL or missing references) //IL_3058: Unknown result type (might be due to invalid IL or missing references) //IL_305d: Unknown result type (might be due to invalid IL or missing references) //IL_3063: Unknown result type (might be due to invalid IL or missing references) //IL_3068: Unknown result type (might be due to invalid IL or missing references) //IL_306e: Unknown result type (might be due to invalid IL or missing references) //IL_3073: Unknown result type (might be due to invalid IL or missing references) //IL_3078: Unknown result type (might be due to invalid IL or missing references) //IL_3088: Unknown result type (might be due to invalid IL or missing references) //IL_308e: Unknown result type (might be due to invalid IL or missing references) //IL_3093: Unknown result type (might be due to invalid IL or missing references) //IL_3099: Unknown result type (might be due to invalid IL or missing references) //IL_309e: Unknown result type (might be due to invalid IL or missing references) //IL_30a4: Unknown result type (might be due to invalid IL or missing references) //IL_30a9: Unknown result type (might be due to invalid IL or missing references) //IL_30af: Unknown result type (might be due to invalid IL or missing references) //IL_30b9: Unknown result type (might be due to invalid IL or missing references) //IL_30be: Unknown result type (might be due to invalid IL or missing references) //IL_30c4: Unknown result type (might be due to invalid IL or missing references) //IL_30ce: Unknown result type (might be due to invalid IL or missing references) //IL_30d3: Unknown result type (might be due to invalid IL or missing references) //IL_30d9: Unknown result type (might be due to invalid IL or missing references) //IL_30e3: Unknown result type (might be due to invalid IL or missing references) //IL_30e8: Unknown result type (might be due to invalid IL or missing references) //IL_30ee: Unknown result type (might be due to invalid IL or missing references) //IL_30f3: Unknown result type (might be due to invalid IL or missing references) //IL_30f9: Unknown result type (might be due to invalid IL or missing references) //IL_30fe: Unknown result type (might be due to invalid IL or missing references) //IL_3109: Unknown result type (might be due to invalid IL or missing references) //IL_310f: Unknown result type (might be due to invalid IL or missing references) //IL_3114: Unknown result type (might be due to invalid IL or missing references) //IL_311a: Unknown result type (might be due to invalid IL or missing references) //IL_311f: Unknown result type (might be due to invalid IL or missing references) //IL_3125: Unknown result type (might be due to invalid IL or missing references) //IL_312a: Unknown result type (might be due to invalid IL or missing references) //IL_3130: Unknown result type (might be due to invalid IL or missing references) //IL_313a: Unknown result type (might be due to invalid IL or missing references) //IL_313f: Unknown result type (might be due to invalid IL or missing references) //IL_3145: Unknown result type (might be due to invalid IL or missing references) //IL_314a: Unknown result type (might be due to invalid IL or missing references) //IL_3150: Unknown result type (might be due to invalid IL or missing references) //IL_315a: Unknown result type (might be due to invalid IL or missing references) //IL_315f: Unknown result type (might be due to invalid IL or missing references) //IL_3165: Unknown result type (might be due to invalid IL or missing references) //IL_316f: Unknown result type (might be due to invalid IL or missing references) //IL_3174: Unknown result type (might be due to invalid IL or missing references) //IL_317a: Unknown result type (might be due to invalid IL or missing references) //IL_317f: Unknown result type (might be due to invalid IL or missing references) //IL_3184: Unknown result type (might be due to invalid IL or missing references) //IL_3194: Unknown result type (might be due to invalid IL or missing references) //IL_319a: Unknown result type (might be due to invalid IL or missing references) //IL_319f: Unknown result type (might be due to invalid IL or missing references) //IL_31a5: Unknown result type (might be due to invalid IL or missing references) //IL_31aa: Unknown result type (might be due to invalid IL or missing references) //IL_31b0: Unknown result type (might be due to invalid IL or missing references) //IL_31b5: Unknown result type (might be due to invalid IL or missing references) //IL_31bb: Unknown result type (might be due to invalid IL or missing references) //IL_31c5: Unknown result type (might be due to invalid IL or missing references) //IL_31ca: Unknown result type (might be due to invalid IL or missing references) //IL_31d0: Unknown result type (might be due to invalid IL or missing references) //IL_31da: Unknown result type (might be due to invalid IL or missing references) //IL_31df: Unknown result type (might be due to invalid IL or missing references) //IL_31e5: Unknown result type (might be due to invalid IL or missing references) //IL_31ef: Unknown result type (might be due to invalid IL or missing references) //IL_31f4: Unknown result type (might be due to invalid IL or missing references) //IL_31fa: Unknown result type (might be due to invalid IL or missing references) //IL_31ff: Unknown result type (might be due to invalid IL or missing references) //IL_3205: Unknown result type (might be due to invalid IL or missing references) //IL_320a: Unknown result type (might be due to invalid IL or missing references) //IL_3215: Unknown result type (might be due to invalid IL or missing references) //IL_321b: Unknown result type (might be due to invalid IL or missing references) //IL_3220: Unknown result type (might be due to invalid IL or missing references) //IL_3226: Unknown result type (might be due to invalid IL or missing references) //IL_322b: Unknown result type (might be due to invalid IL or missing references) //IL_3231: Unknown result type (might be due to invalid IL or missing references) //IL_3236: Unknown result type (might be due to invalid IL or missing references) //IL_323c: Unknown result type (might be due to invalid IL or missing references) //IL_3246: Unknown result type (might be due to invalid IL or missing references) //IL_324b: Unknown result type (might be due to invalid IL or missing references) //IL_3251: Unknown result type (might be due to invalid IL or missing references) //IL_325b: Unknown result type (might be due to invalid IL or missing references) //IL_3260: Unknown result type (might be due to invalid IL or missing references) //IL_3266: Unknown result type (might be due to invalid IL or missing references) //IL_3270: Unknown result type (might be due to invalid IL or missing references) //IL_3275: Unknown result type (might be due to invalid IL or missing references) //IL_327b: Unknown result type (might be due to invalid IL or missing references) //IL_3280: Unknown result type (might be due to invalid IL or missing references) //IL_3286: Unknown result type (might be due to invalid IL or missing references) //IL_328b: Unknown result type (might be due to invalid IL or missing references) //IL_3290: Unknown result type (might be due to invalid IL or missing references) //IL_32a0: Unknown result type (might be due to invalid IL or missing references) //IL_32a6: Unknown result type (might be due to invalid IL or missing references) //IL_32ab: Unknown result type (might be due to invalid IL or missing references) //IL_32b1: Unknown result type (might be due to invalid IL or missing references) //IL_32bb: Unknown result type (might be due to invalid IL or missing references) //IL_32c0: Unknown result type (might be due to invalid IL or missing references) //IL_32c6: Unknown result type (might be due to invalid IL or missing references) //IL_32d0: Unknown result type (might be due to invalid IL or missing references) //IL_32d5: Unknown result type (might be due to invalid IL or missing references) //IL_32db: Unknown result type (might be due to invalid IL or missing references) //IL_32e5: Unknown result type (might be due to invalid IL or missing references) //IL_32ea: Unknown result type (might be due to invalid IL or missing references) //IL_32f0: Unknown result type (might be due to invalid IL or missing references) //IL_32f5: Unknown result type (might be due to invalid IL or missing references) //IL_32fb: Unknown result type (might be due to invalid IL or missing references) //IL_3300: Unknown result type (might be due to invalid IL or missing references) //IL_3306: Unknown result type (might be due to invalid IL or missing references) //IL_330b: Unknown result type (might be due to invalid IL or missing references) //IL_3316: Unknown result type (might be due to invalid IL or missing references) //IL_331c: Unknown result type (might be due to invalid IL or missing references) //IL_3321: Unknown result type (might be due to invalid IL or missing references) //IL_3327: Unknown result type (might be due to invalid IL or missing references) //IL_3331: Unknown result type (might be due to invalid IL or missing references) //IL_3336: Unknown result type (might be due to invalid IL or missing references) //IL_333c: Unknown result type (might be due to invalid IL or missing references) //IL_3341: Unknown result type (might be due to invalid IL or missing references) //IL_3347: Unknown result type (might be due to invalid IL or missing references) //IL_3351: Unknown result type (might be due to invalid IL or missing references) //IL_3356: Unknown result type (might be due to invalid IL or missing references) //IL_335c: Unknown result type (might be due to invalid IL or missing references) //IL_3366: Unknown result type (might be due to invalid IL or missing references) //IL_336b: Unknown result type (might be due to invalid IL or missing references) //IL_3371: Unknown result type (might be due to invalid IL or missing references) //IL_3376: Unknown result type (might be due to invalid IL or missing references) //IL_337c: Unknown result type (might be due to invalid IL or missing references) //IL_3381: Unknown result type (might be due to invalid IL or missing references) //IL_3386: Unknown result type (might be due to invalid IL or missing references) //IL_3396: Unknown result type (might be due to invalid IL or missing references) //IL_339c: Unknown result type (might be due to invalid IL or missing references) //IL_33a1: Unknown result type (might be due to invalid IL or missing references) //IL_33a7: Unknown result type (might be due to invalid IL or missing references) //IL_33b1: Unknown result type (might be due to invalid IL or missing references) //IL_33b6: Unknown result type (might be due to invalid IL or missing references) //IL_33bc: Unknown result type (might be due to invalid IL or missing references) //IL_33c6: Unknown result type (might be due to invalid IL or missing references) //IL_33cb: Unknown result type (might be due to invalid IL or missing references) //IL_33d1: Unknown result type (might be due to invalid IL or missing references) //IL_33db: Unknown result type (might be due to invalid IL or missing references) //IL_33e0: Unknown result type (might be due to invalid IL or missing references) //IL_33e6: Unknown result type (might be due to invalid IL or missing references) //IL_33eb: Unknown result type (might be due to invalid IL or missing references) //IL_33f1: Unknown result type (might be due to invalid IL or missing references) //IL_33f6: Unknown result type (might be due to invalid IL or missing references) //IL_33fc: Unknown result type (might be due to invalid IL or missing references) //IL_3401: Unknown result type (might be due to invalid IL or missing references) //IL_340c: Unknown result type (might be due to invalid IL or missing references) //IL_3412: Unknown result type (might be due to invalid IL or missing references) //IL_3417: Unknown result type (might be due to invalid IL or missing references) //IL_341d: Unknown result type (might be due to invalid IL or missing references) //IL_3427: Unknown result type (might be due to invalid IL or missing references) //IL_342c: Unknown result type (might be due to invalid IL or missing references) //IL_3432: Unknown result type (might be due to invalid IL or missing references) //IL_343c: Unknown result type (might be due to invalid IL or missing references) //IL_3441: Unknown result type (might be due to invalid IL or missing references) //IL_3447: Unknown result type (might be due to invalid IL or missing references) //IL_3451: Unknown result type (might be due to invalid IL or missing references) //IL_3456: Unknown result type (might be due to invalid IL or missing references) //IL_345c: Unknown result type (might be due to invalid IL or missing references) //IL_3461: Unknown result type (might be due to invalid IL or missing references) //IL_3467: Unknown result type (might be due to invalid IL or missing references) //IL_346c: Unknown result type (might be due to invalid IL or missing references) //IL_3472: Unknown result type (might be due to invalid IL or missing references) //IL_3477: Unknown result type (might be due to invalid IL or missing references) //IL_347c: Unknown result type (might be due to invalid IL or missing references) //IL_348c: Unknown result type (might be due to invalid IL or missing references) //IL_3492: Unknown result type (might be due to invalid IL or missing references) //IL_3497: Unknown result type (might be due to invalid IL or missing references) //IL_349d: Unknown result type (might be due to invalid IL or missing references) //IL_34a2: Unknown result type (might be due to invalid IL or missing references) //IL_34a8: Unknown result type (might be due to invalid IL or missing references) //IL_34b2: Unknown result type (might be due to invalid IL or missing references) //IL_34b7: Unknown result type (might be due to invalid IL or missing references) //IL_34bd: Unknown result type (might be due to invalid IL or missing references) //IL_34c2: Unknown result type (might be due to invalid IL or missing references) //IL_34cd: Unknown result type (might be due to invalid IL or missing references) //IL_34d3: Unknown result type (might be due to invalid IL or missing references) //IL_34d8: Unknown result type (might be due to invalid IL or missing references) //IL_34de: Unknown result type (might be due to invalid IL or missing references) //IL_34e3: Unknown result type (might be due to invalid IL or missing references) //IL_34e9: Unknown result type (might be due to invalid IL or missing references) //IL_34f3: Unknown result type (might be due to invalid IL or missing references) //IL_34f8: Unknown result type (might be due to invalid IL or missing references) //IL_34fe: Unknown result type (might be due to invalid IL or missing references) //IL_3503: Unknown result type (might be due to invalid IL or missing references) //IL_3508: Unknown result type (might be due to invalid IL or missing references) //IL_3518: Unknown result type (might be due to invalid IL or missing references) //IL_351e: Unknown result type (might be due to invalid IL or missing references) //IL_3523: Unknown result type (might be due to invalid IL or missing references) //IL_3529: Unknown result type (might be due to invalid IL or missing references) //IL_352e: Unknown result type (might be due to invalid IL or missing references) //IL_3534: Unknown result type (might be due to invalid IL or missing references) //IL_353e: Unknown result type (might be due to invalid IL or missing references) //IL_3543: Unknown result type (might be due to invalid IL or missing references) //IL_3549: Unknown result type (might be due to invalid IL or missing references) //IL_354e: Unknown result type (might be due to invalid IL or missing references) //IL_3554: Unknown result type (might be due to invalid IL or missing references) //IL_355e: Unknown result type (might be due to invalid IL or missing references) //IL_3563: Unknown result type (might be due to invalid IL or missing references) //IL_356e: Unknown result type (might be due to invalid IL or missing references) //IL_3574: Unknown result type (might be due to invalid IL or missing references) //IL_3579: Unknown result type (might be due to invalid IL or missing references) //IL_357f: Unknown result type (might be due to invalid IL or missing references) //IL_3584: Unknown result type (might be due to invalid IL or missing references) //IL_358a: Unknown result type (might be due to invalid IL or missing references) //IL_3594: Unknown result type (might be due to invalid IL or missing references) //IL_3599: Unknown result type (might be due to invalid IL or missing references) //IL_359f: Unknown result type (might be due to invalid IL or missing references) //IL_35a4: Unknown result type (might be due to invalid IL or missing references) //IL_35aa: Unknown result type (might be due to invalid IL or missing references) //IL_35b4: Unknown result type (might be due to invalid IL or missing references) //IL_35b9: Unknown result type (might be due to invalid IL or missing references) //IL_35be: Unknown result type (might be due to invalid IL or missing references) //IL_35ce: Unknown result type (might be due to invalid IL or missing references) //IL_35d4: Unknown result type (might be due to invalid IL or missing references) //IL_35d9: Unknown result type (might be due to invalid IL or missing references) //IL_35df: Unknown result type (might be due to invalid IL or missing references) //IL_35e4: Unknown result type (might be due to invalid IL or missing references) //IL_35ea: Unknown result type (might be due to invalid IL or missing references) //IL_35f4: Unknown result type (might be due to invalid IL or missing references) //IL_35f9: Unknown result type (might be due to invalid IL or missing references) //IL_35ff: Unknown result type (might be due to invalid IL or missing references) //IL_3604: Unknown result type (might be due to invalid IL or missing references) //IL_360a: Unknown result type (might be due to invalid IL or missing references) //IL_3614: Unknown result type (might be due to invalid IL or missing references) //IL_3619: Unknown result type (might be due to invalid IL or missing references) //IL_3624: Unknown result type (might be due to invalid IL or missing references) //IL_362a: Unknown result type (might be due to invalid IL or missing references) //IL_362f: Unknown result type (might be due to invalid IL or missing references) //IL_3635: Unknown result type (might be due to invalid IL or missing references) //IL_363a: Unknown result type (might be due to invalid IL or missing references) //IL_3640: Unknown result type (might be due to invalid IL or missing references) //IL_364a: Unknown result type (might be due to invalid IL or missing references) //IL_364f: Unknown result type (might be due to invalid IL or missing references) //IL_3655: Unknown result type (might be due to invalid IL or missing references) //IL_365a: Unknown result type (might be due to invalid IL or missing references) //IL_3660: Unknown result type (might be due to invalid IL or missing references) //IL_366a: Unknown result type (might be due to invalid IL or missing references) //IL_366f: Unknown result type (might be due to invalid IL or missing references) //IL_3674: Unknown result type (might be due to invalid IL or missing references) //IL_3684: Unknown result type (might be due to invalid IL or missing references) //IL_368a: Unknown result type (might be due to invalid IL or missing references) //IL_368f: Unknown result type (might be due to invalid IL or missing references) //IL_3695: Unknown result type (might be due to invalid IL or missing references) //IL_369a: Unknown result type (might be due to invalid IL or missing references) //IL_36a0: Unknown result type (might be due to invalid IL or missing references) //IL_36aa: Unknown result type (might be due to invalid IL or missing references) //IL_36af: Unknown result type (might be due to invalid IL or missing references) //IL_36b5: Unknown result type (might be due to invalid IL or missing references) //IL_36ba: Unknown result type (might be due to invalid IL or missing references) //IL_36c0: Unknown result type (might be due to invalid IL or missing references) //IL_36ca: Unknown result type (might be due to invalid IL or missing references) //IL_36cf: Unknown result type (might be due to invalid IL or missing references) //IL_36da: Unknown result type (might be due to invalid IL or missing references) //IL_36e0: Unknown result type (might be due to invalid IL or missing references) //IL_36e5: Unknown result type (might be due to invalid IL or missing references) //IL_36eb: Unknown result type (might be due to invalid IL or missing references) //IL_36f0: Unknown result type (might be due to invalid IL or missing references) //IL_36f6: Unknown result type (might be due to invalid IL or missing references) //IL_3700: Unknown result type (might be due to invalid IL or missing references) //IL_3705: Unknown result type (might be due to invalid IL or missing references) //IL_370b: Unknown result type (might be due to invalid IL or missing references) //IL_3710: Unknown result type (might be due to invalid IL or missing references) //IL_3716: Unknown result type (might be due to invalid IL or missing references) //IL_3720: Unknown result type (might be due to invalid IL or missing references) //IL_3725: Unknown result type (might be due to invalid IL or missing references) //IL_372a: Unknown result type (might be due to invalid IL or missing references) //IL_373a: Unknown result type (might be due to invalid IL or missing references) //IL_3740: Unknown result type (might be due to invalid IL or missing references) //IL_3745: Unknown result type (might be due to invalid IL or missing references) //IL_374b: Unknown result type (might be due to invalid IL or missing references) //IL_3750: Unknown result type (might be due to invalid IL or missing references) //IL_3756: Unknown result type (might be due to invalid IL or missing references) //IL_3760: Unknown result type (might be due to invalid IL or missing references) //IL_3765: Unknown result type (might be due to invalid IL or missing references) //IL_376b: Unknown result type (might be due to invalid IL or missing references) //IL_3770: Unknown result type (might be due to invalid IL or missing references) //IL_3776: Unknown result type (might be due to invalid IL or missing references) //IL_3780: Unknown result type (might be due to invalid IL or missing references) //IL_3785: Unknown result type (might be due to invalid IL or missing references) //IL_3790: Unknown result type (might be due to invalid IL or missing references) //IL_3796: Unknown result type (might be due to invalid IL or missing references) //IL_379b: Unknown result type (might be due to invalid IL or missing references) //IL_37a1: Unknown result type (might be due to invalid IL or missing references) //IL_37a6: Unknown result type (might be due to invalid IL or missing references) //IL_37ac: Unknown result type (might be due to invalid IL or missing references) //IL_37b6: Unknown result type (might be due to invalid IL or missing references) //IL_37bb: Unknown result type (might be due to invalid IL or missing references) //IL_37c1: Unknown result type (might be due to invalid IL or missing references) //IL_37c6: Unknown result type (might be due to invalid IL or missing references) //IL_37cc: Unknown result type (might be due to invalid IL or missing references) //IL_37d6: Unknown result type (might be due to invalid IL or missing references) //IL_37db: Unknown result type (might be due to invalid IL or missing references) //IL_37e0: Unknown result type (might be due to invalid IL or missing references) //IL_37f0: Unknown result type (might be due to invalid IL or missing references) //IL_37f6: Unknown result type (might be due to invalid IL or missing references) //IL_37fb: Unknown result type (might be due to invalid IL or missing references) //IL_3801: Unknown result type (might be due to invalid IL or missing references) //IL_3806: Unknown result type (might be due to invalid IL or missing references) //IL_380c: Unknown result type (might be due to invalid IL or missing references) //IL_3816: Unknown result type (might be due to invalid IL or missing references) //IL_381b: Unknown result type (might be due to invalid IL or missing references) //IL_3821: Unknown result type (might be due to invalid IL or missing references) //IL_3826: Unknown result type (might be due to invalid IL or missing references) //IL_382c: Unknown result type (might be due to invalid IL or missing references) //IL_3836: Unknown result type (might be due to invalid IL or missing references) //IL_383b: Unknown result type (might be due to invalid IL or missing references) //IL_3846: Unknown result type (might be due to invalid IL or missing references) //IL_384c: Unknown result type (might be due to invalid IL or missing references) //IL_3851: Unknown result type (might be due to invalid IL or missing references) //IL_3857: Unknown result type (might be due to invalid IL or missing references) //IL_385c: Unknown result type (might be due to invalid IL or missing references) //IL_3862: Unknown result type (might be due to invalid IL or missing references) //IL_386c: Unknown result type (might be due to invalid IL or missing references) //IL_3871: Unknown result type (might be due to invalid IL or missing references) //IL_3877: Unknown result type (might be due to invalid IL or missing references) //IL_387c: Unknown result type (might be due to invalid IL or missing references) //IL_3882: Unknown result type (might be due to invalid IL or missing references) //IL_388c: Unknown result type (might be due to invalid IL or missing references) //IL_3891: Unknown result type (might be due to invalid IL or missing references) //IL_3896: Unknown result type (might be due to invalid IL or missing references) //IL_38a6: Unknown result type (might be due to invalid IL or missing references) //IL_38ac: Unknown result type (might be due to invalid IL or missing references) //IL_38b1: Unknown result type (might be due to invalid IL or missing references) //IL_38b7: Unknown result type (might be due to invalid IL or missing references) //IL_38bc: Unknown result type (might be due to invalid IL or missing references) //IL_38c2: Unknown result type (might be due to invalid IL or missing references) //IL_38cc: Unknown result type (might be due to invalid IL or missing references) //IL_38d1: Unknown result type (might be due to invalid IL or missing references) //IL_38d7: Unknown result type (might be due to invalid IL or missing references) //IL_38dc: Unknown result type (might be due to invalid IL or missing references) //IL_38e2: Unknown result type (might be due to invalid IL or missing references) //IL_38ec: Unknown result type (might be due to invalid IL or missing references) //IL_38f1: Unknown result type (might be due to invalid IL or missing references) //IL_38fc: Unknown result type (might be due to invalid IL or missing references) //IL_3902: Unknown result type (might be due to invalid IL or missing references) //IL_3907: Unknown result type (might be due to invalid IL or missing references) //IL_390d: Unknown result type (might be due to invalid IL or missing references) //IL_3912: Unknown result type (might be due to invalid IL or missing references) //IL_3918: Unknown result type (might be due to invalid IL or missing references) //IL_3922: Unknown result type (might be due to invalid IL or missing references) //IL_3927: Unknown result type (might be due to invalid IL or missing references) //IL_392d: Unknown result type (might be due to invalid IL or missing references) //IL_3932: Unknown result type (might be due to invalid IL or missing references) //IL_3938: Unknown result type (might be due to invalid IL or missing references) //IL_3942: Unknown result type (might be due to invalid IL or missing references) //IL_3947: Unknown result type (might be due to invalid IL or missing references) //IL_394c: Unknown result type (might be due to invalid IL or missing references) //IL_395c: Unknown result type (might be due to invalid IL or missing references) //IL_3962: Unknown result type (might be due to invalid IL or missing references) //IL_3967: Unknown result type (might be due to invalid IL or missing references) //IL_396d: Unknown result type (might be due to invalid IL or missing references) //IL_3972: Unknown result type (might be due to invalid IL or missing references) //IL_3978: Unknown result type (might be due to invalid IL or missing references) //IL_3982: Unknown result type (might be due to invalid IL or missing references) //IL_3987: Unknown result type (might be due to invalid IL or missing references) //IL_398d: Unknown result type (might be due to invalid IL or missing references) //IL_3992: Unknown result type (might be due to invalid IL or missing references) //IL_3998: Unknown result type (might be due to invalid IL or missing references) //IL_39a2: Unknown result type (might be due to invalid IL or missing references) //IL_39a7: Unknown result type (might be due to invalid IL or missing references) //IL_39b2: Unknown result type (might be due to invalid IL or missing references) //IL_39b8: Unknown result type (might be due to invalid IL or missing references) //IL_39bd: Unknown result type (might be due to invalid IL or missing references) //IL_39c3: Unknown result type (might be due to invalid IL or missing references) //IL_39c8: Unknown result type (might be due to invalid IL or missing references) //IL_39ce: Unknown result type (might be due to invalid IL or missing references) //IL_39d8: Unknown result type (might be due to invalid IL or missing references) //IL_39dd: Unknown result type (might be due to invalid IL or missing references) //IL_39e3: Unknown result type (might be due to invalid IL or missing references) //IL_39e8: Unknown result type (might be due to invalid IL or missing references) //IL_39ee: Unknown result type (might be due to invalid IL or missing references) //IL_39f8: Unknown result type (might be due to invalid IL or missing references) //IL_39fd: Unknown result type (might be due to invalid IL or missing references) //IL_3a02: Unknown result type (might be due to invalid IL or missing references) //IL_3a12: Unknown result type (might be due to invalid IL or missing references) //IL_3a18: Unknown result type (might be due to invalid IL or missing references) //IL_3a1d: Unknown result type (might be due to invalid IL or missing references) //IL_3a23: Unknown result type (might be due to invalid IL or missing references) //IL_3a28: Unknown result type (might be due to invalid IL or missing references) //IL_3a2e: Unknown result type (might be due to invalid IL or missing references) //IL_3a38: Unknown result type (might be due to invalid IL or missing references) //IL_3a3d: Unknown result type (might be due to invalid IL or missing references) //IL_3a43: Unknown result type (might be due to invalid IL or missing references) //IL_3a48: Unknown result type (might be due to invalid IL or missing references) //IL_3a53: Unknown result type (might be due to invalid IL or missing references) //IL_3a59: Unknown result type (might be due to invalid IL or missing references) //IL_3a5e: Unknown result type (might be due to invalid IL or missing references) //IL_3a64: Unknown result type (might be due to invalid IL or missing references) //IL_3a69: Unknown result type (might be due to invalid IL or missing references) //IL_3a6f: Unknown result type (might be due to invalid IL or missing references) //IL_3a79: Unknown result type (might be due to invalid IL or missing references) //IL_3a7e: Unknown result type (might be due to invalid IL or missing references) //IL_3a84: Unknown result type (might be due to invalid IL or missing references) //IL_3a89: Unknown result type (might be due to invalid IL or missing references) //IL_3a8e: Unknown result type (might be due to invalid IL or missing references) //IL_3a9e: Unknown result type (might be due to invalid IL or missing references) //IL_3aa4: Unknown result type (might be due to invalid IL or missing references) //IL_3aa9: Unknown result type (might be due to invalid IL or missing references) //IL_3aaf: Unknown result type (might be due to invalid IL or missing references) //IL_3ab4: Unknown result type (might be due to invalid IL or missing references) //IL_3aba: Unknown result type (might be due to invalid IL or missing references) //IL_3ac4: Unknown result type (might be due to invalid IL or missing references) //IL_3ac9: Unknown result type (might be due to invalid IL or missing references) //IL_3acf: Unknown result type (might be due to invalid IL or missing references) //IL_3ad4: Unknown result type (might be due to invalid IL or missing references) //IL_3ada: Unknown result type (might be due to invalid IL or missing references) //IL_3ae4: Unknown result type (might be due to invalid IL or missing references) //IL_3ae9: Unknown result type (might be due to invalid IL or missing references) //IL_3af4: Unknown result type (might be due to invalid IL or missing references) //IL_3afa: Unknown result type (might be due to invalid IL or missing references) //IL_3aff: Unknown result type (might be due to invalid IL or missing references) //IL_3b05: Unknown result type (might be due to invalid IL or missing references) //IL_3b0a: Unknown result type (might be due to invalid IL or missing references) //IL_3b10: Unknown result type (might be due to invalid IL or missing references) //IL_3b1a: Unknown result type (might be due to invalid IL or missing references) //IL_3b1f: Unknown result type (might be due to invalid IL or missing references) //IL_3b25: Unknown result type (might be due to invalid IL or missing references) //IL_3b2a: Unknown result type (might be due to invalid IL or missing references) //IL_3b30: Unknown result type (might be due to invalid IL or missing references) //IL_3b3a: Unknown result type (might be due to invalid IL or missing references) //IL_3b3f: Unknown result type (might be due to invalid IL or missing references) //IL_3b44: Unknown result type (might be due to invalid IL or missing references) //IL_3b54: Unknown result type (might be due to invalid IL or missing references) //IL_3b5a: Unknown result type (might be due to invalid IL or missing references) //IL_3b5f: Unknown result type (might be due to invalid IL or missing references) //IL_3b65: Unknown result type (might be due to invalid IL or missing references) //IL_3b6a: Unknown result type (might be due to invalid IL or missing references) //IL_3b70: Unknown result type (might be due to invalid IL or missing references) //IL_3b7a: Unknown result type (might be due to invalid IL or missing references) //IL_3b7f: Unknown result type (might be due to invalid IL or missing references) //IL_3b85: Unknown result type (might be due to invalid IL or missing references) //IL_3b8a: Unknown result type (might be due to invalid IL or missing references) //IL_3b90: Unknown result type (might be due to invalid IL or missing references) //IL_3b9a: Unknown result type (might be due to invalid IL or missing references) //IL_3b9f: Unknown result type (might be due to invalid IL or missing references) //IL_3baa: Unknown result type (might be due to invalid IL or missing references) //IL_3bb0: Unknown result type (might be due to invalid IL or missing references) //IL_3bb5: Unknown result type (might be due to invalid IL or missing references) //IL_3bbb: Unknown result type (might be due to invalid IL or missing references) //IL_3bc0: Unknown result type (might be due to invalid IL or missing references) //IL_3bc6: Unknown result type (might be due to invalid IL or missing references) //IL_3bd0: Unknown result type (might be due to invalid IL or missing references) //IL_3bd5: Unknown result type (might be due to invalid IL or missing references) //IL_3bdb: Unknown result type (might be due to invalid IL or missing references) //IL_3be0: Unknown result type (might be due to invalid IL or missing references) //IL_3be6: Unknown result type (might be due to invalid IL or missing references) //IL_3bf0: Unknown result type (might be due to invalid IL or missing references) //IL_3bf5: Unknown result type (might be due to invalid IL or missing references) //IL_3bfa: Unknown result type (might be due to invalid IL or missing references) //IL_3c0a: Unknown result type (might be due to invalid IL or missing references) //IL_3c10: Unknown result type (might be due to invalid IL or missing references) //IL_3c15: Unknown result type (might be due to invalid IL or missing references) //IL_3c1b: Unknown result type (might be due to invalid IL or missing references) //IL_3c20: Unknown result type (might be due to invalid IL or missing references) //IL_3c26: Unknown result type (might be due to invalid IL or missing references) //IL_3c30: Unknown result type (might be due to invalid IL or missing references) //IL_3c35: Unknown result type (might be due to invalid IL or missing references) //IL_3c3b: Unknown result type (might be due to invalid IL or missing references) //IL_3c40: Unknown result type (might be due to invalid IL or missing references) //IL_3c46: Unknown result type (might be due to invalid IL or missing references) //IL_3c50: Unknown result type (might be due to invalid IL or missing references) //IL_3c55: Unknown result type (might be due to invalid IL or missing references) //IL_3c60: Unknown result type (might be due to invalid IL or missing references) //IL_3c66: Unknown result type (might be due to invalid IL or missing references) //IL_3c6b: Unknown result type (might be due to invalid IL or missing references) //IL_3c71: Unknown result type (might be due to invalid IL or missing references) //IL_3c76: Unknown result type (might be due to invalid IL or missing references) //IL_3c7c: Unknown result type (might be due to invalid IL or missing references) //IL_3c86: Unknown result type (might be due to invalid IL or missing references) //IL_3c8b: Unknown result type (might be due to invalid IL or missing references) //IL_3c91: Unknown result type (might be due to invalid IL or missing references) //IL_3c96: Unknown result type (might be due to invalid IL or missing references) //IL_3c9c: Unknown result type (might be due to invalid IL or missing references) //IL_3ca6: Unknown result type (might be due to invalid IL or missing references) //IL_3cab: Unknown result type (might be due to invalid IL or missing references) //IL_3cb0: Unknown result type (might be due to invalid IL or missing references) //IL_3cc0: Unknown result type (might be due to invalid IL or missing references) //IL_3cc6: Unknown result type (might be due to invalid IL or missing references) //IL_3ccb: Unknown result type (might be due to invalid IL or missing references) //IL_3cd1: Unknown result type (might be due to invalid IL or missing references) //IL_3cd6: Unknown result type (might be due to invalid IL or missing references) //IL_3cdc: Unknown result type (might be due to invalid IL or missing references) //IL_3ce6: Unknown result type (might be due to invalid IL or missing references) //IL_3ceb: Unknown result type (might be due to invalid IL or missing references) //IL_3cf1: Unknown result type (might be due to invalid IL or missing references) //IL_3cf6: Unknown result type (might be due to invalid IL or missing references) //IL_3cfc: Unknown result type (might be due to invalid IL or missing references) //IL_3d06: Unknown result type (might be due to invalid IL or missing references) //IL_3d0b: Unknown result type (might be due to invalid IL or missing references) //IL_3d16: Unknown result type (might be due to invalid IL or missing references) //IL_3d1c: Unknown result type (might be due to invalid IL or missing references) //IL_3d21: Unknown result type (might be due to invalid IL or missing references) //IL_3d27: Unknown result type (might be due to invalid IL or missing references) //IL_3d2c: Unknown result type (might be due to invalid IL or missing references) //IL_3d32: Unknown result type (might be due to invalid IL or missing references) //IL_3d3c: Unknown result type (might be due to invalid IL or missing references) //IL_3d41: Unknown result type (might be due to invalid IL or missing references) //IL_3d47: Unknown result type (might be due to invalid IL or missing references) //IL_3d4c: Unknown result type (might be due to invalid IL or missing references) //IL_3d52: Unknown result type (might be due to invalid IL or missing references) //IL_3d5c: Unknown result type (might be due to invalid IL or missing references) //IL_3d61: Unknown result type (might be due to invalid IL or missing references) //IL_3d66: Unknown result type (might be due to invalid IL or missing references) //IL_3d76: Unknown result type (might be due to invalid IL or missing references) //IL_3d7c: Unknown result type (might be due to invalid IL or missing references) //IL_3d81: Unknown result type (might be due to invalid IL or missing references) //IL_3d87: Unknown result type (might be due to invalid IL or missing references) //IL_3d8c: Unknown result type (might be due to invalid IL or missing references) //IL_3d92: Unknown result type (might be due to invalid IL or missing references) //IL_3d9c: Unknown result type (might be due to invalid IL or missing references) //IL_3da1: Unknown result type (might be due to invalid IL or missing references) //IL_3da7: Unknown result type (might be due to invalid IL or missing references) //IL_3dac: Unknown result type (might be due to invalid IL or missing references) //IL_3db2: Unknown result type (might be due to invalid IL or missing references) //IL_3dbc: Unknown result type (might be due to invalid IL or missing references) //IL_3dc1: Unknown result type (might be due to invalid IL or missing references) //IL_3dcc: Unknown result type (might be due to invalid IL or missing references) //IL_3dd2: Unknown result type (might be due to invalid IL or missing references) //IL_3dd7: Unknown result type (might be due to invalid IL or missing references) //IL_3ddd: Unknown result type (might be due to invalid IL or missing references) //IL_3de2: Unknown result type (might be due to invalid IL or missing references) //IL_3de8: Unknown result type (might be due to invalid IL or missing references) //IL_3df2: Unknown result type (might be due to invalid IL or missing references) //IL_3df7: Unknown result type (might be due to invalid IL or missing references) //IL_3dfd: Unknown result type (might be due to invalid IL or missing references) //IL_3e02: Unknown result type (might be due to invalid IL or missing references) //IL_3e08: Unknown result type (might be due to invalid IL or missing references) //IL_3e12: Unknown result type (might be due to invalid IL or missing references) //IL_3e17: Unknown result type (might be due to invalid IL or missing references) //IL_3e1c: Unknown result type (might be due to invalid IL or missing references) //IL_3e2c: Unknown result type (might be due to invalid IL or missing references) //IL_3e32: Unknown result type (might be due to invalid IL or missing references) //IL_3e37: Unknown result type (might be due to invalid IL or missing references) //IL_3e3d: Unknown result type (might be due to invalid IL or missing references) //IL_3e42: Unknown result type (might be due to invalid IL or missing references) //IL_3e48: Unknown result type (might be due to invalid IL or missing references) //IL_3e52: Unknown result type (might be due to invalid IL or missing references) //IL_3e57: Unknown result type (might be due to invalid IL or missing references) //IL_3e5d: Unknown result type (might be due to invalid IL or missing references) //IL_3e62: Unknown result type (might be due to invalid IL or missing references) //IL_3e68: Unknown result type (might be due to invalid IL or missing references) //IL_3e72: Unknown result type (might be due to invalid IL or missing references) //IL_3e77: Unknown result type (might be due to invalid IL or missing references) //IL_3e82: Unknown result type (might be due to invalid IL or missing references) //IL_3e88: Unknown result type (might be due to invalid IL or missing references) //IL_3e8d: Unknown result type (might be due to invalid IL or missing references) //IL_3e93: Unknown result type (might be due to invalid IL or missing references) //IL_3e98: Unknown result type (might be due to invalid IL or missing references) //IL_3e9e: Unknown result type (might be due to invalid IL or missing references) //IL_3ea8: Unknown result type (might be due to invalid IL or missing references) //IL_3ead: Unknown result type (might be due to invalid IL or missing references) //IL_3eb3: Unknown result type (might be due to invalid IL or missing references) //IL_3eb8: Unknown result type (might be due to invalid IL or missing references) //IL_3ebe: Unknown result type (might be due to invalid IL or missing references) //IL_3ec8: Unknown result type (might be due to invalid IL or missing references) //IL_3ecd: Unknown result type (might be due to invalid IL or missing references) //IL_3ed2: Unknown result type (might be due to invalid IL or missing references) //IL_3ee2: Unknown result type (might be due to invalid IL or missing references) //IL_3ee8: Unknown result type (might be due to invalid IL or missing references) //IL_3eed: Unknown result type (might be due to invalid IL or missing references) //IL_3ef3: Unknown result type (might be due to invalid IL or missing references) //IL_3ef8: Unknown result type (might be due to invalid IL or missing references) //IL_3efe: Unknown result type (might be due to invalid IL or missing references) //IL_3f08: Unknown result type (might be due to invalid IL or missing references) //IL_3f0d: Unknown result type (might be due to invalid IL or missing references) //IL_3f13: Unknown result type (might be due to invalid IL or missing references) //IL_3f18: Unknown result type (might be due to invalid IL or missing references) //IL_3f1e: Unknown result type (might be due to invalid IL or missing references) //IL_3f28: Unknown result type (might be due to invalid IL or missing references) //IL_3f2d: Unknown result type (might be due to invalid IL or missing references) //IL_3f38: Unknown result type (might be due to invalid IL or missing references) //IL_3f3e: Unknown result type (might be due to invalid IL or missing references) //IL_3f43: Unknown result type (might be due to invalid IL or missing references) //IL_3f49: Unknown result type (might be due to invalid IL or missing references) //IL_3f4e: Unknown result type (might be due to invalid IL or missing references) //IL_3f54: Unknown result type (might be due to invalid IL or missing references) //IL_3f5e: Unknown result type (might be due to invalid IL or missing references) //IL_3f63: Unknown result type (might be due to invalid IL or missing references) //IL_3f69: Unknown result type (might be due to invalid IL or missing references) //IL_3f6e: Unknown result type (might be due to invalid IL or missing references) //IL_3f74: Unknown result type (might be due to invalid IL or missing references) //IL_3f7e: Unknown result type (might be due to invalid IL or missing references) //IL_3f83: Unknown result type (might be due to invalid IL or missing references) //IL_3f88: Unknown result type (might be due to invalid IL or missing references) //IL_3f98: Unknown result type (might be due to invalid IL or missing references) //IL_3f9e: Unknown result type (might be due to invalid IL or missing references) //IL_3fa3: Unknown result type (might be due to invalid IL or missing references) //IL_3fa9: Unknown result type (might be due to invalid IL or missing references) //IL_3fae: Unknown result type (might be due to invalid IL or missing references) //IL_3fb4: Unknown result type (might be due to invalid IL or missing references) //IL_3fb9: Unknown result type (might be due to invalid IL or missing references) //IL_3fc4: Unknown result type (might be due to invalid IL or missing references) //IL_3fca: Unknown result type (might be due to invalid IL or missing references) //IL_3fcf: Unknown result type (might be due to invalid IL or missing references) //IL_3fd5: Unknown result type (might be due to invalid IL or missing references) //IL_3fda: Unknown result type (might be due to invalid IL or missing references) //IL_3fe0: Unknown result type (might be due to invalid IL or missing references) //IL_3fea: Unknown result type (might be due to invalid IL or missing references) //IL_3fef: Unknown result type (might be due to invalid IL or missing references) //IL_3ff5: Unknown result type (might be due to invalid IL or missing references) //IL_3ffa: Unknown result type (might be due to invalid IL or missing references) //IL_3fff: Unknown result type (might be due to invalid IL or missing references) //IL_400f: Unknown result type (might be due to invalid IL or missing references) //IL_4015: Unknown result type (might be due to invalid IL or missing references) //IL_401a: Unknown result type (might be due to invalid IL or missing references) //IL_4020: Unknown result type (might be due to invalid IL or missing references) //IL_4025: Unknown result type (might be due to invalid IL or missing references) //IL_402b: Unknown result type (might be due to invalid IL or missing references) //IL_4030: Unknown result type (might be due to invalid IL or missing references) //IL_4036: Unknown result type (might be due to invalid IL or missing references) //IL_4040: Unknown result type (might be due to invalid IL or missing references) //IL_4045: Unknown result type (might be due to invalid IL or missing references) //IL_4050: Unknown result type (might be due to invalid IL or missing references) //IL_4056: Unknown result type (might be due to invalid IL or missing references) //IL_405b: Unknown result type (might be due to invalid IL or missing references) //IL_4061: Unknown result type (might be due to invalid IL or missing references) //IL_4066: Unknown result type (might be due to invalid IL or missing references) //IL_406c: Unknown result type (might be due to invalid IL or missing references) //IL_4076: Unknown result type (might be due to invalid IL or missing references) //IL_407b: Unknown result type (might be due to invalid IL or missing references) //IL_4081: Unknown result type (might be due to invalid IL or missing references) //IL_4086: Unknown result type (might be due to invalid IL or missing references) //IL_408c: Unknown result type (might be due to invalid IL or missing references) //IL_4096: Unknown result type (might be due to invalid IL or missing references) //IL_409b: Unknown result type (might be due to invalid IL or missing references) //IL_40a0: Unknown result type (might be due to invalid IL or missing references) //IL_40b0: Unknown result type (might be due to invalid IL or missing references) //IL_40b6: Unknown result type (might be due to invalid IL or missing references) //IL_40bb: Unknown result type (might be due to invalid IL or missing references) //IL_40c1: Unknown result type (might be due to invalid IL or missing references) //IL_40c6: Unknown result type (might be due to invalid IL or missing references) //IL_40cc: Unknown result type (might be due to invalid IL or missing references) //IL_40d1: Unknown result type (might be due to invalid IL or missing references) //IL_40d7: Unknown result type (might be due to invalid IL or missing references) //IL_40e1: Unknown result type (might be due to invalid IL or missing references) //IL_40e6: Unknown result type (might be due to invalid IL or missing references) //IL_40f1: Unknown result type (might be due to invalid IL or missing references) //IL_40f7: Unknown result type (might be due to invalid IL or missing references) //IL_40fc: Unknown result type (might be due to invalid IL or missing references) //IL_4102: Unknown result type (might be due to invalid IL or missing references) //IL_4107: Unknown result type (might be due to invalid IL or missing references) //IL_410d: Unknown result type (might be due to invalid IL or missing references) //IL_4117: Unknown result type (might be due to invalid IL or missing references) //IL_411c: Unknown result type (might be due to invalid IL or missing references) //IL_4122: Unknown result type (might be due to invalid IL or missing references) //IL_4127: Unknown result type (might be due to invalid IL or missing references) //IL_412d: Unknown result type (might be due to invalid IL or missing references) //IL_4137: Unknown result type (might be due to invalid IL or missing references) //IL_413c: Unknown result type (might be due to invalid IL or missing references) //IL_4141: Unknown result type (might be due to invalid IL or missing references) //IL_4151: Unknown result type (might be due to invalid IL or missing references) //IL_4157: Unknown result type (might be due to invalid IL or missing references) //IL_415c: Unknown result type (might be due to invalid IL or missing references) //IL_4162: Unknown result type (might be due to invalid IL or missing references) //IL_4167: Unknown result type (might be due to invalid IL or missing references) //IL_416d: Unknown result type (might be due to invalid IL or missing references) //IL_4172: Unknown result type (might be due to invalid IL or missing references) //IL_4178: Unknown result type (might be due to invalid IL or missing references) //IL_4182: Unknown result type (might be due to invalid IL or missing references) //IL_4187: Unknown result type (might be due to invalid IL or missing references) //IL_4192: Unknown result type (might be due to invalid IL or missing references) //IL_4198: Unknown result type (might be due to invalid IL or missing references) //IL_419d: Unknown result type (might be due to invalid IL or missing references) //IL_41a3: Unknown result type (might be due to invalid IL or missing references) //IL_41a8: Unknown result type (might be due to invalid IL or missing references) //IL_41ae: Unknown result type (might be due to invalid IL or missing references) //IL_41b8: Unknown result type (might be due to invalid IL or missing references) //IL_41bd: Unknown result type (might be due to invalid IL or missing references) //IL_41c3: Unknown result type (might be due to invalid IL or missing references) //IL_41c8: Unknown result type (might be due to invalid IL or missing references) //IL_41ce: Unknown result type (might be due to invalid IL or missing references) //IL_41d8: Unknown result type (might be due to invalid IL or missing references) //IL_41dd: Unknown result type (might be due to invalid IL or missing references) //IL_41e2: Unknown result type (might be due to invalid IL or missing references) //IL_41f2: Unknown result type (might be due to invalid IL or missing references) //IL_41f8: Unknown result type (might be due to invalid IL or missing references) //IL_41fd: Unknown result type (might be due to invalid IL or missing references) //IL_4203: Unknown result type (might be due to invalid IL or missing references) //IL_4208: Unknown result type (might be due to invalid IL or missing references) //IL_420e: Unknown result type (might be due to invalid IL or missing references) //IL_4213: Unknown result type (might be due to invalid IL or missing references) //IL_4219: Unknown result type (might be due to invalid IL or missing references) //IL_4223: Unknown result type (might be due to invalid IL or missing references) //IL_4228: Unknown result type (might be due to invalid IL or missing references) //IL_4233: Unknown result type (might be due to invalid IL or missing references) //IL_4239: Unknown result type (might be due to invalid IL or missing references) //IL_423e: Unknown result type (might be due to invalid IL or missing references) //IL_4244: Unknown result type (might be due to invalid IL or missing references) //IL_4249: Unknown result type (might be due to invalid IL or missing references) //IL_424f: Unknown result type (might be due to invalid IL or missing references) //IL_4259: Unknown result type (might be due to invalid IL or missing references) //IL_425e: Unknown result type (might be due to invalid IL or missing references) //IL_4264: Unknown result type (might be due to invalid IL or missing references) //IL_4269: Unknown result type (might be due to invalid IL or missing references) //IL_426f: Unknown result type (might be due to invalid IL or missing references) //IL_4279: Unknown result type (might be due to invalid IL or missing references) //IL_427e: Unknown result type (might be due to invalid IL or missing references) //IL_4283: Unknown result type (might be due to invalid IL or missing references) //IL_4293: Unknown result type (might be due to invalid IL or missing references) //IL_4299: Unknown result type (might be due to invalid IL or missing references) //IL_429e: Unknown result type (might be due to invalid IL or missing references) //IL_42a4: Unknown result type (might be due to invalid IL or missing references) //IL_42a9: Unknown result type (might be due to invalid IL or missing references) //IL_42af: Unknown result type (might be due to invalid IL or missing references) //IL_42b4: Unknown result type (might be due to invalid IL or missing references) //IL_42ba: Unknown result type (might be due to invalid IL or missing references) //IL_42c4: Unknown result type (might be due to invalid IL or missing references) //IL_42c9: Unknown result type (might be due to invalid IL or missing references) //IL_42d4: Unknown result type (might be due to invalid IL or missing references) //IL_42da: Unknown result type (might be due to invalid IL or missing references) //IL_42df: Unknown result type (might be due to invalid IL or missing references) //IL_42e5: Unknown result type (might be due to invalid IL or missing references) //IL_42ea: Unknown result type (might be due to invalid IL or missing references) //IL_42f0: Unknown result type (might be due to invalid IL or missing references) //IL_42fa: Unknown result type (might be due to invalid IL or missing references) //IL_42ff: Unknown result type (might be due to invalid IL or missing references) //IL_4305: Unknown result type (might be due to invalid IL or missing references) //IL_430a: Unknown result type (might be due to invalid IL or missing references) //IL_4310: Unknown result type (might be due to invalid IL or missing references) //IL_431a: Unknown result type (might be due to invalid IL or missing references) //IL_431f: Unknown result type (might be due to invalid IL or missing references) //IL_4324: Unknown result type (might be due to invalid IL or missing references) //IL_4334: Unknown result type (might be due to invalid IL or missing references) //IL_433a: Unknown result type (might be due to invalid IL or missing references) //IL_433f: Unknown result type (might be due to invalid IL or missing references) //IL_4345: Unknown result type (might be due to invalid IL or missing references) //IL_434a: Unknown result type (might be due to invalid IL or missing references) //IL_4350: Unknown result type (might be due to invalid IL or missing references) //IL_4355: Unknown result type (might be due to invalid IL or missing references) //IL_435b: Unknown result type (might be due to invalid IL or missing references) //IL_4365: Unknown result type (might be due to invalid IL or missing references) //IL_436a: Unknown result type (might be due to invalid IL or missing references) //IL_4375: Unknown result type (might be due to invalid IL or missing references) //IL_437b: Unknown result type (might be due to invalid IL or missing references) //IL_4380: Unknown result type (might be due to invalid IL or missing references) //IL_4386: Unknown result type (might be due to invalid IL or missing references) //IL_438b: Unknown result type (might be due to invalid IL or missing references) //IL_4391: Unknown result type (might be due to invalid IL or missing references) //IL_439b: Unknown result type (might be due to invalid IL or missing references) //IL_43a0: Unknown result type (might be due to invalid IL or missing references) //IL_43a6: Unknown result type (might be due to invalid IL or missing references) //IL_43ab: Unknown result type (might be due to invalid IL or missing references) //IL_43b1: Unknown result type (might be due to invalid IL or missing references) //IL_43bb: Unknown result type (might be due to invalid IL or missing references) //IL_43c0: Unknown result type (might be due to invalid IL or missing references) //IL_43c5: Unknown result type (might be due to invalid IL or missing references) //IL_43d5: Unknown result type (might be due to invalid IL or missing references) //IL_43db: Unknown result type (might be due to invalid IL or missing references) //IL_43e0: Unknown result type (might be due to invalid IL or missing references) //IL_43e6: Unknown result type (might be due to invalid IL or missing references) //IL_43eb: Unknown result type (might be due to invalid IL or missing references) //IL_43f1: Unknown result type (might be due to invalid IL or missing references) //IL_43f6: Unknown result type (might be due to invalid IL or missing references) //IL_43fc: Unknown result type (might be due to invalid IL or missing references) //IL_4406: Unknown result type (might be due to invalid IL or missing references) //IL_440b: Unknown result type (might be due to invalid IL or missing references) //IL_4416: Unknown result type (might be due to invalid IL or missing references) //IL_441c: Unknown result type (might be due to invalid IL or missing references) //IL_4421: Unknown result type (might be due to invalid IL or missing references) //IL_4427: Unknown result type (might be due to invalid IL or missing references) //IL_442c: Unknown result type (might be due to invalid IL or missing references) //IL_4432: Unknown result type (might be due to invalid IL or missing references) //IL_443c: Unknown result type (might be due to invalid IL or missing references) //IL_4441: Unknown result type (might be due to invalid IL or missing references) //IL_4447: Unknown result type (might be due to invalid IL or missing references) //IL_444c: Unknown result type (might be due to invalid IL or missing references) //IL_4452: Unknown result type (might be due to invalid IL or missing references) //IL_445c: Unknown result type (might be due to invalid IL or missing references) //IL_4461: Unknown result type (might be due to invalid IL or missing references) //IL_4466: Unknown result type (might be due to invalid IL or missing references) //IL_4476: Unknown result type (might be due to invalid IL or missing references) //IL_447c: Unknown result type (might be due to invalid IL or missing references) //IL_4481: Unknown result type (might be due to invalid IL or missing references) //IL_4487: Unknown result type (might be due to invalid IL or missing references) //IL_448c: Unknown result type (might be due to invalid IL or missing references) //IL_4492: Unknown result type (might be due to invalid IL or missing references) //IL_449c: Unknown result type (might be due to invalid IL or missing references) //IL_44a1: Unknown result type (might be due to invalid IL or missing references) //IL_44a7: Unknown result type (might be due to invalid IL or missing references) //IL_44ac: Unknown result type (might be due to invalid IL or missing references) //IL_44b7: Unknown result type (might be due to invalid IL or missing references) //IL_44bd: Unknown result type (might be due to invalid IL or missing references) //IL_44c2: Unknown result type (might be due to invalid IL or missing references) //IL_44c8: Unknown result type (might be due to invalid IL or missing references) //IL_44cd: Unknown result type (might be due to invalid IL or missing references) //IL_44d3: Unknown result type (might be due to invalid IL or missing references) //IL_44d8: Unknown result type (might be due to invalid IL or missing references) //IL_44dd: Unknown result type (might be due to invalid IL or missing references) //IL_44ed: Unknown result type (might be due to invalid IL or missing references) //IL_44f3: Unknown result type (might be due to invalid IL or missing references) //IL_44f8: Unknown result type (might be due to invalid IL or missing references) //IL_44fe: Unknown result type (might be due to invalid IL or missing references) //IL_4503: Unknown result type (might be due to invalid IL or missing references) //IL_4509: Unknown result type (might be due to invalid IL or missing references) //IL_4513: Unknown result type (might be due to invalid IL or missing references) //IL_4518: Unknown result type (might be due to invalid IL or missing references) //IL_451e: Unknown result type (might be due to invalid IL or missing references) //IL_4523: Unknown result type (might be due to invalid IL or missing references) //IL_4529: Unknown result type (might be due to invalid IL or missing references) //IL_4533: Unknown result type (might be due to invalid IL or missing references) //IL_4538: Unknown result type (might be due to invalid IL or missing references) //IL_4543: Unknown result type (might be due to invalid IL or missing references) //IL_4549: Unknown result type (might be due to invalid IL or missing references) //IL_454e: Unknown result type (might be due to invalid IL or missing references) //IL_4554: Unknown result type (might be due to invalid IL or missing references) //IL_4559: Unknown result type (might be due to invalid IL or missing references) //IL_455f: Unknown result type (might be due to invalid IL or missing references) //IL_4564: Unknown result type (might be due to invalid IL or missing references) //IL_456a: Unknown result type (might be due to invalid IL or missing references) //IL_4574: Unknown result type (might be due to invalid IL or missing references) //IL_4579: Unknown result type (might be due to invalid IL or missing references) //IL_457e: Unknown result type (might be due to invalid IL or missing references) //IL_458e: Unknown result type (might be due to invalid IL or missing references) //IL_4594: Unknown result type (might be due to invalid IL or missing references) //IL_4599: Unknown result type (might be due to invalid IL or missing references) //IL_459f: Unknown result type (might be due to invalid IL or missing references) //IL_45a4: Unknown result type (might be due to invalid IL or missing references) //IL_45aa: Unknown result type (might be due to invalid IL or missing references) //IL_45b4: Unknown result type (might be due to invalid IL or missing references) //IL_45b9: Unknown result type (might be due to invalid IL or missing references) //IL_45bf: Unknown result type (might be due to invalid IL or missing references) //IL_45c4: Unknown result type (might be due to invalid IL or missing references) //IL_45ca: Unknown result type (might be due to invalid IL or missing references) //IL_45d4: Unknown result type (might be due to invalid IL or missing references) //IL_45d9: Unknown result type (might be due to invalid IL or missing references) //IL_45e4: Unknown result type (might be due to invalid IL or missing references) //IL_45ea: Unknown result type (might be due to invalid IL or missing references) //IL_45ef: Unknown result type (might be due to invalid IL or missing references) //IL_45f5: Unknown result type (might be due to invalid IL or missing references) //IL_45fa: Unknown result type (might be due to invalid IL or missing references) //IL_4600: Unknown result type (might be due to invalid IL or missing references) //IL_4605: Unknown result type (might be due to invalid IL or missing references) //IL_460b: Unknown result type (might be due to invalid IL or missing references) //IL_4615: Unknown result type (might be due to invalid IL or missing references) //IL_461a: Unknown result type (might be due to invalid IL or missing references) //IL_461f: Unknown result type (might be due to invalid IL or missing references) //IL_462f: Unknown result type (might be due to invalid IL or missing references) //IL_4635: Unknown result type (might be due to invalid IL or missing references) //IL_463a: Unknown result type (might be due to invalid IL or missing references) //IL_4640: Unknown result type (might be due to invalid IL or missing references) //IL_4645: Unknown result type (might be due to invalid IL or missing references) //IL_464b: Unknown result type (might be due to invalid IL or missing references) //IL_4655: Unknown result type (might be due to invalid IL or missing references) //IL_465a: Unknown result type (might be due to invalid IL or missing references) //IL_4660: Unknown result type (might be due to invalid IL or missing references) //IL_4665: Unknown result type (might be due to invalid IL or missing references) //IL_466b: Unknown result type (might be due to invalid IL or missing references) //IL_4675: Unknown result type (might be due to invalid IL or missing references) //IL_467a: Unknown result type (might be due to invalid IL or missing references) //IL_4685: Unknown result type (might be due to invalid IL or missing references) //IL_468b: Unknown result type (might be due to invalid IL or missing references) //IL_4690: Unknown result type (might be due to invalid IL or missing references) //IL_4696: Unknown result type (might be due to invalid IL or missing references) //IL_469b: Unknown result type (might be due to invalid IL or missing references) //IL_46a1: Unknown result type (might be due to invalid IL or missing references) //IL_46a6: Unknown result type (might be due to invalid IL or missing references) //IL_46ac: Unknown result type (might be due to invalid IL or missing references) //IL_46b6: Unknown result type (might be due to invalid IL or missing references) //IL_46bb: Unknown result type (might be due to invalid IL or missing references) //IL_46c0: Unknown result type (might be due to invalid IL or missing references) //IL_46d0: Unknown result type (might be due to invalid IL or missing references) //IL_46d6: Unknown result type (might be due to invalid IL or missing references) //IL_46db: Unknown result type (might be due to invalid IL or missing references) //IL_46e1: Unknown result type (might be due to invalid IL or missing references) //IL_46e6: Unknown result type (might be due to invalid IL or missing references) //IL_46ec: Unknown result type (might be due to invalid IL or missing references) //IL_46f6: Unknown result type (might be due to invalid IL or missing references) //IL_46fb: Unknown result type (might be due to invalid IL or missing references) //IL_4701: Unknown result type (might be due to invalid IL or missing references) //IL_4706: Unknown result type (might be due to invalid IL or missing references) //IL_470c: Unknown result type (might be due to invalid IL or missing references) //IL_4716: Unknown result type (might be due to invalid IL or missing references) //IL_471b: Unknown result type (might be due to invalid IL or missing references) //IL_4726: Unknown result type (might be due to invalid IL or missing references) //IL_472c: Unknown result type (might be due to invalid IL or missing references) //IL_4731: Unknown result type (might be due to invalid IL or missing references) //IL_4737: Unknown result type (might be due to invalid IL or missing references) //IL_473c: Unknown result type (might be due to invalid IL or missing references) //IL_4742: Unknown result type (might be due to invalid IL or missing references) //IL_4747: Unknown result type (might be due to invalid IL or missing references) //IL_474d: Unknown result type (might be due to invalid IL or missing references) //IL_4757: Unknown result type (might be due to invalid IL or missing references) //IL_475c: Unknown result type (might be due to invalid IL or missing references) //IL_4761: Unknown result type (might be due to invalid IL or missing references) //IL_4771: Unknown result type (might be due to invalid IL or missing references) //IL_4777: Unknown result type (might be due to invalid IL or missing references) //IL_477c: Unknown result type (might be due to invalid IL or missing references) //IL_4782: Unknown result type (might be due to invalid IL or missing references) //IL_4787: Unknown result type (might be due to invalid IL or missing references) //IL_478d: Unknown result type (might be due to invalid IL or missing references) //IL_4797: Unknown result type (might be due to invalid IL or missing references) //IL_479c: Unknown result type (might be due to invalid IL or missing references) //IL_47a2: Unknown result type (might be due to invalid IL or missing references) //IL_47a7: Unknown result type (might be due to invalid IL or missing references) //IL_47ad: Unknown result type (might be due to invalid IL or missing references) //IL_47b7: Unknown result type (might be due to invalid IL or missing references) //IL_47bc: Unknown result type (might be due to invalid IL or missing references) //IL_47c7: Unknown result type (might be due to invalid IL or missing references) //IL_47cd: Unknown result type (might be due to invalid IL or missing references) //IL_47d2: Unknown result type (might be due to invalid IL or missing references) //IL_47d8: Unknown result type (might be due to invalid IL or missing references) //IL_47dd: Unknown result type (might be due to invalid IL or missing references) //IL_47e3: Unknown result type (might be due to invalid IL or missing references) //IL_47e8: Unknown result type (might be due to invalid IL or missing references) //IL_47ee: Unknown result type (might be due to invalid IL or missing references) //IL_47f8: Unknown result type (might be due to invalid IL or missing references) //IL_47fd: Unknown result type (might be due to invalid IL or missing references) //IL_4802: Unknown result type (might be due to invalid IL or missing references) //IL_4812: Unknown result type (might be due to invalid IL or missing references) //IL_4818: Unknown result type (might be due to invalid IL or missing references) //IL_481d: Unknown result type (might be due to invalid IL or missing references) //IL_4823: Unknown result type (might be due to invalid IL or missing references) //IL_4828: Unknown result type (might be due to invalid IL or missing references) //IL_482e: Unknown result type (might be due to invalid IL or missing references) //IL_4838: Unknown result type (might be due to invalid IL or missing references) //IL_483d: Unknown result type (might be due to invalid IL or missing references) //IL_4843: Unknown result type (might be due to invalid IL or missing references) //IL_4848: Unknown result type (might be due to invalid IL or missing references) //IL_484e: Unknown result type (might be due to invalid IL or missing references) //IL_4858: Unknown result type (might be due to invalid IL or missing references) //IL_485d: Unknown result type (might be due to invalid IL or missing references) //IL_4868: Unknown result type (might be due to invalid IL or missing references) //IL_486e: Unknown result type (might be due to invalid IL or missing references) //IL_4873: Unknown result type (might be due to invalid IL or missing references) //IL_4879: Unknown result type (might be due to invalid IL or missing references) //IL_487e: Unknown result type (might be due to invalid IL or missing references) //IL_4884: Unknown result type (might be due to invalid IL or missing references) //IL_4889: Unknown result type (might be due to invalid IL or missing references) //IL_488f: Unknown result type (might be due to invalid IL or missing references) //IL_4899: Unknown result type (might be due to invalid IL or missing references) //IL_489e: Unknown result type (might be due to invalid IL or missing references) //IL_48a3: Unknown result type (might be due to invalid IL or missing references) //IL_48b3: Unknown result type (might be due to invalid IL or missing references) //IL_48b9: Unknown result type (might be due to invalid IL or missing references) //IL_48be: Unknown result type (might be due to invalid IL or missing references) //IL_48c4: Unknown result type (might be due to invalid IL or missing references) //IL_48c9: Unknown result type (might be due to invalid IL or missing references) //IL_48cf: Unknown result type (might be due to invalid IL or missing references) //IL_48d9: Unknown result type (might be due to invalid IL or missing references) //IL_48de: Unknown result type (might be due to invalid IL or missing references) //IL_48e4: Unknown result type (might be due to invalid IL or missing references) //IL_48e9: Unknown result type (might be due to invalid IL or missing references) //IL_48ef: Unknown result type (might be due to invalid IL or missing references) //IL_48f9: Unknown result type (might be due to invalid IL or missing references) //IL_48fe: Unknown result type (might be due to invalid IL or missing references) //IL_4909: Unknown result type (might be due to invalid IL or missing references) //IL_490f: Unknown result type (might be due to invalid IL or missing references) //IL_4914: Unknown result type (might be due to invalid IL or missing references) //IL_491a: Unknown result type (might be due to invalid IL or missing references) //IL_491f: Unknown result type (might be due to invalid IL or missing references) //IL_4925: Unknown result type (might be due to invalid IL or missing references) //IL_492a: Unknown result type (might be due to invalid IL or missing references) //IL_4930: Unknown result type (might be due to invalid IL or missing references) //IL_493a: Unknown result type (might be due to invalid IL or missing references) //IL_493f: Unknown result type (might be due to invalid IL or missing references) //IL_4944: Unknown result type (might be due to invalid IL or missing references) //IL_4954: Unknown result type (might be due to invalid IL or missing references) //IL_495a: Unknown result type (might be due to invalid IL or missing references) //IL_495f: Unknown result type (might be due to invalid IL or missing references) //IL_4965: Unknown result type (might be due to invalid IL or missing references) //IL_496a: Unknown result type (might be due to invalid IL or missing references) //IL_4970: Unknown result type (might be due to invalid IL or missing references) //IL_497a: Unknown result type (might be due to invalid IL or missing references) //IL_497f: Unknown result type (might be due to invalid IL or missing references) //IL_4985: Unknown result type (might be due to invalid IL or missing references) //IL_498a: Unknown result type (might be due to invalid IL or missing references) //IL_4995: Unknown result type (might be due to invalid IL or missing references) //IL_499b: Unknown result type (might be due to invalid IL or missing references) //IL_49a0: Unknown result type (might be due to invalid IL or missing references) //IL_49a6: Unknown result type (might be due to invalid IL or missing references) //IL_49ab: Unknown result type (might be due to invalid IL or missing references) //IL_49b1: Unknown result type (might be due to invalid IL or missing references) //IL_49bb: Unknown result type (might be due to invalid IL or missing references) //IL_49c0: Unknown result type (might be due to invalid IL or missing references) //IL_49c6: Unknown result type (might be due to invalid IL or missing references) //IL_49cb: Unknown result type (might be due to invalid IL or missing references) //IL_49d0: Unknown result type (might be due to invalid IL or missing references) //IL_49e0: Unknown result type (might be due to invalid IL or missing references) //IL_49e6: Unknown result type (might be due to invalid IL or missing references) //IL_49eb: Unknown result type (might be due to invalid IL or missing references) //IL_49f1: Unknown result type (might be due to invalid IL or missing references) //IL_49f6: Unknown result type (might be due to invalid IL or missing references) //IL_49fc: Unknown result type (might be due to invalid IL or missing references) //IL_4a06: Unknown result type (might be due to invalid IL or missing references) //IL_4a0b: Unknown result type (might be due to invalid IL or missing references) //IL_4a11: Unknown result type (might be due to invalid IL or missing references) //IL_4a16: Unknown result type (might be due to invalid IL or missing references) //IL_4a1c: Unknown result type (might be due to invalid IL or missing references) //IL_4a26: Unknown result type (might be due to invalid IL or missing references) //IL_4a2b: Unknown result type (might be due to invalid IL or missing references) //IL_4a36: Unknown result type (might be due to invalid IL or missing references) //IL_4a3c: Unknown result type (might be due to invalid IL or missing references) //IL_4a41: Unknown result type (might be due to invalid IL or missing references) //IL_4a47: Unknown result type (might be due to invalid IL or missing references) //IL_4a4c: Unknown result type (might be due to invalid IL or missing references) //IL_4a52: Unknown result type (might be due to invalid IL or missing references) //IL_4a5c: Unknown result type (might be due to invalid IL or missing references) //IL_4a61: Unknown result type (might be due to invalid IL or missing references) //IL_4a67: Unknown result type (might be due to invalid IL or missing references) //IL_4a6c: Unknown result type (might be due to invalid IL or missing references) //IL_4a72: Unknown result type (might be due to invalid IL or missing references) //IL_4a7c: Unknown result type (might be due to invalid IL or missing references) //IL_4a81: Unknown result type (might be due to invalid IL or missing references) //IL_4a86: Unknown result type (might be due to invalid IL or missing references) //IL_4a96: Unknown result type (might be due to invalid IL or missing references) //IL_4a9c: Unknown result type (might be due to invalid IL or missing references) //IL_4aa1: Unknown result type (might be due to invalid IL or missing references) //IL_4aa7: Unknown result type (might be due to invalid IL or missing references) //IL_4aac: Unknown result type (might be due to invalid IL or missing references) //IL_4ab2: Unknown result type (might be due to invalid IL or missing references) //IL_4abc: Unknown result type (might be due to invalid IL or missing references) //IL_4ac1: Unknown result type (might be due to invalid IL or missing references) //IL_4ac7: Unknown result type (might be due to invalid IL or missing references) //IL_4acc: Unknown result type (might be due to invalid IL or missing references) //IL_4ad2: Unknown result type (might be due to invalid IL or missing references) //IL_4adc: Unknown result type (might be due to invalid IL or missing references) //IL_4ae1: Unknown result type (might be due to invalid IL or missing references) //IL_4aec: Unknown result type (might be due to invalid IL or missing references) //IL_4af2: Unknown result type (might be due to invalid IL or missing references) //IL_4af7: Unknown result type (might be due to invalid IL or missing references) //IL_4afd: Unknown result type (might be due to invalid IL or missing references) //IL_4b02: Unknown result type (might be due to invalid IL or missing references) //IL_4b08: Unknown result type (might be due to invalid IL or missing references) //IL_4b12: Unknown result type (might be due to invalid IL or missing references) //IL_4b17: Unknown result type (might be due to invalid IL or missing references) //IL_4b1d: Unknown result type (might be due to invalid IL or missing references) //IL_4b22: Unknown result type (might be due to invalid IL or missing references) //IL_4b28: Unknown result type (might be due to invalid IL or missing references) //IL_4b32: Unknown result type (might be due to invalid IL or missing references) //IL_4b37: Unknown result type (might be due to invalid IL or missing references) //IL_4b3c: Unknown result type (might be due to invalid IL or missing references) //IL_4b4c: Unknown result type (might be due to invalid IL or missing references) //IL_4b52: Unknown result type (might be due to invalid IL or missing references) //IL_4b57: Unknown result type (might be due to invalid IL or missing references) //IL_4b5d: Unknown result type (might be due to invalid IL or missing references) //IL_4b62: Unknown result type (might be due to invalid IL or missing references) //IL_4b68: Unknown result type (might be due to invalid IL or missing references) //IL_4b72: Unknown result type (might be due to invalid IL or missing references) //IL_4b77: Unknown result type (might be due to invalid IL or missing references) //IL_4b7d: Unknown result type (might be due to invalid IL or missing references) //IL_4b82: Unknown result type (might be due to invalid IL or missing references) //IL_4b88: Unknown result type (might be due to invalid IL or missing references) //IL_4b92: Unknown result type (might be due to invalid IL or missing references) //IL_4b97: Unknown result type (might be due to invalid IL or missing references) //IL_4ba2: Unknown result type (might be due to invalid IL or missing references) //IL_4ba8: Unknown result type (might be due to invalid IL or missing references) //IL_4bad: Unknown result type (might be due to invalid IL or missing references) //IL_4bb3: Unknown result type (might be due to invalid IL or missing references) //IL_4bb8: Unknown result type (might be due to invalid IL or missing references) //IL_4bbe: Unknown result type (might be due to invalid IL or missing references) //IL_4bc8: Unknown result type (might be due to invalid IL or missing references) //IL_4bcd: Unknown result type (might be due to invalid IL or missing references) //IL_4bd3: Unknown result type (might be due to invalid IL or missing references) //IL_4bd8: Unknown result type (might be due to invalid IL or missing references) //IL_4bde: Unknown result type (might be due to invalid IL or missing references) //IL_4be8: Unknown result type (might be due to invalid IL or missing references) //IL_4bed: Unknown result type (might be due to invalid IL or missing references) //IL_4bf2: Unknown result type (might be due to invalid IL or missing references) //IL_4c02: Unknown result type (might be due to invalid IL or missing references) //IL_4c08: Unknown result type (might be due to invalid IL or missing references) //IL_4c0d: Unknown result type (might be due to invalid IL or missing references) //IL_4c13: Unknown result type (might be due to invalid IL or missing references) //IL_4c18: Unknown result type (might be due to invalid IL or missing references) //IL_4c1e: Unknown result type (might be due to invalid IL or missing references) //IL_4c28: Unknown result type (might be due to invalid IL or missing references) //IL_4c2d: Unknown result type (might be due to invalid IL or missing references) //IL_4c33: Unknown result type (might be due to invalid IL or missing references) //IL_4c38: Unknown result type (might be due to invalid IL or missing references) //IL_4c3e: Unknown result type (might be due to invalid IL or missing references) //IL_4c48: Unknown result type (might be due to invalid IL or missing references) //IL_4c4d: Unknown result type (might be due to invalid IL or missing references) //IL_4c58: Unknown result type (might be due to invalid IL or missing references) //IL_4c5e: Unknown result type (might be due to invalid IL or missing references) //IL_4c63: Unknown result type (might be due to invalid IL or missing references) //IL_4c69: Unknown result type (might be due to invalid IL or missing references) //IL_4c6e: Unknown result type (might be due to invalid IL or missing references) //IL_4c74: Unknown result type (might be due to invalid IL or missing references) //IL_4c7e: Unknown result type (might be due to invalid IL or missing references) //IL_4c83: Unknown result type (might be due to invalid IL or missing references) //IL_4c89: Unknown result type (might be due to invalid IL or missing references) //IL_4c8e: Unknown result type (might be due to invalid IL or missing references) //IL_4c94: Unknown result type (might be due to invalid IL or missing references) //IL_4c9e: Unknown result type (might be due to invalid IL or missing references) //IL_4ca3: Unknown result type (might be due to invalid IL or missing references) //IL_4ca8: Unknown result type (might be due to invalid IL or missing references) //IL_4cb8: Unknown result type (might be due to invalid IL or missing references) //IL_4cbe: Unknown result type (might be due to invalid IL or missing references) //IL_4cc3: Unknown result type (might be due to invalid IL or missing references) //IL_4cc9: Unknown result type (might be due to invalid IL or missing references) //IL_4cce: Unknown result type (might be due to invalid IL or missing references) //IL_4cd4: Unknown result type (might be due to invalid IL or missing references) //IL_4cde: Unknown result type (might be due to invalid IL or missing references) //IL_4ce3: Unknown result type (might be due to invalid IL or missing references) //IL_4ce9: Unknown result type (might be due to invalid IL or missing references) //IL_4cee: Unknown result type (might be due to invalid IL or missing references) //IL_4cf4: Unknown result type (might be due to invalid IL or missing references) //IL_4cfe: Unknown result type (might be due to invalid IL or missing references) //IL_4d03: Unknown result type (might be due to invalid IL or missing references) //IL_4d0e: Unknown result type (might be due to invalid IL or missing references) //IL_4d14: Unknown result type (might be due to invalid IL or missing references) //IL_4d19: Unknown result type (might be due to invalid IL or missing references) //IL_4d1f: Unknown result type (might be due to invalid IL or missing references) //IL_4d24: Unknown result type (might be due to invalid IL or missing references) //IL_4d2a: Unknown result type (might be due to invalid IL or missing references) //IL_4d34: Unknown result type (might be due to invalid IL or missing references) //IL_4d39: Unknown result type (might be due to invalid IL or missing references) //IL_4d3f: Unknown result type (might be due to invalid IL or missing references) //IL_4d44: Unknown result type (might be due to invalid IL or missing references) //IL_4d4a: Unknown result type (might be due to invalid IL or missing references) //IL_4d54: Unknown result type (might be due to invalid IL or missing references) //IL_4d59: Unknown result type (might be due to invalid IL or missing references) //IL_4d5e: Unknown result type (might be due to invalid IL or missing references) //IL_4d6e: Unknown result type (might be due to invalid IL or missing references) //IL_4d74: Unknown result type (might be due to invalid IL or missing references) //IL_4d79: Unknown result type (might be due to invalid IL or missing references) //IL_4d7f: Unknown result type (might be due to invalid IL or missing references) //IL_4d84: Unknown result type (might be due to invalid IL or missing references) //IL_4d8a: Unknown result type (might be due to invalid IL or missing references) //IL_4d94: Unknown result type (might be due to invalid IL or missing references) //IL_4d99: Unknown result type (might be due to invalid IL or missing references) //IL_4d9f: Unknown result type (might be due to invalid IL or missing references) //IL_4da4: Unknown result type (might be due to invalid IL or missing references) //IL_4daa: Unknown result type (might be due to invalid IL or missing references) //IL_4db4: Unknown result type (might be due to invalid IL or missing references) //IL_4db9: Unknown result type (might be due to invalid IL or missing references) //IL_4dc4: Unknown result type (might be due to invalid IL or missing references) //IL_4dca: Unknown result type (might be due to invalid IL or missing references) //IL_4dcf: Unknown result type (might be due to invalid IL or missing references) //IL_4dd5: Unknown result type (might be due to invalid IL or missing references) //IL_4dda: Unknown result type (might be due to invalid IL or missing references) //IL_4de0: Unknown result type (might be due to invalid IL or missing references) //IL_4dea: Unknown result type (might be due to invalid IL or missing references) //IL_4def: Unknown result type (might be due to invalid IL or missing references) //IL_4df5: Unknown result type (might be due to invalid IL or missing references) //IL_4dfa: Unknown result type (might be due to invalid IL or missing references) //IL_4e00: Unknown result type (might be due to invalid IL or missing references) //IL_4e0a: Unknown result type (might be due to invalid IL or missing references) //IL_4e0f: Unknown result type (might be due to invalid IL or missing references) //IL_4e14: Unknown result type (might be due to invalid IL or missing references) //IL_4e24: Unknown result type (might be due to invalid IL or missing references) //IL_4e2a: Unknown result type (might be due to invalid IL or missing references) //IL_4e2f: Unknown result type (might be due to invalid IL or missing references) //IL_4e35: Unknown result type (might be due to invalid IL or missing references) //IL_4e3a: Unknown result type (might be due to invalid IL or missing references) //IL_4e40: Unknown result type (might be due to invalid IL or missing references) //IL_4e4a: Unknown result type (might be due to invalid IL or missing references) //IL_4e4f: Unknown result type (might be due to invalid IL or missing references) //IL_4e55: Unknown result type (might be due to invalid IL or missing references) //IL_4e5a: Unknown result type (might be due to invalid IL or missing references) //IL_4e60: Unknown result type (might be due to invalid IL or missing references) //IL_4e6a: Unknown result type (might be due to invalid IL or missing references) //IL_4e6f: Unknown result type (might be due to invalid IL or missing references) //IL_4e7a: Unknown result type (might be due to invalid IL or missing references) //IL_4e80: Unknown result type (might be due to invalid IL or missing references) //IL_4e85: Unknown result type (might be due to invalid IL or missing references) //IL_4e8b: Unknown result type (might be due to invalid IL or missing references) //IL_4e90: Unknown result type (might be due to invalid IL or missing references) //IL_4e96: Unknown result type (might be due to invalid IL or missing references) //IL_4ea0: Unknown result type (might be due to invalid IL or missing references) //IL_4ea5: Unknown result type (might be due to invalid IL or missing references) //IL_4eab: Unknown result type (might be due to invalid IL or missing references) //IL_4eb0: Unknown result type (might be due to invalid IL or missing references) //IL_4eb6: Unknown result type (might be due to invalid IL or missing references) //IL_4ec0: Unknown result type (might be due to invalid IL or missing references) //IL_4ec5: Unknown result type (might be due to invalid IL or missing references) //IL_4eca: Unknown result type (might be due to invalid IL or missing references) //IL_4eda: Unknown result type (might be due to invalid IL or missing references) //IL_4ee0: Unknown result type (might be due to invalid IL or missing references) //IL_4ee5: Unknown result type (might be due to invalid IL or missing references) //IL_4eeb: Unknown result type (might be due to invalid IL or missing references) //IL_4ef0: Unknown result type (might be due to invalid IL or missing references) //IL_4ef6: Unknown result type (might be due to invalid IL or missing references) //IL_4f00: Unknown result type (might be due to invalid IL or missing references) //IL_4f05: Unknown result type (might be due to invalid IL or missing references) //IL_4f0b: Unknown result type (might be due to invalid IL or missing references) //IL_4f10: Unknown result type (might be due to invalid IL or missing references) //IL_4f1b: Unknown result type (might be due to invalid IL or missing references) //IL_4f21: Unknown result type (might be due to invalid IL or missing references) //IL_4f26: Unknown result type (might be due to invalid IL or missing references) //IL_4f2c: Unknown result type (might be due to invalid IL or missing references) //IL_4f31: Unknown result type (might be due to invalid IL or missing references) //IL_4f37: Unknown result type (might be due to invalid IL or missing references) //IL_4f41: Unknown result type (might be due to invalid IL or missing references) //IL_4f46: Unknown result type (might be due to invalid IL or missing references) //IL_4f4c: Unknown result type (might be due to invalid IL or missing references) //IL_4f51: Unknown result type (might be due to invalid IL or missing references) //IL_4f56: Unknown result type (might be due to invalid IL or missing references) //IL_4f66: Unknown result type (might be due to invalid IL or missing references) //IL_4f6c: Unknown result type (might be due to invalid IL or missing references) //IL_4f71: Unknown result type (might be due to invalid IL or missing references) //IL_4f77: Unknown result type (might be due to invalid IL or missing references) //IL_4f7c: Unknown result type (might be due to invalid IL or missing references) //IL_4f82: Unknown result type (might be due to invalid IL or missing references) //IL_4f8c: Unknown result type (might be due to invalid IL or missing references) //IL_4f91: Unknown result type (might be due to invalid IL or missing references) //IL_4f97: Unknown result type (might be due to invalid IL or missing references) //IL_4f9c: Unknown result type (might be due to invalid IL or missing references) //IL_4fa2: Unknown result type (might be due to invalid IL or missing references) //IL_4fac: Unknown result type (might be due to invalid IL or missing references) //IL_4fb1: Unknown result type (might be due to invalid IL or missing references) //IL_4fbc: Unknown result type (might be due to invalid IL or missing references) //IL_4fc2: Unknown result type (might be due to invalid IL or missing references) //IL_4fc7: Unknown result type (might be due to invalid IL or missing references) //IL_4fcd: Unknown result type (might be due to invalid IL or missing references) //IL_4fd2: Unknown result type (might be due to invalid IL or missing references) //IL_4fd8: Unknown result type (might be due to invalid IL or missing references) //IL_4fe2: Unknown result type (might be due to invalid IL or missing references) //IL_4fe7: Unknown result type (might be due to invalid IL or missing references) //IL_4fed: Unknown result type (might be due to invalid IL or missing references) //IL_4ff2: Unknown result type (might be due to invalid IL or missing references) //IL_4ff8: Unknown result type (might be due to invalid IL or missing references) //IL_5002: Unknown result type (might be due to invalid IL or missing references) //IL_5007: Unknown result type (might be due to invalid IL or missing references) //IL_500c: Unknown result type (might be due to invalid IL or missing references) //IL_501c: Unknown result type (might be due to invalid IL or missing references) //IL_5022: Unknown result type (might be due to invalid IL or missing references) //IL_5027: Unknown result type (might be due to invalid IL or missing references) //IL_502d: Unknown result type (might be due to invalid IL or missing references) //IL_5032: Unknown result type (might be due to invalid IL or missing references) //IL_5038: Unknown result type (might be due to invalid IL or missing references) //IL_5042: Unknown result type (might be due to invalid IL or missing references) //IL_5047: Unknown result type (might be due to invalid IL or missing references) //IL_504d: Unknown result type (might be due to invalid IL or missing references) //IL_5052: Unknown result type (might be due to invalid IL or missing references) //IL_5058: Unknown result type (might be due to invalid IL or missing references) //IL_5062: Unknown result type (might be due to invalid IL or missing references) //IL_5067: Unknown result type (might be due to invalid IL or missing references) //IL_5072: Unknown result type (might be due to invalid IL or missing references) //IL_5078: Unknown result type (might be due to invalid IL or missing references) //IL_507d: Unknown result type (might be due to invalid IL or missing references) //IL_5083: Unknown result type (might be due to invalid IL or missing references) //IL_5088: Unknown result type (might be due to invalid IL or missing references) //IL_508e: Unknown result type (might be due to invalid IL or missing references) //IL_5098: Unknown result type (might be due to invalid IL or missing references) //IL_509d: Unknown result type (might be due to invalid IL or missing references) //IL_50a3: Unknown result type (might be due to invalid IL or missing references) //IL_50a8: Unknown result type (might be due to invalid IL or missing references) //IL_50ae: Unknown result type (might be due to invalid IL or missing references) //IL_50b8: Unknown result type (might be due to invalid IL or missing references) //IL_50bd: Unknown result type (might be due to invalid IL or missing references) //IL_50c2: Unknown result type (might be due to invalid IL or missing references) //IL_50d2: Unknown result type (might be due to invalid IL or missing references) //IL_50d8: Unknown result type (might be due to invalid IL or missing references) //IL_50dd: Unknown result type (might be due to invalid IL or missing references) //IL_50e3: Unknown result type (might be due to invalid IL or missing references) //IL_50e8: Unknown result type (might be due to invalid IL or missing references) //IL_50ee: Unknown result type (might be due to invalid IL or missing references) //IL_50f8: Unknown result type (might be due to invalid IL or missing references) //IL_50fd: Unknown result type (might be due to invalid IL or missing references) //IL_5103: Unknown result type (might be due to invalid IL or missing references) //IL_5108: Unknown result type (might be due to invalid IL or missing references) //IL_510e: Unknown result type (might be due to invalid IL or missing references) //IL_5118: Unknown result type (might be due to invalid IL or missing references) //IL_511d: Unknown result type (might be due to invalid IL or missing references) //IL_5128: Unknown result type (might be due to invalid IL or missing references) //IL_512e: Unknown result type (might be due to invalid IL or missing references) //IL_5133: Unknown result type (might be due to invalid IL or missing references) //IL_5139: Unknown result type (might be due to invalid IL or missing references) //IL_513e: Unknown result type (might be due to invalid IL or missing references) //IL_5144: Unknown result type (might be due to invalid IL or missing references) //IL_514e: Unknown result type (might be due to invalid IL or missing references) //IL_5153: Unknown result type (might be due to invalid IL or missing references) //IL_5159: Unknown result type (might be due to invalid IL or missing references) //IL_515e: Unknown result type (might be due to invalid IL or missing references) //IL_5164: Unknown result type (might be due to invalid IL or missing references) //IL_516e: Unknown result type (might be due to invalid IL or missing references) //IL_5173: Unknown result type (might be due to invalid IL or missing references) //IL_5178: Unknown result type (might be due to invalid IL or missing references) //IL_5188: Unknown result type (might be due to invalid IL or missing references) //IL_518e: Unknown result type (might be due to invalid IL or missing references) //IL_5193: Unknown result type (might be due to invalid IL or missing references) //IL_5199: Unknown result type (might be due to invalid IL or missing references) //IL_519e: Unknown result type (might be due to invalid IL or missing references) //IL_51a4: Unknown result type (might be due to invalid IL or missing references) //IL_51ae: Unknown result type (might be due to invalid IL or missing references) //IL_51b3: Unknown result type (might be due to invalid IL or missing references) //IL_51b9: Unknown result type (might be due to invalid IL or missing references) //IL_51be: Unknown result type (might be due to invalid IL or missing references) //IL_51c4: Unknown result type (might be due to invalid IL or missing references) //IL_51ce: Unknown result type (might be due to invalid IL or missing references) //IL_51d3: Unknown result type (might be due to invalid IL or missing references) //IL_51de: Unknown result type (might be due to invalid IL or missing references) //IL_51e4: Unknown result type (might be due to invalid IL or missing references) //IL_51e9: Unknown result type (might be due to invalid IL or missing references) //IL_51ef: Unknown result type (might be due to invalid IL or missing references) //IL_51f4: Unknown result type (might be due to invalid IL or missing references) //IL_51fa: Unknown result type (might be due to invalid IL or missing references) //IL_5204: Unknown result type (might be due to invalid IL or missing references) //IL_5209: Unknown result type (might be due to invalid IL or missing references) //IL_520f: Unknown result type (might be due to invalid IL or missing references) //IL_5214: Unknown result type (might be due to invalid IL or missing references) //IL_521a: Unknown result type (might be due to invalid IL or missing references) //IL_5224: Unknown result type (might be due to invalid IL or missing references) //IL_5229: Unknown result type (might be due to invalid IL or missing references) //IL_522e: Unknown result type (might be due to invalid IL or missing references) //IL_523e: Unknown result type (might be due to invalid IL or missing references) //IL_5244: Unknown result type (might be due to invalid IL or missing references) //IL_5249: Unknown result type (might be due to invalid IL or missing references) //IL_524f: Unknown result type (might be due to invalid IL or missing references) //IL_5254: Unknown result type (might be due to invalid IL or missing references) //IL_525a: Unknown result type (might be due to invalid IL or missing references) //IL_5264: Unknown result type (might be due to invalid IL or missing references) //IL_5269: Unknown result type (might be due to invalid IL or missing references) //IL_526f: Unknown result type (might be due to invalid IL or missing references) //IL_5274: Unknown result type (might be due to invalid IL or missing references) //IL_527a: Unknown result type (might be due to invalid IL or missing references) //IL_5284: Unknown result type (might be due to invalid IL or missing references) //IL_5289: Unknown result type (might be due to invalid IL or missing references) //IL_5294: Unknown result type (might be due to invalid IL or missing references) //IL_529a: Unknown result type (might be due to invalid IL or missing references) //IL_529f: Unknown result type (might be due to invalid IL or missing references) //IL_52a5: Unknown result type (might be due to invalid IL or missing references) //IL_52aa: Unknown result type (might be due to invalid IL or missing references) //IL_52b0: Unknown result type (might be due to invalid IL or missing references) //IL_52ba: Unknown result type (might be due to invalid IL or missing references) //IL_52bf: Unknown result type (might be due to invalid IL or missing references) //IL_52c5: Unknown result type (might be due to invalid IL or missing references) //IL_52ca: Unknown result type (might be due to invalid IL or missing references) //IL_52d0: Unknown result type (might be due to invalid IL or missing references) //IL_52da: Unknown result type (might be due to invalid IL or missing references) //IL_52df: Unknown result type (might be due to invalid IL or missing references) //IL_52e4: Unknown result type (might be due to invalid IL or missing references) //IL_52f4: Unknown result type (might be due to invalid IL or missing references) //IL_52fa: Unknown result type (might be due to invalid IL or missing references) //IL_52ff: Unknown result type (might be due to invalid IL or missing references) //IL_5305: Unknown result type (might be due to invalid IL or missing references) //IL_530a: Unknown result type (might be due to invalid IL or missing references) //IL_5310: Unknown result type (might be due to invalid IL or missing references) //IL_531a: Unknown result type (might be due to invalid IL or missing references) //IL_531f: Unknown result type (might be due to invalid IL or missing references) //IL_5325: Unknown result type (might be due to invalid IL or missing references) //IL_532a: Unknown result type (might be due to invalid IL or missing references) //IL_5330: Unknown result type (might be due to invalid IL or missing references) //IL_533a: Unknown result type (might be due to invalid IL or missing references) //IL_533f: Unknown result type (might be due to invalid IL or missing references) //IL_534a: Unknown result type (might be due to invalid IL or missing references) //IL_5350: Unknown result type (might be due to invalid IL or missing references) //IL_5355: Unknown result type (might be due to invalid IL or missing references) //IL_535b: Unknown result type (might be due to invalid IL or missing references) //IL_5360: Unknown result type (might be due to invalid IL or missing references) //IL_5366: Unknown result type (might be due to invalid IL or missing references) //IL_5370: Unknown result type (might be due to invalid IL or missing references) //IL_5375: Unknown result type (might be due to invalid IL or missing references) //IL_537b: Unknown result type (might be due to invalid IL or missing references) //IL_5380: Unknown result type (might be due to invalid IL or missing references) //IL_5386: Unknown result type (might be due to invalid IL or missing references) //IL_5390: Unknown result type (might be due to invalid IL or missing references) //IL_5395: Unknown result type (might be due to invalid IL or missing references) //IL_539a: Unknown result type (might be due to invalid IL or missing references) //IL_53aa: Unknown result type (might be due to invalid IL or missing references) //IL_53b0: Unknown result type (might be due to invalid IL or missing references) //IL_53b5: Unknown result type (might be due to invalid IL or missing references) //IL_53bb: Unknown result type (might be due to invalid IL or missing references) //IL_53c0: Unknown result type (might be due to invalid IL or missing references) //IL_53c6: Unknown result type (might be due to invalid IL or missing references) //IL_53d0: Unknown result type (might be due to invalid IL or missing references) //IL_53d5: Unknown result type (might be due to invalid IL or missing references) //IL_53db: Unknown result type (might be due to invalid IL or missing references) //IL_53e0: Unknown result type (might be due to invalid IL or missing references) //IL_53e6: Unknown result type (might be due to invalid IL or missing references) //IL_53f0: Unknown result type (might be due to invalid IL or missing references) //IL_53f5: Unknown result type (might be due to invalid IL or missing references) //IL_5400: Unknown result type (might be due to invalid IL or missing references) //IL_5406: Unknown result type (might be due to invalid IL or missing references) //IL_540b: Unknown result type (might be due to invalid IL or missing references) //IL_5411: Unknown result type (might be due to invalid IL or missing references) //IL_5416: Unknown result type (might be due to invalid IL or missing references) //IL_541c: Unknown result type (might be due to invalid IL or missing references) //IL_5426: Unknown result type (might be due to invalid IL or missing references) //IL_542b: Unknown result type (might be due to invalid IL or missing references) //IL_5431: Unknown result type (might be due to invalid IL or missing references) //IL_5436: Unknown result type (might be due to invalid IL or missing references) //IL_543c: Unknown result type (might be due to invalid IL or missing references) //IL_5446: Unknown result type (might be due to invalid IL or missing references) //IL_544b: Unknown result type (might be due to invalid IL or missing references) //IL_5450: Unknown result type (might be due to invalid IL or missing references) //IL_5460: Unknown result type (might be due to invalid IL or missing references) //IL_5466: Unknown result type (might be due to invalid IL or missing references) //IL_546b: Unknown result type (might be due to invalid IL or missing references) //IL_5471: Unknown result type (might be due to invalid IL or missing references) //IL_5476: Unknown result type (might be due to invalid IL or missing references) //IL_547c: Unknown result type (might be due to invalid IL or missing references) //IL_5481: Unknown result type (might be due to invalid IL or missing references) //IL_548c: Unknown result type (might be due to invalid IL or missing references) //IL_5492: Unknown result type (might be due to invalid IL or missing references) //IL_5497: Unknown result type (might be due to invalid IL or missing references) //IL_549d: Unknown result type (might be due to invalid IL or missing references) //IL_54a2: Unknown result type (might be due to invalid IL or missing references) //IL_54a8: Unknown result type (might be due to invalid IL or missing references) //IL_54b2: Unknown result type (might be due to invalid IL or missing references) //IL_54b7: Unknown result type (might be due to invalid IL or missing references) //IL_54bd: Unknown result type (might be due to invalid IL or missing references) //IL_54c2: Unknown result type (might be due to invalid IL or missing references) //IL_54c7: Unknown result type (might be due to invalid IL or missing references) //IL_54d7: Unknown result type (might be due to invalid IL or missing references) //IL_54dd: Unknown result type (might be due to invalid IL or missing references) //IL_54e2: Unknown result type (might be due to invalid IL or missing references) //IL_54e8: Unknown result type (might be due to invalid IL or missing references) //IL_54ed: Unknown result type (might be due to invalid IL or missing references) //IL_54f3: Unknown result type (might be due to invalid IL or missing references) //IL_54f8: Unknown result type (might be due to invalid IL or missing references) //IL_54fe: Unknown result type (might be due to invalid IL or missing references) //IL_5508: Unknown result type (might be due to invalid IL or missing references) //IL_550d: Unknown result type (might be due to invalid IL or missing references) //IL_5518: Unknown result type (might be due to invalid IL or missing references) //IL_551e: Unknown result type (might be due to invalid IL or missing references) //IL_5523: Unknown result type (might be due to invalid IL or missing references) //IL_5529: Unknown result type (might be due to invalid IL or missing references) //IL_552e: Unknown result type (might be due to invalid IL or missing references) //IL_5534: Unknown result type (might be due to invalid IL or missing references) //IL_553e: Unknown result type (might be due to invalid IL or missing references) //IL_5543: Unknown result type (might be due to invalid IL or missing references) //IL_5549: Unknown result type (might be due to invalid IL or missing references) //IL_554e: Unknown result type (might be due to invalid IL or missing references) //IL_5554: Unknown result type (might be due to invalid IL or missing references) //IL_555e: Unknown result type (might be due to invalid IL or missing references) //IL_5563: Unknown result type (might be due to invalid IL or missing references) //IL_5568: Unknown result type (might be due to invalid IL or missing references) //IL_5578: Unknown result type (might be due to invalid IL or missing references) //IL_557e: Unknown result type (might be due to invalid IL or missing references) //IL_5583: Unknown result type (might be due to invalid IL or missing references) //IL_5589: Unknown result type (might be due to invalid IL or missing references) //IL_558e: Unknown result type (might be due to invalid IL or missing references) //IL_5594: Unknown result type (might be due to invalid IL or missing references) //IL_5599: Unknown result type (might be due to invalid IL or missing references) //IL_559f: Unknown result type (might be due to invalid IL or missing references) //IL_55a9: Unknown result type (might be due to invalid IL or missing references) //IL_55ae: Unknown result type (might be due to invalid IL or missing references) //IL_55b9: Unknown result type (might be due to invalid IL or missing references) //IL_55bf: Unknown result type (might be due to invalid IL or missing references) //IL_55c4: Unknown result type (might be due to invalid IL or missing references) //IL_55ca: Unknown result type (might be due to invalid IL or missing references) //IL_55cf: Unknown result type (might be due to invalid IL or missing references) //IL_55d5: Unknown result type (might be due to invalid IL or missing references) //IL_55df: Unknown result type (might be due to invalid IL or missing references) //IL_55e4: Unknown result type (might be due to invalid IL or missing references) //IL_55ea: Unknown result type (might be due to invalid IL or missing references) //IL_55ef: Unknown result type (might be due to invalid IL or missing references) //IL_55f5: Unknown result type (might be due to invalid IL or missing references) //IL_55ff: Unknown result type (might be due to invalid IL or missing references) //IL_5604: Unknown result type (might be due to invalid IL or missing references) //IL_5609: Unknown result type (might be due to invalid IL or missing references) //IL_5619: Unknown result type (might be due to invalid IL or missing references) //IL_561f: Unknown result type (might be due to invalid IL or missing references) //IL_5624: Unknown result type (might be due to invalid IL or missing references) //IL_562a: Unknown result type (might be due to invalid IL or missing references) //IL_562f: Unknown result type (might be due to invalid IL or missing references) //IL_5635: Unknown result type (might be due to invalid IL or missing references) //IL_563a: Unknown result type (might be due to invalid IL or missing references) //IL_5640: Unknown result type (might be due to invalid IL or missing references) //IL_564a: Unknown result type (might be due to invalid IL or missing references) //IL_564f: Unknown result type (might be due to invalid IL or missing references) //IL_565a: Unknown result type (might be due to invalid IL or missing references) //IL_5660: Unknown result type (might be due to invalid IL or missing references) //IL_5665: Unknown result type (might be due to invalid IL or missing references) //IL_566b: Unknown result type (might be due to invalid IL or missing references) //IL_5670: Unknown result type (might be due to invalid IL or missing references) //IL_5676: Unknown result type (might be due to invalid IL or missing references) //IL_5680: Unknown result type (might be due to invalid IL or missing references) //IL_5685: Unknown result type (might be due to invalid IL or missing references) //IL_568b: Unknown result type (might be due to invalid IL or missing references) //IL_5690: Unknown result type (might be due to invalid IL or missing references) //IL_5696: Unknown result type (might be due to invalid IL or missing references) //IL_56a0: Unknown result type (might be due to invalid IL or missing references) //IL_56a5: Unknown result type (might be due to invalid IL or missing references) //IL_56aa: Unknown result type (might be due to invalid IL or missing references) //IL_56ba: Unknown result type (might be due to invalid IL or missing references) //IL_56c0: Unknown result type (might be due to invalid IL or missing references) //IL_56c5: Unknown result type (might be due to invalid IL or missing references) //IL_56cb: Unknown result type (might be due to invalid IL or missing references) //IL_56d0: Unknown result type (might be due to invalid IL or missing references) //IL_56d6: Unknown result type (might be due to invalid IL or missing references) //IL_56db: Unknown result type (might be due to invalid IL or missing references) //IL_56e1: Unknown result type (might be due to invalid IL or missing references) //IL_56eb: Unknown result type (might be due to invalid IL or missing references) //IL_56f0: Unknown result type (might be due to invalid IL or missing references) //IL_56fb: Unknown result type (might be due to invalid IL or missing references) //IL_5701: Unknown result type (might be due to invalid IL or missing references) //IL_5706: Unknown result type (might be due to invalid IL or missing references) //IL_570c: Unknown result type (might be due to invalid IL or missing references) //IL_5711: Unknown result type (might be due to invalid IL or missing references) //IL_5717: Unknown result type (might be due to invalid IL or missing references) //IL_5721: Unknown result type (might be due to invalid IL or missing references) //IL_5726: Unknown result type (might be due to invalid IL or missing references) //IL_572c: Unknown result type (might be due to invalid IL or missing references) //IL_5731: Unknown result type (might be due to invalid IL or missing references) //IL_5737: Unknown result type (might be due to invalid IL or missing references) //IL_5741: Unknown result type (might be due to invalid IL or missing references) //IL_5746: Unknown result type (might be due to invalid IL or missing references) //IL_574b: Unknown result type (might be due to invalid IL or missing references) //IL_575b: Unknown result type (might be due to invalid IL or missing references) //IL_5761: Unknown result type (might be due to invalid IL or missing references) //IL_5766: Unknown result type (might be due to invalid IL or missing references) //IL_576c: Unknown result type (might be due to invalid IL or missing references) //IL_5771: Unknown result type (might be due to invalid IL or missing references) //IL_5777: Unknown result type (might be due to invalid IL or missing references) //IL_577c: Unknown result type (might be due to invalid IL or missing references) //IL_5782: Unknown result type (might be due to invalid IL or missing references) //IL_578c: Unknown result type (might be due to invalid IL or missing references) //IL_5791: Unknown result type (might be due to invalid IL or missing references) //IL_579c: Unknown result type (might be due to invalid IL or missing references) //IL_57a2: Unknown result type (might be due to invalid IL or missing references) //IL_57a7: Unknown result type (might be due to invalid IL or missing references) //IL_57ad: Unknown result type (might be due to invalid IL or missing references) //IL_57b2: Unknown result type (might be due to invalid IL or missing references) //IL_57b8: Unknown result type (might be due to invalid IL or missing references) //IL_57c2: Unknown result type (might be due to invalid IL or missing references) //IL_57c7: Unknown result type (might be due to invalid IL or missing references) //IL_57cd: Unknown result type (might be due to invalid IL or missing references) //IL_57d2: Unknown result type (might be due to invalid IL or missing references) //IL_57d8: Unknown result type (might be due to invalid IL or missing references) //IL_57e2: Unknown result type (might be due to invalid IL or missing references) //IL_57e7: Unknown result type (might be due to invalid IL or missing references) //IL_57ec: Unknown result type (might be due to invalid IL or missing references) //IL_57fc: Unknown result type (might be due to invalid IL or missing references) //IL_5802: Unknown result type (might be due to invalid IL or missing references) //IL_5807: Unknown result type (might be due to invalid IL or missing references) //IL_580d: Unknown result type (might be due to invalid IL or missing references) //IL_5812: Unknown result type (might be due to invalid IL or missing references) //IL_5818: Unknown result type (might be due to invalid IL or missing references) //IL_581d: Unknown result type (might be due to invalid IL or missing references) //IL_5823: Unknown result type (might be due to invalid IL or missing references) //IL_582d: Unknown result type (might be due to invalid IL or missing references) //IL_5832: Unknown result type (might be due to invalid IL or missing references) //IL_583d: Unknown result type (might be due to invalid IL or missing references) //IL_5843: Unknown result type (might be due to invalid IL or missing references) //IL_5848: Unknown result type (might be due to invalid IL or missing references) //IL_584e: Unknown result type (might be due to invalid IL or missing references) //IL_5853: Unknown result type (might be due to invalid IL or missing references) //IL_5859: Unknown result type (might be due to invalid IL or missing references) //IL_5863: Unknown result type (might be due to invalid IL or missing references) //IL_5868: Unknown result type (might be due to invalid IL or missing references) //IL_586e: Unknown result type (might be due to invalid IL or missing references) //IL_5873: Unknown result type (might be due to invalid IL or missing references) //IL_5879: Unknown result type (might be due to invalid IL or missing references) //IL_5883: Unknown result type (might be due to invalid IL or missing references) //IL_5888: Unknown result type (might be due to invalid IL or missing references) //IL_588d: Unknown result type (might be due to invalid IL or missing references) //IL_589d: Unknown result type (might be due to invalid IL or missing references) //IL_58a3: Unknown result type (might be due to invalid IL or missing references) //IL_58a8: Unknown result type (might be due to invalid IL or missing references) //IL_58ae: Unknown result type (might be due to invalid IL or missing references) //IL_58b3: Unknown result type (might be due to invalid IL or missing references) //IL_58b9: Unknown result type (might be due to invalid IL or missing references) //IL_58be: Unknown result type (might be due to invalid IL or missing references) //IL_58c4: Unknown result type (might be due to invalid IL or missing references) //IL_58ce: Unknown result type (might be due to invalid IL or missing references) //IL_58d3: Unknown result type (might be due to invalid IL or missing references) //IL_58de: Unknown result type (might be due to invalid IL or missing references) //IL_58e4: Unknown result type (might be due to invalid IL or missing references) //IL_58e9: Unknown result type (might be due to invalid IL or missing references) //IL_58ef: Unknown result type (might be due to invalid IL or missing references) //IL_58f4: Unknown result type (might be due to invalid IL or missing references) //IL_58fa: Unknown result type (might be due to invalid IL or missing references) //IL_5904: Unknown result type (might be due to invalid IL or missing references) //IL_5909: Unknown result type (might be due to invalid IL or missing references) //IL_590f: Unknown result type (might be due to invalid IL or missing references) //IL_5914: Unknown result type (might be due to invalid IL or missing references) //IL_591a: Unknown result type (might be due to invalid IL or missing references) //IL_5924: Unknown result type (might be due to invalid IL or missing references) //IL_5929: Unknown result type (might be due to invalid IL or missing references) //IL_592e: Unknown result type (might be due to invalid IL or missing references) //IL_593e: Unknown result type (might be due to invalid IL or missing references) //IL_5944: Unknown result type (might be due to invalid IL or missing references) //IL_5949: Unknown result type (might be due to invalid IL or missing references) //IL_594f: Unknown result type (might be due to invalid IL or missing references) //IL_5954: Unknown result type (might be due to invalid IL or missing references) //IL_595a: Unknown result type (might be due to invalid IL or missing references) //IL_5964: Unknown result type (might be due to invalid IL or missing references) //IL_5969: Unknown result type (might be due to invalid IL or missing references) //IL_596f: Unknown result type (might be due to invalid IL or missing references) //IL_5974: Unknown result type (might be due to invalid IL or missing references) //IL_597f: Unknown result type (might be due to invalid IL or missing references) //IL_5985: Unknown result type (might be due to invalid IL or missing references) //IL_598a: Unknown result type (might be due to invalid IL or missing references) //IL_5990: Unknown result type (might be due to invalid IL or missing references) //IL_5995: Unknown result type (might be due to invalid IL or missing references) //IL_599b: Unknown result type (might be due to invalid IL or missing references) //IL_59a0: Unknown result type (might be due to invalid IL or missing references) //IL_59a5: Unknown result type (might be due to invalid IL or missing references) //IL_59b5: Unknown result type (might be due to invalid IL or missing references) //IL_59bb: Unknown result type (might be due to invalid IL or missing references) //IL_59c0: Unknown result type (might be due to invalid IL or missing references) //IL_59c6: Unknown result type (might be due to invalid IL or missing references) //IL_59cb: Unknown result type (might be due to invalid IL or missing references) //IL_59d1: Unknown result type (might be due to invalid IL or missing references) //IL_59db: Unknown result type (might be due to invalid IL or missing references) //IL_59e0: Unknown result type (might be due to invalid IL or missing references) //IL_59e6: Unknown result type (might be due to invalid IL or missing references) //IL_59eb: Unknown result type (might be due to invalid IL or missing references) //IL_59f1: Unknown result type (might be due to invalid IL or missing references) //IL_59fb: Unknown result type (might be due to invalid IL or missing references) //IL_5a00: Unknown result type (might be due to invalid IL or missing references) //IL_5a0b: Unknown result type (might be due to invalid IL or missing references) //IL_5a11: Unknown result type (might be due to invalid IL or missing references) //IL_5a16: Unknown result type (might be due to invalid IL or missing references) //IL_5a1c: Unknown result type (might be due to invalid IL or missing references) //IL_5a21: Unknown result type (might be due to invalid IL or missing references) //IL_5a27: Unknown result type (might be due to invalid IL or missing references) //IL_5a2c: Unknown result type (might be due to invalid IL or missing references) //IL_5a32: Unknown result type (might be due to invalid IL or missing references) //IL_5a3c: Unknown result type (might be due to invalid IL or missing references) //IL_5a41: Unknown result type (might be due to invalid IL or missing references) //IL_5a46: Unknown result type (might be due to invalid IL or missing references) //IL_5a56: Unknown result type (might be due to invalid IL or missing references) //IL_5a5c: Unknown result type (might be due to invalid IL or missing references) //IL_5a61: Unknown result type (might be due to invalid IL or missing references) //IL_5a67: Unknown result type (might be due to invalid IL or missing references) //IL_5a6c: Unknown result type (might be due to invalid IL or missing references) //IL_5a72: Unknown result type (might be due to invalid IL or missing references) //IL_5a7c: Unknown result type (might be due to invalid IL or missing references) //IL_5a81: Unknown result type (might be due to invalid IL or missing references) //IL_5a87: Unknown result type (might be due to invalid IL or missing references) //IL_5a8c: Unknown result type (might be due to invalid IL or missing references) //IL_5a92: Unknown result type (might be due to invalid IL or missing references) //IL_5a9c: Unknown result type (might be due to invalid IL or missing references) //IL_5aa1: Unknown result type (might be due to invalid IL or missing references) //IL_5aac: Unknown result type (might be due to invalid IL or missing references) //IL_5ab2: Unknown result type (might be due to invalid IL or missing references) //IL_5ab7: Unknown result type (might be due to invalid IL or missing references) //IL_5abd: Unknown result type (might be due to invalid IL or missing references) //IL_5ac2: Unknown result type (might be due to invalid IL or missing references) //IL_5ac8: Unknown result type (might be due to invalid IL or missing references) //IL_5acd: Unknown result type (might be due to invalid IL or missing references) //IL_5ad3: Unknown result type (might be due to invalid IL or missing references) //IL_5add: Unknown result type (might be due to invalid IL or missing references) //IL_5ae2: Unknown result type (might be due to invalid IL or missing references) //IL_5ae7: Unknown result type (might be due to invalid IL or missing references) //IL_5af7: Unknown result type (might be due to invalid IL or missing references) //IL_5afd: Unknown result type (might be due to invalid IL or missing references) //IL_5b02: Unknown result type (might be due to invalid IL or missing references) //IL_5b08: Unknown result type (might be due to invalid IL or missing references) //IL_5b0d: Unknown result type (might be due to invalid IL or missing references) //IL_5b13: Unknown result type (might be due to invalid IL or missing references) //IL_5b1d: Unknown result type (might be due to invalid IL or missing references) //IL_5b22: Unknown result type (might be due to invalid IL or missing references) //IL_5b28: Unknown result type (might be due to invalid IL or missing references) //IL_5b2d: Unknown result type (might be due to invalid IL or missing references) //IL_5b33: Unknown result type (might be due to invalid IL or missing references) //IL_5b3d: Unknown result type (might be due to invalid IL or missing references) //IL_5b42: Unknown result type (might be due to invalid IL or missing references) //IL_5b4d: Unknown result type (might be due to invalid IL or missing references) //IL_5b53: Unknown result type (might be due to invalid IL or missing references) //IL_5b58: Unknown result type (might be due to invalid IL or missing references) //IL_5b5e: Unknown result type (might be due to invalid IL or missing references) //IL_5b63: Unknown result type (might be due to invalid IL or missing references) //IL_5b69: Unknown result type (might be due to invalid IL or missing references) //IL_5b6e: Unknown result type (might be due to invalid IL or missing references) //IL_5b74: Unknown result type (might be due to invalid IL or missing references) //IL_5b7e: Unknown result type (might be due to invalid IL or missing references) //IL_5b83: Unknown result type (might be due to invalid IL or missing references) //IL_5b88: Unknown result type (might be due to invalid IL or missing references) //IL_5b98: Unknown result type (might be due to invalid IL or missing references) //IL_5b9e: Unknown result type (might be due to invalid IL or missing references) //IL_5ba3: Unknown result type (might be due to invalid IL or missing references) //IL_5ba9: Unknown result type (might be due to invalid IL or missing references) //IL_5bae: Unknown result type (might be due to invalid IL or missing references) //IL_5bb4: Unknown result type (might be due to invalid IL or missing references) //IL_5bbe: Unknown result type (might be due to invalid IL or missing references) //IL_5bc3: Unknown result type (might be due to invalid IL or missing references) //IL_5bc9: Unknown result type (might be due to invalid IL or missing references) //IL_5bce: Unknown result type (might be due to invalid IL or missing references) //IL_5bd4: Unknown result type (might be due to invalid IL or missing references) //IL_5bde: Unknown result type (might be due to invalid IL or missing references) //IL_5be3: Unknown result type (might be due to invalid IL or missing references) //IL_5bee: Unknown result type (might be due to invalid IL or missing references) //IL_5bf4: Unknown result type (might be due to invalid IL or missing references) //IL_5bf9: Unknown result type (might be due to invalid IL or missing references) //IL_5bff: Unknown result type (might be due to invalid IL or missing references) //IL_5c04: Unknown result type (might be due to invalid IL or missing references) //IL_5c0a: Unknown result type (might be due to invalid IL or missing references) //IL_5c0f: Unknown result type (might be due to invalid IL or missing references) //IL_5c15: Unknown result type (might be due to invalid IL or missing references) //IL_5c1f: Unknown result type (might be due to invalid IL or missing references) //IL_5c24: Unknown result type (might be due to invalid IL or missing references) //IL_5c29: Unknown result type (might be due to invalid IL or missing references) //IL_5c39: Unknown result type (might be due to invalid IL or missing references) //IL_5c3f: Unknown result type (might be due to invalid IL or missing references) //IL_5c44: Unknown result type (might be due to invalid IL or missing references) //IL_5c4a: Unknown result type (might be due to invalid IL or missing references) //IL_5c4f: Unknown result type (might be due to invalid IL or missing references) //IL_5c55: Unknown result type (might be due to invalid IL or missing references) //IL_5c5f: Unknown result type (might be due to invalid IL or missing references) //IL_5c64: Unknown result type (might be due to invalid IL or missing references) //IL_5c6a: Unknown result type (might be due to invalid IL or missing references) //IL_5c6f: Unknown result type (might be due to invalid IL or missing references) //IL_5c75: Unknown result type (might be due to invalid IL or missing references) //IL_5c7f: Unknown result type (might be due to invalid IL or missing references) //IL_5c84: Unknown result type (might be due to invalid IL or missing references) //IL_5c8f: Unknown result type (might be due to invalid IL or missing references) //IL_5c95: Unknown result type (might be due to invalid IL or missing references) //IL_5c9a: Unknown result type (might be due to invalid IL or missing references) //IL_5ca0: Unknown result type (might be due to invalid IL or missing references) //IL_5ca5: Unknown result type (might be due to invalid IL or missing references) //IL_5cab: Unknown result type (might be due to invalid IL or missing references) //IL_5cb0: Unknown result type (might be due to invalid IL or missing references) //IL_5cb6: Unknown result type (might be due to invalid IL or missing references) //IL_5cc0: Unknown result type (might be due to invalid IL or missing references) //IL_5cc5: Unknown result type (might be due to invalid IL or missing references) //IL_5cca: Unknown result type (might be due to invalid IL or missing references) //IL_5cda: Unknown result type (might be due to invalid IL or missing references) //IL_5ce0: Unknown result type (might be due to invalid IL or missing references) //IL_5ce5: Unknown result type (might be due to invalid IL or missing references) //IL_5ceb: Unknown result type (might be due to invalid IL or missing references) //IL_5cf0: Unknown result type (might be due to invalid IL or missing references) //IL_5cf6: Unknown result type (might be due to invalid IL or missing references) //IL_5d00: Unknown result type (might be due to invalid IL or missing references) //IL_5d05: Unknown result type (might be due to invalid IL or missing references) //IL_5d0b: Unknown result type (might be due to invalid IL or missing references) //IL_5d10: Unknown result type (might be due to invalid IL or missing references) //IL_5d16: Unknown result type (might be due to invalid IL or missing references) //IL_5d20: Unknown result type (might be due to invalid IL or missing references) //IL_5d25: Unknown result type (might be due to invalid IL or missing references) //IL_5d30: Unknown result type (might be due to invalid IL or missing references) //IL_5d36: Unknown result type (might be due to invalid IL or missing references) //IL_5d3b: Unknown result type (might be due to invalid IL or missing references) //IL_5d41: Unknown result type (might be due to invalid IL or missing references) //IL_5d46: Unknown result type (might be due to invalid IL or missing references) //IL_5d4c: Unknown result type (might be due to invalid IL or missing references) //IL_5d51: Unknown result type (might be due to invalid IL or missing references) //IL_5d57: Unknown result type (might be due to invalid IL or missing references) //IL_5d61: Unknown result type (might be due to invalid IL or missing references) //IL_5d66: Unknown result type (might be due to invalid IL or missing references) //IL_5d6b: Unknown result type (might be due to invalid IL or missing references) //IL_5d7b: Unknown result type (might be due to invalid IL or missing references) //IL_5d81: Unknown result type (might be due to invalid IL or missing references) //IL_5d86: Unknown result type (might be due to invalid IL or missing references) //IL_5d8c: Unknown result type (might be due to invalid IL or missing references) //IL_5d91: Unknown result type (might be due to invalid IL or missing references) //IL_5d97: Unknown result type (might be due to invalid IL or missing references) //IL_5da1: Unknown result type (might be due to invalid IL or missing references) //IL_5da6: Unknown result type (might be due to invalid IL or missing references) //IL_5dac: Unknown result type (might be due to invalid IL or missing references) //IL_5db1: Unknown result type (might be due to invalid IL or missing references) //IL_5db7: Unknown result type (might be due to invalid IL or missing references) //IL_5dc1: Unknown result type (might be due to invalid IL or missing references) //IL_5dc6: Unknown result type (might be due to invalid IL or missing references) //IL_5dd1: Unknown result type (might be due to invalid IL or missing references) //IL_5dd7: Unknown result type (might be due to invalid IL or missing references) //IL_5ddc: Unknown result type (might be due to invalid IL or missing references) //IL_5de2: Unknown result type (might be due to invalid IL or missing references) //IL_5de7: Unknown result type (might be due to invalid IL or missing references) //IL_5ded: Unknown result type (might be due to invalid IL or missing references) //IL_5df2: Unknown result type (might be due to invalid IL or missing references) //IL_5df8: Unknown result type (might be due to invalid IL or missing references) //IL_5e02: Unknown result type (might be due to invalid IL or missing references) //IL_5e07: Unknown result type (might be due to invalid IL or missing references) //IL_5e0c: Unknown result type (might be due to invalid IL or missing references) //IL_5e1c: Unknown result type (might be due to invalid IL or missing references) //IL_5e22: Unknown result type (might be due to invalid IL or missing references) //IL_5e27: Unknown result type (might be due to invalid IL or missing references) //IL_5e2d: Unknown result type (might be due to invalid IL or missing references) //IL_5e32: Unknown result type (might be due to invalid IL or missing references) //IL_5e38: Unknown result type (might be due to invalid IL or missing references) //IL_5e42: Unknown result type (might be due to invalid IL or missing references) //IL_5e47: Unknown result type (might be due to invalid IL or missing references) //IL_5e4d: Unknown result type (might be due to invalid IL or missing references) //IL_5e57: Unknown result type (might be due to invalid IL or missing references) //IL_5e5d: Unknown result type (might be due to invalid IL or missing references) //IL_5e62: Unknown result type (might be due to invalid IL or missing references) //IL_5e68: Unknown result type (might be due to invalid IL or missing references) //IL_5e6d: Unknown result type (might be due to invalid IL or missing references) //IL_5e72: Unknown result type (might be due to invalid IL or missing references) //IL_5e7d: Unknown result type (might be due to invalid IL or missing references) //IL_5e83: Unknown result type (might be due to invalid IL or missing references) //IL_5e88: Unknown result type (might be due to invalid IL or missing references) //IL_5e8e: Unknown result type (might be due to invalid IL or missing references) //IL_5e93: Unknown result type (might be due to invalid IL or missing references) //IL_5e99: Unknown result type (might be due to invalid IL or missing references) //IL_5ea3: Unknown result type (might be due to invalid IL or missing references) //IL_5ea8: Unknown result type (might be due to invalid IL or missing references) //IL_5eae: Unknown result type (might be due to invalid IL or missing references) //IL_5eb8: Unknown result type (might be due to invalid IL or missing references) //IL_5ebe: Unknown result type (might be due to invalid IL or missing references) //IL_5ec3: Unknown result type (might be due to invalid IL or missing references) //IL_5ec9: Unknown result type (might be due to invalid IL or missing references) //IL_5ece: Unknown result type (might be due to invalid IL or missing references) //IL_5ed3: Unknown result type (might be due to invalid IL or missing references) //IL_5ed8: Unknown result type (might be due to invalid IL or missing references) //IL_5ee8: Unknown result type (might be due to invalid IL or missing references) //IL_5eee: Unknown result type (might be due to invalid IL or missing references) //IL_5ef3: Unknown result type (might be due to invalid IL or missing references) //IL_5ef9: Unknown result type (might be due to invalid IL or missing references) //IL_5efe: Unknown result type (might be due to invalid IL or missing references) //IL_5f04: Unknown result type (might be due to invalid IL or missing references) //IL_5f0e: Unknown result type (might be due to invalid IL or missing references) //IL_5f13: Unknown result type (might be due to invalid IL or missing references) //IL_5f19: Unknown result type (might be due to invalid IL or missing references) //IL_5f23: Unknown result type (might be due to invalid IL or missing references) //IL_5f29: Unknown result type (might be due to invalid IL or missing references) //IL_5f2e: Unknown result type (might be due to invalid IL or missing references) //IL_5f34: Unknown result type (might be due to invalid IL or missing references) //IL_5f39: Unknown result type (might be due to invalid IL or missing references) //IL_5f3e: Unknown result type (might be due to invalid IL or missing references) //IL_5f44: Unknown result type (might be due to invalid IL or missing references) //IL_5f4e: Unknown result type (might be due to invalid IL or missing references) //IL_5f53: Unknown result type (might be due to invalid IL or missing references) //IL_5f5e: Unknown result type (might be due to invalid IL or missing references) //IL_5f64: Unknown result type (might be due to invalid IL or missing references) //IL_5f69: Unknown result type (might be due to invalid IL or missing references) //IL_5f6f: Unknown result type (might be due to invalid IL or missing references) //IL_5f74: Unknown result type (might be due to invalid IL or missing references) //IL_5f7a: Unknown result type (might be due to invalid IL or missing references) //IL_5f84: Unknown result type (might be due to invalid IL or missing references) //IL_5f89: Unknown result type (might be due to invalid IL or missing references) //IL_5f8f: Unknown result type (might be due to invalid IL or missing references) //IL_5f99: Unknown result type (might be due to invalid IL or missing references) //IL_5f9f: Unknown result type (might be due to invalid IL or missing references) //IL_5fa4: Unknown result type (might be due to invalid IL or missing references) //IL_5faa: Unknown result type (might be due to invalid IL or missing references) //IL_5faf: Unknown result type (might be due to invalid IL or missing references) //IL_5fb4: Unknown result type (might be due to invalid IL or missing references) //IL_5fba: Unknown result type (might be due to invalid IL or missing references) //IL_5fc4: Unknown result type (might be due to invalid IL or missing references) //IL_5fc9: Unknown result type (might be due to invalid IL or missing references) //IL_5fce: Unknown result type (might be due to invalid IL or missing references) //IL_5fde: Unknown result type (might be due to invalid IL or missing references) //IL_5fe4: Unknown result type (might be due to invalid IL or missing references) //IL_5fe9: Unknown result type (might be due to invalid IL or missing references) //IL_5fef: Unknown result type (might be due to invalid IL or missing references) //IL_5ff4: Unknown result type (might be due to invalid IL or missing references) //IL_5ffa: Unknown result type (might be due to invalid IL or missing references) //IL_6004: Unknown result type (might be due to invalid IL or missing references) //IL_6009: Unknown result type (might be due to invalid IL or missing references) //IL_600f: Unknown result type (might be due to invalid IL or missing references) //IL_6019: Unknown result type (might be due to invalid IL or missing references) //IL_601f: Unknown result type (might be due to invalid IL or missing references) //IL_6024: Unknown result type (might be due to invalid IL or missing references) //IL_602a: Unknown result type (might be due to invalid IL or missing references) //IL_602f: Unknown result type (might be due to invalid IL or missing references) //IL_6034: Unknown result type (might be due to invalid IL or missing references) //IL_603a: Unknown result type (might be due to invalid IL or missing references) //IL_6044: Unknown result type (might be due to invalid IL or missing references) //IL_6049: Unknown result type (might be due to invalid IL or missing references) //IL_6054: Unknown result type (might be due to invalid IL or missing references) //IL_605a: Unknown result type (might be due to invalid IL or missing references) //IL_605f: Unknown result type (might be due to invalid IL or missing references) //IL_6065: Unknown result type (might be due to invalid IL or missing references) //IL_606a: Unknown result type (might be due to invalid IL or missing references) //IL_6070: Unknown result type (might be due to invalid IL or missing references) //IL_607a: Unknown result type (might be due to invalid IL or missing references) //IL_607f: Unknown result type (might be due to invalid IL or missing references) //IL_6085: Unknown result type (might be due to invalid IL or missing references) //IL_608f: Unknown result type (might be due to invalid IL or missing references) //IL_6095: Unknown result type (might be due to invalid IL or missing references) //IL_609a: Unknown result type (might be due to invalid IL or missing references) //IL_60a0: Unknown result type (might be due to invalid IL or missing references) //IL_60a5: Unknown result type (might be due to invalid IL or missing references) //IL_60aa: Unknown result type (might be due to invalid IL or missing references) //IL_60b0: Unknown result type (might be due to invalid IL or missing references) //IL_60ba: Unknown result type (might be due to invalid IL or missing references) //IL_60bf: Unknown result type (might be due to invalid IL or missing references) //IL_60c4: Unknown result type (might be due to invalid IL or missing references) //IL_60d4: Unknown result type (might be due to invalid IL or missing references) //IL_60da: Unknown result type (might be due to invalid IL or missing references) //IL_60df: Unknown result type (might be due to invalid IL or missing references) //IL_60e5: Unknown result type (might be due to invalid IL or missing references) //IL_60ea: Unknown result type (might be due to invalid IL or missing references) //IL_60f0: Unknown result type (might be due to invalid IL or missing references) //IL_60fa: Unknown result type (might be due to invalid IL or missing references) //IL_60ff: Unknown result type (might be due to invalid IL or missing references) //IL_6105: Unknown result type (might be due to invalid IL or missing references) //IL_610f: Unknown result type (might be due to invalid IL or missing references) //IL_6115: Unknown result type (might be due to invalid IL or missing references) //IL_611a: Unknown result type (might be due to invalid IL or missing references) //IL_6120: Unknown result type (might be due to invalid IL or missing references) //IL_6125: Unknown result type (might be due to invalid IL or missing references) //IL_612a: Unknown result type (might be due to invalid IL or missing references) //IL_6130: Unknown result type (might be due to invalid IL or missing references) //IL_613a: Unknown result type (might be due to invalid IL or missing references) //IL_613f: Unknown result type (might be due to invalid IL or missing references) //IL_614a: Unknown result type (might be due to invalid IL or missing references) //IL_6150: Unknown result type (might be due to invalid IL or missing references) //IL_6155: Unknown result type (might be due to invalid IL or missing references) //IL_615b: Unknown result type (might be due to invalid IL or missing references) //IL_6160: Unknown result type (might be due to invalid IL or missing references) //IL_6166: Unknown result type (might be due to invalid IL or missing references) //IL_6170: Unknown result type (might be due to invalid IL or missing references) //IL_6175: Unknown result type (might be due to invalid IL or missing references) //IL_617b: Unknown result type (might be due to invalid IL or missing references) //IL_6185: Unknown result type (might be due to invalid IL or missing references) //IL_618b: Unknown result type (might be due to invalid IL or missing references) //IL_6190: Unknown result type (might be due to invalid IL or missing references) //IL_6196: Unknown result type (might be due to invalid IL or missing references) //IL_619b: Unknown result type (might be due to invalid IL or missing references) //IL_61a0: Unknown result type (might be due to invalid IL or missing references) //IL_61a6: Unknown result type (might be due to invalid IL or missing references) //IL_61b0: Unknown result type (might be due to invalid IL or missing references) //IL_61b5: Unknown result type (might be due to invalid IL or missing references) //IL_61ba: Unknown result type (might be due to invalid IL or missing references) //IL_61ca: Unknown result type (might be due to invalid IL or missing references) //IL_61d0: Unknown result type (might be due to invalid IL or missing references) //IL_61d5: Unknown result type (might be due to invalid IL or missing references) //IL_61db: Unknown result type (might be due to invalid IL or missing references) //IL_61e0: Unknown result type (might be due to invalid IL or missing references) //IL_61e6: Unknown result type (might be due to invalid IL or missing references) //IL_61f0: Unknown result type (might be due to invalid IL or missing references) //IL_61f5: Unknown result type (might be due to invalid IL or missing references) //IL_61fb: Unknown result type (might be due to invalid IL or missing references) //IL_6205: Unknown result type (might be due to invalid IL or missing references) //IL_620b: Unknown result type (might be due to invalid IL or missing references) //IL_6210: Unknown result type (might be due to invalid IL or missing references) //IL_6216: Unknown result type (might be due to invalid IL or missing references) //IL_621b: Unknown result type (might be due to invalid IL or missing references) //IL_6220: Unknown result type (might be due to invalid IL or missing references) //IL_6226: Unknown result type (might be due to invalid IL or missing references) //IL_6230: Unknown result type (might be due to invalid IL or missing references) //IL_6235: Unknown result type (might be due to invalid IL or missing references) //IL_6240: Unknown result type (might be due to invalid IL or missing references) //IL_6246: Unknown result type (might be due to invalid IL or missing references) //IL_624b: Unknown result type (might be due to invalid IL or missing references) //IL_6251: Unknown result type (might be due to invalid IL or missing references) //IL_6256: Unknown result type (might be due to invalid IL or missing references) //IL_625c: Unknown result type (might be due to invalid IL or missing references) //IL_6266: Unknown result type (might be due to invalid IL or missing references) //IL_626b: Unknown result type (might be due to invalid IL or missing references) //IL_6271: Unknown result type (might be due to invalid IL or missing references) //IL_627b: Unknown result type (might be due to invalid IL or missing references) //IL_6281: Unknown result type (might be due to invalid IL or missing references) //IL_6286: Unknown result type (might be due to invalid IL or missing references) //IL_628c: Unknown result type (might be due to invalid IL or missing references) //IL_6291: Unknown result type (might be due to invalid IL or missing references) //IL_6296: Unknown result type (might be due to invalid IL or missing references) //IL_629c: Unknown result type (might be due to invalid IL or missing references) //IL_62a6: Unknown result type (might be due to invalid IL or missing references) //IL_62ab: Unknown result type (might be due to invalid IL or missing references) //IL_62b0: Unknown result type (might be due to invalid IL or missing references) //IL_62c0: Unknown result type (might be due to invalid IL or missing references) //IL_62c6: Unknown result type (might be due to invalid IL or missing references) //IL_62cb: Unknown result type (might be due to invalid IL or missing references) //IL_62d1: Unknown result type (might be due to invalid IL or missing references) //IL_62d6: Unknown result type (might be due to invalid IL or missing references) //IL_62dc: Unknown result type (might be due to invalid IL or missing references) //IL_62e6: Unknown result type (might be due to invalid IL or missing references) //IL_62eb: Unknown result type (might be due to invalid IL or missing references) //IL_62f1: Unknown result type (might be due to invalid IL or missing references) //IL_62fb: Unknown result type (might be due to invalid IL or missing references) //IL_6301: Unknown result type (might be due to invalid IL or missing references) //IL_6306: Unknown result type (might be due to invalid IL or missing references) //IL_630c: Unknown result type (might be due to invalid IL or missing references) //IL_6311: Unknown result type (might be due to invalid IL or missing references) //IL_6316: Unknown result type (might be due to invalid IL or missing references) //IL_631c: Unknown result type (might be due to invalid IL or missing references) //IL_6326: Unknown result type (might be due to invalid IL or missing references) //IL_632b: Unknown result type (might be due to invalid IL or missing references) //IL_6336: Unknown result type (might be due to invalid IL or missing references) //IL_633c: Unknown result type (might be due to invalid IL or missing references) //IL_6341: Unknown result type (might be due to invalid IL or missing references) //IL_6347: Unknown result type (might be due to invalid IL or missing references) //IL_634c: Unknown result type (might be due to invalid IL or missing references) //IL_6352: Unknown result type (might be due to invalid IL or missing references) //IL_635c: Unknown result type (might be due to invalid IL or missing references) //IL_6361: Unknown result type (might be due to invalid IL or missing references) //IL_6367: Unknown result type (might be due to invalid IL or missing references) //IL_6371: Unknown result type (might be due to invalid IL or missing references) //IL_6377: Unknown result type (might be due to invalid IL or missing references) //IL_637c: Unknown result type (might be due to invalid IL or missing references) //IL_6382: Unknown result type (might be due to invalid IL or missing references) //IL_6387: Unknown result type (might be due to invalid IL or missing references) //IL_638c: Unknown result type (might be due to invalid IL or missing references) //IL_6392: Unknown result type (might be due to invalid IL or missing references) //IL_639c: Unknown result type (might be due to invalid IL or missing references) //IL_63a1: Unknown result type (might be due to invalid IL or missing references) //IL_63a6: Unknown result type (might be due to invalid IL or missing references) //IL_63b6: Unknown result type (might be due to invalid IL or missing references) //IL_63bc: Unknown result type (might be due to invalid IL or missing references) //IL_63c1: Unknown result type (might be due to invalid IL or missing references) //IL_63c7: Unknown result type (might be due to invalid IL or missing references) //IL_63cc: Unknown result type (might be due to invalid IL or missing references) //IL_63d2: Unknown result type (might be due to invalid IL or missing references) //IL_63dc: Unknown result type (might be due to invalid IL or missing references) //IL_63e1: Unknown result type (might be due to invalid IL or missing references) //IL_63e7: Unknown result type (might be due to invalid IL or missing references) //IL_63f1: Unknown result type (might be due to invalid IL or missing references) //IL_63f7: Unknown result type (might be due to invalid IL or missing references) //IL_63fc: Unknown result type (might be due to invalid IL or missing references) //IL_6402: Unknown result type (might be due to invalid IL or missing references) //IL_6407: Unknown result type (might be due to invalid IL or missing references) //IL_640c: Unknown result type (might be due to invalid IL or missing references) //IL_6412: Unknown result type (might be due to invalid IL or missing references) //IL_641c: Unknown result type (might be due to invalid IL or missing references) //IL_6421: Unknown result type (might be due to invalid IL or missing references) //IL_642c: Unknown result type (might be due to invalid IL or missing references) //IL_6432: Unknown result type (might be due to invalid IL or missing references) //IL_6437: Unknown result type (might be due to invalid IL or missing references) //IL_643d: Unknown result type (might be due to invalid IL or missing references) //IL_6442: Unknown result type (might be due to invalid IL or missing references) //IL_6448: Unknown result type (might be due to invalid IL or missing references) //IL_6452: Unknown result type (might be due to invalid IL or missing references) //IL_6457: Unknown result type (might be due to invalid IL or missing references) //IL_645d: Unknown result type (might be due to invalid IL or missing references) //IL_6467: Unknown result type (might be due to invalid IL or missing references) //IL_646d: Unknown result type (might be due to invalid IL or missing references) //IL_6472: Unknown result type (might be due to invalid IL or missing references) //IL_6478: Unknown result type (might be due to invalid IL or missing references) //IL_647d: Unknown result type (might be due to invalid IL or missing references) //IL_6482: Unknown result type (might be due to invalid IL or missing references) //IL_6488: Unknown result type (might be due to invalid IL or missing references) //IL_6492: Unknown result type (might be due to invalid IL or missing references) //IL_6497: Unknown result type (might be due to invalid IL or missing references) //IL_649c: Unknown result type (might be due to invalid IL or missing references) //IL_64ac: Unknown result type (might be due to invalid IL or missing references) //IL_64b2: Unknown result type (might be due to invalid IL or missing references) //IL_64b7: Unknown result type (might be due to invalid IL or missing references) //IL_64bd: Unknown result type (might be due to invalid IL or missing references) //IL_64c2: Unknown result type (might be due to invalid IL or missing references) //IL_64c8: Unknown result type (might be due to invalid IL or missing references) //IL_64d2: Unknown result type (might be due to invalid IL or missing references) //IL_64d7: Unknown result type (might be due to invalid IL or missing references) //IL_64dd: Unknown result type (might be due to invalid IL or missing references) //IL_64e7: Unknown result type (might be due to invalid IL or missing references) //IL_64ed: Unknown result type (might be due to invalid IL or missing references) //IL_64f2: Unknown result type (might be due to invalid IL or missing references) //IL_64f8: Unknown result type (might be due to invalid IL or missing references) //IL_64fd: Unknown result type (might be due to invalid IL or missing references) //IL_6502: Unknown result type (might be due to invalid IL or missing references) //IL_6508: Unknown result type (might be due to invalid IL or missing references) //IL_6512: Unknown result type (might be due to invalid IL or missing references) //IL_6517: Unknown result type (might be due to invalid IL or missing references) //IL_6522: Unknown result type (might be due to invalid IL or missing references) //IL_6528: Unknown result type (might be due to invalid IL or missing references) //IL_652d: Unknown result type (might be due to invalid IL or missing references) //IL_6533: Unknown result type (might be due to invalid IL or missing references) //IL_6538: Unknown result type (might be due to invalid IL or missing references) //IL_653e: Unknown result type (might be due to invalid IL or missing references) //IL_6548: Unknown result type (might be due to invalid IL or missing references) //IL_654d: Unknown result type (might be due to invalid IL or missing references) //IL_6553: Unknown result type (might be due to invalid IL or missing references) //IL_655d: Unknown result type (might be due to invalid IL or missing references) //IL_6563: Unknown result type (might be due to invalid IL or missing references) //IL_6568: Unknown result type (might be due to invalid IL or missing references) //IL_656e: Unknown result type (might be due to invalid IL or missing references) //IL_6573: Unknown result type (might be due to invalid IL or missing references) //IL_6578: Unknown result type (might be due to invalid IL or missing references) //IL_657e: Unknown result type (might be due to invalid IL or missing references) //IL_6588: Unknown result type (might be due to invalid IL or missing references) //IL_658d: Unknown result type (might be due to invalid IL or missing references) //IL_6592: Unknown result type (might be due to invalid IL or missing references) //IL_65a2: Unknown result type (might be due to invalid IL or missing references) //IL_65a8: Unknown result type (might be due to invalid IL or missing references) //IL_65ad: Unknown result type (might be due to invalid IL or missing references) //IL_65b3: Unknown result type (might be due to invalid IL or missing references) //IL_65b8: Unknown result type (might be due to invalid IL or missing references) //IL_65be: Unknown result type (might be due to invalid IL or missing references) //IL_65c8: Unknown result type (might be due to invalid IL or missing references) //IL_65cd: Unknown result type (might be due to invalid IL or missing references) //IL_65d3: Unknown result type (might be due to invalid IL or missing references) //IL_65dd: Unknown result type (might be due to invalid IL or missing references) //IL_65e3: Unknown result type (might be due to invalid IL or missing references) //IL_65e8: Unknown result type (might be due to invalid IL or missing references) //IL_65ee: Unknown result type (might be due to invalid IL or missing references) //IL_65f3: Unknown result type (might be due to invalid IL or missing references) //IL_65f8: Unknown result type (might be due to invalid IL or missing references) //IL_6603: Unknown result type (might be due to invalid IL or missing references) //IL_6609: Unknown result type (might be due to invalid IL or missing references) //IL_660e: Unknown result type (might be due to invalid IL or missing references) //IL_6614: Unknown result type (might be due to invalid IL or missing references) //IL_6619: Unknown result type (might be due to invalid IL or missing references) //IL_661f: Unknown result type (might be due to invalid IL or missing references) //IL_6629: Unknown result type (might be due to invalid IL or missing references) //IL_662e: Unknown result type (might be due to invalid IL or missing references) //IL_6634: Unknown result type (might be due to invalid IL or missing references) //IL_663e: Unknown result type (might be due to invalid IL or missing references) //IL_6644: Unknown result type (might be due to invalid IL or missing references) //IL_6649: Unknown result type (might be due to invalid IL or missing references) //IL_664f: Unknown result type (might be due to invalid IL or missing references) //IL_6654: Unknown result type (might be due to invalid IL or missing references) //IL_6659: Unknown result type (might be due to invalid IL or missing references) //IL_665e: Unknown result type (might be due to invalid IL or missing references) //IL_666e: Unknown result type (might be due to invalid IL or missing references) //IL_6674: Unknown result type (might be due to invalid IL or missing references) //IL_6679: Unknown result type (might be due to invalid IL or missing references) //IL_667f: Unknown result type (might be due to invalid IL or missing references) //IL_6684: Unknown result type (might be due to invalid IL or missing references) //IL_668a: Unknown result type (might be due to invalid IL or missing references) //IL_6694: Unknown result type (might be due to invalid IL or missing references) //IL_6699: Unknown result type (might be due to invalid IL or missing references) //IL_669f: Unknown result type (might be due to invalid IL or missing references) //IL_66a9: Unknown result type (might be due to invalid IL or missing references) //IL_66af: Unknown result type (might be due to invalid IL or missing references) //IL_66b4: Unknown result type (might be due to invalid IL or missing references) //IL_66ba: Unknown result type (might be due to invalid IL or missing references) //IL_66bf: Unknown result type (might be due to invalid IL or missing references) //IL_66c4: Unknown result type (might be due to invalid IL or missing references) //IL_66ca: Unknown result type (might be due to invalid IL or missing references) //IL_66d4: Unknown result type (might be due to invalid IL or missing references) //IL_66d9: Unknown result type (might be due to invalid IL or missing references) //IL_66e4: Unknown result type (might be due to invalid IL or missing references) //IL_66ea: Unknown result type (might be due to invalid IL or missing references) //IL_66ef: Unknown result type (might be due to invalid IL or missing references) //IL_66f5: Unknown result type (might be due to invalid IL or missing references) //IL_66fa: Unknown result type (might be due to invalid IL or missing references) //IL_6700: Unknown result type (might be due to invalid IL or missing references) //IL_670a: Unknown result type (might be due to invalid IL or missing references) //IL_670f: Unknown result type (might be due to invalid IL or missing references) //IL_6715: Unknown result type (might be due to invalid IL or missing references) //IL_671f: Unknown result type (might be due to invalid IL or missing references) //IL_6725: Unknown result type (might be due to invalid IL or missing references) //IL_672a: Unknown result type (might be due to invalid IL or missing references) //IL_6730: Unknown result type (might be due to invalid IL or missing references) //IL_6735: Unknown result type (might be due to invalid IL or missing references) //IL_673a: Unknown result type (might be due to invalid IL or missing references) //IL_6740: Unknown result type (might be due to invalid IL or missing references) //IL_674a: Unknown result type (might be due to invalid IL or missing references) //IL_674f: Unknown result type (might be due to invalid IL or missing references) //IL_6754: Unknown result type (might be due to invalid IL or missing references) //IL_6764: Unknown result type (might be due to invalid IL or missing references) //IL_676a: Unknown result type (might be due to invalid IL or missing references) //IL_676f: Unknown result type (might be due to invalid IL or missing references) //IL_6775: Unknown result type (might be due to invalid IL or missing references) //IL_677a: Unknown result type (might be due to invalid IL or missing references) //IL_6780: Unknown result type (might be due to invalid IL or missing references) //IL_678a: Unknown result type (might be due to invalid IL or missing references) //IL_678f: Unknown result type (might be due to invalid IL or missing references) //IL_6795: Unknown result type (might be due to invalid IL or missing references) //IL_679f: Unknown result type (might be due to invalid IL or missing references) //IL_67a5: Unknown result type (might be due to invalid IL or missing references) //IL_67aa: Unknown result type (might be due to invalid IL or missing references) //IL_67b0: Unknown result type (might be due to invalid IL or missing references) //IL_67b5: Unknown result type (might be due to invalid IL or missing references) //IL_67ba: Unknown result type (might be due to invalid IL or missing references) //IL_67c0: Unknown result type (might be due to invalid IL or missing references) //IL_67ca: Unknown result type (might be due to invalid IL or missing references) //IL_67cf: Unknown result type (might be due to invalid IL or missing references) //IL_67da: Unknown result type (might be due to invalid IL or missing references) //IL_67e0: Unknown result type (might be due to invalid IL or missing references) //IL_67e5: Unknown result type (might be due to invalid IL or missing references) //IL_67eb: Unknown result type (might be due to invalid IL or missing references) //IL_67f0: Unknown result type (might be due to invalid IL or missing references) //IL_67f6: Unknown result type (might be due to invalid IL or missing references) //IL_6800: Unknown result type (might be due to invalid IL or missing references) //IL_6805: Unknown result type (might be due to invalid IL or missing references) //IL_680b: Unknown result type (might be due to invalid IL or missing references) //IL_6815: Unknown result type (might be due to invalid IL or missing references) //IL_681b: Unknown result type (might be due to invalid IL or missing references) //IL_6820: Unknown result type (might be due to invalid IL or missing references) //IL_6826: Unknown result type (might be due to invalid IL or missing references) //IL_682b: Unknown result type (might be due to invalid IL or missing references) //IL_6830: Unknown result type (might be due to invalid IL or missing references) //IL_6836: Unknown result type (might be due to invalid IL or missing references) //IL_6840: Unknown result type (might be due to invalid IL or missing references) //IL_6845: Unknown result type (might be due to invalid IL or missing references) //IL_684a: Unknown result type (might be due to invalid IL or missing references) //IL_685a: Unknown result type (might be due to invalid IL or missing references) //IL_6860: Unknown result type (might be due to invalid IL or missing references) //IL_6865: Unknown result type (might be due to invalid IL or missing references) //IL_686b: Unknown result type (might be due to invalid IL or missing references) //IL_6870: Unknown result type (might be due to invalid IL or missing references) //IL_6876: Unknown result type (might be due to invalid IL or missing references) //IL_6880: Unknown result type (might be due to invalid IL or missing references) //IL_6885: Unknown result type (might be due to invalid IL or missing references) //IL_688b: Unknown result type (might be due to invalid IL or missing references) //IL_6895: Unknown result type (might be due to invalid IL or missing references) //IL_689b: Unknown result type (might be due to invalid IL or missing references) //IL_68a0: Unknown result type (might be due to invalid IL or missing references) //IL_68a6: Unknown result type (might be due to invalid IL or missing references) //IL_68ab: Unknown result type (might be due to invalid IL or missing references) //IL_68b0: Unknown result type (might be due to invalid IL or missing references) //IL_68b6: Unknown result type (might be due to invalid IL or missing references) //IL_68c0: Unknown result type (might be due to invalid IL or missing references) //IL_68c5: Unknown result type (might be due to invalid IL or missing references) //IL_68d0: Unknown result type (might be due to invalid IL or missing references) //IL_68d6: Unknown result type (might be due to invalid IL or missing references) //IL_68db: Unknown result type (might be due to invalid IL or missing references) //IL_68e1: Unknown result type (might be due to invalid IL or missing references) //IL_68e6: Unknown result type (might be due to invalid IL or missing references) //IL_68ec: Unknown result type (might be due to invalid IL or missing references) //IL_68f6: Unknown result type (might be due to invalid IL or missing references) //IL_68fb: Unknown result type (might be due to invalid IL or missing references) //IL_6901: Unknown result type (might be due to invalid IL or missing references) //IL_690b: Unknown result type (might be due to invalid IL or missing references) //IL_6911: Unknown result type (might be due to invalid IL or missing references) //IL_6916: Unknown result type (might be due to invalid IL or missing references) //IL_691c: Unknown result type (might be due to invalid IL or missing references) //IL_6921: Unknown result type (might be due to invalid IL or missing references) //IL_6926: Unknown result type (might be due to invalid IL or missing references) //IL_692c: Unknown result type (might be due to invalid IL or missing references) //IL_6936: Unknown result type (might be due to invalid IL or missing references) //IL_693b: Unknown result type (might be due to invalid IL or missing references) //IL_6940: Unknown result type (might be due to invalid IL or missing references) //IL_6950: Unknown result type (might be due to invalid IL or missing references) //IL_6956: Unknown result type (might be due to invalid IL or missing references) //IL_695b: Unknown result type (might be due to invalid IL or missing references) //IL_6961: Unknown result type (might be due to invalid IL or missing references) //IL_6966: Unknown result type (might be due to invalid IL or missing references) //IL_696c: Unknown result type (might be due to invalid IL or missing references) //IL_6976: Unknown result type (might be due to invalid IL or missing references) //IL_697b: Unknown result type (might be due to invalid IL or missing references) //IL_6981: Unknown result type (might be due to invalid IL or missing references) //IL_698b: Unknown result type (might be due to invalid IL or missing references) //IL_6991: Unknown result type (might be due to invalid IL or missing references) //IL_6996: Unknown result type (might be due to invalid IL or missing references) //IL_699c: Unknown result type (might be due to invalid IL or missing references) //IL_69a1: Unknown result type (might be due to invalid IL or missing references) //IL_69a6: Unknown result type (might be due to invalid IL or missing references) //IL_69ac: Unknown result type (might be due to invalid IL or missing references) //IL_69b6: Unknown result type (might be due to invalid IL or missing references) //IL_69bb: Unknown result type (might be due to invalid IL or missing references) //IL_69c6: Unknown result type (might be due to invalid IL or missing references) //IL_69cc: Unknown result type (might be due to invalid IL or missing references) //IL_69d1: Unknown result type (might be due to invalid IL or missing references) //IL_69d7: Unknown result type (might be due to invalid IL or missing references) //IL_69dc: Unknown result type (might be due to invalid IL or missing references) //IL_69e2: Unknown result type (might be due to invalid IL or missing references) //IL_69ec: Unknown result type (might be due to invalid IL or missing references) //IL_69f1: Unknown result type (might be due to invalid IL or missing references) //IL_69f7: Unknown result type (might be due to invalid IL or missing references) //IL_6a01: Unknown result type (might be due to invalid IL or missing references) //IL_6a07: Unknown result type (might be due to invalid IL or missing references) //IL_6a0c: Unknown result type (might be due to invalid IL or missing references) //IL_6a12: Unknown result type (might be due to invalid IL or missing references) //IL_6a17: Unknown result type (might be due to invalid IL or missing references) //IL_6a1c: Unknown result type (might be due to invalid IL or missing references) //IL_6a22: Unknown result type (might be due to invalid IL or missing references) //IL_6a2c: Unknown result type (might be due to invalid IL or missing references) //IL_6a31: Unknown result type (might be due to invalid IL or missing references) //IL_6a36: Unknown result type (might be due to invalid IL or missing references) //IL_6a46: Unknown result type (might be due to invalid IL or missing references) //IL_6a4c: Unknown result type (might be due to invalid IL or missing references) //IL_6a51: Unknown result type (might be due to invalid IL or missing references) //IL_6a57: Unknown result type (might be due to invalid IL or missing references) //IL_6a5c: Unknown result type (might be due to invalid IL or missing references) //IL_6a62: Unknown result type (might be due to invalid IL or missing references) //IL_6a6c: Unknown result type (might be due to invalid IL or missing references) //IL_6a71: Unknown result type (might be due to invalid IL or missing references) //IL_6a77: Unknown result type (might be due to invalid IL or missing references) //IL_6a81: Unknown result type (might be due to invalid IL or missing references) //IL_6a87: Unknown result type (might be due to invalid IL or missing references) //IL_6a8c: Unknown result type (might be due to invalid IL or missing references) //IL_6a92: Unknown result type (might be due to invalid IL or missing references) //IL_6a97: Unknown result type (might be due to invalid IL or missing references) //IL_6a9c: Unknown result type (might be due to invalid IL or missing references) //IL_6aa2: Unknown result type (might be due to invalid IL or missing references) //IL_6aac: Unknown result type (might be due to invalid IL or missing references) //IL_6ab1: Unknown result type (might be due to invalid IL or missing references) //IL_6abc: Unknown result type (might be due to invalid IL or missing references) //IL_6ac2: Unknown result type (might be due to invalid IL or missing references) //IL_6ac7: Unknown result type (might be due to invalid IL or missing references) //IL_6acd: Unknown result type (might be due to invalid IL or missing references) //IL_6ad2: Unknown result type (might be due to invalid IL or missing references) //IL_6ad8: Unknown result type (might be due to invalid IL or missing references) //IL_6ae2: Unknown result type (might be due to invalid IL or missing references) //IL_6ae7: Unknown result type (might be due to invalid IL or missing references) //IL_6aed: Unknown result type (might be due to invalid IL or missing references) //IL_6af7: Unknown result type (might be due to invalid IL or missing references) //IL_6afd: Unknown result type (might be due to invalid IL or missing references) //IL_6b02: Unknown result type (might be due to invalid IL or missing references) //IL_6b08: Unknown result type (might be due to invalid IL or missing references) //IL_6b0d: Unknown result type (might be due to invalid IL or missing references) //IL_6b12: Unknown result type (might be due to invalid IL or missing references) //IL_6b18: Unknown result type (might be due to invalid IL or missing references) //IL_6b22: Unknown result type (might be due to invalid IL or missing references) //IL_6b27: Unknown result type (might be due to invalid IL or missing references) //IL_6b2c: Unknown result type (might be due to invalid IL or missing references) //IL_6b3c: Unknown result type (might be due to invalid IL or missing references) //IL_6b42: Unknown result type (might be due to invalid IL or missing references) //IL_6b47: Unknown result type (might be due to invalid IL or missing references) //IL_6b4d: Unknown result type (might be due to invalid IL or missing references) //IL_6b52: Unknown result type (might be due to invalid IL or missing references) //IL_6b58: Unknown result type (might be due to invalid IL or missing references) //IL_6b62: Unknown result type (might be due to invalid IL or missing references) //IL_6b67: Unknown result type (might be due to invalid IL or missing references) //IL_6b6d: Unknown result type (might be due to invalid IL or missing references) //IL_6b77: Unknown result type (might be due to invalid IL or missing references) //IL_6b7d: Unknown result type (might be due to invalid IL or missing references) //IL_6b82: Unknown result type (might be due to invalid IL or missing references) //IL_6b88: Unknown result type (might be due to invalid IL or missing references) //IL_6b8d: Unknown result type (might be due to invalid IL or missing references) //IL_6b92: Unknown result type (might be due to invalid IL or missing references) //IL_6b98: Unknown result type (might be due to invalid IL or missing references) //IL_6ba2: Unknown result type (might be due to invalid IL or missing references) //IL_6ba7: Unknown result type (might be due to invalid IL or missing references) //IL_6bb2: Unknown result type (might be due to invalid IL or missing references) //IL_6bb8: Unknown result type (might be due to invalid IL or missing references) //IL_6bbd: Unknown result type (might be due to invalid IL or missing references) //IL_6bc3: Unknown result type (might be due to invalid IL or missing references) //IL_6bc8: Unknown result type (might be due to invalid IL or missing references) //IL_6bce: Unknown result type (might be due to invalid IL or missing references) //IL_6bd8: Unknown result type (might be due to invalid IL or missing references) //IL_6bdd: Unknown result type (might be due to invalid IL or missing references) //IL_6be3: Unknown result type (might be due to invalid IL or missing references) //IL_6bed: Unknown result type (might be due to invalid IL or missing references) //IL_6bf3: Unknown result type (might be due to invalid IL or missing references) //IL_6bf8: Unknown result type (might be due to invalid IL or missing references) //IL_6bfe: Unknown result type (might be due to invalid IL or missing references) //IL_6c03: Unknown result type (might be due to invalid IL or missing references) //IL_6c08: Unknown result type (might be due to invalid IL or missing references) //IL_6c0e: Unknown result type (might be due to invalid IL or missing references) //IL_6c18: Unknown result type (might be due to invalid IL or missing references) //IL_6c1d: Unknown result type (might be due to invalid IL or missing references) //IL_6c22: Unknown result type (might be due to invalid IL or missing references) //IL_6c32: Unknown result type (might be due to invalid IL or missing references) //IL_6c38: Unknown result type (might be due to invalid IL or missing references) //IL_6c3d: Unknown result type (might be due to invalid IL or missing references) //IL_6c43: Unknown result type (might be due to invalid IL or missing references) //IL_6c48: Unknown result type (might be due to invalid IL or missing references) //IL_6c4e: Unknown result type (might be due to invalid IL or missing references) //IL_6c58: Unknown result type (might be due to invalid IL or missing references) //IL_6c5d: Unknown result type (might be due to invalid IL or missing references) //IL_6c63: Unknown result type (might be due to invalid IL or missing references) //IL_6c6d: Unknown result type (might be due to invalid IL or missing references) //IL_6c73: Unknown result type (might be due to invalid IL or missing references) //IL_6c78: Unknown result type (might be due to invalid IL or missing references) //IL_6c7e: Unknown result type (might be due to invalid IL or missing references) //IL_6c83: Unknown result type (might be due to invalid IL or missing references) //IL_6c88: Unknown result type (might be due to invalid IL or missing references) //IL_6c8e: Unknown result type (might be due to invalid IL or missing references) //IL_6c98: Unknown result type (might be due to invalid IL or missing references) //IL_6c9d: Unknown result type (might be due to invalid IL or missing references) //IL_6ca8: Unknown result type (might be due to invalid IL or missing references) //IL_6cae: Unknown result type (might be due to invalid IL or missing references) //IL_6cb3: Unknown result type (might be due to invalid IL or missing references) //IL_6cb9: Unknown result type (might be due to invalid IL or missing references) //IL_6cbe: Unknown result type (might be due to invalid IL or missing references) //IL_6cc4: Unknown result type (might be due to invalid IL or missing references) //IL_6cce: Unknown result type (might be due to invalid IL or missing references) //IL_6cd3: Unknown result type (might be due to invalid IL or missing references) //IL_6cd9: Unknown result type (might be due to invalid IL or missing references) //IL_6ce3: Unknown result type (might be due to invalid IL or missing references) //IL_6ce9: Unknown result type (might be due to invalid IL or missing references) //IL_6cee: Unknown result type (might be due to invalid IL or missing references) //IL_6cf4: Unknown result type (might be due to invalid IL or missing references) //IL_6cf9: Unknown result type (might be due to invalid IL or missing references) //IL_6cfe: Unknown result type (might be due to invalid IL or missing references) //IL_6d04: Unknown result type (might be due to invalid IL or missing references) //IL_6d0e: Unknown result type (might be due to invalid IL or missing references) //IL_6d13: Unknown result type (might be due to invalid IL or missing references) //IL_6d18: Unknown result type (might be due to invalid IL or missing references) //IL_6d28: Unknown result type (might be due to invalid IL or missing references) //IL_6d2e: Unknown result type (might be due to invalid IL or missing references) //IL_6d33: Unknown result type (might be due to invalid IL or missing references) //IL_6d39: Unknown result type (might be due to invalid IL or missing references) //IL_6d3e: Unknown result type (might be due to invalid IL or missing references) //IL_6d44: Unknown result type (might be due to invalid IL or missing references) //IL_6d4e: Unknown result type (might be due to invalid IL or missing references) //IL_6d54: Unknown result type (might be due to invalid IL or missing references) //IL_6d59: Unknown result type (might be due to invalid IL or missing references) //IL_6d5f: Unknown result type (might be due to invalid IL or missing references) //IL_6d64: Unknown result type (might be due to invalid IL or missing references) //IL_6d69: Unknown result type (might be due to invalid IL or missing references) //IL_6d74: Unknown result type (might be due to invalid IL or missing references) //IL_6d7a: Unknown result type (might be due to invalid IL or missing references) //IL_6d7f: Unknown result type (might be due to invalid IL or missing references) //IL_6d85: Unknown result type (might be due to invalid IL or missing references) //IL_6d8a: Unknown result type (might be due to invalid IL or missing references) //IL_6d90: Unknown result type (might be due to invalid IL or missing references) //IL_6d9a: Unknown result type (might be due to invalid IL or missing references) //IL_6d9f: Unknown result type (might be due to invalid IL or missing references) //IL_6da5: Unknown result type (might be due to invalid IL or missing references) //IL_6daf: Unknown result type (might be due to invalid IL or missing references) //IL_6db5: Unknown result type (might be due to invalid IL or missing references) //IL_6dba: Unknown result type (might be due to invalid IL or missing references) //IL_6dc0: Unknown result type (might be due to invalid IL or missing references) //IL_6dc5: Unknown result type (might be due to invalid IL or missing references) //IL_6dca: Unknown result type (might be due to invalid IL or missing references) //IL_6dcf: Unknown result type (might be due to invalid IL or missing references) //IL_6ddf: Unknown result type (might be due to invalid IL or missing references) //IL_6de5: Unknown result type (might be due to invalid IL or missing references) //IL_6dea: Unknown result type (might be due to invalid IL or missing references) //IL_6df0: Unknown result type (might be due to invalid IL or missing references) //IL_6df5: Unknown result type (might be due to invalid IL or missing references) //IL_6dfb: Unknown result type (might be due to invalid IL or missing references) //IL_6e05: Unknown result type (might be due to invalid IL or missing references) //IL_6e0b: Unknown result type (might be due to invalid IL or missing references) //IL_6e10: Unknown result type (might be due to invalid IL or missing references) //IL_6e16: Unknown result type (might be due to invalid IL or missing references) //IL_6e1b: Unknown result type (might be due to invalid IL or missing references) //IL_6e20: Unknown result type (might be due to invalid IL or missing references) //IL_6e26: Unknown result type (might be due to invalid IL or missing references) //IL_6e30: Unknown result type (might be due to invalid IL or missing references) //IL_6e35: Unknown result type (might be due to invalid IL or missing references) //IL_6e40: Unknown result type (might be due to invalid IL or missing references) //IL_6e46: Unknown result type (might be due to invalid IL or missing references) //IL_6e4b: Unknown result type (might be due to invalid IL or missing references) //IL_6e51: Unknown result type (might be due to invalid IL or missing references) //IL_6e56: Unknown result type (might be due to invalid IL or missing references) //IL_6e5c: Unknown result type (might be due to invalid IL or missing references) //IL_6e66: Unknown result type (might be due to invalid IL or missing references) //IL_6e6b: Unknown result type (might be due to invalid IL or missing references) //IL_6e71: Unknown result type (might be due to invalid IL or missing references) //IL_6e7b: Unknown result type (might be due to invalid IL or missing references) //IL_6e81: Unknown result type (might be due to invalid IL or missing references) //IL_6e86: Unknown result type (might be due to invalid IL or missing references) //IL_6e8c: Unknown result type (might be due to invalid IL or missing references) //IL_6e91: Unknown result type (might be due to invalid IL or missing references) //IL_6e96: Unknown result type (might be due to invalid IL or missing references) //IL_6e9c: Unknown result type (might be due to invalid IL or missing references) //IL_6ea6: Unknown result type (might be due to invalid IL or missing references) //IL_6eab: Unknown result type (might be due to invalid IL or missing references) //IL_6eb0: Unknown result type (might be due to invalid IL or missing references) //IL_6ec0: Unknown result type (might be due to invalid IL or missing references) //IL_6ec6: Unknown result type (might be due to invalid IL or missing references) //IL_6ecb: Unknown result type (might be due to invalid IL or missing references) //IL_6ed1: Unknown result type (might be due to invalid IL or missing references) //IL_6ed6: Unknown result type (might be due to invalid IL or missing references) //IL_6edc: Unknown result type (might be due to invalid IL or missing references) //IL_6ee6: Unknown result type (might be due to invalid IL or missing references) //IL_6eec: Unknown result type (might be due to invalid IL or missing references) //IL_6ef1: Unknown result type (might be due to invalid IL or missing references) //IL_6ef7: Unknown result type (might be due to invalid IL or missing references) //IL_6efc: Unknown result type (might be due to invalid IL or missing references) //IL_6f01: Unknown result type (might be due to invalid IL or missing references) //IL_6f07: Unknown result type (might be due to invalid IL or missing references) //IL_6f11: Unknown result type (might be due to invalid IL or missing references) //IL_6f16: Unknown result type (might be due to invalid IL or missing references) //IL_6f21: Unknown result type (might be due to invalid IL or missing references) //IL_6f27: Unknown result type (might be due to invalid IL or missing references) //IL_6f2c: Unknown result type (might be due to invalid IL or missing references) //IL_6f32: Unknown result type (might be due to invalid IL or missing references) //IL_6f37: Unknown result type (might be due to invalid IL or missing references) //IL_6f3d: Unknown result type (might be due to invalid IL or missing references) //IL_6f47: Unknown result type (might be due to invalid IL or missing references) //IL_6f4c: Unknown result type (might be due to invalid IL or missing references) //IL_6f52: Unknown result type (might be due to invalid IL or missing references) //IL_6f5c: Unknown result type (might be due to invalid IL or missing references) //IL_6f62: Unknown result type (might be due to invalid IL or missing references) //IL_6f67: Unknown result type (might be due to invalid IL or missing references) //IL_6f6d: Unknown result type (might be due to invalid IL or missing references) //IL_6f72: Unknown result type (might be due to invalid IL or missing references) //IL_6f77: Unknown result type (might be due to invalid IL or missing references) //IL_6f7d: Unknown result type (might be due to invalid IL or missing references) //IL_6f87: Unknown result type (might be due to invalid IL or missing references) //IL_6f8c: Unknown result type (might be due to invalid IL or missing references) //IL_6f91: Unknown result type (might be due to invalid IL or missing references) //IL_6fa1: Unknown result type (might be due to invalid IL or missing references) //IL_6fa7: Unknown result type (might be due to invalid IL or missing references) //IL_6fac: Unknown result type (might be due to invalid IL or missing references) //IL_6fb2: Unknown result type (might be due to invalid IL or missing references) //IL_6fb7: Unknown result type (might be due to invalid IL or missing references) //IL_6fbd: Unknown result type (might be due to invalid IL or missing references) //IL_6fc7: Unknown result type (might be due to invalid IL or missing references) //IL_6fcd: Unknown result type (might be due to invalid IL or missing references) //IL_6fd2: Unknown result type (might be due to invalid IL or missing references) //IL_6fd8: Unknown result type (might be due to invalid IL or missing references) //IL_6fdd: Unknown result type (might be due to invalid IL or missing references) //IL_6fe2: Unknown result type (might be due to invalid IL or missing references) //IL_6fe8: Unknown result type (might be due to invalid IL or missing references) //IL_6ff2: Unknown result type (might be due to invalid IL or missing references) //IL_6ff7: Unknown result type (might be due to invalid IL or missing references) //IL_7002: Unknown result type (might be due to invalid IL or missing references) //IL_7008: Unknown result type (might be due to invalid IL or missing references) //IL_700d: Unknown result type (might be due to invalid IL or missing references) //IL_7013: Unknown result type (might be due to invalid IL or missing references) //IL_7018: Unknown result type (might be due to invalid IL or missing references) //IL_701e: Unknown result type (might be due to invalid IL or missing references) //IL_7028: Unknown result type (might be due to invalid IL or missing references) //IL_702d: Unknown result type (might be due to invalid IL or missing references) //IL_7033: Unknown result type (might be due to invalid IL or missing references) //IL_703d: Unknown result type (might be due to invalid IL or missing references) //IL_7043: Unknown result type (might be due to invalid IL or missing references) //IL_7048: Unknown result type (might be due to invalid IL or missing references) //IL_704e: Unknown result type (might be due to invalid IL or missing references) //IL_7053: Unknown result type (might be due to invalid IL or missing references) //IL_7058: Unknown result type (might be due to invalid IL or missing references) //IL_705e: Unknown result type (might be due to invalid IL or missing references) //IL_7068: Unknown result type (might be due to invalid IL or missing references) //IL_706d: Unknown result type (might be due to invalid IL or missing references) //IL_7072: Unknown result type (might be due to invalid IL or missing references) //IL_7082: Unknown result type (might be due to invalid IL or missing references) //IL_7088: Unknown result type (might be due to invalid IL or missing references) //IL_708d: Unknown result type (might be due to invalid IL or missing references) //IL_7093: Unknown result type (might be due to invalid IL or missing references) //IL_7098: Unknown result type (might be due to invalid IL or missing references) //IL_709e: Unknown result type (might be due to invalid IL or missing references) //IL_70a8: Unknown result type (might be due to invalid IL or missing references) //IL_70ae: Unknown result type (might be due to invalid IL or missing references) //IL_70b3: Unknown result type (might be due to invalid IL or missing references) //IL_70b9: Unknown result type (might be due to invalid IL or missing references) //IL_70be: Unknown result type (might be due to invalid IL or missing references) //IL_70c3: Unknown result type (might be due to invalid IL or missing references) //IL_70c9: Unknown result type (might be due to invalid IL or missing references) //IL_70d3: Unknown result type (might be due to invalid IL or missing references) //IL_70d8: Unknown result type (might be due to invalid IL or missing references) //IL_70e3: Unknown result type (might be due to invalid IL or missing references) //IL_70e9: Unknown result type (might be due to invalid IL or missing references) //IL_70ee: Unknown result type (might be due to invalid IL or missing references) //IL_70f4: Unknown result type (might be due to invalid IL or missing references) //IL_70f9: Unknown result type (might be due to invalid IL or missing references) //IL_70ff: Unknown result type (might be due to invalid IL or missing references) //IL_7109: Unknown result type (might be due to invalid IL or missing references) //IL_710e: Unknown result type (might be due to invalid IL or missing references) //IL_7114: Unknown result type (might be due to invalid IL or missing references) //IL_711e: Unknown result type (might be due to invalid IL or missing references) //IL_7124: Unknown result type (might be due to invalid IL or missing references) //IL_7129: Unknown result type (might be due to invalid IL or missing references) //IL_712f: Unknown result type (might be due to invalid IL or missing references) //IL_7134: Unknown result type (might be due to invalid IL or missing references) //IL_7139: Unknown result type (might be due to invalid IL or missing references) //IL_713f: Unknown result type (might be due to invalid IL or missing references) //IL_7149: Unknown result type (might be due to invalid IL or missing references) //IL_714e: Unknown result type (might be due to invalid IL or missing references) //IL_7153: Unknown result type (might be due to invalid IL or missing references) //IL_7163: Unknown result type (might be due to invalid IL or missing references) //IL_7169: Unknown result type (might be due to invalid IL or missing references) //IL_716e: Unknown result type (might be due to invalid IL or missing references) //IL_7174: Unknown result type (might be due to invalid IL or missing references) //IL_7179: Unknown result type (might be due to invalid IL or missing references) //IL_717f: Unknown result type (might be due to invalid IL or missing references) //IL_7189: Unknown result type (might be due to invalid IL or missing references) //IL_718f: Unknown result type (might be due to invalid IL or missing references) //IL_7194: Unknown result type (might be due to invalid IL or missing references) //IL_719a: Unknown result type (might be due to invalid IL or missing references) //IL_719f: Unknown result type (might be due to invalid IL or missing references) //IL_71a4: Unknown result type (might be due to invalid IL or missing references) //IL_71aa: Unknown result type (might be due to invalid IL or missing references) //IL_71b4: Unknown result type (might be due to invalid IL or missing references) //IL_71b9: Unknown result type (might be due to invalid IL or missing references) //IL_71c4: Unknown result type (might be due to invalid IL or missing references) //IL_71ca: Unknown result type (might be due to invalid IL or missing references) //IL_71cf: Unknown result type (might be due to invalid IL or missing references) //IL_71d5: Unknown result type (might be due to invalid IL or missing references) //IL_71da: Unknown result type (might be due to invalid IL or missing references) //IL_71e0: Unknown result type (might be due to invalid IL or missing references) //IL_71ea: Unknown result type (might be due to invalid IL or missing references) //IL_71ef: Unknown result type (might be due to invalid IL or missing references) //IL_71f5: Unknown result type (might be due to invalid IL or missing references) //IL_71ff: Unknown result type (might be due to invalid IL or missing references) //IL_7205: Unknown result type (might be due to invalid IL or missing references) //IL_720a: Unknown result type (might be due to invalid IL or missing references) //IL_7210: Unknown result type (might be due to invalid IL or missing references) //IL_7215: Unknown result type (might be due to invalid IL or missing references) //IL_721a: Unknown result type (might be due to invalid IL or missing references) //IL_7220: Unknown result type (might be due to invalid IL or missing references) //IL_722a: Unknown result type (might be due to invalid IL or missing references) //IL_722f: Unknown result type (might be due to invalid IL or missing references) //IL_7234: Unknown result type (might be due to invalid IL or missing references) //IL_7244: Unknown result type (might be due to invalid IL or missing references) //IL_724a: Unknown result type (might be due to invalid IL or missing references) //IL_724f: Unknown result type (might be due to invalid IL or missing references) //IL_7255: Unknown result type (might be due to invalid IL or missing references) //IL_725a: Unknown result type (might be due to invalid IL or missing references) //IL_7260: Unknown result type (might be due to invalid IL or missing references) //IL_726a: Unknown result type (might be due to invalid IL or missing references) //IL_7270: Unknown result type (might be due to invalid IL or missing references) //IL_7275: Unknown result type (might be due to invalid IL or missing references) //IL_727b: Unknown result type (might be due to invalid IL or missing references) //IL_7280: Unknown result type (might be due to invalid IL or missing references) //IL_7285: Unknown result type (might be due to invalid IL or missing references) //IL_728b: Unknown result type (might be due to invalid IL or missing references) //IL_7295: Unknown result type (might be due to invalid IL or missing references) //IL_729a: Unknown result type (might be due to invalid IL or missing references) //IL_72a5: Unknown result type (might be due to invalid IL or missing references) //IL_72ab: Unknown result type (might be due to invalid IL or missing references) //IL_72b0: Unknown result type (might be due to invalid IL or missing references) //IL_72b6: Unknown result type (might be due to invalid IL or missing references) //IL_72bb: Unknown result type (might be due to invalid IL or missing references) //IL_72c1: Unknown result type (might be due to invalid IL or missing references) //IL_72cb: Unknown result type (might be due to invalid IL or missing references) //IL_72d0: Unknown result type (might be due to invalid IL or missing references) //IL_72d6: Unknown result type (might be due to invalid IL or missing references) //IL_72e0: Unknown result type (might be due to invalid IL or missing references) //IL_72e6: Unknown result type (might be due to invalid IL or missing references) //IL_72eb: Unknown result type (might be due to invalid IL or missing references) //IL_72f1: Unknown result type (might be due to invalid IL or missing references) //IL_72f6: Unknown result type (might be due to invalid IL or missing references) //IL_72fb: Unknown result type (might be due to invalid IL or missing references) //IL_7301: Unknown result type (might be due to invalid IL or missing references) //IL_730b: Unknown result type (might be due to invalid IL or missing references) //IL_7310: Unknown result type (might be due to invalid IL or missing references) //IL_7315: Unknown result type (might be due to invalid IL or missing references) //IL_7325: Unknown result type (might be due to invalid IL or missing references) //IL_732b: Unknown result type (might be due to invalid IL or missing references) //IL_7330: Unknown result type (might be due to invalid IL or missing references) //IL_7336: Unknown result type (might be due to invalid IL or missing references) //IL_733b: Unknown result type (might be due to invalid IL or missing references) //IL_7341: Unknown result type (might be due to invalid IL or missing references) //IL_734b: Unknown result type (might be due to invalid IL or missing references) //IL_7351: Unknown result type (might be due to invalid IL or missing references) //IL_7356: Unknown result type (might be due to invalid IL or missing references) //IL_735c: Unknown result type (might be due to invalid IL or missing references) //IL_7361: Unknown result type (might be due to invalid IL or missing references) //IL_7366: Unknown result type (might be due to invalid IL or missing references) //IL_736c: Unknown result type (might be due to invalid IL or missing references) //IL_7376: Unknown result type (might be due to invalid IL or missing references) //IL_737b: Unknown result type (might be due to invalid IL or missing references) //IL_7386: Unknown result type (might be due to invalid IL or missing references) //IL_738c: Unknown result type (might be due to invalid IL or missing references) //IL_7391: Unknown result type (might be due to invalid IL or missing references) //IL_7397: Unknown result type (might be due to invalid IL or missing references) //IL_739c: Unknown result type (might be due to invalid IL or missing references) //IL_73a2: Unknown result type (might be due to invalid IL or missing references) //IL_73ac: Unknown result type (might be due to invalid IL or missing references) //IL_73b1: Unknown result type (might be due to invalid IL or missing references) //IL_73b7: Unknown result type (might be due to invalid IL or missing references) //IL_73c1: Unknown result type (might be due to invalid IL or missing references) //IL_73c7: Unknown result type (might be due to invalid IL or missing references) //IL_73cc: Unknown result type (might be due to invalid IL or missing references) //IL_73d2: Unknown result type (might be due to invalid IL or missing references) //IL_73d7: Unknown result type (might be due to invalid IL or missing references) //IL_73dc: Unknown result type (might be due to invalid IL or missing references) //IL_73e2: Unknown result type (might be due to invalid IL or missing references) //IL_73ec: Unknown result type (might be due to invalid IL or missing references) //IL_73f1: Unknown result type (might be due to invalid IL or missing references) //IL_73f6: Unknown result type (might be due to invalid IL or missing references) //IL_7406: Unknown result type (might be due to invalid IL or missing references) //IL_740c: Unknown result type (might be due to invalid IL or missing references) //IL_7411: Unknown result type (might be due to invalid IL or missing references) //IL_7417: Unknown result type (might be due to invalid IL or missing references) //IL_741c: Unknown result type (might be due to invalid IL or missing references) //IL_7422: Unknown result type (might be due to invalid IL or missing references) //IL_742c: Unknown result type (might be due to invalid IL or missing references) //IL_7431: Unknown result type (might be due to invalid IL or missing references) //IL_7437: Unknown result type (might be due to invalid IL or missing references) //IL_7441: Unknown result type (might be due to invalid IL or missing references) //IL_7447: Unknown result type (might be due to invalid IL or missing references) //IL_744c: Unknown result type (might be due to invalid IL or missing references) //IL_7452: Unknown result type (might be due to invalid IL or missing references) //IL_7457: Unknown result type (might be due to invalid IL or missing references) //IL_745c: Unknown result type (might be due to invalid IL or missing references) //IL_7467: Unknown result type (might be due to invalid IL or missing references) //IL_746d: Unknown result type (might be due to invalid IL or missing references) //IL_7472: Unknown result type (might be due to invalid IL or missing references) //IL_7478: Unknown result type (might be due to invalid IL or missing references) //IL_747d: Unknown result type (might be due to invalid IL or missing references) //IL_7483: Unknown result type (might be due to invalid IL or missing references) //IL_748d: Unknown result type (might be due to invalid IL or missing references) //IL_7492: Unknown result type (might be due to invalid IL or missing references) //IL_7498: Unknown result type (might be due to invalid IL or missing references) //IL_74a2: Unknown result type (might be due to invalid IL or missing references) //IL_74a8: Unknown result type (might be due to invalid IL or missing references) //IL_74ad: Unknown result type (might be due to invalid IL or missing references) //IL_74b3: Unknown result type (might be due to invalid IL or missing references) //IL_74b8: Unknown result type (might be due to invalid IL or missing references) //IL_74bd: Unknown result type (might be due to invalid IL or missing references) //IL_74c2: Unknown result type (might be due to invalid IL or missing references) //IL_74d2: Unknown result type (might be due to invalid IL or missing references) //IL_74d8: Unknown result type (might be due to invalid IL or missing references) //IL_74dd: Unknown result type (might be due to invalid IL or missing references) //IL_74e3: Unknown result type (might be due to invalid IL or missing references) //IL_74e8: Unknown result type (might be due to invalid IL or missing references) //IL_74ee: Unknown result type (might be due to invalid IL or missing references) //IL_74f8: Unknown result type (might be due to invalid IL or missing references) //IL_74fd: Unknown result type (might be due to invalid IL or missing references) //IL_7503: Unknown result type (might be due to invalid IL or missing references) //IL_750d: Unknown result type (might be due to invalid IL or missing references) //IL_7513: Unknown result type (might be due to invalid IL or missing references) //IL_7518: Unknown result type (might be due to invalid IL or missing references) //IL_751e: Unknown result type (might be due to invalid IL or missing references) //IL_7523: Unknown result type (might be due to invalid IL or missing references) //IL_7528: Unknown result type (might be due to invalid IL or missing references) //IL_752e: Unknown result type (might be due to invalid IL or missing references) //IL_7538: Unknown result type (might be due to invalid IL or missing references) //IL_753d: Unknown result type (might be due to invalid IL or missing references) //IL_7548: Unknown result type (might be due to invalid IL or missing references) //IL_754e: Unknown result type (might be due to invalid IL or missing references) //IL_7553: Unknown result type (might be due to invalid IL or missing references) //IL_7559: Unknown result type (might be due to invalid IL or missing references) //IL_755e: Unknown result type (might be due to invalid IL or missing references) //IL_7564: Unknown result type (might be due to invalid IL or missing references) //IL_756e: Unknown result type (might be due to invalid IL or missing references) //IL_7573: Unknown result type (might be due to invalid IL or missing references) //IL_7579: Unknown result type (might be due to invalid IL or missing references) //IL_7583: Unknown result type (might be due to invalid IL or missing references) //IL_7589: Unknown result type (might be due to invalid IL or missing references) //IL_758e: Unknown result type (might be due to invalid IL or missing references) //IL_7594: Unknown result type (might be due to invalid IL or missing references) //IL_7599: Unknown result type (might be due to invalid IL or missing references) //IL_759e: Unknown result type (might be due to invalid IL or missing references) //IL_75a4: Unknown result type (might be due to invalid IL or missing references) //IL_75ae: Unknown result type (might be due to invalid IL or missing references) //IL_75b3: Unknown result type (might be due to invalid IL or missing references) //IL_75b8: Unknown result type (might be due to invalid IL or missing references) //IL_75c8: Unknown result type (might be due to invalid IL or missing references) //IL_75ce: Unknown result type (might be due to invalid IL or missing references) //IL_75d3: Unknown result type (might be due to invalid IL or missing references) //IL_75d9: Unknown result type (might be due to invalid IL or missing references) //IL_75de: Unknown result type (might be due to invalid IL or missing references) //IL_75e4: Unknown result type (might be due to invalid IL or missing references) //IL_75ee: Unknown result type (might be due to invalid IL or missing references) //IL_75f3: Unknown result type (might be due to invalid IL or missing references) //IL_75f9: Unknown result type (might be due to invalid IL or missing references) //IL_7603: Unknown result type (might be due to invalid IL or missing references) //IL_7609: Unknown result type (might be due to invalid IL or missing references) //IL_760e: Unknown result type (might be due to invalid IL or missing references) //IL_7614: Unknown result type (might be due to invalid IL or missing references) //IL_7619: Unknown result type (might be due to invalid IL or missing references) //IL_761e: Unknown result type (might be due to invalid IL or missing references) //IL_7624: Unknown result type (might be due to invalid IL or missing references) //IL_762e: Unknown result type (might be due to invalid IL or missing references) //IL_7633: Unknown result type (might be due to invalid IL or missing references) //IL_763e: Unknown result type (might be due to invalid IL or missing references) //IL_7644: Unknown result type (might be due to invalid IL or missing references) //IL_7649: Unknown result type (might be due to invalid IL or missing references) //IL_764f: Unknown result type (might be due to invalid IL or missing references) //IL_7654: Unknown result type (might be due to invalid IL or missing references) //IL_765a: Unknown result type (might be due to invalid IL or missing references) //IL_7664: Unknown result type (might be due to invalid IL or missing references) //IL_7669: Unknown result type (might be due to invalid IL or missing references) //IL_766f: Unknown result type (might be due to invalid IL or missing references) //IL_7679: Unknown result type (might be due to invalid IL or missing references) //IL_767f: Unknown result type (might be due to invalid IL or missing references) //IL_7684: Unknown result type (might be due to invalid IL or missing references) //IL_768a: Unknown result type (might be due to invalid IL or missing references) //IL_768f: Unknown result type (might be due to invalid IL or missing references) //IL_7694: Unknown result type (might be due to invalid IL or missing references) //IL_769a: Unknown result type (might be due to invalid IL or missing references) //IL_76a4: Unknown result type (might be due to invalid IL or missing references) //IL_76a9: Unknown result type (might be due to invalid IL or missing references) //IL_76ae: Unknown result type (might be due to invalid IL or missing references) //IL_76be: Unknown result type (might be due to invalid IL or missing references) //IL_76c4: Unknown result type (might be due to invalid IL or missing references) //IL_76c9: Unknown result type (might be due to invalid IL or missing references) //IL_76cf: Unknown result type (might be due to invalid IL or missing references) //IL_76d4: Unknown result type (might be due to invalid IL or missing references) //IL_76da: Unknown result type (might be due to invalid IL or missing references) //IL_76e4: Unknown result type (might be due to invalid IL or missing references) //IL_76e9: Unknown result type (might be due to invalid IL or missing references) //IL_76ef: Unknown result type (might be due to invalid IL or missing references) //IL_76f9: Unknown result type (might be due to invalid IL or missing references) //IL_76ff: Unknown result type (might be due to invalid IL or missing references) //IL_7704: Unknown result type (might be due to invalid IL or missing references) //IL_770a: Unknown result type (might be due to invalid IL or missing references) //IL_770f: Unknown result type (might be due to invalid IL or missing references) //IL_7714: Unknown result type (might be due to invalid IL or missing references) //IL_771a: Unknown result type (might be due to invalid IL or missing references) //IL_7724: Unknown result type (might be due to invalid IL or missing references) //IL_7729: Unknown result type (might be due to invalid IL or missing references) //IL_7734: Unknown result type (might be due to invalid IL or missing references) //IL_773a: Unknown result type (might be due to invalid IL or missing references) //IL_773f: Unknown result type (might be due to invalid IL or missing references) //IL_7745: Unknown result type (might be due to invalid IL or missing references) //IL_774a: Unknown result type (might be due to invalid IL or missing references) //IL_7750: Unknown result type (might be due to invalid IL or missing references) //IL_775a: Unknown result type (might be due to invalid IL or missing references) //IL_775f: Unknown result type (might be due to invalid IL or missing references) //IL_7765: Unknown result type (might be due to invalid IL or missing references) //IL_776f: Unknown result type (might be due to invalid IL or missing references) //IL_7775: Unknown result type (might be due to invalid IL or missing references) //IL_777a: Unknown result type (might be due to invalid IL or missing references) //IL_7780: Unknown result type (might be due to invalid IL or missing references) //IL_7785: Unknown result type (might be due to invalid IL or missing references) //IL_778a: Unknown result type (might be due to invalid IL or missing references) //IL_7790: Unknown result type (might be due to invalid IL or missing references) //IL_779a: Unknown result type (might be due to invalid IL or missing references) //IL_779f: Unknown result type (might be due to invalid IL or missing references) //IL_77a4: Unknown result type (might be due to invalid IL or missing references) //IL_77b4: Unknown result type (might be due to invalid IL or missing references) //IL_77ba: Unknown result type (might be due to invalid IL or missing references) //IL_77bf: Unknown result type (might be due to invalid IL or missing references) //IL_77c5: Unknown result type (might be due to invalid IL or missing references) //IL_77ca: Unknown result type (might be due to invalid IL or missing references) //IL_77d0: Unknown result type (might be due to invalid IL or missing references) //IL_77da: Unknown result type (might be due to invalid IL or missing references) //IL_77df: Unknown result type (might be due to invalid IL or missing references) //IL_77e5: Unknown result type (might be due to invalid IL or missing references) //IL_77ef: Unknown result type (might be due to invalid IL or missing references) //IL_77f5: Unknown result type (might be due to invalid IL or missing references) //IL_77fa: Unknown result type (might be due to invalid IL or missing references) //IL_7800: Unknown result type (might be due to invalid IL or missing references) //IL_7805: Unknown result type (might be due to invalid IL or missing references) //IL_780a: Unknown result type (might be due to invalid IL or missing references) //IL_7810: Unknown result type (might be due to invalid IL or missing references) //IL_781a: Unknown result type (might be due to invalid IL or missing references) //IL_781f: Unknown result type (might be due to invalid IL or missing references) //IL_782a: Unknown result type (might be due to invalid IL or missing references) //IL_7830: Unknown result type (might be due to invalid IL or missing references) //IL_7835: Unknown result type (might be due to invalid IL or missing references) //IL_783b: Unknown result type (might be due to invalid IL or missing references) //IL_7840: Unknown result type (might be due to invalid IL or missing references) //IL_7846: Unknown result type (might be due to invalid IL or missing references) //IL_7850: Unknown result type (might be due to invalid IL or missing references) //IL_7855: Unknown result type (might be due to invalid IL or missing references) //IL_785b: Unknown result type (might be due to invalid IL or missing references) //IL_7865: Unknown result type (might be due to invalid IL or missing references) //IL_786b: Unknown result type (might be due to invalid IL or missing references) //IL_7870: Unknown result type (might be due to invalid IL or missing references) //IL_7876: Unknown result type (might be due to invalid IL or missing references) //IL_787b: Unknown result type (might be due to invalid IL or missing references) //IL_7880: Unknown result type (might be due to invalid IL or missing references) //IL_7886: Unknown result type (might be due to invalid IL or missing references) //IL_7890: Unknown result type (might be due to invalid IL or missing references) //IL_7895: Unknown result type (might be due to invalid IL or missing references) //IL_789a: Unknown result type (might be due to invalid IL or missing references) //IL_78aa: Unknown result type (might be due to invalid IL or missing references) //IL_78b0: Unknown result type (might be due to invalid IL or missing references) //IL_78b5: Unknown result type (might be due to invalid IL or missing references) //IL_78bb: Unknown result type (might be due to invalid IL or missing references) //IL_78c0: Unknown result type (might be due to invalid IL or missing references) //IL_78c6: Unknown result type (might be due to invalid IL or missing references) //IL_78d0: Unknown result type (might be due to invalid IL or missing references) //IL_78d5: Unknown result type (might be due to invalid IL or missing references) //IL_78db: Unknown result type (might be due to invalid IL or missing references) //IL_78e5: Unknown result type (might be due to invalid IL or missing references) //IL_78eb: Unknown result type (might be due to invalid IL or missing references) //IL_78f0: Unknown result type (might be due to invalid IL or missing references) //IL_78f6: Unknown result type (might be due to invalid IL or missing references) //IL_78fb: Unknown result type (might be due to invalid IL or missing references) //IL_7900: Unknown result type (might be due to invalid IL or missing references) //IL_7906: Unknown result type (might be due to invalid IL or missing references) //IL_7910: Unknown result type (might be due to invalid IL or missing references) //IL_7915: Unknown result type (might be due to invalid IL or missing references) //IL_7920: Unknown result type (might be due to invalid IL or missing references) //IL_7926: Unknown result type (might be due to invalid IL or missing references) //IL_792b: Unknown result type (might be due to invalid IL or missing references) //IL_7931: Unknown result type (might be due to invalid IL or missing references) //IL_7936: Unknown result type (might be due to invalid IL or missing references) //IL_793c: Unknown result type (might be due to invalid IL or missing references) //IL_7946: Unknown result type (might be due to invalid IL or missing references) //IL_794b: Unknown result type (might be due to invalid IL or missing references) //IL_7951: Unknown result type (might be due to invalid IL or missing references) //IL_795b: Unknown result type (might be due to invalid IL or missing references) //IL_7961: Unknown result type (might be due to invalid IL or missing references) //IL_7966: Unknown result type (might be due to invalid IL or missing references) //IL_796c: Unknown result type (might be due to invalid IL or missing references) //IL_7971: Unknown result type (might be due to invalid IL or missing references) //IL_7976: Unknown result type (might be due to invalid IL or missing references) //IL_797c: Unknown result type (might be due to invalid IL or missing references) //IL_7986: Unknown result type (might be due to invalid IL or missing references) //IL_798b: Unknown result type (might be due to invalid IL or missing references) //IL_7990: Unknown result type (might be due to invalid IL or missing references) //IL_79a0: Unknown result type (might be due to invalid IL or missing references) //IL_79a6: Unknown result type (might be due to invalid IL or missing references) //IL_79ab: Unknown result type (might be due to invalid IL or missing references) //IL_79b1: Unknown result type (might be due to invalid IL or missing references) //IL_79b6: Unknown result type (might be due to invalid IL or missing references) //IL_79bc: Unknown result type (might be due to invalid IL or missing references) //IL_79c6: Unknown result type (might be due to invalid IL or missing references) //IL_79cb: Unknown result type (might be due to invalid IL or missing references) //IL_79d1: Unknown result type (might be due to invalid IL or missing references) //IL_79db: Unknown result type (might be due to invalid IL or missing references) //IL_79e1: Unknown result type (might be due to invalid IL or missing references) //IL_79e6: Unknown result type (might be due to invalid IL or missing references) //IL_79ec: Unknown result type (might be due to invalid IL or missing references) //IL_79f1: Unknown result type (might be due to invalid IL or missing references) //IL_79f6: Unknown result type (might be due to invalid IL or missing references) //IL_79fc: Unknown result type (might be due to invalid IL or missing references) //IL_7a06: Unknown result type (might be due to invalid IL or missing references) //IL_7a0b: Unknown result type (might be due to invalid IL or missing references) //IL_7a16: Unknown result type (might be due to invalid IL or missing references) //IL_7a1c: Unknown result type (might be due to invalid IL or missing references) //IL_7a21: Unknown result type (might be due to invalid IL or missing references) //IL_7a27: Unknown result type (might be due to invalid IL or missing references) //IL_7a2c: Unknown result type (might be due to invalid IL or missing references) //IL_7a32: Unknown result type (might be due to invalid IL or missing references) //IL_7a3c: Unknown result type (might be due to invalid IL or missing references) //IL_7a41: Unknown result type (might be due to invalid IL or missing references) //IL_7a47: Unknown result type (might be due to invalid IL or missing references) //IL_7a51: Unknown result type (might be due to invalid IL or missing references) //IL_7a57: Unknown result type (might be due to invalid IL or missing references) //IL_7a5c: Unknown result type (might be due to invalid IL or missing references) //IL_7a62: Unknown result type (might be due to invalid IL or missing references) //IL_7a67: Unknown result type (might be due to invalid IL or missing references) //IL_7a6c: Unknown result type (might be due to invalid IL or missing references) //IL_7a72: Unknown result type (might be due to invalid IL or missing references) //IL_7a7c: Unknown result type (might be due to invalid IL or missing references) //IL_7a81: Unknown result type (might be due to invalid IL or missing references) //IL_7a86: Unknown result type (might be due to invalid IL or missing references) //IL_7a96: Unknown result type (might be due to invalid IL or missing references) //IL_7a9c: Unknown result type (might be due to invalid IL or missing references) //IL_7aa1: Unknown result type (might be due to invalid IL or missing references) //IL_7aa7: Unknown result type (might be due to invalid IL or missing references) //IL_7aac: Unknown result type (might be due to invalid IL or missing references) //IL_7ab2: Unknown result type (might be due to invalid IL or missing references) //IL_7abc: Unknown result type (might be due to invalid IL or missing references) //IL_7ac1: Unknown result type (might be due to invalid IL or missing references) //IL_7ac7: Unknown result type (might be due to invalid IL or missing references) //IL_7ad1: Unknown result type (might be due to invalid IL or missing references) //IL_7ad7: Unknown result type (might be due to invalid IL or missing references) //IL_7adc: Unknown result type (might be due to invalid IL or missing references) //IL_7ae2: Unknown result type (might be due to invalid IL or missing references) //IL_7ae7: Unknown result type (might be due to invalid IL or missing references) //IL_7aec: Unknown result type (might be due to invalid IL or missing references) //IL_7af2: Unknown result type (might be due to invalid IL or missing references) //IL_7afc: Unknown result type (might be due to invalid IL or missing references) //IL_7b01: Unknown result type (might be due to invalid IL or missing references) //IL_7b0c: Unknown result type (might be due to invalid IL or missing references) //IL_7b12: Unknown result type (might be due to invalid IL or missing references) //IL_7b17: Unknown result type (might be due to invalid IL or missing references) //IL_7b1d: Unknown result type (might be due to invalid IL or missing references) //IL_7b22: Unknown result type (might be due to invalid IL or missing references) //IL_7b28: Unknown result type (might be due to invalid IL or missing references) //IL_7b32: Unknown result type (might be due to invalid IL or missing references) //IL_7b37: Unknown result type (might be due to invalid IL or missing references) //IL_7b3d: Unknown result type (might be due to invalid IL or missing references) //IL_7b47: Unknown result type (might be due to invalid IL or missing references) //IL_7b4d: Unknown result type (might be due to invalid IL or missing references) //IL_7b52: Unknown result type (might be due to invalid IL or missing references) //IL_7b58: Unknown result type (might be due to invalid IL or missing references) //IL_7b5d: Unknown result type (might be due to invalid IL or missing references) //IL_7b62: Unknown result type (might be due to invalid IL or missing references) //IL_7b68: Unknown result type (might be due to invalid IL or missing references) //IL_7b72: Unknown result type (might be due to invalid IL or missing references) //IL_7b77: Unknown result type (might be due to invalid IL or missing references) //IL_7b7c: Unknown result type (might be due to invalid IL or missing references) //IL_7b8c: Unknown result type (might be due to invalid IL or missing references) //IL_7b92: Unknown result type (might be due to invalid IL or missing references) //IL_7b97: Unknown result type (might be due to invalid IL or missing references) //IL_7b9d: Unknown result type (might be due to invalid IL or missing references) //IL_7ba2: Unknown result type (might be due to invalid IL or missing references) //IL_7ba8: Unknown result type (might be due to invalid IL or missing references) //IL_7bb2: Unknown result type (might be due to invalid IL or missing references) //IL_7bb7: Unknown result type (might be due to invalid IL or missing references) //IL_7bbd: Unknown result type (might be due to invalid IL or missing references) //IL_7bc7: Unknown result type (might be due to invalid IL or missing references) //IL_7bcd: Unknown result type (might be due to invalid IL or missing references) //IL_7bd2: Unknown result type (might be due to invalid IL or missing references) //IL_7bd8: Unknown result type (might be due to invalid IL or missing references) //IL_7bdd: Unknown result type (might be due to invalid IL or missing references) //IL_7be2: Unknown result type (might be due to invalid IL or missing references) //IL_7bed: Unknown result type (might be due to invalid IL or missing references) //IL_7bf3: Unknown result type (might be due to invalid IL or missing references) //IL_7bf8: Unknown result type (might be due to invalid IL or missing references) //IL_7bfe: Unknown result type (might be due to invalid IL or missing references) //IL_7c03: Unknown result type (might be due to invalid IL or missing references) //IL_7c09: Unknown result type (might be due to invalid IL or missing references) //IL_7c13: Unknown result type (might be due to invalid IL or missing references) //IL_7c18: Unknown result type (might be due to invalid IL or missing references) //IL_7c1e: Unknown result type (might be due to invalid IL or missing references) //IL_7c28: Unknown result type (might be due to invalid IL or missing references) //IL_7c2e: Unknown result type (might be due to invalid IL or missing references) //IL_7c33: Unknown result type (might be due to invalid IL or missing references) //IL_7c39: Unknown result type (might be due to invalid IL or missing references) //IL_7c3e: Unknown result type (might be due to invalid IL or missing references) //IL_7c43: Unknown result type (might be due to invalid IL or missing references) //IL_7c48: Unknown result type (might be due to invalid IL or missing references) //IL_7c58: Unknown result type (might be due to invalid IL or missing references) //IL_7c5e: Unknown result type (might be due to invalid IL or missing references) //IL_7c63: Unknown result type (might be due to invalid IL or missing references) //IL_7c69: Unknown result type (might be due to invalid IL or missing references) //IL_7c6e: Unknown result type (might be due to invalid IL or missing references) //IL_7c74: Unknown result type (might be due to invalid IL or missing references) //IL_7c7e: Unknown result type (might be due to invalid IL or missing references) //IL_7c83: Unknown result type (might be due to invalid IL or missing references) //IL_7c89: Unknown result type (might be due to invalid IL or missing references) //IL_7c93: Unknown result type (might be due to invalid IL or missing references) //IL_7c99: Unknown result type (might be due to invalid IL or missing references) //IL_7c9e: Unknown result type (might be due to invalid IL or missing references) //IL_7ca4: Unknown result type (might be due to invalid IL or missing references) //IL_7ca9: Unknown result type (might be due to invalid IL or missing references) //IL_7cae: Unknown result type (might be due to invalid IL or missing references) //IL_7cb4: Unknown result type (might be due to invalid IL or missing references) //IL_7cbe: Unknown result type (might be due to invalid IL or missing references) //IL_7cc3: Unknown result type (might be due to invalid IL or missing references) //IL_7cce: Unknown result type (might be due to invalid IL or missing references) //IL_7cd4: Unknown result type (might be due to invalid IL or missing references) //IL_7cd9: Unknown result type (might be due to invalid IL or missing references) //IL_7cdf: Unknown result type (might be due to invalid IL or missing references) //IL_7ce4: Unknown result type (might be due to invalid IL or missing references) //IL_7cea: Unknown result type (might be due to invalid IL or missing references) //IL_7cf4: Unknown result type (might be due to invalid IL or missing references) //IL_7cf9: Unknown result type (might be due to invalid IL or missing references) //IL_7cff: Unknown result type (might be due to invalid IL or missing references) //IL_7d09: Unknown result type (might be due to invalid IL or missing references) //IL_7d0f: Unknown result type (might be due to invalid IL or missing references) //IL_7d14: Unknown result type (might be due to invalid IL or missing references) //IL_7d1a: Unknown result type (might be due to invalid IL or missing references) //IL_7d1f: Unknown result type (might be due to invalid IL or missing references) //IL_7d24: Unknown result type (might be due to invalid IL or missing references) //IL_7d2a: Unknown result type (might be due to invalid IL or missing references) //IL_7d34: Unknown result type (might be due to invalid IL or missing references) //IL_7d39: Unknown result type (might be due to invalid IL or missing references) //IL_7d3e: Unknown result type (might be due to invalid IL or missing references) //IL_7d4e: Unknown result type (might be due to invalid IL or missing references) //IL_7d54: Unknown result type (might be due to invalid IL or missing references) //IL_7d59: Unknown result type (might be due to invalid IL or missing references) //IL_7d5f: Unknown result type (might be due to invalid IL or missing references) //IL_7d64: Unknown result type (might be due to invalid IL or missing references) //IL_7d6a: Unknown result type (might be due to invalid IL or missing references) //IL_7d74: Unknown result type (might be due to invalid IL or missing references) //IL_7d79: Unknown result type (might be due to invalid IL or missing references) //IL_7d7f: Unknown result type (might be due to invalid IL or missing references) //IL_7d89: Unknown result type (might be due to invalid IL or missing references) //IL_7d8f: Unknown result type (might be due to invalid IL or missing references) //IL_7d94: Unknown result type (might be due to invalid IL or missing references) //IL_7d9a: Unknown result type (might be due to invalid IL or missing references) //IL_7d9f: Unknown result type (might be due to invalid IL or missing references) //IL_7da4: Unknown result type (might be due to invalid IL or missing references) //IL_7daa: Unknown result type (might be due to invalid IL or missing references) //IL_7db4: Unknown result type (might be due to invalid IL or missing references) //IL_7db9: Unknown result type (might be due to invalid IL or missing references) //IL_7dc4: Unknown result type (might be due to invalid IL or missing references) //IL_7dca: Unknown result type (might be due to invalid IL or missing references) //IL_7dcf: Unknown result type (might be due to invalid IL or missing references) //IL_7dd5: Unknown result type (might be due to invalid IL or missing references) //IL_7dda: Unknown result type (might be due to invalid IL or missing references) //IL_7de0: Unknown result type (might be due to invalid IL or missing references) //IL_7dea: Unknown result type (might be due to invalid IL or missing references) //IL_7def: Unknown result type (might be due to invalid IL or missing references) //IL_7df5: Unknown result type (might be due to invalid IL or missing references) //IL_7dff: Unknown result type (might be due to invalid IL or missing references) //IL_7e05: Unknown result type (might be due to invalid IL or missing references) //IL_7e0a: Unknown result type (might be due to invalid IL or missing references) //IL_7e10: Unknown result type (might be due to invalid IL or missing references) //IL_7e15: Unknown result type (might be due to invalid IL or missing references) //IL_7e1a: Unknown result type (might be due to invalid IL or missing references) //IL_7e20: Unknown result type (might be due to invalid IL or missing references) //IL_7e2a: Unknown result type (might be due to invalid IL or missing references) //IL_7e2f: Unknown result type (might be due to invalid IL or missing references) //IL_7e34: Unknown result type (might be due to invalid IL or missing references) //IL_7e44: Unknown result type (might be due to invalid IL or missing references) //IL_7e4a: Unknown result type (might be due to invalid IL or missing references) //IL_7e4f: Unknown result type (might be due to invalid IL or missing references) //IL_7e55: Unknown result type (might be due to invalid IL or missing references) //IL_7e5a: Unknown result type (might be due to invalid IL or missing references) //IL_7e60: Unknown result type (might be due to invalid IL or missing references) //IL_7e6a: Unknown result type (might be due to invalid IL or missing references) //IL_7e6f: Unknown result type (might be due to invalid IL or missing references) //IL_7e75: Unknown result type (might be due to invalid IL or missing references) //IL_7e7f: Unknown result type (might be due to invalid IL or missing references) //IL_7e85: Unknown result type (might be due to invalid IL or missing references) //IL_7e8a: Unknown result type (might be due to invalid IL or missing references) //IL_7e90: Unknown result type (might be due to invalid IL or missing references) //IL_7e95: Unknown result type (might be due to invalid IL or missing references) //IL_7e9a: Unknown result type (might be due to invalid IL or missing references) //IL_7ea0: Unknown result type (might be due to invalid IL or missing references) //IL_7eaa: Unknown result type (might be due to invalid IL or missing references) //IL_7eaf: Unknown result type (might be due to invalid IL or missing references) //IL_7eba: Unknown result type (might be due to invalid IL or missing references) //IL_7ec0: Unknown result type (might be due to invalid IL or missing references) //IL_7ec5: Unknown result type (might be due to invalid IL or missing references) //IL_7ecb: Unknown result type (might be due to invalid IL or missing references) //IL_7ed0: Unknown result type (might be due to invalid IL or missing references) //IL_7ed6: Unknown result type (might be due to invalid IL or missing references) //IL_7ee0: Unknown result type (might be due to invalid IL or missing references) //IL_7ee5: Unknown result type (might be due to invalid IL or missing references) //IL_7eeb: Unknown result type (might be due to invalid IL or missing references) //IL_7ef5: Unknown result type (might be due to invalid IL or missing references) //IL_7efb: Unknown result type (might be due to invalid IL or missing references) //IL_7f00: Unknown result type (might be due to invalid IL or missing references) //IL_7f06: Unknown result type (might be due to invalid IL or missing references) //IL_7f0b: Unknown result type (might be due to invalid IL or missing references) //IL_7f10: Unknown result type (might be due to invalid IL or missing references) //IL_7f16: Unknown result type (might be due to invalid IL or missing references) //IL_7f20: Unknown result type (might be due to invalid IL or missing references) //IL_7f25: Unknown result type (might be due to invalid IL or missing references) //IL_7f2a: Unknown result type (might be due to invalid IL or missing references) //IL_7f3a: Unknown result type (might be due to invalid IL or missing references) //IL_7f40: Unknown result type (might be due to invalid IL or missing references) //IL_7f45: Unknown result type (might be due to invalid IL or missing references) //IL_7f4b: Unknown result type (might be due to invalid IL or missing references) //IL_7f50: Unknown result type (might be due to invalid IL or missing references) //IL_7f56: Unknown result type (might be due to invalid IL or missing references) //IL_7f60: Unknown result type (might be due to invalid IL or missing references) //IL_7f65: Unknown result type (might be due to invalid IL or missing references) //IL_7f6b: Unknown result type (might be due to invalid IL or missing references) //IL_7f75: Unknown result type (might be due to invalid IL or missing references) //IL_7f7b: Unknown result type (might be due to invalid IL or missing references) //IL_7f80: Unknown result type (might be due to invalid IL or missing references) //IL_7f86: Unknown result type (might be due to invalid IL or missing references) //IL_7f8b: Unknown result type (might be due to invalid IL or missing references) //IL_7f90: Unknown result type (might be due to invalid IL or missing references) //IL_7f96: Unknown result type (might be due to invalid IL or missing references) //IL_7fa0: Unknown result type (might be due to invalid IL or missing references) //IL_7fa5: Unknown result type (might be due to invalid IL or missing references) //IL_7fb0: Unknown result type (might be due to invalid IL or missing references) //IL_7fb6: Unknown result type (might be due to invalid IL or missing references) //IL_7fbb: Unknown result type (might be due to invalid IL or missing references) //IL_7fc1: Unknown result type (might be due to invalid IL or missing references) //IL_7fc6: Unknown result type (might be due to invalid IL or missing references) //IL_7fcc: Unknown result type (might be due to invalid IL or missing references) //IL_7fd6: Unknown result type (might be due to invalid IL or missing references) //IL_7fdb: Unknown result type (might be due to invalid IL or missing references) //IL_7fe1: Unknown result type (might be due to invalid IL or missing references) //IL_7feb: Unknown result type (might be due to invalid IL or missing references) //IL_7ff1: Unknown result type (might be due to invalid IL or missing references) //IL_7ff6: Unknown result type (might be due to invalid IL or missing references) //IL_7ffc: Unknown result type (might be due to invalid IL or missing references) //IL_8001: Unknown result type (might be due to invalid IL or missing references) //IL_8006: Unknown result type (might be due to invalid IL or missing references) //IL_800c: Unknown result type (might be due to invalid IL or missing references) //IL_8016: Unknown result type (might be due to invalid IL or missing references) //IL_801b: Unknown result type (might be due to invalid IL or missing references) //IL_8020: Unknown result type (might be due to invalid IL or missing references) //IL_8030: Unknown result type (might be due to invalid IL or missing references) //IL_8036: Unknown result type (might be due to invalid IL or missing references) //IL_803b: Unknown result type (might be due to invalid IL or missing references) //IL_8041: Unknown result type (might be due to invalid IL or missing references) //IL_8046: Unknown result type (might be due to invalid IL or missing references) //IL_804c: Unknown result type (might be due to invalid IL or missing references) //IL_8056: Unknown result type (might be due to invalid IL or missing references) //IL_805b: Unknown result type (might be due to invalid IL or missing references) //IL_8061: Unknown result type (might be due to invalid IL or missing references) //IL_806b: Unknown result type (might be due to invalid IL or missing references) //IL_8071: Unknown result type (might be due to invalid IL or missing references) //IL_8076: Unknown result type (might be due to invalid IL or missing references) //IL_807c: Unknown result type (might be due to invalid IL or missing references) //IL_8081: Unknown result type (might be due to invalid IL or missing references) //IL_8086: Unknown result type (might be due to invalid IL or missing references) //IL_808c: Unknown result type (might be due to invalid IL or missing references) //IL_8096: Unknown result type (might be due to invalid IL or missing references) //IL_809b: Unknown result type (might be due to invalid IL or missing references) //IL_80a6: Unknown result type (might be due to invalid IL or missing references) //IL_80ac: Unknown result type (might be due to invalid IL or missing references) //IL_80b1: Unknown result type (might be due to invalid IL or missing references) //IL_80b7: Unknown result type (might be due to invalid IL or missing references) //IL_80bc: Unknown result type (might be due to invalid IL or missing references) //IL_80c2: Unknown result type (might be due to invalid IL or missing references) //IL_80cc: Unknown result type (might be due to invalid IL or missing references) //IL_80d1: Unknown result type (might be due to invalid IL or missing references) //IL_80d7: Unknown result type (might be due to invalid IL or missing references) //IL_80e1: Unknown result type (might be due to invalid IL or missing references) //IL_80e7: Unknown result type (might be due to invalid IL or missing references) //IL_80ec: Unknown result type (might be due to invalid IL or missing references) //IL_80f2: Unknown result type (might be due to invalid IL or missing references) //IL_80f7: Unknown result type (might be due to invalid IL or missing references) //IL_80fc: Unknown result type (might be due to invalid IL or missing references) //IL_8102: Unknown result type (might be due to invalid IL or missing references) //IL_810c: Unknown result type (might be due to invalid IL or missing references) //IL_8111: Unknown result type (might be due to invalid IL or missing references) //IL_8116: Unknown result type (might be due to invalid IL or missing references) //IL_8126: Unknown result type (might be due to invalid IL or missing references) //IL_812c: Unknown result type (might be due to invalid IL or missing references) //IL_8131: Unknown result type (might be due to invalid IL or missing references) //IL_8137: Unknown result type (might be due to invalid IL or missing references) //IL_813c: Unknown result type (might be due to invalid IL or missing references) //IL_8142: Unknown result type (might be due to invalid IL or missing references) //IL_814c: Unknown result type (might be due to invalid IL or missing references) //IL_8151: Unknown result type (might be due to invalid IL or missing references) //IL_8157: Unknown result type (might be due to invalid IL or missing references) //IL_8161: Unknown result type (might be due to invalid IL or missing references) //IL_8167: Unknown result type (might be due to invalid IL or missing references) //IL_816c: Unknown result type (might be due to invalid IL or missing references) //IL_8172: Unknown result type (might be due to invalid IL or missing references) //IL_8177: Unknown result type (might be due to invalid IL or missing references) //IL_817c: Unknown result type (might be due to invalid IL or missing references) //IL_8182: Unknown result type (might be due to invalid IL or missing references) //IL_818c: Unknown result type (might be due to invalid IL or missing references) //IL_8191: Unknown result type (might be due to invalid IL or missing references) //IL_819c: Unknown result type (might be due to invalid IL or missing references) //IL_81a2: Unknown result type (might be due to invalid IL or missing references) //IL_81a7: Unknown result type (might be due to invalid IL or missing references) //IL_81ad: Unknown result type (might be due to invalid IL or missing references) //IL_81b2: Unknown result type (might be due to invalid IL or missing references) //IL_81b8: Unknown result type (might be due to invalid IL or missing references) //IL_81c2: Unknown result type (might be due to invalid IL or missing references) //IL_81c7: Unknown result type (might be due to invalid IL or missing references) //IL_81cd: Unknown result type (might be due to invalid IL or missing references) //IL_81d7: Unknown result type (might be due to invalid IL or missing references) //IL_81dd: Unknown result type (might be due to invalid IL or missing references) //IL_81e2: Unknown result type (might be due to invalid IL or missing references) //IL_81e8: Unknown result type (might be due to invalid IL or missing references) //IL_81ed: Unknown result type (might be due to invalid IL or missing references) //IL_81f2: Unknown result type (might be due to invalid IL or missing references) //IL_81f8: Unknown result type (might be due to invalid IL or missing references) //IL_8202: Unknown result type (might be due to invalid IL or missing references) //IL_8207: Unknown result type (might be due to invalid IL or missing references) //IL_820c: Unknown result type (might be due to invalid IL or missing references) //IL_821c: Unknown result type (might be due to invalid IL or missing references) //IL_8222: Unknown result type (might be due to invalid IL or missing references) //IL_8227: Unknown result type (might be due to invalid IL or missing references) //IL_822d: Unknown result type (might be due to invalid IL or missing references) //IL_8232: Unknown result type (might be due to invalid IL or missing references) //IL_8238: Unknown result type (might be due to invalid IL or missing references) //IL_8242: Unknown result type (might be due to invalid IL or missing references) //IL_8247: Unknown result type (might be due to invalid IL or missing references) //IL_824d: Unknown result type (might be due to invalid IL or missing references) //IL_8257: Unknown result type (might be due to invalid IL or missing references) //IL_825d: Unknown result type (might be due to invalid IL or missing references) //IL_8262: Unknown result type (might be due to invalid IL or missing references) //IL_8268: Unknown result type (might be due to invalid IL or missing references) //IL_826d: Unknown result type (might be due to invalid IL or missing references) //IL_8272: Unknown result type (might be due to invalid IL or missing references) //IL_8278: Unknown result type (might be due to invalid IL or missing references) //IL_8282: Unknown result type (might be due to invalid IL or missing references) //IL_8287: Unknown result type (might be due to invalid IL or missing references) //IL_8292: Unknown result type (might be due to invalid IL or missing references) //IL_8298: Unknown result type (might be due to invalid IL or missing references) //IL_829d: Unknown result type (might be due to invalid IL or missing references) //IL_82a3: Unknown result type (might be due to invalid IL or missing references) //IL_82a8: Unknown result type (might be due to invalid IL or missing references) //IL_82ae: Unknown result type (might be due to invalid IL or missing references) //IL_82b8: Unknown result type (might be due to invalid IL or missing references) //IL_82bd: Unknown result type (might be due to invalid IL or missing references) //IL_82c3: Unknown result type (might be due to invalid IL or missing references) //IL_82cd: Unknown result type (might be due to invalid IL or missing references) //IL_82d3: Unknown result type (might be due to invalid IL or missing references) //IL_82d8: Unknown result type (might be due to invalid IL or missing references) //IL_82de: Unknown result type (might be due to invalid IL or missing references) //IL_82e3: Unknown result type (might be due to invalid IL or missing references) //IL_82e8: Unknown result type (might be due to invalid IL or missing references) //IL_82ee: Unknown result type (might be due to invalid IL or missing references) //IL_82f8: Unknown result type (might be due to invalid IL or missing references) //IL_82fd: Unknown result type (might be due to invalid IL or missing references) //IL_8302: Unknown result type (might be due to invalid IL or missing references) //IL_8312: Unknown result type (might be due to invalid IL or missing references) //IL_8318: Unknown result type (might be due to invalid IL or missing references) //IL_831d: Unknown result type (might be due to invalid IL or missing references) //IL_8323: Unknown result type (might be due to invalid IL or missing references) //IL_8328: Unknown result type (might be due to invalid IL or missing references) //IL_832e: Unknown result type (might be due to invalid IL or missing references) //IL_8338: Unknown result type (might be due to invalid IL or missing references) //IL_833d: Unknown result type (might be due to invalid IL or missing references) //IL_8343: Unknown result type (might be due to invalid IL or missing references) //IL_834d: Unknown result type (might be due to invalid IL or missing references) //IL_8353: Unknown result type (might be due to invalid IL or missing references) //IL_8358: Unknown result type (might be due to invalid IL or missing references) //IL_835e: Unknown result type (might be due to invalid IL or missing references) //IL_8363: Unknown result type (might be due to invalid IL or missing references) //IL_8368: Unknown result type (might be due to invalid IL or missing references) //IL_8373: Unknown result type (might be due to invalid IL or missing references) //IL_8379: Unknown result type (might be due to invalid IL or missing references) //IL_837e: Unknown result type (might be due to invalid IL or missing references) //IL_8384: Unknown result type (might be due to invalid IL or missing references) //IL_8389: Unknown result type (might be due to invalid IL or missing references) //IL_838f: Unknown result type (might be due to invalid IL or missing references) //IL_8399: Unknown result type (might be due to invalid IL or missing references) //IL_839e: Unknown result type (might be due to invalid IL or missing references) //IL_83a4: Unknown result type (might be due to invalid IL or missing references) //IL_83ae: Unknown result type (might be due to invalid IL or missing references) //IL_83b4: Unknown result type (might be due to invalid IL or missing references) //IL_83b9: Unknown result type (might be due to invalid IL or missing references) //IL_83bf: Unknown result type (might be due to invalid IL or missing references) //IL_83c4: Unknown result type (might be due to invalid IL or missing references) //IL_83c9: Unknown result type (might be due to invalid IL or missing references) //IL_83ce: Unknown result type (might be due to invalid IL or missing references) //IL_83de: Unknown result type (might be due to invalid IL or missing references) //IL_83e4: Unknown result type (might be due to invalid IL or missing references) //IL_83e9: Unknown result type (might be due to invalid IL or missing references) //IL_83ef: Unknown result type (might be due to invalid IL or missing references) //IL_83f4: Unknown result type (might be due to invalid IL or missing references) //IL_83fa: Unknown result type (might be due to invalid IL or missing references) //IL_8404: Unknown result type (might be due to invalid IL or missing references) //IL_8409: Unknown result type (might be due to invalid IL or missing references) //IL_840f: Unknown result type (might be due to invalid IL or missing references) //IL_8419: Unknown result type (might be due to invalid IL or missing references) //IL_841f: Unknown result type (might be due to invalid IL or missing references) //IL_8424: Unknown result type (might be due to invalid IL or missing references) //IL_842a: Unknown result type (might be due to invalid IL or missing references) //IL_842f: Unknown result type (might be due to invalid IL or missing references) //IL_8434: Unknown result type (might be due to invalid IL or missing references) //IL_843a: Unknown result type (might be due to invalid IL or missing references) //IL_8444: Unknown result type (might be due to invalid IL or missing references) //IL_8449: Unknown result type (might be due to invalid IL or missing references) //IL_8454: Unknown result type (might be due to invalid IL or missing references) //IL_845a: Unknown result type (might be due to invalid IL or missing references) //IL_845f: Unknown result type (might be due to invalid IL or missing references) //IL_8465: Unknown result type (might be due to invalid IL or missing references) //IL_846a: Unknown result type (might be due to invalid IL or missing references) //IL_8470: Unknown result type (might be due to invalid IL or missing references) //IL_847a: Unknown result type (might be due to invalid IL or missing references) //IL_847f: Unknown result type (might be due to invalid IL or missing references) //IL_8485: Unknown result type (might be due to invalid IL or missing references) //IL_848f: Unknown result type (might be due to invalid IL or missing references) //IL_8495: Unknown result type (might be due to invalid IL or missing references) //IL_849a: Unknown result type (might be due to invalid IL or missing references) //IL_84a0: Unknown result type (might be due to invalid IL or missing references) //IL_84a5: Unknown result type (might be due to invalid IL or missing references) //IL_84aa: Unknown result type (might be due to invalid IL or missing references) //IL_84b0: Unknown result type (might be due to invalid IL or missing references) //IL_84ba: Unknown result type (might be due to invalid IL or missing references) //IL_84bf: Unknown result type (might be due to invalid IL or missing references) //IL_84c4: Unknown result type (might be due to invalid IL or missing references) //IL_84d4: Unknown result type (might be due to invalid IL or missing references) //IL_84da: Unknown result type (might be due to invalid IL or missing references) //IL_84df: Unknown result type (might be due to invalid IL or missing references) //IL_84e5: Unknown result type (might be due to invalid IL or missing references) //IL_84ea: Unknown result type (might be due to invalid IL or missing references) //IL_84f0: Unknown result type (might be due to invalid IL or missing references) //IL_84fa: Unknown result type (might be due to invalid IL or missing references) //IL_84ff: Unknown result type (might be due to invalid IL or missing references) //IL_8505: Unknown result type (might be due to invalid IL or missing references) //IL_850f: Unknown result type (might be due to invalid IL or missing references) //IL_8515: Unknown result type (might be due to invalid IL or missing references) //IL_851a: Unknown result type (might be due to invalid IL or missing references) //IL_8520: Unknown result type (might be due to invalid IL or missing references) //IL_8525: Unknown result type (might be due to invalid IL or missing references) //IL_852a: Unknown result type (might be due to invalid IL or missing references) //IL_8530: Unknown result type (might be due to invalid IL or missing references) //IL_853a: Unknown result type (might be due to invalid IL or missing references) //IL_853f: Unknown result type (might be due to invalid IL or missing references) //IL_854a: Unknown result type (might be due to invalid IL or missing references) //IL_8550: Unknown result type (might be due to invalid IL or missing references) //IL_8555: Unknown result type (might be due to invalid IL or missing references) //IL_855b: Unknown result type (might be due to invalid IL or missing references) //IL_8560: Unknown result type (might be due to invalid IL or missing references) //IL_8566: Unknown result type (might be due to invalid IL or missing references) //IL_8570: Unknown result type (might be due to invalid IL or missing references) //IL_8575: Unknown result type (might be due to invalid IL or missing references) //IL_857b: Unknown result type (might be due to invalid IL or missing references) //IL_8585: Unknown result type (might be due to invalid IL or missing references) //IL_858b: Unknown result type (might be due to invalid IL or missing references) //IL_8590: Unknown result type (might be due to invalid IL or missing references) //IL_8596: Unknown result type (might be due to invalid IL or missing references) //IL_859b: Unknown result type (might be due to invalid IL or missing references) //IL_85a0: Unknown result type (might be due to invalid IL or missing references) //IL_85a6: Unknown result type (might be due to invalid IL or missing references) //IL_85b0: Unknown result type (might be due to invalid IL or missing references) //IL_85b5: Unknown result type (might be due to invalid IL or missing references) //IL_85ba: Unknown result type (might be due to invalid IL or missing references) //IL_85ca: Unknown result type (might be due to invalid IL or missing references) //IL_85d0: Unknown result type (might be due to invalid IL or missing references) //IL_85d5: Unknown result type (might be due to invalid IL or missing references) //IL_85db: Unknown result type (might be due to invalid IL or missing references) //IL_85e0: Unknown result type (might be due to invalid IL or missing references) //IL_85e6: Unknown result type (might be due to invalid IL or missing references) //IL_85f0: Unknown result type (might be due to invalid IL or missing references) //IL_85f5: Unknown result type (might be due to invalid IL or missing references) //IL_85fb: Unknown result type (might be due to invalid IL or missing references) //IL_8605: Unknown result type (might be due to invalid IL or missing references) //IL_860b: Unknown result type (might be due to invalid IL or missing references) //IL_8610: Unknown result type (might be due to invalid IL or missing references) //IL_8616: Unknown result type (might be due to invalid IL or missing references) //IL_861b: Unknown result type (might be due to invalid IL or missing references) //IL_8620: Unknown result type (might be due to invalid IL or missing references) //IL_8626: Unknown result type (might be due to invalid IL or missing references) //IL_8630: Unknown result type (might be due to invalid IL or missing references) //IL_8635: Unknown result type (might be due to invalid IL or missing references) //IL_8640: Unknown result type (might be due to invalid IL or missing references) //IL_8646: Unknown result type (might be due to invalid IL or missing references) //IL_864b: Unknown result type (might be due to invalid IL or missing references) //IL_8651: Unknown result type (might be due to invalid IL or missing references) //IL_8656: Unknown result type (might be due to invalid IL or missing references) //IL_865c: Unknown result type (might be due to invalid IL or missing references) //IL_8666: Unknown result type (might be due to invalid IL or missing references) //IL_866b: Unknown result type (might be due to invalid IL or missing references) //IL_8671: Unknown result type (might be due to invalid IL or missing references) //IL_867b: Unknown result type (might be due to invalid IL or missing references) //IL_8681: Unknown result type (might be due to invalid IL or missing references) //IL_8686: Unknown result type (might be due to invalid IL or missing references) //IL_868c: Unknown result type (might be due to invalid IL or missing references) //IL_8691: Unknown result type (might be due to invalid IL or missing references) //IL_8696: Unknown result type (might be due to invalid IL or missing references) //IL_869c: Unknown result type (might be due to invalid IL or missing references) //IL_86a6: Unknown result type (might be due to invalid IL or missing references) //IL_86ab: Unknown result type (might be due to invalid IL or missing references) //IL_86b0: Unknown result type (might be due to invalid IL or missing references) //IL_86c0: Unknown result type (might be due to invalid IL or missing references) //IL_86c6: Unknown result type (might be due to invalid IL or missing references) //IL_86cb: Unknown result type (might be due to invalid IL or missing references) //IL_86d1: Unknown result type (might be due to invalid IL or missing references) //IL_86d6: Unknown result type (might be due to invalid IL or missing references) //IL_86dc: Unknown result type (might be due to invalid IL or missing references) //IL_86e6: Unknown result type (might be due to invalid IL or missing references) //IL_86eb: Unknown result type (might be due to invalid IL or missing references) //IL_86f1: Unknown result type (might be due to invalid IL or missing references) //IL_86fb: Unknown result type (might be due to invalid IL or missing references) //IL_8701: Unknown result type (might be due to invalid IL or missing references) //IL_8706: Unknown result type (might be due to invalid IL or missing references) //IL_870c: Unknown result type (might be due to invalid IL or missing references) //IL_8711: Unknown result type (might be due to invalid IL or missing references) //IL_8716: Unknown result type (might be due to invalid IL or missing references) //IL_871c: Unknown result type (might be due to invalid IL or missing references) //IL_8726: Unknown result type (might be due to invalid IL or missing references) //IL_872b: Unknown result type (might be due to invalid IL or missing references) //IL_8736: Unknown result type (might be due to invalid IL or missing references) //IL_873c: Unknown result type (might be due to invalid IL or missing references) //IL_8741: Unknown result type (might be due to invalid IL or missing references) //IL_8747: Unknown result type (might be due to invalid IL or missing references) //IL_874c: Unknown result type (might be due to invalid IL or missing references) //IL_8752: Unknown result type (might be due to invalid IL or missing references) //IL_875c: Unknown result type (might be due to invalid IL or missing references) //IL_8761: Unknown result type (might be due to invalid IL or missing references) //IL_8767: Unknown result type (might be due to invalid IL or missing references) //IL_8771: Unknown result type (might be due to invalid IL or missing references) //IL_8777: Unknown result type (might be due to invalid IL or missing references) //IL_877c: Unknown result type (might be due to invalid IL or missing references) //IL_8782: Unknown result type (might be due to invalid IL or missing references) //IL_8787: Unknown result type (might be due to invalid IL or missing references) //IL_878c: Unknown result type (might be due to invalid IL or missing references) //IL_8792: Unknown result type (might be due to invalid IL or missing references) //IL_879c: Unknown result type (might be due to invalid IL or missing references) //IL_87a1: Unknown result type (might be due to invalid IL or missing references) //IL_87a6: Unknown result type (might be due to invalid IL or missing references) //IL_87b6: Unknown result type (might be due to invalid IL or missing references) //IL_87bc: Unknown result type (might be due to invalid IL or missing references) //IL_87c1: Unknown result type (might be due to invalid IL or missing references) //IL_87c7: Unknown result type (might be due to invalid IL or missing references) //IL_87cc: Unknown result type (might be due to invalid IL or missing references) //IL_87d2: Unknown result type (might be due to invalid IL or missing references) //IL_87dc: Unknown result type (might be due to invalid IL or missing references) //IL_87e1: Unknown result type (might be due to invalid IL or missing references) //IL_87e7: Unknown result type (might be due to invalid IL or missing references) //IL_87f1: Unknown result type (might be due to invalid IL or missing references) //IL_87f7: Unknown result type (might be due to invalid IL or missing references) //IL_87fc: Unknown result type (might be due to invalid IL or missing references) //IL_8802: Unknown result type (might be due to invalid IL or missing references) //IL_8807: Unknown result type (might be due to invalid IL or missing references) //IL_880c: Unknown result type (might be due to invalid IL or missing references) //IL_8812: Unknown result type (might be due to invalid IL or missing references) //IL_881c: Unknown result type (might be due to invalid IL or missing references) //IL_8821: Unknown result type (might be due to invalid IL or missing references) //IL_882c: Unknown result type (might be due to invalid IL or missing references) //IL_8832: Unknown result type (might be due to invalid IL or missing references) //IL_8837: Unknown result type (might be due to invalid IL or missing references) //IL_883d: Unknown result type (might be due to invalid IL or missing references) //IL_8842: Unknown result type (might be due to invalid IL or missing references) //IL_8848: Unknown result type (might be due to invalid IL or missing references) //IL_8852: Unknown result type (might be due to invalid IL or missing references) //IL_8857: Unknown result type (might be due to invalid IL or missing references) //IL_885d: Unknown result type (might be due to invalid IL or missing references) //IL_8867: Unknown result type (might be due to invalid IL or missing references) //IL_886d: Unknown result type (might be due to invalid IL or missing references) //IL_8872: Unknown result type (might be due to invalid IL or missing references) //IL_8878: Unknown result type (might be due to invalid IL or missing references) //IL_887d: Unknown result type (might be due to invalid IL or missing references) //IL_8882: Unknown result type (might be due to invalid IL or missing references) //IL_8888: Unknown result type (might be due to invalid IL or missing references) //IL_8892: Unknown result type (might be due to invalid IL or missing references) //IL_8897: Unknown result type (might be due to invalid IL or missing references) //IL_889c: Unknown result type (might be due to invalid IL or missing references) //IL_88ac: Unknown result type (might be due to invalid IL or missing references) //IL_88b2: Unknown result type (might be due to invalid IL or missing references) //IL_88b7: Unknown result type (might be due to invalid IL or missing references) //IL_88bd: Unknown result type (might be due to invalid IL or missing references) //IL_88c2: Unknown result type (might be due to invalid IL or missing references) //IL_88c8: Unknown result type (might be due to invalid IL or missing references) //IL_88d2: Unknown result type (might be due to invalid IL or missing references) //IL_88d7: Unknown result type (might be due to invalid IL or missing references) //IL_88dd: Unknown result type (might be due to invalid IL or missing references) //IL_88e7: Unknown result type (might be due to invalid IL or missing references) //IL_88ed: Unknown result type (might be due to invalid IL or missing references) //IL_88f2: Unknown result type (might be due to invalid IL or missing references) //IL_88f8: Unknown result type (might be due to invalid IL or missing references) //IL_88fd: Unknown result type (might be due to invalid IL or missing references) //IL_8902: Unknown result type (might be due to invalid IL or missing references) //IL_8908: Unknown result type (might be due to invalid IL or missing references) //IL_8912: Unknown result type (might be due to invalid IL or missing references) //IL_8917: Unknown result type (might be due to invalid IL or missing references) //IL_8922: Unknown result type (might be due to invalid IL or missing references) //IL_8928: Unknown result type (might be due to invalid IL or missing references) //IL_892d: Unknown result type (might be due to invalid IL or missing references) //IL_8933: Unknown result type (might be due to invalid IL or missing references) //IL_8938: Unknown result type (might be due to invalid IL or missing references) //IL_893e: Unknown result type (might be due to invalid IL or missing references) //IL_8948: Unknown result type (might be due to invalid IL or missing references) //IL_894d: Unknown result type (might be due to invalid IL or missing references) //IL_8953: Unknown result type (might be due to invalid IL or missing references) //IL_895d: Unknown result type (might be due to invalid IL or missing references) //IL_8963: Unknown result type (might be due to invalid IL or missing references) //IL_8968: Unknown result type (might be due to invalid IL or missing references) //IL_896e: Unknown result type (might be due to invalid IL or missing references) //IL_8973: Unknown result type (might be due to invalid IL or missing references) //IL_8978: Unknown result type (might be due to invalid IL or missing references) //IL_897e: Unknown result type (might be due to invalid IL or missing references) //IL_8988: Unknown result type (might be due to invalid IL or missing references) //IL_898d: Unknown result type (might be due to invalid IL or missing references) //IL_8992: Unknown result type (might be due to invalid IL or missing references) //IL_89a2: Unknown result type (might be due to invalid IL or missing references) //IL_89a8: Unknown result type (might be due to invalid IL or missing references) //IL_89ad: Unknown result type (might be due to invalid IL or missing references) //IL_89b3: Unknown result type (might be due to invalid IL or missing references) //IL_89b8: Unknown result type (might be due to invalid IL or missing references) //IL_89be: Unknown result type (might be due to invalid IL or missing references) //IL_89c8: Unknown result type (might be due to invalid IL or missing references) //IL_89cd: Unknown result type (might be due to invalid IL or missing references) //IL_89d3: Unknown result type (might be due to invalid IL or missing references) //IL_89dd: Unknown result type (might be due to invalid IL or missing references) //IL_89e3: Unknown result type (might be due to invalid IL or missing references) //IL_89e8: Unknown result type (might be due to invalid IL or missing references) //IL_89ee: Unknown result type (might be due to invalid IL or missing references) //IL_89f3: Unknown result type (might be due to invalid IL or missing references) //IL_89f8: Unknown result type (might be due to invalid IL or missing references) //IL_89fe: Unknown result type (might be due to invalid IL or missing references) //IL_8a08: Unknown result type (might be due to invalid IL or missing references) //IL_8a0d: Unknown result type (might be due to invalid IL or missing references) //IL_8a18: Unknown result type (might be due to invalid IL or missing references) //IL_8a1e: Unknown result type (might be due to invalid IL or missing references) //IL_8a23: Unknown result type (might be due to invalid IL or missing references) //IL_8a29: Unknown result type (might be due to invalid IL or missing references) //IL_8a2e: Unknown result type (might be due to invalid IL or missing references) //IL_8a34: Unknown result type (might be due to invalid IL or missing references) //IL_8a3e: Unknown result type (might be due to invalid IL or missing references) //IL_8a43: Unknown result type (might be due to invalid IL or missing references) //IL_8a49: Unknown result type (might be due to invalid IL or missing references) //IL_8a53: Unknown result type (might be due to invalid IL or missing references) //IL_8a59: Unknown result type (might be due to invalid IL or missing references) //IL_8a5e: Unknown result type (might be due to invalid IL or missing references) //IL_8a64: Unknown result type (might be due to invalid IL or missing references) //IL_8a69: Unknown result type (might be due to invalid IL or missing references) //IL_8a6e: Unknown result type (might be due to invalid IL or missing references) //IL_8a74: Unknown result type (might be due to invalid IL or missing references) //IL_8a7e: Unknown result type (might be due to invalid IL or missing references) //IL_8a83: Unknown result type (might be due to invalid IL or missing references) //IL_8a88: Unknown result type (might be due to invalid IL or missing references) //IL_8a98: Unknown result type (might be due to invalid IL or missing references) //IL_8a9e: Unknown result type (might be due to invalid IL or missing references) //IL_8aa3: Unknown result type (might be due to invalid IL or missing references) //IL_8aa9: Unknown result type (might be due to invalid IL or missing references) //IL_8aae: Unknown result type (might be due to invalid IL or missing references) //IL_8ab4: Unknown result type (might be due to invalid IL or missing references) //IL_8abe: Unknown result type (might be due to invalid IL or missing references) //IL_8ac3: Unknown result type (might be due to invalid IL or missing references) //IL_8ac9: Unknown result type (might be due to invalid IL or missing references) //IL_8ad3: Unknown result type (might be due to invalid IL or missing references) //IL_8ad9: Unknown result type (might be due to invalid IL or missing references) //IL_8ade: Unknown result type (might be due to invalid IL or missing references) //IL_8ae4: Unknown result type (might be due to invalid IL or missing references) //IL_8ae9: Unknown result type (might be due to invalid IL or missing references) //IL_8aee: Unknown result type (might be due to invalid IL or missing references) //IL_8af9: Unknown result type (might be due to invalid IL or missing references) //IL_8aff: Unknown result type (might be due to invalid IL or missing references) //IL_8b04: Unknown result type (might be due to invalid IL or missing references) //IL_8b0a: Unknown result type (might be due to invalid IL or missing references) //IL_8b0f: Unknown result type (might be due to invalid IL or missing references) //IL_8b15: Unknown result type (might be due to invalid IL or missing references) //IL_8b1f: Unknown result type (might be due to invalid IL or missing references) //IL_8b24: Unknown result type (might be due to invalid IL or missing references) //IL_8b2a: Unknown result type (might be due to invalid IL or missing references) //IL_8b34: Unknown result type (might be due to invalid IL or missing references) //IL_8b3a: Unknown result type (might be due to invalid IL or missing references) //IL_8b3f: Unknown result type (might be due to invalid IL or missing references) //IL_8b45: Unknown result type (might be due to invalid IL or missing references) //IL_8b4a: Unknown result type (might be due to invalid IL or missing references) //IL_8b4f: Unknown result type (might be due to invalid IL or missing references) //IL_8b54: Unknown result type (might be due to invalid IL or missing references) //IL_8b64: Unknown result type (might be due to invalid IL or missing references) //IL_8b6a: Unknown result type (might be due to invalid IL or missing references) //IL_8b6f: Unknown result type (might be due to invalid IL or missing references) //IL_8b75: Unknown result type (might be due to invalid IL or missing references) //IL_8b7a: Unknown result type (might be due to invalid IL or missing references) //IL_8b80: Unknown result type (might be due to invalid IL or missing references) //IL_8b8a: Unknown result type (might be due to invalid IL or missing references) //IL_8b8f: Unknown result type (might be due to invalid IL or missing references) //IL_8b95: Unknown result type (might be due to invalid IL or missing references) //IL_8b9f: Unknown result type (might be due to invalid IL or missing references) //IL_8ba5: Unknown result type (might be due to invalid IL or missing references) //IL_8baa: Unknown result type (might be due to invalid IL or missing references) //IL_8bb0: Unknown result type (might be due to invalid IL or missing references) //IL_8bb5: Unknown result type (might be due to invalid IL or missing references) //IL_8bba: Unknown result type (might be due to invalid IL or missing references) //IL_8bc0: Unknown result type (might be due to invalid IL or missing references) //IL_8bca: Unknown result type (might be due to invalid IL or missing references) //IL_8bcf: Unknown result type (might be due to invalid IL or missing references) //IL_8bda: Unknown result type (might be due to invalid IL or missing references) //IL_8be0: Unknown result type (might be due to invalid IL or missing references) //IL_8be5: Unknown result type (might be due to invalid IL or missing references) //IL_8beb: Unknown result type (might be due to invalid IL or missing references) //IL_8bf0: Unknown result type (might be due to invalid IL or missing references) //IL_8bf6: Unknown result type (might be due to invalid IL or missing references) //IL_8c00: Unknown result type (might be due to invalid IL or missing references) //IL_8c05: Unknown result type (might be due to invalid IL or missing references) //IL_8c0b: Unknown result type (might be due to invalid IL or missing references) //IL_8c15: Unknown result type (might be due to invalid IL or missing references) //IL_8c1b: Unknown result type (might be due to invalid IL or missing references) //IL_8c20: Unknown result type (might be due to invalid IL or missing references) //IL_8c26: Unknown result type (might be due to invalid IL or missing references) //IL_8c2b: Unknown result type (might be due to invalid IL or missing references) //IL_8c30: Unknown result type (might be due to invalid IL or missing references) //IL_8c36: Unknown result type (might be due to invalid IL or missing references) //IL_8c40: Unknown result type (might be due to invalid IL or missing references) //IL_8c45: Unknown result type (might be due to invalid IL or missing references) //IL_8c4a: Unknown result type (might be due to invalid IL or missing references) //IL_8c5a: Unknown result type (might be due to invalid IL or missing references) //IL_8c60: Unknown result type (might be due to invalid IL or missing references) //IL_8c65: Unknown result type (might be due to invalid IL or missing references) //IL_8c6b: Unknown result type (might be due to invalid IL or missing references) //IL_8c70: Unknown result type (might be due to invalid IL or missing references) //IL_8c76: Unknown result type (might be due to invalid IL or missing references) //IL_8c80: Unknown result type (might be due to invalid IL or missing references) //IL_8c85: Unknown result type (might be due to invalid IL or missing references) //IL_8c8b: Unknown result type (might be due to invalid IL or missing references) //IL_8c95: Unknown result type (might be due to invalid IL or missing references) //IL_8c9b: Unknown result type (might be due to invalid IL or missing references) //IL_8ca0: Unknown result type (might be due to invalid IL or missing references) //IL_8ca6: Unknown result type (might be due to invalid IL or missing references) //IL_8cab: Unknown result type (might be due to invalid IL or missing references) //IL_8cb0: Unknown result type (might be due to invalid IL or missing references) //IL_8cb6: Unknown result type (might be due to invalid IL or missing references) //IL_8cc0: Unknown result type (might be due to invalid IL or missing references) //IL_8cc5: Unknown result type (might be due to invalid IL or missing references) //IL_8cd0: Unknown result type (might be due to invalid IL or missing references) //IL_8cd6: Unknown result type (might be due to invalid IL or missing references) //IL_8cdb: Unknown result type (might be due to invalid IL or missing references) //IL_8ce1: Unknown result type (might be due to invalid IL or missing references) //IL_8ce6: Unknown result type (might be due to invalid IL or missing references) //IL_8cec: Unknown result type (might be due to invalid IL or missing references) //IL_8cf6: Unknown result type (might be due to invalid IL or missing references) //IL_8cfb: Unknown result type (might be due to invalid IL or missing references) //IL_8d01: Unknown result type (might be due to invalid IL or missing references) //IL_8d0b: Unknown result type (might be due to invalid IL or missing references) //IL_8d11: Unknown result type (might be due to invalid IL or missing references) //IL_8d16: Unknown result type (might be due to invalid IL or missing references) //IL_8d1c: Unknown result type (might be due to invalid IL or missing references) //IL_8d21: Unknown result type (might be due to invalid IL or missing references) //IL_8d26: Unknown result type (might be due to invalid IL or missing references) //IL_8d2c: Unknown result type (might be due to invalid IL or missing references) //IL_8d36: Unknown result type (might be due to invalid IL or missing references) //IL_8d3b: Unknown result type (might be due to invalid IL or missing references) //IL_8d40: Unknown result type (might be due to invalid IL or missing references) //IL_8d50: Unknown result type (might be due to invalid IL or missing references) //IL_8d56: Unknown result type (might be due to invalid IL or missing references) //IL_8d5b: Unknown result type (might be due to invalid IL or missing references) //IL_8d61: Unknown result type (might be due to invalid IL or missing references) //IL_8d66: Unknown result type (might be due to invalid IL or missing references) //IL_8d6c: Unknown result type (might be due to invalid IL or missing references) //IL_8d76: Unknown result type (might be due to invalid IL or missing references) //IL_8d7b: Unknown result type (might be due to invalid IL or missing references) //IL_8d81: Unknown result type (might be due to invalid IL or missing references) //IL_8d8b: Unknown result type (might be due to invalid IL or missing references) //IL_8d91: Unknown result type (might be due to invalid IL or missing references) //IL_8d96: Unknown result type (might be due to invalid IL or missing references) //IL_8d9c: Unknown result type (might be due to invalid IL or missing references) //IL_8da1: Unknown result type (might be due to invalid IL or missing references) //IL_8da6: Unknown result type (might be due to invalid IL or missing references) //IL_8dac: Unknown result type (might be due to invalid IL or missing references) //IL_8db6: Unknown result type (might be due to invalid IL or missing references) //IL_8dbb: Unknown result type (might be due to invalid IL or missing references) //IL_8dc6: Unknown result type (might be due to invalid IL or missing references) //IL_8dcc: Unknown result type (might be due to invalid IL or missing references) //IL_8dd1: Unknown result type (might be due to invalid IL or missing references) //IL_8dd7: Unknown result type (might be due to invalid IL or missing references) //IL_8ddc: Unknown result type (might be due to invalid IL or missing references) //IL_8de2: Unknown result type (might be due to invalid IL or missing references) //IL_8dec: Unknown result type (might be due to invalid IL or missing references) //IL_8df1: Unknown result type (might be due to invalid IL or missing references) //IL_8df7: Unknown result type (might be due to invalid IL or missing references) //IL_8e01: Unknown result type (might be due to invalid IL or missing references) //IL_8e07: Unknown result type (might be due to invalid IL or missing references) //IL_8e0c: Unknown result type (might be due to invalid IL or missing references) //IL_8e12: Unknown result type (might be due to invalid IL or missing references) //IL_8e17: Unknown result type (might be due to invalid IL or missing references) //IL_8e1c: Unknown result type (might be due to invalid IL or missing references) //IL_8e22: Unknown result type (might be due to invalid IL or missing references) //IL_8e2c: Unknown result type (might be due to invalid IL or missing references) //IL_8e31: Unknown result type (might be due to invalid IL or missing references) //IL_8e36: Unknown result type (might be due to invalid IL or missing references) //IL_8e46: Unknown result type (might be due to invalid IL or missing references) //IL_8e4c: Unknown result type (might be due to invalid IL or missing references) //IL_8e51: Unknown result type (might be due to invalid IL or missing references) //IL_8e57: Unknown result type (might be due to invalid IL or missing references) //IL_8e5c: Unknown result type (might be due to invalid IL or missing references) //IL_8e62: Unknown result type (might be due to invalid IL or missing references) //IL_8e6c: Unknown result type (might be due to invalid IL or missing references) //IL_8e71: Unknown result type (might be due to invalid IL or missing references) //IL_8e77: Unknown result type (might be due to invalid IL or missing references) //IL_8e81: Unknown result type (might be due to invalid IL or missing references) //IL_8e87: Unknown result type (might be due to invalid IL or missing references) //IL_8e8c: Unknown result type (might be due to invalid IL or missing references) //IL_8e92: Unknown result type (might be due to invalid IL or missing references) //IL_8e97: Unknown result type (might be due to invalid IL or missing references) //IL_8e9c: Unknown result type (might be due to invalid IL or missing references) //IL_8ea2: Unknown result type (might be due to invalid IL or missing references) //IL_8eac: Unknown result type (might be due to invalid IL or missing references) //IL_8eb1: Unknown result type (might be due to invalid IL or missing references) //IL_8ebc: Unknown result type (might be due to invalid IL or missing references) //IL_8ec2: Unknown result type (might be due to invalid IL or missing references) //IL_8ec7: Unknown result type (might be due to invalid IL or missing references) //IL_8ecd: Unknown result type (might be due to invalid IL or missing references) //IL_8ed2: Unknown result type (might be due to invalid IL or missing references) //IL_8ed8: Unknown result type (might be due to invalid IL or missing references) //IL_8ee2: Unknown result type (might be due to invalid IL or missing references) //IL_8ee7: Unknown result type (might be due to invalid IL or missing references) //IL_8eed: Unknown result type (might be due to invalid IL or missing references) //IL_8ef7: Unknown result type (might be due to invalid IL or missing references) //IL_8efd: Unknown result type (might be due to invalid IL or missing references) //IL_8f02: Unknown result type (might be due to invalid IL or missing references) //IL_8f08: Unknown result type (might be due to invalid IL or missing references) //IL_8f0d: Unknown result type (might be due to invalid IL or missing references) //IL_8f12: Unknown result type (might be due to invalid IL or missing references) //IL_8f18: Unknown result type (might be due to invalid IL or missing references) //IL_8f22: Unknown result type (might be due to invalid IL or missing references) //IL_8f27: Unknown result type (might be due to invalid IL or missing references) //IL_8f2c: Unknown result type (might be due to invalid IL or missing references) //IL_8f3c: Unknown result type (might be due to invalid IL or missing references) //IL_8f42: Unknown result type (might be due to invalid IL or missing references) //IL_8f47: Unknown result type (might be due to invalid IL or missing references) //IL_8f4d: Unknown result type (might be due to invalid IL or missing references) //IL_8f52: Unknown result type (might be due to invalid IL or missing references) //IL_8f58: Unknown result type (might be due to invalid IL or missing references) //IL_8f62: Unknown result type (might be due to invalid IL or missing references) //IL_8f67: Unknown result type (might be due to invalid IL or missing references) //IL_8f6d: Unknown result type (might be due to invalid IL or missing references) //IL_8f77: Unknown result type (might be due to invalid IL or missing references) //IL_8f7d: Unknown result type (might be due to invalid IL or missing references) //IL_8f82: Unknown result type (might be due to invalid IL or missing references) //IL_8f88: Unknown result type (might be due to invalid IL or missing references) //IL_8f8d: Unknown result type (might be due to invalid IL or missing references) //IL_8f92: Unknown result type (might be due to invalid IL or missing references) //IL_8f98: Unknown result type (might be due to invalid IL or missing references) //IL_8fa2: Unknown result type (might be due to invalid IL or missing references) //IL_8fa7: Unknown result type (might be due to invalid IL or missing references) //IL_8fb2: Unknown result type (might be due to invalid IL or missing references) //IL_8fb8: Unknown result type (might be due to invalid IL or missing references) //IL_8fbd: Unknown result type (might be due to invalid IL or missing references) //IL_8fc3: Unknown result type (might be due to invalid IL or missing references) //IL_8fc8: Unknown result type (might be due to invalid IL or missing references) //IL_8fce: Unknown result type (might be due to invalid IL or missing references) //IL_8fd8: Unknown result type (might be due to invalid IL or missing references) //IL_8fdd: Unknown result type (might be due to invalid IL or missing references) //IL_8fe3: Unknown result type (might be due to invalid IL or missing references) //IL_8fed: Unknown result type (might be due to invalid IL or missing references) //IL_8ff3: Unknown result type (might be due to invalid IL or missing references) //IL_8ff8: Unknown result type (might be due to invalid IL or missing references) //IL_8ffe: Unknown result type (might be due to invalid IL or missing references) //IL_9003: Unknown result type (might be due to invalid IL or missing references) //IL_9008: Unknown result type (might be due to invalid IL or missing references) //IL_900e: Unknown result type (might be due to invalid IL or missing references) //IL_9018: Unknown result type (might be due to invalid IL or missing references) //IL_901d: Unknown result type (might be due to invalid IL or missing references) //IL_9022: Unknown result type (might be due to invalid IL or missing references) //IL_9032: Unknown result type (might be due to invalid IL or missing references) //IL_9038: Unknown result type (might be due to invalid IL or missing references) //IL_903d: Unknown result type (might be due to invalid IL or missing references) //IL_9043: Unknown result type (might be due to invalid IL or missing references) //IL_9048: Unknown result type (might be due to invalid IL or missing references) //IL_904e: Unknown result type (might be due to invalid IL or missing references) //IL_9058: Unknown result type (might be due to invalid IL or missing references) //IL_905d: Unknown result type (might be due to invalid IL or missing references) //IL_9063: Unknown result type (might be due to invalid IL or missing references) //IL_906d: Unknown result type (might be due to invalid IL or missing references) //IL_9073: Unknown result type (might be due to invalid IL or missing references) //IL_9078: Unknown result type (might be due to invalid IL or missing references) //IL_907e: Unknown result type (might be due to invalid IL or missing references) //IL_9083: Unknown result type (might be due to invalid IL or missing references) //IL_9088: Unknown result type (might be due to invalid IL or missing references) //IL_908e: Unknown result type (might be due to invalid IL or missing references) //IL_9098: Unknown result type (might be due to invalid IL or missing references) //IL_909d: Unknown result type (might be due to invalid IL or missing references) //IL_90a8: Unknown result type (might be due to invalid IL or missing references) //IL_90ae: Unknown result type (might be due to invalid IL or missing references) //IL_90b3: Unknown result type (might be due to invalid IL or missing references) //IL_90b9: Unknown result type (might be due to invalid IL or missing references) //IL_90be: Unknown result type (might be due to invalid IL or missing references) //IL_90c4: Unknown result type (might be due to invalid IL or missing references) //IL_90ce: Unknown result type (might be due to invalid IL or missing references) //IL_90d3: Unknown result type (might be due to invalid IL or missing references) //IL_90d9: Unknown result type (might be due to invalid IL or missing references) //IL_90e3: Unknown result type (might be due to invalid IL or missing references) //IL_90e9: Unknown result type (might be due to invalid IL or missing references) //IL_90ee: Unknown result type (might be due to invalid IL or missing references) //IL_90f4: Unknown result type (might be due to invalid IL or missing references) //IL_90f9: Unknown result type (might be due to invalid IL or missing references) //IL_90fe: Unknown result type (might be due to invalid IL or missing references) //IL_9104: Unknown result type (might be due to invalid IL or missing references) //IL_910e: Unknown result type (might be due to invalid IL or missing references) //IL_9113: Unknown result type (might be due to invalid IL or missing references) //IL_9118: Unknown result type (might be due to invalid IL or missing references) //IL_9128: Unknown result type (might be due to invalid IL or missing references) //IL_912e: Unknown result type (might be due to invalid IL or missing references) //IL_9133: Unknown result type (might be due to invalid IL or missing references) //IL_9139: Unknown result type (might be due to invalid IL or missing references) //IL_913e: Unknown result type (might be due to invalid IL or missing references) //IL_9144: Unknown result type (might be due to invalid IL or missing references) //IL_914e: Unknown result type (might be due to invalid IL or missing references) //IL_9153: Unknown result type (might be due to invalid IL or missing references) //IL_9159: Unknown result type (might be due to invalid IL or missing references) //IL_9163: Unknown result type (might be due to invalid IL or missing references) //IL_9169: Unknown result type (might be due to invalid IL or missing references) //IL_916e: Unknown result type (might be due to invalid IL or missing references) //IL_9174: Unknown result type (might be due to invalid IL or missing references) //IL_9179: Unknown result type (might be due to invalid IL or missing references) //IL_917e: Unknown result type (might be due to invalid IL or missing references) //IL_9184: Unknown result type (might be due to invalid IL or missing references) //IL_918e: Unknown result type (might be due to invalid IL or missing references) //IL_9193: Unknown result type (might be due to invalid IL or missing references) //IL_919e: Unknown result type (might be due to invalid IL or missing references) //IL_91a4: Unknown result type (might be due to invalid IL or missing references) //IL_91a9: Unknown result type (might be due to invalid IL or missing references) //IL_91af: Unknown result type (might be due to invalid IL or missing references) //IL_91b4: Unknown result type (might be due to invalid IL or missing references) //IL_91ba: Unknown result type (might be due to invalid IL or missing references) //IL_91c4: Unknown result type (might be due to invalid IL or missing references) //IL_91c9: Unknown result type (might be due to invalid IL or missing references) //IL_91cf: Unknown result type (might be due to invalid IL or missing references) //IL_91d9: Unknown result type (might be due to invalid IL or missing references) //IL_91df: Unknown result type (might be due to invalid IL or missing references) //IL_91e4: Unknown result type (might be due to invalid IL or missing references) //IL_91ea: Unknown result type (might be due to invalid IL or missing references) //IL_91ef: Unknown result type (might be due to invalid IL or missing references) //IL_91f4: Unknown result type (might be due to invalid IL or missing references) //IL_91fa: Unknown result type (might be due to invalid IL or missing references) //IL_9204: Unknown result type (might be due to invalid IL or missing references) //IL_9209: Unknown result type (might be due to invalid IL or missing references) //IL_920e: Unknown result type (might be due to invalid IL or missing references) //IL_921e: Unknown result type (might be due to invalid IL or missing references) //IL_9224: Unknown result type (might be due to invalid IL or missing references) //IL_9229: Unknown result type (might be due to invalid IL or missing references) //IL_922f: Unknown result type (might be due to invalid IL or missing references) //IL_9234: Unknown result type (might be due to invalid IL or missing references) //IL_923a: Unknown result type (might be due to invalid IL or missing references) //IL_9244: Unknown result type (might be due to invalid IL or missing references) //IL_924a: Unknown result type (might be due to invalid IL or missing references) //IL_924f: Unknown result type (might be due to invalid IL or missing references) //IL_9255: Unknown result type (might be due to invalid IL or missing references) //IL_925a: Unknown result type (might be due to invalid IL or missing references) //IL_925f: Unknown result type (might be due to invalid IL or missing references) //IL_926a: Unknown result type (might be due to invalid IL or missing references) //IL_9270: Unknown result type (might be due to invalid IL or missing references) //IL_9275: Unknown result type (might be due to invalid IL or missing references) //IL_927b: Unknown result type (might be due to invalid IL or missing references) //IL_9280: Unknown result type (might be due to invalid IL or missing references) //IL_9286: Unknown result type (might be due to invalid IL or missing references) //IL_9290: Unknown result type (might be due to invalid IL or missing references) //IL_9295: Unknown result type (might be due to invalid IL or missing references) //IL_929b: Unknown result type (might be due to invalid IL or missing references) //IL_92a5: Unknown result type (might be due to invalid IL or missing references) //IL_92ab: Unknown result type (might be due to invalid IL or missing references) //IL_92b0: Unknown result type (might be due to invalid IL or missing references) //IL_92b6: Unknown result type (might be due to invalid IL or missing references) //IL_92bb: Unknown result type (might be due to invalid IL or missing references) //IL_92c0: Unknown result type (might be due to invalid IL or missing references) //IL_92c5: Unknown result type (might be due to invalid IL or missing references) //IL_92d5: Unknown result type (might be due to invalid IL or missing references) //IL_92db: Unknown result type (might be due to invalid IL or missing references) //IL_92e0: Unknown result type (might be due to invalid IL or missing references) //IL_92e6: Unknown result type (might be due to invalid IL or missing references) //IL_92eb: Unknown result type (might be due to invalid IL or missing references) //IL_92f1: Unknown result type (might be due to invalid IL or missing references) //IL_92fb: Unknown result type (might be due to invalid IL or missing references) //IL_9301: Unknown result type (might be due to invalid IL or missing references) //IL_9306: Unknown result type (might be due to invalid IL or missing references) //IL_930c: Unknown result type (might be due to invalid IL or missing references) //IL_9311: Unknown result type (might be due to invalid IL or missing references) //IL_9316: Unknown result type (might be due to invalid IL or missing references) //IL_931c: Unknown result type (might be due to invalid IL or missing references) //IL_9326: Unknown result type (might be due to invalid IL or missing references) //IL_932b: Unknown result type (might be due to invalid IL or missing references) //IL_9336: Unknown result type (might be due to invalid IL or missing references) //IL_933c: Unknown result type (might be due to invalid IL or missing references) //IL_9341: Unknown result type (might be due to invalid IL or missing references) //IL_9347: Unknown result type (might be due to invalid IL or missing references) //IL_934c: Unknown result type (might be due to invalid IL or missing references) //IL_9352: Unknown result type (might be due to invalid IL or missing references) //IL_935c: Unknown result type (might be due to invalid IL or missing references) //IL_9361: Unknown result type (might be due to invalid IL or missing references) //IL_9367: Unknown result type (might be due to invalid IL or missing references) //IL_9371: Unknown result type (might be due to invalid IL or missing references) //IL_9377: Unknown result type (might be due to invalid IL or missing references) //IL_937c: Unknown result type (might be due to invalid IL or missing references) //IL_9382: Unknown result type (might be due to invalid IL or missing references) //IL_9387: Unknown result type (might be due to invalid IL or missing references) //IL_938c: Unknown result type (might be due to invalid IL or missing references) //IL_9392: Unknown result type (might be due to invalid IL or missing references) //IL_939c: Unknown result type (might be due to invalid IL or missing references) //IL_93a1: Unknown result type (might be due to invalid IL or missing references) //IL_93a6: Unknown result type (might be due to invalid IL or missing references) //IL_93b6: Unknown result type (might be due to invalid IL or missing references) //IL_93bc: Unknown result type (might be due to invalid IL or missing references) //IL_93c1: Unknown result type (might be due to invalid IL or missing references) //IL_93c7: Unknown result type (might be due to invalid IL or missing references) //IL_93cc: Unknown result type (might be due to invalid IL or missing references) //IL_93d2: Unknown result type (might be due to invalid IL or missing references) //IL_93dc: Unknown result type (might be due to invalid IL or missing references) //IL_93e2: Unknown result type (might be due to invalid IL or missing references) //IL_93e7: Unknown result type (might be due to invalid IL or missing references) //IL_93ed: Unknown result type (might be due to invalid IL or missing references) //IL_93f2: Unknown result type (might be due to invalid IL or missing references) //IL_93f7: Unknown result type (might be due to invalid IL or missing references) //IL_93fd: Unknown result type (might be due to invalid IL or missing references) //IL_9407: Unknown result type (might be due to invalid IL or missing references) //IL_940c: Unknown result type (might be due to invalid IL or missing references) //IL_9417: Unknown result type (might be due to invalid IL or missing references) //IL_941d: Unknown result type (might be due to invalid IL or missing references) //IL_9422: Unknown result type (might be due to invalid IL or missing references) //IL_9428: Unknown result type (might be due to invalid IL or missing references) //IL_942d: Unknown result type (might be due to invalid IL or missing references) //IL_9433: Unknown result type (might be due to invalid IL or missing references) //IL_943d: Unknown result type (might be due to invalid IL or missing references) //IL_9442: Unknown result type (might be due to invalid IL or missing references) //IL_9448: Unknown result type (might be due to invalid IL or missing references) //IL_9452: Unknown result type (might be due to invalid IL or missing references) //IL_9458: Unknown result type (might be due to invalid IL or missing references) //IL_945d: Unknown result type (might be due to invalid IL or missing references) //IL_9463: Unknown result type (might be due to invalid IL or missing references) //IL_9468: Unknown result type (might be due to invalid IL or missing references) //IL_946d: Unknown result type (might be due to invalid IL or missing references) //IL_9473: Unknown result type (might be due to invalid IL or missing references) //IL_947d: Unknown result type (might be due to invalid IL or missing references) //IL_9482: Unknown result type (might be due to invalid IL or missing references) //IL_9487: Unknown result type (might be due to invalid IL or missing references) //IL_9497: Unknown result type (might be due to invalid IL or missing references) //IL_949d: Unknown result type (might be due to invalid IL or missing references) //IL_94a2: Unknown result type (might be due to invalid IL or missing references) //IL_94a8: Unknown result type (might be due to invalid IL or missing references) //IL_94ad: Unknown result type (might be due to invalid IL or missing references) //IL_94b3: Unknown result type (might be due to invalid IL or missing references) //IL_94bd: Unknown result type (might be due to invalid IL or missing references) //IL_94c3: Unknown result type (might be due to invalid IL or missing references) //IL_94c8: Unknown result type (might be due to invalid IL or missing references) //IL_94ce: Unknown result type (might be due to invalid IL or missing references) //IL_94d3: Unknown result type (might be due to invalid IL or missing references) //IL_94d8: Unknown result type (might be due to invalid IL or missing references) //IL_94de: Unknown result type (might be due to invalid IL or missing references) //IL_94e8: Unknown result type (might be due to invalid IL or missing references) //IL_94ed: Unknown result type (might be due to invalid IL or missing references) //IL_94f8: Unknown result type (might be due to invalid IL or missing references) //IL_94fe: Unknown result type (might be due to invalid IL or missing references) //IL_9503: Unknown result type (might be due to invalid IL or missing references) //IL_9509: Unknown result type (might be due to invalid IL or missing references) //IL_950e: Unknown result type (might be due to invalid IL or missing references) //IL_9514: Unknown result type (might be due to invalid IL or missing references) //IL_951e: Unknown result type (might be due to invalid IL or missing references) //IL_9523: Unknown result type (might be due to invalid IL or missing references) //IL_9529: Unknown result type (might be due to invalid IL or missing references) //IL_9533: Unknown result type (might be due to invalid IL or missing references) //IL_9539: Unknown result type (might be due to invalid IL or missing references) //IL_953e: Unknown result type (might be due to invalid IL or missing references) //IL_9544: Unknown result type (might be due to invalid IL or missing references) //IL_9549: Unknown result type (might be due to invalid IL or missing references) //IL_954e: Unknown result type (might be due to invalid IL or missing references) //IL_9554: Unknown result type (might be due to invalid IL or missing references) //IL_955e: Unknown result type (might be due to invalid IL or missing references) //IL_9563: Unknown result type (might be due to invalid IL or missing references) //IL_9568: Unknown result type (might be due to invalid IL or missing references) //IL_9578: Unknown result type (might be due to invalid IL or missing references) //IL_957e: Unknown result type (might be due to invalid IL or missing references) //IL_9583: Unknown result type (might be due to invalid IL or missing references) //IL_9589: Unknown result type (might be due to invalid IL or missing references) //IL_958e: Unknown result type (might be due to invalid IL or missing references) //IL_9594: Unknown result type (might be due to invalid IL or missing references) //IL_959e: Unknown result type (might be due to invalid IL or missing references) //IL_95a4: Unknown result type (might be due to invalid IL or missing references) //IL_95a9: Unknown result type (might be due to invalid IL or missing references) //IL_95af: Unknown result type (might be due to invalid IL or missing references) //IL_95b4: Unknown result type (might be due to invalid IL or missing references) //IL_95b9: Unknown result type (might be due to invalid IL or missing references) //IL_95bf: Unknown result type (might be due to invalid IL or missing references) //IL_95c9: Unknown result type (might be due to invalid IL or missing references) //IL_95ce: Unknown result type (might be due to invalid IL or missing references) //IL_95d9: Unknown result type (might be due to invalid IL or missing references) //IL_95df: Unknown result type (might be due to invalid IL or missing references) //IL_95e4: Unknown result type (might be due to invalid IL or missing references) //IL_95ea: Unknown result type (might be due to invalid IL or missing references) //IL_95ef: Unknown result type (might be due to invalid IL or missing references) //IL_95f5: Unknown result type (might be due to invalid IL or missing references) //IL_95ff: Unknown result type (might be due to invalid IL or missing references) //IL_9604: Unknown result type (might be due to invalid IL or missing references) //IL_960a: Unknown result type (might be due to invalid IL or missing references) //IL_9614: Unknown result type (might be due to invalid IL or missing references) //IL_961a: Unknown result type (might be due to invalid IL or missing references) //IL_961f: Unknown result type (might be due to invalid IL or missing references) //IL_9625: Unknown result type (might be due to invalid IL or missing references) //IL_962a: Unknown result type (might be due to invalid IL or missing references) //IL_962f: Unknown result type (might be due to invalid IL or missing references) //IL_9635: Unknown result type (might be due to invalid IL or missing references) //IL_963f: Unknown result type (might be due to invalid IL or missing references) //IL_9644: Unknown result type (might be due to invalid IL or missing references) //IL_9649: Unknown result type (might be due to invalid IL or missing references) //IL_9659: Unknown result type (might be due to invalid IL or missing references) //IL_965f: Unknown result type (might be due to invalid IL or missing references) //IL_9664: Unknown result type (might be due to invalid IL or missing references) //IL_966a: Unknown result type (might be due to invalid IL or missing references) //IL_966f: Unknown result type (might be due to invalid IL or missing references) //IL_9675: Unknown result type (might be due to invalid IL or missing references) //IL_967f: Unknown result type (might be due to invalid IL or missing references) //IL_9685: Unknown result type (might be due to invalid IL or missing references) //IL_968a: Unknown result type (might be due to invalid IL or missing references) //IL_9690: Unknown result type (might be due to invalid IL or missing references) //IL_9695: Unknown result type (might be due to invalid IL or missing references) //IL_969a: Unknown result type (might be due to invalid IL or missing references) //IL_96a0: Unknown result type (might be due to invalid IL or missing references) //IL_96aa: Unknown result type (might be due to invalid IL or missing references) //IL_96af: Unknown result type (might be due to invalid IL or missing references) //IL_96ba: Unknown result type (might be due to invalid IL or missing references) //IL_96c0: Unknown result type (might be due to invalid IL or missing references) //IL_96c5: Unknown result type (might be due to invalid IL or missing references) //IL_96cb: Unknown result type (might be due to invalid IL or missing references) //IL_96d0: Unknown result type (might be due to invalid IL or missing references) //IL_96d6: Unknown result type (might be due to invalid IL or missing references) //IL_96e0: Unknown result type (might be due to invalid IL or missing references) //IL_96e5: Unknown result type (might be due to invalid IL or missing references) //IL_96eb: Unknown result type (might be due to invalid IL or missing references) //IL_96f5: Unknown result type (might be due to invalid IL or missing references) //IL_96fb: Unknown result type (might be due to invalid IL or missing references) //IL_9700: Unknown result type (might be due to invalid IL or missing references) //IL_9706: Unknown result type (might be due to invalid IL or missing references) //IL_970b: Unknown result type (might be due to invalid IL or missing references) //IL_9710: Unknown result type (might be due to invalid IL or missing references) //IL_9716: Unknown result type (might be due to invalid IL or missing references) //IL_9720: Unknown result type (might be due to invalid IL or missing references) //IL_9725: Unknown result type (might be due to invalid IL or missing references) //IL_972a: Unknown result type (might be due to invalid IL or missing references) //IL_973a: Unknown result type (might be due to invalid IL or missing references) //IL_9740: Unknown result type (might be due to invalid IL or missing references) //IL_9745: Unknown result type (might be due to invalid IL or missing references) //IL_974b: Unknown result type (might be due to invalid IL or missing references) //IL_9750: Unknown result type (might be due to invalid IL or missing references) //IL_9756: Unknown result type (might be due to invalid IL or missing references) //IL_9760: Unknown result type (might be due to invalid IL or missing references) //IL_9766: Unknown result type (might be due to invalid IL or missing references) //IL_976b: Unknown result type (might be due to invalid IL or missing references) //IL_9771: Unknown result type (might be due to invalid IL or missing references) //IL_9776: Unknown result type (might be due to invalid IL or missing references) //IL_977b: Unknown result type (might be due to invalid IL or missing references) //IL_9781: Unknown result type (might be due to invalid IL or missing references) //IL_978b: Unknown result type (might be due to invalid IL or missing references) //IL_9790: Unknown result type (might be due to invalid IL or missing references) //IL_979b: Unknown result type (might be due to invalid IL or missing references) //IL_97a1: Unknown result type (might be due to invalid IL or missing references) //IL_97a6: Unknown result type (might be due to invalid IL or missing references) //IL_97ac: Unknown result type (might be due to invalid IL or missing references) //IL_97b1: Unknown result type (might be due to invalid IL or missing references) //IL_97b7: Unknown result type (might be due to invalid IL or missing references) //IL_97c1: Unknown result type (might be due to invalid IL or missing references) //IL_97c6: Unknown result type (might be due to invalid IL or missing references) //IL_97cc: Unknown result type (might be due to invalid IL or missing references) //IL_97d6: Unknown result type (might be due to invalid IL or missing references) //IL_97dc: Unknown result type (might be due to invalid IL or missing references) //IL_97e1: Unknown result type (might be due to invalid IL or missing references) //IL_97e7: Unknown result type (might be due to invalid IL or missing references) //IL_97ec: Unknown result type (might be due to invalid IL or missing references) //IL_97f1: Unknown result type (might be due to invalid IL or missing references) //IL_97f7: Unknown result type (might be due to invalid IL or missing references) //IL_9801: Unknown result type (might be due to invalid IL or missing references) //IL_9806: Unknown result type (might be due to invalid IL or missing references) //IL_980b: Unknown result type (might be due to invalid IL or missing references) //IL_981b: Unknown result type (might be due to invalid IL or missing references) //IL_9821: Unknown result type (might be due to invalid IL or missing references) //IL_9826: Unknown result type (might be due to invalid IL or missing references) //IL_982c: Unknown result type (might be due to invalid IL or missing references) //IL_9831: Unknown result type (might be due to invalid IL or missing references) //IL_9837: Unknown result type (might be due to invalid IL or missing references) //IL_9841: Unknown result type (might be due to invalid IL or missing references) //IL_9847: Unknown result type (might be due to invalid IL or missing references) //IL_984c: Unknown result type (might be due to invalid IL or missing references) //IL_9852: Unknown result type (might be due to invalid IL or missing references) //IL_9857: Unknown result type (might be due to invalid IL or missing references) //IL_985c: Unknown result type (might be due to invalid IL or missing references) //IL_9862: Unknown result type (might be due to invalid IL or missing references) //IL_986c: Unknown result type (might be due to invalid IL or missing references) //IL_9871: Unknown result type (might be due to invalid IL or missing references) //IL_987c: Unknown result type (might be due to invalid IL or missing references) //IL_9882: Unknown result type (might be due to invalid IL or missing references) //IL_9887: Unknown result type (might be due to invalid IL or missing references) //IL_988d: Unknown result type (might be due to invalid IL or missing references) //IL_9892: Unknown result type (might be due to invalid IL or missing references) //IL_9898: Unknown result type (might be due to invalid IL or missing references) //IL_98a2: Unknown result type (might be due to invalid IL or missing references) //IL_98a7: Unknown result type (might be due to invalid IL or missing references) //IL_98ad: Unknown result type (might be due to invalid IL or missing references) //IL_98b7: Unknown result type (might be due to invalid IL or missing references) //IL_98bd: Unknown result type (might be due to invalid IL or missing references) //IL_98c2: Unknown result type (might be due to invalid IL or missing references) //IL_98c8: Unknown result type (might be due to invalid IL or missing references) //IL_98cd: Unknown result type (might be due to invalid IL or missing references) //IL_98d2: Unknown result type (might be due to invalid IL or missing references) //IL_98d8: Unknown result type (might be due to invalid IL or missing references) //IL_98e2: Unknown result type (might be due to invalid IL or missing references) //IL_98e7: Unknown result type (might be due to invalid IL or missing references) //IL_98ec: Unknown result type (might be due to invalid IL or missing references) //IL_98fc: Unknown result type (might be due to invalid IL or missing references) //IL_9902: Unknown result type (might be due to invalid IL or missing references) //IL_9907: Unknown result type (might be due to invalid IL or missing references) //IL_990d: Unknown result type (might be due to invalid IL or missing references) //IL_9912: Unknown result type (might be due to invalid IL or missing references) //IL_9918: Unknown result type (might be due to invalid IL or missing references) //IL_9922: Unknown result type (might be due to invalid IL or missing references) //IL_9927: Unknown result type (might be due to invalid IL or missing references) //IL_992d: Unknown result type (might be due to invalid IL or missing references) //IL_9937: Unknown result type (might be due to invalid IL or missing references) //IL_993d: Unknown result type (might be due to invalid IL or missing references) //IL_9942: Unknown result type (might be due to invalid IL or missing references) //IL_9948: Unknown result type (might be due to invalid IL or missing references) //IL_994d: Unknown result type (might be due to invalid IL or missing references) //IL_9952: Unknown result type (might be due to invalid IL or missing references) //IL_995d: Unknown result type (might be due to invalid IL or missing references) //IL_9963: Unknown result type (might be due to invalid IL or missing references) //IL_9968: Unknown result type (might be due to invalid IL or missing references) //IL_996e: Unknown result type (might be due to invalid IL or missing references) //IL_9973: Unknown result type (might be due to invalid IL or missing references) //IL_9979: Unknown result type (might be due to invalid IL or missing references) //IL_9983: Unknown result type (might be due to invalid IL or missing references) //IL_9988: Unknown result type (might be due to invalid IL or missing references) //IL_998e: Unknown result type (might be due to invalid IL or missing references) //IL_9998: Unknown result type (might be due to invalid IL or missing references) //IL_999e: Unknown result type (might be due to invalid IL or missing references) //IL_99a3: Unknown result type (might be due to invalid IL or missing references) //IL_99a9: Unknown result type (might be due to invalid IL or missing references) //IL_99ae: Unknown result type (might be due to invalid IL or missing references) //IL_99b3: Unknown result type (might be due to invalid IL or missing references) //IL_99b8: Unknown result type (might be due to invalid IL or missing references) //IL_99c8: Unknown result type (might be due to invalid IL or missing references) //IL_99ce: Unknown result type (might be due to invalid IL or missing references) //IL_99d3: Unknown result type (might be due to invalid IL or missing references) //IL_99d9: Unknown result type (might be due to invalid IL or missing references) //IL_99de: Unknown result type (might be due to invalid IL or missing references) //IL_99e4: Unknown result type (might be due to invalid IL or missing references) //IL_99ee: Unknown result type (might be due to invalid IL or missing references) //IL_99f3: Unknown result type (might be due to invalid IL or missing references) //IL_99f9: Unknown result type (might be due to invalid IL or missing references) //IL_9a03: Unknown result type (might be due to invalid IL or missing references) //IL_9a09: Unknown result type (might be due to invalid IL or missing references) //IL_9a0e: Unknown result type (might be due to invalid IL or missing references) //IL_9a14: Unknown result type (might be due to invalid IL or missing references) //IL_9a19: Unknown result type (might be due to invalid IL or missing references) //IL_9a1e: Unknown result type (might be due to invalid IL or missing references) //IL_9a24: Unknown result type (might be due to invalid IL or missing references) //IL_9a2e: Unknown result type (might be due to invalid IL or missing references) //IL_9a33: Unknown result type (might be due to invalid IL or missing references) //IL_9a3e: Unknown result type (might be due to invalid IL or missing references) //IL_9a44: Unknown result type (might be due to invalid IL or missing references) //IL_9a49: Unknown result type (might be due to invalid IL or missing references) //IL_9a4f: Unknown result type (might be due to invalid IL or missing references) //IL_9a54: Unknown result type (might be due to invalid IL or missing references) //IL_9a5a: Unknown result type (might be due to invalid IL or missing references) //IL_9a64: Unknown result type (might be due to invalid IL or missing references) //IL_9a69: Unknown result type (might be due to invalid IL or missing references) //IL_9a6f: Unknown result type (might be due to invalid IL or missing references) //IL_9a79: Unknown result type (might be due to invalid IL or missing references) //IL_9a7f: Unknown result type (might be due to invalid IL or missing references) //IL_9a84: Unknown result type (might be due to invalid IL or missing references) //IL_9a8a: Unknown result type (might be due to invalid IL or missing references) //IL_9a8f: Unknown result type (might be due to invalid IL or missing references) //IL_9a94: Unknown result type (might be due to invalid IL or missing references) //IL_9a9a: Unknown result type (might be due to invalid IL or missing references) //IL_9aa4: Unknown result type (might be due to invalid IL or missing references) //IL_9aa9: Unknown result type (might be due to invalid IL or missing references) //IL_9aae: Unknown result type (might be due to invalid IL or missing references) //IL_9abe: Unknown result type (might be due to invalid IL or missing references) //IL_9ac4: Unknown result type (might be due to invalid IL or missing references) //IL_9ac9: Unknown result type (might be due to invalid IL or missing references) //IL_9acf: Unknown result type (might be due to invalid IL or missing references) //IL_9ad4: Unknown result type (might be due to invalid IL or missing references) //IL_9ada: Unknown result type (might be due to invalid IL or missing references) //IL_9ae4: Unknown result type (might be due to invalid IL or missing references) //IL_9ae9: Unknown result type (might be due to invalid IL or missing references) //IL_9aef: Unknown result type (might be due to invalid IL or missing references) //IL_9af9: Unknown result type (might be due to invalid IL or missing references) //IL_9aff: Unknown result type (might be due to invalid IL or missing references) //IL_9b04: Unknown result type (might be due to invalid IL or missing references) //IL_9b0a: Unknown result type (might be due to invalid IL or missing references) //IL_9b0f: Unknown result type (might be due to invalid IL or missing references) //IL_9b14: Unknown result type (might be due to invalid IL or missing references) //IL_9b1a: Unknown result type (might be due to invalid IL or missing references) //IL_9b24: Unknown result type (might be due to invalid IL or missing references) //IL_9b29: Unknown result type (might be due to invalid IL or missing references) //IL_9b34: Unknown result type (might be due to invalid IL or missing references) //IL_9b3a: Unknown result type (might be due to invalid IL or missing references) //IL_9b3f: Unknown result type (might be due to invalid IL or missing references) //IL_9b45: Unknown result type (might be due to invalid IL or missing references) //IL_9b4a: Unknown result type (might be due to invalid IL or missing references) //IL_9b50: Unknown result type (might be due to invalid IL or missing references) //IL_9b5a: Unknown result type (might be due to invalid IL or missing references) //IL_9b5f: Unknown result type (might be due to invalid IL or missing references) //IL_9b65: Unknown result type (might be due to invalid IL or missing references) //IL_9b6f: Unknown result type (might be due to invalid IL or missing references) //IL_9b75: Unknown result type (might be due to invalid IL or missing references) //IL_9b7a: Unknown result type (might be due to invalid IL or missing references) //IL_9b80: Unknown result type (might be due to invalid IL or missing references) //IL_9b85: Unknown result type (might be due to invalid IL or missing references) //IL_9b8a: Unknown result type (might be due to invalid IL or missing references) //IL_9b90: Unknown result type (might be due to invalid IL or missing references) //IL_9b9a: Unknown result type (might be due to invalid IL or missing references) //IL_9b9f: Unknown result type (might be due to invalid IL or missing references) //IL_9ba4: Unknown result type (might be due to invalid IL or missing references) //IL_9bb4: Unknown result type (might be due to invalid IL or missing references) //IL_9bba: Unknown result type (might be due to invalid IL or missing references) //IL_9bbf: Unknown result type (might be due to invalid IL or missing references) //IL_9bc5: Unknown result type (might be due to invalid IL or missing references) //IL_9bca: Unknown result type (might be due to invalid IL or missing references) //IL_9bd0: Unknown result type (might be due to invalid IL or missing references) //IL_9bda: Unknown result type (might be due to invalid IL or missing references) //IL_9bdf: Unknown result type (might be due to invalid IL or missing references) //IL_9be5: Unknown result type (might be due to invalid IL or missing references) //IL_9bef: Unknown result type (might be due to invalid IL or missing references) //IL_9bf5: Unknown result type (might be due to invalid IL or missing references) //IL_9bfa: Unknown result type (might be due to invalid IL or missing references) //IL_9c00: Unknown result type (might be due to invalid IL or missing references) //IL_9c05: Unknown result type (might be due to invalid IL or missing references) //IL_9c0a: Unknown result type (might be due to invalid IL or missing references) //IL_9c10: Unknown result type (might be due to invalid IL or missing references) //IL_9c1a: Unknown result type (might be due to invalid IL or missing references) //IL_9c1f: Unknown result type (might be due to invalid IL or missing references) //IL_9c2a: Unknown result type (might be due to invalid IL or missing references) //IL_9c30: Unknown result type (might be due to invalid IL or missing references) //IL_9c35: Unknown result type (might be due to invalid IL or missing references) //IL_9c3b: Unknown result type (might be due to invalid IL or missing references) //IL_9c40: Unknown result type (might be due to invalid IL or missing references) //IL_9c46: Unknown result type (might be due to invalid IL or missing references) //IL_9c50: Unknown result type (might be due to invalid IL or missing references) //IL_9c55: Unknown result type (might be due to invalid IL or missing references) //IL_9c5b: Unknown result type (might be due to invalid IL or missing references) //IL_9c65: Unknown result type (might be due to invalid IL or missing references) //IL_9c6b: Unknown result type (might be due to invalid IL or missing references) //IL_9c70: Unknown result type (might be due to invalid IL or missing references) //IL_9c76: Unknown result type (might be due to invalid IL or missing references) //IL_9c7b: Unknown result type (might be due to invalid IL or missing references) //IL_9c80: Unknown result type (might be due to invalid IL or missing references) //IL_9c86: Unknown result type (might be due to invalid IL or missing references) //IL_9c90: Unknown result type (might be due to invalid IL or missing references) //IL_9c95: Unknown result type (might be due to invalid IL or missing references) //IL_9c9a: Unknown result type (might be due to invalid IL or missing references) //IL_9caa: Unknown result type (might be due to invalid IL or missing references) //IL_9cb0: Unknown result type (might be due to invalid IL or missing references) //IL_9cb5: Unknown result type (might be due to invalid IL or missing references) //IL_9cbb: Unknown result type (might be due to invalid IL or missing references) //IL_9cc0: Unknown result type (might be due to invalid IL or missing references) //IL_9cc6: Unknown result type (might be due to invalid IL or missing references) //IL_9cd0: Unknown result type (might be due to invalid IL or missing references) //IL_9cd5: Unknown result type (might be due to invalid IL or missing references) //IL_9cdb: Unknown result type (might be due to invalid IL or missing references) //IL_9ce5: Unknown result type (might be due to invalid IL or missing references) //IL_9ceb: Unknown result type (might be due to invalid IL or missing references) //IL_9cf0: Unknown result type (might be due to invalid IL or missing references) //IL_9cf6: Unknown result type (might be due to invalid IL or missing references) //IL_9cfb: Unknown result type (might be due to invalid IL or missing references) //IL_9d00: Unknown result type (might be due to invalid IL or missing references) //IL_9d06: Unknown result type (might be due to invalid IL or missing references) //IL_9d10: Unknown result type (might be due to invalid IL or missing references) //IL_9d15: Unknown result type (might be due to invalid IL or missing references) //IL_9d20: Unknown result type (might be due to invalid IL or missing references) //IL_9d26: Unknown result type (might be due to invalid IL or missing references) //IL_9d2b: Unknown result type (might be due to invalid IL or missing references) //IL_9d31: Unknown result type (might be due to invalid IL or missing references) //IL_9d36: Unknown result type (might be due to invalid IL or missing references) //IL_9d3c: Unknown result type (might be due to invalid IL or missing references) //IL_9d46: Unknown result type (might be due to invalid IL or missing references) //IL_9d4b: Unknown result type (might be due to invalid IL or missing references) //IL_9d51: Unknown result type (might be due to invalid IL or missing references) //IL_9d5b: Unknown result type (might be due to invalid IL or missing references) //IL_9d61: Unknown result type (might be due to invalid IL or missing references) //IL_9d66: Unknown result type (might be due to invalid IL or missing references) //IL_9d6c: Unknown result type (might be due to invalid IL or missing references) //IL_9d71: Unknown result type (might be due to invalid IL or missing references) //IL_9d76: Unknown result type (might be due to invalid IL or missing references) //IL_9d7c: Unknown result type (might be due to invalid IL or missing references) //IL_9d86: Unknown result type (might be due to invalid IL or missing references) //IL_9d8b: Unknown result type (might be due to invalid IL or missing references) //IL_9d90: Unknown result type (might be due to invalid IL or missing references) //IL_9da0: Unknown result type (might be due to invalid IL or missing references) //IL_9da6: Unknown result type (might be due to invalid IL or missing references) //IL_9dab: Unknown result type (might be due to invalid IL or missing references) //IL_9db1: Unknown result type (might be due to invalid IL or missing references) //IL_9db6: Unknown result type (might be due to invalid IL or missing references) //IL_9dbc: Unknown result type (might be due to invalid IL or missing references) //IL_9dc6: Unknown result type (might be due to invalid IL or missing references) //IL_9dcb: Unknown result type (might be due to invalid IL or missing references) //IL_9dd1: Unknown result type (might be due to invalid IL or missing references) //IL_9ddb: Unknown result type (might be due to invalid IL or missing references) //IL_9de1: Unknown result type (might be due to invalid IL or missing references) //IL_9de6: Unknown result type (might be due to invalid IL or missing references) //IL_9dec: Unknown result type (might be due to invalid IL or missing references) //IL_9df1: Unknown result type (might be due to invalid IL or missing references) //IL_9df6: Unknown result type (might be due to invalid IL or missing references) //IL_9dfc: Unknown result type (might be due to invalid IL or missing references) //IL_9e06: Unknown result type (might be due to invalid IL or missing references) //IL_9e0b: Unknown result type (might be due to invalid IL or missing references) //IL_9e16: Unknown result type (might be due to invalid IL or missing references) //IL_9e1c: Unknown result type (might be due to invalid IL or missing references) //IL_9e21: Unknown result type (might be due to invalid IL or missing references) //IL_9e27: Unknown result type (might be due to invalid IL or missing references) //IL_9e2c: Unknown result type (might be due to invalid IL or missing references) //IL_9e32: Unknown result type (might be due to invalid IL or missing references) //IL_9e3c: Unknown result type (might be due to invalid IL or missing references) //IL_9e41: Unknown result type (might be due to invalid IL or missing references) //IL_9e47: Unknown result type (might be due to invalid IL or missing references) //IL_9e51: Unknown result type (might be due to invalid IL or missing references) //IL_9e57: Unknown result type (might be due to invalid IL or missing references) //IL_9e5c: Unknown result type (might be due to invalid IL or missing references) //IL_9e62: Unknown result type (might be due to invalid IL or missing references) //IL_9e67: Unknown result type (might be due to invalid IL or missing references) //IL_9e6c: Unknown result type (might be due to invalid IL or missing references) //IL_9e72: Unknown result type (might be due to invalid IL or missing references) //IL_9e7c: Unknown result type (might be due to invalid IL or missing references) //IL_9e81: Unknown result type (might be due to invalid IL or missing references) //IL_9e86: Unknown result type (might be due to invalid IL or missing references) //IL_9e96: Unknown result type (might be due to invalid IL or missing references) //IL_9e9c: Unknown result type (might be due to invalid IL or missing references) //IL_9ea1: Unknown result type (might be due to invalid IL or missing references) //IL_9ea7: Unknown result type (might be due to invalid IL or missing references) //IL_9eac: Unknown result type (might be due to invalid IL or missing references) //IL_9eb2: Unknown result type (might be due to invalid IL or missing references) //IL_9ebc: Unknown result type (might be due to invalid IL or missing references) //IL_9ec1: Unknown result type (might be due to invalid IL or missing references) //IL_9ec7: Unknown result type (might be due to invalid IL or missing references) //IL_9ed1: Unknown result type (might be due to invalid IL or missing references) //IL_9ed7: Unknown result type (might be due to invalid IL or missing references) //IL_9edc: Unknown result type (might be due to invalid IL or missing references) //IL_9ee2: Unknown result type (might be due to invalid IL or missing references) //IL_9ee7: Unknown result type (might be due to invalid IL or missing references) //IL_9eec: Unknown result type (might be due to invalid IL or missing references) //IL_9ef2: Unknown result type (might be due to invalid IL or missing references) //IL_9efc: Unknown result type (might be due to invalid IL or missing references) //IL_9f01: Unknown result type (might be due to invalid IL or missing references) //IL_9f0c: Unknown result type (might be due to invalid IL or missing references) //IL_9f12: Unknown result type (might be due to invalid IL or missing references) //IL_9f17: Unknown result type (might be due to invalid IL or missing references) //IL_9f1d: Unknown result type (might be due to invalid IL or missing references) //IL_9f22: Unknown result type (might be due to invalid IL or missing references) //IL_9f28: Unknown result type (might be due to invalid IL or missing references) //IL_9f32: Unknown result type (might be due to invalid IL or missing references) //IL_9f37: Unknown result type (might be due to invalid IL or missing references) //IL_9f3d: Unknown result type (might be due to invalid IL or missing references) //IL_9f47: Unknown result type (might be due to invalid IL or missing references) //IL_9f4d: Unknown result type (might be due to invalid IL or missing references) //IL_9f52: Unknown result type (might be due to invalid IL or missing references) //IL_9f58: Unknown result type (might be due to invalid IL or missing references) //IL_9f5d: Unknown result type (might be due to invalid IL or missing references) //IL_9f62: Unknown result type (might be due to invalid IL or missing references) //IL_9f68: Unknown result type (might be due to invalid IL or missing references) //IL_9f72: Unknown result type (might be due to invalid IL or missing references) //IL_9f77: Unknown result type (might be due to invalid IL or missing references) //IL_9f7c: Unknown result type (might be due to invalid IL or missing references) //IL_9f8c: Unknown result type (might be due to invalid IL or missing references) //IL_9f92: Unknown result type (might be due to invalid IL or missing references) //IL_9f97: Unknown result type (might be due to invalid IL or missing references) //IL_9f9d: Unknown result type (might be due to invalid IL or missing references) //IL_9fa2: Unknown result type (might be due to invalid IL or missing references) //IL_9fa8: Unknown result type (might be due to invalid IL or missing references) //IL_9fb2: Unknown result type (might be due to invalid IL or missing references) //IL_9fb7: Unknown result type (might be due to invalid IL or missing references) //IL_9fbd: Unknown result type (might be due to invalid IL or missing references) //IL_9fc7: Unknown result type (might be due to invalid IL or missing references) //IL_9fcd: Unknown result type (might be due to invalid IL or missing references) //IL_9fd2: Unknown result type (might be due to invalid IL or missing references) //IL_9fd8: Unknown result type (might be due to invalid IL or missing references) //IL_9fdd: Unknown result type (might be due to invalid IL or missing references) //IL_9fe2: Unknown result type (might be due to invalid IL or missing references) //IL_9fe8: Unknown result type (might be due to invalid IL or missing references) //IL_9ff2: Unknown result type (might be due to invalid IL or missing references) //IL_9ff7: Unknown result type (might be due to invalid IL or missing references) //IL_a002: Unknown result type (might be due to invalid IL or missing references) //IL_a008: Unknown result type (might be due to invalid IL or missing references) //IL_a00d: Unknown result type (might be due to invalid IL or missing references) //IL_a013: Unknown result type (might be due to invalid IL or missing references) //IL_a018: Unknown result type (might be due to invalid IL or missing references) //IL_a01e: Unknown result type (might be due to invalid IL or missing references) //IL_a028: Unknown result type (might be due to invalid IL or missing references) //IL_a02d: Unknown result type (might be due to invalid IL or missing references) //IL_a033: Unknown result type (might be due to invalid IL or missing references) //IL_a03d: Unknown result type (might be due to invalid IL or missing references) //IL_a043: Unknown result type (might be due to invalid IL or missing references) //IL_a048: Unknown result type (might be due to invalid IL or missing references) //IL_a04e: Unknown result type (might be due to invalid IL or missing references) //IL_a053: Unknown result type (might be due to invalid IL or missing references) //IL_a058: Unknown result type (might be due to invalid IL or missing references) //IL_a05e: Unknown result type (might be due to invalid IL or missing references) //IL_a068: Unknown result type (might be due to invalid IL or missing references) //IL_a06d: Unknown result type (might be due to invalid IL or missing references) //IL_a072: Unknown result type (might be due to invalid IL or missing references) //IL_a082: Unknown result type (might be due to invalid IL or missing references) //IL_a088: Unknown result type (might be due to invalid IL or missing references) //IL_a08d: Unknown result type (might be due to invalid IL or missing references) //IL_a093: Unknown result type (might be due to invalid IL or missing references) //IL_a098: Unknown result type (might be due to invalid IL or missing references) //IL_a09e: Unknown result type (might be due to invalid IL or missing references) //IL_a0a8: Unknown result type (might be due to invalid IL or missing references) //IL_a0ad: Unknown result type (might be due to invalid IL or missing references) //IL_a0b3: Unknown result type (might be due to invalid IL or missing references) //IL_a0bd: Unknown result type (might be due to invalid IL or missing references) //IL_a0c3: Unknown result type (might be due to invalid IL or missing references) //IL_a0c8: Unknown result type (might be due to invalid IL or missing references) //IL_a0ce: Unknown result type (might be due to invalid IL or missing references) //IL_a0d3: Unknown result type (might be due to invalid IL or missing references) //IL_a0d8: Unknown result type (might be due to invalid IL or missing references) //IL_a0e3: Unknown result type (might be due to invalid IL or missing references) //IL_a0e9: Unknown result type (might be due to invalid IL or missing references) //IL_a0ee: Unknown result type (might be due to invalid IL or missing references) //IL_a0f4: Unknown result type (might be due to invalid IL or missing references) //IL_a0f9: Unknown result type (might be due to invalid IL or missing references) //IL_a0ff: Unknown result type (might be due to invalid IL or missing references) //IL_a109: Unknown result type (might be due to invalid IL or missing references) //IL_a10e: Unknown result type (might be due to invalid IL or missing references) //IL_a114: Unknown result type (might be due to invalid IL or missing references) //IL_a11e: Unknown result type (might be due to invalid IL or missing references) //IL_a124: Unknown result type (might be due to invalid IL or missing references) //IL_a129: Unknown result type (might be due to invalid IL or missing references) //IL_a12f: Unknown result type (might be due to invalid IL or missing references) //IL_a134: Unknown result type (might be due to invalid IL or missing references) //IL_a139: Unknown result type (might be due to invalid IL or missing references) //IL_a13e: Unknown result type (might be due to invalid IL or missing references) //IL_a14e: Unknown result type (might be due to invalid IL or missing references) //IL_a154: Unknown result type (might be due to invalid IL or missing references) //IL_a159: Unknown result type (might be due to invalid IL or missing references) //IL_a15f: Unknown result type (might be due to invalid IL or missing references) //IL_a164: Unknown result type (might be due to invalid IL or missing references) //IL_a16a: Unknown result type (might be due to invalid IL or missing references) //IL_a174: Unknown result type (might be due to invalid IL or missing references) //IL_a179: Unknown result type (might be due to invalid IL or missing references) //IL_a17f: Unknown result type (might be due to invalid IL or missing references) //IL_a189: Unknown result type (might be due to invalid IL or missing references) //IL_a18f: Unknown result type (might be due to invalid IL or missing references) //IL_a194: Unknown result type (might be due to invalid IL or missing references) //IL_a19a: Unknown result type (might be due to invalid IL or missing references) //IL_a19f: Unknown result type (might be due to invalid IL or missing references) //IL_a1a4: Unknown result type (might be due to invalid IL or missing references) //IL_a1aa: Unknown result type (might be due to invalid IL or missing references) //IL_a1b4: Unknown result type (might be due to invalid IL or missing references) //IL_a1b9: Unknown result type (might be due to invalid IL or missing references) //IL_a1c4: Unknown result type (might be due to invalid IL or missing references) //IL_a1ca: Unknown result type (might be due to invalid IL or missing references) //IL_a1cf: Unknown result type (might be due to invalid IL or missing references) //IL_a1d5: Unknown result type (might be due to invalid IL or missing references) //IL_a1da: Unknown result type (might be due to invalid IL or missing references) //IL_a1e0: Unknown result type (might be due to invalid IL or missing references) //IL_a1ea: Unknown result type (might be due to invalid IL or missing references) //IL_a1ef: Unknown result type (might be due to invalid IL or missing references) //IL_a1f5: Unknown result type (might be due to invalid IL or missing references) //IL_a1ff: Unknown result type (might be due to invalid IL or missing references) //IL_a205: Unknown result type (might be due to invalid IL or missing references) //IL_a20a: Unknown result type (might be due to invalid IL or missing references) //IL_a210: Unknown result type (might be due to invalid IL or missing references) //IL_a215: Unknown result type (might be due to invalid IL or missing references) //IL_a21a: Unknown result type (might be due to invalid IL or missing references) //IL_a220: Unknown result type (might be due to invalid IL or missing references) //IL_a22a: Unknown result type (might be due to invalid IL or missing references) //IL_a22f: Unknown result type (might be due to invalid IL or missing references) //IL_a234: Unknown result type (might be due to invalid IL or missing references) //IL_a244: Unknown result type (might be due to invalid IL or missing references) //IL_a24a: Unknown result type (might be due to invalid IL or missing references) //IL_a24f: Unknown result type (might be due to invalid IL or missing references) //IL_a255: Unknown result type (might be due to invalid IL or missing references) //IL_a25a: Unknown result type (might be due to invalid IL or missing references) //IL_a260: Unknown result type (might be due to invalid IL or missing references) //IL_a26a: Unknown result type (might be due to invalid IL or missing references) //IL_a26f: Unknown result type (might be due to invalid IL or missing references) //IL_a275: Unknown result type (might be due to invalid IL or missing references) //IL_a27f: Unknown result type (might be due to invalid IL or missing references) //IL_a285: Unknown result type (might be due to invalid IL or missing references) //IL_a28a: Unknown result type (might be due to invalid IL or missing references) //IL_a290: Unknown result type (might be due to invalid IL or missing references) //IL_a295: Unknown result type (might be due to invalid IL or missing references) //IL_a29a: Unknown result type (might be due to invalid IL or missing references) //IL_a2a0: Unknown result type (might be due to invalid IL or missing references) //IL_a2aa: Unknown result type (might be due to invalid IL or missing references) //IL_a2af: Unknown result type (might be due to invalid IL or missing references) //IL_a2ba: Unknown result type (might be due to invalid IL or missing references) //IL_a2c0: Unknown result type (might be due to invalid IL or missing references) //IL_a2c5: Unknown result type (might be due to invalid IL or missing references) //IL_a2cb: Unknown result type (might be due to invalid IL or missing references) //IL_a2d0: Unknown result type (might be due to invalid IL or missing references) //IL_a2d6: Unknown result type (might be due to invalid IL or missing references) //IL_a2e0: Unknown result type (might be due to invalid IL or missing references) //IL_a2e5: Unknown result type (might be due to invalid IL or missing references) //IL_a2eb: Unknown result type (might be due to invalid IL or missing references) //IL_a2f5: Unknown result type (might be due to invalid IL or missing references) //IL_a2fb: Unknown result type (might be due to invalid IL or missing references) //IL_a300: Unknown result type (might be due to invalid IL or missing references) //IL_a306: Unknown result type (might be due to invalid IL or missing references) //IL_a30b: Unknown result type (might be due to invalid IL or missing references) //IL_a310: Unknown result type (might be due to invalid IL or missing references) //IL_a316: Unknown result type (might be due to invalid IL or missing references) //IL_a320: Unknown result type (might be due to invalid IL or missing references) //IL_a325: Unknown result type (might be due to invalid IL or missing references) //IL_a32a: Unknown result type (might be due to invalid IL or missing references) //IL_a33a: Unknown result type (might be due to invalid IL or missing references) //IL_a340: Unknown result type (might be due to invalid IL or missing references) //IL_a345: Unknown result type (might be due to invalid IL or missing references) //IL_a34b: Unknown result type (might be due to invalid IL or missing references) //IL_a350: Unknown result type (might be due to invalid IL or missing references) //IL_a356: Unknown result type (might be due to invalid IL or missing references) //IL_a360: Unknown result type (might be due to invalid IL or missing references) //IL_a365: Unknown result type (might be due to invalid IL or missing references) //IL_a36b: Unknown result type (might be due to invalid IL or missing references) //IL_a375: Unknown result type (might be due to invalid IL or missing references) //IL_a37b: Unknown result type (might be due to invalid IL or missing references) //IL_a380: Unknown result type (might be due to invalid IL or missing references) //IL_a386: Unknown result type (might be due to invalid IL or missing references) //IL_a38b: Unknown result type (might be due to invalid IL or missing references) //IL_a390: Unknown result type (might be due to invalid IL or missing references) //IL_a396: Unknown result type (might be due to invalid IL or missing references) //IL_a3a0: Unknown result type (might be due to invalid IL or missing references) //IL_a3a5: Unknown result type (might be due to invalid IL or missing references) //IL_a3b0: Unknown result type (might be due to invalid IL or missing references) //IL_a3b6: Unknown result type (might be due to invalid IL or missing references) //IL_a3bb: Unknown result type (might be due to invalid IL or missing references) //IL_a3c1: Unknown result type (might be due to invalid IL or missing references) //IL_a3c6: Unknown result type (might be due to invalid IL or missing references) //IL_a3cc: Unknown result type (might be due to invalid IL or missing references) //IL_a3d6: Unknown result type (might be due to invalid IL or missing references) //IL_a3db: Unknown result type (might be due to invalid IL or missing references) //IL_a3e1: Unknown result type (might be due to invalid IL or missing references) //IL_a3eb: Unknown result type (might be due to invalid IL or missing references) //IL_a3f1: Unknown result type (might be due to invalid IL or missing references) //IL_a3f6: Unknown result type (might be due to invalid IL or missing references) //IL_a3fc: Unknown result type (might be due to invalid IL or missing references) //IL_a401: Unknown result type (might be due to invalid IL or missing references) //IL_a406: Unknown result type (might be due to invalid IL or missing references) //IL_a40c: Unknown result type (might be due to invalid IL or missing references) //IL_a416: Unknown result type (might be due to invalid IL or missing references) //IL_a41b: Unknown result type (might be due to invalid IL or missing references) //IL_a420: Unknown result type (might be due to invalid IL or missing references) //IL_a430: Unknown result type (might be due to invalid IL or missing references) //IL_a436: Unknown result type (might be due to invalid IL or missing references) //IL_a43b: Unknown result type (might be due to invalid IL or missing references) //IL_a441: Unknown result type (might be due to invalid IL or missing references) //IL_a446: Unknown result type (might be due to invalid IL or missing references) //IL_a44c: Unknown result type (might be due to invalid IL or missing references) //IL_a456: Unknown result type (might be due to invalid IL or missing references) //IL_a45b: Unknown result type (might be due to invalid IL or missing references) //IL_a461: Unknown result type (might be due to invalid IL or missing references) //IL_a46b: Unknown result type (might be due to invalid IL or missing references) //IL_a471: Unknown result type (might be due to invalid IL or missing references) //IL_a476: Unknown result type (might be due to invalid IL or missing references) //IL_a47c: Unknown result type (might be due to invalid IL or missing references) //IL_a481: Unknown result type (might be due to invalid IL or missing references) //IL_a486: Unknown result type (might be due to invalid IL or missing references) //IL_a48c: Unknown result type (might be due to invalid IL or missing references) //IL_a496: Unknown result type (might be due to invalid IL or missing references) //IL_a49b: Unknown result type (might be due to invalid IL or missing references) //IL_a4a6: Unknown result type (might be due to invalid IL or missing references) //IL_a4ac: Unknown result type (might be due to invalid IL or missing references) //IL_a4b1: Unknown result type (might be due to invalid IL or missing references) //IL_a4b7: Unknown result type (might be due to invalid IL or missing references) //IL_a4bc: Unknown result type (might be due to invalid IL or missing references) //IL_a4c2: Unknown result type (might be due to invalid IL or missing references) //IL_a4cc: Unknown result type (might be due to invalid IL or missing references) //IL_a4d1: Unknown result type (might be due to invalid IL or missing references) //IL_a4d7: Unknown result type (might be due to invalid IL or missing references) //IL_a4e1: Unknown result type (might be due to invalid IL or missing references) //IL_a4e7: Unknown result type (might be due to invalid IL or missing references) //IL_a4ec: Unknown result type (might be due to invalid IL or missing references) //IL_a4f2: Unknown result type (might be due to invalid IL or missing references) //IL_a4f7: Unknown result type (might be due to invalid IL or missing references) //IL_a4fc: Unknown result type (might be due to invalid IL or missing references) //IL_a502: Unknown result type (might be due to invalid IL or missing references) //IL_a50c: Unknown result type (might be due to invalid IL or missing references) //IL_a511: Unknown result type (might be due to invalid IL or missing references) //IL_a516: Unknown result type (might be due to invalid IL or missing references) //IL_a526: Unknown result type (might be due to invalid IL or missing references) //IL_a52c: Unknown result type (might be due to invalid IL or missing references) //IL_a531: Unknown result type (might be due to invalid IL or missing references) //IL_a537: Unknown result type (might be due to invalid IL or missing references) //IL_a53c: Unknown result type (might be due to invalid IL or missing references) //IL_a542: Unknown result type (might be due to invalid IL or missing references) //IL_a54c: Unknown result type (might be due to invalid IL or missing references) //IL_a551: Unknown result type (might be due to invalid IL or missing references) //IL_a557: Unknown result type (might be due to invalid IL or missing references) //IL_a561: Unknown result type (might be due to invalid IL or missing references) //IL_a567: Unknown result type (might be due to invalid IL or missing references) //IL_a56c: Unknown result type (might be due to invalid IL or missing references) //IL_a572: Unknown result type (might be due to invalid IL or missing references) //IL_a577: Unknown result type (might be due to invalid IL or missing references) //IL_a57c: Unknown result type (might be due to invalid IL or missing references) //IL_a582: Unknown result type (might be due to invalid IL or missing references) //IL_a58c: Unknown result type (might be due to invalid IL or missing references) //IL_a591: Unknown result type (might be due to invalid IL or missing references) //IL_a59c: Unknown result type (might be due to invalid IL or missing references) //IL_a5a2: Unknown result type (might be due to invalid IL or missing references) //IL_a5a7: Unknown result type (might be due to invalid IL or missing references) //IL_a5ad: Unknown result type (might be due to invalid IL or missing references) //IL_a5b2: Unknown result type (might be due to invalid IL or missing references) //IL_a5b8: Unknown result type (might be due to invalid IL or missing references) //IL_a5c2: Unknown result type (might be due to invalid IL or missing references) //IL_a5c7: Unknown result type (might be due to invalid IL or missing references) //IL_a5cd: Unknown result type (might be due to invalid IL or missing references) //IL_a5d7: Unknown result type (might be due to invalid IL or missing references) //IL_a5dd: Unknown result type (might be due to invalid IL or missing references) //IL_a5e2: Unknown result type (might be due to invalid IL or missing references) //IL_a5e8: Unknown result type (might be due to invalid IL or missing references) //IL_a5ed: Unknown result type (might be due to invalid IL or missing references) //IL_a5f2: Unknown result type (might be due to invalid IL or missing references) //IL_a5f8: Unknown result type (might be due to invalid IL or missing references) //IL_a602: Unknown result type (might be due to invalid IL or missing references) //IL_a607: Unknown result type (might be due to invalid IL or missing references) //IL_a60c: Unknown result type (might be due to invalid IL or missing references) //IL_a61c: Unknown result type (might be due to invalid IL or missing references) //IL_a622: Unknown result type (might be due to invalid IL or missing references) //IL_a627: Unknown result type (might be due to invalid IL or missing references) //IL_a62d: Unknown result type (might be due to invalid IL or missing references) //IL_a632: Unknown result type (might be due to invalid IL or missing references) //IL_a638: Unknown result type (might be due to invalid IL or missing references) //IL_a642: Unknown result type (might be due to invalid IL or missing references) //IL_a647: Unknown result type (might be due to invalid IL or missing references) //IL_a64d: Unknown result type (might be due to invalid IL or missing references) //IL_a657: Unknown result type (might be due to invalid IL or missing references) //IL_a65d: Unknown result type (might be due to invalid IL or missing references) //IL_a662: Unknown result type (might be due to invalid IL or missing references) //IL_a668: Unknown result type (might be due to invalid IL or missing references) //IL_a66d: Unknown result type (might be due to invalid IL or missing references) //IL_a672: Unknown result type (might be due to invalid IL or missing references) //IL_a678: Unknown result type (might be due to invalid IL or missing references) //IL_a682: Unknown result type (might be due to invalid IL or missing references) //IL_a687: Unknown result type (might be due to invalid IL or missing references) //IL_a692: Unknown result type (might be due to invalid IL or missing references) //IL_a698: Unknown result type (might be due to invalid IL or missing references) //IL_a69d: Unknown result type (might be due to invalid IL or missing references) //IL_a6a3: Unknown result type (might be due to invalid IL or missing references) //IL_a6a8: Unknown result type (might be due to invalid IL or missing references) //IL_a6ae: Unknown result type (might be due to invalid IL or missing references) //IL_a6b8: Unknown result type (might be due to invalid IL or missing references) //IL_a6bd: Unknown result type (might be due to invalid IL or missing references) //IL_a6c3: Unknown result type (might be due to invalid IL or missing references) //IL_a6cd: Unknown result type (might be due to invalid IL or missing references) //IL_a6d3: Unknown result type (might be due to invalid IL or missing references) //IL_a6d8: Unknown result type (might be due to invalid IL or missing references) //IL_a6de: Unknown result type (might be due to invalid IL or missing references) //IL_a6e3: Unknown result type (might be due to invalid IL or missing references) //IL_a6e8: Unknown result type (might be due to invalid IL or missing references) //IL_a6ee: Unknown result type (might be due to invalid IL or missing references) //IL_a6f8: Unknown result type (might be due to invalid IL or missing references) //IL_a6fd: Unknown result type (might be due to invalid IL or missing references) //IL_a702: Unknown result type (might be due to invalid IL or missing references) //IL_a712: Unknown result type (might be due to invalid IL or missing references) //IL_a718: Unknown result type (might be due to invalid IL or missing references) //IL_a71d: Unknown result type (might be due to invalid IL or missing references) //IL_a723: Unknown result type (might be due to invalid IL or missing references) //IL_a728: Unknown result type (might be due to invalid IL or missing references) //IL_a72e: Unknown result type (might be due to invalid IL or missing references) //IL_a738: Unknown result type (might be due to invalid IL or missing references) //IL_a73d: Unknown result type (might be due to invalid IL or missing references) //IL_a743: Unknown result type (might be due to invalid IL or missing references) //IL_a74d: Unknown result type (might be due to invalid IL or missing references) //IL_a753: Unknown result type (might be due to invalid IL or missing references) //IL_a758: Unknown result type (might be due to invalid IL or missing references) //IL_a75e: Unknown result type (might be due to invalid IL or missing references) //IL_a763: Unknown result type (might be due to invalid IL or missing references) //IL_a768: Unknown result type (might be due to invalid IL or missing references) //IL_a76e: Unknown result type (might be due to invalid IL or missing references) //IL_a778: Unknown result type (might be due to invalid IL or missing references) //IL_a77d: Unknown result type (might be due to invalid IL or missing references) //IL_a788: Unknown result type (might be due to invalid IL or missing references) //IL_a78e: Unknown result type (might be due to invalid IL or missing references) //IL_a793: Unknown result type (might be due to invalid IL or missing references) //IL_a799: Unknown result type (might be due to invalid IL or missing references) //IL_a79e: Unknown result type (might be due to invalid IL or missing references) //IL_a7a4: Unknown result type (might be due to invalid IL or missing references) //IL_a7ae: Unknown result type (might be due to invalid IL or missing references) //IL_a7b3: Unknown result type (might be due to invalid IL or missing references) //IL_a7b9: Unknown result type (might be due to invalid IL or missing references) //IL_a7c3: Unknown result type (might be due to invalid IL or missing references) //IL_a7c9: Unknown result type (might be due to invalid IL or missing references) //IL_a7ce: Unknown result type (might be due to invalid IL or missing references) //IL_a7d4: Unknown result type (might be due to invalid IL or missing references) //IL_a7d9: Unknown result type (might be due to invalid IL or missing references) //IL_a7de: Unknown result type (might be due to invalid IL or missing references) //IL_a7e4: Unknown result type (might be due to invalid IL or missing references) //IL_a7ee: Unknown result type (might be due to invalid IL or missing references) //IL_a7f3: Unknown result type (might be due to invalid IL or missing references) //IL_a7f8: Unknown result type (might be due to invalid IL or missing references) if (!showMainRaysOnly && ledgeSwitchingDetectors.showFirstLedgeSwitchingRays) { Debug.DrawLine(((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.585f - ledgeSwitchFirstWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.585f - ledgeSwitchFirstWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.585f - ledgeSwitchFirstWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.585f - ledgeSwitchFirstWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 - ledgeSwitchFirstWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 - ledgeSwitchFirstWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 - ledgeSwitchFirstWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 - ledgeSwitchFirstWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 - ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 - ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 - ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 - ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.585f + ledgeSwitchFirstWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.585f + ledgeSwitchFirstWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.585f + ledgeSwitchFirstWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.585f + ledgeSwitchFirstWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + ledgeSwitchFirstWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchFirstWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + ledgeSwitchFirstWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchFirstWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 - ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 - ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 - ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 - ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2f - surfaceDetectorWidth2, Color.cyan); Debug.DrawLine(((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, Color.blue); Debug.DrawLine(((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2, Color.cyan); Debug.DrawLine(((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, Color.blue); Debug.DrawLine(((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2, Color.cyan); Debug.DrawLine(((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, Color.blue); Debug.DrawLine(((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - rightWidth * 2f - surfaceDetectorWidth2, Color.cyan); Debug.DrawLine(((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 2.2f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.5f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, Color.blue); Debug.DrawLine(((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2, Color.cyan); Debug.DrawLine(((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, Color.blue); Debug.DrawLine(((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2f + surfaceDetectorWidth2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, Color.blue); Debug.DrawLine(((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, Color.blue); Debug.DrawLine(((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, Color.blue); Debug.DrawLine(((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + rightWidth * 2f + surfaceDetectorWidth2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 2.2f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.5f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, Color.blue); Debug.DrawLine(((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f - ledgeSwitchFirstWidthBack, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.375f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.75f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.125f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.45f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.8f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.1f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.405f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.375f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.75f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.125f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.45f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.8f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.1f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.405f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.375f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.75f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.125f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.45f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.8f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.1f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.405f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.375f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.75f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.125f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.45f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.8f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.1f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.405f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f + ledgeSwitchFirstWidthForward, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.375f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.75f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.125f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.45f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.8f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.1f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.405f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.375f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.75f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.125f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.45f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.8f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.1f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.405f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.375f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.75f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.125f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.45f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.8f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.1f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.405f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.375f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.75f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.125f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.45f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.8f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.1f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.405f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2), Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2), Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2), Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2), Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2), Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2), Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2), Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2), Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2), Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2), Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, Color.blue); } } private void DrawSecondLedgeSwitchingDetectors() { //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_002a: Unknown result type (might be due to invalid IL or missing references) //IL_002f: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_006a: Unknown result type (might be due to invalid IL or missing references) //IL_006f: Unknown result type (might be due to invalid IL or missing references) //IL_007a: Unknown result type (might be due to invalid IL or missing references) //IL_0080: Unknown result type (might be due to invalid IL or missing references) //IL_0085: Unknown result type (might be due to invalid IL or missing references) //IL_008b: Unknown result type (might be due to invalid IL or missing references) //IL_0095: Unknown result type (might be due to invalid IL or missing references) //IL_009a: Unknown result type (might be due to invalid IL or missing references) //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_00a5: Unknown result type (might be due to invalid IL or missing references) //IL_00ab: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) //IL_00ba: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_00ca: Unknown result type (might be due to invalid IL or missing references) //IL_00da: Unknown result type (might be due to invalid IL or missing references) //IL_00e0: Unknown result type (might be due to invalid IL or missing references) //IL_00e5: Unknown result type (might be due to invalid IL or missing references) //IL_00eb: Unknown result type (might be due to invalid IL or missing references) //IL_00f5: Unknown result type (might be due to invalid IL or missing references) //IL_00fa: Unknown result type (might be due to invalid IL or missing references) //IL_0100: Unknown result type (might be due to invalid IL or missing references) //IL_0105: Unknown result type (might be due to invalid IL or missing references) //IL_010b: Unknown result type (might be due to invalid IL or missing references) //IL_0115: Unknown result type (might be due to invalid IL or missing references) //IL_011a: Unknown result type (might be due to invalid IL or missing references) //IL_0120: Unknown result type (might be due to invalid IL or missing references) //IL_0125: Unknown result type (might be due to invalid IL or missing references) //IL_0130: Unknown result type (might be due to invalid IL or missing references) //IL_0136: Unknown result type (might be due to invalid IL or missing references) //IL_013b: Unknown result type (might be due to invalid IL or missing references) //IL_0141: Unknown result type (might be due to invalid IL or missing references) //IL_014b: Unknown result type (might be due to invalid IL or missing references) //IL_0150: Unknown result type (might be due to invalid IL or missing references) //IL_0156: Unknown result type (might be due to invalid IL or missing references) //IL_015b: Unknown result type (might be due to invalid IL or missing references) //IL_0161: Unknown result type (might be due to invalid IL or missing references) //IL_016b: Unknown result type (might be due to invalid IL or missing references) //IL_0170: Unknown result type (might be due to invalid IL or missing references) //IL_0176: Unknown result type (might be due to invalid IL or missing references) //IL_017b: Unknown result type (might be due to invalid IL or missing references) //IL_0180: Unknown result type (might be due to invalid IL or missing references) //IL_0190: Unknown result type (might be due to invalid IL or missing references) //IL_0196: Unknown result type (might be due to invalid IL or missing references) //IL_019b: Unknown result type (might be due to invalid IL or missing references) //IL_01a1: Unknown result type (might be due to invalid IL or missing references) //IL_01ab: Unknown result type (might be due to invalid IL or missing references) //IL_01b0: Unknown result type (might be due to invalid IL or missing references) //IL_01b6: Unknown result type (might be due to invalid IL or missing references) //IL_01bb: Unknown result type (might be due to invalid IL or missing references) //IL_01c1: Unknown result type (might be due to invalid IL or missing references) //IL_01cb: Unknown result type (might be due to invalid IL or missing references) //IL_01d0: Unknown result type (might be due to invalid IL or missing references) //IL_01d6: Unknown result type (might be due to invalid IL or missing references) //IL_01db: Unknown result type (might be due to invalid IL or missing references) //IL_01e6: Unknown result type (might be due to invalid IL or missing references) //IL_01ec: Unknown result type (might be due to invalid IL or missing references) //IL_01f1: Unknown result type (might be due to invalid IL or missing references) //IL_01f7: Unknown result type (might be due to invalid IL or missing references) //IL_0201: Unknown result type (might be due to invalid IL or missing references) //IL_0206: Unknown result type (might be due to invalid IL or missing references) //IL_020c: Unknown result type (might be due to invalid IL or missing references) //IL_0211: Unknown result type (might be due to invalid IL or missing references) //IL_0217: Unknown result type (might be due to invalid IL or missing references) //IL_0221: Unknown result type (might be due to invalid IL or missing references) //IL_0226: Unknown result type (might be due to invalid IL or missing references) //IL_022c: Unknown result type (might be due to invalid IL or missing references) //IL_0231: Unknown result type (might be due to invalid IL or missing references) //IL_0236: Unknown result type (might be due to invalid IL or missing references) //IL_0246: Unknown result type (might be due to invalid IL or missing references) //IL_024c: Unknown result type (might be due to invalid IL or missing references) //IL_0251: Unknown result type (might be due to invalid IL or missing references) //IL_0257: Unknown result type (might be due to invalid IL or missing references) //IL_0261: Unknown result type (might be due to invalid IL or missing references) //IL_0266: Unknown result type (might be due to invalid IL or missing references) //IL_026c: Unknown result type (might be due to invalid IL or missing references) //IL_0271: Unknown result type (might be due to invalid IL or missing references) //IL_0277: Unknown result type (might be due to invalid IL or missing references) //IL_0281: Unknown result type (might be due to invalid IL or missing references) //IL_0286: Unknown result type (might be due to invalid IL or missing references) //IL_028c: Unknown result type (might be due to invalid IL or missing references) //IL_0291: Unknown result type (might be due to invalid IL or missing references) //IL_029c: Unknown result type (might be due to invalid IL or missing references) //IL_02a2: Unknown result type (might be due to invalid IL or missing references) //IL_02a7: Unknown result type (might be due to invalid IL or missing references) //IL_02ad: Unknown result type (might be due to invalid IL or missing references) //IL_02b7: Unknown result type (might be due to invalid IL or missing references) //IL_02bc: Unknown result type (might be due to invalid IL or missing references) //IL_02c2: Unknown result type (might be due to invalid IL or missing references) //IL_02c7: Unknown result type (might be due to invalid IL or missing references) //IL_02cd: Unknown result type (might be due to invalid IL or missing references) //IL_02d7: Unknown result type (might be due to invalid IL or missing references) //IL_02dc: Unknown result type (might be due to invalid IL or missing references) //IL_02e2: Unknown result type (might be due to invalid IL or missing references) //IL_02e7: Unknown result type (might be due to invalid IL or missing references) //IL_02ec: Unknown result type (might be due to invalid IL or missing references) //IL_02fc: Unknown result type (might be due to invalid IL or missing references) //IL_0302: Unknown result type (might be due to invalid IL or missing references) //IL_0307: Unknown result type (might be due to invalid IL or missing references) //IL_030d: Unknown result type (might be due to invalid IL or missing references) //IL_0317: Unknown result type (might be due to invalid IL or missing references) //IL_031c: Unknown result type (might be due to invalid IL or missing references) //IL_0322: Unknown result type (might be due to invalid IL or missing references) //IL_0327: Unknown result type (might be due to invalid IL or missing references) //IL_032d: Unknown result type (might be due to invalid IL or missing references) //IL_0337: Unknown result type (might be due to invalid IL or missing references) //IL_033c: Unknown result type (might be due to invalid IL or missing references) //IL_0342: Unknown result type (might be due to invalid IL or missing references) //IL_0347: Unknown result type (might be due to invalid IL or missing references) //IL_0352: Unknown result type (might be due to invalid IL or missing references) //IL_0358: Unknown result type (might be due to invalid IL or missing references) //IL_035d: Unknown result type (might be due to invalid IL or missing references) //IL_0363: Unknown result type (might be due to invalid IL or missing references) //IL_036d: Unknown result type (might be due to invalid IL or missing references) //IL_0372: Unknown result type (might be due to invalid IL or missing references) //IL_0378: Unknown result type (might be due to invalid IL or missing references) //IL_037d: Unknown result type (might be due to invalid IL or missing references) //IL_0383: Unknown result type (might be due to invalid IL or missing references) //IL_038d: Unknown result type (might be due to invalid IL or missing references) //IL_0392: Unknown result type (might be due to invalid IL or missing references) //IL_0398: Unknown result type (might be due to invalid IL or missing references) //IL_039d: Unknown result type (might be due to invalid IL or missing references) //IL_03a2: Unknown result type (might be due to invalid IL or missing references) //IL_03b2: Unknown result type (might be due to invalid IL or missing references) //IL_03b8: Unknown result type (might be due to invalid IL or missing references) //IL_03bd: Unknown result type (might be due to invalid IL or missing references) //IL_03c3: Unknown result type (might be due to invalid IL or missing references) //IL_03cd: Unknown result type (might be due to invalid IL or missing references) //IL_03d2: Unknown result type (might be due to invalid IL or missing references) //IL_03d8: Unknown result type (might be due to invalid IL or missing references) //IL_03dd: Unknown result type (might be due to invalid IL or missing references) //IL_03e3: Unknown result type (might be due to invalid IL or missing references) //IL_03ed: Unknown result type (might be due to invalid IL or missing references) //IL_03f2: Unknown result type (might be due to invalid IL or missing references) //IL_03f8: Unknown result type (might be due to invalid IL or missing references) //IL_03fd: Unknown result type (might be due to invalid IL or missing references) //IL_0408: Unknown result type (might be due to invalid IL or missing references) //IL_040e: Unknown result type (might be due to invalid IL or missing references) //IL_0413: Unknown result type (might be due to invalid IL or missing references) //IL_0419: Unknown result type (might be due to invalid IL or missing references) //IL_0423: Unknown result type (might be due to invalid IL or missing references) //IL_0428: Unknown result type (might be due to invalid IL or missing references) //IL_042e: Unknown result type (might be due to invalid IL or missing references) //IL_0433: Unknown result type (might be due to invalid IL or missing references) //IL_0439: Unknown result type (might be due to invalid IL or missing references) //IL_0443: Unknown result type (might be due to invalid IL or missing references) //IL_0448: Unknown result type (might be due to invalid IL or missing references) //IL_044e: Unknown result type (might be due to invalid IL or missing references) //IL_0453: Unknown result type (might be due to invalid IL or missing references) //IL_0458: Unknown result type (might be due to invalid IL or missing references) //IL_0468: Unknown result type (might be due to invalid IL or missing references) //IL_046e: Unknown result type (might be due to invalid IL or missing references) //IL_0473: Unknown result type (might be due to invalid IL or missing references) //IL_0479: Unknown result type (might be due to invalid IL or missing references) //IL_047e: Unknown result type (might be due to invalid IL or missing references) //IL_0484: Unknown result type (might be due to invalid IL or missing references) //IL_048e: Unknown result type (might be due to invalid IL or missing references) //IL_0493: Unknown result type (might be due to invalid IL or missing references) //IL_0499: Unknown result type (might be due to invalid IL or missing references) //IL_049e: Unknown result type (might be due to invalid IL or missing references) //IL_04a9: Unknown result type (might be due to invalid IL or missing references) //IL_04af: Unknown result type (might be due to invalid IL or missing references) //IL_04b4: Unknown result type (might be due to invalid IL or missing references) //IL_04ba: Unknown result type (might be due to invalid IL or missing references) //IL_04bf: Unknown result type (might be due to invalid IL or missing references) //IL_04c5: Unknown result type (might be due to invalid IL or missing references) //IL_04cf: Unknown result type (might be due to invalid IL or missing references) //IL_04d4: Unknown result type (might be due to invalid IL or missing references) //IL_04da: Unknown result type (might be due to invalid IL or missing references) //IL_04df: Unknown result type (might be due to invalid IL or missing references) //IL_04e4: Unknown result type (might be due to invalid IL or missing references) //IL_04f4: Unknown result type (might be due to invalid IL or missing references) //IL_04fa: Unknown result type (might be due to invalid IL or missing references) //IL_04ff: Unknown result type (might be due to invalid IL or missing references) //IL_0505: Unknown result type (might be due to invalid IL or missing references) //IL_050a: Unknown result type (might be due to invalid IL or missing references) //IL_0510: Unknown result type (might be due to invalid IL or missing references) //IL_051a: Unknown result type (might be due to invalid IL or missing references) //IL_051f: Unknown result type (might be due to invalid IL or missing references) //IL_0525: Unknown result type (might be due to invalid IL or missing references) //IL_052a: Unknown result type (might be due to invalid IL or missing references) //IL_0535: Unknown result type (might be due to invalid IL or missing references) //IL_053b: Unknown result type (might be due to invalid IL or missing references) //IL_0540: Unknown result type (might be due to invalid IL or missing references) //IL_0546: Unknown result type (might be due to invalid IL or missing references) //IL_054b: Unknown result type (might be due to invalid IL or missing references) //IL_0551: Unknown result type (might be due to invalid IL or missing references) //IL_055b: Unknown result type (might be due to invalid IL or missing references) //IL_0560: Unknown result type (might be due to invalid IL or missing references) //IL_0566: Unknown result type (might be due to invalid IL or missing references) //IL_056b: Unknown result type (might be due to invalid IL or missing references) //IL_0570: Unknown result type (might be due to invalid IL or missing references) //IL_0580: Unknown result type (might be due to invalid IL or missing references) //IL_0586: Unknown result type (might be due to invalid IL or missing references) //IL_058b: Unknown result type (might be due to invalid IL or missing references) //IL_0591: Unknown result type (might be due to invalid IL or missing references) //IL_059b: Unknown result type (might be due to invalid IL or missing references) //IL_05a0: Unknown result type (might be due to invalid IL or missing references) //IL_05a6: Unknown result type (might be due to invalid IL or missing references) //IL_05ab: Unknown result type (might be due to invalid IL or missing references) //IL_05b1: Unknown result type (might be due to invalid IL or missing references) //IL_05bb: Unknown result type (might be due to invalid IL or missing references) //IL_05c0: Unknown result type (might be due to invalid IL or missing references) //IL_05c6: Unknown result type (might be due to invalid IL or missing references) //IL_05cb: Unknown result type (might be due to invalid IL or missing references) //IL_05d6: Unknown result type (might be due to invalid IL or missing references) //IL_05dc: Unknown result type (might be due to invalid IL or missing references) //IL_05e1: Unknown result type (might be due to invalid IL or missing references) //IL_05e7: Unknown result type (might be due to invalid IL or missing references) //IL_05f1: Unknown result type (might be due to invalid IL or missing references) //IL_05f6: Unknown result type (might be due to invalid IL or missing references) //IL_05fc: Unknown result type (might be due to invalid IL or missing references) //IL_0601: Unknown result type (might be due to invalid IL or missing references) //IL_0607: Unknown result type (might be due to invalid IL or missing references) //IL_0611: Unknown result type (might be due to invalid IL or missing references) //IL_0616: Unknown result type (might be due to invalid IL or missing references) //IL_061c: Unknown result type (might be due to invalid IL or missing references) //IL_0621: Unknown result type (might be due to invalid IL or missing references) //IL_0626: Unknown result type (might be due to invalid IL or missing references) //IL_0636: Unknown result type (might be due to invalid IL or missing references) //IL_063c: Unknown result type (might be due to invalid IL or missing references) //IL_0641: Unknown result type (might be due to invalid IL or missing references) //IL_0647: Unknown result type (might be due to invalid IL or missing references) //IL_0651: Unknown result type (might be due to invalid IL or missing references) //IL_0656: Unknown result type (might be due to invalid IL or missing references) //IL_065c: Unknown result type (might be due to invalid IL or missing references) //IL_0661: Unknown result type (might be due to invalid IL or missing references) //IL_0667: Unknown result type (might be due to invalid IL or missing references) //IL_0671: Unknown result type (might be due to invalid IL or missing references) //IL_0676: Unknown result type (might be due to invalid IL or missing references) //IL_067c: Unknown result type (might be due to invalid IL or missing references) //IL_0681: Unknown result type (might be due to invalid IL or missing references) //IL_068c: Unknown result type (might be due to invalid IL or missing references) //IL_0692: Unknown result type (might be due to invalid IL or missing references) //IL_0697: Unknown result type (might be due to invalid IL or missing references) //IL_069d: Unknown result type (might be due to invalid IL or missing references) //IL_06a7: Unknown result type (might be due to invalid IL or missing references) //IL_06ac: Unknown result type (might be due to invalid IL or missing references) //IL_06b2: Unknown result type (might be due to invalid IL or missing references) //IL_06b7: Unknown result type (might be due to invalid IL or missing references) //IL_06bd: Unknown result type (might be due to invalid IL or missing references) //IL_06c7: Unknown result type (might be due to invalid IL or missing references) //IL_06cc: Unknown result type (might be due to invalid IL or missing references) //IL_06d2: Unknown result type (might be due to invalid IL or missing references) //IL_06d7: Unknown result type (might be due to invalid IL or missing references) //IL_06dc: Unknown result type (might be due to invalid IL or missing references) //IL_06ec: Unknown result type (might be due to invalid IL or missing references) //IL_06f2: Unknown result type (might be due to invalid IL or missing references) //IL_06f7: Unknown result type (might be due to invalid IL or missing references) //IL_06fd: Unknown result type (might be due to invalid IL or missing references) //IL_0707: Unknown result type (might be due to invalid IL or missing references) //IL_070c: Unknown result type (might be due to invalid IL or missing references) //IL_0712: Unknown result type (might be due to invalid IL or missing references) //IL_0717: Unknown result type (might be due to invalid IL or missing references) //IL_071d: Unknown result type (might be due to invalid IL or missing references) //IL_0727: Unknown result type (might be due to invalid IL or missing references) //IL_072c: Unknown result type (might be due to invalid IL or missing references) //IL_0732: Unknown result type (might be due to invalid IL or missing references) //IL_0737: Unknown result type (might be due to invalid IL or missing references) //IL_0742: Unknown result type (might be due to invalid IL or missing references) //IL_0748: Unknown result type (might be due to invalid IL or missing references) //IL_074d: Unknown result type (might be due to invalid IL or missing references) //IL_0753: Unknown result type (might be due to invalid IL or missing references) //IL_075d: Unknown result type (might be due to invalid IL or missing references) //IL_0762: Unknown result type (might be due to invalid IL or missing references) //IL_0768: Unknown result type (might be due to invalid IL or missing references) //IL_076d: Unknown result type (might be due to invalid IL or missing references) //IL_0773: Unknown result type (might be due to invalid IL or missing references) //IL_077d: Unknown result type (might be due to invalid IL or missing references) //IL_0782: Unknown result type (might be due to invalid IL or missing references) //IL_0788: Unknown result type (might be due to invalid IL or missing references) //IL_078d: Unknown result type (might be due to invalid IL or missing references) //IL_0792: Unknown result type (might be due to invalid IL or missing references) //IL_07a2: Unknown result type (might be due to invalid IL or missing references) //IL_07a8: Unknown result type (might be due to invalid IL or missing references) //IL_07ad: Unknown result type (might be due to invalid IL or missing references) //IL_07b3: Unknown result type (might be due to invalid IL or missing references) //IL_07bd: Unknown result type (might be due to invalid IL or missing references) //IL_07c2: Unknown result type (might be due to invalid IL or missing references) //IL_07c8: Unknown result type (might be due to invalid IL or missing references) //IL_07cd: Unknown result type (might be due to invalid IL or missing references) //IL_07d3: Unknown result type (might be due to invalid IL or missing references) //IL_07dd: Unknown result type (might be due to invalid IL or missing references) //IL_07e2: Unknown result type (might be due to invalid IL or missing references) //IL_07e8: Unknown result type (might be due to invalid IL or missing references) //IL_07ed: Unknown result type (might be due to invalid IL or missing references) //IL_07f8: Unknown result type (might be due to invalid IL or missing references) //IL_07fe: Unknown result type (might be due to invalid IL or missing references) //IL_0803: Unknown result type (might be due to invalid IL or missing references) //IL_0809: Unknown result type (might be due to invalid IL or missing references) //IL_0813: Unknown result type (might be due to invalid IL or missing references) //IL_0818: Unknown result type (might be due to invalid IL or missing references) //IL_081e: Unknown result type (might be due to invalid IL or missing references) //IL_0823: Unknown result type (might be due to invalid IL or missing references) //IL_0829: Unknown result type (might be due to invalid IL or missing references) //IL_0833: Unknown result type (might be due to invalid IL or missing references) //IL_0838: Unknown result type (might be due to invalid IL or missing references) //IL_083e: Unknown result type (might be due to invalid IL or missing references) //IL_0843: Unknown result type (might be due to invalid IL or missing references) //IL_0848: Unknown result type (might be due to invalid IL or missing references) //IL_0858: Unknown result type (might be due to invalid IL or missing references) //IL_085e: Unknown result type (might be due to invalid IL or missing references) //IL_0863: Unknown result type (might be due to invalid IL or missing references) //IL_0869: Unknown result type (might be due to invalid IL or missing references) //IL_0873: Unknown result type (might be due to invalid IL or missing references) //IL_0878: Unknown result type (might be due to invalid IL or missing references) //IL_087e: Unknown result type (might be due to invalid IL or missing references) //IL_0883: Unknown result type (might be due to invalid IL or missing references) //IL_0889: Unknown result type (might be due to invalid IL or missing references) //IL_0893: Unknown result type (might be due to invalid IL or missing references) //IL_0898: Unknown result type (might be due to invalid IL or missing references) //IL_089e: Unknown result type (might be due to invalid IL or missing references) //IL_08a3: Unknown result type (might be due to invalid IL or missing references) //IL_08ae: Unknown result type (might be due to invalid IL or missing references) //IL_08b4: Unknown result type (might be due to invalid IL or missing references) //IL_08b9: Unknown result type (might be due to invalid IL or missing references) //IL_08bf: Unknown result type (might be due to invalid IL or missing references) //IL_08c9: Unknown result type (might be due to invalid IL or missing references) //IL_08ce: Unknown result type (might be due to invalid IL or missing references) //IL_08d4: Unknown result type (might be due to invalid IL or missing references) //IL_08d9: Unknown result type (might be due to invalid IL or missing references) //IL_08df: Unknown result type (might be due to invalid IL or missing references) //IL_08e9: Unknown result type (might be due to invalid IL or missing references) //IL_08ee: Unknown result type (might be due to invalid IL or missing references) //IL_08f4: Unknown result type (might be due to invalid IL or missing references) //IL_08f9: Unknown result type (might be due to invalid IL or missing references) //IL_08fe: Unknown result type (might be due to invalid IL or missing references) //IL_090e: Unknown result type (might be due to invalid IL or missing references) //IL_0914: Unknown result type (might be due to invalid IL or missing references) //IL_0919: Unknown result type (might be due to invalid IL or missing references) //IL_091f: Unknown result type (might be due to invalid IL or missing references) //IL_0929: Unknown result type (might be due to invalid IL or missing references) //IL_092e: Unknown result type (might be due to invalid IL or missing references) //IL_0934: Unknown result type (might be due to invalid IL or missing references) //IL_0939: Unknown result type (might be due to invalid IL or missing references) //IL_093f: Unknown result type (might be due to invalid IL or missing references) //IL_0949: Unknown result type (might be due to invalid IL or missing references) //IL_094e: Unknown result type (might be due to invalid IL or missing references) //IL_0954: Unknown result type (might be due to invalid IL or missing references) //IL_0959: Unknown result type (might be due to invalid IL or missing references) //IL_0964: Unknown result type (might be due to invalid IL or missing references) //IL_096a: Unknown result type (might be due to invalid IL or missing references) //IL_096f: Unknown result type (might be due to invalid IL or missing references) //IL_0975: Unknown result type (might be due to invalid IL or missing references) //IL_097f: Unknown result type (might be due to invalid IL or missing references) //IL_0984: Unknown result type (might be due to invalid IL or missing references) //IL_098a: Unknown result type (might be due to invalid IL or missing references) //IL_098f: Unknown result type (might be due to invalid IL or missing references) //IL_0995: Unknown result type (might be due to invalid IL or missing references) //IL_099f: Unknown result type (might be due to invalid IL or missing references) //IL_09a4: Unknown result type (might be due to invalid IL or missing references) //IL_09aa: Unknown result type (might be due to invalid IL or missing references) //IL_09af: Unknown result type (might be due to invalid IL or missing references) //IL_09b4: Unknown result type (might be due to invalid IL or missing references) //IL_09c4: Unknown result type (might be due to invalid IL or missing references) //IL_09ca: Unknown result type (might be due to invalid IL or missing references) //IL_09cf: Unknown result type (might be due to invalid IL or missing references) //IL_09d5: Unknown result type (might be due to invalid IL or missing references) //IL_09df: Unknown result type (might be due to invalid IL or missing references) //IL_09e4: Unknown result type (might be due to invalid IL or missing references) //IL_09ea: Unknown result type (might be due to invalid IL or missing references) //IL_09ef: Unknown result type (might be due to invalid IL or missing references) //IL_09f5: Unknown result type (might be due to invalid IL or missing references) //IL_09ff: Unknown result type (might be due to invalid IL or missing references) //IL_0a04: Unknown result type (might be due to invalid IL or missing references) //IL_0a0a: Unknown result type (might be due to invalid IL or missing references) //IL_0a0f: Unknown result type (might be due to invalid IL or missing references) //IL_0a1a: Unknown result type (might be due to invalid IL or missing references) //IL_0a20: Unknown result type (might be due to invalid IL or missing references) //IL_0a25: Unknown result type (might be due to invalid IL or missing references) //IL_0a2b: Unknown result type (might be due to invalid IL or missing references) //IL_0a35: Unknown result type (might be due to invalid IL or missing references) //IL_0a3a: Unknown result type (might be due to invalid IL or missing references) //IL_0a40: Unknown result type (might be due to invalid IL or missing references) //IL_0a45: Unknown result type (might be due to invalid IL or missing references) //IL_0a4b: Unknown result type (might be due to invalid IL or missing references) //IL_0a55: Unknown result type (might be due to invalid IL or missing references) //IL_0a5a: Unknown result type (might be due to invalid IL or missing references) //IL_0a60: Unknown result type (might be due to invalid IL or missing references) //IL_0a65: Unknown result type (might be due to invalid IL or missing references) //IL_0a6a: Unknown result type (might be due to invalid IL or missing references) //IL_0a7a: Unknown result type (might be due to invalid IL or missing references) //IL_0a80: Unknown result type (might be due to invalid IL or missing references) //IL_0a85: Unknown result type (might be due to invalid IL or missing references) //IL_0a8b: Unknown result type (might be due to invalid IL or missing references) //IL_0a95: Unknown result type (might be due to invalid IL or missing references) //IL_0a9a: Unknown result type (might be due to invalid IL or missing references) //IL_0aa0: Unknown result type (might be due to invalid IL or missing references) //IL_0aa5: Unknown result type (might be due to invalid IL or missing references) //IL_0aab: Unknown result type (might be due to invalid IL or missing references) //IL_0ab5: Unknown result type (might be due to invalid IL or missing references) //IL_0aba: Unknown result type (might be due to invalid IL or missing references) //IL_0ac0: Unknown result type (might be due to invalid IL or missing references) //IL_0ac5: Unknown result type (might be due to invalid IL or missing references) //IL_0ad0: Unknown result type (might be due to invalid IL or missing references) //IL_0ad6: Unknown result type (might be due to invalid IL or missing references) //IL_0adb: Unknown result type (might be due to invalid IL or missing references) //IL_0ae1: Unknown result type (might be due to invalid IL or missing references) //IL_0aeb: Unknown result type (might be due to invalid IL or missing references) //IL_0af0: Unknown result type (might be due to invalid IL or missing references) //IL_0af6: Unknown result type (might be due to invalid IL or missing references) //IL_0afb: Unknown result type (might be due to invalid IL or missing references) //IL_0b01: Unknown result type (might be due to invalid IL or missing references) //IL_0b0b: Unknown result type (might be due to invalid IL or missing references) //IL_0b10: Unknown result type (might be due to invalid IL or missing references) //IL_0b16: Unknown result type (might be due to invalid IL or missing references) //IL_0b1b: Unknown result type (might be due to invalid IL or missing references) //IL_0b20: Unknown result type (might be due to invalid IL or missing references) //IL_0b30: Unknown result type (might be due to invalid IL or missing references) //IL_0b36: Unknown result type (might be due to invalid IL or missing references) //IL_0b3b: Unknown result type (might be due to invalid IL or missing references) //IL_0b41: Unknown result type (might be due to invalid IL or missing references) //IL_0b46: Unknown result type (might be due to invalid IL or missing references) //IL_0b4c: Unknown result type (might be due to invalid IL or missing references) //IL_0b56: Unknown result type (might be due to invalid IL or missing references) //IL_0b5b: Unknown result type (might be due to invalid IL or missing references) //IL_0b61: Unknown result type (might be due to invalid IL or missing references) //IL_0b66: Unknown result type (might be due to invalid IL or missing references) //IL_0b71: Unknown result type (might be due to invalid IL or missing references) //IL_0b77: Unknown result type (might be due to invalid IL or missing references) //IL_0b7c: Unknown result type (might be due to invalid IL or missing references) //IL_0b82: Unknown result type (might be due to invalid IL or missing references) //IL_0b87: Unknown result type (might be due to invalid IL or missing references) //IL_0b8d: Unknown result type (might be due to invalid IL or missing references) //IL_0b97: Unknown result type (might be due to invalid IL or missing references) //IL_0b9c: Unknown result type (might be due to invalid IL or missing references) //IL_0ba2: Unknown result type (might be due to invalid IL or missing references) //IL_0ba7: Unknown result type (might be due to invalid IL or missing references) //IL_0bac: Unknown result type (might be due to invalid IL or missing references) //IL_0bbc: Unknown result type (might be due to invalid IL or missing references) //IL_0bc2: Unknown result type (might be due to invalid IL or missing references) //IL_0bc7: Unknown result type (might be due to invalid IL or missing references) //IL_0bcd: Unknown result type (might be due to invalid IL or missing references) //IL_0bd2: Unknown result type (might be due to invalid IL or missing references) //IL_0bd8: Unknown result type (might be due to invalid IL or missing references) //IL_0be2: Unknown result type (might be due to invalid IL or missing references) //IL_0be7: Unknown result type (might be due to invalid IL or missing references) //IL_0bed: Unknown result type (might be due to invalid IL or missing references) //IL_0bf2: Unknown result type (might be due to invalid IL or missing references) //IL_0bfd: Unknown result type (might be due to invalid IL or missing references) //IL_0c03: Unknown result type (might be due to invalid IL or missing references) //IL_0c08: Unknown result type (might be due to invalid IL or missing references) //IL_0c0e: Unknown result type (might be due to invalid IL or missing references) //IL_0c13: Unknown result type (might be due to invalid IL or missing references) //IL_0c19: Unknown result type (might be due to invalid IL or missing references) //IL_0c23: Unknown result type (might be due to invalid IL or missing references) //IL_0c28: Unknown result type (might be due to invalid IL or missing references) //IL_0c2e: Unknown result type (might be due to invalid IL or missing references) //IL_0c33: Unknown result type (might be due to invalid IL or missing references) //IL_0c38: Unknown result type (might be due to invalid IL or missing references) //IL_0c48: Unknown result type (might be due to invalid IL or missing references) //IL_0c4e: Unknown result type (might be due to invalid IL or missing references) //IL_0c53: Unknown result type (might be due to invalid IL or missing references) //IL_0c59: Unknown result type (might be due to invalid IL or missing references) //IL_0c63: Unknown result type (might be due to invalid IL or missing references) //IL_0c68: Unknown result type (might be due to invalid IL or missing references) //IL_0c6e: Unknown result type (might be due to invalid IL or missing references) //IL_0c73: Unknown result type (might be due to invalid IL or missing references) //IL_0c79: Unknown result type (might be due to invalid IL or missing references) //IL_0c83: Unknown result type (might be due to invalid IL or missing references) //IL_0c88: Unknown result type (might be due to invalid IL or missing references) //IL_0c8e: Unknown result type (might be due to invalid IL or missing references) //IL_0c93: Unknown result type (might be due to invalid IL or missing references) //IL_0c9e: Unknown result type (might be due to invalid IL or missing references) //IL_0ca4: Unknown result type (might be due to invalid IL or missing references) //IL_0ca9: Unknown result type (might be due to invalid IL or missing references) //IL_0caf: Unknown result type (might be due to invalid IL or missing references) //IL_0cb9: Unknown result type (might be due to invalid IL or missing references) //IL_0cbe: Unknown result type (might be due to invalid IL or missing references) //IL_0cc4: Unknown result type (might be due to invalid IL or missing references) //IL_0cc9: Unknown result type (might be due to invalid IL or missing references) //IL_0ccf: Unknown result type (might be due to invalid IL or missing references) //IL_0cd9: Unknown result type (might be due to invalid IL or missing references) //IL_0cde: Unknown result type (might be due to invalid IL or missing references) //IL_0ce4: Unknown result type (might be due to invalid IL or missing references) //IL_0ce9: Unknown result type (might be due to invalid IL or missing references) //IL_0cee: Unknown result type (might be due to invalid IL or missing references) //IL_0cfe: Unknown result type (might be due to invalid IL or missing references) //IL_0d04: Unknown result type (might be due to invalid IL or missing references) //IL_0d09: Unknown result type (might be due to invalid IL or missing references) //IL_0d0f: Unknown result type (might be due to invalid IL or missing references) //IL_0d19: Unknown result type (might be due to invalid IL or missing references) //IL_0d1e: Unknown result type (might be due to invalid IL or missing references) //IL_0d24: Unknown result type (might be due to invalid IL or missing references) //IL_0d29: Unknown result type (might be due to invalid IL or missing references) //IL_0d2f: Unknown result type (might be due to invalid IL or missing references) //IL_0d39: Unknown result type (might be due to invalid IL or missing references) //IL_0d3e: Unknown result type (might be due to invalid IL or missing references) //IL_0d44: Unknown result type (might be due to invalid IL or missing references) //IL_0d49: Unknown result type (might be due to invalid IL or missing references) //IL_0d54: Unknown result type (might be due to invalid IL or missing references) //IL_0d5a: Unknown result type (might be due to invalid IL or missing references) //IL_0d5f: Unknown result type (might be due to invalid IL or missing references) //IL_0d65: Unknown result type (might be due to invalid IL or missing references) //IL_0d6f: Unknown result type (might be due to invalid IL or missing references) //IL_0d74: Unknown result type (might be due to invalid IL or missing references) //IL_0d7a: Unknown result type (might be due to invalid IL or missing references) //IL_0d7f: Unknown result type (might be due to invalid IL or missing references) //IL_0d85: Unknown result type (might be due to invalid IL or missing references) //IL_0d8f: Unknown result type (might be due to invalid IL or missing references) //IL_0d94: Unknown result type (might be due to invalid IL or missing references) //IL_0d9a: Unknown result type (might be due to invalid IL or missing references) //IL_0d9f: Unknown result type (might be due to invalid IL or missing references) //IL_0da4: Unknown result type (might be due to invalid IL or missing references) //IL_0db4: Unknown result type (might be due to invalid IL or missing references) //IL_0dba: Unknown result type (might be due to invalid IL or missing references) //IL_0dbf: Unknown result type (might be due to invalid IL or missing references) //IL_0dc5: Unknown result type (might be due to invalid IL or missing references) //IL_0dca: Unknown result type (might be due to invalid IL or missing references) //IL_0dd0: Unknown result type (might be due to invalid IL or missing references) //IL_0dd5: Unknown result type (might be due to invalid IL or missing references) //IL_0ddb: Unknown result type (might be due to invalid IL or missing references) //IL_0de5: Unknown result type (might be due to invalid IL or missing references) //IL_0dea: Unknown result type (might be due to invalid IL or missing references) //IL_0df0: Unknown result type (might be due to invalid IL or missing references) //IL_0dfa: Unknown result type (might be due to invalid IL or missing references) //IL_0dff: Unknown result type (might be due to invalid IL or missing references) //IL_0e05: Unknown result type (might be due to invalid IL or missing references) //IL_0e0f: Unknown result type (might be due to invalid IL or missing references) //IL_0e14: Unknown result type (might be due to invalid IL or missing references) //IL_0e1a: Unknown result type (might be due to invalid IL or missing references) //IL_0e1f: Unknown result type (might be due to invalid IL or missing references) //IL_0e25: Unknown result type (might be due to invalid IL or missing references) //IL_0e2a: Unknown result type (might be due to invalid IL or missing references) //IL_0e35: Unknown result type (might be due to invalid IL or missing references) //IL_0e3b: Unknown result type (might be due to invalid IL or missing references) //IL_0e40: Unknown result type (might be due to invalid IL or missing references) //IL_0e46: Unknown result type (might be due to invalid IL or missing references) //IL_0e4b: Unknown result type (might be due to invalid IL or missing references) //IL_0e51: Unknown result type (might be due to invalid IL or missing references) //IL_0e56: Unknown result type (might be due to invalid IL or missing references) //IL_0e5c: Unknown result type (might be due to invalid IL or missing references) //IL_0e66: Unknown result type (might be due to invalid IL or missing references) //IL_0e6b: Unknown result type (might be due to invalid IL or missing references) //IL_0e71: Unknown result type (might be due to invalid IL or missing references) //IL_0e76: Unknown result type (might be due to invalid IL or missing references) //IL_0e7c: Unknown result type (might be due to invalid IL or missing references) //IL_0e86: Unknown result type (might be due to invalid IL or missing references) //IL_0e8b: Unknown result type (might be due to invalid IL or missing references) //IL_0e91: Unknown result type (might be due to invalid IL or missing references) //IL_0e9b: Unknown result type (might be due to invalid IL or missing references) //IL_0ea0: Unknown result type (might be due to invalid IL or missing references) //IL_0ea6: Unknown result type (might be due to invalid IL or missing references) //IL_0eab: Unknown result type (might be due to invalid IL or missing references) //IL_0eb0: Unknown result type (might be due to invalid IL or missing references) //IL_0ec0: Unknown result type (might be due to invalid IL or missing references) //IL_0ec6: Unknown result type (might be due to invalid IL or missing references) //IL_0ecb: Unknown result type (might be due to invalid IL or missing references) //IL_0ed1: Unknown result type (might be due to invalid IL or missing references) //IL_0ed6: Unknown result type (might be due to invalid IL or missing references) //IL_0edc: Unknown result type (might be due to invalid IL or missing references) //IL_0ee1: Unknown result type (might be due to invalid IL or missing references) //IL_0ee7: Unknown result type (might be due to invalid IL or missing references) //IL_0ef1: Unknown result type (might be due to invalid IL or missing references) //IL_0ef6: Unknown result type (might be due to invalid IL or missing references) //IL_0efc: Unknown result type (might be due to invalid IL or missing references) //IL_0f06: Unknown result type (might be due to invalid IL or missing references) //IL_0f0b: Unknown result type (might be due to invalid IL or missing references) //IL_0f11: Unknown result type (might be due to invalid IL or missing references) //IL_0f1b: Unknown result type (might be due to invalid IL or missing references) //IL_0f20: Unknown result type (might be due to invalid IL or missing references) //IL_0f26: Unknown result type (might be due to invalid IL or missing references) //IL_0f2b: Unknown result type (might be due to invalid IL or missing references) //IL_0f31: Unknown result type (might be due to invalid IL or missing references) //IL_0f36: Unknown result type (might be due to invalid IL or missing references) //IL_0f41: Unknown result type (might be due to invalid IL or missing references) //IL_0f47: Unknown result type (might be due to invalid IL or missing references) //IL_0f4c: Unknown result type (might be due to invalid IL or missing references) //IL_0f52: Unknown result type (might be due to invalid IL or missing references) //IL_0f57: Unknown result type (might be due to invalid IL or missing references) //IL_0f5d: Unknown result type (might be due to invalid IL or missing references) //IL_0f62: Unknown result type (might be due to invalid IL or missing references) //IL_0f68: Unknown result type (might be due to invalid IL or missing references) //IL_0f72: Unknown result type (might be due to invalid IL or missing references) //IL_0f77: Unknown result type (might be due to invalid IL or missing references) //IL_0f7d: Unknown result type (might be due to invalid IL or missing references) //IL_0f87: Unknown result type (might be due to invalid IL or missing references) //IL_0f8c: Unknown result type (might be due to invalid IL or missing references) //IL_0f92: Unknown result type (might be due to invalid IL or missing references) //IL_0f9c: Unknown result type (might be due to invalid IL or missing references) //IL_0fa1: Unknown result type (might be due to invalid IL or missing references) //IL_0fa7: Unknown result type (might be due to invalid IL or missing references) //IL_0fac: Unknown result type (might be due to invalid IL or missing references) //IL_0fb2: Unknown result type (might be due to invalid IL or missing references) //IL_0fb7: Unknown result type (might be due to invalid IL or missing references) //IL_0fbc: Unknown result type (might be due to invalid IL or missing references) //IL_0fcc: Unknown result type (might be due to invalid IL or missing references) //IL_0fd2: Unknown result type (might be due to invalid IL or missing references) //IL_0fd7: Unknown result type (might be due to invalid IL or missing references) //IL_0fdd: Unknown result type (might be due to invalid IL or missing references) //IL_0fe7: Unknown result type (might be due to invalid IL or missing references) //IL_0fec: Unknown result type (might be due to invalid IL or missing references) //IL_0ff2: Unknown result type (might be due to invalid IL or missing references) //IL_0ffc: Unknown result type (might be due to invalid IL or missing references) //IL_1001: Unknown result type (might be due to invalid IL or missing references) //IL_1007: Unknown result type (might be due to invalid IL or missing references) //IL_1011: Unknown result type (might be due to invalid IL or missing references) //IL_1016: Unknown result type (might be due to invalid IL or missing references) //IL_101c: Unknown result type (might be due to invalid IL or missing references) //IL_1021: Unknown result type (might be due to invalid IL or missing references) //IL_1027: Unknown result type (might be due to invalid IL or missing references) //IL_102c: Unknown result type (might be due to invalid IL or missing references) //IL_1032: Unknown result type (might be due to invalid IL or missing references) //IL_1037: Unknown result type (might be due to invalid IL or missing references) //IL_1042: Unknown result type (might be due to invalid IL or missing references) //IL_1048: Unknown result type (might be due to invalid IL or missing references) //IL_104d: Unknown result type (might be due to invalid IL or missing references) //IL_1053: Unknown result type (might be due to invalid IL or missing references) //IL_105d: Unknown result type (might be due to invalid IL or missing references) //IL_1062: Unknown result type (might be due to invalid IL or missing references) //IL_1068: Unknown result type (might be due to invalid IL or missing references) //IL_106d: Unknown result type (might be due to invalid IL or missing references) //IL_1073: Unknown result type (might be due to invalid IL or missing references) //IL_107d: Unknown result type (might be due to invalid IL or missing references) //IL_1082: Unknown result type (might be due to invalid IL or missing references) //IL_1088: Unknown result type (might be due to invalid IL or missing references) //IL_1092: Unknown result type (might be due to invalid IL or missing references) //IL_1097: Unknown result type (might be due to invalid IL or missing references) //IL_109d: Unknown result type (might be due to invalid IL or missing references) //IL_10a2: Unknown result type (might be due to invalid IL or missing references) //IL_10a8: Unknown result type (might be due to invalid IL or missing references) //IL_10ad: Unknown result type (might be due to invalid IL or missing references) //IL_10b2: Unknown result type (might be due to invalid IL or missing references) //IL_10c2: Unknown result type (might be due to invalid IL or missing references) //IL_10c8: Unknown result type (might be due to invalid IL or missing references) //IL_10cd: Unknown result type (might be due to invalid IL or missing references) //IL_10d3: Unknown result type (might be due to invalid IL or missing references) //IL_10dd: Unknown result type (might be due to invalid IL or missing references) //IL_10e2: Unknown result type (might be due to invalid IL or missing references) //IL_10e8: Unknown result type (might be due to invalid IL or missing references) //IL_10f2: Unknown result type (might be due to invalid IL or missing references) //IL_10f7: Unknown result type (might be due to invalid IL or missing references) //IL_10fd: Unknown result type (might be due to invalid IL or missing references) //IL_1107: Unknown result type (might be due to invalid IL or missing references) //IL_110c: Unknown result type (might be due to invalid IL or missing references) //IL_1112: Unknown result type (might be due to invalid IL or missing references) //IL_1117: Unknown result type (might be due to invalid IL or missing references) //IL_111d: Unknown result type (might be due to invalid IL or missing references) //IL_1122: Unknown result type (might be due to invalid IL or missing references) //IL_1128: Unknown result type (might be due to invalid IL or missing references) //IL_112d: Unknown result type (might be due to invalid IL or missing references) //IL_1138: Unknown result type (might be due to invalid IL or missing references) //IL_113e: Unknown result type (might be due to invalid IL or missing references) //IL_1143: Unknown result type (might be due to invalid IL or missing references) //IL_1149: Unknown result type (might be due to invalid IL or missing references) //IL_1153: Unknown result type (might be due to invalid IL or missing references) //IL_1158: Unknown result type (might be due to invalid IL or missing references) //IL_115e: Unknown result type (might be due to invalid IL or missing references) //IL_1168: Unknown result type (might be due to invalid IL or missing references) //IL_116d: Unknown result type (might be due to invalid IL or missing references) //IL_1173: Unknown result type (might be due to invalid IL or missing references) //IL_117d: Unknown result type (might be due to invalid IL or missing references) //IL_1182: Unknown result type (might be due to invalid IL or missing references) //IL_1188: Unknown result type (might be due to invalid IL or missing references) //IL_118d: Unknown result type (might be due to invalid IL or missing references) //IL_1193: Unknown result type (might be due to invalid IL or missing references) //IL_1198: Unknown result type (might be due to invalid IL or missing references) //IL_119e: Unknown result type (might be due to invalid IL or missing references) //IL_11a3: Unknown result type (might be due to invalid IL or missing references) //IL_11a8: Unknown result type (might be due to invalid IL or missing references) //IL_11b8: Unknown result type (might be due to invalid IL or missing references) //IL_11be: Unknown result type (might be due to invalid IL or missing references) //IL_11c3: Unknown result type (might be due to invalid IL or missing references) //IL_11c9: Unknown result type (might be due to invalid IL or missing references) //IL_11ce: Unknown result type (might be due to invalid IL or missing references) //IL_11d4: Unknown result type (might be due to invalid IL or missing references) //IL_11d9: Unknown result type (might be due to invalid IL or missing references) //IL_11df: Unknown result type (might be due to invalid IL or missing references) //IL_11e9: Unknown result type (might be due to invalid IL or missing references) //IL_11ee: Unknown result type (might be due to invalid IL or missing references) //IL_11f4: Unknown result type (might be due to invalid IL or missing references) //IL_11fe: Unknown result type (might be due to invalid IL or missing references) //IL_1203: Unknown result type (might be due to invalid IL or missing references) //IL_1209: Unknown result type (might be due to invalid IL or missing references) //IL_1213: Unknown result type (might be due to invalid IL or missing references) //IL_1218: Unknown result type (might be due to invalid IL or missing references) //IL_121e: Unknown result type (might be due to invalid IL or missing references) //IL_1223: Unknown result type (might be due to invalid IL or missing references) //IL_1229: Unknown result type (might be due to invalid IL or missing references) //IL_122e: Unknown result type (might be due to invalid IL or missing references) //IL_1239: Unknown result type (might be due to invalid IL or missing references) //IL_123f: Unknown result type (might be due to invalid IL or missing references) //IL_1244: Unknown result type (might be due to invalid IL or missing references) //IL_124a: Unknown result type (might be due to invalid IL or missing references) //IL_124f: Unknown result type (might be due to invalid IL or missing references) //IL_1255: Unknown result type (might be due to invalid IL or missing references) //IL_125a: Unknown result type (might be due to invalid IL or missing references) //IL_1260: Unknown result type (might be due to invalid IL or missing references) //IL_126a: Unknown result type (might be due to invalid IL or missing references) //IL_126f: Unknown result type (might be due to invalid IL or missing references) //IL_1275: Unknown result type (might be due to invalid IL or missing references) //IL_127a: Unknown result type (might be due to invalid IL or missing references) //IL_1280: Unknown result type (might be due to invalid IL or missing references) //IL_128a: Unknown result type (might be due to invalid IL or missing references) //IL_128f: Unknown result type (might be due to invalid IL or missing references) //IL_1295: Unknown result type (might be due to invalid IL or missing references) //IL_129f: Unknown result type (might be due to invalid IL or missing references) //IL_12a4: Unknown result type (might be due to invalid IL or missing references) //IL_12aa: Unknown result type (might be due to invalid IL or missing references) //IL_12af: Unknown result type (might be due to invalid IL or missing references) //IL_12b4: Unknown result type (might be due to invalid IL or missing references) //IL_12c4: Unknown result type (might be due to invalid IL or missing references) //IL_12ca: Unknown result type (might be due to invalid IL or missing references) //IL_12cf: Unknown result type (might be due to invalid IL or missing references) //IL_12d5: Unknown result type (might be due to invalid IL or missing references) //IL_12da: Unknown result type (might be due to invalid IL or missing references) //IL_12e0: Unknown result type (might be due to invalid IL or missing references) //IL_12e5: Unknown result type (might be due to invalid IL or missing references) //IL_12eb: Unknown result type (might be due to invalid IL or missing references) //IL_12f5: Unknown result type (might be due to invalid IL or missing references) //IL_12fa: Unknown result type (might be due to invalid IL or missing references) //IL_1300: Unknown result type (might be due to invalid IL or missing references) //IL_130a: Unknown result type (might be due to invalid IL or missing references) //IL_130f: Unknown result type (might be due to invalid IL or missing references) //IL_1315: Unknown result type (might be due to invalid IL or missing references) //IL_131f: Unknown result type (might be due to invalid IL or missing references) //IL_1324: Unknown result type (might be due to invalid IL or missing references) //IL_132a: Unknown result type (might be due to invalid IL or missing references) //IL_132f: Unknown result type (might be due to invalid IL or missing references) //IL_1335: Unknown result type (might be due to invalid IL or missing references) //IL_133a: Unknown result type (might be due to invalid IL or missing references) //IL_1345: Unknown result type (might be due to invalid IL or missing references) //IL_134b: Unknown result type (might be due to invalid IL or missing references) //IL_1350: Unknown result type (might be due to invalid IL or missing references) //IL_1356: Unknown result type (might be due to invalid IL or missing references) //IL_135b: Unknown result type (might be due to invalid IL or missing references) //IL_1361: Unknown result type (might be due to invalid IL or missing references) //IL_1366: Unknown result type (might be due to invalid IL or missing references) //IL_136c: Unknown result type (might be due to invalid IL or missing references) //IL_1376: Unknown result type (might be due to invalid IL or missing references) //IL_137b: Unknown result type (might be due to invalid IL or missing references) //IL_1381: Unknown result type (might be due to invalid IL or missing references) //IL_138b: Unknown result type (might be due to invalid IL or missing references) //IL_1390: Unknown result type (might be due to invalid IL or missing references) //IL_1396: Unknown result type (might be due to invalid IL or missing references) //IL_13a0: Unknown result type (might be due to invalid IL or missing references) //IL_13a5: Unknown result type (might be due to invalid IL or missing references) //IL_13ab: Unknown result type (might be due to invalid IL or missing references) //IL_13b0: Unknown result type (might be due to invalid IL or missing references) //IL_13b6: Unknown result type (might be due to invalid IL or missing references) //IL_13bb: Unknown result type (might be due to invalid IL or missing references) //IL_13c0: Unknown result type (might be due to invalid IL or missing references) //IL_13d0: Unknown result type (might be due to invalid IL or missing references) //IL_13d6: Unknown result type (might be due to invalid IL or missing references) //IL_13db: Unknown result type (might be due to invalid IL or missing references) //IL_13e1: Unknown result type (might be due to invalid IL or missing references) //IL_13eb: Unknown result type (might be due to invalid IL or missing references) //IL_13f0: Unknown result type (might be due to invalid IL or missing references) //IL_13f6: Unknown result type (might be due to invalid IL or missing references) //IL_1400: Unknown result type (might be due to invalid IL or missing references) //IL_1405: Unknown result type (might be due to invalid IL or missing references) //IL_140b: Unknown result type (might be due to invalid IL or missing references) //IL_1415: Unknown result type (might be due to invalid IL or missing references) //IL_141a: Unknown result type (might be due to invalid IL or missing references) //IL_1420: Unknown result type (might be due to invalid IL or missing references) //IL_1425: Unknown result type (might be due to invalid IL or missing references) //IL_142b: Unknown result type (might be due to invalid IL or missing references) //IL_1430: Unknown result type (might be due to invalid IL or missing references) //IL_1436: Unknown result type (might be due to invalid IL or missing references) //IL_143b: Unknown result type (might be due to invalid IL or missing references) //IL_1446: Unknown result type (might be due to invalid IL or missing references) //IL_144c: Unknown result type (might be due to invalid IL or missing references) //IL_1451: Unknown result type (might be due to invalid IL or missing references) //IL_1457: Unknown result type (might be due to invalid IL or missing references) //IL_1461: Unknown result type (might be due to invalid IL or missing references) //IL_1466: Unknown result type (might be due to invalid IL or missing references) //IL_146c: Unknown result type (might be due to invalid IL or missing references) //IL_1471: Unknown result type (might be due to invalid IL or missing references) //IL_1477: Unknown result type (might be due to invalid IL or missing references) //IL_1481: Unknown result type (might be due to invalid IL or missing references) //IL_1486: Unknown result type (might be due to invalid IL or missing references) //IL_148c: Unknown result type (might be due to invalid IL or missing references) //IL_1496: Unknown result type (might be due to invalid IL or missing references) //IL_149b: Unknown result type (might be due to invalid IL or missing references) //IL_14a1: Unknown result type (might be due to invalid IL or missing references) //IL_14a6: Unknown result type (might be due to invalid IL or missing references) //IL_14ac: Unknown result type (might be due to invalid IL or missing references) //IL_14b1: Unknown result type (might be due to invalid IL or missing references) //IL_14b6: Unknown result type (might be due to invalid IL or missing references) //IL_14c6: Unknown result type (might be due to invalid IL or missing references) //IL_14cc: Unknown result type (might be due to invalid IL or missing references) //IL_14d1: Unknown result type (might be due to invalid IL or missing references) //IL_14d7: Unknown result type (might be due to invalid IL or missing references) //IL_14e1: Unknown result type (might be due to invalid IL or missing references) //IL_14e6: Unknown result type (might be due to invalid IL or missing references) //IL_14ec: Unknown result type (might be due to invalid IL or missing references) //IL_14f6: Unknown result type (might be due to invalid IL or missing references) //IL_14fb: Unknown result type (might be due to invalid IL or missing references) //IL_1501: Unknown result type (might be due to invalid IL or missing references) //IL_150b: Unknown result type (might be due to invalid IL or missing references) //IL_1510: Unknown result type (might be due to invalid IL or missing references) //IL_1516: Unknown result type (might be due to invalid IL or missing references) //IL_151b: Unknown result type (might be due to invalid IL or missing references) //IL_1521: Unknown result type (might be due to invalid IL or missing references) //IL_1526: Unknown result type (might be due to invalid IL or missing references) //IL_152c: Unknown result type (might be due to invalid IL or missing references) //IL_1531: Unknown result type (might be due to invalid IL or missing references) //IL_153c: Unknown result type (might be due to invalid IL or missing references) //IL_1542: Unknown result type (might be due to invalid IL or missing references) //IL_1547: Unknown result type (might be due to invalid IL or missing references) //IL_154d: Unknown result type (might be due to invalid IL or missing references) //IL_1557: Unknown result type (might be due to invalid IL or missing references) //IL_155c: Unknown result type (might be due to invalid IL or missing references) //IL_1562: Unknown result type (might be due to invalid IL or missing references) //IL_156c: Unknown result type (might be due to invalid IL or missing references) //IL_1571: Unknown result type (might be due to invalid IL or missing references) //IL_1577: Unknown result type (might be due to invalid IL or missing references) //IL_1581: Unknown result type (might be due to invalid IL or missing references) //IL_1586: Unknown result type (might be due to invalid IL or missing references) //IL_158c: Unknown result type (might be due to invalid IL or missing references) //IL_1591: Unknown result type (might be due to invalid IL or missing references) //IL_1597: Unknown result type (might be due to invalid IL or missing references) //IL_159c: Unknown result type (might be due to invalid IL or missing references) //IL_15a2: Unknown result type (might be due to invalid IL or missing references) //IL_15a7: Unknown result type (might be due to invalid IL or missing references) //IL_15ac: Unknown result type (might be due to invalid IL or missing references) //IL_15bc: Unknown result type (might be due to invalid IL or missing references) //IL_15c2: Unknown result type (might be due to invalid IL or missing references) //IL_15c7: Unknown result type (might be due to invalid IL or missing references) //IL_15cd: Unknown result type (might be due to invalid IL or missing references) //IL_15d2: Unknown result type (might be due to invalid IL or missing references) //IL_15d8: Unknown result type (might be due to invalid IL or missing references) //IL_15dd: Unknown result type (might be due to invalid IL or missing references) //IL_15e3: Unknown result type (might be due to invalid IL or missing references) //IL_15ed: Unknown result type (might be due to invalid IL or missing references) //IL_15f2: Unknown result type (might be due to invalid IL or missing references) //IL_15f8: Unknown result type (might be due to invalid IL or missing references) //IL_1602: Unknown result type (might be due to invalid IL or missing references) //IL_1607: Unknown result type (might be due to invalid IL or missing references) //IL_160d: Unknown result type (might be due to invalid IL or missing references) //IL_1617: Unknown result type (might be due to invalid IL or missing references) //IL_161c: Unknown result type (might be due to invalid IL or missing references) //IL_1622: Unknown result type (might be due to invalid IL or missing references) //IL_1627: Unknown result type (might be due to invalid IL or missing references) //IL_162d: Unknown result type (might be due to invalid IL or missing references) //IL_1632: Unknown result type (might be due to invalid IL or missing references) //IL_163d: Unknown result type (might be due to invalid IL or missing references) //IL_1643: Unknown result type (might be due to invalid IL or missing references) //IL_1648: Unknown result type (might be due to invalid IL or missing references) //IL_164e: Unknown result type (might be due to invalid IL or missing references) //IL_1653: Unknown result type (might be due to invalid IL or missing references) //IL_1659: Unknown result type (might be due to invalid IL or missing references) //IL_165e: Unknown result type (might be due to invalid IL or missing references) //IL_1664: Unknown result type (might be due to invalid IL or missing references) //IL_166e: Unknown result type (might be due to invalid IL or missing references) //IL_1673: Unknown result type (might be due to invalid IL or missing references) //IL_1679: Unknown result type (might be due to invalid IL or missing references) //IL_167e: Unknown result type (might be due to invalid IL or missing references) //IL_1684: Unknown result type (might be due to invalid IL or missing references) //IL_168e: Unknown result type (might be due to invalid IL or missing references) //IL_1693: Unknown result type (might be due to invalid IL or missing references) //IL_1699: Unknown result type (might be due to invalid IL or missing references) //IL_16a3: Unknown result type (might be due to invalid IL or missing references) //IL_16a8: Unknown result type (might be due to invalid IL or missing references) //IL_16ae: Unknown result type (might be due to invalid IL or missing references) //IL_16b3: Unknown result type (might be due to invalid IL or missing references) //IL_16b8: Unknown result type (might be due to invalid IL or missing references) //IL_16c8: Unknown result type (might be due to invalid IL or missing references) //IL_16ce: Unknown result type (might be due to invalid IL or missing references) //IL_16d3: Unknown result type (might be due to invalid IL or missing references) //IL_16d9: Unknown result type (might be due to invalid IL or missing references) //IL_16de: Unknown result type (might be due to invalid IL or missing references) //IL_16e4: Unknown result type (might be due to invalid IL or missing references) //IL_16e9: Unknown result type (might be due to invalid IL or missing references) //IL_16ef: Unknown result type (might be due to invalid IL or missing references) //IL_16f9: Unknown result type (might be due to invalid IL or missing references) //IL_16fe: Unknown result type (might be due to invalid IL or missing references) //IL_1704: Unknown result type (might be due to invalid IL or missing references) //IL_170e: Unknown result type (might be due to invalid IL or missing references) //IL_1713: Unknown result type (might be due to invalid IL or missing references) //IL_1719: Unknown result type (might be due to invalid IL or missing references) //IL_1723: Unknown result type (might be due to invalid IL or missing references) //IL_1728: Unknown result type (might be due to invalid IL or missing references) //IL_172e: Unknown result type (might be due to invalid IL or missing references) //IL_1733: Unknown result type (might be due to invalid IL or missing references) //IL_1739: Unknown result type (might be due to invalid IL or missing references) //IL_173e: Unknown result type (might be due to invalid IL or missing references) //IL_1749: Unknown result type (might be due to invalid IL or missing references) //IL_174f: Unknown result type (might be due to invalid IL or missing references) //IL_1754: Unknown result type (might be due to invalid IL or missing references) //IL_175a: Unknown result type (might be due to invalid IL or missing references) //IL_175f: Unknown result type (might be due to invalid IL or missing references) //IL_1765: Unknown result type (might be due to invalid IL or missing references) //IL_176a: Unknown result type (might be due to invalid IL or missing references) //IL_1770: Unknown result type (might be due to invalid IL or missing references) //IL_177a: Unknown result type (might be due to invalid IL or missing references) //IL_177f: Unknown result type (might be due to invalid IL or missing references) //IL_1785: Unknown result type (might be due to invalid IL or missing references) //IL_178f: Unknown result type (might be due to invalid IL or missing references) //IL_1794: Unknown result type (might be due to invalid IL or missing references) //IL_179a: Unknown result type (might be due to invalid IL or missing references) //IL_17a4: Unknown result type (might be due to invalid IL or missing references) //IL_17a9: Unknown result type (might be due to invalid IL or missing references) //IL_17af: Unknown result type (might be due to invalid IL or missing references) //IL_17b4: Unknown result type (might be due to invalid IL or missing references) //IL_17ba: Unknown result type (might be due to invalid IL or missing references) //IL_17bf: Unknown result type (might be due to invalid IL or missing references) //IL_17c4: Unknown result type (might be due to invalid IL or missing references) //IL_17d4: Unknown result type (might be due to invalid IL or missing references) //IL_17da: Unknown result type (might be due to invalid IL or missing references) //IL_17df: Unknown result type (might be due to invalid IL or missing references) //IL_17e5: Unknown result type (might be due to invalid IL or missing references) //IL_17ef: Unknown result type (might be due to invalid IL or missing references) //IL_17f4: Unknown result type (might be due to invalid IL or missing references) //IL_17fa: Unknown result type (might be due to invalid IL or missing references) //IL_1804: Unknown result type (might be due to invalid IL or missing references) //IL_1809: Unknown result type (might be due to invalid IL or missing references) //IL_180f: Unknown result type (might be due to invalid IL or missing references) //IL_1819: Unknown result type (might be due to invalid IL or missing references) //IL_181e: Unknown result type (might be due to invalid IL or missing references) //IL_1824: Unknown result type (might be due to invalid IL or missing references) //IL_1829: Unknown result type (might be due to invalid IL or missing references) //IL_182f: Unknown result type (might be due to invalid IL or missing references) //IL_1834: Unknown result type (might be due to invalid IL or missing references) //IL_183a: Unknown result type (might be due to invalid IL or missing references) //IL_183f: Unknown result type (might be due to invalid IL or missing references) //IL_184a: Unknown result type (might be due to invalid IL or missing references) //IL_1850: Unknown result type (might be due to invalid IL or missing references) //IL_1855: Unknown result type (might be due to invalid IL or missing references) //IL_185b: Unknown result type (might be due to invalid IL or missing references) //IL_1865: Unknown result type (might be due to invalid IL or missing references) //IL_186a: Unknown result type (might be due to invalid IL or missing references) //IL_1870: Unknown result type (might be due to invalid IL or missing references) //IL_1875: Unknown result type (might be due to invalid IL or missing references) //IL_187b: Unknown result type (might be due to invalid IL or missing references) //IL_1885: Unknown result type (might be due to invalid IL or missing references) //IL_188a: Unknown result type (might be due to invalid IL or missing references) //IL_1890: Unknown result type (might be due to invalid IL or missing references) //IL_189a: Unknown result type (might be due to invalid IL or missing references) //IL_189f: Unknown result type (might be due to invalid IL or missing references) //IL_18a5: Unknown result type (might be due to invalid IL or missing references) //IL_18aa: Unknown result type (might be due to invalid IL or missing references) //IL_18b0: Unknown result type (might be due to invalid IL or missing references) //IL_18b5: Unknown result type (might be due to invalid IL or missing references) //IL_18ba: Unknown result type (might be due to invalid IL or missing references) //IL_18ca: Unknown result type (might be due to invalid IL or missing references) //IL_18d0: Unknown result type (might be due to invalid IL or missing references) //IL_18d5: Unknown result type (might be due to invalid IL or missing references) //IL_18db: Unknown result type (might be due to invalid IL or missing references) //IL_18e5: Unknown result type (might be due to invalid IL or missing references) //IL_18ea: Unknown result type (might be due to invalid IL or missing references) //IL_18f0: Unknown result type (might be due to invalid IL or missing references) //IL_18fa: Unknown result type (might be due to invalid IL or missing references) //IL_18ff: Unknown result type (might be due to invalid IL or missing references) //IL_1905: Unknown result type (might be due to invalid IL or missing references) //IL_190f: Unknown result type (might be due to invalid IL or missing references) //IL_1914: Unknown result type (might be due to invalid IL or missing references) //IL_191a: Unknown result type (might be due to invalid IL or missing references) //IL_191f: Unknown result type (might be due to invalid IL or missing references) //IL_1925: Unknown result type (might be due to invalid IL or missing references) //IL_192a: Unknown result type (might be due to invalid IL or missing references) //IL_1930: Unknown result type (might be due to invalid IL or missing references) //IL_1935: Unknown result type (might be due to invalid IL or missing references) //IL_1940: Unknown result type (might be due to invalid IL or missing references) //IL_1946: Unknown result type (might be due to invalid IL or missing references) //IL_194b: Unknown result type (might be due to invalid IL or missing references) //IL_1951: Unknown result type (might be due to invalid IL or missing references) //IL_195b: Unknown result type (might be due to invalid IL or missing references) //IL_1960: Unknown result type (might be due to invalid IL or missing references) //IL_1966: Unknown result type (might be due to invalid IL or missing references) //IL_1970: Unknown result type (might be due to invalid IL or missing references) //IL_1975: Unknown result type (might be due to invalid IL or missing references) //IL_197b: Unknown result type (might be due to invalid IL or missing references) //IL_1985: Unknown result type (might be due to invalid IL or missing references) //IL_198a: Unknown result type (might be due to invalid IL or missing references) //IL_1990: Unknown result type (might be due to invalid IL or missing references) //IL_1995: Unknown result type (might be due to invalid IL or missing references) //IL_199b: Unknown result type (might be due to invalid IL or missing references) //IL_19a0: Unknown result type (might be due to invalid IL or missing references) //IL_19a6: Unknown result type (might be due to invalid IL or missing references) //IL_19ab: Unknown result type (might be due to invalid IL or missing references) //IL_19b0: Unknown result type (might be due to invalid IL or missing references) //IL_19c0: Unknown result type (might be due to invalid IL or missing references) //IL_19c6: Unknown result type (might be due to invalid IL or missing references) //IL_19cb: Unknown result type (might be due to invalid IL or missing references) //IL_19d1: Unknown result type (might be due to invalid IL or missing references) //IL_19d6: Unknown result type (might be due to invalid IL or missing references) //IL_19dc: Unknown result type (might be due to invalid IL or missing references) //IL_19e1: Unknown result type (might be due to invalid IL or missing references) //IL_19e7: Unknown result type (might be due to invalid IL or missing references) //IL_19f1: Unknown result type (might be due to invalid IL or missing references) //IL_19f6: Unknown result type (might be due to invalid IL or missing references) //IL_19fc: Unknown result type (might be due to invalid IL or missing references) //IL_1a06: Unknown result type (might be due to invalid IL or missing references) //IL_1a0b: Unknown result type (might be due to invalid IL or missing references) //IL_1a11: Unknown result type (might be due to invalid IL or missing references) //IL_1a16: Unknown result type (might be due to invalid IL or missing references) //IL_1a1c: Unknown result type (might be due to invalid IL or missing references) //IL_1a21: Unknown result type (might be due to invalid IL or missing references) //IL_1a2c: Unknown result type (might be due to invalid IL or missing references) //IL_1a32: Unknown result type (might be due to invalid IL or missing references) //IL_1a37: Unknown result type (might be due to invalid IL or missing references) //IL_1a3d: Unknown result type (might be due to invalid IL or missing references) //IL_1a42: Unknown result type (might be due to invalid IL or missing references) //IL_1a48: Unknown result type (might be due to invalid IL or missing references) //IL_1a4d: Unknown result type (might be due to invalid IL or missing references) //IL_1a53: Unknown result type (might be due to invalid IL or missing references) //IL_1a5d: Unknown result type (might be due to invalid IL or missing references) //IL_1a62: Unknown result type (might be due to invalid IL or missing references) //IL_1a68: Unknown result type (might be due to invalid IL or missing references) //IL_1a6d: Unknown result type (might be due to invalid IL or missing references) //IL_1a73: Unknown result type (might be due to invalid IL or missing references) //IL_1a7d: Unknown result type (might be due to invalid IL or missing references) //IL_1a82: Unknown result type (might be due to invalid IL or missing references) //IL_1a88: Unknown result type (might be due to invalid IL or missing references) //IL_1a8d: Unknown result type (might be due to invalid IL or missing references) //IL_1a92: Unknown result type (might be due to invalid IL or missing references) //IL_1aa2: Unknown result type (might be due to invalid IL or missing references) //IL_1aa8: Unknown result type (might be due to invalid IL or missing references) //IL_1aad: Unknown result type (might be due to invalid IL or missing references) //IL_1ab3: Unknown result type (might be due to invalid IL or missing references) //IL_1ab8: Unknown result type (might be due to invalid IL or missing references) //IL_1abe: Unknown result type (might be due to invalid IL or missing references) //IL_1ac3: Unknown result type (might be due to invalid IL or missing references) //IL_1ac9: Unknown result type (might be due to invalid IL or missing references) //IL_1ad3: Unknown result type (might be due to invalid IL or missing references) //IL_1ad8: Unknown result type (might be due to invalid IL or missing references) //IL_1ade: Unknown result type (might be due to invalid IL or missing references) //IL_1ae8: Unknown result type (might be due to invalid IL or missing references) //IL_1aed: Unknown result type (might be due to invalid IL or missing references) //IL_1af3: Unknown result type (might be due to invalid IL or missing references) //IL_1af8: Unknown result type (might be due to invalid IL or missing references) //IL_1afe: Unknown result type (might be due to invalid IL or missing references) //IL_1b03: Unknown result type (might be due to invalid IL or missing references) //IL_1b0e: Unknown result type (might be due to invalid IL or missing references) //IL_1b14: Unknown result type (might be due to invalid IL or missing references) //IL_1b19: Unknown result type (might be due to invalid IL or missing references) //IL_1b1f: Unknown result type (might be due to invalid IL or missing references) //IL_1b24: Unknown result type (might be due to invalid IL or missing references) //IL_1b2a: Unknown result type (might be due to invalid IL or missing references) //IL_1b2f: Unknown result type (might be due to invalid IL or missing references) //IL_1b35: Unknown result type (might be due to invalid IL or missing references) //IL_1b3f: Unknown result type (might be due to invalid IL or missing references) //IL_1b44: Unknown result type (might be due to invalid IL or missing references) //IL_1b4a: Unknown result type (might be due to invalid IL or missing references) //IL_1b54: Unknown result type (might be due to invalid IL or missing references) //IL_1b59: Unknown result type (might be due to invalid IL or missing references) //IL_1b5f: Unknown result type (might be due to invalid IL or missing references) //IL_1b64: Unknown result type (might be due to invalid IL or missing references) //IL_1b6a: Unknown result type (might be due to invalid IL or missing references) //IL_1b6f: Unknown result type (might be due to invalid IL or missing references) //IL_1b74: Unknown result type (might be due to invalid IL or missing references) //IL_1b84: Unknown result type (might be due to invalid IL or missing references) //IL_1b8a: Unknown result type (might be due to invalid IL or missing references) //IL_1b8f: Unknown result type (might be due to invalid IL or missing references) //IL_1b95: Unknown result type (might be due to invalid IL or missing references) //IL_1b9f: Unknown result type (might be due to invalid IL or missing references) //IL_1ba4: Unknown result type (might be due to invalid IL or missing references) //IL_1baa: Unknown result type (might be due to invalid IL or missing references) //IL_1bb4: Unknown result type (might be due to invalid IL or missing references) //IL_1bb9: Unknown result type (might be due to invalid IL or missing references) //IL_1bbf: Unknown result type (might be due to invalid IL or missing references) //IL_1bc4: Unknown result type (might be due to invalid IL or missing references) //IL_1bca: Unknown result type (might be due to invalid IL or missing references) //IL_1bcf: Unknown result type (might be due to invalid IL or missing references) //IL_1bd5: Unknown result type (might be due to invalid IL or missing references) //IL_1bda: Unknown result type (might be due to invalid IL or missing references) //IL_1be5: Unknown result type (might be due to invalid IL or missing references) //IL_1beb: Unknown result type (might be due to invalid IL or missing references) //IL_1bf0: Unknown result type (might be due to invalid IL or missing references) //IL_1bf6: Unknown result type (might be due to invalid IL or missing references) //IL_1c00: Unknown result type (might be due to invalid IL or missing references) //IL_1c05: Unknown result type (might be due to invalid IL or missing references) //IL_1c0b: Unknown result type (might be due to invalid IL or missing references) //IL_1c10: Unknown result type (might be due to invalid IL or missing references) //IL_1c16: Unknown result type (might be due to invalid IL or missing references) //IL_1c20: Unknown result type (might be due to invalid IL or missing references) //IL_1c25: Unknown result type (might be due to invalid IL or missing references) //IL_1c2b: Unknown result type (might be due to invalid IL or missing references) //IL_1c30: Unknown result type (might be due to invalid IL or missing references) //IL_1c36: Unknown result type (might be due to invalid IL or missing references) //IL_1c3b: Unknown result type (might be due to invalid IL or missing references) //IL_1c40: Unknown result type (might be due to invalid IL or missing references) //IL_1c50: Unknown result type (might be due to invalid IL or missing references) //IL_1c56: Unknown result type (might be due to invalid IL or missing references) //IL_1c5b: Unknown result type (might be due to invalid IL or missing references) //IL_1c61: Unknown result type (might be due to invalid IL or missing references) //IL_1c6b: Unknown result type (might be due to invalid IL or missing references) //IL_1c70: Unknown result type (might be due to invalid IL or missing references) //IL_1c76: Unknown result type (might be due to invalid IL or missing references) //IL_1c80: Unknown result type (might be due to invalid IL or missing references) //IL_1c85: Unknown result type (might be due to invalid IL or missing references) //IL_1c8b: Unknown result type (might be due to invalid IL or missing references) //IL_1c90: Unknown result type (might be due to invalid IL or missing references) //IL_1c96: Unknown result type (might be due to invalid IL or missing references) //IL_1c9b: Unknown result type (might be due to invalid IL or missing references) //IL_1ca1: Unknown result type (might be due to invalid IL or missing references) //IL_1ca6: Unknown result type (might be due to invalid IL or missing references) //IL_1cb1: Unknown result type (might be due to invalid IL or missing references) //IL_1cb7: Unknown result type (might be due to invalid IL or missing references) //IL_1cbc: Unknown result type (might be due to invalid IL or missing references) //IL_1cc2: Unknown result type (might be due to invalid IL or missing references) //IL_1ccc: Unknown result type (might be due to invalid IL or missing references) //IL_1cd1: Unknown result type (might be due to invalid IL or missing references) //IL_1cd7: Unknown result type (might be due to invalid IL or missing references) //IL_1ce1: Unknown result type (might be due to invalid IL or missing references) //IL_1ce6: Unknown result type (might be due to invalid IL or missing references) //IL_1cec: Unknown result type (might be due to invalid IL or missing references) //IL_1cf1: Unknown result type (might be due to invalid IL or missing references) //IL_1cf7: Unknown result type (might be due to invalid IL or missing references) //IL_1cfc: Unknown result type (might be due to invalid IL or missing references) //IL_1d02: Unknown result type (might be due to invalid IL or missing references) //IL_1d07: Unknown result type (might be due to invalid IL or missing references) //IL_1d0c: Unknown result type (might be due to invalid IL or missing references) //IL_1d1c: Unknown result type (might be due to invalid IL or missing references) //IL_1d22: Unknown result type (might be due to invalid IL or missing references) //IL_1d27: Unknown result type (might be due to invalid IL or missing references) //IL_1d2d: Unknown result type (might be due to invalid IL or missing references) //IL_1d32: Unknown result type (might be due to invalid IL or missing references) //IL_1d38: Unknown result type (might be due to invalid IL or missing references) //IL_1d3d: Unknown result type (might be due to invalid IL or missing references) //IL_1d43: Unknown result type (might be due to invalid IL or missing references) //IL_1d4d: Unknown result type (might be due to invalid IL or missing references) //IL_1d52: Unknown result type (might be due to invalid IL or missing references) //IL_1d58: Unknown result type (might be due to invalid IL or missing references) //IL_1d62: Unknown result type (might be due to invalid IL or missing references) //IL_1d67: Unknown result type (might be due to invalid IL or missing references) //IL_1d6d: Unknown result type (might be due to invalid IL or missing references) //IL_1d77: Unknown result type (might be due to invalid IL or missing references) //IL_1d7c: Unknown result type (might be due to invalid IL or missing references) //IL_1d82: Unknown result type (might be due to invalid IL or missing references) //IL_1d87: Unknown result type (might be due to invalid IL or missing references) //IL_1d8d: Unknown result type (might be due to invalid IL or missing references) //IL_1d92: Unknown result type (might be due to invalid IL or missing references) //IL_1d9d: Unknown result type (might be due to invalid IL or missing references) //IL_1da3: Unknown result type (might be due to invalid IL or missing references) //IL_1da8: Unknown result type (might be due to invalid IL or missing references) //IL_1dae: Unknown result type (might be due to invalid IL or missing references) //IL_1db3: Unknown result type (might be due to invalid IL or missing references) //IL_1db9: Unknown result type (might be due to invalid IL or missing references) //IL_1dbe: Unknown result type (might be due to invalid IL or missing references) //IL_1dc4: Unknown result type (might be due to invalid IL or missing references) //IL_1dce: Unknown result type (might be due to invalid IL or missing references) //IL_1dd3: Unknown result type (might be due to invalid IL or missing references) //IL_1dd9: Unknown result type (might be due to invalid IL or missing references) //IL_1dde: Unknown result type (might be due to invalid IL or missing references) //IL_1de4: Unknown result type (might be due to invalid IL or missing references) //IL_1dee: Unknown result type (might be due to invalid IL or missing references) //IL_1df3: Unknown result type (might be due to invalid IL or missing references) //IL_1df9: Unknown result type (might be due to invalid IL or missing references) //IL_1e03: Unknown result type (might be due to invalid IL or missing references) //IL_1e08: Unknown result type (might be due to invalid IL or missing references) //IL_1e0e: Unknown result type (might be due to invalid IL or missing references) //IL_1e13: Unknown result type (might be due to invalid IL or missing references) //IL_1e18: Unknown result type (might be due to invalid IL or missing references) //IL_1e28: Unknown result type (might be due to invalid IL or missing references) //IL_1e2e: Unknown result type (might be due to invalid IL or missing references) //IL_1e33: Unknown result type (might be due to invalid IL or missing references) //IL_1e39: Unknown result type (might be due to invalid IL or missing references) //IL_1e3e: Unknown result type (might be due to invalid IL or missing references) //IL_1e44: Unknown result type (might be due to invalid IL or missing references) //IL_1e49: Unknown result type (might be due to invalid IL or missing references) //IL_1e4f: Unknown result type (might be due to invalid IL or missing references) //IL_1e59: Unknown result type (might be due to invalid IL or missing references) //IL_1e5e: Unknown result type (might be due to invalid IL or missing references) //IL_1e64: Unknown result type (might be due to invalid IL or missing references) //IL_1e6e: Unknown result type (might be due to invalid IL or missing references) //IL_1e73: Unknown result type (might be due to invalid IL or missing references) //IL_1e79: Unknown result type (might be due to invalid IL or missing references) //IL_1e83: Unknown result type (might be due to invalid IL or missing references) //IL_1e88: Unknown result type (might be due to invalid IL or missing references) //IL_1e8e: Unknown result type (might be due to invalid IL or missing references) //IL_1e93: Unknown result type (might be due to invalid IL or missing references) //IL_1e99: Unknown result type (might be due to invalid IL or missing references) //IL_1e9e: Unknown result type (might be due to invalid IL or missing references) //IL_1ea9: Unknown result type (might be due to invalid IL or missing references) //IL_1eaf: Unknown result type (might be due to invalid IL or missing references) //IL_1eb4: Unknown result type (might be due to invalid IL or missing references) //IL_1eba: Unknown result type (might be due to invalid IL or missing references) //IL_1ebf: Unknown result type (might be due to invalid IL or missing references) //IL_1ec5: Unknown result type (might be due to invalid IL or missing references) //IL_1eca: Unknown result type (might be due to invalid IL or missing references) //IL_1ed0: Unknown result type (might be due to invalid IL or missing references) //IL_1eda: Unknown result type (might be due to invalid IL or missing references) //IL_1edf: Unknown result type (might be due to invalid IL or missing references) //IL_1ee5: Unknown result type (might be due to invalid IL or missing references) //IL_1eef: Unknown result type (might be due to invalid IL or missing references) //IL_1ef4: Unknown result type (might be due to invalid IL or missing references) //IL_1efa: Unknown result type (might be due to invalid IL or missing references) //IL_1f04: Unknown result type (might be due to invalid IL or missing references) //IL_1f09: Unknown result type (might be due to invalid IL or missing references) //IL_1f0f: Unknown result type (might be due to invalid IL or missing references) //IL_1f14: Unknown result type (might be due to invalid IL or missing references) //IL_1f1a: Unknown result type (might be due to invalid IL or missing references) //IL_1f1f: Unknown result type (might be due to invalid IL or missing references) //IL_1f24: Unknown result type (might be due to invalid IL or missing references) //IL_1f34: Unknown result type (might be due to invalid IL or missing references) //IL_1f3a: Unknown result type (might be due to invalid IL or missing references) //IL_1f3f: Unknown result type (might be due to invalid IL or missing references) //IL_1f45: Unknown result type (might be due to invalid IL or missing references) //IL_1f4f: Unknown result type (might be due to invalid IL or missing references) //IL_1f54: Unknown result type (might be due to invalid IL or missing references) //IL_1f5a: Unknown result type (might be due to invalid IL or missing references) //IL_1f64: Unknown result type (might be due to invalid IL or missing references) //IL_1f69: Unknown result type (might be due to invalid IL or missing references) //IL_1f6f: Unknown result type (might be due to invalid IL or missing references) //IL_1f79: Unknown result type (might be due to invalid IL or missing references) //IL_1f7e: Unknown result type (might be due to invalid IL or missing references) //IL_1f84: Unknown result type (might be due to invalid IL or missing references) //IL_1f89: Unknown result type (might be due to invalid IL or missing references) //IL_1f8f: Unknown result type (might be due to invalid IL or missing references) //IL_1f94: Unknown result type (might be due to invalid IL or missing references) //IL_1f9a: Unknown result type (might be due to invalid IL or missing references) //IL_1f9f: Unknown result type (might be due to invalid IL or missing references) //IL_1faa: Unknown result type (might be due to invalid IL or missing references) //IL_1fb0: Unknown result type (might be due to invalid IL or missing references) //IL_1fb5: Unknown result type (might be due to invalid IL or missing references) //IL_1fbb: Unknown result type (might be due to invalid IL or missing references) //IL_1fc5: Unknown result type (might be due to invalid IL or missing references) //IL_1fca: Unknown result type (might be due to invalid IL or missing references) //IL_1fd0: Unknown result type (might be due to invalid IL or missing references) //IL_1fd5: Unknown result type (might be due to invalid IL or missing references) //IL_1fdb: Unknown result type (might be due to invalid IL or missing references) //IL_1fe5: Unknown result type (might be due to invalid IL or missing references) //IL_1fea: Unknown result type (might be due to invalid IL or missing references) //IL_1ff0: Unknown result type (might be due to invalid IL or missing references) //IL_1ffa: Unknown result type (might be due to invalid IL or missing references) //IL_1fff: Unknown result type (might be due to invalid IL or missing references) //IL_2005: Unknown result type (might be due to invalid IL or missing references) //IL_200a: Unknown result type (might be due to invalid IL or missing references) //IL_2010: Unknown result type (might be due to invalid IL or missing references) //IL_2015: Unknown result type (might be due to invalid IL or missing references) //IL_201a: Unknown result type (might be due to invalid IL or missing references) //IL_202a: Unknown result type (might be due to invalid IL or missing references) //IL_2030: Unknown result type (might be due to invalid IL or missing references) //IL_2035: Unknown result type (might be due to invalid IL or missing references) //IL_203b: Unknown result type (might be due to invalid IL or missing references) //IL_2045: Unknown result type (might be due to invalid IL or missing references) //IL_204a: Unknown result type (might be due to invalid IL or missing references) //IL_2050: Unknown result type (might be due to invalid IL or missing references) //IL_205a: Unknown result type (might be due to invalid IL or missing references) //IL_205f: Unknown result type (might be due to invalid IL or missing references) //IL_2065: Unknown result type (might be due to invalid IL or missing references) //IL_206f: Unknown result type (might be due to invalid IL or missing references) //IL_2074: Unknown result type (might be due to invalid IL or missing references) //IL_207a: Unknown result type (might be due to invalid IL or missing references) //IL_207f: Unknown result type (might be due to invalid IL or missing references) //IL_2085: Unknown result type (might be due to invalid IL or missing references) //IL_208a: Unknown result type (might be due to invalid IL or missing references) //IL_2090: Unknown result type (might be due to invalid IL or missing references) //IL_2095: Unknown result type (might be due to invalid IL or missing references) //IL_20a0: Unknown result type (might be due to invalid IL or missing references) //IL_20a6: Unknown result type (might be due to invalid IL or missing references) //IL_20ab: Unknown result type (might be due to invalid IL or missing references) //IL_20b1: Unknown result type (might be due to invalid IL or missing references) //IL_20bb: Unknown result type (might be due to invalid IL or missing references) //IL_20c0: Unknown result type (might be due to invalid IL or missing references) //IL_20c6: Unknown result type (might be due to invalid IL or missing references) //IL_20d0: Unknown result type (might be due to invalid IL or missing references) //IL_20d5: Unknown result type (might be due to invalid IL or missing references) //IL_20db: Unknown result type (might be due to invalid IL or missing references) //IL_20e5: Unknown result type (might be due to invalid IL or missing references) //IL_20ea: Unknown result type (might be due to invalid IL or missing references) //IL_20f0: Unknown result type (might be due to invalid IL or missing references) //IL_20f5: Unknown result type (might be due to invalid IL or missing references) //IL_20fb: Unknown result type (might be due to invalid IL or missing references) //IL_2100: Unknown result type (might be due to invalid IL or missing references) //IL_2106: Unknown result type (might be due to invalid IL or missing references) //IL_210b: Unknown result type (might be due to invalid IL or missing references) //IL_2110: Unknown result type (might be due to invalid IL or missing references) //IL_2120: Unknown result type (might be due to invalid IL or missing references) //IL_2126: Unknown result type (might be due to invalid IL or missing references) //IL_212b: Unknown result type (might be due to invalid IL or missing references) //IL_2131: Unknown result type (might be due to invalid IL or missing references) //IL_2136: Unknown result type (might be due to invalid IL or missing references) //IL_213c: Unknown result type (might be due to invalid IL or missing references) //IL_2141: Unknown result type (might be due to invalid IL or missing references) //IL_2147: Unknown result type (might be due to invalid IL or missing references) //IL_2151: Unknown result type (might be due to invalid IL or missing references) //IL_2156: Unknown result type (might be due to invalid IL or missing references) //IL_215c: Unknown result type (might be due to invalid IL or missing references) //IL_2166: Unknown result type (might be due to invalid IL or missing references) //IL_216b: Unknown result type (might be due to invalid IL or missing references) //IL_2171: Unknown result type (might be due to invalid IL or missing references) //IL_217b: Unknown result type (might be due to invalid IL or missing references) //IL_2180: Unknown result type (might be due to invalid IL or missing references) //IL_2186: Unknown result type (might be due to invalid IL or missing references) //IL_218b: Unknown result type (might be due to invalid IL or missing references) //IL_2191: Unknown result type (might be due to invalid IL or missing references) //IL_2196: Unknown result type (might be due to invalid IL or missing references) //IL_21a1: Unknown result type (might be due to invalid IL or missing references) //IL_21a7: Unknown result type (might be due to invalid IL or missing references) //IL_21ac: Unknown result type (might be due to invalid IL or missing references) //IL_21b2: Unknown result type (might be due to invalid IL or missing references) //IL_21b7: Unknown result type (might be due to invalid IL or missing references) //IL_21bd: Unknown result type (might be due to invalid IL or missing references) //IL_21c2: Unknown result type (might be due to invalid IL or missing references) //IL_21c8: Unknown result type (might be due to invalid IL or missing references) //IL_21d2: Unknown result type (might be due to invalid IL or missing references) //IL_21d7: Unknown result type (might be due to invalid IL or missing references) //IL_21dd: Unknown result type (might be due to invalid IL or missing references) //IL_21e2: Unknown result type (might be due to invalid IL or missing references) //IL_21e8: Unknown result type (might be due to invalid IL or missing references) //IL_21f2: Unknown result type (might be due to invalid IL or missing references) //IL_21f7: Unknown result type (might be due to invalid IL or missing references) //IL_21fd: Unknown result type (might be due to invalid IL or missing references) //IL_2207: Unknown result type (might be due to invalid IL or missing references) //IL_220c: Unknown result type (might be due to invalid IL or missing references) //IL_2212: Unknown result type (might be due to invalid IL or missing references) //IL_2217: Unknown result type (might be due to invalid IL or missing references) //IL_221c: Unknown result type (might be due to invalid IL or missing references) //IL_222c: Unknown result type (might be due to invalid IL or missing references) //IL_2232: Unknown result type (might be due to invalid IL or missing references) //IL_2237: Unknown result type (might be due to invalid IL or missing references) //IL_223d: Unknown result type (might be due to invalid IL or missing references) //IL_2242: Unknown result type (might be due to invalid IL or missing references) //IL_2248: Unknown result type (might be due to invalid IL or missing references) //IL_224d: Unknown result type (might be due to invalid IL or missing references) //IL_2253: Unknown result type (might be due to invalid IL or missing references) //IL_225d: Unknown result type (might be due to invalid IL or missing references) //IL_2262: Unknown result type (might be due to invalid IL or missing references) //IL_2268: Unknown result type (might be due to invalid IL or missing references) //IL_2272: Unknown result type (might be due to invalid IL or missing references) //IL_2277: Unknown result type (might be due to invalid IL or missing references) //IL_227d: Unknown result type (might be due to invalid IL or missing references) //IL_2287: Unknown result type (might be due to invalid IL or missing references) //IL_228c: Unknown result type (might be due to invalid IL or missing references) //IL_2292: Unknown result type (might be due to invalid IL or missing references) //IL_2297: Unknown result type (might be due to invalid IL or missing references) //IL_229d: Unknown result type (might be due to invalid IL or missing references) //IL_22a2: Unknown result type (might be due to invalid IL or missing references) //IL_22ad: Unknown result type (might be due to invalid IL or missing references) //IL_22b3: Unknown result type (might be due to invalid IL or missing references) //IL_22b8: Unknown result type (might be due to invalid IL or missing references) //IL_22be: Unknown result type (might be due to invalid IL or missing references) //IL_22c3: Unknown result type (might be due to invalid IL or missing references) //IL_22c9: Unknown result type (might be due to invalid IL or missing references) //IL_22ce: Unknown result type (might be due to invalid IL or missing references) //IL_22d4: Unknown result type (might be due to invalid IL or missing references) //IL_22de: Unknown result type (might be due to invalid IL or missing references) //IL_22e3: Unknown result type (might be due to invalid IL or missing references) //IL_22e9: Unknown result type (might be due to invalid IL or missing references) //IL_22f3: Unknown result type (might be due to invalid IL or missing references) //IL_22f8: Unknown result type (might be due to invalid IL or missing references) //IL_22fe: Unknown result type (might be due to invalid IL or missing references) //IL_2308: Unknown result type (might be due to invalid IL or missing references) //IL_230d: Unknown result type (might be due to invalid IL or missing references) //IL_2313: Unknown result type (might be due to invalid IL or missing references) //IL_2318: Unknown result type (might be due to invalid IL or missing references) //IL_231e: Unknown result type (might be due to invalid IL or missing references) //IL_2323: Unknown result type (might be due to invalid IL or missing references) //IL_2328: Unknown result type (might be due to invalid IL or missing references) //IL_2338: Unknown result type (might be due to invalid IL or missing references) //IL_233e: Unknown result type (might be due to invalid IL or missing references) //IL_2343: Unknown result type (might be due to invalid IL or missing references) //IL_2349: Unknown result type (might be due to invalid IL or missing references) //IL_2353: Unknown result type (might be due to invalid IL or missing references) //IL_2358: Unknown result type (might be due to invalid IL or missing references) //IL_235e: Unknown result type (might be due to invalid IL or missing references) //IL_2368: Unknown result type (might be due to invalid IL or missing references) //IL_236d: Unknown result type (might be due to invalid IL or missing references) //IL_2373: Unknown result type (might be due to invalid IL or missing references) //IL_237d: Unknown result type (might be due to invalid IL or missing references) //IL_2382: Unknown result type (might be due to invalid IL or missing references) //IL_2388: Unknown result type (might be due to invalid IL or missing references) //IL_238d: Unknown result type (might be due to invalid IL or missing references) //IL_2393: Unknown result type (might be due to invalid IL or missing references) //IL_2398: Unknown result type (might be due to invalid IL or missing references) //IL_239e: Unknown result type (might be due to invalid IL or missing references) //IL_23a3: Unknown result type (might be due to invalid IL or missing references) //IL_23ae: Unknown result type (might be due to invalid IL or missing references) //IL_23b4: Unknown result type (might be due to invalid IL or missing references) //IL_23b9: Unknown result type (might be due to invalid IL or missing references) //IL_23bf: Unknown result type (might be due to invalid IL or missing references) //IL_23c9: Unknown result type (might be due to invalid IL or missing references) //IL_23ce: Unknown result type (might be due to invalid IL or missing references) //IL_23d4: Unknown result type (might be due to invalid IL or missing references) //IL_23d9: Unknown result type (might be due to invalid IL or missing references) //IL_23df: Unknown result type (might be due to invalid IL or missing references) //IL_23e9: Unknown result type (might be due to invalid IL or missing references) //IL_23ee: Unknown result type (might be due to invalid IL or missing references) //IL_23f4: Unknown result type (might be due to invalid IL or missing references) //IL_23fe: Unknown result type (might be due to invalid IL or missing references) //IL_2403: Unknown result type (might be due to invalid IL or missing references) //IL_2409: Unknown result type (might be due to invalid IL or missing references) //IL_240e: Unknown result type (might be due to invalid IL or missing references) //IL_2414: Unknown result type (might be due to invalid IL or missing references) //IL_2419: Unknown result type (might be due to invalid IL or missing references) //IL_241e: Unknown result type (might be due to invalid IL or missing references) //IL_242e: Unknown result type (might be due to invalid IL or missing references) //IL_2434: Unknown result type (might be due to invalid IL or missing references) //IL_2439: Unknown result type (might be due to invalid IL or missing references) //IL_243f: Unknown result type (might be due to invalid IL or missing references) //IL_2449: Unknown result type (might be due to invalid IL or missing references) //IL_244e: Unknown result type (might be due to invalid IL or missing references) //IL_2454: Unknown result type (might be due to invalid IL or missing references) //IL_245e: Unknown result type (might be due to invalid IL or missing references) //IL_2463: Unknown result type (might be due to invalid IL or missing references) //IL_2469: Unknown result type (might be due to invalid IL or missing references) //IL_2473: Unknown result type (might be due to invalid IL or missing references) //IL_2478: Unknown result type (might be due to invalid IL or missing references) //IL_247e: Unknown result type (might be due to invalid IL or missing references) //IL_2483: Unknown result type (might be due to invalid IL or missing references) //IL_2489: Unknown result type (might be due to invalid IL or missing references) //IL_248e: Unknown result type (might be due to invalid IL or missing references) //IL_2494: Unknown result type (might be due to invalid IL or missing references) //IL_2499: Unknown result type (might be due to invalid IL or missing references) //IL_24a4: Unknown result type (might be due to invalid IL or missing references) //IL_24aa: Unknown result type (might be due to invalid IL or missing references) //IL_24af: Unknown result type (might be due to invalid IL or missing references) //IL_24b5: Unknown result type (might be due to invalid IL or missing references) //IL_24bf: Unknown result type (might be due to invalid IL or missing references) //IL_24c4: Unknown result type (might be due to invalid IL or missing references) //IL_24ca: Unknown result type (might be due to invalid IL or missing references) //IL_24d4: Unknown result type (might be due to invalid IL or missing references) //IL_24d9: Unknown result type (might be due to invalid IL or missing references) //IL_24df: Unknown result type (might be due to invalid IL or missing references) //IL_24e9: Unknown result type (might be due to invalid IL or missing references) //IL_24ee: Unknown result type (might be due to invalid IL or missing references) //IL_24f4: Unknown result type (might be due to invalid IL or missing references) //IL_24f9: Unknown result type (might be due to invalid IL or missing references) //IL_24ff: Unknown result type (might be due to invalid IL or missing references) //IL_2504: Unknown result type (might be due to invalid IL or missing references) //IL_250a: Unknown result type (might be due to invalid IL or missing references) //IL_250f: Unknown result type (might be due to invalid IL or missing references) //IL_2514: Unknown result type (might be due to invalid IL or missing references) //IL_2524: Unknown result type (might be due to invalid IL or missing references) //IL_252a: Unknown result type (might be due to invalid IL or missing references) //IL_252f: Unknown result type (might be due to invalid IL or missing references) //IL_2535: Unknown result type (might be due to invalid IL or missing references) //IL_253a: Unknown result type (might be due to invalid IL or missing references) //IL_2540: Unknown result type (might be due to invalid IL or missing references) //IL_2545: Unknown result type (might be due to invalid IL or missing references) //IL_254b: Unknown result type (might be due to invalid IL or missing references) //IL_2555: Unknown result type (might be due to invalid IL or missing references) //IL_255a: Unknown result type (might be due to invalid IL or missing references) //IL_2560: Unknown result type (might be due to invalid IL or missing references) //IL_256a: Unknown result type (might be due to invalid IL or missing references) //IL_256f: Unknown result type (might be due to invalid IL or missing references) //IL_2575: Unknown result type (might be due to invalid IL or missing references) //IL_257f: Unknown result type (might be due to invalid IL or missing references) //IL_2584: Unknown result type (might be due to invalid IL or missing references) //IL_258a: Unknown result type (might be due to invalid IL or missing references) //IL_258f: Unknown result type (might be due to invalid IL or missing references) //IL_2595: Unknown result type (might be due to invalid IL or missing references) //IL_259a: Unknown result type (might be due to invalid IL or missing references) //IL_25a5: Unknown result type (might be due to invalid IL or missing references) //IL_25ab: Unknown result type (might be due to invalid IL or missing references) //IL_25b0: Unknown result type (might be due to invalid IL or missing references) //IL_25b6: Unknown result type (might be due to invalid IL or missing references) //IL_25bb: Unknown result type (might be due to invalid IL or missing references) //IL_25c1: Unknown result type (might be due to invalid IL or missing references) //IL_25c6: Unknown result type (might be due to invalid IL or missing references) //IL_25cc: Unknown result type (might be due to invalid IL or missing references) //IL_25d6: Unknown result type (might be due to invalid IL or missing references) //IL_25db: Unknown result type (might be due to invalid IL or missing references) //IL_25e1: Unknown result type (might be due to invalid IL or missing references) //IL_25e6: Unknown result type (might be due to invalid IL or missing references) //IL_25ec: Unknown result type (might be due to invalid IL or missing references) //IL_25f6: Unknown result type (might be due to invalid IL or missing references) //IL_25fb: Unknown result type (might be due to invalid IL or missing references) //IL_2601: Unknown result type (might be due to invalid IL or missing references) //IL_260b: Unknown result type (might be due to invalid IL or missing references) //IL_2610: Unknown result type (might be due to invalid IL or missing references) //IL_2616: Unknown result type (might be due to invalid IL or missing references) //IL_261b: Unknown result type (might be due to invalid IL or missing references) //IL_2620: Unknown result type (might be due to invalid IL or missing references) //IL_2630: Unknown result type (might be due to invalid IL or missing references) //IL_2636: Unknown result type (might be due to invalid IL or missing references) //IL_263b: Unknown result type (might be due to invalid IL or missing references) //IL_2641: Unknown result type (might be due to invalid IL or missing references) //IL_2646: Unknown result type (might be due to invalid IL or missing references) //IL_264c: Unknown result type (might be due to invalid IL or missing references) //IL_2651: Unknown result type (might be due to invalid IL or missing references) //IL_2657: Unknown result type (might be due to invalid IL or missing references) //IL_2661: Unknown result type (might be due to invalid IL or missing references) //IL_2666: Unknown result type (might be due to invalid IL or missing references) //IL_266c: Unknown result type (might be due to invalid IL or missing references) //IL_2676: Unknown result type (might be due to invalid IL or missing references) //IL_267b: Unknown result type (might be due to invalid IL or missing references) //IL_2681: Unknown result type (might be due to invalid IL or missing references) //IL_268b: Unknown result type (might be due to invalid IL or missing references) //IL_2690: Unknown result type (might be due to invalid IL or missing references) //IL_2696: Unknown result type (might be due to invalid IL or missing references) //IL_269b: Unknown result type (might be due to invalid IL or missing references) //IL_26a1: Unknown result type (might be due to invalid IL or missing references) //IL_26a6: Unknown result type (might be due to invalid IL or missing references) //IL_26b1: Unknown result type (might be due to invalid IL or missing references) //IL_26b7: Unknown result type (might be due to invalid IL or missing references) //IL_26bc: Unknown result type (might be due to invalid IL or missing references) //IL_26c2: Unknown result type (might be due to invalid IL or missing references) //IL_26c7: Unknown result type (might be due to invalid IL or missing references) //IL_26cd: Unknown result type (might be due to invalid IL or missing references) //IL_26d2: Unknown result type (might be due to invalid IL or missing references) //IL_26d8: Unknown result type (might be due to invalid IL or missing references) //IL_26e2: Unknown result type (might be due to invalid IL or missing references) //IL_26e7: Unknown result type (might be due to invalid IL or missing references) //IL_26ed: Unknown result type (might be due to invalid IL or missing references) //IL_26f7: Unknown result type (might be due to invalid IL or missing references) //IL_26fc: Unknown result type (might be due to invalid IL or missing references) //IL_2702: Unknown result type (might be due to invalid IL or missing references) //IL_270c: Unknown result type (might be due to invalid IL or missing references) //IL_2711: Unknown result type (might be due to invalid IL or missing references) //IL_2717: Unknown result type (might be due to invalid IL or missing references) //IL_271c: Unknown result type (might be due to invalid IL or missing references) //IL_2722: Unknown result type (might be due to invalid IL or missing references) //IL_2727: Unknown result type (might be due to invalid IL or missing references) //IL_272c: Unknown result type (might be due to invalid IL or missing references) //IL_273c: Unknown result type (might be due to invalid IL or missing references) //IL_2742: Unknown result type (might be due to invalid IL or missing references) //IL_2747: Unknown result type (might be due to invalid IL or missing references) //IL_274d: Unknown result type (might be due to invalid IL or missing references) //IL_2757: Unknown result type (might be due to invalid IL or missing references) //IL_275c: Unknown result type (might be due to invalid IL or missing references) //IL_2762: Unknown result type (might be due to invalid IL or missing references) //IL_276c: Unknown result type (might be due to invalid IL or missing references) //IL_2771: Unknown result type (might be due to invalid IL or missing references) //IL_2777: Unknown result type (might be due to invalid IL or missing references) //IL_2781: Unknown result type (might be due to invalid IL or missing references) //IL_2786: Unknown result type (might be due to invalid IL or missing references) //IL_278c: Unknown result type (might be due to invalid IL or missing references) //IL_2791: Unknown result type (might be due to invalid IL or missing references) //IL_2797: Unknown result type (might be due to invalid IL or missing references) //IL_279c: Unknown result type (might be due to invalid IL or missing references) //IL_27a2: Unknown result type (might be due to invalid IL or missing references) //IL_27a7: Unknown result type (might be due to invalid IL or missing references) //IL_27b2: Unknown result type (might be due to invalid IL or missing references) //IL_27b8: Unknown result type (might be due to invalid IL or missing references) //IL_27bd: Unknown result type (might be due to invalid IL or missing references) //IL_27c3: Unknown result type (might be due to invalid IL or missing references) //IL_27cd: Unknown result type (might be due to invalid IL or missing references) //IL_27d2: Unknown result type (might be due to invalid IL or missing references) //IL_27d8: Unknown result type (might be due to invalid IL or missing references) //IL_27dd: Unknown result type (might be due to invalid IL or missing references) //IL_27e3: Unknown result type (might be due to invalid IL or missing references) //IL_27ed: Unknown result type (might be due to invalid IL or missing references) //IL_27f2: Unknown result type (might be due to invalid IL or missing references) //IL_27f8: Unknown result type (might be due to invalid IL or missing references) //IL_2802: Unknown result type (might be due to invalid IL or missing references) //IL_2807: Unknown result type (might be due to invalid IL or missing references) //IL_280d: Unknown result type (might be due to invalid IL or missing references) //IL_2812: Unknown result type (might be due to invalid IL or missing references) //IL_2818: Unknown result type (might be due to invalid IL or missing references) //IL_281d: Unknown result type (might be due to invalid IL or missing references) //IL_2822: Unknown result type (might be due to invalid IL or missing references) //IL_2832: Unknown result type (might be due to invalid IL or missing references) //IL_2838: Unknown result type (might be due to invalid IL or missing references) //IL_283d: Unknown result type (might be due to invalid IL or missing references) //IL_2843: Unknown result type (might be due to invalid IL or missing references) //IL_284d: Unknown result type (might be due to invalid IL or missing references) //IL_2852: Unknown result type (might be due to invalid IL or missing references) //IL_2858: Unknown result type (might be due to invalid IL or missing references) //IL_2862: Unknown result type (might be due to invalid IL or missing references) //IL_2867: Unknown result type (might be due to invalid IL or missing references) //IL_286d: Unknown result type (might be due to invalid IL or missing references) //IL_2877: Unknown result type (might be due to invalid IL or missing references) //IL_287c: Unknown result type (might be due to invalid IL or missing references) //IL_2882: Unknown result type (might be due to invalid IL or missing references) //IL_2887: Unknown result type (might be due to invalid IL or missing references) //IL_288d: Unknown result type (might be due to invalid IL or missing references) //IL_2892: Unknown result type (might be due to invalid IL or missing references) //IL_2898: Unknown result type (might be due to invalid IL or missing references) //IL_289d: Unknown result type (might be due to invalid IL or missing references) //IL_28a8: Unknown result type (might be due to invalid IL or missing references) //IL_28ae: Unknown result type (might be due to invalid IL or missing references) //IL_28b3: Unknown result type (might be due to invalid IL or missing references) //IL_28b9: Unknown result type (might be due to invalid IL or missing references) //IL_28c3: Unknown result type (might be due to invalid IL or missing references) //IL_28c8: Unknown result type (might be due to invalid IL or missing references) //IL_28ce: Unknown result type (might be due to invalid IL or missing references) //IL_28d8: Unknown result type (might be due to invalid IL or missing references) //IL_28dd: Unknown result type (might be due to invalid IL or missing references) //IL_28e3: Unknown result type (might be due to invalid IL or missing references) //IL_28ed: Unknown result type (might be due to invalid IL or missing references) //IL_28f2: Unknown result type (might be due to invalid IL or missing references) //IL_28f8: Unknown result type (might be due to invalid IL or missing references) //IL_28fd: Unknown result type (might be due to invalid IL or missing references) //IL_2903: Unknown result type (might be due to invalid IL or missing references) //IL_2908: Unknown result type (might be due to invalid IL or missing references) //IL_290e: Unknown result type (might be due to invalid IL or missing references) //IL_2913: Unknown result type (might be due to invalid IL or missing references) //IL_2918: Unknown result type (might be due to invalid IL or missing references) //IL_2928: Unknown result type (might be due to invalid IL or missing references) //IL_292e: Unknown result type (might be due to invalid IL or missing references) //IL_2933: Unknown result type (might be due to invalid IL or missing references) //IL_2939: Unknown result type (might be due to invalid IL or missing references) //IL_293e: Unknown result type (might be due to invalid IL or missing references) //IL_2944: Unknown result type (might be due to invalid IL or missing references) //IL_2949: Unknown result type (might be due to invalid IL or missing references) //IL_294f: Unknown result type (might be due to invalid IL or missing references) //IL_2959: Unknown result type (might be due to invalid IL or missing references) //IL_295e: Unknown result type (might be due to invalid IL or missing references) //IL_2964: Unknown result type (might be due to invalid IL or missing references) //IL_296e: Unknown result type (might be due to invalid IL or missing references) //IL_2973: Unknown result type (might be due to invalid IL or missing references) //IL_2979: Unknown result type (might be due to invalid IL or missing references) //IL_2983: Unknown result type (might be due to invalid IL or missing references) //IL_2988: Unknown result type (might be due to invalid IL or missing references) //IL_298e: Unknown result type (might be due to invalid IL or missing references) //IL_2993: Unknown result type (might be due to invalid IL or missing references) //IL_2999: Unknown result type (might be due to invalid IL or missing references) //IL_299e: Unknown result type (might be due to invalid IL or missing references) //IL_29a9: Unknown result type (might be due to invalid IL or missing references) //IL_29af: Unknown result type (might be due to invalid IL or missing references) //IL_29b4: Unknown result type (might be due to invalid IL or missing references) //IL_29ba: Unknown result type (might be due to invalid IL or missing references) //IL_29bf: Unknown result type (might be due to invalid IL or missing references) //IL_29c5: Unknown result type (might be due to invalid IL or missing references) //IL_29ca: Unknown result type (might be due to invalid IL or missing references) //IL_29d0: Unknown result type (might be due to invalid IL or missing references) //IL_29da: Unknown result type (might be due to invalid IL or missing references) //IL_29df: Unknown result type (might be due to invalid IL or missing references) //IL_29e5: Unknown result type (might be due to invalid IL or missing references) //IL_29ea: Unknown result type (might be due to invalid IL or missing references) //IL_29f0: Unknown result type (might be due to invalid IL or missing references) //IL_29fa: Unknown result type (might be due to invalid IL or missing references) //IL_29ff: Unknown result type (might be due to invalid IL or missing references) //IL_2a05: Unknown result type (might be due to invalid IL or missing references) //IL_2a0f: Unknown result type (might be due to invalid IL or missing references) //IL_2a14: Unknown result type (might be due to invalid IL or missing references) //IL_2a1a: Unknown result type (might be due to invalid IL or missing references) //IL_2a1f: Unknown result type (might be due to invalid IL or missing references) //IL_2a24: Unknown result type (might be due to invalid IL or missing references) //IL_2a34: Unknown result type (might be due to invalid IL or missing references) //IL_2a3a: Unknown result type (might be due to invalid IL or missing references) //IL_2a3f: Unknown result type (might be due to invalid IL or missing references) //IL_2a45: Unknown result type (might be due to invalid IL or missing references) //IL_2a4a: Unknown result type (might be due to invalid IL or missing references) //IL_2a50: Unknown result type (might be due to invalid IL or missing references) //IL_2a55: Unknown result type (might be due to invalid IL or missing references) //IL_2a5b: Unknown result type (might be due to invalid IL or missing references) //IL_2a65: Unknown result type (might be due to invalid IL or missing references) //IL_2a6a: Unknown result type (might be due to invalid IL or missing references) //IL_2a70: Unknown result type (might be due to invalid IL or missing references) //IL_2a7a: Unknown result type (might be due to invalid IL or missing references) //IL_2a7f: Unknown result type (might be due to invalid IL or missing references) //IL_2a85: Unknown result type (might be due to invalid IL or missing references) //IL_2a8f: Unknown result type (might be due to invalid IL or missing references) //IL_2a94: Unknown result type (might be due to invalid IL or missing references) //IL_2a9a: Unknown result type (might be due to invalid IL or missing references) //IL_2a9f: Unknown result type (might be due to invalid IL or missing references) //IL_2aa5: Unknown result type (might be due to invalid IL or missing references) //IL_2aaa: Unknown result type (might be due to invalid IL or missing references) //IL_2ab5: Unknown result type (might be due to invalid IL or missing references) //IL_2abb: Unknown result type (might be due to invalid IL or missing references) //IL_2ac0: Unknown result type (might be due to invalid IL or missing references) //IL_2ac6: Unknown result type (might be due to invalid IL or missing references) //IL_2acb: Unknown result type (might be due to invalid IL or missing references) //IL_2ad1: Unknown result type (might be due to invalid IL or missing references) //IL_2ad6: Unknown result type (might be due to invalid IL or missing references) //IL_2adc: Unknown result type (might be due to invalid IL or missing references) //IL_2ae6: Unknown result type (might be due to invalid IL or missing references) //IL_2aeb: Unknown result type (might be due to invalid IL or missing references) //IL_2af1: Unknown result type (might be due to invalid IL or missing references) //IL_2afb: Unknown result type (might be due to invalid IL or missing references) //IL_2b00: Unknown result type (might be due to invalid IL or missing references) //IL_2b06: Unknown result type (might be due to invalid IL or missing references) //IL_2b10: Unknown result type (might be due to invalid IL or missing references) //IL_2b15: Unknown result type (might be due to invalid IL or missing references) //IL_2b1b: Unknown result type (might be due to invalid IL or missing references) //IL_2b20: Unknown result type (might be due to invalid IL or missing references) //IL_2b26: Unknown result type (might be due to invalid IL or missing references) //IL_2b2b: Unknown result type (might be due to invalid IL or missing references) //IL_2b30: Unknown result type (might be due to invalid IL or missing references) //IL_2b40: Unknown result type (might be due to invalid IL or missing references) //IL_2b46: Unknown result type (might be due to invalid IL or missing references) //IL_2b4b: Unknown result type (might be due to invalid IL or missing references) //IL_2b51: Unknown result type (might be due to invalid IL or missing references) //IL_2b5b: Unknown result type (might be due to invalid IL or missing references) //IL_2b60: Unknown result type (might be due to invalid IL or missing references) //IL_2b66: Unknown result type (might be due to invalid IL or missing references) //IL_2b70: Unknown result type (might be due to invalid IL or missing references) //IL_2b75: Unknown result type (might be due to invalid IL or missing references) //IL_2b7b: Unknown result type (might be due to invalid IL or missing references) //IL_2b85: Unknown result type (might be due to invalid IL or missing references) //IL_2b8a: Unknown result type (might be due to invalid IL or missing references) //IL_2b90: Unknown result type (might be due to invalid IL or missing references) //IL_2b95: Unknown result type (might be due to invalid IL or missing references) //IL_2b9b: Unknown result type (might be due to invalid IL or missing references) //IL_2ba0: Unknown result type (might be due to invalid IL or missing references) //IL_2ba6: Unknown result type (might be due to invalid IL or missing references) //IL_2bab: Unknown result type (might be due to invalid IL or missing references) //IL_2bb6: Unknown result type (might be due to invalid IL or missing references) //IL_2bbc: Unknown result type (might be due to invalid IL or missing references) //IL_2bc1: Unknown result type (might be due to invalid IL or missing references) //IL_2bc7: Unknown result type (might be due to invalid IL or missing references) //IL_2bd1: Unknown result type (might be due to invalid IL or missing references) //IL_2bd6: Unknown result type (might be due to invalid IL or missing references) //IL_2bdc: Unknown result type (might be due to invalid IL or missing references) //IL_2be1: Unknown result type (might be due to invalid IL or missing references) //IL_2be7: Unknown result type (might be due to invalid IL or missing references) //IL_2bf1: Unknown result type (might be due to invalid IL or missing references) //IL_2bf6: Unknown result type (might be due to invalid IL or missing references) //IL_2bfc: Unknown result type (might be due to invalid IL or missing references) //IL_2c06: Unknown result type (might be due to invalid IL or missing references) //IL_2c0b: Unknown result type (might be due to invalid IL or missing references) //IL_2c11: Unknown result type (might be due to invalid IL or missing references) //IL_2c16: Unknown result type (might be due to invalid IL or missing references) //IL_2c1c: Unknown result type (might be due to invalid IL or missing references) //IL_2c21: Unknown result type (might be due to invalid IL or missing references) //IL_2c26: Unknown result type (might be due to invalid IL or missing references) //IL_2c36: Unknown result type (might be due to invalid IL or missing references) //IL_2c3c: Unknown result type (might be due to invalid IL or missing references) //IL_2c41: Unknown result type (might be due to invalid IL or missing references) //IL_2c47: Unknown result type (might be due to invalid IL or missing references) //IL_2c51: Unknown result type (might be due to invalid IL or missing references) //IL_2c56: Unknown result type (might be due to invalid IL or missing references) //IL_2c5c: Unknown result type (might be due to invalid IL or missing references) //IL_2c66: Unknown result type (might be due to invalid IL or missing references) //IL_2c6b: Unknown result type (might be due to invalid IL or missing references) //IL_2c71: Unknown result type (might be due to invalid IL or missing references) //IL_2c7b: Unknown result type (might be due to invalid IL or missing references) //IL_2c80: Unknown result type (might be due to invalid IL or missing references) //IL_2c86: Unknown result type (might be due to invalid IL or missing references) //IL_2c8b: Unknown result type (might be due to invalid IL or missing references) //IL_2c91: Unknown result type (might be due to invalid IL or missing references) //IL_2c96: Unknown result type (might be due to invalid IL or missing references) //IL_2c9c: Unknown result type (might be due to invalid IL or missing references) //IL_2ca1: Unknown result type (might be due to invalid IL or missing references) //IL_2cac: Unknown result type (might be due to invalid IL or missing references) //IL_2cb2: Unknown result type (might be due to invalid IL or missing references) //IL_2cb7: Unknown result type (might be due to invalid IL or missing references) //IL_2cbd: Unknown result type (might be due to invalid IL or missing references) //IL_2cc7: Unknown result type (might be due to invalid IL or missing references) //IL_2ccc: Unknown result type (might be due to invalid IL or missing references) //IL_2cd2: Unknown result type (might be due to invalid IL or missing references) //IL_2cdc: Unknown result type (might be due to invalid IL or missing references) //IL_2ce1: Unknown result type (might be due to invalid IL or missing references) //IL_2ce7: Unknown result type (might be due to invalid IL or missing references) //IL_2cf1: Unknown result type (might be due to invalid IL or missing references) //IL_2cf6: Unknown result type (might be due to invalid IL or missing references) //IL_2cfc: Unknown result type (might be due to invalid IL or missing references) //IL_2d01: Unknown result type (might be due to invalid IL or missing references) //IL_2d07: Unknown result type (might be due to invalid IL or missing references) //IL_2d0c: Unknown result type (might be due to invalid IL or missing references) //IL_2d12: Unknown result type (might be due to invalid IL or missing references) //IL_2d17: Unknown result type (might be due to invalid IL or missing references) //IL_2d1c: Unknown result type (might be due to invalid IL or missing references) //IL_2d2c: Unknown result type (might be due to invalid IL or missing references) //IL_2d32: Unknown result type (might be due to invalid IL or missing references) //IL_2d37: Unknown result type (might be due to invalid IL or missing references) //IL_2d3d: Unknown result type (might be due to invalid IL or missing references) //IL_2d42: Unknown result type (might be due to invalid IL or missing references) //IL_2d48: Unknown result type (might be due to invalid IL or missing references) //IL_2d4d: Unknown result type (might be due to invalid IL or missing references) //IL_2d53: Unknown result type (might be due to invalid IL or missing references) //IL_2d5d: Unknown result type (might be due to invalid IL or missing references) //IL_2d62: Unknown result type (might be due to invalid IL or missing references) //IL_2d68: Unknown result type (might be due to invalid IL or missing references) //IL_2d72: Unknown result type (might be due to invalid IL or missing references) //IL_2d77: Unknown result type (might be due to invalid IL or missing references) //IL_2d7d: Unknown result type (might be due to invalid IL or missing references) //IL_2d82: Unknown result type (might be due to invalid IL or missing references) //IL_2d88: Unknown result type (might be due to invalid IL or missing references) //IL_2d8d: Unknown result type (might be due to invalid IL or missing references) //IL_2d98: Unknown result type (might be due to invalid IL or missing references) //IL_2d9e: Unknown result type (might be due to invalid IL or missing references) //IL_2da3: Unknown result type (might be due to invalid IL or missing references) //IL_2da9: Unknown result type (might be due to invalid IL or missing references) //IL_2dae: Unknown result type (might be due to invalid IL or missing references) //IL_2db4: Unknown result type (might be due to invalid IL or missing references) //IL_2db9: Unknown result type (might be due to invalid IL or missing references) //IL_2dbf: Unknown result type (might be due to invalid IL or missing references) //IL_2dc9: Unknown result type (might be due to invalid IL or missing references) //IL_2dce: Unknown result type (might be due to invalid IL or missing references) //IL_2dd4: Unknown result type (might be due to invalid IL or missing references) //IL_2dd9: Unknown result type (might be due to invalid IL or missing references) //IL_2ddf: Unknown result type (might be due to invalid IL or missing references) //IL_2de9: Unknown result type (might be due to invalid IL or missing references) //IL_2dee: Unknown result type (might be due to invalid IL or missing references) //IL_2df4: Unknown result type (might be due to invalid IL or missing references) //IL_2df9: Unknown result type (might be due to invalid IL or missing references) //IL_2dfe: Unknown result type (might be due to invalid IL or missing references) //IL_2e0e: Unknown result type (might be due to invalid IL or missing references) //IL_2e14: Unknown result type (might be due to invalid IL or missing references) //IL_2e19: Unknown result type (might be due to invalid IL or missing references) //IL_2e1f: Unknown result type (might be due to invalid IL or missing references) //IL_2e24: Unknown result type (might be due to invalid IL or missing references) //IL_2e2a: Unknown result type (might be due to invalid IL or missing references) //IL_2e2f: Unknown result type (might be due to invalid IL or missing references) //IL_2e35: Unknown result type (might be due to invalid IL or missing references) //IL_2e3f: Unknown result type (might be due to invalid IL or missing references) //IL_2e44: Unknown result type (might be due to invalid IL or missing references) //IL_2e4a: Unknown result type (might be due to invalid IL or missing references) //IL_2e54: Unknown result type (might be due to invalid IL or missing references) //IL_2e59: Unknown result type (might be due to invalid IL or missing references) //IL_2e5f: Unknown result type (might be due to invalid IL or missing references) //IL_2e64: Unknown result type (might be due to invalid IL or missing references) //IL_2e6a: Unknown result type (might be due to invalid IL or missing references) //IL_2e6f: Unknown result type (might be due to invalid IL or missing references) //IL_2e7a: Unknown result type (might be due to invalid IL or missing references) //IL_2e80: Unknown result type (might be due to invalid IL or missing references) //IL_2e85: Unknown result type (might be due to invalid IL or missing references) //IL_2e8b: Unknown result type (might be due to invalid IL or missing references) //IL_2e90: Unknown result type (might be due to invalid IL or missing references) //IL_2e96: Unknown result type (might be due to invalid IL or missing references) //IL_2e9b: Unknown result type (might be due to invalid IL or missing references) //IL_2ea1: Unknown result type (might be due to invalid IL or missing references) //IL_2eab: Unknown result type (might be due to invalid IL or missing references) //IL_2eb0: Unknown result type (might be due to invalid IL or missing references) //IL_2eb6: Unknown result type (might be due to invalid IL or missing references) //IL_2ec0: Unknown result type (might be due to invalid IL or missing references) //IL_2ec5: Unknown result type (might be due to invalid IL or missing references) //IL_2ecb: Unknown result type (might be due to invalid IL or missing references) //IL_2ed0: Unknown result type (might be due to invalid IL or missing references) //IL_2ed6: Unknown result type (might be due to invalid IL or missing references) //IL_2edb: Unknown result type (might be due to invalid IL or missing references) //IL_2ee0: Unknown result type (might be due to invalid IL or missing references) //IL_2ef0: Unknown result type (might be due to invalid IL or missing references) //IL_2ef6: Unknown result type (might be due to invalid IL or missing references) //IL_2efb: Unknown result type (might be due to invalid IL or missing references) //IL_2f01: Unknown result type (might be due to invalid IL or missing references) //IL_2f0b: Unknown result type (might be due to invalid IL or missing references) //IL_2f10: Unknown result type (might be due to invalid IL or missing references) //IL_2f16: Unknown result type (might be due to invalid IL or missing references) //IL_2f20: Unknown result type (might be due to invalid IL or missing references) //IL_2f25: Unknown result type (might be due to invalid IL or missing references) //IL_2f2b: Unknown result type (might be due to invalid IL or missing references) //IL_2f30: Unknown result type (might be due to invalid IL or missing references) //IL_2f36: Unknown result type (might be due to invalid IL or missing references) //IL_2f3b: Unknown result type (might be due to invalid IL or missing references) //IL_2f41: Unknown result type (might be due to invalid IL or missing references) //IL_2f46: Unknown result type (might be due to invalid IL or missing references) //IL_2f51: Unknown result type (might be due to invalid IL or missing references) //IL_2f57: Unknown result type (might be due to invalid IL or missing references) //IL_2f5c: Unknown result type (might be due to invalid IL or missing references) //IL_2f62: Unknown result type (might be due to invalid IL or missing references) //IL_2f6c: Unknown result type (might be due to invalid IL or missing references) //IL_2f71: Unknown result type (might be due to invalid IL or missing references) //IL_2f77: Unknown result type (might be due to invalid IL or missing references) //IL_2f7c: Unknown result type (might be due to invalid IL or missing references) //IL_2f82: Unknown result type (might be due to invalid IL or missing references) //IL_2f8c: Unknown result type (might be due to invalid IL or missing references) //IL_2f91: Unknown result type (might be due to invalid IL or missing references) //IL_2f97: Unknown result type (might be due to invalid IL or missing references) //IL_2f9c: Unknown result type (might be due to invalid IL or missing references) //IL_2fa2: Unknown result type (might be due to invalid IL or missing references) //IL_2fa7: Unknown result type (might be due to invalid IL or missing references) //IL_2fac: Unknown result type (might be due to invalid IL or missing references) //IL_2fbc: Unknown result type (might be due to invalid IL or missing references) //IL_2fc2: Unknown result type (might be due to invalid IL or missing references) //IL_2fc7: Unknown result type (might be due to invalid IL or missing references) //IL_2fcd: Unknown result type (might be due to invalid IL or missing references) //IL_2fd7: Unknown result type (might be due to invalid IL or missing references) //IL_2fdc: Unknown result type (might be due to invalid IL or missing references) //IL_2fe2: Unknown result type (might be due to invalid IL or missing references) //IL_2fec: Unknown result type (might be due to invalid IL or missing references) //IL_2ff1: Unknown result type (might be due to invalid IL or missing references) //IL_2ff7: Unknown result type (might be due to invalid IL or missing references) //IL_2ffc: Unknown result type (might be due to invalid IL or missing references) //IL_3002: Unknown result type (might be due to invalid IL or missing references) //IL_3007: Unknown result type (might be due to invalid IL or missing references) //IL_300d: Unknown result type (might be due to invalid IL or missing references) //IL_3012: Unknown result type (might be due to invalid IL or missing references) //IL_301d: Unknown result type (might be due to invalid IL or missing references) //IL_3023: Unknown result type (might be due to invalid IL or missing references) //IL_3028: Unknown result type (might be due to invalid IL or missing references) //IL_302e: Unknown result type (might be due to invalid IL or missing references) //IL_3038: Unknown result type (might be due to invalid IL or missing references) //IL_303d: Unknown result type (might be due to invalid IL or missing references) //IL_3043: Unknown result type (might be due to invalid IL or missing references) //IL_304d: Unknown result type (might be due to invalid IL or missing references) //IL_3052: Unknown result type (might be due to invalid IL or missing references) //IL_3058: Unknown result type (might be due to invalid IL or missing references) //IL_305d: Unknown result type (might be due to invalid IL or missing references) //IL_3063: Unknown result type (might be due to invalid IL or missing references) //IL_3068: Unknown result type (might be due to invalid IL or missing references) //IL_306e: Unknown result type (might be due to invalid IL or missing references) //IL_3073: Unknown result type (might be due to invalid IL or missing references) //IL_3078: Unknown result type (might be due to invalid IL or missing references) //IL_3088: Unknown result type (might be due to invalid IL or missing references) //IL_308e: Unknown result type (might be due to invalid IL or missing references) //IL_3093: Unknown result type (might be due to invalid IL or missing references) //IL_3099: Unknown result type (might be due to invalid IL or missing references) //IL_309e: Unknown result type (might be due to invalid IL or missing references) //IL_30a4: Unknown result type (might be due to invalid IL or missing references) //IL_30a9: Unknown result type (might be due to invalid IL or missing references) //IL_30af: Unknown result type (might be due to invalid IL or missing references) //IL_30b9: Unknown result type (might be due to invalid IL or missing references) //IL_30be: Unknown result type (might be due to invalid IL or missing references) //IL_30c4: Unknown result type (might be due to invalid IL or missing references) //IL_30ce: Unknown result type (might be due to invalid IL or missing references) //IL_30d3: Unknown result type (might be due to invalid IL or missing references) //IL_30d9: Unknown result type (might be due to invalid IL or missing references) //IL_30e3: Unknown result type (might be due to invalid IL or missing references) //IL_30e8: Unknown result type (might be due to invalid IL or missing references) //IL_30ee: Unknown result type (might be due to invalid IL or missing references) //IL_30f3: Unknown result type (might be due to invalid IL or missing references) //IL_30f9: Unknown result type (might be due to invalid IL or missing references) //IL_30fe: Unknown result type (might be due to invalid IL or missing references) //IL_3109: Unknown result type (might be due to invalid IL or missing references) //IL_310f: Unknown result type (might be due to invalid IL or missing references) //IL_3114: Unknown result type (might be due to invalid IL or missing references) //IL_311a: Unknown result type (might be due to invalid IL or missing references) //IL_311f: Unknown result type (might be due to invalid IL or missing references) //IL_3125: Unknown result type (might be due to invalid IL or missing references) //IL_312a: Unknown result type (might be due to invalid IL or missing references) //IL_3130: Unknown result type (might be due to invalid IL or missing references) //IL_313a: Unknown result type (might be due to invalid IL or missing references) //IL_313f: Unknown result type (might be due to invalid IL or missing references) //IL_3145: Unknown result type (might be due to invalid IL or missing references) //IL_314a: Unknown result type (might be due to invalid IL or missing references) //IL_3150: Unknown result type (might be due to invalid IL or missing references) //IL_315a: Unknown result type (might be due to invalid IL or missing references) //IL_315f: Unknown result type (might be due to invalid IL or missing references) //IL_3165: Unknown result type (might be due to invalid IL or missing references) //IL_316f: Unknown result type (might be due to invalid IL or missing references) //IL_3174: Unknown result type (might be due to invalid IL or missing references) //IL_317a: Unknown result type (might be due to invalid IL or missing references) //IL_317f: Unknown result type (might be due to invalid IL or missing references) //IL_3184: Unknown result type (might be due to invalid IL or missing references) //IL_3194: Unknown result type (might be due to invalid IL or missing references) //IL_319a: Unknown result type (might be due to invalid IL or missing references) //IL_319f: Unknown result type (might be due to invalid IL or missing references) //IL_31a5: Unknown result type (might be due to invalid IL or missing references) //IL_31aa: Unknown result type (might be due to invalid IL or missing references) //IL_31b0: Unknown result type (might be due to invalid IL or missing references) //IL_31b5: Unknown result type (might be due to invalid IL or missing references) //IL_31bb: Unknown result type (might be due to invalid IL or missing references) //IL_31c5: Unknown result type (might be due to invalid IL or missing references) //IL_31ca: Unknown result type (might be due to invalid IL or missing references) //IL_31d0: Unknown result type (might be due to invalid IL or missing references) //IL_31da: Unknown result type (might be due to invalid IL or missing references) //IL_31df: Unknown result type (might be due to invalid IL or missing references) //IL_31e5: Unknown result type (might be due to invalid IL or missing references) //IL_31ef: Unknown result type (might be due to invalid IL or missing references) //IL_31f4: Unknown result type (might be due to invalid IL or missing references) //IL_31fa: Unknown result type (might be due to invalid IL or missing references) //IL_31ff: Unknown result type (might be due to invalid IL or missing references) //IL_3205: Unknown result type (might be due to invalid IL or missing references) //IL_320a: Unknown result type (might be due to invalid IL or missing references) //IL_3215: Unknown result type (might be due to invalid IL or missing references) //IL_321b: Unknown result type (might be due to invalid IL or missing references) //IL_3220: Unknown result type (might be due to invalid IL or missing references) //IL_3226: Unknown result type (might be due to invalid IL or missing references) //IL_322b: Unknown result type (might be due to invalid IL or missing references) //IL_3231: Unknown result type (might be due to invalid IL or missing references) //IL_3236: Unknown result type (might be due to invalid IL or missing references) //IL_323c: Unknown result type (might be due to invalid IL or missing references) //IL_3246: Unknown result type (might be due to invalid IL or missing references) //IL_324b: Unknown result type (might be due to invalid IL or missing references) //IL_3251: Unknown result type (might be due to invalid IL or missing references) //IL_325b: Unknown result type (might be due to invalid IL or missing references) //IL_3260: Unknown result type (might be due to invalid IL or missing references) //IL_3266: Unknown result type (might be due to invalid IL or missing references) //IL_3270: Unknown result type (might be due to invalid IL or missing references) //IL_3275: Unknown result type (might be due to invalid IL or missing references) //IL_327b: Unknown result type (might be due to invalid IL or missing references) //IL_3280: Unknown result type (might be due to invalid IL or missing references) //IL_3286: Unknown result type (might be due to invalid IL or missing references) //IL_328b: Unknown result type (might be due to invalid IL or missing references) //IL_3290: Unknown result type (might be due to invalid IL or missing references) //IL_32a0: Unknown result type (might be due to invalid IL or missing references) //IL_32a6: Unknown result type (might be due to invalid IL or missing references) //IL_32ab: Unknown result type (might be due to invalid IL or missing references) //IL_32b1: Unknown result type (might be due to invalid IL or missing references) //IL_32bb: Unknown result type (might be due to invalid IL or missing references) //IL_32c0: Unknown result type (might be due to invalid IL or missing references) //IL_32c6: Unknown result type (might be due to invalid IL or missing references) //IL_32d0: Unknown result type (might be due to invalid IL or missing references) //IL_32d5: Unknown result type (might be due to invalid IL or missing references) //IL_32db: Unknown result type (might be due to invalid IL or missing references) //IL_32e5: Unknown result type (might be due to invalid IL or missing references) //IL_32ea: Unknown result type (might be due to invalid IL or missing references) //IL_32f0: Unknown result type (might be due to invalid IL or missing references) //IL_32f5: Unknown result type (might be due to invalid IL or missing references) //IL_32fb: Unknown result type (might be due to invalid IL or missing references) //IL_3300: Unknown result type (might be due to invalid IL or missing references) //IL_3306: Unknown result type (might be due to invalid IL or missing references) //IL_330b: Unknown result type (might be due to invalid IL or missing references) //IL_3316: Unknown result type (might be due to invalid IL or missing references) //IL_331c: Unknown result type (might be due to invalid IL or missing references) //IL_3321: Unknown result type (might be due to invalid IL or missing references) //IL_3327: Unknown result type (might be due to invalid IL or missing references) //IL_3331: Unknown result type (might be due to invalid IL or missing references) //IL_3336: Unknown result type (might be due to invalid IL or missing references) //IL_333c: Unknown result type (might be due to invalid IL or missing references) //IL_3341: Unknown result type (might be due to invalid IL or missing references) //IL_3347: Unknown result type (might be due to invalid IL or missing references) //IL_3351: Unknown result type (might be due to invalid IL or missing references) //IL_3356: Unknown result type (might be due to invalid IL or missing references) //IL_335c: Unknown result type (might be due to invalid IL or missing references) //IL_3366: Unknown result type (might be due to invalid IL or missing references) //IL_336b: Unknown result type (might be due to invalid IL or missing references) //IL_3371: Unknown result type (might be due to invalid IL or missing references) //IL_3376: Unknown result type (might be due to invalid IL or missing references) //IL_337c: Unknown result type (might be due to invalid IL or missing references) //IL_3381: Unknown result type (might be due to invalid IL or missing references) //IL_3386: Unknown result type (might be due to invalid IL or missing references) //IL_3396: Unknown result type (might be due to invalid IL or missing references) //IL_339c: Unknown result type (might be due to invalid IL or missing references) //IL_33a1: Unknown result type (might be due to invalid IL or missing references) //IL_33a7: Unknown result type (might be due to invalid IL or missing references) //IL_33b1: Unknown result type (might be due to invalid IL or missing references) //IL_33b6: Unknown result type (might be due to invalid IL or missing references) //IL_33bc: Unknown result type (might be due to invalid IL or missing references) //IL_33c6: Unknown result type (might be due to invalid IL or missing references) //IL_33cb: Unknown result type (might be due to invalid IL or missing references) //IL_33d1: Unknown result type (might be due to invalid IL or missing references) //IL_33db: Unknown result type (might be due to invalid IL or missing references) //IL_33e0: Unknown result type (might be due to invalid IL or missing references) //IL_33e6: Unknown result type (might be due to invalid IL or missing references) //IL_33eb: Unknown result type (might be due to invalid IL or missing references) //IL_33f1: Unknown result type (might be due to invalid IL or missing references) //IL_33f6: Unknown result type (might be due to invalid IL or missing references) //IL_33fc: Unknown result type (might be due to invalid IL or missing references) //IL_3401: Unknown result type (might be due to invalid IL or missing references) //IL_340c: Unknown result type (might be due to invalid IL or missing references) //IL_3412: Unknown result type (might be due to invalid IL or missing references) //IL_3417: Unknown result type (might be due to invalid IL or missing references) //IL_341d: Unknown result type (might be due to invalid IL or missing references) //IL_3427: Unknown result type (might be due to invalid IL or missing references) //IL_342c: Unknown result type (might be due to invalid IL or missing references) //IL_3432: Unknown result type (might be due to invalid IL or missing references) //IL_343c: Unknown result type (might be due to invalid IL or missing references) //IL_3441: Unknown result type (might be due to invalid IL or missing references) //IL_3447: Unknown result type (might be due to invalid IL or missing references) //IL_3451: Unknown result type (might be due to invalid IL or missing references) //IL_3456: Unknown result type (might be due to invalid IL or missing references) //IL_345c: Unknown result type (might be due to invalid IL or missing references) //IL_3461: Unknown result type (might be due to invalid IL or missing references) //IL_3467: Unknown result type (might be due to invalid IL or missing references) //IL_346c: Unknown result type (might be due to invalid IL or missing references) //IL_3472: Unknown result type (might be due to invalid IL or missing references) //IL_3477: Unknown result type (might be due to invalid IL or missing references) //IL_347c: Unknown result type (might be due to invalid IL or missing references) //IL_348c: Unknown result type (might be due to invalid IL or missing references) //IL_3492: Unknown result type (might be due to invalid IL or missing references) //IL_3497: Unknown result type (might be due to invalid IL or missing references) //IL_349d: Unknown result type (might be due to invalid IL or missing references) //IL_34a2: Unknown result type (might be due to invalid IL or missing references) //IL_34a8: Unknown result type (might be due to invalid IL or missing references) //IL_34b2: Unknown result type (might be due to invalid IL or missing references) //IL_34b7: Unknown result type (might be due to invalid IL or missing references) //IL_34bd: Unknown result type (might be due to invalid IL or missing references) //IL_34c2: Unknown result type (might be due to invalid IL or missing references) //IL_34cd: Unknown result type (might be due to invalid IL or missing references) //IL_34d3: Unknown result type (might be due to invalid IL or missing references) //IL_34d8: Unknown result type (might be due to invalid IL or missing references) //IL_34de: Unknown result type (might be due to invalid IL or missing references) //IL_34e3: Unknown result type (might be due to invalid IL or missing references) //IL_34e9: Unknown result type (might be due to invalid IL or missing references) //IL_34f3: Unknown result type (might be due to invalid IL or missing references) //IL_34f8: Unknown result type (might be due to invalid IL or missing references) //IL_34fe: Unknown result type (might be due to invalid IL or missing references) //IL_3503: Unknown result type (might be due to invalid IL or missing references) //IL_3508: Unknown result type (might be due to invalid IL or missing references) //IL_3518: Unknown result type (might be due to invalid IL or missing references) //IL_351e: Unknown result type (might be due to invalid IL or missing references) //IL_3523: Unknown result type (might be due to invalid IL or missing references) //IL_3529: Unknown result type (might be due to invalid IL or missing references) //IL_352e: Unknown result type (might be due to invalid IL or missing references) //IL_3534: Unknown result type (might be due to invalid IL or missing references) //IL_353e: Unknown result type (might be due to invalid IL or missing references) //IL_3543: Unknown result type (might be due to invalid IL or missing references) //IL_3549: Unknown result type (might be due to invalid IL or missing references) //IL_354e: Unknown result type (might be due to invalid IL or missing references) //IL_3554: Unknown result type (might be due to invalid IL or missing references) //IL_355e: Unknown result type (might be due to invalid IL or missing references) //IL_3563: Unknown result type (might be due to invalid IL or missing references) //IL_356e: Unknown result type (might be due to invalid IL or missing references) //IL_3574: Unknown result type (might be due to invalid IL or missing references) //IL_3579: Unknown result type (might be due to invalid IL or missing references) //IL_357f: Unknown result type (might be due to invalid IL or missing references) //IL_3584: Unknown result type (might be due to invalid IL or missing references) //IL_358a: Unknown result type (might be due to invalid IL or missing references) //IL_3594: Unknown result type (might be due to invalid IL or missing references) //IL_3599: Unknown result type (might be due to invalid IL or missing references) //IL_359f: Unknown result type (might be due to invalid IL or missing references) //IL_35a4: Unknown result type (might be due to invalid IL or missing references) //IL_35aa: Unknown result type (might be due to invalid IL or missing references) //IL_35b4: Unknown result type (might be due to invalid IL or missing references) //IL_35b9: Unknown result type (might be due to invalid IL or missing references) //IL_35be: Unknown result type (might be due to invalid IL or missing references) //IL_35ce: Unknown result type (might be due to invalid IL or missing references) //IL_35d4: Unknown result type (might be due to invalid IL or missing references) //IL_35d9: Unknown result type (might be due to invalid IL or missing references) //IL_35df: Unknown result type (might be due to invalid IL or missing references) //IL_35e4: Unknown result type (might be due to invalid IL or missing references) //IL_35ea: Unknown result type (might be due to invalid IL or missing references) //IL_35f4: Unknown result type (might be due to invalid IL or missing references) //IL_35f9: Unknown result type (might be due to invalid IL or missing references) //IL_35ff: Unknown result type (might be due to invalid IL or missing references) //IL_3604: Unknown result type (might be due to invalid IL or missing references) //IL_360a: Unknown result type (might be due to invalid IL or missing references) //IL_3614: Unknown result type (might be due to invalid IL or missing references) //IL_3619: Unknown result type (might be due to invalid IL or missing references) //IL_3624: Unknown result type (might be due to invalid IL or missing references) //IL_362a: Unknown result type (might be due to invalid IL or missing references) //IL_362f: Unknown result type (might be due to invalid IL or missing references) //IL_3635: Unknown result type (might be due to invalid IL or missing references) //IL_363a: Unknown result type (might be due to invalid IL or missing references) //IL_3640: Unknown result type (might be due to invalid IL or missing references) //IL_364a: Unknown result type (might be due to invalid IL or missing references) //IL_364f: Unknown result type (might be due to invalid IL or missing references) //IL_3655: Unknown result type (might be due to invalid IL or missing references) //IL_365a: Unknown result type (might be due to invalid IL or missing references) //IL_3660: Unknown result type (might be due to invalid IL or missing references) //IL_366a: Unknown result type (might be due to invalid IL or missing references) //IL_366f: Unknown result type (might be due to invalid IL or missing references) //IL_3674: Unknown result type (might be due to invalid IL or missing references) //IL_3684: Unknown result type (might be due to invalid IL or missing references) //IL_368a: Unknown result type (might be due to invalid IL or missing references) //IL_368f: Unknown result type (might be due to invalid IL or missing references) //IL_3695: Unknown result type (might be due to invalid IL or missing references) //IL_369a: Unknown result type (might be due to invalid IL or missing references) //IL_36a0: Unknown result type (might be due to invalid IL or missing references) //IL_36aa: Unknown result type (might be due to invalid IL or missing references) //IL_36af: Unknown result type (might be due to invalid IL or missing references) //IL_36b5: Unknown result type (might be due to invalid IL or missing references) //IL_36ba: Unknown result type (might be due to invalid IL or missing references) //IL_36c0: Unknown result type (might be due to invalid IL or missing references) //IL_36ca: Unknown result type (might be due to invalid IL or missing references) //IL_36cf: Unknown result type (might be due to invalid IL or missing references) //IL_36da: Unknown result type (might be due to invalid IL or missing references) //IL_36e0: Unknown result type (might be due to invalid IL or missing references) //IL_36e5: Unknown result type (might be due to invalid IL or missing references) //IL_36eb: Unknown result type (might be due to invalid IL or missing references) //IL_36f0: Unknown result type (might be due to invalid IL or missing references) //IL_36f6: Unknown result type (might be due to invalid IL or missing references) //IL_3700: Unknown result type (might be due to invalid IL or missing references) //IL_3705: Unknown result type (might be due to invalid IL or missing references) //IL_370b: Unknown result type (might be due to invalid IL or missing references) //IL_3710: Unknown result type (might be due to invalid IL or missing references) //IL_3716: Unknown result type (might be due to invalid IL or missing references) //IL_3720: Unknown result type (might be due to invalid IL or missing references) //IL_3725: Unknown result type (might be due to invalid IL or missing references) //IL_372a: Unknown result type (might be due to invalid IL or missing references) //IL_373a: Unknown result type (might be due to invalid IL or missing references) //IL_3740: Unknown result type (might be due to invalid IL or missing references) //IL_3745: Unknown result type (might be due to invalid IL or missing references) //IL_374b: Unknown result type (might be due to invalid IL or missing references) //IL_3750: Unknown result type (might be due to invalid IL or missing references) //IL_3756: Unknown result type (might be due to invalid IL or missing references) //IL_3760: Unknown result type (might be due to invalid IL or missing references) //IL_3765: Unknown result type (might be due to invalid IL or missing references) //IL_376b: Unknown result type (might be due to invalid IL or missing references) //IL_3770: Unknown result type (might be due to invalid IL or missing references) //IL_3776: Unknown result type (might be due to invalid IL or missing references) //IL_3780: Unknown result type (might be due to invalid IL or missing references) //IL_3785: Unknown result type (might be due to invalid IL or missing references) //IL_3790: Unknown result type (might be due to invalid IL or missing references) //IL_3796: Unknown result type (might be due to invalid IL or missing references) //IL_379b: Unknown result type (might be due to invalid IL or missing references) //IL_37a1: Unknown result type (might be due to invalid IL or missing references) //IL_37a6: Unknown result type (might be due to invalid IL or missing references) //IL_37ac: Unknown result type (might be due to invalid IL or missing references) //IL_37b6: Unknown result type (might be due to invalid IL or missing references) //IL_37bb: Unknown result type (might be due to invalid IL or missing references) //IL_37c1: Unknown result type (might be due to invalid IL or missing references) //IL_37c6: Unknown result type (might be due to invalid IL or missing references) //IL_37cc: Unknown result type (might be due to invalid IL or missing references) //IL_37d6: Unknown result type (might be due to invalid IL or missing references) //IL_37db: Unknown result type (might be due to invalid IL or missing references) //IL_37e0: Unknown result type (might be due to invalid IL or missing references) //IL_37f0: Unknown result type (might be due to invalid IL or missing references) //IL_37f6: Unknown result type (might be due to invalid IL or missing references) //IL_37fb: Unknown result type (might be due to invalid IL or missing references) //IL_3801: Unknown result type (might be due to invalid IL or missing references) //IL_3806: Unknown result type (might be due to invalid IL or missing references) //IL_380c: Unknown result type (might be due to invalid IL or missing references) //IL_3816: Unknown result type (might be due to invalid IL or missing references) //IL_381b: Unknown result type (might be due to invalid IL or missing references) //IL_3821: Unknown result type (might be due to invalid IL or missing references) //IL_3826: Unknown result type (might be due to invalid IL or missing references) //IL_382c: Unknown result type (might be due to invalid IL or missing references) //IL_3836: Unknown result type (might be due to invalid IL or missing references) //IL_383b: Unknown result type (might be due to invalid IL or missing references) //IL_3846: Unknown result type (might be due to invalid IL or missing references) //IL_384c: Unknown result type (might be due to invalid IL or missing references) //IL_3851: Unknown result type (might be due to invalid IL or missing references) //IL_3857: Unknown result type (might be due to invalid IL or missing references) //IL_385c: Unknown result type (might be due to invalid IL or missing references) //IL_3862: Unknown result type (might be due to invalid IL or missing references) //IL_386c: Unknown result type (might be due to invalid IL or missing references) //IL_3871: Unknown result type (might be due to invalid IL or missing references) //IL_3877: Unknown result type (might be due to invalid IL or missing references) //IL_387c: Unknown result type (might be due to invalid IL or missing references) //IL_3882: Unknown result type (might be due to invalid IL or missing references) //IL_388c: Unknown result type (might be due to invalid IL or missing references) //IL_3891: Unknown result type (might be due to invalid IL or missing references) //IL_3896: Unknown result type (might be due to invalid IL or missing references) //IL_38a6: Unknown result type (might be due to invalid IL or missing references) //IL_38ac: Unknown result type (might be due to invalid IL or missing references) //IL_38b1: Unknown result type (might be due to invalid IL or missing references) //IL_38b7: Unknown result type (might be due to invalid IL or missing references) //IL_38bc: Unknown result type (might be due to invalid IL or missing references) //IL_38c2: Unknown result type (might be due to invalid IL or missing references) //IL_38cc: Unknown result type (might be due to invalid IL or missing references) //IL_38d1: Unknown result type (might be due to invalid IL or missing references) //IL_38d7: Unknown result type (might be due to invalid IL or missing references) //IL_38dc: Unknown result type (might be due to invalid IL or missing references) //IL_38e2: Unknown result type (might be due to invalid IL or missing references) //IL_38ec: Unknown result type (might be due to invalid IL or missing references) //IL_38f1: Unknown result type (might be due to invalid IL or missing references) //IL_38fc: Unknown result type (might be due to invalid IL or missing references) //IL_3902: Unknown result type (might be due to invalid IL or missing references) //IL_3907: Unknown result type (might be due to invalid IL or missing references) //IL_390d: Unknown result type (might be due to invalid IL or missing references) //IL_3912: Unknown result type (might be due to invalid IL or missing references) //IL_3918: Unknown result type (might be due to invalid IL or missing references) //IL_3922: Unknown result type (might be due to invalid IL or missing references) //IL_3927: Unknown result type (might be due to invalid IL or missing references) //IL_392d: Unknown result type (might be due to invalid IL or missing references) //IL_3932: Unknown result type (might be due to invalid IL or missing references) //IL_3938: Unknown result type (might be due to invalid IL or missing references) //IL_3942: Unknown result type (might be due to invalid IL or missing references) //IL_3947: Unknown result type (might be due to invalid IL or missing references) //IL_394c: Unknown result type (might be due to invalid IL or missing references) //IL_395c: Unknown result type (might be due to invalid IL or missing references) //IL_3962: Unknown result type (might be due to invalid IL or missing references) //IL_3967: Unknown result type (might be due to invalid IL or missing references) //IL_396d: Unknown result type (might be due to invalid IL or missing references) //IL_3972: Unknown result type (might be due to invalid IL or missing references) //IL_3978: Unknown result type (might be due to invalid IL or missing references) //IL_3982: Unknown result type (might be due to invalid IL or missing references) //IL_3987: Unknown result type (might be due to invalid IL or missing references) //IL_398d: Unknown result type (might be due to invalid IL or missing references) //IL_3992: Unknown result type (might be due to invalid IL or missing references) //IL_3998: Unknown result type (might be due to invalid IL or missing references) //IL_39a2: Unknown result type (might be due to invalid IL or missing references) //IL_39a7: Unknown result type (might be due to invalid IL or missing references) //IL_39b2: Unknown result type (might be due to invalid IL or missing references) //IL_39b8: Unknown result type (might be due to invalid IL or missing references) //IL_39bd: Unknown result type (might be due to invalid IL or missing references) //IL_39c3: Unknown result type (might be due to invalid IL or missing references) //IL_39c8: Unknown result type (might be due to invalid IL or missing references) //IL_39ce: Unknown result type (might be due to invalid IL or missing references) //IL_39d8: Unknown result type (might be due to invalid IL or missing references) //IL_39dd: Unknown result type (might be due to invalid IL or missing references) //IL_39e3: Unknown result type (might be due to invalid IL or missing references) //IL_39e8: Unknown result type (might be due to invalid IL or missing references) //IL_39ee: Unknown result type (might be due to invalid IL or missing references) //IL_39f8: Unknown result type (might be due to invalid IL or missing references) //IL_39fd: Unknown result type (might be due to invalid IL or missing references) //IL_3a02: Unknown result type (might be due to invalid IL or missing references) //IL_3a12: Unknown result type (might be due to invalid IL or missing references) //IL_3a18: Unknown result type (might be due to invalid IL or missing references) //IL_3a1d: Unknown result type (might be due to invalid IL or missing references) //IL_3a23: Unknown result type (might be due to invalid IL or missing references) //IL_3a28: Unknown result type (might be due to invalid IL or missing references) //IL_3a2e: Unknown result type (might be due to invalid IL or missing references) //IL_3a38: Unknown result type (might be due to invalid IL or missing references) //IL_3a3d: Unknown result type (might be due to invalid IL or missing references) //IL_3a43: Unknown result type (might be due to invalid IL or missing references) //IL_3a48: Unknown result type (might be due to invalid IL or missing references) //IL_3a53: Unknown result type (might be due to invalid IL or missing references) //IL_3a59: Unknown result type (might be due to invalid IL or missing references) //IL_3a5e: Unknown result type (might be due to invalid IL or missing references) //IL_3a64: Unknown result type (might be due to invalid IL or missing references) //IL_3a69: Unknown result type (might be due to invalid IL or missing references) //IL_3a6f: Unknown result type (might be due to invalid IL or missing references) //IL_3a79: Unknown result type (might be due to invalid IL or missing references) //IL_3a7e: Unknown result type (might be due to invalid IL or missing references) //IL_3a84: Unknown result type (might be due to invalid IL or missing references) //IL_3a89: Unknown result type (might be due to invalid IL or missing references) //IL_3a8e: Unknown result type (might be due to invalid IL or missing references) //IL_3a9e: Unknown result type (might be due to invalid IL or missing references) //IL_3aa4: Unknown result type (might be due to invalid IL or missing references) //IL_3aa9: Unknown result type (might be due to invalid IL or missing references) //IL_3aaf: Unknown result type (might be due to invalid IL or missing references) //IL_3ab4: Unknown result type (might be due to invalid IL or missing references) //IL_3aba: Unknown result type (might be due to invalid IL or missing references) //IL_3ac4: Unknown result type (might be due to invalid IL or missing references) //IL_3ac9: Unknown result type (might be due to invalid IL or missing references) //IL_3acf: Unknown result type (might be due to invalid IL or missing references) //IL_3ad4: Unknown result type (might be due to invalid IL or missing references) //IL_3ada: Unknown result type (might be due to invalid IL or missing references) //IL_3ae4: Unknown result type (might be due to invalid IL or missing references) //IL_3ae9: Unknown result type (might be due to invalid IL or missing references) //IL_3af4: Unknown result type (might be due to invalid IL or missing references) //IL_3afa: Unknown result type (might be due to invalid IL or missing references) //IL_3aff: Unknown result type (might be due to invalid IL or missing references) //IL_3b05: Unknown result type (might be due to invalid IL or missing references) //IL_3b0a: Unknown result type (might be due to invalid IL or missing references) //IL_3b10: Unknown result type (might be due to invalid IL or missing references) //IL_3b1a: Unknown result type (might be due to invalid IL or missing references) //IL_3b1f: Unknown result type (might be due to invalid IL or missing references) //IL_3b25: Unknown result type (might be due to invalid IL or missing references) //IL_3b2a: Unknown result type (might be due to invalid IL or missing references) //IL_3b30: Unknown result type (might be due to invalid IL or missing references) //IL_3b3a: Unknown result type (might be due to invalid IL or missing references) //IL_3b3f: Unknown result type (might be due to invalid IL or missing references) //IL_3b44: Unknown result type (might be due to invalid IL or missing references) //IL_3b54: Unknown result type (might be due to invalid IL or missing references) //IL_3b5a: Unknown result type (might be due to invalid IL or missing references) //IL_3b5f: Unknown result type (might be due to invalid IL or missing references) //IL_3b65: Unknown result type (might be due to invalid IL or missing references) //IL_3b6a: Unknown result type (might be due to invalid IL or missing references) //IL_3b70: Unknown result type (might be due to invalid IL or missing references) //IL_3b7a: Unknown result type (might be due to invalid IL or missing references) //IL_3b7f: Unknown result type (might be due to invalid IL or missing references) //IL_3b85: Unknown result type (might be due to invalid IL or missing references) //IL_3b8a: Unknown result type (might be due to invalid IL or missing references) //IL_3b90: Unknown result type (might be due to invalid IL or missing references) //IL_3b9a: Unknown result type (might be due to invalid IL or missing references) //IL_3b9f: Unknown result type (might be due to invalid IL or missing references) //IL_3baa: Unknown result type (might be due to invalid IL or missing references) //IL_3bb0: Unknown result type (might be due to invalid IL or missing references) //IL_3bb5: Unknown result type (might be due to invalid IL or missing references) //IL_3bbb: Unknown result type (might be due to invalid IL or missing references) //IL_3bc0: Unknown result type (might be due to invalid IL or missing references) //IL_3bc6: Unknown result type (might be due to invalid IL or missing references) //IL_3bd0: Unknown result type (might be due to invalid IL or missing references) //IL_3bd5: Unknown result type (might be due to invalid IL or missing references) //IL_3bdb: Unknown result type (might be due to invalid IL or missing references) //IL_3be0: Unknown result type (might be due to invalid IL or missing references) //IL_3be6: Unknown result type (might be due to invalid IL or missing references) //IL_3bf0: Unknown result type (might be due to invalid IL or missing references) //IL_3bf5: Unknown result type (might be due to invalid IL or missing references) //IL_3bfa: Unknown result type (might be due to invalid IL or missing references) //IL_3c0a: Unknown result type (might be due to invalid IL or missing references) //IL_3c10: Unknown result type (might be due to invalid IL or missing references) //IL_3c15: Unknown result type (might be due to invalid IL or missing references) //IL_3c1b: Unknown result type (might be due to invalid IL or missing references) //IL_3c20: Unknown result type (might be due to invalid IL or missing references) //IL_3c26: Unknown result type (might be due to invalid IL or missing references) //IL_3c30: Unknown result type (might be due to invalid IL or missing references) //IL_3c35: Unknown result type (might be due to invalid IL or missing references) //IL_3c3b: Unknown result type (might be due to invalid IL or missing references) //IL_3c40: Unknown result type (might be due to invalid IL or missing references) //IL_3c46: Unknown result type (might be due to invalid IL or missing references) //IL_3c50: Unknown result type (might be due to invalid IL or missing references) //IL_3c55: Unknown result type (might be due to invalid IL or missing references) //IL_3c60: Unknown result type (might be due to invalid IL or missing references) //IL_3c66: Unknown result type (might be due to invalid IL or missing references) //IL_3c6b: Unknown result type (might be due to invalid IL or missing references) //IL_3c71: Unknown result type (might be due to invalid IL or missing references) //IL_3c76: Unknown result type (might be due to invalid IL or missing references) //IL_3c7c: Unknown result type (might be due to invalid IL or missing references) //IL_3c86: Unknown result type (might be due to invalid IL or missing references) //IL_3c8b: Unknown result type (might be due to invalid IL or missing references) //IL_3c91: Unknown result type (might be due to invalid IL or missing references) //IL_3c96: Unknown result type (might be due to invalid IL or missing references) //IL_3c9c: Unknown result type (might be due to invalid IL or missing references) //IL_3ca6: Unknown result type (might be due to invalid IL or missing references) //IL_3cab: Unknown result type (might be due to invalid IL or missing references) //IL_3cb0: Unknown result type (might be due to invalid IL or missing references) //IL_3cc0: Unknown result type (might be due to invalid IL or missing references) //IL_3cc6: Unknown result type (might be due to invalid IL or missing references) //IL_3ccb: Unknown result type (might be due to invalid IL or missing references) //IL_3cd1: Unknown result type (might be due to invalid IL or missing references) //IL_3cd6: Unknown result type (might be due to invalid IL or missing references) //IL_3cdc: Unknown result type (might be due to invalid IL or missing references) //IL_3ce6: Unknown result type (might be due to invalid IL or missing references) //IL_3ceb: Unknown result type (might be due to invalid IL or missing references) //IL_3cf1: Unknown result type (might be due to invalid IL or missing references) //IL_3cf6: Unknown result type (might be due to invalid IL or missing references) //IL_3cfc: Unknown result type (might be due to invalid IL or missing references) //IL_3d06: Unknown result type (might be due to invalid IL or missing references) //IL_3d0b: Unknown result type (might be due to invalid IL or missing references) //IL_3d16: Unknown result type (might be due to invalid IL or missing references) //IL_3d1c: Unknown result type (might be due to invalid IL or missing references) //IL_3d21: Unknown result type (might be due to invalid IL or missing references) //IL_3d27: Unknown result type (might be due to invalid IL or missing references) //IL_3d2c: Unknown result type (might be due to invalid IL or missing references) //IL_3d32: Unknown result type (might be due to invalid IL or missing references) //IL_3d3c: Unknown result type (might be due to invalid IL or missing references) //IL_3d41: Unknown result type (might be due to invalid IL or missing references) //IL_3d47: Unknown result type (might be due to invalid IL or missing references) //IL_3d4c: Unknown result type (might be due to invalid IL or missing references) //IL_3d52: Unknown result type (might be due to invalid IL or missing references) //IL_3d5c: Unknown result type (might be due to invalid IL or missing references) //IL_3d61: Unknown result type (might be due to invalid IL or missing references) //IL_3d66: Unknown result type (might be due to invalid IL or missing references) //IL_3d76: Unknown result type (might be due to invalid IL or missing references) //IL_3d7c: Unknown result type (might be due to invalid IL or missing references) //IL_3d81: Unknown result type (might be due to invalid IL or missing references) //IL_3d87: Unknown result type (might be due to invalid IL or missing references) //IL_3d8c: Unknown result type (might be due to invalid IL or missing references) //IL_3d92: Unknown result type (might be due to invalid IL or missing references) //IL_3d9c: Unknown result type (might be due to invalid IL or missing references) //IL_3da1: Unknown result type (might be due to invalid IL or missing references) //IL_3da7: Unknown result type (might be due to invalid IL or missing references) //IL_3dac: Unknown result type (might be due to invalid IL or missing references) //IL_3db2: Unknown result type (might be due to invalid IL or missing references) //IL_3dbc: Unknown result type (might be due to invalid IL or missing references) //IL_3dc1: Unknown result type (might be due to invalid IL or missing references) //IL_3dcc: Unknown result type (might be due to invalid IL or missing references) //IL_3dd2: Unknown result type (might be due to invalid IL or missing references) //IL_3dd7: Unknown result type (might be due to invalid IL or missing references) //IL_3ddd: Unknown result type (might be due to invalid IL or missing references) //IL_3de2: Unknown result type (might be due to invalid IL or missing references) //IL_3de8: Unknown result type (might be due to invalid IL or missing references) //IL_3df2: Unknown result type (might be due to invalid IL or missing references) //IL_3df7: Unknown result type (might be due to invalid IL or missing references) //IL_3dfd: Unknown result type (might be due to invalid IL or missing references) //IL_3e02: Unknown result type (might be due to invalid IL or missing references) //IL_3e08: Unknown result type (might be due to invalid IL or missing references) //IL_3e12: Unknown result type (might be due to invalid IL or missing references) //IL_3e17: Unknown result type (might be due to invalid IL or missing references) //IL_3e1c: Unknown result type (might be due to invalid IL or missing references) //IL_3e2c: Unknown result type (might be due to invalid IL or missing references) //IL_3e32: Unknown result type (might be due to invalid IL or missing references) //IL_3e37: Unknown result type (might be due to invalid IL or missing references) //IL_3e3d: Unknown result type (might be due to invalid IL or missing references) //IL_3e42: Unknown result type (might be due to invalid IL or missing references) //IL_3e48: Unknown result type (might be due to invalid IL or missing references) //IL_3e52: Unknown result type (might be due to invalid IL or missing references) //IL_3e57: Unknown result type (might be due to invalid IL or missing references) //IL_3e5d: Unknown result type (might be due to invalid IL or missing references) //IL_3e62: Unknown result type (might be due to invalid IL or missing references) //IL_3e68: Unknown result type (might be due to invalid IL or missing references) //IL_3e72: Unknown result type (might be due to invalid IL or missing references) //IL_3e77: Unknown result type (might be due to invalid IL or missing references) //IL_3e82: Unknown result type (might be due to invalid IL or missing references) //IL_3e88: Unknown result type (might be due to invalid IL or missing references) //IL_3e8d: Unknown result type (might be due to invalid IL or missing references) //IL_3e93: Unknown result type (might be due to invalid IL or missing references) //IL_3e98: Unknown result type (might be due to invalid IL or missing references) //IL_3e9e: Unknown result type (might be due to invalid IL or missing references) //IL_3ea8: Unknown result type (might be due to invalid IL or missing references) //IL_3ead: Unknown result type (might be due to invalid IL or missing references) //IL_3eb3: Unknown result type (might be due to invalid IL or missing references) //IL_3eb8: Unknown result type (might be due to invalid IL or missing references) //IL_3ebe: Unknown result type (might be due to invalid IL or missing references) //IL_3ec8: Unknown result type (might be due to invalid IL or missing references) //IL_3ecd: Unknown result type (might be due to invalid IL or missing references) //IL_3ed2: Unknown result type (might be due to invalid IL or missing references) //IL_3ee2: Unknown result type (might be due to invalid IL or missing references) //IL_3ee8: Unknown result type (might be due to invalid IL or missing references) //IL_3eed: Unknown result type (might be due to invalid IL or missing references) //IL_3ef3: Unknown result type (might be due to invalid IL or missing references) //IL_3ef8: Unknown result type (might be due to invalid IL or missing references) //IL_3efe: Unknown result type (might be due to invalid IL or missing references) //IL_3f08: Unknown result type (might be due to invalid IL or missing references) //IL_3f0d: Unknown result type (might be due to invalid IL or missing references) //IL_3f13: Unknown result type (might be due to invalid IL or missing references) //IL_3f18: Unknown result type (might be due to invalid IL or missing references) //IL_3f1e: Unknown result type (might be due to invalid IL or missing references) //IL_3f28: Unknown result type (might be due to invalid IL or missing references) //IL_3f2d: Unknown result type (might be due to invalid IL or missing references) //IL_3f38: Unknown result type (might be due to invalid IL or missing references) //IL_3f3e: Unknown result type (might be due to invalid IL or missing references) //IL_3f43: Unknown result type (might be due to invalid IL or missing references) //IL_3f49: Unknown result type (might be due to invalid IL or missing references) //IL_3f4e: Unknown result type (might be due to invalid IL or missing references) //IL_3f54: Unknown result type (might be due to invalid IL or missing references) //IL_3f5e: Unknown result type (might be due to invalid IL or missing references) //IL_3f63: Unknown result type (might be due to invalid IL or missing references) //IL_3f69: Unknown result type (might be due to invalid IL or missing references) //IL_3f6e: Unknown result type (might be due to invalid IL or missing references) //IL_3f74: Unknown result type (might be due to invalid IL or missing references) //IL_3f7e: Unknown result type (might be due to invalid IL or missing references) //IL_3f83: Unknown result type (might be due to invalid IL or missing references) //IL_3f88: Unknown result type (might be due to invalid IL or missing references) //IL_3f98: Unknown result type (might be due to invalid IL or missing references) //IL_3f9e: Unknown result type (might be due to invalid IL or missing references) //IL_3fa3: Unknown result type (might be due to invalid IL or missing references) //IL_3fa9: Unknown result type (might be due to invalid IL or missing references) //IL_3fae: Unknown result type (might be due to invalid IL or missing references) //IL_3fb4: Unknown result type (might be due to invalid IL or missing references) //IL_3fb9: Unknown result type (might be due to invalid IL or missing references) //IL_3fc4: Unknown result type (might be due to invalid IL or missing references) //IL_3fca: Unknown result type (might be due to invalid IL or missing references) //IL_3fcf: Unknown result type (might be due to invalid IL or missing references) //IL_3fd5: Unknown result type (might be due to invalid IL or missing references) //IL_3fda: Unknown result type (might be due to invalid IL or missing references) //IL_3fe0: Unknown result type (might be due to invalid IL or missing references) //IL_3fea: Unknown result type (might be due to invalid IL or missing references) //IL_3fef: Unknown result type (might be due to invalid IL or missing references) //IL_3ff5: Unknown result type (might be due to invalid IL or missing references) //IL_3ffa: Unknown result type (might be due to invalid IL or missing references) //IL_3fff: Unknown result type (might be due to invalid IL or missing references) //IL_400f: Unknown result type (might be due to invalid IL or missing references) //IL_4015: Unknown result type (might be due to invalid IL or missing references) //IL_401a: Unknown result type (might be due to invalid IL or missing references) //IL_4020: Unknown result type (might be due to invalid IL or missing references) //IL_4025: Unknown result type (might be due to invalid IL or missing references) //IL_402b: Unknown result type (might be due to invalid IL or missing references) //IL_4030: Unknown result type (might be due to invalid IL or missing references) //IL_4036: Unknown result type (might be due to invalid IL or missing references) //IL_4040: Unknown result type (might be due to invalid IL or missing references) //IL_4045: Unknown result type (might be due to invalid IL or missing references) //IL_4050: Unknown result type (might be due to invalid IL or missing references) //IL_4056: Unknown result type (might be due to invalid IL or missing references) //IL_405b: Unknown result type (might be due to invalid IL or missing references) //IL_4061: Unknown result type (might be due to invalid IL or missing references) //IL_4066: Unknown result type (might be due to invalid IL or missing references) //IL_406c: Unknown result type (might be due to invalid IL or missing references) //IL_4076: Unknown result type (might be due to invalid IL or missing references) //IL_407b: Unknown result type (might be due to invalid IL or missing references) //IL_4081: Unknown result type (might be due to invalid IL or missing references) //IL_4086: Unknown result type (might be due to invalid IL or missing references) //IL_408c: Unknown result type (might be due to invalid IL or missing references) //IL_4096: Unknown result type (might be due to invalid IL or missing references) //IL_409b: Unknown result type (might be due to invalid IL or missing references) //IL_40a0: Unknown result type (might be due to invalid IL or missing references) //IL_40b0: Unknown result type (might be due to invalid IL or missing references) //IL_40b6: Unknown result type (might be due to invalid IL or missing references) //IL_40bb: Unknown result type (might be due to invalid IL or missing references) //IL_40c1: Unknown result type (might be due to invalid IL or missing references) //IL_40c6: Unknown result type (might be due to invalid IL or missing references) //IL_40cc: Unknown result type (might be due to invalid IL or missing references) //IL_40d1: Unknown result type (might be due to invalid IL or missing references) //IL_40d7: Unknown result type (might be due to invalid IL or missing references) //IL_40e1: Unknown result type (might be due to invalid IL or missing references) //IL_40e6: Unknown result type (might be due to invalid IL or missing references) //IL_40f1: Unknown result type (might be due to invalid IL or missing references) //IL_40f7: Unknown result type (might be due to invalid IL or missing references) //IL_40fc: Unknown result type (might be due to invalid IL or missing references) //IL_4102: Unknown result type (might be due to invalid IL or missing references) //IL_4107: Unknown result type (might be due to invalid IL or missing references) //IL_410d: Unknown result type (might be due to invalid IL or missing references) //IL_4117: Unknown result type (might be due to invalid IL or missing references) //IL_411c: Unknown result type (might be due to invalid IL or missing references) //IL_4122: Unknown result type (might be due to invalid IL or missing references) //IL_4127: Unknown result type (might be due to invalid IL or missing references) //IL_412d: Unknown result type (might be due to invalid IL or missing references) //IL_4137: Unknown result type (might be due to invalid IL or missing references) //IL_413c: Unknown result type (might be due to invalid IL or missing references) //IL_4141: Unknown result type (might be due to invalid IL or missing references) //IL_4151: Unknown result type (might be due to invalid IL or missing references) //IL_4157: Unknown result type (might be due to invalid IL or missing references) //IL_415c: Unknown result type (might be due to invalid IL or missing references) //IL_4162: Unknown result type (might be due to invalid IL or missing references) //IL_4167: Unknown result type (might be due to invalid IL or missing references) //IL_416d: Unknown result type (might be due to invalid IL or missing references) //IL_4172: Unknown result type (might be due to invalid IL or missing references) //IL_4178: Unknown result type (might be due to invalid IL or missing references) //IL_4182: Unknown result type (might be due to invalid IL or missing references) //IL_4187: Unknown result type (might be due to invalid IL or missing references) //IL_4192: Unknown result type (might be due to invalid IL or missing references) //IL_4198: Unknown result type (might be due to invalid IL or missing references) //IL_419d: Unknown result type (might be due to invalid IL or missing references) //IL_41a3: Unknown result type (might be due to invalid IL or missing references) //IL_41a8: Unknown result type (might be due to invalid IL or missing references) //IL_41ae: Unknown result type (might be due to invalid IL or missing references) //IL_41b8: Unknown result type (might be due to invalid IL or missing references) //IL_41bd: Unknown result type (might be due to invalid IL or missing references) //IL_41c3: Unknown result type (might be due to invalid IL or missing references) //IL_41c8: Unknown result type (might be due to invalid IL or missing references) //IL_41ce: Unknown result type (might be due to invalid IL or missing references) //IL_41d8: Unknown result type (might be due to invalid IL or missing references) //IL_41dd: Unknown result type (might be due to invalid IL or missing references) //IL_41e2: Unknown result type (might be due to invalid IL or missing references) //IL_41f2: Unknown result type (might be due to invalid IL or missing references) //IL_41f8: Unknown result type (might be due to invalid IL or missing references) //IL_41fd: Unknown result type (might be due to invalid IL or missing references) //IL_4203: Unknown result type (might be due to invalid IL or missing references) //IL_4208: Unknown result type (might be due to invalid IL or missing references) //IL_420e: Unknown result type (might be due to invalid IL or missing references) //IL_4213: Unknown result type (might be due to invalid IL or missing references) //IL_4219: Unknown result type (might be due to invalid IL or missing references) //IL_4223: Unknown result type (might be due to invalid IL or missing references) //IL_4228: Unknown result type (might be due to invalid IL or missing references) //IL_4233: Unknown result type (might be due to invalid IL or missing references) //IL_4239: Unknown result type (might be due to invalid IL or missing references) //IL_423e: Unknown result type (might be due to invalid IL or missing references) //IL_4244: Unknown result type (might be due to invalid IL or missing references) //IL_4249: Unknown result type (might be due to invalid IL or missing references) //IL_424f: Unknown result type (might be due to invalid IL or missing references) //IL_4259: Unknown result type (might be due to invalid IL or missing references) //IL_425e: Unknown result type (might be due to invalid IL or missing references) //IL_4264: Unknown result type (might be due to invalid IL or missing references) //IL_4269: Unknown result type (might be due to invalid IL or missing references) //IL_426f: Unknown result type (might be due to invalid IL or missing references) //IL_4279: Unknown result type (might be due to invalid IL or missing references) //IL_427e: Unknown result type (might be due to invalid IL or missing references) //IL_4283: Unknown result type (might be due to invalid IL or missing references) //IL_4293: Unknown result type (might be due to invalid IL or missing references) //IL_4299: Unknown result type (might be due to invalid IL or missing references) //IL_429e: Unknown result type (might be due to invalid IL or missing references) //IL_42a4: Unknown result type (might be due to invalid IL or missing references) //IL_42a9: Unknown result type (might be due to invalid IL or missing references) //IL_42af: Unknown result type (might be due to invalid IL or missing references) //IL_42b4: Unknown result type (might be due to invalid IL or missing references) //IL_42ba: Unknown result type (might be due to invalid IL or missing references) //IL_42c4: Unknown result type (might be due to invalid IL or missing references) //IL_42c9: Unknown result type (might be due to invalid IL or missing references) //IL_42d4: Unknown result type (might be due to invalid IL or missing references) //IL_42da: Unknown result type (might be due to invalid IL or missing references) //IL_42df: Unknown result type (might be due to invalid IL or missing references) //IL_42e5: Unknown result type (might be due to invalid IL or missing references) //IL_42ea: Unknown result type (might be due to invalid IL or missing references) //IL_42f0: Unknown result type (might be due to invalid IL or missing references) //IL_42fa: Unknown result type (might be due to invalid IL or missing references) //IL_42ff: Unknown result type (might be due to invalid IL or missing references) //IL_4305: Unknown result type (might be due to invalid IL or missing references) //IL_430a: Unknown result type (might be due to invalid IL or missing references) //IL_4310: Unknown result type (might be due to invalid IL or missing references) //IL_431a: Unknown result type (might be due to invalid IL or missing references) //IL_431f: Unknown result type (might be due to invalid IL or missing references) //IL_4324: Unknown result type (might be due to invalid IL or missing references) //IL_4334: Unknown result type (might be due to invalid IL or missing references) //IL_433a: Unknown result type (might be due to invalid IL or missing references) //IL_433f: Unknown result type (might be due to invalid IL or missing references) //IL_4345: Unknown result type (might be due to invalid IL or missing references) //IL_434a: Unknown result type (might be due to invalid IL or missing references) //IL_4350: Unknown result type (might be due to invalid IL or missing references) //IL_4355: Unknown result type (might be due to invalid IL or missing references) //IL_435b: Unknown result type (might be due to invalid IL or missing references) //IL_4365: Unknown result type (might be due to invalid IL or missing references) //IL_436a: Unknown result type (might be due to invalid IL or missing references) //IL_4375: Unknown result type (might be due to invalid IL or missing references) //IL_437b: Unknown result type (might be due to invalid IL or missing references) //IL_4380: Unknown result type (might be due to invalid IL or missing references) //IL_4386: Unknown result type (might be due to invalid IL or missing references) //IL_438b: Unknown result type (might be due to invalid IL or missing references) //IL_4391: Unknown result type (might be due to invalid IL or missing references) //IL_439b: Unknown result type (might be due to invalid IL or missing references) //IL_43a0: Unknown result type (might be due to invalid IL or missing references) //IL_43a6: Unknown result type (might be due to invalid IL or missing references) //IL_43ab: Unknown result type (might be due to invalid IL or missing references) //IL_43b1: Unknown result type (might be due to invalid IL or missing references) //IL_43bb: Unknown result type (might be due to invalid IL or missing references) //IL_43c0: Unknown result type (might be due to invalid IL or missing references) //IL_43c5: Unknown result type (might be due to invalid IL or missing references) //IL_43d5: Unknown result type (might be due to invalid IL or missing references) //IL_43db: Unknown result type (might be due to invalid IL or missing references) //IL_43e0: Unknown result type (might be due to invalid IL or missing references) //IL_43e6: Unknown result type (might be due to invalid IL or missing references) //IL_43eb: Unknown result type (might be due to invalid IL or missing references) //IL_43f1: Unknown result type (might be due to invalid IL or missing references) //IL_43f6: Unknown result type (might be due to invalid IL or missing references) //IL_43fc: Unknown result type (might be due to invalid IL or missing references) //IL_4406: Unknown result type (might be due to invalid IL or missing references) //IL_440b: Unknown result type (might be due to invalid IL or missing references) //IL_4416: Unknown result type (might be due to invalid IL or missing references) //IL_441c: Unknown result type (might be due to invalid IL or missing references) //IL_4421: Unknown result type (might be due to invalid IL or missing references) //IL_4427: Unknown result type (might be due to invalid IL or missing references) //IL_442c: Unknown result type (might be due to invalid IL or missing references) //IL_4432: Unknown result type (might be due to invalid IL or missing references) //IL_443c: Unknown result type (might be due to invalid IL or missing references) //IL_4441: Unknown result type (might be due to invalid IL or missing references) //IL_4447: Unknown result type (might be due to invalid IL or missing references) //IL_444c: Unknown result type (might be due to invalid IL or missing references) //IL_4452: Unknown result type (might be due to invalid IL or missing references) //IL_445c: Unknown result type (might be due to invalid IL or missing references) //IL_4461: Unknown result type (might be due to invalid IL or missing references) //IL_4466: Unknown result type (might be due to invalid IL or missing references) //IL_4476: Unknown result type (might be due to invalid IL or missing references) //IL_447c: Unknown result type (might be due to invalid IL or missing references) //IL_4481: Unknown result type (might be due to invalid IL or missing references) //IL_4487: Unknown result type (might be due to invalid IL or missing references) //IL_448c: Unknown result type (might be due to invalid IL or missing references) //IL_4492: Unknown result type (might be due to invalid IL or missing references) //IL_449c: Unknown result type (might be due to invalid IL or missing references) //IL_44a1: Unknown result type (might be due to invalid IL or missing references) //IL_44a7: Unknown result type (might be due to invalid IL or missing references) //IL_44ac: Unknown result type (might be due to invalid IL or missing references) //IL_44b7: Unknown result type (might be due to invalid IL or missing references) //IL_44bd: Unknown result type (might be due to invalid IL or missing references) //IL_44c2: Unknown result type (might be due to invalid IL or missing references) //IL_44c8: Unknown result type (might be due to invalid IL or missing references) //IL_44cd: Unknown result type (might be due to invalid IL or missing references) //IL_44d3: Unknown result type (might be due to invalid IL or missing references) //IL_44d8: Unknown result type (might be due to invalid IL or missing references) //IL_44dd: Unknown result type (might be due to invalid IL or missing references) //IL_44ed: Unknown result type (might be due to invalid IL or missing references) //IL_44f3: Unknown result type (might be due to invalid IL or missing references) //IL_44f8: Unknown result type (might be due to invalid IL or missing references) //IL_44fe: Unknown result type (might be due to invalid IL or missing references) //IL_4503: Unknown result type (might be due to invalid IL or missing references) //IL_4509: Unknown result type (might be due to invalid IL or missing references) //IL_4513: Unknown result type (might be due to invalid IL or missing references) //IL_4518: Unknown result type (might be due to invalid IL or missing references) //IL_451e: Unknown result type (might be due to invalid IL or missing references) //IL_4523: Unknown result type (might be due to invalid IL or missing references) //IL_4529: Unknown result type (might be due to invalid IL or missing references) //IL_4533: Unknown result type (might be due to invalid IL or missing references) //IL_4538: Unknown result type (might be due to invalid IL or missing references) //IL_4543: Unknown result type (might be due to invalid IL or missing references) //IL_4549: Unknown result type (might be due to invalid IL or missing references) //IL_454e: Unknown result type (might be due to invalid IL or missing references) //IL_4554: Unknown result type (might be due to invalid IL or missing references) //IL_4559: Unknown result type (might be due to invalid IL or missing references) //IL_455f: Unknown result type (might be due to invalid IL or missing references) //IL_4564: Unknown result type (might be due to invalid IL or missing references) //IL_456a: Unknown result type (might be due to invalid IL or missing references) //IL_4574: Unknown result type (might be due to invalid IL or missing references) //IL_4579: Unknown result type (might be due to invalid IL or missing references) //IL_457e: Unknown result type (might be due to invalid IL or missing references) //IL_458e: Unknown result type (might be due to invalid IL or missing references) //IL_4594: Unknown result type (might be due to invalid IL or missing references) //IL_4599: Unknown result type (might be due to invalid IL or missing references) //IL_459f: Unknown result type (might be due to invalid IL or missing references) //IL_45a4: Unknown result type (might be due to invalid IL or missing references) //IL_45aa: Unknown result type (might be due to invalid IL or missing references) //IL_45b4: Unknown result type (might be due to invalid IL or missing references) //IL_45b9: Unknown result type (might be due to invalid IL or missing references) //IL_45bf: Unknown result type (might be due to invalid IL or missing references) //IL_45c4: Unknown result type (might be due to invalid IL or missing references) //IL_45ca: Unknown result type (might be due to invalid IL or missing references) //IL_45d4: Unknown result type (might be due to invalid IL or missing references) //IL_45d9: Unknown result type (might be due to invalid IL or missing references) //IL_45e4: Unknown result type (might be due to invalid IL or missing references) //IL_45ea: Unknown result type (might be due to invalid IL or missing references) //IL_45ef: Unknown result type (might be due to invalid IL or missing references) //IL_45f5: Unknown result type (might be due to invalid IL or missing references) //IL_45fa: Unknown result type (might be due to invalid IL or missing references) //IL_4600: Unknown result type (might be due to invalid IL or missing references) //IL_4605: Unknown result type (might be due to invalid IL or missing references) //IL_460b: Unknown result type (might be due to invalid IL or missing references) //IL_4615: Unknown result type (might be due to invalid IL or missing references) //IL_461a: Unknown result type (might be due to invalid IL or missing references) //IL_461f: Unknown result type (might be due to invalid IL or missing references) //IL_462f: Unknown result type (might be due to invalid IL or missing references) //IL_4635: Unknown result type (might be due to invalid IL or missing references) //IL_463a: Unknown result type (might be due to invalid IL or missing references) //IL_4640: Unknown result type (might be due to invalid IL or missing references) //IL_4645: Unknown result type (might be due to invalid IL or missing references) //IL_464b: Unknown result type (might be due to invalid IL or missing references) //IL_4655: Unknown result type (might be due to invalid IL or missing references) //IL_465a: Unknown result type (might be due to invalid IL or missing references) //IL_4660: Unknown result type (might be due to invalid IL or missing references) //IL_4665: Unknown result type (might be due to invalid IL or missing references) //IL_466b: Unknown result type (might be due to invalid IL or missing references) //IL_4675: Unknown result type (might be due to invalid IL or missing references) //IL_467a: Unknown result type (might be due to invalid IL or missing references) //IL_4685: Unknown result type (might be due to invalid IL or missing references) //IL_468b: Unknown result type (might be due to invalid IL or missing references) //IL_4690: Unknown result type (might be due to invalid IL or missing references) //IL_4696: Unknown result type (might be due to invalid IL or missing references) //IL_469b: Unknown result type (might be due to invalid IL or missing references) //IL_46a1: Unknown result type (might be due to invalid IL or missing references) //IL_46a6: Unknown result type (might be due to invalid IL or missing references) //IL_46ac: Unknown result type (might be due to invalid IL or missing references) //IL_46b6: Unknown result type (might be due to invalid IL or missing references) //IL_46bb: Unknown result type (might be due to invalid IL or missing references) //IL_46c0: Unknown result type (might be due to invalid IL or missing references) //IL_46d0: Unknown result type (might be due to invalid IL or missing references) //IL_46d6: Unknown result type (might be due to invalid IL or missing references) //IL_46db: Unknown result type (might be due to invalid IL or missing references) //IL_46e1: Unknown result type (might be due to invalid IL or missing references) //IL_46e6: Unknown result type (might be due to invalid IL or missing references) //IL_46ec: Unknown result type (might be due to invalid IL or missing references) //IL_46f6: Unknown result type (might be due to invalid IL or missing references) //IL_46fb: Unknown result type (might be due to invalid IL or missing references) //IL_4701: Unknown result type (might be due to invalid IL or missing references) //IL_4706: Unknown result type (might be due to invalid IL or missing references) //IL_470c: Unknown result type (might be due to invalid IL or missing references) //IL_4716: Unknown result type (might be due to invalid IL or missing references) //IL_471b: Unknown result type (might be due to invalid IL or missing references) //IL_4726: Unknown result type (might be due to invalid IL or missing references) //IL_472c: Unknown result type (might be due to invalid IL or missing references) //IL_4731: Unknown result type (might be due to invalid IL or missing references) //IL_4737: Unknown result type (might be due to invalid IL or missing references) //IL_473c: Unknown result type (might be due to invalid IL or missing references) //IL_4742: Unknown result type (might be due to invalid IL or missing references) //IL_4747: Unknown result type (might be due to invalid IL or missing references) //IL_474d: Unknown result type (might be due to invalid IL or missing references) //IL_4757: Unknown result type (might be due to invalid IL or missing references) //IL_475c: Unknown result type (might be due to invalid IL or missing references) //IL_4761: Unknown result type (might be due to invalid IL or missing references) //IL_4771: Unknown result type (might be due to invalid IL or missing references) //IL_4777: Unknown result type (might be due to invalid IL or missing references) //IL_477c: Unknown result type (might be due to invalid IL or missing references) //IL_4782: Unknown result type (might be due to invalid IL or missing references) //IL_4787: Unknown result type (might be due to invalid IL or missing references) //IL_478d: Unknown result type (might be due to invalid IL or missing references) //IL_4797: Unknown result type (might be due to invalid IL or missing references) //IL_479c: Unknown result type (might be due to invalid IL or missing references) //IL_47a2: Unknown result type (might be due to invalid IL or missing references) //IL_47a7: Unknown result type (might be due to invalid IL or missing references) //IL_47ad: Unknown result type (might be due to invalid IL or missing references) //IL_47b7: Unknown result type (might be due to invalid IL or missing references) //IL_47bc: Unknown result type (might be due to invalid IL or missing references) //IL_47c7: Unknown result type (might be due to invalid IL or missing references) //IL_47cd: Unknown result type (might be due to invalid IL or missing references) //IL_47d2: Unknown result type (might be due to invalid IL or missing references) //IL_47d8: Unknown result type (might be due to invalid IL or missing references) //IL_47dd: Unknown result type (might be due to invalid IL or missing references) //IL_47e3: Unknown result type (might be due to invalid IL or missing references) //IL_47e8: Unknown result type (might be due to invalid IL or missing references) //IL_47ee: Unknown result type (might be due to invalid IL or missing references) //IL_47f8: Unknown result type (might be due to invalid IL or missing references) //IL_47fd: Unknown result type (might be due to invalid IL or missing references) //IL_4802: Unknown result type (might be due to invalid IL or missing references) //IL_4812: Unknown result type (might be due to invalid IL or missing references) //IL_4818: Unknown result type (might be due to invalid IL or missing references) //IL_481d: Unknown result type (might be due to invalid IL or missing references) //IL_4823: Unknown result type (might be due to invalid IL or missing references) //IL_4828: Unknown result type (might be due to invalid IL or missing references) //IL_482e: Unknown result type (might be due to invalid IL or missing references) //IL_4838: Unknown result type (might be due to invalid IL or missing references) //IL_483d: Unknown result type (might be due to invalid IL or missing references) //IL_4843: Unknown result type (might be due to invalid IL or missing references) //IL_4848: Unknown result type (might be due to invalid IL or missing references) //IL_484e: Unknown result type (might be due to invalid IL or missing references) //IL_4858: Unknown result type (might be due to invalid IL or missing references) //IL_485d: Unknown result type (might be due to invalid IL or missing references) //IL_4868: Unknown result type (might be due to invalid IL or missing references) //IL_486e: Unknown result type (might be due to invalid IL or missing references) //IL_4873: Unknown result type (might be due to invalid IL or missing references) //IL_4879: Unknown result type (might be due to invalid IL or missing references) //IL_487e: Unknown result type (might be due to invalid IL or missing references) //IL_4884: Unknown result type (might be due to invalid IL or missing references) //IL_4889: Unknown result type (might be due to invalid IL or missing references) //IL_488f: Unknown result type (might be due to invalid IL or missing references) //IL_4899: Unknown result type (might be due to invalid IL or missing references) //IL_489e: Unknown result type (might be due to invalid IL or missing references) //IL_48a3: Unknown result type (might be due to invalid IL or missing references) //IL_48b3: Unknown result type (might be due to invalid IL or missing references) //IL_48b9: Unknown result type (might be due to invalid IL or missing references) //IL_48be: Unknown result type (might be due to invalid IL or missing references) //IL_48c4: Unknown result type (might be due to invalid IL or missing references) //IL_48c9: Unknown result type (might be due to invalid IL or missing references) //IL_48cf: Unknown result type (might be due to invalid IL or missing references) //IL_48d9: Unknown result type (might be due to invalid IL or missing references) //IL_48de: Unknown result type (might be due to invalid IL or missing references) //IL_48e4: Unknown result type (might be due to invalid IL or missing references) //IL_48e9: Unknown result type (might be due to invalid IL or missing references) //IL_48ef: Unknown result type (might be due to invalid IL or missing references) //IL_48f9: Unknown result type (might be due to invalid IL or missing references) //IL_48fe: Unknown result type (might be due to invalid IL or missing references) //IL_4909: Unknown result type (might be due to invalid IL or missing references) //IL_490f: Unknown result type (might be due to invalid IL or missing references) //IL_4914: Unknown result type (might be due to invalid IL or missing references) //IL_491a: Unknown result type (might be due to invalid IL or missing references) //IL_491f: Unknown result type (might be due to invalid IL or missing references) //IL_4925: Unknown result type (might be due to invalid IL or missing references) //IL_492a: Unknown result type (might be due to invalid IL or missing references) //IL_4930: Unknown result type (might be due to invalid IL or missing references) //IL_493a: Unknown result type (might be due to invalid IL or missing references) //IL_493f: Unknown result type (might be due to invalid IL or missing references) //IL_4944: Unknown result type (might be due to invalid IL or missing references) //IL_4954: Unknown result type (might be due to invalid IL or missing references) //IL_495a: Unknown result type (might be due to invalid IL or missing references) //IL_495f: Unknown result type (might be due to invalid IL or missing references) //IL_4965: Unknown result type (might be due to invalid IL or missing references) //IL_496a: Unknown result type (might be due to invalid IL or missing references) //IL_4970: Unknown result type (might be due to invalid IL or missing references) //IL_497a: Unknown result type (might be due to invalid IL or missing references) //IL_497f: Unknown result type (might be due to invalid IL or missing references) //IL_4985: Unknown result type (might be due to invalid IL or missing references) //IL_498a: Unknown result type (might be due to invalid IL or missing references) //IL_4995: Unknown result type (might be due to invalid IL or missing references) //IL_499b: Unknown result type (might be due to invalid IL or missing references) //IL_49a0: Unknown result type (might be due to invalid IL or missing references) //IL_49a6: Unknown result type (might be due to invalid IL or missing references) //IL_49ab: Unknown result type (might be due to invalid IL or missing references) //IL_49b1: Unknown result type (might be due to invalid IL or missing references) //IL_49bb: Unknown result type (might be due to invalid IL or missing references) //IL_49c0: Unknown result type (might be due to invalid IL or missing references) //IL_49c6: Unknown result type (might be due to invalid IL or missing references) //IL_49cb: Unknown result type (might be due to invalid IL or missing references) //IL_49d0: Unknown result type (might be due to invalid IL or missing references) //IL_49e0: Unknown result type (might be due to invalid IL or missing references) //IL_49e6: Unknown result type (might be due to invalid IL or missing references) //IL_49eb: Unknown result type (might be due to invalid IL or missing references) //IL_49f1: Unknown result type (might be due to invalid IL or missing references) //IL_49f6: Unknown result type (might be due to invalid IL or missing references) //IL_49fc: Unknown result type (might be due to invalid IL or missing references) //IL_4a06: Unknown result type (might be due to invalid IL or missing references) //IL_4a0b: Unknown result type (might be due to invalid IL or missing references) //IL_4a11: Unknown result type (might be due to invalid IL or missing references) //IL_4a16: Unknown result type (might be due to invalid IL or missing references) //IL_4a1c: Unknown result type (might be due to invalid IL or missing references) //IL_4a26: Unknown result type (might be due to invalid IL or missing references) //IL_4a2b: Unknown result type (might be due to invalid IL or missing references) //IL_4a36: Unknown result type (might be due to invalid IL or missing references) //IL_4a3c: Unknown result type (might be due to invalid IL or missing references) //IL_4a41: Unknown result type (might be due to invalid IL or missing references) //IL_4a47: Unknown result type (might be due to invalid IL or missing references) //IL_4a4c: Unknown result type (might be due to invalid IL or missing references) //IL_4a52: Unknown result type (might be due to invalid IL or missing references) //IL_4a5c: Unknown result type (might be due to invalid IL or missing references) //IL_4a61: Unknown result type (might be due to invalid IL or missing references) //IL_4a67: Unknown result type (might be due to invalid IL or missing references) //IL_4a6c: Unknown result type (might be due to invalid IL or missing references) //IL_4a72: Unknown result type (might be due to invalid IL or missing references) //IL_4a7c: Unknown result type (might be due to invalid IL or missing references) //IL_4a81: Unknown result type (might be due to invalid IL or missing references) //IL_4a86: Unknown result type (might be due to invalid IL or missing references) //IL_4a96: Unknown result type (might be due to invalid IL or missing references) //IL_4a9c: Unknown result type (might be due to invalid IL or missing references) //IL_4aa1: Unknown result type (might be due to invalid IL or missing references) //IL_4aa7: Unknown result type (might be due to invalid IL or missing references) //IL_4aac: Unknown result type (might be due to invalid IL or missing references) //IL_4ab2: Unknown result type (might be due to invalid IL or missing references) //IL_4abc: Unknown result type (might be due to invalid IL or missing references) //IL_4ac1: Unknown result type (might be due to invalid IL or missing references) //IL_4ac7: Unknown result type (might be due to invalid IL or missing references) //IL_4acc: Unknown result type (might be due to invalid IL or missing references) //IL_4ad2: Unknown result type (might be due to invalid IL or missing references) //IL_4adc: Unknown result type (might be due to invalid IL or missing references) //IL_4ae1: Unknown result type (might be due to invalid IL or missing references) //IL_4aec: Unknown result type (might be due to invalid IL or missing references) //IL_4af2: Unknown result type (might be due to invalid IL or missing references) //IL_4af7: Unknown result type (might be due to invalid IL or missing references) //IL_4afd: Unknown result type (might be due to invalid IL or missing references) //IL_4b02: Unknown result type (might be due to invalid IL or missing references) //IL_4b08: Unknown result type (might be due to invalid IL or missing references) //IL_4b12: Unknown result type (might be due to invalid IL or missing references) //IL_4b17: Unknown result type (might be due to invalid IL or missing references) //IL_4b1d: Unknown result type (might be due to invalid IL or missing references) //IL_4b22: Unknown result type (might be due to invalid IL or missing references) //IL_4b28: Unknown result type (might be due to invalid IL or missing references) //IL_4b32: Unknown result type (might be due to invalid IL or missing references) //IL_4b37: Unknown result type (might be due to invalid IL or missing references) //IL_4b3c: Unknown result type (might be due to invalid IL or missing references) //IL_4b4c: Unknown result type (might be due to invalid IL or missing references) //IL_4b52: Unknown result type (might be due to invalid IL or missing references) //IL_4b57: Unknown result type (might be due to invalid IL or missing references) //IL_4b5d: Unknown result type (might be due to invalid IL or missing references) //IL_4b62: Unknown result type (might be due to invalid IL or missing references) //IL_4b68: Unknown result type (might be due to invalid IL or missing references) //IL_4b72: Unknown result type (might be due to invalid IL or missing references) //IL_4b77: Unknown result type (might be due to invalid IL or missing references) //IL_4b7d: Unknown result type (might be due to invalid IL or missing references) //IL_4b82: Unknown result type (might be due to invalid IL or missing references) //IL_4b88: Unknown result type (might be due to invalid IL or missing references) //IL_4b92: Unknown result type (might be due to invalid IL or missing references) //IL_4b97: Unknown result type (might be due to invalid IL or missing references) //IL_4ba2: Unknown result type (might be due to invalid IL or missing references) //IL_4ba8: Unknown result type (might be due to invalid IL or missing references) //IL_4bad: Unknown result type (might be due to invalid IL or missing references) //IL_4bb3: Unknown result type (might be due to invalid IL or missing references) //IL_4bb8: Unknown result type (might be due to invalid IL or missing references) //IL_4bbe: Unknown result type (might be due to invalid IL or missing references) //IL_4bc8: Unknown result type (might be due to invalid IL or missing references) //IL_4bcd: Unknown result type (might be due to invalid IL or missing references) //IL_4bd3: Unknown result type (might be due to invalid IL or missing references) //IL_4bd8: Unknown result type (might be due to invalid IL or missing references) //IL_4bde: Unknown result type (might be due to invalid IL or missing references) //IL_4be8: Unknown result type (might be due to invalid IL or missing references) //IL_4bed: Unknown result type (might be due to invalid IL or missing references) //IL_4bf2: Unknown result type (might be due to invalid IL or missing references) //IL_4c02: Unknown result type (might be due to invalid IL or missing references) //IL_4c08: Unknown result type (might be due to invalid IL or missing references) //IL_4c0d: Unknown result type (might be due to invalid IL or missing references) //IL_4c13: Unknown result type (might be due to invalid IL or missing references) //IL_4c18: Unknown result type (might be due to invalid IL or missing references) //IL_4c1e: Unknown result type (might be due to invalid IL or missing references) //IL_4c28: Unknown result type (might be due to invalid IL or missing references) //IL_4c2d: Unknown result type (might be due to invalid IL or missing references) //IL_4c33: Unknown result type (might be due to invalid IL or missing references) //IL_4c38: Unknown result type (might be due to invalid IL or missing references) //IL_4c3e: Unknown result type (might be due to invalid IL or missing references) //IL_4c48: Unknown result type (might be due to invalid IL or missing references) //IL_4c4d: Unknown result type (might be due to invalid IL or missing references) //IL_4c58: Unknown result type (might be due to invalid IL or missing references) //IL_4c5e: Unknown result type (might be due to invalid IL or missing references) //IL_4c63: Unknown result type (might be due to invalid IL or missing references) //IL_4c69: Unknown result type (might be due to invalid IL or missing references) //IL_4c6e: Unknown result type (might be due to invalid IL or missing references) //IL_4c74: Unknown result type (might be due to invalid IL or missing references) //IL_4c7e: Unknown result type (might be due to invalid IL or missing references) //IL_4c83: Unknown result type (might be due to invalid IL or missing references) //IL_4c89: Unknown result type (might be due to invalid IL or missing references) //IL_4c8e: Unknown result type (might be due to invalid IL or missing references) //IL_4c94: Unknown result type (might be due to invalid IL or missing references) //IL_4c9e: Unknown result type (might be due to invalid IL or missing references) //IL_4ca3: Unknown result type (might be due to invalid IL or missing references) //IL_4ca8: Unknown result type (might be due to invalid IL or missing references) //IL_4cb8: Unknown result type (might be due to invalid IL or missing references) //IL_4cbe: Unknown result type (might be due to invalid IL or missing references) //IL_4cc3: Unknown result type (might be due to invalid IL or missing references) //IL_4cc9: Unknown result type (might be due to invalid IL or missing references) //IL_4cce: Unknown result type (might be due to invalid IL or missing references) //IL_4cd4: Unknown result type (might be due to invalid IL or missing references) //IL_4cde: Unknown result type (might be due to invalid IL or missing references) //IL_4ce3: Unknown result type (might be due to invalid IL or missing references) //IL_4ce9: Unknown result type (might be due to invalid IL or missing references) //IL_4cee: Unknown result type (might be due to invalid IL or missing references) //IL_4cf4: Unknown result type (might be due to invalid IL or missing references) //IL_4cfe: Unknown result type (might be due to invalid IL or missing references) //IL_4d03: Unknown result type (might be due to invalid IL or missing references) //IL_4d0e: Unknown result type (might be due to invalid IL or missing references) //IL_4d14: Unknown result type (might be due to invalid IL or missing references) //IL_4d19: Unknown result type (might be due to invalid IL or missing references) //IL_4d1f: Unknown result type (might be due to invalid IL or missing references) //IL_4d24: Unknown result type (might be due to invalid IL or missing references) //IL_4d2a: Unknown result type (might be due to invalid IL or missing references) //IL_4d34: Unknown result type (might be due to invalid IL or missing references) //IL_4d39: Unknown result type (might be due to invalid IL or missing references) //IL_4d3f: Unknown result type (might be due to invalid IL or missing references) //IL_4d44: Unknown result type (might be due to invalid IL or missing references) //IL_4d4a: Unknown result type (might be due to invalid IL or missing references) //IL_4d54: Unknown result type (might be due to invalid IL or missing references) //IL_4d59: Unknown result type (might be due to invalid IL or missing references) //IL_4d5e: Unknown result type (might be due to invalid IL or missing references) //IL_4d6e: Unknown result type (might be due to invalid IL or missing references) //IL_4d74: Unknown result type (might be due to invalid IL or missing references) //IL_4d79: Unknown result type (might be due to invalid IL or missing references) //IL_4d7f: Unknown result type (might be due to invalid IL or missing references) //IL_4d84: Unknown result type (might be due to invalid IL or missing references) //IL_4d8a: Unknown result type (might be due to invalid IL or missing references) //IL_4d94: Unknown result type (might be due to invalid IL or missing references) //IL_4d99: Unknown result type (might be due to invalid IL or missing references) //IL_4d9f: Unknown result type (might be due to invalid IL or missing references) //IL_4da4: Unknown result type (might be due to invalid IL or missing references) //IL_4daa: Unknown result type (might be due to invalid IL or missing references) //IL_4db4: Unknown result type (might be due to invalid IL or missing references) //IL_4db9: Unknown result type (might be due to invalid IL or missing references) //IL_4dc4: Unknown result type (might be due to invalid IL or missing references) //IL_4dca: Unknown result type (might be due to invalid IL or missing references) //IL_4dcf: Unknown result type (might be due to invalid IL or missing references) //IL_4dd5: Unknown result type (might be due to invalid IL or missing references) //IL_4dda: Unknown result type (might be due to invalid IL or missing references) //IL_4de0: Unknown result type (might be due to invalid IL or missing references) //IL_4dea: Unknown result type (might be due to invalid IL or missing references) //IL_4def: Unknown result type (might be due to invalid IL or missing references) //IL_4df5: Unknown result type (might be due to invalid IL or missing references) //IL_4dfa: Unknown result type (might be due to invalid IL or missing references) //IL_4e00: Unknown result type (might be due to invalid IL or missing references) //IL_4e0a: Unknown result type (might be due to invalid IL or missing references) //IL_4e0f: Unknown result type (might be due to invalid IL or missing references) //IL_4e14: Unknown result type (might be due to invalid IL or missing references) //IL_4e24: Unknown result type (might be due to invalid IL or missing references) //IL_4e2a: Unknown result type (might be due to invalid IL or missing references) //IL_4e2f: Unknown result type (might be due to invalid IL or missing references) //IL_4e35: Unknown result type (might be due to invalid IL or missing references) //IL_4e3a: Unknown result type (might be due to invalid IL or missing references) //IL_4e40: Unknown result type (might be due to invalid IL or missing references) //IL_4e4a: Unknown result type (might be due to invalid IL or missing references) //IL_4e4f: Unknown result type (might be due to invalid IL or missing references) //IL_4e55: Unknown result type (might be due to invalid IL or missing references) //IL_4e5a: Unknown result type (might be due to invalid IL or missing references) //IL_4e60: Unknown result type (might be due to invalid IL or missing references) //IL_4e6a: Unknown result type (might be due to invalid IL or missing references) //IL_4e6f: Unknown result type (might be due to invalid IL or missing references) //IL_4e7a: Unknown result type (might be due to invalid IL or missing references) //IL_4e80: Unknown result type (might be due to invalid IL or missing references) //IL_4e85: Unknown result type (might be due to invalid IL or missing references) //IL_4e8b: Unknown result type (might be due to invalid IL or missing references) //IL_4e90: Unknown result type (might be due to invalid IL or missing references) //IL_4e96: Unknown result type (might be due to invalid IL or missing references) //IL_4ea0: Unknown result type (might be due to invalid IL or missing references) //IL_4ea5: Unknown result type (might be due to invalid IL or missing references) //IL_4eab: Unknown result type (might be due to invalid IL or missing references) //IL_4eb0: Unknown result type (might be due to invalid IL or missing references) //IL_4eb6: Unknown result type (might be due to invalid IL or missing references) //IL_4ec0: Unknown result type (might be due to invalid IL or missing references) //IL_4ec5: Unknown result type (might be due to invalid IL or missing references) //IL_4eca: Unknown result type (might be due to invalid IL or missing references) //IL_4eda: Unknown result type (might be due to invalid IL or missing references) //IL_4ee0: Unknown result type (might be due to invalid IL or missing references) //IL_4ee5: Unknown result type (might be due to invalid IL or missing references) //IL_4eeb: Unknown result type (might be due to invalid IL or missing references) //IL_4ef0: Unknown result type (might be due to invalid IL or missing references) //IL_4ef6: Unknown result type (might be due to invalid IL or missing references) //IL_4f00: Unknown result type (might be due to invalid IL or missing references) //IL_4f05: Unknown result type (might be due to invalid IL or missing references) //IL_4f0b: Unknown result type (might be due to invalid IL or missing references) //IL_4f10: Unknown result type (might be due to invalid IL or missing references) //IL_4f1b: Unknown result type (might be due to invalid IL or missing references) //IL_4f21: Unknown result type (might be due to invalid IL or missing references) //IL_4f26: Unknown result type (might be due to invalid IL or missing references) //IL_4f2c: Unknown result type (might be due to invalid IL or missing references) //IL_4f31: Unknown result type (might be due to invalid IL or missing references) //IL_4f37: Unknown result type (might be due to invalid IL or missing references) //IL_4f41: Unknown result type (might be due to invalid IL or missing references) //IL_4f46: Unknown result type (might be due to invalid IL or missing references) //IL_4f4c: Unknown result type (might be due to invalid IL or missing references) //IL_4f51: Unknown result type (might be due to invalid IL or missing references) //IL_4f56: Unknown result type (might be due to invalid IL or missing references) //IL_4f66: Unknown result type (might be due to invalid IL or missing references) //IL_4f6c: Unknown result type (might be due to invalid IL or missing references) //IL_4f71: Unknown result type (might be due to invalid IL or missing references) //IL_4f77: Unknown result type (might be due to invalid IL or missing references) //IL_4f7c: Unknown result type (might be due to invalid IL or missing references) //IL_4f82: Unknown result type (might be due to invalid IL or missing references) //IL_4f8c: Unknown result type (might be due to invalid IL or missing references) //IL_4f91: Unknown result type (might be due to invalid IL or missing references) //IL_4f97: Unknown result type (might be due to invalid IL or missing references) //IL_4f9c: Unknown result type (might be due to invalid IL or missing references) //IL_4fa2: Unknown result type (might be due to invalid IL or missing references) //IL_4fac: Unknown result type (might be due to invalid IL or missing references) //IL_4fb1: Unknown result type (might be due to invalid IL or missing references) //IL_4fbc: Unknown result type (might be due to invalid IL or missing references) //IL_4fc2: Unknown result type (might be due to invalid IL or missing references) //IL_4fc7: Unknown result type (might be due to invalid IL or missing references) //IL_4fcd: Unknown result type (might be due to invalid IL or missing references) //IL_4fd2: Unknown result type (might be due to invalid IL or missing references) //IL_4fd8: Unknown result type (might be due to invalid IL or missing references) //IL_4fe2: Unknown result type (might be due to invalid IL or missing references) //IL_4fe7: Unknown result type (might be due to invalid IL or missing references) //IL_4fed: Unknown result type (might be due to invalid IL or missing references) //IL_4ff2: Unknown result type (might be due to invalid IL or missing references) //IL_4ff8: Unknown result type (might be due to invalid IL or missing references) //IL_5002: Unknown result type (might be due to invalid IL or missing references) //IL_5007: Unknown result type (might be due to invalid IL or missing references) //IL_500c: Unknown result type (might be due to invalid IL or missing references) //IL_501c: Unknown result type (might be due to invalid IL or missing references) //IL_5022: Unknown result type (might be due to invalid IL or missing references) //IL_5027: Unknown result type (might be due to invalid IL or missing references) //IL_502d: Unknown result type (might be due to invalid IL or missing references) //IL_5032: Unknown result type (might be due to invalid IL or missing references) //IL_5038: Unknown result type (might be due to invalid IL or missing references) //IL_5042: Unknown result type (might be due to invalid IL or missing references) //IL_5047: Unknown result type (might be due to invalid IL or missing references) //IL_504d: Unknown result type (might be due to invalid IL or missing references) //IL_5052: Unknown result type (might be due to invalid IL or missing references) //IL_5058: Unknown result type (might be due to invalid IL or missing references) //IL_5062: Unknown result type (might be due to invalid IL or missing references) //IL_5067: Unknown result type (might be due to invalid IL or missing references) //IL_5072: Unknown result type (might be due to invalid IL or missing references) //IL_5078: Unknown result type (might be due to invalid IL or missing references) //IL_507d: Unknown result type (might be due to invalid IL or missing references) //IL_5083: Unknown result type (might be due to invalid IL or missing references) //IL_5088: Unknown result type (might be due to invalid IL or missing references) //IL_508e: Unknown result type (might be due to invalid IL or missing references) //IL_5098: Unknown result type (might be due to invalid IL or missing references) //IL_509d: Unknown result type (might be due to invalid IL or missing references) //IL_50a3: Unknown result type (might be due to invalid IL or missing references) //IL_50a8: Unknown result type (might be due to invalid IL or missing references) //IL_50ae: Unknown result type (might be due to invalid IL or missing references) //IL_50b8: Unknown result type (might be due to invalid IL or missing references) //IL_50bd: Unknown result type (might be due to invalid IL or missing references) //IL_50c2: Unknown result type (might be due to invalid IL or missing references) //IL_50d2: Unknown result type (might be due to invalid IL or missing references) //IL_50d8: Unknown result type (might be due to invalid IL or missing references) //IL_50dd: Unknown result type (might be due to invalid IL or missing references) //IL_50e3: Unknown result type (might be due to invalid IL or missing references) //IL_50e8: Unknown result type (might be due to invalid IL or missing references) //IL_50ee: Unknown result type (might be due to invalid IL or missing references) //IL_50f8: Unknown result type (might be due to invalid IL or missing references) //IL_50fd: Unknown result type (might be due to invalid IL or missing references) //IL_5103: Unknown result type (might be due to invalid IL or missing references) //IL_5108: Unknown result type (might be due to invalid IL or missing references) //IL_510e: Unknown result type (might be due to invalid IL or missing references) //IL_5118: Unknown result type (might be due to invalid IL or missing references) //IL_511d: Unknown result type (might be due to invalid IL or missing references) //IL_5128: Unknown result type (might be due to invalid IL or missing references) //IL_512e: Unknown result type (might be due to invalid IL or missing references) //IL_5133: Unknown result type (might be due to invalid IL or missing references) //IL_5139: Unknown result type (might be due to invalid IL or missing references) //IL_513e: Unknown result type (might be due to invalid IL or missing references) //IL_5144: Unknown result type (might be due to invalid IL or missing references) //IL_514e: Unknown result type (might be due to invalid IL or missing references) //IL_5153: Unknown result type (might be due to invalid IL or missing references) //IL_5159: Unknown result type (might be due to invalid IL or missing references) //IL_515e: Unknown result type (might be due to invalid IL or missing references) //IL_5164: Unknown result type (might be due to invalid IL or missing references) //IL_516e: Unknown result type (might be due to invalid IL or missing references) //IL_5173: Unknown result type (might be due to invalid IL or missing references) //IL_5178: Unknown result type (might be due to invalid IL or missing references) //IL_5188: Unknown result type (might be due to invalid IL or missing references) //IL_518e: Unknown result type (might be due to invalid IL or missing references) //IL_5193: Unknown result type (might be due to invalid IL or missing references) //IL_5199: Unknown result type (might be due to invalid IL or missing references) //IL_519e: Unknown result type (might be due to invalid IL or missing references) //IL_51a4: Unknown result type (might be due to invalid IL or missing references) //IL_51ae: Unknown result type (might be due to invalid IL or missing references) //IL_51b3: Unknown result type (might be due to invalid IL or missing references) //IL_51b9: Unknown result type (might be due to invalid IL or missing references) //IL_51be: Unknown result type (might be due to invalid IL or missing references) //IL_51c4: Unknown result type (might be due to invalid IL or missing references) //IL_51ce: Unknown result type (might be due to invalid IL or missing references) //IL_51d3: Unknown result type (might be due to invalid IL or missing references) //IL_51de: Unknown result type (might be due to invalid IL or missing references) //IL_51e4: Unknown result type (might be due to invalid IL or missing references) //IL_51e9: Unknown result type (might be due to invalid IL or missing references) //IL_51ef: Unknown result type (might be due to invalid IL or missing references) //IL_51f4: Unknown result type (might be due to invalid IL or missing references) //IL_51fa: Unknown result type (might be due to invalid IL or missing references) //IL_5204: Unknown result type (might be due to invalid IL or missing references) //IL_5209: Unknown result type (might be due to invalid IL or missing references) //IL_520f: Unknown result type (might be due to invalid IL or missing references) //IL_5214: Unknown result type (might be due to invalid IL or missing references) //IL_521a: Unknown result type (might be due to invalid IL or missing references) //IL_5224: Unknown result type (might be due to invalid IL or missing references) //IL_5229: Unknown result type (might be due to invalid IL or missing references) //IL_522e: Unknown result type (might be due to invalid IL or missing references) //IL_523e: Unknown result type (might be due to invalid IL or missing references) //IL_5244: Unknown result type (might be due to invalid IL or missing references) //IL_5249: Unknown result type (might be due to invalid IL or missing references) //IL_524f: Unknown result type (might be due to invalid IL or missing references) //IL_5254: Unknown result type (might be due to invalid IL or missing references) //IL_525a: Unknown result type (might be due to invalid IL or missing references) //IL_5264: Unknown result type (might be due to invalid IL or missing references) //IL_5269: Unknown result type (might be due to invalid IL or missing references) //IL_526f: Unknown result type (might be due to invalid IL or missing references) //IL_5274: Unknown result type (might be due to invalid IL or missing references) //IL_527a: Unknown result type (might be due to invalid IL or missing references) //IL_5284: Unknown result type (might be due to invalid IL or missing references) //IL_5289: Unknown result type (might be due to invalid IL or missing references) //IL_5294: Unknown result type (might be due to invalid IL or missing references) //IL_529a: Unknown result type (might be due to invalid IL or missing references) //IL_529f: Unknown result type (might be due to invalid IL or missing references) //IL_52a5: Unknown result type (might be due to invalid IL or missing references) //IL_52aa: Unknown result type (might be due to invalid IL or missing references) //IL_52b0: Unknown result type (might be due to invalid IL or missing references) //IL_52ba: Unknown result type (might be due to invalid IL or missing references) //IL_52bf: Unknown result type (might be due to invalid IL or missing references) //IL_52c5: Unknown result type (might be due to invalid IL or missing references) //IL_52ca: Unknown result type (might be due to invalid IL or missing references) //IL_52d0: Unknown result type (might be due to invalid IL or missing references) //IL_52da: Unknown result type (might be due to invalid IL or missing references) //IL_52df: Unknown result type (might be due to invalid IL or missing references) //IL_52e4: Unknown result type (might be due to invalid IL or missing references) //IL_52f4: Unknown result type (might be due to invalid IL or missing references) //IL_52fa: Unknown result type (might be due to invalid IL or missing references) //IL_52ff: Unknown result type (might be due to invalid IL or missing references) //IL_5305: Unknown result type (might be due to invalid IL or missing references) //IL_530a: Unknown result type (might be due to invalid IL or missing references) //IL_5310: Unknown result type (might be due to invalid IL or missing references) //IL_531a: Unknown result type (might be due to invalid IL or missing references) //IL_531f: Unknown result type (might be due to invalid IL or missing references) //IL_5325: Unknown result type (might be due to invalid IL or missing references) //IL_532a: Unknown result type (might be due to invalid IL or missing references) //IL_5330: Unknown result type (might be due to invalid IL or missing references) //IL_533a: Unknown result type (might be due to invalid IL or missing references) //IL_533f: Unknown result type (might be due to invalid IL or missing references) //IL_534a: Unknown result type (might be due to invalid IL or missing references) //IL_5350: Unknown result type (might be due to invalid IL or missing references) //IL_5355: Unknown result type (might be due to invalid IL or missing references) //IL_535b: Unknown result type (might be due to invalid IL or missing references) //IL_5360: Unknown result type (might be due to invalid IL or missing references) //IL_5366: Unknown result type (might be due to invalid IL or missing references) //IL_5370: Unknown result type (might be due to invalid IL or missing references) //IL_5375: Unknown result type (might be due to invalid IL or missing references) //IL_537b: Unknown result type (might be due to invalid IL or missing references) //IL_5380: Unknown result type (might be due to invalid IL or missing references) //IL_5386: Unknown result type (might be due to invalid IL or missing references) //IL_5390: Unknown result type (might be due to invalid IL or missing references) //IL_5395: Unknown result type (might be due to invalid IL or missing references) //IL_539a: Unknown result type (might be due to invalid IL or missing references) //IL_53aa: Unknown result type (might be due to invalid IL or missing references) //IL_53b0: Unknown result type (might be due to invalid IL or missing references) //IL_53b5: Unknown result type (might be due to invalid IL or missing references) //IL_53bb: Unknown result type (might be due to invalid IL or missing references) //IL_53c0: Unknown result type (might be due to invalid IL or missing references) //IL_53c6: Unknown result type (might be due to invalid IL or missing references) //IL_53d0: Unknown result type (might be due to invalid IL or missing references) //IL_53d5: Unknown result type (might be due to invalid IL or missing references) //IL_53db: Unknown result type (might be due to invalid IL or missing references) //IL_53e0: Unknown result type (might be due to invalid IL or missing references) //IL_53e6: Unknown result type (might be due to invalid IL or missing references) //IL_53f0: Unknown result type (might be due to invalid IL or missing references) //IL_53f5: Unknown result type (might be due to invalid IL or missing references) //IL_5400: Unknown result type (might be due to invalid IL or missing references) //IL_5406: Unknown result type (might be due to invalid IL or missing references) //IL_540b: Unknown result type (might be due to invalid IL or missing references) //IL_5411: Unknown result type (might be due to invalid IL or missing references) //IL_5416: Unknown result type (might be due to invalid IL or missing references) //IL_541c: Unknown result type (might be due to invalid IL or missing references) //IL_5426: Unknown result type (might be due to invalid IL or missing references) //IL_542b: Unknown result type (might be due to invalid IL or missing references) //IL_5431: Unknown result type (might be due to invalid IL or missing references) //IL_5436: Unknown result type (might be due to invalid IL or missing references) //IL_543c: Unknown result type (might be due to invalid IL or missing references) //IL_5446: Unknown result type (might be due to invalid IL or missing references) //IL_544b: Unknown result type (might be due to invalid IL or missing references) //IL_5450: Unknown result type (might be due to invalid IL or missing references) //IL_5460: Unknown result type (might be due to invalid IL or missing references) //IL_5466: Unknown result type (might be due to invalid IL or missing references) //IL_546b: Unknown result type (might be due to invalid IL or missing references) //IL_5471: Unknown result type (might be due to invalid IL or missing references) //IL_5476: Unknown result type (might be due to invalid IL or missing references) //IL_547c: Unknown result type (might be due to invalid IL or missing references) //IL_5481: Unknown result type (might be due to invalid IL or missing references) //IL_548c: Unknown result type (might be due to invalid IL or missing references) //IL_5492: Unknown result type (might be due to invalid IL or missing references) //IL_5497: Unknown result type (might be due to invalid IL or missing references) //IL_549d: Unknown result type (might be due to invalid IL or missing references) //IL_54a2: Unknown result type (might be due to invalid IL or missing references) //IL_54a8: Unknown result type (might be due to invalid IL or missing references) //IL_54b2: Unknown result type (might be due to invalid IL or missing references) //IL_54b7: Unknown result type (might be due to invalid IL or missing references) //IL_54bd: Unknown result type (might be due to invalid IL or missing references) //IL_54c2: Unknown result type (might be due to invalid IL or missing references) //IL_54c7: Unknown result type (might be due to invalid IL or missing references) //IL_54d7: Unknown result type (might be due to invalid IL or missing references) //IL_54dd: Unknown result type (might be due to invalid IL or missing references) //IL_54e2: Unknown result type (might be due to invalid IL or missing references) //IL_54e8: Unknown result type (might be due to invalid IL or missing references) //IL_54ed: Unknown result type (might be due to invalid IL or missing references) //IL_54f3: Unknown result type (might be due to invalid IL or missing references) //IL_54f8: Unknown result type (might be due to invalid IL or missing references) //IL_54fe: Unknown result type (might be due to invalid IL or missing references) //IL_5508: Unknown result type (might be due to invalid IL or missing references) //IL_550d: Unknown result type (might be due to invalid IL or missing references) //IL_5518: Unknown result type (might be due to invalid IL or missing references) //IL_551e: Unknown result type (might be due to invalid IL or missing references) //IL_5523: Unknown result type (might be due to invalid IL or missing references) //IL_5529: Unknown result type (might be due to invalid IL or missing references) //IL_552e: Unknown result type (might be due to invalid IL or missing references) //IL_5534: Unknown result type (might be due to invalid IL or missing references) //IL_553e: Unknown result type (might be due to invalid IL or missing references) //IL_5543: Unknown result type (might be due to invalid IL or missing references) //IL_5549: Unknown result type (might be due to invalid IL or missing references) //IL_554e: Unknown result type (might be due to invalid IL or missing references) //IL_5554: Unknown result type (might be due to invalid IL or missing references) //IL_555e: Unknown result type (might be due to invalid IL or missing references) //IL_5563: Unknown result type (might be due to invalid IL or missing references) //IL_5568: Unknown result type (might be due to invalid IL or missing references) //IL_5578: Unknown result type (might be due to invalid IL or missing references) //IL_557e: Unknown result type (might be due to invalid IL or missing references) //IL_5583: Unknown result type (might be due to invalid IL or missing references) //IL_5589: Unknown result type (might be due to invalid IL or missing references) //IL_558e: Unknown result type (might be due to invalid IL or missing references) //IL_5594: Unknown result type (might be due to invalid IL or missing references) //IL_5599: Unknown result type (might be due to invalid IL or missing references) //IL_559f: Unknown result type (might be due to invalid IL or missing references) //IL_55a9: Unknown result type (might be due to invalid IL or missing references) //IL_55ae: Unknown result type (might be due to invalid IL or missing references) //IL_55b9: Unknown result type (might be due to invalid IL or missing references) //IL_55bf: Unknown result type (might be due to invalid IL or missing references) //IL_55c4: Unknown result type (might be due to invalid IL or missing references) //IL_55ca: Unknown result type (might be due to invalid IL or missing references) //IL_55cf: Unknown result type (might be due to invalid IL or missing references) //IL_55d5: Unknown result type (might be due to invalid IL or missing references) //IL_55df: Unknown result type (might be due to invalid IL or missing references) //IL_55e4: Unknown result type (might be due to invalid IL or missing references) //IL_55ea: Unknown result type (might be due to invalid IL or missing references) //IL_55ef: Unknown result type (might be due to invalid IL or missing references) //IL_55f5: Unknown result type (might be due to invalid IL or missing references) //IL_55ff: Unknown result type (might be due to invalid IL or missing references) //IL_5604: Unknown result type (might be due to invalid IL or missing references) //IL_5609: Unknown result type (might be due to invalid IL or missing references) //IL_5619: Unknown result type (might be due to invalid IL or missing references) //IL_561f: Unknown result type (might be due to invalid IL or missing references) //IL_5624: Unknown result type (might be due to invalid IL or missing references) //IL_562a: Unknown result type (might be due to invalid IL or missing references) //IL_562f: Unknown result type (might be due to invalid IL or missing references) //IL_5635: Unknown result type (might be due to invalid IL or missing references) //IL_563a: Unknown result type (might be due to invalid IL or missing references) //IL_5640: Unknown result type (might be due to invalid IL or missing references) //IL_564a: Unknown result type (might be due to invalid IL or missing references) //IL_564f: Unknown result type (might be due to invalid IL or missing references) //IL_565a: Unknown result type (might be due to invalid IL or missing references) //IL_5660: Unknown result type (might be due to invalid IL or missing references) //IL_5665: Unknown result type (might be due to invalid IL or missing references) //IL_566b: Unknown result type (might be due to invalid IL or missing references) //IL_5670: Unknown result type (might be due to invalid IL or missing references) //IL_5676: Unknown result type (might be due to invalid IL or missing references) //IL_5680: Unknown result type (might be due to invalid IL or missing references) //IL_5685: Unknown result type (might be due to invalid IL or missing references) //IL_568b: Unknown result type (might be due to invalid IL or missing references) //IL_5690: Unknown result type (might be due to invalid IL or missing references) //IL_5696: Unknown result type (might be due to invalid IL or missing references) //IL_56a0: Unknown result type (might be due to invalid IL or missing references) //IL_56a5: Unknown result type (might be due to invalid IL or missing references) //IL_56aa: Unknown result type (might be due to invalid IL or missing references) //IL_56ba: Unknown result type (might be due to invalid IL or missing references) //IL_56c0: Unknown result type (might be due to invalid IL or missing references) //IL_56c5: Unknown result type (might be due to invalid IL or missing references) //IL_56cb: Unknown result type (might be due to invalid IL or missing references) //IL_56d0: Unknown result type (might be due to invalid IL or missing references) //IL_56d6: Unknown result type (might be due to invalid IL or missing references) //IL_56db: Unknown result type (might be due to invalid IL or missing references) //IL_56e1: Unknown result type (might be due to invalid IL or missing references) //IL_56eb: Unknown result type (might be due to invalid IL or missing references) //IL_56f0: Unknown result type (might be due to invalid IL or missing references) //IL_56fb: Unknown result type (might be due to invalid IL or missing references) //IL_5701: Unknown result type (might be due to invalid IL or missing references) //IL_5706: Unknown result type (might be due to invalid IL or missing references) //IL_570c: Unknown result type (might be due to invalid IL or missing references) //IL_5711: Unknown result type (might be due to invalid IL or missing references) //IL_5717: Unknown result type (might be due to invalid IL or missing references) //IL_5721: Unknown result type (might be due to invalid IL or missing references) //IL_5726: Unknown result type (might be due to invalid IL or missing references) //IL_572c: Unknown result type (might be due to invalid IL or missing references) //IL_5731: Unknown result type (might be due to invalid IL or missing references) //IL_5737: Unknown result type (might be due to invalid IL or missing references) //IL_5741: Unknown result type (might be due to invalid IL or missing references) //IL_5746: Unknown result type (might be due to invalid IL or missing references) //IL_574b: Unknown result type (might be due to invalid IL or missing references) //IL_575b: Unknown result type (might be due to invalid IL or missing references) //IL_5761: Unknown result type (might be due to invalid IL or missing references) //IL_5766: Unknown result type (might be due to invalid IL or missing references) //IL_576c: Unknown result type (might be due to invalid IL or missing references) //IL_5771: Unknown result type (might be due to invalid IL or missing references) //IL_5777: Unknown result type (might be due to invalid IL or missing references) //IL_577c: Unknown result type (might be due to invalid IL or missing references) //IL_5782: Unknown result type (might be due to invalid IL or missing references) //IL_578c: Unknown result type (might be due to invalid IL or missing references) //IL_5791: Unknown result type (might be due to invalid IL or missing references) //IL_579c: Unknown result type (might be due to invalid IL or missing references) //IL_57a2: Unknown result type (might be due to invalid IL or missing references) //IL_57a7: Unknown result type (might be due to invalid IL or missing references) //IL_57ad: Unknown result type (might be due to invalid IL or missing references) //IL_57b2: Unknown result type (might be due to invalid IL or missing references) //IL_57b8: Unknown result type (might be due to invalid IL or missing references) //IL_57c2: Unknown result type (might be due to invalid IL or missing references) //IL_57c7: Unknown result type (might be due to invalid IL or missing references) //IL_57cd: Unknown result type (might be due to invalid IL or missing references) //IL_57d2: Unknown result type (might be due to invalid IL or missing references) //IL_57d8: Unknown result type (might be due to invalid IL or missing references) //IL_57e2: Unknown result type (might be due to invalid IL or missing references) //IL_57e7: Unknown result type (might be due to invalid IL or missing references) //IL_57ec: Unknown result type (might be due to invalid IL or missing references) //IL_57fc: Unknown result type (might be due to invalid IL or missing references) //IL_5802: Unknown result type (might be due to invalid IL or missing references) //IL_5807: Unknown result type (might be due to invalid IL or missing references) //IL_580d: Unknown result type (might be due to invalid IL or missing references) //IL_5812: Unknown result type (might be due to invalid IL or missing references) //IL_5818: Unknown result type (might be due to invalid IL or missing references) //IL_581d: Unknown result type (might be due to invalid IL or missing references) //IL_5823: Unknown result type (might be due to invalid IL or missing references) //IL_582d: Unknown result type (might be due to invalid IL or missing references) //IL_5832: Unknown result type (might be due to invalid IL or missing references) //IL_583d: Unknown result type (might be due to invalid IL or missing references) //IL_5843: Unknown result type (might be due to invalid IL or missing references) //IL_5848: Unknown result type (might be due to invalid IL or missing references) //IL_584e: Unknown result type (might be due to invalid IL or missing references) //IL_5853: Unknown result type (might be due to invalid IL or missing references) //IL_5859: Unknown result type (might be due to invalid IL or missing references) //IL_5863: Unknown result type (might be due to invalid IL or missing references) //IL_5868: Unknown result type (might be due to invalid IL or missing references) //IL_586e: Unknown result type (might be due to invalid IL or missing references) //IL_5873: Unknown result type (might be due to invalid IL or missing references) //IL_5879: Unknown result type (might be due to invalid IL or missing references) //IL_5883: Unknown result type (might be due to invalid IL or missing references) //IL_5888: Unknown result type (might be due to invalid IL or missing references) //IL_588d: Unknown result type (might be due to invalid IL or missing references) //IL_589d: Unknown result type (might be due to invalid IL or missing references) //IL_58a3: Unknown result type (might be due to invalid IL or missing references) //IL_58a8: Unknown result type (might be due to invalid IL or missing references) //IL_58ae: Unknown result type (might be due to invalid IL or missing references) //IL_58b3: Unknown result type (might be due to invalid IL or missing references) //IL_58b9: Unknown result type (might be due to invalid IL or missing references) //IL_58be: Unknown result type (might be due to invalid IL or missing references) //IL_58c4: Unknown result type (might be due to invalid IL or missing references) //IL_58ce: Unknown result type (might be due to invalid IL or missing references) //IL_58d3: Unknown result type (might be due to invalid IL or missing references) //IL_58de: Unknown result type (might be due to invalid IL or missing references) //IL_58e4: Unknown result type (might be due to invalid IL or missing references) //IL_58e9: Unknown result type (might be due to invalid IL or missing references) //IL_58ef: Unknown result type (might be due to invalid IL or missing references) //IL_58f4: Unknown result type (might be due to invalid IL or missing references) //IL_58fa: Unknown result type (might be due to invalid IL or missing references) //IL_5904: Unknown result type (might be due to invalid IL or missing references) //IL_5909: Unknown result type (might be due to invalid IL or missing references) //IL_590f: Unknown result type (might be due to invalid IL or missing references) //IL_5914: Unknown result type (might be due to invalid IL or missing references) //IL_591a: Unknown result type (might be due to invalid IL or missing references) //IL_5924: Unknown result type (might be due to invalid IL or missing references) //IL_5929: Unknown result type (might be due to invalid IL or missing references) //IL_592e: Unknown result type (might be due to invalid IL or missing references) //IL_593e: Unknown result type (might be due to invalid IL or missing references) //IL_5944: Unknown result type (might be due to invalid IL or missing references) //IL_5949: Unknown result type (might be due to invalid IL or missing references) //IL_594f: Unknown result type (might be due to invalid IL or missing references) //IL_5954: Unknown result type (might be due to invalid IL or missing references) //IL_595a: Unknown result type (might be due to invalid IL or missing references) //IL_5964: Unknown result type (might be due to invalid IL or missing references) //IL_5969: Unknown result type (might be due to invalid IL or missing references) //IL_596f: Unknown result type (might be due to invalid IL or missing references) //IL_5974: Unknown result type (might be due to invalid IL or missing references) //IL_597f: Unknown result type (might be due to invalid IL or missing references) //IL_5985: Unknown result type (might be due to invalid IL or missing references) //IL_598a: Unknown result type (might be due to invalid IL or missing references) //IL_5990: Unknown result type (might be due to invalid IL or missing references) //IL_5995: Unknown result type (might be due to invalid IL or missing references) //IL_599b: Unknown result type (might be due to invalid IL or missing references) //IL_59a0: Unknown result type (might be due to invalid IL or missing references) //IL_59a5: Unknown result type (might be due to invalid IL or missing references) //IL_59b5: Unknown result type (might be due to invalid IL or missing references) //IL_59bb: Unknown result type (might be due to invalid IL or missing references) //IL_59c0: Unknown result type (might be due to invalid IL or missing references) //IL_59c6: Unknown result type (might be due to invalid IL or missing references) //IL_59cb: Unknown result type (might be due to invalid IL or missing references) //IL_59d1: Unknown result type (might be due to invalid IL or missing references) //IL_59db: Unknown result type (might be due to invalid IL or missing references) //IL_59e0: Unknown result type (might be due to invalid IL or missing references) //IL_59e6: Unknown result type (might be due to invalid IL or missing references) //IL_59eb: Unknown result type (might be due to invalid IL or missing references) //IL_59f1: Unknown result type (might be due to invalid IL or missing references) //IL_59fb: Unknown result type (might be due to invalid IL or missing references) //IL_5a00: Unknown result type (might be due to invalid IL or missing references) //IL_5a0b: Unknown result type (might be due to invalid IL or missing references) //IL_5a11: Unknown result type (might be due to invalid IL or missing references) //IL_5a16: Unknown result type (might be due to invalid IL or missing references) //IL_5a1c: Unknown result type (might be due to invalid IL or missing references) //IL_5a21: Unknown result type (might be due to invalid IL or missing references) //IL_5a27: Unknown result type (might be due to invalid IL or missing references) //IL_5a2c: Unknown result type (might be due to invalid IL or missing references) //IL_5a32: Unknown result type (might be due to invalid IL or missing references) //IL_5a3c: Unknown result type (might be due to invalid IL or missing references) //IL_5a41: Unknown result type (might be due to invalid IL or missing references) //IL_5a46: Unknown result type (might be due to invalid IL or missing references) //IL_5a56: Unknown result type (might be due to invalid IL or missing references) //IL_5a5c: Unknown result type (might be due to invalid IL or missing references) //IL_5a61: Unknown result type (might be due to invalid IL or missing references) //IL_5a67: Unknown result type (might be due to invalid IL or missing references) //IL_5a6c: Unknown result type (might be due to invalid IL or missing references) //IL_5a72: Unknown result type (might be due to invalid IL or missing references) //IL_5a7c: Unknown result type (might be due to invalid IL or missing references) //IL_5a81: Unknown result type (might be due to invalid IL or missing references) //IL_5a87: Unknown result type (might be due to invalid IL or missing references) //IL_5a8c: Unknown result type (might be due to invalid IL or missing references) //IL_5a92: Unknown result type (might be due to invalid IL or missing references) //IL_5a9c: Unknown result type (might be due to invalid IL or missing references) //IL_5aa1: Unknown result type (might be due to invalid IL or missing references) //IL_5aac: Unknown result type (might be due to invalid IL or missing references) //IL_5ab2: Unknown result type (might be due to invalid IL or missing references) //IL_5ab7: Unknown result type (might be due to invalid IL or missing references) //IL_5abd: Unknown result type (might be due to invalid IL or missing references) //IL_5ac2: Unknown result type (might be due to invalid IL or missing references) //IL_5ac8: Unknown result type (might be due to invalid IL or missing references) //IL_5acd: Unknown result type (might be due to invalid IL or missing references) //IL_5ad3: Unknown result type (might be due to invalid IL or missing references) //IL_5add: Unknown result type (might be due to invalid IL or missing references) //IL_5ae2: Unknown result type (might be due to invalid IL or missing references) //IL_5ae7: Unknown result type (might be due to invalid IL or missing references) //IL_5af7: Unknown result type (might be due to invalid IL or missing references) //IL_5afd: Unknown result type (might be due to invalid IL or missing references) //IL_5b02: Unknown result type (might be due to invalid IL or missing references) //IL_5b08: Unknown result type (might be due to invalid IL or missing references) //IL_5b0d: Unknown result type (might be due to invalid IL or missing references) //IL_5b13: Unknown result type (might be due to invalid IL or missing references) //IL_5b1d: Unknown result type (might be due to invalid IL or missing references) //IL_5b22: Unknown result type (might be due to invalid IL or missing references) //IL_5b28: Unknown result type (might be due to invalid IL or missing references) //IL_5b2d: Unknown result type (might be due to invalid IL or missing references) //IL_5b33: Unknown result type (might be due to invalid IL or missing references) //IL_5b3d: Unknown result type (might be due to invalid IL or missing references) //IL_5b42: Unknown result type (might be due to invalid IL or missing references) //IL_5b4d: Unknown result type (might be due to invalid IL or missing references) //IL_5b53: Unknown result type (might be due to invalid IL or missing references) //IL_5b58: Unknown result type (might be due to invalid IL or missing references) //IL_5b5e: Unknown result type (might be due to invalid IL or missing references) //IL_5b63: Unknown result type (might be due to invalid IL or missing references) //IL_5b69: Unknown result type (might be due to invalid IL or missing references) //IL_5b6e: Unknown result type (might be due to invalid IL or missing references) //IL_5b74: Unknown result type (might be due to invalid IL or missing references) //IL_5b7e: Unknown result type (might be due to invalid IL or missing references) //IL_5b83: Unknown result type (might be due to invalid IL or missing references) //IL_5b88: Unknown result type (might be due to invalid IL or missing references) //IL_5b98: Unknown result type (might be due to invalid IL or missing references) //IL_5b9e: Unknown result type (might be due to invalid IL or missing references) //IL_5ba3: Unknown result type (might be due to invalid IL or missing references) //IL_5ba9: Unknown result type (might be due to invalid IL or missing references) //IL_5bae: Unknown result type (might be due to invalid IL or missing references) //IL_5bb4: Unknown result type (might be due to invalid IL or missing references) //IL_5bbe: Unknown result type (might be due to invalid IL or missing references) //IL_5bc3: Unknown result type (might be due to invalid IL or missing references) //IL_5bc9: Unknown result type (might be due to invalid IL or missing references) //IL_5bce: Unknown result type (might be due to invalid IL or missing references) //IL_5bd4: Unknown result type (might be due to invalid IL or missing references) //IL_5bde: Unknown result type (might be due to invalid IL or missing references) //IL_5be3: Unknown result type (might be due to invalid IL or missing references) //IL_5bee: Unknown result type (might be due to invalid IL or missing references) //IL_5bf4: Unknown result type (might be due to invalid IL or missing references) //IL_5bf9: Unknown result type (might be due to invalid IL or missing references) //IL_5bff: Unknown result type (might be due to invalid IL or missing references) //IL_5c04: Unknown result type (might be due to invalid IL or missing references) //IL_5c0a: Unknown result type (might be due to invalid IL or missing references) //IL_5c0f: Unknown result type (might be due to invalid IL or missing references) //IL_5c15: Unknown result type (might be due to invalid IL or missing references) //IL_5c1f: Unknown result type (might be due to invalid IL or missing references) //IL_5c24: Unknown result type (might be due to invalid IL or missing references) //IL_5c29: Unknown result type (might be due to invalid IL or missing references) //IL_5c39: Unknown result type (might be due to invalid IL or missing references) //IL_5c3f: Unknown result type (might be due to invalid IL or missing references) //IL_5c44: Unknown result type (might be due to invalid IL or missing references) //IL_5c4a: Unknown result type (might be due to invalid IL or missing references) //IL_5c4f: Unknown result type (might be due to invalid IL or missing references) //IL_5c55: Unknown result type (might be due to invalid IL or missing references) //IL_5c5f: Unknown result type (might be due to invalid IL or missing references) //IL_5c64: Unknown result type (might be due to invalid IL or missing references) //IL_5c6a: Unknown result type (might be due to invalid IL or missing references) //IL_5c6f: Unknown result type (might be due to invalid IL or missing references) //IL_5c75: Unknown result type (might be due to invalid IL or missing references) //IL_5c7f: Unknown result type (might be due to invalid IL or missing references) //IL_5c84: Unknown result type (might be due to invalid IL or missing references) //IL_5c8f: Unknown result type (might be due to invalid IL or missing references) //IL_5c95: Unknown result type (might be due to invalid IL or missing references) //IL_5c9a: Unknown result type (might be due to invalid IL or missing references) //IL_5ca0: Unknown result type (might be due to invalid IL or missing references) //IL_5ca5: Unknown result type (might be due to invalid IL or missing references) //IL_5cab: Unknown result type (might be due to invalid IL or missing references) //IL_5cb0: Unknown result type (might be due to invalid IL or missing references) //IL_5cb6: Unknown result type (might be due to invalid IL or missing references) //IL_5cc0: Unknown result type (might be due to invalid IL or missing references) //IL_5cc5: Unknown result type (might be due to invalid IL or missing references) //IL_5cca: Unknown result type (might be due to invalid IL or missing references) //IL_5cda: Unknown result type (might be due to invalid IL or missing references) //IL_5ce0: Unknown result type (might be due to invalid IL or missing references) //IL_5ce5: Unknown result type (might be due to invalid IL or missing references) //IL_5ceb: Unknown result type (might be due to invalid IL or missing references) //IL_5cf0: Unknown result type (might be due to invalid IL or missing references) //IL_5cf6: Unknown result type (might be due to invalid IL or missing references) //IL_5d00: Unknown result type (might be due to invalid IL or missing references) //IL_5d05: Unknown result type (might be due to invalid IL or missing references) //IL_5d0b: Unknown result type (might be due to invalid IL or missing references) //IL_5d10: Unknown result type (might be due to invalid IL or missing references) //IL_5d16: Unknown result type (might be due to invalid IL or missing references) //IL_5d20: Unknown result type (might be due to invalid IL or missing references) //IL_5d25: Unknown result type (might be due to invalid IL or missing references) //IL_5d30: Unknown result type (might be due to invalid IL or missing references) //IL_5d36: Unknown result type (might be due to invalid IL or missing references) //IL_5d3b: Unknown result type (might be due to invalid IL or missing references) //IL_5d41: Unknown result type (might be due to invalid IL or missing references) //IL_5d46: Unknown result type (might be due to invalid IL or missing references) //IL_5d4c: Unknown result type (might be due to invalid IL or missing references) //IL_5d51: Unknown result type (might be due to invalid IL or missing references) //IL_5d57: Unknown result type (might be due to invalid IL or missing references) //IL_5d61: Unknown result type (might be due to invalid IL or missing references) //IL_5d66: Unknown result type (might be due to invalid IL or missing references) //IL_5d6b: Unknown result type (might be due to invalid IL or missing references) //IL_5d7b: Unknown result type (might be due to invalid IL or missing references) //IL_5d81: Unknown result type (might be due to invalid IL or missing references) //IL_5d86: Unknown result type (might be due to invalid IL or missing references) //IL_5d8c: Unknown result type (might be due to invalid IL or missing references) //IL_5d91: Unknown result type (might be due to invalid IL or missing references) //IL_5d97: Unknown result type (might be due to invalid IL or missing references) //IL_5da1: Unknown result type (might be due to invalid IL or missing references) //IL_5da6: Unknown result type (might be due to invalid IL or missing references) //IL_5dac: Unknown result type (might be due to invalid IL or missing references) //IL_5db1: Unknown result type (might be due to invalid IL or missing references) //IL_5db7: Unknown result type (might be due to invalid IL or missing references) //IL_5dc1: Unknown result type (might be due to invalid IL or missing references) //IL_5dc6: Unknown result type (might be due to invalid IL or missing references) //IL_5dd1: Unknown result type (might be due to invalid IL or missing references) //IL_5dd7: Unknown result type (might be due to invalid IL or missing references) //IL_5ddc: Unknown result type (might be due to invalid IL or missing references) //IL_5de2: Unknown result type (might be due to invalid IL or missing references) //IL_5de7: Unknown result type (might be due to invalid IL or missing references) //IL_5ded: Unknown result type (might be due to invalid IL or missing references) //IL_5df2: Unknown result type (might be due to invalid IL or missing references) //IL_5df8: Unknown result type (might be due to invalid IL or missing references) //IL_5e02: Unknown result type (might be due to invalid IL or missing references) //IL_5e07: Unknown result type (might be due to invalid IL or missing references) //IL_5e0c: Unknown result type (might be due to invalid IL or missing references) //IL_5e1c: Unknown result type (might be due to invalid IL or missing references) //IL_5e22: Unknown result type (might be due to invalid IL or missing references) //IL_5e27: Unknown result type (might be due to invalid IL or missing references) //IL_5e2d: Unknown result type (might be due to invalid IL or missing references) //IL_5e32: Unknown result type (might be due to invalid IL or missing references) //IL_5e38: Unknown result type (might be due to invalid IL or missing references) //IL_5e42: Unknown result type (might be due to invalid IL or missing references) //IL_5e47: Unknown result type (might be due to invalid IL or missing references) //IL_5e4d: Unknown result type (might be due to invalid IL or missing references) //IL_5e57: Unknown result type (might be due to invalid IL or missing references) //IL_5e5d: Unknown result type (might be due to invalid IL or missing references) //IL_5e62: Unknown result type (might be due to invalid IL or missing references) //IL_5e68: Unknown result type (might be due to invalid IL or missing references) //IL_5e6d: Unknown result type (might be due to invalid IL or missing references) //IL_5e72: Unknown result type (might be due to invalid IL or missing references) //IL_5e7d: Unknown result type (might be due to invalid IL or missing references) //IL_5e83: Unknown result type (might be due to invalid IL or missing references) //IL_5e88: Unknown result type (might be due to invalid IL or missing references) //IL_5e8e: Unknown result type (might be due to invalid IL or missing references) //IL_5e93: Unknown result type (might be due to invalid IL or missing references) //IL_5e99: Unknown result type (might be due to invalid IL or missing references) //IL_5ea3: Unknown result type (might be due to invalid IL or missing references) //IL_5ea8: Unknown result type (might be due to invalid IL or missing references) //IL_5eae: Unknown result type (might be due to invalid IL or missing references) //IL_5eb8: Unknown result type (might be due to invalid IL or missing references) //IL_5ebe: Unknown result type (might be due to invalid IL or missing references) //IL_5ec3: Unknown result type (might be due to invalid IL or missing references) //IL_5ec9: Unknown result type (might be due to invalid IL or missing references) //IL_5ece: Unknown result type (might be due to invalid IL or missing references) //IL_5ed3: Unknown result type (might be due to invalid IL or missing references) //IL_5ed8: Unknown result type (might be due to invalid IL or missing references) //IL_5ee8: Unknown result type (might be due to invalid IL or missing references) //IL_5eee: Unknown result type (might be due to invalid IL or missing references) //IL_5ef3: Unknown result type (might be due to invalid IL or missing references) //IL_5ef9: Unknown result type (might be due to invalid IL or missing references) //IL_5efe: Unknown result type (might be due to invalid IL or missing references) //IL_5f04: Unknown result type (might be due to invalid IL or missing references) //IL_5f0e: Unknown result type (might be due to invalid IL or missing references) //IL_5f13: Unknown result type (might be due to invalid IL or missing references) //IL_5f19: Unknown result type (might be due to invalid IL or missing references) //IL_5f23: Unknown result type (might be due to invalid IL or missing references) //IL_5f29: Unknown result type (might be due to invalid IL or missing references) //IL_5f2e: Unknown result type (might be due to invalid IL or missing references) //IL_5f34: Unknown result type (might be due to invalid IL or missing references) //IL_5f39: Unknown result type (might be due to invalid IL or missing references) //IL_5f3e: Unknown result type (might be due to invalid IL or missing references) //IL_5f44: Unknown result type (might be due to invalid IL or missing references) //IL_5f4e: Unknown result type (might be due to invalid IL or missing references) //IL_5f53: Unknown result type (might be due to invalid IL or missing references) //IL_5f5e: Unknown result type (might be due to invalid IL or missing references) //IL_5f64: Unknown result type (might be due to invalid IL or missing references) //IL_5f69: Unknown result type (might be due to invalid IL or missing references) //IL_5f6f: Unknown result type (might be due to invalid IL or missing references) //IL_5f74: Unknown result type (might be due to invalid IL or missing references) //IL_5f7a: Unknown result type (might be due to invalid IL or missing references) //IL_5f84: Unknown result type (might be due to invalid IL or missing references) //IL_5f89: Unknown result type (might be due to invalid IL or missing references) //IL_5f8f: Unknown result type (might be due to invalid IL or missing references) //IL_5f99: Unknown result type (might be due to invalid IL or missing references) //IL_5f9f: Unknown result type (might be due to invalid IL or missing references) //IL_5fa4: Unknown result type (might be due to invalid IL or missing references) //IL_5faa: Unknown result type (might be due to invalid IL or missing references) //IL_5faf: Unknown result type (might be due to invalid IL or missing references) //IL_5fb4: Unknown result type (might be due to invalid IL or missing references) //IL_5fba: Unknown result type (might be due to invalid IL or missing references) //IL_5fc4: Unknown result type (might be due to invalid IL or missing references) //IL_5fc9: Unknown result type (might be due to invalid IL or missing references) //IL_5fce: Unknown result type (might be due to invalid IL or missing references) //IL_5fde: Unknown result type (might be due to invalid IL or missing references) //IL_5fe4: Unknown result type (might be due to invalid IL or missing references) //IL_5fe9: Unknown result type (might be due to invalid IL or missing references) //IL_5fef: Unknown result type (might be due to invalid IL or missing references) //IL_5ff4: Unknown result type (might be due to invalid IL or missing references) //IL_5ffa: Unknown result type (might be due to invalid IL or missing references) //IL_6004: Unknown result type (might be due to invalid IL or missing references) //IL_6009: Unknown result type (might be due to invalid IL or missing references) //IL_600f: Unknown result type (might be due to invalid IL or missing references) //IL_6019: Unknown result type (might be due to invalid IL or missing references) //IL_601f: Unknown result type (might be due to invalid IL or missing references) //IL_6024: Unknown result type (might be due to invalid IL or missing references) //IL_602a: Unknown result type (might be due to invalid IL or missing references) //IL_602f: Unknown result type (might be due to invalid IL or missing references) //IL_6034: Unknown result type (might be due to invalid IL or missing references) //IL_603a: Unknown result type (might be due to invalid IL or missing references) //IL_6044: Unknown result type (might be due to invalid IL or missing references) //IL_6049: Unknown result type (might be due to invalid IL or missing references) //IL_6054: Unknown result type (might be due to invalid IL or missing references) //IL_605a: Unknown result type (might be due to invalid IL or missing references) //IL_605f: Unknown result type (might be due to invalid IL or missing references) //IL_6065: Unknown result type (might be due to invalid IL or missing references) //IL_606a: Unknown result type (might be due to invalid IL or missing references) //IL_6070: Unknown result type (might be due to invalid IL or missing references) //IL_607a: Unknown result type (might be due to invalid IL or missing references) //IL_607f: Unknown result type (might be due to invalid IL or missing references) //IL_6085: Unknown result type (might be due to invalid IL or missing references) //IL_608f: Unknown result type (might be due to invalid IL or missing references) //IL_6095: Unknown result type (might be due to invalid IL or missing references) //IL_609a: Unknown result type (might be due to invalid IL or missing references) //IL_60a0: Unknown result type (might be due to invalid IL or missing references) //IL_60a5: Unknown result type (might be due to invalid IL or missing references) //IL_60aa: Unknown result type (might be due to invalid IL or missing references) //IL_60b0: Unknown result type (might be due to invalid IL or missing references) //IL_60ba: Unknown result type (might be due to invalid IL or missing references) //IL_60bf: Unknown result type (might be due to invalid IL or missing references) //IL_60c4: Unknown result type (might be due to invalid IL or missing references) //IL_60d4: Unknown result type (might be due to invalid IL or missing references) //IL_60da: Unknown result type (might be due to invalid IL or missing references) //IL_60df: Unknown result type (might be due to invalid IL or missing references) //IL_60e5: Unknown result type (might be due to invalid IL or missing references) //IL_60ea: Unknown result type (might be due to invalid IL or missing references) //IL_60f0: Unknown result type (might be due to invalid IL or missing references) //IL_60fa: Unknown result type (might be due to invalid IL or missing references) //IL_60ff: Unknown result type (might be due to invalid IL or missing references) //IL_6105: Unknown result type (might be due to invalid IL or missing references) //IL_610f: Unknown result type (might be due to invalid IL or missing references) //IL_6115: Unknown result type (might be due to invalid IL or missing references) //IL_611a: Unknown result type (might be due to invalid IL or missing references) //IL_6120: Unknown result type (might be due to invalid IL or missing references) //IL_6125: Unknown result type (might be due to invalid IL or missing references) //IL_612a: Unknown result type (might be due to invalid IL or missing references) //IL_6130: Unknown result type (might be due to invalid IL or missing references) //IL_613a: Unknown result type (might be due to invalid IL or missing references) //IL_613f: Unknown result type (might be due to invalid IL or missing references) //IL_614a: Unknown result type (might be due to invalid IL or missing references) //IL_6150: Unknown result type (might be due to invalid IL or missing references) //IL_6155: Unknown result type (might be due to invalid IL or missing references) //IL_615b: Unknown result type (might be due to invalid IL or missing references) //IL_6160: Unknown result type (might be due to invalid IL or missing references) //IL_6166: Unknown result type (might be due to invalid IL or missing references) //IL_6170: Unknown result type (might be due to invalid IL or missing references) //IL_6175: Unknown result type (might be due to invalid IL or missing references) //IL_617b: Unknown result type (might be due to invalid IL or missing references) //IL_6185: Unknown result type (might be due to invalid IL or missing references) //IL_618b: Unknown result type (might be due to invalid IL or missing references) //IL_6190: Unknown result type (might be due to invalid IL or missing references) //IL_6196: Unknown result type (might be due to invalid IL or missing references) //IL_619b: Unknown result type (might be due to invalid IL or missing references) //IL_61a0: Unknown result type (might be due to invalid IL or missing references) //IL_61a6: Unknown result type (might be due to invalid IL or missing references) //IL_61b0: Unknown result type (might be due to invalid IL or missing references) //IL_61b5: Unknown result type (might be due to invalid IL or missing references) //IL_61ba: Unknown result type (might be due to invalid IL or missing references) //IL_61ca: Unknown result type (might be due to invalid IL or missing references) //IL_61d0: Unknown result type (might be due to invalid IL or missing references) //IL_61d5: Unknown result type (might be due to invalid IL or missing references) //IL_61db: Unknown result type (might be due to invalid IL or missing references) //IL_61e0: Unknown result type (might be due to invalid IL or missing references) //IL_61e6: Unknown result type (might be due to invalid IL or missing references) //IL_61f0: Unknown result type (might be due to invalid IL or missing references) //IL_61f5: Unknown result type (might be due to invalid IL or missing references) //IL_61fb: Unknown result type (might be due to invalid IL or missing references) //IL_6205: Unknown result type (might be due to invalid IL or missing references) //IL_620b: Unknown result type (might be due to invalid IL or missing references) //IL_6210: Unknown result type (might be due to invalid IL or missing references) //IL_6216: Unknown result type (might be due to invalid IL or missing references) //IL_621b: Unknown result type (might be due to invalid IL or missing references) //IL_6220: Unknown result type (might be due to invalid IL or missing references) //IL_6226: Unknown result type (might be due to invalid IL or missing references) //IL_6230: Unknown result type (might be due to invalid IL or missing references) //IL_6235: Unknown result type (might be due to invalid IL or missing references) //IL_6240: Unknown result type (might be due to invalid IL or missing references) //IL_6246: Unknown result type (might be due to invalid IL or missing references) //IL_624b: Unknown result type (might be due to invalid IL or missing references) //IL_6251: Unknown result type (might be due to invalid IL or missing references) //IL_6256: Unknown result type (might be due to invalid IL or missing references) //IL_625c: Unknown result type (might be due to invalid IL or missing references) //IL_6266: Unknown result type (might be due to invalid IL or missing references) //IL_626b: Unknown result type (might be due to invalid IL or missing references) //IL_6271: Unknown result type (might be due to invalid IL or missing references) //IL_627b: Unknown result type (might be due to invalid IL or missing references) //IL_6281: Unknown result type (might be due to invalid IL or missing references) //IL_6286: Unknown result type (might be due to invalid IL or missing references) //IL_628c: Unknown result type (might be due to invalid IL or missing references) //IL_6291: Unknown result type (might be due to invalid IL or missing references) //IL_6296: Unknown result type (might be due to invalid IL or missing references) //IL_629c: Unknown result type (might be due to invalid IL or missing references) //IL_62a6: Unknown result type (might be due to invalid IL or missing references) //IL_62ab: Unknown result type (might be due to invalid IL or missing references) //IL_62b0: Unknown result type (might be due to invalid IL or missing references) //IL_62c0: Unknown result type (might be due to invalid IL or missing references) //IL_62c6: Unknown result type (might be due to invalid IL or missing references) //IL_62cb: Unknown result type (might be due to invalid IL or missing references) //IL_62d1: Unknown result type (might be due to invalid IL or missing references) //IL_62d6: Unknown result type (might be due to invalid IL or missing references) //IL_62dc: Unknown result type (might be due to invalid IL or missing references) //IL_62e6: Unknown result type (might be due to invalid IL or missing references) //IL_62eb: Unknown result type (might be due to invalid IL or missing references) //IL_62f1: Unknown result type (might be due to invalid IL or missing references) //IL_62fb: Unknown result type (might be due to invalid IL or missing references) //IL_6301: Unknown result type (might be due to invalid IL or missing references) //IL_6306: Unknown result type (might be due to invalid IL or missing references) //IL_630c: Unknown result type (might be due to invalid IL or missing references) //IL_6311: Unknown result type (might be due to invalid IL or missing references) //IL_6316: Unknown result type (might be due to invalid IL or missing references) //IL_631c: Unknown result type (might be due to invalid IL or missing references) //IL_6326: Unknown result type (might be due to invalid IL or missing references) //IL_632b: Unknown result type (might be due to invalid IL or missing references) //IL_6336: Unknown result type (might be due to invalid IL or missing references) //IL_633c: Unknown result type (might be due to invalid IL or missing references) //IL_6341: Unknown result type (might be due to invalid IL or missing references) //IL_6347: Unknown result type (might be due to invalid IL or missing references) //IL_634c: Unknown result type (might be due to invalid IL or missing references) //IL_6352: Unknown result type (might be due to invalid IL or missing references) //IL_635c: Unknown result type (might be due to invalid IL or missing references) //IL_6361: Unknown result type (might be due to invalid IL or missing references) //IL_6367: Unknown result type (might be due to invalid IL or missing references) //IL_6371: Unknown result type (might be due to invalid IL or missing references) //IL_6377: Unknown result type (might be due to invalid IL or missing references) //IL_637c: Unknown result type (might be due to invalid IL or missing references) //IL_6382: Unknown result type (might be due to invalid IL or missing references) //IL_6387: Unknown result type (might be due to invalid IL or missing references) //IL_638c: Unknown result type (might be due to invalid IL or missing references) //IL_6392: Unknown result type (might be due to invalid IL or missing references) //IL_639c: Unknown result type (might be due to invalid IL or missing references) //IL_63a1: Unknown result type (might be due to invalid IL or missing references) //IL_63a6: Unknown result type (might be due to invalid IL or missing references) //IL_63b6: Unknown result type (might be due to invalid IL or missing references) //IL_63bc: Unknown result type (might be due to invalid IL or missing references) //IL_63c1: Unknown result type (might be due to invalid IL or missing references) //IL_63c7: Unknown result type (might be due to invalid IL or missing references) //IL_63cc: Unknown result type (might be due to invalid IL or missing references) //IL_63d2: Unknown result type (might be due to invalid IL or missing references) //IL_63dc: Unknown result type (might be due to invalid IL or missing references) //IL_63e1: Unknown result type (might be due to invalid IL or missing references) //IL_63e7: Unknown result type (might be due to invalid IL or missing references) //IL_63f1: Unknown result type (might be due to invalid IL or missing references) //IL_63f7: Unknown result type (might be due to invalid IL or missing references) //IL_63fc: Unknown result type (might be due to invalid IL or missing references) //IL_6402: Unknown result type (might be due to invalid IL or missing references) //IL_6407: Unknown result type (might be due to invalid IL or missing references) //IL_640c: Unknown result type (might be due to invalid IL or missing references) //IL_6412: Unknown result type (might be due to invalid IL or missing references) //IL_641c: Unknown result type (might be due to invalid IL or missing references) //IL_6421: Unknown result type (might be due to invalid IL or missing references) //IL_642c: Unknown result type (might be due to invalid IL or missing references) //IL_6432: Unknown result type (might be due to invalid IL or missing references) //IL_6437: Unknown result type (might be due to invalid IL or missing references) //IL_643d: Unknown result type (might be due to invalid IL or missing references) //IL_6442: Unknown result type (might be due to invalid IL or missing references) //IL_6448: Unknown result type (might be due to invalid IL or missing references) //IL_6452: Unknown result type (might be due to invalid IL or missing references) //IL_6457: Unknown result type (might be due to invalid IL or missing references) //IL_645d: Unknown result type (might be due to invalid IL or missing references) //IL_6467: Unknown result type (might be due to invalid IL or missing references) //IL_646d: Unknown result type (might be due to invalid IL or missing references) //IL_6472: Unknown result type (might be due to invalid IL or missing references) //IL_6478: Unknown result type (might be due to invalid IL or missing references) //IL_647d: Unknown result type (might be due to invalid IL or missing references) //IL_6482: Unknown result type (might be due to invalid IL or missing references) //IL_6488: Unknown result type (might be due to invalid IL or missing references) //IL_6492: Unknown result type (might be due to invalid IL or missing references) //IL_6497: Unknown result type (might be due to invalid IL or missing references) //IL_649c: Unknown result type (might be due to invalid IL or missing references) //IL_64ac: Unknown result type (might be due to invalid IL or missing references) //IL_64b2: Unknown result type (might be due to invalid IL or missing references) //IL_64b7: Unknown result type (might be due to invalid IL or missing references) //IL_64bd: Unknown result type (might be due to invalid IL or missing references) //IL_64c2: Unknown result type (might be due to invalid IL or missing references) //IL_64c8: Unknown result type (might be due to invalid IL or missing references) //IL_64d2: Unknown result type (might be due to invalid IL or missing references) //IL_64d7: Unknown result type (might be due to invalid IL or missing references) //IL_64dd: Unknown result type (might be due to invalid IL or missing references) //IL_64e7: Unknown result type (might be due to invalid IL or missing references) //IL_64ed: Unknown result type (might be due to invalid IL or missing references) //IL_64f2: Unknown result type (might be due to invalid IL or missing references) //IL_64f8: Unknown result type (might be due to invalid IL or missing references) //IL_64fd: Unknown result type (might be due to invalid IL or missing references) //IL_6502: Unknown result type (might be due to invalid IL or missing references) //IL_6508: Unknown result type (might be due to invalid IL or missing references) //IL_6512: Unknown result type (might be due to invalid IL or missing references) //IL_6517: Unknown result type (might be due to invalid IL or missing references) //IL_6522: Unknown result type (might be due to invalid IL or missing references) //IL_6528: Unknown result type (might be due to invalid IL or missing references) //IL_652d: Unknown result type (might be due to invalid IL or missing references) //IL_6533: Unknown result type (might be due to invalid IL or missing references) //IL_6538: Unknown result type (might be due to invalid IL or missing references) //IL_653e: Unknown result type (might be due to invalid IL or missing references) //IL_6548: Unknown result type (might be due to invalid IL or missing references) //IL_654d: Unknown result type (might be due to invalid IL or missing references) //IL_6553: Unknown result type (might be due to invalid IL or missing references) //IL_655d: Unknown result type (might be due to invalid IL or missing references) //IL_6563: Unknown result type (might be due to invalid IL or missing references) //IL_6568: Unknown result type (might be due to invalid IL or missing references) //IL_656e: Unknown result type (might be due to invalid IL or missing references) //IL_6573: Unknown result type (might be due to invalid IL or missing references) //IL_6578: Unknown result type (might be due to invalid IL or missing references) //IL_657e: Unknown result type (might be due to invalid IL or missing references) //IL_6588: Unknown result type (might be due to invalid IL or missing references) //IL_658d: Unknown result type (might be due to invalid IL or missing references) //IL_6592: Unknown result type (might be due to invalid IL or missing references) //IL_65a2: Unknown result type (might be due to invalid IL or missing references) //IL_65a8: Unknown result type (might be due to invalid IL or missing references) //IL_65ad: Unknown result type (might be due to invalid IL or missing references) //IL_65b3: Unknown result type (might be due to invalid IL or missing references) //IL_65b8: Unknown result type (might be due to invalid IL or missing references) //IL_65be: Unknown result type (might be due to invalid IL or missing references) //IL_65c8: Unknown result type (might be due to invalid IL or missing references) //IL_65cd: Unknown result type (might be due to invalid IL or missing references) //IL_65d3: Unknown result type (might be due to invalid IL or missing references) //IL_65dd: Unknown result type (might be due to invalid IL or missing references) //IL_65e3: Unknown result type (might be due to invalid IL or missing references) //IL_65e8: Unknown result type (might be due to invalid IL or missing references) //IL_65ee: Unknown result type (might be due to invalid IL or missing references) //IL_65f3: Unknown result type (might be due to invalid IL or missing references) //IL_65f8: Unknown result type (might be due to invalid IL or missing references) //IL_6603: Unknown result type (might be due to invalid IL or missing references) //IL_6609: Unknown result type (might be due to invalid IL or missing references) //IL_660e: Unknown result type (might be due to invalid IL or missing references) //IL_6614: Unknown result type (might be due to invalid IL or missing references) //IL_6619: Unknown result type (might be due to invalid IL or missing references) //IL_661f: Unknown result type (might be due to invalid IL or missing references) //IL_6629: Unknown result type (might be due to invalid IL or missing references) //IL_662e: Unknown result type (might be due to invalid IL or missing references) //IL_6634: Unknown result type (might be due to invalid IL or missing references) //IL_663e: Unknown result type (might be due to invalid IL or missing references) //IL_6644: Unknown result type (might be due to invalid IL or missing references) //IL_6649: Unknown result type (might be due to invalid IL or missing references) //IL_664f: Unknown result type (might be due to invalid IL or missing references) //IL_6654: Unknown result type (might be due to invalid IL or missing references) //IL_6659: Unknown result type (might be due to invalid IL or missing references) //IL_665e: Unknown result type (might be due to invalid IL or missing references) //IL_666e: Unknown result type (might be due to invalid IL or missing references) //IL_6674: Unknown result type (might be due to invalid IL or missing references) //IL_6679: Unknown result type (might be due to invalid IL or missing references) //IL_667f: Unknown result type (might be due to invalid IL or missing references) //IL_6684: Unknown result type (might be due to invalid IL or missing references) //IL_668a: Unknown result type (might be due to invalid IL or missing references) //IL_6694: Unknown result type (might be due to invalid IL or missing references) //IL_6699: Unknown result type (might be due to invalid IL or missing references) //IL_669f: Unknown result type (might be due to invalid IL or missing references) //IL_66a9: Unknown result type (might be due to invalid IL or missing references) //IL_66af: Unknown result type (might be due to invalid IL or missing references) //IL_66b4: Unknown result type (might be due to invalid IL or missing references) //IL_66ba: Unknown result type (might be due to invalid IL or missing references) //IL_66bf: Unknown result type (might be due to invalid IL or missing references) //IL_66c4: Unknown result type (might be due to invalid IL or missing references) //IL_66ca: Unknown result type (might be due to invalid IL or missing references) //IL_66d4: Unknown result type (might be due to invalid IL or missing references) //IL_66d9: Unknown result type (might be due to invalid IL or missing references) //IL_66e4: Unknown result type (might be due to invalid IL or missing references) //IL_66ea: Unknown result type (might be due to invalid IL or missing references) //IL_66ef: Unknown result type (might be due to invalid IL or missing references) //IL_66f5: Unknown result type (might be due to invalid IL or missing references) //IL_66fa: Unknown result type (might be due to invalid IL or missing references) //IL_6700: Unknown result type (might be due to invalid IL or missing references) //IL_670a: Unknown result type (might be due to invalid IL or missing references) //IL_670f: Unknown result type (might be due to invalid IL or missing references) //IL_6715: Unknown result type (might be due to invalid IL or missing references) //IL_671f: Unknown result type (might be due to invalid IL or missing references) //IL_6725: Unknown result type (might be due to invalid IL or missing references) //IL_672a: Unknown result type (might be due to invalid IL or missing references) //IL_6730: Unknown result type (might be due to invalid IL or missing references) //IL_6735: Unknown result type (might be due to invalid IL or missing references) //IL_673a: Unknown result type (might be due to invalid IL or missing references) //IL_6740: Unknown result type (might be due to invalid IL or missing references) //IL_674a: Unknown result type (might be due to invalid IL or missing references) //IL_674f: Unknown result type (might be due to invalid IL or missing references) //IL_6754: Unknown result type (might be due to invalid IL or missing references) //IL_6764: Unknown result type (might be due to invalid IL or missing references) //IL_676a: Unknown result type (might be due to invalid IL or missing references) //IL_676f: Unknown result type (might be due to invalid IL or missing references) //IL_6775: Unknown result type (might be due to invalid IL or missing references) //IL_677a: Unknown result type (might be due to invalid IL or missing references) //IL_6780: Unknown result type (might be due to invalid IL or missing references) //IL_678a: Unknown result type (might be due to invalid IL or missing references) //IL_678f: Unknown result type (might be due to invalid IL or missing references) //IL_6795: Unknown result type (might be due to invalid IL or missing references) //IL_679f: Unknown result type (might be due to invalid IL or missing references) //IL_67a5: Unknown result type (might be due to invalid IL or missing references) //IL_67aa: Unknown result type (might be due to invalid IL or missing references) //IL_67b0: Unknown result type (might be due to invalid IL or missing references) //IL_67b5: Unknown result type (might be due to invalid IL or missing references) //IL_67ba: Unknown result type (might be due to invalid IL or missing references) //IL_67c0: Unknown result type (might be due to invalid IL or missing references) //IL_67ca: Unknown result type (might be due to invalid IL or missing references) //IL_67cf: Unknown result type (might be due to invalid IL or missing references) //IL_67da: Unknown result type (might be due to invalid IL or missing references) //IL_67e0: Unknown result type (might be due to invalid IL or missing references) //IL_67e5: Unknown result type (might be due to invalid IL or missing references) //IL_67eb: Unknown result type (might be due to invalid IL or missing references) //IL_67f0: Unknown result type (might be due to invalid IL or missing references) //IL_67f6: Unknown result type (might be due to invalid IL or missing references) //IL_6800: Unknown result type (might be due to invalid IL or missing references) //IL_6805: Unknown result type (might be due to invalid IL or missing references) //IL_680b: Unknown result type (might be due to invalid IL or missing references) //IL_6815: Unknown result type (might be due to invalid IL or missing references) //IL_681b: Unknown result type (might be due to invalid IL or missing references) //IL_6820: Unknown result type (might be due to invalid IL or missing references) //IL_6826: Unknown result type (might be due to invalid IL or missing references) //IL_682b: Unknown result type (might be due to invalid IL or missing references) //IL_6830: Unknown result type (might be due to invalid IL or missing references) //IL_6836: Unknown result type (might be due to invalid IL or missing references) //IL_6840: Unknown result type (might be due to invalid IL or missing references) //IL_6845: Unknown result type (might be due to invalid IL or missing references) //IL_684a: Unknown result type (might be due to invalid IL or missing references) //IL_685a: Unknown result type (might be due to invalid IL or missing references) //IL_6860: Unknown result type (might be due to invalid IL or missing references) //IL_6865: Unknown result type (might be due to invalid IL or missing references) //IL_686b: Unknown result type (might be due to invalid IL or missing references) //IL_6870: Unknown result type (might be due to invalid IL or missing references) //IL_6876: Unknown result type (might be due to invalid IL or missing references) //IL_6880: Unknown result type (might be due to invalid IL or missing references) //IL_6885: Unknown result type (might be due to invalid IL or missing references) //IL_688b: Unknown result type (might be due to invalid IL or missing references) //IL_6895: Unknown result type (might be due to invalid IL or missing references) //IL_689b: Unknown result type (might be due to invalid IL or missing references) //IL_68a0: Unknown result type (might be due to invalid IL or missing references) //IL_68a6: Unknown result type (might be due to invalid IL or missing references) //IL_68ab: Unknown result type (might be due to invalid IL or missing references) //IL_68b0: Unknown result type (might be due to invalid IL or missing references) //IL_68b6: Unknown result type (might be due to invalid IL or missing references) //IL_68c0: Unknown result type (might be due to invalid IL or missing references) //IL_68c5: Unknown result type (might be due to invalid IL or missing references) //IL_68d0: Unknown result type (might be due to invalid IL or missing references) //IL_68d6: Unknown result type (might be due to invalid IL or missing references) //IL_68db: Unknown result type (might be due to invalid IL or missing references) //IL_68e1: Unknown result type (might be due to invalid IL or missing references) //IL_68e6: Unknown result type (might be due to invalid IL or missing references) //IL_68ec: Unknown result type (might be due to invalid IL or missing references) //IL_68f6: Unknown result type (might be due to invalid IL or missing references) //IL_68fb: Unknown result type (might be due to invalid IL or missing references) //IL_6901: Unknown result type (might be due to invalid IL or missing references) //IL_690b: Unknown result type (might be due to invalid IL or missing references) //IL_6911: Unknown result type (might be due to invalid IL or missing references) //IL_6916: Unknown result type (might be due to invalid IL or missing references) //IL_691c: Unknown result type (might be due to invalid IL or missing references) //IL_6921: Unknown result type (might be due to invalid IL or missing references) //IL_6926: Unknown result type (might be due to invalid IL or missing references) //IL_692c: Unknown result type (might be due to invalid IL or missing references) //IL_6936: Unknown result type (might be due to invalid IL or missing references) //IL_693b: Unknown result type (might be due to invalid IL or missing references) //IL_6940: Unknown result type (might be due to invalid IL or missing references) //IL_6950: Unknown result type (might be due to invalid IL or missing references) //IL_6956: Unknown result type (might be due to invalid IL or missing references) //IL_695b: Unknown result type (might be due to invalid IL or missing references) //IL_6961: Unknown result type (might be due to invalid IL or missing references) //IL_6966: Unknown result type (might be due to invalid IL or missing references) //IL_696c: Unknown result type (might be due to invalid IL or missing references) //IL_6976: Unknown result type (might be due to invalid IL or missing references) //IL_697b: Unknown result type (might be due to invalid IL or missing references) //IL_6981: Unknown result type (might be due to invalid IL or missing references) //IL_698b: Unknown result type (might be due to invalid IL or missing references) //IL_6991: Unknown result type (might be due to invalid IL or missing references) //IL_6996: Unknown result type (might be due to invalid IL or missing references) //IL_699c: Unknown result type (might be due to invalid IL or missing references) //IL_69a1: Unknown result type (might be due to invalid IL or missing references) //IL_69a6: Unknown result type (might be due to invalid IL or missing references) //IL_69ac: Unknown result type (might be due to invalid IL or missing references) //IL_69b6: Unknown result type (might be due to invalid IL or missing references) //IL_69bb: Unknown result type (might be due to invalid IL or missing references) //IL_69c6: Unknown result type (might be due to invalid IL or missing references) //IL_69cc: Unknown result type (might be due to invalid IL or missing references) //IL_69d1: Unknown result type (might be due to invalid IL or missing references) //IL_69d7: Unknown result type (might be due to invalid IL or missing references) //IL_69dc: Unknown result type (might be due to invalid IL or missing references) //IL_69e2: Unknown result type (might be due to invalid IL or missing references) //IL_69ec: Unknown result type (might be due to invalid IL or missing references) //IL_69f1: Unknown result type (might be due to invalid IL or missing references) //IL_69f7: Unknown result type (might be due to invalid IL or missing references) //IL_6a01: Unknown result type (might be due to invalid IL or missing references) //IL_6a07: Unknown result type (might be due to invalid IL or missing references) //IL_6a0c: Unknown result type (might be due to invalid IL or missing references) //IL_6a12: Unknown result type (might be due to invalid IL or missing references) //IL_6a17: Unknown result type (might be due to invalid IL or missing references) //IL_6a1c: Unknown result type (might be due to invalid IL or missing references) //IL_6a22: Unknown result type (might be due to invalid IL or missing references) //IL_6a2c: Unknown result type (might be due to invalid IL or missing references) //IL_6a31: Unknown result type (might be due to invalid IL or missing references) //IL_6a36: Unknown result type (might be due to invalid IL or missing references) //IL_6a46: Unknown result type (might be due to invalid IL or missing references) //IL_6a4c: Unknown result type (might be due to invalid IL or missing references) //IL_6a51: Unknown result type (might be due to invalid IL or missing references) //IL_6a57: Unknown result type (might be due to invalid IL or missing references) //IL_6a5c: Unknown result type (might be due to invalid IL or missing references) //IL_6a62: Unknown result type (might be due to invalid IL or missing references) //IL_6a6c: Unknown result type (might be due to invalid IL or missing references) //IL_6a71: Unknown result type (might be due to invalid IL or missing references) //IL_6a77: Unknown result type (might be due to invalid IL or missing references) //IL_6a81: Unknown result type (might be due to invalid IL or missing references) //IL_6a87: Unknown result type (might be due to invalid IL or missing references) //IL_6a8c: Unknown result type (might be due to invalid IL or missing references) //IL_6a92: Unknown result type (might be due to invalid IL or missing references) //IL_6a97: Unknown result type (might be due to invalid IL or missing references) //IL_6a9c: Unknown result type (might be due to invalid IL or missing references) //IL_6aa2: Unknown result type (might be due to invalid IL or missing references) //IL_6aac: Unknown result type (might be due to invalid IL or missing references) //IL_6ab1: Unknown result type (might be due to invalid IL or missing references) //IL_6abc: Unknown result type (might be due to invalid IL or missing references) //IL_6ac2: Unknown result type (might be due to invalid IL or missing references) //IL_6ac7: Unknown result type (might be due to invalid IL or missing references) //IL_6acd: Unknown result type (might be due to invalid IL or missing references) //IL_6ad2: Unknown result type (might be due to invalid IL or missing references) //IL_6ad8: Unknown result type (might be due to invalid IL or missing references) //IL_6ae2: Unknown result type (might be due to invalid IL or missing references) //IL_6ae7: Unknown result type (might be due to invalid IL or missing references) //IL_6aed: Unknown result type (might be due to invalid IL or missing references) //IL_6af7: Unknown result type (might be due to invalid IL or missing references) //IL_6afd: Unknown result type (might be due to invalid IL or missing references) //IL_6b02: Unknown result type (might be due to invalid IL or missing references) //IL_6b08: Unknown result type (might be due to invalid IL or missing references) //IL_6b0d: Unknown result type (might be due to invalid IL or missing references) //IL_6b12: Unknown result type (might be due to invalid IL or missing references) //IL_6b18: Unknown result type (might be due to invalid IL or missing references) //IL_6b22: Unknown result type (might be due to invalid IL or missing references) //IL_6b27: Unknown result type (might be due to invalid IL or missing references) //IL_6b2c: Unknown result type (might be due to invalid IL or missing references) //IL_6b3c: Unknown result type (might be due to invalid IL or missing references) //IL_6b42: Unknown result type (might be due to invalid IL or missing references) //IL_6b47: Unknown result type (might be due to invalid IL or missing references) //IL_6b4d: Unknown result type (might be due to invalid IL or missing references) //IL_6b52: Unknown result type (might be due to invalid IL or missing references) //IL_6b58: Unknown result type (might be due to invalid IL or missing references) //IL_6b62: Unknown result type (might be due to invalid IL or missing references) //IL_6b67: Unknown result type (might be due to invalid IL or missing references) //IL_6b6d: Unknown result type (might be due to invalid IL or missing references) //IL_6b77: Unknown result type (might be due to invalid IL or missing references) //IL_6b7d: Unknown result type (might be due to invalid IL or missing references) //IL_6b82: Unknown result type (might be due to invalid IL or missing references) //IL_6b88: Unknown result type (might be due to invalid IL or missing references) //IL_6b8d: Unknown result type (might be due to invalid IL or missing references) //IL_6b92: Unknown result type (might be due to invalid IL or missing references) //IL_6b98: Unknown result type (might be due to invalid IL or missing references) //IL_6ba2: Unknown result type (might be due to invalid IL or missing references) //IL_6ba7: Unknown result type (might be due to invalid IL or missing references) //IL_6bb2: Unknown result type (might be due to invalid IL or missing references) //IL_6bb8: Unknown result type (might be due to invalid IL or missing references) //IL_6bbd: Unknown result type (might be due to invalid IL or missing references) //IL_6bc3: Unknown result type (might be due to invalid IL or missing references) //IL_6bc8: Unknown result type (might be due to invalid IL or missing references) //IL_6bce: Unknown result type (might be due to invalid IL or missing references) //IL_6bd8: Unknown result type (might be due to invalid IL or missing references) //IL_6bdd: Unknown result type (might be due to invalid IL or missing references) //IL_6be3: Unknown result type (might be due to invalid IL or missing references) //IL_6bed: Unknown result type (might be due to invalid IL or missing references) //IL_6bf3: Unknown result type (might be due to invalid IL or missing references) //IL_6bf8: Unknown result type (might be due to invalid IL or missing references) //IL_6bfe: Unknown result type (might be due to invalid IL or missing references) //IL_6c03: Unknown result type (might be due to invalid IL or missing references) //IL_6c08: Unknown result type (might be due to invalid IL or missing references) //IL_6c0e: Unknown result type (might be due to invalid IL or missing references) //IL_6c18: Unknown result type (might be due to invalid IL or missing references) //IL_6c1d: Unknown result type (might be due to invalid IL or missing references) //IL_6c22: Unknown result type (might be due to invalid IL or missing references) //IL_6c32: Unknown result type (might be due to invalid IL or missing references) //IL_6c38: Unknown result type (might be due to invalid IL or missing references) //IL_6c3d: Unknown result type (might be due to invalid IL or missing references) //IL_6c43: Unknown result type (might be due to invalid IL or missing references) //IL_6c48: Unknown result type (might be due to invalid IL or missing references) //IL_6c4e: Unknown result type (might be due to invalid IL or missing references) //IL_6c58: Unknown result type (might be due to invalid IL or missing references) //IL_6c5d: Unknown result type (might be due to invalid IL or missing references) //IL_6c63: Unknown result type (might be due to invalid IL or missing references) //IL_6c6d: Unknown result type (might be due to invalid IL or missing references) //IL_6c73: Unknown result type (might be due to invalid IL or missing references) //IL_6c78: Unknown result type (might be due to invalid IL or missing references) //IL_6c7e: Unknown result type (might be due to invalid IL or missing references) //IL_6c83: Unknown result type (might be due to invalid IL or missing references) //IL_6c88: Unknown result type (might be due to invalid IL or missing references) //IL_6c8e: Unknown result type (might be due to invalid IL or missing references) //IL_6c98: Unknown result type (might be due to invalid IL or missing references) //IL_6c9d: Unknown result type (might be due to invalid IL or missing references) //IL_6ca8: Unknown result type (might be due to invalid IL or missing references) //IL_6cae: Unknown result type (might be due to invalid IL or missing references) //IL_6cb3: Unknown result type (might be due to invalid IL or missing references) //IL_6cb9: Unknown result type (might be due to invalid IL or missing references) //IL_6cbe: Unknown result type (might be due to invalid IL or missing references) //IL_6cc4: Unknown result type (might be due to invalid IL or missing references) //IL_6cce: Unknown result type (might be due to invalid IL or missing references) //IL_6cd3: Unknown result type (might be due to invalid IL or missing references) //IL_6cd9: Unknown result type (might be due to invalid IL or missing references) //IL_6ce3: Unknown result type (might be due to invalid IL or missing references) //IL_6ce9: Unknown result type (might be due to invalid IL or missing references) //IL_6cee: Unknown result type (might be due to invalid IL or missing references) //IL_6cf4: Unknown result type (might be due to invalid IL or missing references) //IL_6cf9: Unknown result type (might be due to invalid IL or missing references) //IL_6cfe: Unknown result type (might be due to invalid IL or missing references) //IL_6d04: Unknown result type (might be due to invalid IL or missing references) //IL_6d0e: Unknown result type (might be due to invalid IL or missing references) //IL_6d13: Unknown result type (might be due to invalid IL or missing references) //IL_6d18: Unknown result type (might be due to invalid IL or missing references) //IL_6d28: Unknown result type (might be due to invalid IL or missing references) //IL_6d2e: Unknown result type (might be due to invalid IL or missing references) //IL_6d33: Unknown result type (might be due to invalid IL or missing references) //IL_6d39: Unknown result type (might be due to invalid IL or missing references) //IL_6d3e: Unknown result type (might be due to invalid IL or missing references) //IL_6d44: Unknown result type (might be due to invalid IL or missing references) //IL_6d4e: Unknown result type (might be due to invalid IL or missing references) //IL_6d54: Unknown result type (might be due to invalid IL or missing references) //IL_6d59: Unknown result type (might be due to invalid IL or missing references) //IL_6d5f: Unknown result type (might be due to invalid IL or missing references) //IL_6d64: Unknown result type (might be due to invalid IL or missing references) //IL_6d69: Unknown result type (might be due to invalid IL or missing references) //IL_6d74: Unknown result type (might be due to invalid IL or missing references) //IL_6d7a: Unknown result type (might be due to invalid IL or missing references) //IL_6d7f: Unknown result type (might be due to invalid IL or missing references) //IL_6d85: Unknown result type (might be due to invalid IL or missing references) //IL_6d8a: Unknown result type (might be due to invalid IL or missing references) //IL_6d90: Unknown result type (might be due to invalid IL or missing references) //IL_6d9a: Unknown result type (might be due to invalid IL or missing references) //IL_6d9f: Unknown result type (might be due to invalid IL or missing references) //IL_6da5: Unknown result type (might be due to invalid IL or missing references) //IL_6daf: Unknown result type (might be due to invalid IL or missing references) //IL_6db5: Unknown result type (might be due to invalid IL or missing references) //IL_6dba: Unknown result type (might be due to invalid IL or missing references) //IL_6dc0: Unknown result type (might be due to invalid IL or missing references) //IL_6dc5: Unknown result type (might be due to invalid IL or missing references) //IL_6dca: Unknown result type (might be due to invalid IL or missing references) //IL_6dcf: Unknown result type (might be due to invalid IL or missing references) //IL_6ddf: Unknown result type (might be due to invalid IL or missing references) //IL_6de5: Unknown result type (might be due to invalid IL or missing references) //IL_6dea: Unknown result type (might be due to invalid IL or missing references) //IL_6df0: Unknown result type (might be due to invalid IL or missing references) //IL_6df5: Unknown result type (might be due to invalid IL or missing references) //IL_6dfb: Unknown result type (might be due to invalid IL or missing references) //IL_6e05: Unknown result type (might be due to invalid IL or missing references) //IL_6e0b: Unknown result type (might be due to invalid IL or missing references) //IL_6e10: Unknown result type (might be due to invalid IL or missing references) //IL_6e16: Unknown result type (might be due to invalid IL or missing references) //IL_6e1b: Unknown result type (might be due to invalid IL or missing references) //IL_6e20: Unknown result type (might be due to invalid IL or missing references) //IL_6e26: Unknown result type (might be due to invalid IL or missing references) //IL_6e30: Unknown result type (might be due to invalid IL or missing references) //IL_6e35: Unknown result type (might be due to invalid IL or missing references) //IL_6e40: Unknown result type (might be due to invalid IL or missing references) //IL_6e46: Unknown result type (might be due to invalid IL or missing references) //IL_6e4b: Unknown result type (might be due to invalid IL or missing references) //IL_6e51: Unknown result type (might be due to invalid IL or missing references) //IL_6e56: Unknown result type (might be due to invalid IL or missing references) //IL_6e5c: Unknown result type (might be due to invalid IL or missing references) //IL_6e66: Unknown result type (might be due to invalid IL or missing references) //IL_6e6b: Unknown result type (might be due to invalid IL or missing references) //IL_6e71: Unknown result type (might be due to invalid IL or missing references) //IL_6e7b: Unknown result type (might be due to invalid IL or missing references) //IL_6e81: Unknown result type (might be due to invalid IL or missing references) //IL_6e86: Unknown result type (might be due to invalid IL or missing references) //IL_6e8c: Unknown result type (might be due to invalid IL or missing references) //IL_6e91: Unknown result type (might be due to invalid IL or missing references) //IL_6e96: Unknown result type (might be due to invalid IL or missing references) //IL_6e9c: Unknown result type (might be due to invalid IL or missing references) //IL_6ea6: Unknown result type (might be due to invalid IL or missing references) //IL_6eab: Unknown result type (might be due to invalid IL or missing references) //IL_6eb0: Unknown result type (might be due to invalid IL or missing references) //IL_6ec0: Unknown result type (might be due to invalid IL or missing references) //IL_6ec6: Unknown result type (might be due to invalid IL or missing references) //IL_6ecb: Unknown result type (might be due to invalid IL or missing references) //IL_6ed1: Unknown result type (might be due to invalid IL or missing references) //IL_6ed6: Unknown result type (might be due to invalid IL or missing references) //IL_6edc: Unknown result type (might be due to invalid IL or missing references) //IL_6ee6: Unknown result type (might be due to invalid IL or missing references) //IL_6eec: Unknown result type (might be due to invalid IL or missing references) //IL_6ef1: Unknown result type (might be due to invalid IL or missing references) //IL_6ef7: Unknown result type (might be due to invalid IL or missing references) //IL_6efc: Unknown result type (might be due to invalid IL or missing references) //IL_6f01: Unknown result type (might be due to invalid IL or missing references) //IL_6f07: Unknown result type (might be due to invalid IL or missing references) //IL_6f11: Unknown result type (might be due to invalid IL or missing references) //IL_6f16: Unknown result type (might be due to invalid IL or missing references) //IL_6f21: Unknown result type (might be due to invalid IL or missing references) //IL_6f27: Unknown result type (might be due to invalid IL or missing references) //IL_6f2c: Unknown result type (might be due to invalid IL or missing references) //IL_6f32: Unknown result type (might be due to invalid IL or missing references) //IL_6f37: Unknown result type (might be due to invalid IL or missing references) //IL_6f3d: Unknown result type (might be due to invalid IL or missing references) //IL_6f47: Unknown result type (might be due to invalid IL or missing references) //IL_6f4c: Unknown result type (might be due to invalid IL or missing references) //IL_6f52: Unknown result type (might be due to invalid IL or missing references) //IL_6f5c: Unknown result type (might be due to invalid IL or missing references) //IL_6f62: Unknown result type (might be due to invalid IL or missing references) //IL_6f67: Unknown result type (might be due to invalid IL or missing references) //IL_6f6d: Unknown result type (might be due to invalid IL or missing references) //IL_6f72: Unknown result type (might be due to invalid IL or missing references) //IL_6f77: Unknown result type (might be due to invalid IL or missing references) //IL_6f7d: Unknown result type (might be due to invalid IL or missing references) //IL_6f87: Unknown result type (might be due to invalid IL or missing references) //IL_6f8c: Unknown result type (might be due to invalid IL or missing references) //IL_6f91: Unknown result type (might be due to invalid IL or missing references) //IL_6fa1: Unknown result type (might be due to invalid IL or missing references) //IL_6fa7: Unknown result type (might be due to invalid IL or missing references) //IL_6fac: Unknown result type (might be due to invalid IL or missing references) //IL_6fb2: Unknown result type (might be due to invalid IL or missing references) //IL_6fb7: Unknown result type (might be due to invalid IL or missing references) //IL_6fbd: Unknown result type (might be due to invalid IL or missing references) //IL_6fc7: Unknown result type (might be due to invalid IL or missing references) //IL_6fcd: Unknown result type (might be due to invalid IL or missing references) //IL_6fd2: Unknown result type (might be due to invalid IL or missing references) //IL_6fd8: Unknown result type (might be due to invalid IL or missing references) //IL_6fdd: Unknown result type (might be due to invalid IL or missing references) //IL_6fe2: Unknown result type (might be due to invalid IL or missing references) //IL_6fe8: Unknown result type (might be due to invalid IL or missing references) //IL_6ff2: Unknown result type (might be due to invalid IL or missing references) //IL_6ff7: Unknown result type (might be due to invalid IL or missing references) //IL_7002: Unknown result type (might be due to invalid IL or missing references) //IL_7008: Unknown result type (might be due to invalid IL or missing references) //IL_700d: Unknown result type (might be due to invalid IL or missing references) //IL_7013: Unknown result type (might be due to invalid IL or missing references) //IL_7018: Unknown result type (might be due to invalid IL or missing references) //IL_701e: Unknown result type (might be due to invalid IL or missing references) //IL_7028: Unknown result type (might be due to invalid IL or missing references) //IL_702d: Unknown result type (might be due to invalid IL or missing references) //IL_7033: Unknown result type (might be due to invalid IL or missing references) //IL_703d: Unknown result type (might be due to invalid IL or missing references) //IL_7043: Unknown result type (might be due to invalid IL or missing references) //IL_7048: Unknown result type (might be due to invalid IL or missing references) //IL_704e: Unknown result type (might be due to invalid IL or missing references) //IL_7053: Unknown result type (might be due to invalid IL or missing references) //IL_7058: Unknown result type (might be due to invalid IL or missing references) //IL_705e: Unknown result type (might be due to invalid IL or missing references) //IL_7068: Unknown result type (might be due to invalid IL or missing references) //IL_706d: Unknown result type (might be due to invalid IL or missing references) //IL_7072: Unknown result type (might be due to invalid IL or missing references) //IL_7082: Unknown result type (might be due to invalid IL or missing references) //IL_7088: Unknown result type (might be due to invalid IL or missing references) //IL_708d: Unknown result type (might be due to invalid IL or missing references) //IL_7093: Unknown result type (might be due to invalid IL or missing references) //IL_7098: Unknown result type (might be due to invalid IL or missing references) //IL_709e: Unknown result type (might be due to invalid IL or missing references) //IL_70a8: Unknown result type (might be due to invalid IL or missing references) //IL_70ae: Unknown result type (might be due to invalid IL or missing references) //IL_70b3: Unknown result type (might be due to invalid IL or missing references) //IL_70b9: Unknown result type (might be due to invalid IL or missing references) //IL_70be: Unknown result type (might be due to invalid IL or missing references) //IL_70c3: Unknown result type (might be due to invalid IL or missing references) //IL_70c9: Unknown result type (might be due to invalid IL or missing references) //IL_70d3: Unknown result type (might be due to invalid IL or missing references) //IL_70d8: Unknown result type (might be due to invalid IL or missing references) //IL_70e3: Unknown result type (might be due to invalid IL or missing references) //IL_70e9: Unknown result type (might be due to invalid IL or missing references) //IL_70ee: Unknown result type (might be due to invalid IL or missing references) //IL_70f4: Unknown result type (might be due to invalid IL or missing references) //IL_70f9: Unknown result type (might be due to invalid IL or missing references) //IL_70ff: Unknown result type (might be due to invalid IL or missing references) //IL_7109: Unknown result type (might be due to invalid IL or missing references) //IL_710e: Unknown result type (might be due to invalid IL or missing references) //IL_7114: Unknown result type (might be due to invalid IL or missing references) //IL_711e: Unknown result type (might be due to invalid IL or missing references) //IL_7124: Unknown result type (might be due to invalid IL or missing references) //IL_7129: Unknown result type (might be due to invalid IL or missing references) //IL_712f: Unknown result type (might be due to invalid IL or missing references) //IL_7134: Unknown result type (might be due to invalid IL or missing references) //IL_7139: Unknown result type (might be due to invalid IL or missing references) //IL_713f: Unknown result type (might be due to invalid IL or missing references) //IL_7149: Unknown result type (might be due to invalid IL or missing references) //IL_714e: Unknown result type (might be due to invalid IL or missing references) //IL_7153: Unknown result type (might be due to invalid IL or missing references) //IL_7163: Unknown result type (might be due to invalid IL or missing references) //IL_7169: Unknown result type (might be due to invalid IL or missing references) //IL_716e: Unknown result type (might be due to invalid IL or missing references) //IL_7174: Unknown result type (might be due to invalid IL or missing references) //IL_7179: Unknown result type (might be due to invalid IL or missing references) //IL_717f: Unknown result type (might be due to invalid IL or missing references) //IL_7189: Unknown result type (might be due to invalid IL or missing references) //IL_718f: Unknown result type (might be due to invalid IL or missing references) //IL_7194: Unknown result type (might be due to invalid IL or missing references) //IL_719a: Unknown result type (might be due to invalid IL or missing references) //IL_719f: Unknown result type (might be due to invalid IL or missing references) //IL_71a4: Unknown result type (might be due to invalid IL or missing references) //IL_71aa: Unknown result type (might be due to invalid IL or missing references) //IL_71b4: Unknown result type (might be due to invalid IL or missing references) //IL_71b9: Unknown result type (might be due to invalid IL or missing references) //IL_71c4: Unknown result type (might be due to invalid IL or missing references) //IL_71ca: Unknown result type (might be due to invalid IL or missing references) //IL_71cf: Unknown result type (might be due to invalid IL or missing references) //IL_71d5: Unknown result type (might be due to invalid IL or missing references) //IL_71da: Unknown result type (might be due to invalid IL or missing references) //IL_71e0: Unknown result type (might be due to invalid IL or missing references) //IL_71ea: Unknown result type (might be due to invalid IL or missing references) //IL_71ef: Unknown result type (might be due to invalid IL or missing references) //IL_71f5: Unknown result type (might be due to invalid IL or missing references) //IL_71ff: Unknown result type (might be due to invalid IL or missing references) //IL_7205: Unknown result type (might be due to invalid IL or missing references) //IL_720a: Unknown result type (might be due to invalid IL or missing references) //IL_7210: Unknown result type (might be due to invalid IL or missing references) //IL_7215: Unknown result type (might be due to invalid IL or missing references) //IL_721a: Unknown result type (might be due to invalid IL or missing references) //IL_7220: Unknown result type (might be due to invalid IL or missing references) //IL_722a: Unknown result type (might be due to invalid IL or missing references) //IL_722f: Unknown result type (might be due to invalid IL or missing references) //IL_7234: Unknown result type (might be due to invalid IL or missing references) //IL_7244: Unknown result type (might be due to invalid IL or missing references) //IL_724a: Unknown result type (might be due to invalid IL or missing references) //IL_724f: Unknown result type (might be due to invalid IL or missing references) //IL_7255: Unknown result type (might be due to invalid IL or missing references) //IL_725a: Unknown result type (might be due to invalid IL or missing references) //IL_7260: Unknown result type (might be due to invalid IL or missing references) //IL_726a: Unknown result type (might be due to invalid IL or missing references) //IL_7270: Unknown result type (might be due to invalid IL or missing references) //IL_7275: Unknown result type (might be due to invalid IL or missing references) //IL_727b: Unknown result type (might be due to invalid IL or missing references) //IL_7280: Unknown result type (might be due to invalid IL or missing references) //IL_7285: Unknown result type (might be due to invalid IL or missing references) //IL_728b: Unknown result type (might be due to invalid IL or missing references) //IL_7295: Unknown result type (might be due to invalid IL or missing references) //IL_729a: Unknown result type (might be due to invalid IL or missing references) //IL_72a5: Unknown result type (might be due to invalid IL or missing references) //IL_72ab: Unknown result type (might be due to invalid IL or missing references) //IL_72b0: Unknown result type (might be due to invalid IL or missing references) //IL_72b6: Unknown result type (might be due to invalid IL or missing references) //IL_72bb: Unknown result type (might be due to invalid IL or missing references) //IL_72c1: Unknown result type (might be due to invalid IL or missing references) //IL_72cb: Unknown result type (might be due to invalid IL or missing references) //IL_72d0: Unknown result type (might be due to invalid IL or missing references) //IL_72d6: Unknown result type (might be due to invalid IL or missing references) //IL_72e0: Unknown result type (might be due to invalid IL or missing references) //IL_72e6: Unknown result type (might be due to invalid IL or missing references) //IL_72eb: Unknown result type (might be due to invalid IL or missing references) //IL_72f1: Unknown result type (might be due to invalid IL or missing references) //IL_72f6: Unknown result type (might be due to invalid IL or missing references) //IL_72fb: Unknown result type (might be due to invalid IL or missing references) //IL_7301: Unknown result type (might be due to invalid IL or missing references) //IL_730b: Unknown result type (might be due to invalid IL or missing references) //IL_7310: Unknown result type (might be due to invalid IL or missing references) //IL_7315: Unknown result type (might be due to invalid IL or missing references) //IL_7325: Unknown result type (might be due to invalid IL or missing references) //IL_732b: Unknown result type (might be due to invalid IL or missing references) //IL_7330: Unknown result type (might be due to invalid IL or missing references) //IL_7336: Unknown result type (might be due to invalid IL or missing references) //IL_733b: Unknown result type (might be due to invalid IL or missing references) //IL_7341: Unknown result type (might be due to invalid IL or missing references) //IL_734b: Unknown result type (might be due to invalid IL or missing references) //IL_7351: Unknown result type (might be due to invalid IL or missing references) //IL_7356: Unknown result type (might be due to invalid IL or missing references) //IL_735c: Unknown result type (might be due to invalid IL or missing references) //IL_7361: Unknown result type (might be due to invalid IL or missing references) //IL_7366: Unknown result type (might be due to invalid IL or missing references) //IL_736c: Unknown result type (might be due to invalid IL or missing references) //IL_7376: Unknown result type (might be due to invalid IL or missing references) //IL_737b: Unknown result type (might be due to invalid IL or missing references) //IL_7386: Unknown result type (might be due to invalid IL or missing references) //IL_738c: Unknown result type (might be due to invalid IL or missing references) //IL_7391: Unknown result type (might be due to invalid IL or missing references) //IL_7397: Unknown result type (might be due to invalid IL or missing references) //IL_739c: Unknown result type (might be due to invalid IL or missing references) //IL_73a2: Unknown result type (might be due to invalid IL or missing references) //IL_73ac: Unknown result type (might be due to invalid IL or missing references) //IL_73b1: Unknown result type (might be due to invalid IL or missing references) //IL_73b7: Unknown result type (might be due to invalid IL or missing references) //IL_73c1: Unknown result type (might be due to invalid IL or missing references) //IL_73c7: Unknown result type (might be due to invalid IL or missing references) //IL_73cc: Unknown result type (might be due to invalid IL or missing references) //IL_73d2: Unknown result type (might be due to invalid IL or missing references) //IL_73d7: Unknown result type (might be due to invalid IL or missing references) //IL_73dc: Unknown result type (might be due to invalid IL or missing references) //IL_73e2: Unknown result type (might be due to invalid IL or missing references) //IL_73ec: Unknown result type (might be due to invalid IL or missing references) //IL_73f1: Unknown result type (might be due to invalid IL or missing references) //IL_73f6: Unknown result type (might be due to invalid IL or missing references) //IL_7406: Unknown result type (might be due to invalid IL or missing references) //IL_740c: Unknown result type (might be due to invalid IL or missing references) //IL_7411: Unknown result type (might be due to invalid IL or missing references) //IL_7417: Unknown result type (might be due to invalid IL or missing references) //IL_741c: Unknown result type (might be due to invalid IL or missing references) //IL_7422: Unknown result type (might be due to invalid IL or missing references) //IL_742c: Unknown result type (might be due to invalid IL or missing references) //IL_7431: Unknown result type (might be due to invalid IL or missing references) //IL_7437: Unknown result type (might be due to invalid IL or missing references) //IL_7441: Unknown result type (might be due to invalid IL or missing references) //IL_7447: Unknown result type (might be due to invalid IL or missing references) //IL_744c: Unknown result type (might be due to invalid IL or missing references) //IL_7452: Unknown result type (might be due to invalid IL or missing references) //IL_7457: Unknown result type (might be due to invalid IL or missing references) //IL_745c: Unknown result type (might be due to invalid IL or missing references) //IL_7467: Unknown result type (might be due to invalid IL or missing references) //IL_746d: Unknown result type (might be due to invalid IL or missing references) //IL_7472: Unknown result type (might be due to invalid IL or missing references) //IL_7478: Unknown result type (might be due to invalid IL or missing references) //IL_747d: Unknown result type (might be due to invalid IL or missing references) //IL_7483: Unknown result type (might be due to invalid IL or missing references) //IL_748d: Unknown result type (might be due to invalid IL or missing references) //IL_7492: Unknown result type (might be due to invalid IL or missing references) //IL_7498: Unknown result type (might be due to invalid IL or missing references) //IL_74a2: Unknown result type (might be due to invalid IL or missing references) //IL_74a8: Unknown result type (might be due to invalid IL or missing references) //IL_74ad: Unknown result type (might be due to invalid IL or missing references) //IL_74b3: Unknown result type (might be due to invalid IL or missing references) //IL_74b8: Unknown result type (might be due to invalid IL or missing references) //IL_74bd: Unknown result type (might be due to invalid IL or missing references) //IL_74c2: Unknown result type (might be due to invalid IL or missing references) //IL_74d2: Unknown result type (might be due to invalid IL or missing references) //IL_74d8: Unknown result type (might be due to invalid IL or missing references) //IL_74dd: Unknown result type (might be due to invalid IL or missing references) //IL_74e3: Unknown result type (might be due to invalid IL or missing references) //IL_74e8: Unknown result type (might be due to invalid IL or missing references) //IL_74ee: Unknown result type (might be due to invalid IL or missing references) //IL_74f8: Unknown result type (might be due to invalid IL or missing references) //IL_74fd: Unknown result type (might be due to invalid IL or missing references) //IL_7503: Unknown result type (might be due to invalid IL or missing references) //IL_750d: Unknown result type (might be due to invalid IL or missing references) //IL_7513: Unknown result type (might be due to invalid IL or missing references) //IL_7518: Unknown result type (might be due to invalid IL or missing references) //IL_751e: Unknown result type (might be due to invalid IL or missing references) //IL_7523: Unknown result type (might be due to invalid IL or missing references) //IL_7528: Unknown result type (might be due to invalid IL or missing references) //IL_752e: Unknown result type (might be due to invalid IL or missing references) //IL_7538: Unknown result type (might be due to invalid IL or missing references) //IL_753d: Unknown result type (might be due to invalid IL or missing references) //IL_7548: Unknown result type (might be due to invalid IL or missing references) //IL_754e: Unknown result type (might be due to invalid IL or missing references) //IL_7553: Unknown result type (might be due to invalid IL or missing references) //IL_7559: Unknown result type (might be due to invalid IL or missing references) //IL_755e: Unknown result type (might be due to invalid IL or missing references) //IL_7564: Unknown result type (might be due to invalid IL or missing references) //IL_756e: Unknown result type (might be due to invalid IL or missing references) //IL_7573: Unknown result type (might be due to invalid IL or missing references) //IL_7579: Unknown result type (might be due to invalid IL or missing references) //IL_7583: Unknown result type (might be due to invalid IL or missing references) //IL_7589: Unknown result type (might be due to invalid IL or missing references) //IL_758e: Unknown result type (might be due to invalid IL or missing references) //IL_7594: Unknown result type (might be due to invalid IL or missing references) //IL_7599: Unknown result type (might be due to invalid IL or missing references) //IL_759e: Unknown result type (might be due to invalid IL or missing references) //IL_75a4: Unknown result type (might be due to invalid IL or missing references) //IL_75ae: Unknown result type (might be due to invalid IL or missing references) //IL_75b3: Unknown result type (might be due to invalid IL or missing references) //IL_75b8: Unknown result type (might be due to invalid IL or missing references) //IL_75c8: Unknown result type (might be due to invalid IL or missing references) //IL_75ce: Unknown result type (might be due to invalid IL or missing references) //IL_75d3: Unknown result type (might be due to invalid IL or missing references) //IL_75d9: Unknown result type (might be due to invalid IL or missing references) //IL_75de: Unknown result type (might be due to invalid IL or missing references) //IL_75e4: Unknown result type (might be due to invalid IL or missing references) //IL_75ee: Unknown result type (might be due to invalid IL or missing references) //IL_75f3: Unknown result type (might be due to invalid IL or missing references) //IL_75f9: Unknown result type (might be due to invalid IL or missing references) //IL_7603: Unknown result type (might be due to invalid IL or missing references) //IL_7609: Unknown result type (might be due to invalid IL or missing references) //IL_760e: Unknown result type (might be due to invalid IL or missing references) //IL_7614: Unknown result type (might be due to invalid IL or missing references) //IL_7619: Unknown result type (might be due to invalid IL or missing references) //IL_761e: Unknown result type (might be due to invalid IL or missing references) //IL_7624: Unknown result type (might be due to invalid IL or missing references) //IL_762e: Unknown result type (might be due to invalid IL or missing references) //IL_7633: Unknown result type (might be due to invalid IL or missing references) //IL_763e: Unknown result type (might be due to invalid IL or missing references) //IL_7644: Unknown result type (might be due to invalid IL or missing references) //IL_7649: Unknown result type (might be due to invalid IL or missing references) //IL_764f: Unknown result type (might be due to invalid IL or missing references) //IL_7654: Unknown result type (might be due to invalid IL or missing references) //IL_765a: Unknown result type (might be due to invalid IL or missing references) //IL_7664: Unknown result type (might be due to invalid IL or missing references) //IL_7669: Unknown result type (might be due to invalid IL or missing references) //IL_766f: Unknown result type (might be due to invalid IL or missing references) //IL_7679: Unknown result type (might be due to invalid IL or missing references) //IL_767f: Unknown result type (might be due to invalid IL or missing references) //IL_7684: Unknown result type (might be due to invalid IL or missing references) //IL_768a: Unknown result type (might be due to invalid IL or missing references) //IL_768f: Unknown result type (might be due to invalid IL or missing references) //IL_7694: Unknown result type (might be due to invalid IL or missing references) //IL_769a: Unknown result type (might be due to invalid IL or missing references) //IL_76a4: Unknown result type (might be due to invalid IL or missing references) //IL_76a9: Unknown result type (might be due to invalid IL or missing references) //IL_76ae: Unknown result type (might be due to invalid IL or missing references) //IL_76be: Unknown result type (might be due to invalid IL or missing references) //IL_76c4: Unknown result type (might be due to invalid IL or missing references) //IL_76c9: Unknown result type (might be due to invalid IL or missing references) //IL_76cf: Unknown result type (might be due to invalid IL or missing references) //IL_76d4: Unknown result type (might be due to invalid IL or missing references) //IL_76da: Unknown result type (might be due to invalid IL or missing references) //IL_76e4: Unknown result type (might be due to invalid IL or missing references) //IL_76e9: Unknown result type (might be due to invalid IL or missing references) //IL_76ef: Unknown result type (might be due to invalid IL or missing references) //IL_76f9: Unknown result type (might be due to invalid IL or missing references) //IL_76ff: Unknown result type (might be due to invalid IL or missing references) //IL_7704: Unknown result type (might be due to invalid IL or missing references) //IL_770a: Unknown result type (might be due to invalid IL or missing references) //IL_770f: Unknown result type (might be due to invalid IL or missing references) //IL_7714: Unknown result type (might be due to invalid IL or missing references) //IL_771a: Unknown result type (might be due to invalid IL or missing references) //IL_7724: Unknown result type (might be due to invalid IL or missing references) //IL_7729: Unknown result type (might be due to invalid IL or missing references) //IL_7734: Unknown result type (might be due to invalid IL or missing references) //IL_773a: Unknown result type (might be due to invalid IL or missing references) //IL_773f: Unknown result type (might be due to invalid IL or missing references) //IL_7745: Unknown result type (might be due to invalid IL or missing references) //IL_774a: Unknown result type (might be due to invalid IL or missing references) //IL_7750: Unknown result type (might be due to invalid IL or missing references) //IL_775a: Unknown result type (might be due to invalid IL or missing references) //IL_775f: Unknown result type (might be due to invalid IL or missing references) //IL_7765: Unknown result type (might be due to invalid IL or missing references) //IL_776f: Unknown result type (might be due to invalid IL or missing references) //IL_7775: Unknown result type (might be due to invalid IL or missing references) //IL_777a: Unknown result type (might be due to invalid IL or missing references) //IL_7780: Unknown result type (might be due to invalid IL or missing references) //IL_7785: Unknown result type (might be due to invalid IL or missing references) //IL_778a: Unknown result type (might be due to invalid IL or missing references) //IL_7790: Unknown result type (might be due to invalid IL or missing references) //IL_779a: Unknown result type (might be due to invalid IL or missing references) //IL_779f: Unknown result type (might be due to invalid IL or missing references) //IL_77a4: Unknown result type (might be due to invalid IL or missing references) //IL_77b4: Unknown result type (might be due to invalid IL or missing references) //IL_77ba: Unknown result type (might be due to invalid IL or missing references) //IL_77bf: Unknown result type (might be due to invalid IL or missing references) //IL_77c5: Unknown result type (might be due to invalid IL or missing references) //IL_77ca: Unknown result type (might be due to invalid IL or missing references) //IL_77d0: Unknown result type (might be due to invalid IL or missing references) //IL_77da: Unknown result type (might be due to invalid IL or missing references) //IL_77df: Unknown result type (might be due to invalid IL or missing references) //IL_77e5: Unknown result type (might be due to invalid IL or missing references) //IL_77ef: Unknown result type (might be due to invalid IL or missing references) //IL_77f5: Unknown result type (might be due to invalid IL or missing references) //IL_77fa: Unknown result type (might be due to invalid IL or missing references) //IL_7800: Unknown result type (might be due to invalid IL or missing references) //IL_7805: Unknown result type (might be due to invalid IL or missing references) //IL_780a: Unknown result type (might be due to invalid IL or missing references) //IL_7810: Unknown result type (might be due to invalid IL or missing references) //IL_781a: Unknown result type (might be due to invalid IL or missing references) //IL_781f: Unknown result type (might be due to invalid IL or missing references) //IL_782a: Unknown result type (might be due to invalid IL or missing references) //IL_7830: Unknown result type (might be due to invalid IL or missing references) //IL_7835: Unknown result type (might be due to invalid IL or missing references) //IL_783b: Unknown result type (might be due to invalid IL or missing references) //IL_7840: Unknown result type (might be due to invalid IL or missing references) //IL_7846: Unknown result type (might be due to invalid IL or missing references) //IL_7850: Unknown result type (might be due to invalid IL or missing references) //IL_7855: Unknown result type (might be due to invalid IL or missing references) //IL_785b: Unknown result type (might be due to invalid IL or missing references) //IL_7865: Unknown result type (might be due to invalid IL or missing references) //IL_786b: Unknown result type (might be due to invalid IL or missing references) //IL_7870: Unknown result type (might be due to invalid IL or missing references) //IL_7876: Unknown result type (might be due to invalid IL or missing references) //IL_787b: Unknown result type (might be due to invalid IL or missing references) //IL_7880: Unknown result type (might be due to invalid IL or missing references) //IL_7886: Unknown result type (might be due to invalid IL or missing references) //IL_7890: Unknown result type (might be due to invalid IL or missing references) //IL_7895: Unknown result type (might be due to invalid IL or missing references) //IL_789a: Unknown result type (might be due to invalid IL or missing references) //IL_78aa: Unknown result type (might be due to invalid IL or missing references) //IL_78b0: Unknown result type (might be due to invalid IL or missing references) //IL_78b5: Unknown result type (might be due to invalid IL or missing references) //IL_78bb: Unknown result type (might be due to invalid IL or missing references) //IL_78c0: Unknown result type (might be due to invalid IL or missing references) //IL_78c6: Unknown result type (might be due to invalid IL or missing references) //IL_78d0: Unknown result type (might be due to invalid IL or missing references) //IL_78d5: Unknown result type (might be due to invalid IL or missing references) //IL_78db: Unknown result type (might be due to invalid IL or missing references) //IL_78e5: Unknown result type (might be due to invalid IL or missing references) //IL_78eb: Unknown result type (might be due to invalid IL or missing references) //IL_78f0: Unknown result type (might be due to invalid IL or missing references) //IL_78f6: Unknown result type (might be due to invalid IL or missing references) //IL_78fb: Unknown result type (might be due to invalid IL or missing references) //IL_7900: Unknown result type (might be due to invalid IL or missing references) //IL_7906: Unknown result type (might be due to invalid IL or missing references) //IL_7910: Unknown result type (might be due to invalid IL or missing references) //IL_7915: Unknown result type (might be due to invalid IL or missing references) //IL_7920: Unknown result type (might be due to invalid IL or missing references) //IL_7926: Unknown result type (might be due to invalid IL or missing references) //IL_792b: Unknown result type (might be due to invalid IL or missing references) //IL_7931: Unknown result type (might be due to invalid IL or missing references) //IL_7936: Unknown result type (might be due to invalid IL or missing references) //IL_793c: Unknown result type (might be due to invalid IL or missing references) //IL_7946: Unknown result type (might be due to invalid IL or missing references) //IL_794b: Unknown result type (might be due to invalid IL or missing references) //IL_7951: Unknown result type (might be due to invalid IL or missing references) //IL_795b: Unknown result type (might be due to invalid IL or missing references) //IL_7961: Unknown result type (might be due to invalid IL or missing references) //IL_7966: Unknown result type (might be due to invalid IL or missing references) //IL_796c: Unknown result type (might be due to invalid IL or missing references) //IL_7971: Unknown result type (might be due to invalid IL or missing references) //IL_7976: Unknown result type (might be due to invalid IL or missing references) //IL_797c: Unknown result type (might be due to invalid IL or missing references) //IL_7986: Unknown result type (might be due to invalid IL or missing references) //IL_798b: Unknown result type (might be due to invalid IL or missing references) //IL_7990: Unknown result type (might be due to invalid IL or missing references) //IL_79a0: Unknown result type (might be due to invalid IL or missing references) //IL_79a6: Unknown result type (might be due to invalid IL or missing references) //IL_79ab: Unknown result type (might be due to invalid IL or missing references) //IL_79b1: Unknown result type (might be due to invalid IL or missing references) //IL_79b6: Unknown result type (might be due to invalid IL or missing references) //IL_79bc: Unknown result type (might be due to invalid IL or missing references) //IL_79c6: Unknown result type (might be due to invalid IL or missing references) //IL_79cb: Unknown result type (might be due to invalid IL or missing references) //IL_79d1: Unknown result type (might be due to invalid IL or missing references) //IL_79db: Unknown result type (might be due to invalid IL or missing references) //IL_79e1: Unknown result type (might be due to invalid IL or missing references) //IL_79e6: Unknown result type (might be due to invalid IL or missing references) //IL_79ec: Unknown result type (might be due to invalid IL or missing references) //IL_79f1: Unknown result type (might be due to invalid IL or missing references) //IL_79f6: Unknown result type (might be due to invalid IL or missing references) //IL_79fc: Unknown result type (might be due to invalid IL or missing references) //IL_7a06: Unknown result type (might be due to invalid IL or missing references) //IL_7a0b: Unknown result type (might be due to invalid IL or missing references) //IL_7a16: Unknown result type (might be due to invalid IL or missing references) //IL_7a1c: Unknown result type (might be due to invalid IL or missing references) //IL_7a21: Unknown result type (might be due to invalid IL or missing references) //IL_7a27: Unknown result type (might be due to invalid IL or missing references) //IL_7a2c: Unknown result type (might be due to invalid IL or missing references) //IL_7a32: Unknown result type (might be due to invalid IL or missing references) //IL_7a3c: Unknown result type (might be due to invalid IL or missing references) //IL_7a41: Unknown result type (might be due to invalid IL or missing references) //IL_7a47: Unknown result type (might be due to invalid IL or missing references) //IL_7a51: Unknown result type (might be due to invalid IL or missing references) //IL_7a57: Unknown result type (might be due to invalid IL or missing references) //IL_7a5c: Unknown result type (might be due to invalid IL or missing references) //IL_7a62: Unknown result type (might be due to invalid IL or missing references) //IL_7a67: Unknown result type (might be due to invalid IL or missing references) //IL_7a6c: Unknown result type (might be due to invalid IL or missing references) //IL_7a72: Unknown result type (might be due to invalid IL or missing references) //IL_7a7c: Unknown result type (might be due to invalid IL or missing references) //IL_7a81: Unknown result type (might be due to invalid IL or missing references) //IL_7a86: Unknown result type (might be due to invalid IL or missing references) //IL_7a96: Unknown result type (might be due to invalid IL or missing references) //IL_7a9c: Unknown result type (might be due to invalid IL or missing references) //IL_7aa1: Unknown result type (might be due to invalid IL or missing references) //IL_7aa7: Unknown result type (might be due to invalid IL or missing references) //IL_7aac: Unknown result type (might be due to invalid IL or missing references) //IL_7ab2: Unknown result type (might be due to invalid IL or missing references) //IL_7abc: Unknown result type (might be due to invalid IL or missing references) //IL_7ac1: Unknown result type (might be due to invalid IL or missing references) //IL_7ac7: Unknown result type (might be due to invalid IL or missing references) //IL_7ad1: Unknown result type (might be due to invalid IL or missing references) //IL_7ad7: Unknown result type (might be due to invalid IL or missing references) //IL_7adc: Unknown result type (might be due to invalid IL or missing references) //IL_7ae2: Unknown result type (might be due to invalid IL or missing references) //IL_7ae7: Unknown result type (might be due to invalid IL or missing references) //IL_7aec: Unknown result type (might be due to invalid IL or missing references) //IL_7af2: Unknown result type (might be due to invalid IL or missing references) //IL_7afc: Unknown result type (might be due to invalid IL or missing references) //IL_7b01: Unknown result type (might be due to invalid IL or missing references) //IL_7b0c: Unknown result type (might be due to invalid IL or missing references) //IL_7b12: Unknown result type (might be due to invalid IL or missing references) //IL_7b17: Unknown result type (might be due to invalid IL or missing references) //IL_7b1d: Unknown result type (might be due to invalid IL or missing references) //IL_7b22: Unknown result type (might be due to invalid IL or missing references) //IL_7b28: Unknown result type (might be due to invalid IL or missing references) //IL_7b32: Unknown result type (might be due to invalid IL or missing references) //IL_7b37: Unknown result type (might be due to invalid IL or missing references) //IL_7b3d: Unknown result type (might be due to invalid IL or missing references) //IL_7b47: Unknown result type (might be due to invalid IL or missing references) //IL_7b4d: Unknown result type (might be due to invalid IL or missing references) //IL_7b52: Unknown result type (might be due to invalid IL or missing references) //IL_7b58: Unknown result type (might be due to invalid IL or missing references) //IL_7b5d: Unknown result type (might be due to invalid IL or missing references) //IL_7b62: Unknown result type (might be due to invalid IL or missing references) //IL_7b68: Unknown result type (might be due to invalid IL or missing references) //IL_7b72: Unknown result type (might be due to invalid IL or missing references) //IL_7b77: Unknown result type (might be due to invalid IL or missing references) //IL_7b7c: Unknown result type (might be due to invalid IL or missing references) //IL_7b8c: Unknown result type (might be due to invalid IL or missing references) //IL_7b92: Unknown result type (might be due to invalid IL or missing references) //IL_7b97: Unknown result type (might be due to invalid IL or missing references) //IL_7b9d: Unknown result type (might be due to invalid IL or missing references) //IL_7ba2: Unknown result type (might be due to invalid IL or missing references) //IL_7ba8: Unknown result type (might be due to invalid IL or missing references) //IL_7bb2: Unknown result type (might be due to invalid IL or missing references) //IL_7bb7: Unknown result type (might be due to invalid IL or missing references) //IL_7bbd: Unknown result type (might be due to invalid IL or missing references) //IL_7bc7: Unknown result type (might be due to invalid IL or missing references) //IL_7bcd: Unknown result type (might be due to invalid IL or missing references) //IL_7bd2: Unknown result type (might be due to invalid IL or missing references) //IL_7bd8: Unknown result type (might be due to invalid IL or missing references) //IL_7bdd: Unknown result type (might be due to invalid IL or missing references) //IL_7be2: Unknown result type (might be due to invalid IL or missing references) //IL_7bed: Unknown result type (might be due to invalid IL or missing references) //IL_7bf3: Unknown result type (might be due to invalid IL or missing references) //IL_7bf8: Unknown result type (might be due to invalid IL or missing references) //IL_7bfe: Unknown result type (might be due to invalid IL or missing references) //IL_7c03: Unknown result type (might be due to invalid IL or missing references) //IL_7c09: Unknown result type (might be due to invalid IL or missing references) //IL_7c13: Unknown result type (might be due to invalid IL or missing references) //IL_7c18: Unknown result type (might be due to invalid IL or missing references) //IL_7c1e: Unknown result type (might be due to invalid IL or missing references) //IL_7c28: Unknown result type (might be due to invalid IL or missing references) //IL_7c2e: Unknown result type (might be due to invalid IL or missing references) //IL_7c33: Unknown result type (might be due to invalid IL or missing references) //IL_7c39: Unknown result type (might be due to invalid IL or missing references) //IL_7c3e: Unknown result type (might be due to invalid IL or missing references) //IL_7c43: Unknown result type (might be due to invalid IL or missing references) //IL_7c48: Unknown result type (might be due to invalid IL or missing references) //IL_7c58: Unknown result type (might be due to invalid IL or missing references) //IL_7c5e: Unknown result type (might be due to invalid IL or missing references) //IL_7c63: Unknown result type (might be due to invalid IL or missing references) //IL_7c69: Unknown result type (might be due to invalid IL or missing references) //IL_7c6e: Unknown result type (might be due to invalid IL or missing references) //IL_7c74: Unknown result type (might be due to invalid IL or missing references) //IL_7c7e: Unknown result type (might be due to invalid IL or missing references) //IL_7c83: Unknown result type (might be due to invalid IL or missing references) //IL_7c89: Unknown result type (might be due to invalid IL or missing references) //IL_7c93: Unknown result type (might be due to invalid IL or missing references) //IL_7c99: Unknown result type (might be due to invalid IL or missing references) //IL_7c9e: Unknown result type (might be due to invalid IL or missing references) //IL_7ca4: Unknown result type (might be due to invalid IL or missing references) //IL_7ca9: Unknown result type (might be due to invalid IL or missing references) //IL_7cae: Unknown result type (might be due to invalid IL or missing references) //IL_7cb4: Unknown result type (might be due to invalid IL or missing references) //IL_7cbe: Unknown result type (might be due to invalid IL or missing references) //IL_7cc3: Unknown result type (might be due to invalid IL or missing references) //IL_7cce: Unknown result type (might be due to invalid IL or missing references) //IL_7cd4: Unknown result type (might be due to invalid IL or missing references) //IL_7cd9: Unknown result type (might be due to invalid IL or missing references) //IL_7cdf: Unknown result type (might be due to invalid IL or missing references) //IL_7ce4: Unknown result type (might be due to invalid IL or missing references) //IL_7cea: Unknown result type (might be due to invalid IL or missing references) //IL_7cf4: Unknown result type (might be due to invalid IL or missing references) //IL_7cf9: Unknown result type (might be due to invalid IL or missing references) //IL_7cff: Unknown result type (might be due to invalid IL or missing references) //IL_7d09: Unknown result type (might be due to invalid IL or missing references) //IL_7d0f: Unknown result type (might be due to invalid IL or missing references) //IL_7d14: Unknown result type (might be due to invalid IL or missing references) //IL_7d1a: Unknown result type (might be due to invalid IL or missing references) //IL_7d1f: Unknown result type (might be due to invalid IL or missing references) //IL_7d24: Unknown result type (might be due to invalid IL or missing references) //IL_7d2a: Unknown result type (might be due to invalid IL or missing references) //IL_7d34: Unknown result type (might be due to invalid IL or missing references) //IL_7d39: Unknown result type (might be due to invalid IL or missing references) //IL_7d3e: Unknown result type (might be due to invalid IL or missing references) //IL_7d4e: Unknown result type (might be due to invalid IL or missing references) //IL_7d54: Unknown result type (might be due to invalid IL or missing references) //IL_7d59: Unknown result type (might be due to invalid IL or missing references) //IL_7d5f: Unknown result type (might be due to invalid IL or missing references) //IL_7d64: Unknown result type (might be due to invalid IL or missing references) //IL_7d6a: Unknown result type (might be due to invalid IL or missing references) //IL_7d74: Unknown result type (might be due to invalid IL or missing references) //IL_7d79: Unknown result type (might be due to invalid IL or missing references) //IL_7d7f: Unknown result type (might be due to invalid IL or missing references) //IL_7d89: Unknown result type (might be due to invalid IL or missing references) //IL_7d8f: Unknown result type (might be due to invalid IL or missing references) //IL_7d94: Unknown result type (might be due to invalid IL or missing references) //IL_7d9a: Unknown result type (might be due to invalid IL or missing references) //IL_7d9f: Unknown result type (might be due to invalid IL or missing references) //IL_7da4: Unknown result type (might be due to invalid IL or missing references) //IL_7daa: Unknown result type (might be due to invalid IL or missing references) //IL_7db4: Unknown result type (might be due to invalid IL or missing references) //IL_7db9: Unknown result type (might be due to invalid IL or missing references) //IL_7dc4: Unknown result type (might be due to invalid IL or missing references) //IL_7dca: Unknown result type (might be due to invalid IL or missing references) //IL_7dcf: Unknown result type (might be due to invalid IL or missing references) //IL_7dd5: Unknown result type (might be due to invalid IL or missing references) //IL_7dda: Unknown result type (might be due to invalid IL or missing references) //IL_7de0: Unknown result type (might be due to invalid IL or missing references) //IL_7dea: Unknown result type (might be due to invalid IL or missing references) //IL_7def: Unknown result type (might be due to invalid IL or missing references) //IL_7df5: Unknown result type (might be due to invalid IL or missing references) //IL_7dff: Unknown result type (might be due to invalid IL or missing references) //IL_7e05: Unknown result type (might be due to invalid IL or missing references) //IL_7e0a: Unknown result type (might be due to invalid IL or missing references) //IL_7e10: Unknown result type (might be due to invalid IL or missing references) //IL_7e15: Unknown result type (might be due to invalid IL or missing references) //IL_7e1a: Unknown result type (might be due to invalid IL or missing references) //IL_7e20: Unknown result type (might be due to invalid IL or missing references) //IL_7e2a: Unknown result type (might be due to invalid IL or missing references) //IL_7e2f: Unknown result type (might be due to invalid IL or missing references) //IL_7e34: Unknown result type (might be due to invalid IL or missing references) //IL_7e44: Unknown result type (might be due to invalid IL or missing references) //IL_7e4a: Unknown result type (might be due to invalid IL or missing references) //IL_7e4f: Unknown result type (might be due to invalid IL or missing references) //IL_7e55: Unknown result type (might be due to invalid IL or missing references) //IL_7e5a: Unknown result type (might be due to invalid IL or missing references) //IL_7e60: Unknown result type (might be due to invalid IL or missing references) //IL_7e6a: Unknown result type (might be due to invalid IL or missing references) //IL_7e6f: Unknown result type (might be due to invalid IL or missing references) //IL_7e75: Unknown result type (might be due to invalid IL or missing references) //IL_7e7f: Unknown result type (might be due to invalid IL or missing references) //IL_7e85: Unknown result type (might be due to invalid IL or missing references) //IL_7e8a: Unknown result type (might be due to invalid IL or missing references) //IL_7e90: Unknown result type (might be due to invalid IL or missing references) //IL_7e95: Unknown result type (might be due to invalid IL or missing references) //IL_7e9a: Unknown result type (might be due to invalid IL or missing references) //IL_7ea0: Unknown result type (might be due to invalid IL or missing references) //IL_7eaa: Unknown result type (might be due to invalid IL or missing references) //IL_7eaf: Unknown result type (might be due to invalid IL or missing references) //IL_7eba: Unknown result type (might be due to invalid IL or missing references) //IL_7ec0: Unknown result type (might be due to invalid IL or missing references) //IL_7ec5: Unknown result type (might be due to invalid IL or missing references) //IL_7ecb: Unknown result type (might be due to invalid IL or missing references) //IL_7ed0: Unknown result type (might be due to invalid IL or missing references) //IL_7ed6: Unknown result type (might be due to invalid IL or missing references) //IL_7ee0: Unknown result type (might be due to invalid IL or missing references) //IL_7ee5: Unknown result type (might be due to invalid IL or missing references) //IL_7eeb: Unknown result type (might be due to invalid IL or missing references) //IL_7ef5: Unknown result type (might be due to invalid IL or missing references) //IL_7efb: Unknown result type (might be due to invalid IL or missing references) //IL_7f00: Unknown result type (might be due to invalid IL or missing references) //IL_7f06: Unknown result type (might be due to invalid IL or missing references) //IL_7f0b: Unknown result type (might be due to invalid IL or missing references) //IL_7f10: Unknown result type (might be due to invalid IL or missing references) //IL_7f16: Unknown result type (might be due to invalid IL or missing references) //IL_7f20: Unknown result type (might be due to invalid IL or missing references) //IL_7f25: Unknown result type (might be due to invalid IL or missing references) //IL_7f2a: Unknown result type (might be due to invalid IL or missing references) //IL_7f3a: Unknown result type (might be due to invalid IL or missing references) //IL_7f40: Unknown result type (might be due to invalid IL or missing references) //IL_7f45: Unknown result type (might be due to invalid IL or missing references) //IL_7f4b: Unknown result type (might be due to invalid IL or missing references) //IL_7f50: Unknown result type (might be due to invalid IL or missing references) //IL_7f56: Unknown result type (might be due to invalid IL or missing references) //IL_7f60: Unknown result type (might be due to invalid IL or missing references) //IL_7f65: Unknown result type (might be due to invalid IL or missing references) //IL_7f6b: Unknown result type (might be due to invalid IL or missing references) //IL_7f75: Unknown result type (might be due to invalid IL or missing references) //IL_7f7b: Unknown result type (might be due to invalid IL or missing references) //IL_7f80: Unknown result type (might be due to invalid IL or missing references) //IL_7f86: Unknown result type (might be due to invalid IL or missing references) //IL_7f8b: Unknown result type (might be due to invalid IL or missing references) //IL_7f90: Unknown result type (might be due to invalid IL or missing references) //IL_7f96: Unknown result type (might be due to invalid IL or missing references) //IL_7fa0: Unknown result type (might be due to invalid IL or missing references) //IL_7fa5: Unknown result type (might be due to invalid IL or missing references) //IL_7fb0: Unknown result type (might be due to invalid IL or missing references) //IL_7fb6: Unknown result type (might be due to invalid IL or missing references) //IL_7fbb: Unknown result type (might be due to invalid IL or missing references) //IL_7fc1: Unknown result type (might be due to invalid IL or missing references) //IL_7fc6: Unknown result type (might be due to invalid IL or missing references) //IL_7fcc: Unknown result type (might be due to invalid IL or missing references) //IL_7fd6: Unknown result type (might be due to invalid IL or missing references) //IL_7fdb: Unknown result type (might be due to invalid IL or missing references) //IL_7fe1: Unknown result type (might be due to invalid IL or missing references) //IL_7feb: Unknown result type (might be due to invalid IL or missing references) //IL_7ff1: Unknown result type (might be due to invalid IL or missing references) //IL_7ff6: Unknown result type (might be due to invalid IL or missing references) //IL_7ffc: Unknown result type (might be due to invalid IL or missing references) //IL_8001: Unknown result type (might be due to invalid IL or missing references) //IL_8006: Unknown result type (might be due to invalid IL or missing references) //IL_800c: Unknown result type (might be due to invalid IL or missing references) //IL_8016: Unknown result type (might be due to invalid IL or missing references) //IL_801b: Unknown result type (might be due to invalid IL or missing references) //IL_8020: Unknown result type (might be due to invalid IL or missing references) //IL_8030: Unknown result type (might be due to invalid IL or missing references) //IL_8036: Unknown result type (might be due to invalid IL or missing references) //IL_803b: Unknown result type (might be due to invalid IL or missing references) //IL_8041: Unknown result type (might be due to invalid IL or missing references) //IL_8046: Unknown result type (might be due to invalid IL or missing references) //IL_804c: Unknown result type (might be due to invalid IL or missing references) //IL_8056: Unknown result type (might be due to invalid IL or missing references) //IL_805b: Unknown result type (might be due to invalid IL or missing references) //IL_8061: Unknown result type (might be due to invalid IL or missing references) //IL_806b: Unknown result type (might be due to invalid IL or missing references) //IL_8071: Unknown result type (might be due to invalid IL or missing references) //IL_8076: Unknown result type (might be due to invalid IL or missing references) //IL_807c: Unknown result type (might be due to invalid IL or missing references) //IL_8081: Unknown result type (might be due to invalid IL or missing references) //IL_8086: Unknown result type (might be due to invalid IL or missing references) //IL_808c: Unknown result type (might be due to invalid IL or missing references) //IL_8096: Unknown result type (might be due to invalid IL or missing references) //IL_809b: Unknown result type (might be due to invalid IL or missing references) //IL_80a6: Unknown result type (might be due to invalid IL or missing references) //IL_80ac: Unknown result type (might be due to invalid IL or missing references) //IL_80b1: Unknown result type (might be due to invalid IL or missing references) //IL_80b7: Unknown result type (might be due to invalid IL or missing references) //IL_80bc: Unknown result type (might be due to invalid IL or missing references) //IL_80c2: Unknown result type (might be due to invalid IL or missing references) //IL_80cc: Unknown result type (might be due to invalid IL or missing references) //IL_80d1: Unknown result type (might be due to invalid IL or missing references) //IL_80d7: Unknown result type (might be due to invalid IL or missing references) //IL_80e1: Unknown result type (might be due to invalid IL or missing references) //IL_80e7: Unknown result type (might be due to invalid IL or missing references) //IL_80ec: Unknown result type (might be due to invalid IL or missing references) //IL_80f2: Unknown result type (might be due to invalid IL or missing references) //IL_80f7: Unknown result type (might be due to invalid IL or missing references) //IL_80fc: Unknown result type (might be due to invalid IL or missing references) //IL_8102: Unknown result type (might be due to invalid IL or missing references) //IL_810c: Unknown result type (might be due to invalid IL or missing references) //IL_8111: Unknown result type (might be due to invalid IL or missing references) //IL_8116: Unknown result type (might be due to invalid IL or missing references) //IL_8126: Unknown result type (might be due to invalid IL or missing references) //IL_812c: Unknown result type (might be due to invalid IL or missing references) //IL_8131: Unknown result type (might be due to invalid IL or missing references) //IL_8137: Unknown result type (might be due to invalid IL or missing references) //IL_813c: Unknown result type (might be due to invalid IL or missing references) //IL_8142: Unknown result type (might be due to invalid IL or missing references) //IL_814c: Unknown result type (might be due to invalid IL or missing references) //IL_8151: Unknown result type (might be due to invalid IL or missing references) //IL_8157: Unknown result type (might be due to invalid IL or missing references) //IL_8161: Unknown result type (might be due to invalid IL or missing references) //IL_8167: Unknown result type (might be due to invalid IL or missing references) //IL_816c: Unknown result type (might be due to invalid IL or missing references) //IL_8172: Unknown result type (might be due to invalid IL or missing references) //IL_8177: Unknown result type (might be due to invalid IL or missing references) //IL_817c: Unknown result type (might be due to invalid IL or missing references) //IL_8182: Unknown result type (might be due to invalid IL or missing references) //IL_818c: Unknown result type (might be due to invalid IL or missing references) //IL_8191: Unknown result type (might be due to invalid IL or missing references) //IL_819c: Unknown result type (might be due to invalid IL or missing references) //IL_81a2: Unknown result type (might be due to invalid IL or missing references) //IL_81a7: Unknown result type (might be due to invalid IL or missing references) //IL_81ad: Unknown result type (might be due to invalid IL or missing references) //IL_81b2: Unknown result type (might be due to invalid IL or missing references) //IL_81b8: Unknown result type (might be due to invalid IL or missing references) //IL_81c2: Unknown result type (might be due to invalid IL or missing references) //IL_81c7: Unknown result type (might be due to invalid IL or missing references) //IL_81cd: Unknown result type (might be due to invalid IL or missing references) //IL_81d7: Unknown result type (might be due to invalid IL or missing references) //IL_81dd: Unknown result type (might be due to invalid IL or missing references) //IL_81e2: Unknown result type (might be due to invalid IL or missing references) //IL_81e8: Unknown result type (might be due to invalid IL or missing references) //IL_81ed: Unknown result type (might be due to invalid IL or missing references) //IL_81f2: Unknown result type (might be due to invalid IL or missing references) //IL_81f8: Unknown result type (might be due to invalid IL or missing references) //IL_8202: Unknown result type (might be due to invalid IL or missing references) //IL_8207: Unknown result type (might be due to invalid IL or missing references) //IL_820c: Unknown result type (might be due to invalid IL or missing references) //IL_821c: Unknown result type (might be due to invalid IL or missing references) //IL_8222: Unknown result type (might be due to invalid IL or missing references) //IL_8227: Unknown result type (might be due to invalid IL or missing references) //IL_822d: Unknown result type (might be due to invalid IL or missing references) //IL_8232: Unknown result type (might be due to invalid IL or missing references) //IL_8238: Unknown result type (might be due to invalid IL or missing references) //IL_8242: Unknown result type (might be due to invalid IL or missing references) //IL_8247: Unknown result type (might be due to invalid IL or missing references) //IL_824d: Unknown result type (might be due to invalid IL or missing references) //IL_8257: Unknown result type (might be due to invalid IL or missing references) //IL_825d: Unknown result type (might be due to invalid IL or missing references) //IL_8262: Unknown result type (might be due to invalid IL or missing references) //IL_8268: Unknown result type (might be due to invalid IL or missing references) //IL_826d: Unknown result type (might be due to invalid IL or missing references) //IL_8272: Unknown result type (might be due to invalid IL or missing references) //IL_8278: Unknown result type (might be due to invalid IL or missing references) //IL_8282: Unknown result type (might be due to invalid IL or missing references) //IL_8287: Unknown result type (might be due to invalid IL or missing references) //IL_8292: Unknown result type (might be due to invalid IL or missing references) //IL_8298: Unknown result type (might be due to invalid IL or missing references) //IL_829d: Unknown result type (might be due to invalid IL or missing references) //IL_82a3: Unknown result type (might be due to invalid IL or missing references) //IL_82a8: Unknown result type (might be due to invalid IL or missing references) //IL_82ae: Unknown result type (might be due to invalid IL or missing references) //IL_82b8: Unknown result type (might be due to invalid IL or missing references) //IL_82bd: Unknown result type (might be due to invalid IL or missing references) //IL_82c3: Unknown result type (might be due to invalid IL or missing references) //IL_82cd: Unknown result type (might be due to invalid IL or missing references) //IL_82d3: Unknown result type (might be due to invalid IL or missing references) //IL_82d8: Unknown result type (might be due to invalid IL or missing references) //IL_82de: Unknown result type (might be due to invalid IL or missing references) //IL_82e3: Unknown result type (might be due to invalid IL or missing references) //IL_82e8: Unknown result type (might be due to invalid IL or missing references) //IL_82ee: Unknown result type (might be due to invalid IL or missing references) //IL_82f8: Unknown result type (might be due to invalid IL or missing references) //IL_82fd: Unknown result type (might be due to invalid IL or missing references) //IL_8302: Unknown result type (might be due to invalid IL or missing references) //IL_8312: Unknown result type (might be due to invalid IL or missing references) //IL_8318: Unknown result type (might be due to invalid IL or missing references) //IL_831d: Unknown result type (might be due to invalid IL or missing references) //IL_8323: Unknown result type (might be due to invalid IL or missing references) //IL_8328: Unknown result type (might be due to invalid IL or missing references) //IL_832e: Unknown result type (might be due to invalid IL or missing references) //IL_8338: Unknown result type (might be due to invalid IL or missing references) //IL_833d: Unknown result type (might be due to invalid IL or missing references) //IL_8343: Unknown result type (might be due to invalid IL or missing references) //IL_834d: Unknown result type (might be due to invalid IL or missing references) //IL_8353: Unknown result type (might be due to invalid IL or missing references) //IL_8358: Unknown result type (might be due to invalid IL or missing references) //IL_835e: Unknown result type (might be due to invalid IL or missing references) //IL_8363: Unknown result type (might be due to invalid IL or missing references) //IL_8368: Unknown result type (might be due to invalid IL or missing references) //IL_8373: Unknown result type (might be due to invalid IL or missing references) //IL_8379: Unknown result type (might be due to invalid IL or missing references) //IL_837e: Unknown result type (might be due to invalid IL or missing references) //IL_8384: Unknown result type (might be due to invalid IL or missing references) //IL_8389: Unknown result type (might be due to invalid IL or missing references) //IL_838f: Unknown result type (might be due to invalid IL or missing references) //IL_8399: Unknown result type (might be due to invalid IL or missing references) //IL_839e: Unknown result type (might be due to invalid IL or missing references) //IL_83a4: Unknown result type (might be due to invalid IL or missing references) //IL_83ae: Unknown result type (might be due to invalid IL or missing references) //IL_83b4: Unknown result type (might be due to invalid IL or missing references) //IL_83b9: Unknown result type (might be due to invalid IL or missing references) //IL_83bf: Unknown result type (might be due to invalid IL or missing references) //IL_83c4: Unknown result type (might be due to invalid IL or missing references) //IL_83c9: Unknown result type (might be due to invalid IL or missing references) //IL_83ce: Unknown result type (might be due to invalid IL or missing references) //IL_83de: Unknown result type (might be due to invalid IL or missing references) //IL_83e4: Unknown result type (might be due to invalid IL or missing references) //IL_83e9: Unknown result type (might be due to invalid IL or missing references) //IL_83ef: Unknown result type (might be due to invalid IL or missing references) //IL_83f4: Unknown result type (might be due to invalid IL or missing references) //IL_83fa: Unknown result type (might be due to invalid IL or missing references) //IL_8404: Unknown result type (might be due to invalid IL or missing references) //IL_8409: Unknown result type (might be due to invalid IL or missing references) //IL_840f: Unknown result type (might be due to invalid IL or missing references) //IL_8419: Unknown result type (might be due to invalid IL or missing references) //IL_841f: Unknown result type (might be due to invalid IL or missing references) //IL_8424: Unknown result type (might be due to invalid IL or missing references) //IL_842a: Unknown result type (might be due to invalid IL or missing references) //IL_842f: Unknown result type (might be due to invalid IL or missing references) //IL_8434: Unknown result type (might be due to invalid IL or missing references) //IL_843a: Unknown result type (might be due to invalid IL or missing references) //IL_8444: Unknown result type (might be due to invalid IL or missing references) //IL_8449: Unknown result type (might be due to invalid IL or missing references) //IL_8454: Unknown result type (might be due to invalid IL or missing references) //IL_845a: Unknown result type (might be due to invalid IL or missing references) //IL_845f: Unknown result type (might be due to invalid IL or missing references) //IL_8465: Unknown result type (might be due to invalid IL or missing references) //IL_846a: Unknown result type (might be due to invalid IL or missing references) //IL_8470: Unknown result type (might be due to invalid IL or missing references) //IL_847a: Unknown result type (might be due to invalid IL or missing references) //IL_847f: Unknown result type (might be due to invalid IL or missing references) //IL_8485: Unknown result type (might be due to invalid IL or missing references) //IL_848f: Unknown result type (might be due to invalid IL or missing references) //IL_8495: Unknown result type (might be due to invalid IL or missing references) //IL_849a: Unknown result type (might be due to invalid IL or missing references) //IL_84a0: Unknown result type (might be due to invalid IL or missing references) //IL_84a5: Unknown result type (might be due to invalid IL or missing references) //IL_84aa: Unknown result type (might be due to invalid IL or missing references) //IL_84b0: Unknown result type (might be due to invalid IL or missing references) //IL_84ba: Unknown result type (might be due to invalid IL or missing references) //IL_84bf: Unknown result type (might be due to invalid IL or missing references) //IL_84c4: Unknown result type (might be due to invalid IL or missing references) //IL_84d4: Unknown result type (might be due to invalid IL or missing references) //IL_84da: Unknown result type (might be due to invalid IL or missing references) //IL_84df: Unknown result type (might be due to invalid IL or missing references) //IL_84e5: Unknown result type (might be due to invalid IL or missing references) //IL_84ea: Unknown result type (might be due to invalid IL or missing references) //IL_84f0: Unknown result type (might be due to invalid IL or missing references) //IL_84fa: Unknown result type (might be due to invalid IL or missing references) //IL_84ff: Unknown result type (might be due to invalid IL or missing references) //IL_8505: Unknown result type (might be due to invalid IL or missing references) //IL_850f: Unknown result type (might be due to invalid IL or missing references) //IL_8515: Unknown result type (might be due to invalid IL or missing references) //IL_851a: Unknown result type (might be due to invalid IL or missing references) //IL_8520: Unknown result type (might be due to invalid IL or missing references) //IL_8525: Unknown result type (might be due to invalid IL or missing references) //IL_852a: Unknown result type (might be due to invalid IL or missing references) //IL_8530: Unknown result type (might be due to invalid IL or missing references) //IL_853a: Unknown result type (might be due to invalid IL or missing references) //IL_853f: Unknown result type (might be due to invalid IL or missing references) //IL_854a: Unknown result type (might be due to invalid IL or missing references) //IL_8550: Unknown result type (might be due to invalid IL or missing references) //IL_8555: Unknown result type (might be due to invalid IL or missing references) //IL_855b: Unknown result type (might be due to invalid IL or missing references) //IL_8560: Unknown result type (might be due to invalid IL or missing references) //IL_8566: Unknown result type (might be due to invalid IL or missing references) //IL_8570: Unknown result type (might be due to invalid IL or missing references) //IL_8575: Unknown result type (might be due to invalid IL or missing references) //IL_857b: Unknown result type (might be due to invalid IL or missing references) //IL_8585: Unknown result type (might be due to invalid IL or missing references) //IL_858b: Unknown result type (might be due to invalid IL or missing references) //IL_8590: Unknown result type (might be due to invalid IL or missing references) //IL_8596: Unknown result type (might be due to invalid IL or missing references) //IL_859b: Unknown result type (might be due to invalid IL or missing references) //IL_85a0: Unknown result type (might be due to invalid IL or missing references) //IL_85a6: Unknown result type (might be due to invalid IL or missing references) //IL_85b0: Unknown result type (might be due to invalid IL or missing references) //IL_85b5: Unknown result type (might be due to invalid IL or missing references) //IL_85ba: Unknown result type (might be due to invalid IL or missing references) //IL_85ca: Unknown result type (might be due to invalid IL or missing references) //IL_85d0: Unknown result type (might be due to invalid IL or missing references) //IL_85d5: Unknown result type (might be due to invalid IL or missing references) //IL_85db: Unknown result type (might be due to invalid IL or missing references) //IL_85e0: Unknown result type (might be due to invalid IL or missing references) //IL_85e6: Unknown result type (might be due to invalid IL or missing references) //IL_85f0: Unknown result type (might be due to invalid IL or missing references) //IL_85f5: Unknown result type (might be due to invalid IL or missing references) //IL_85fb: Unknown result type (might be due to invalid IL or missing references) //IL_8605: Unknown result type (might be due to invalid IL or missing references) //IL_860b: Unknown result type (might be due to invalid IL or missing references) //IL_8610: Unknown result type (might be due to invalid IL or missing references) //IL_8616: Unknown result type (might be due to invalid IL or missing references) //IL_861b: Unknown result type (might be due to invalid IL or missing references) //IL_8620: Unknown result type (might be due to invalid IL or missing references) //IL_8626: Unknown result type (might be due to invalid IL or missing references) //IL_8630: Unknown result type (might be due to invalid IL or missing references) //IL_8635: Unknown result type (might be due to invalid IL or missing references) //IL_8640: Unknown result type (might be due to invalid IL or missing references) //IL_8646: Unknown result type (might be due to invalid IL or missing references) //IL_864b: Unknown result type (might be due to invalid IL or missing references) //IL_8651: Unknown result type (might be due to invalid IL or missing references) //IL_8656: Unknown result type (might be due to invalid IL or missing references) //IL_865c: Unknown result type (might be due to invalid IL or missing references) //IL_8666: Unknown result type (might be due to invalid IL or missing references) //IL_866b: Unknown result type (might be due to invalid IL or missing references) //IL_8671: Unknown result type (might be due to invalid IL or missing references) //IL_867b: Unknown result type (might be due to invalid IL or missing references) //IL_8681: Unknown result type (might be due to invalid IL or missing references) //IL_8686: Unknown result type (might be due to invalid IL or missing references) //IL_868c: Unknown result type (might be due to invalid IL or missing references) //IL_8691: Unknown result type (might be due to invalid IL or missing references) //IL_8696: Unknown result type (might be due to invalid IL or missing references) //IL_869c: Unknown result type (might be due to invalid IL or missing references) //IL_86a6: Unknown result type (might be due to invalid IL or missing references) //IL_86ab: Unknown result type (might be due to invalid IL or missing references) //IL_86b0: Unknown result type (might be due to invalid IL or missing references) //IL_86c0: Unknown result type (might be due to invalid IL or missing references) //IL_86c6: Unknown result type (might be due to invalid IL or missing references) //IL_86cb: Unknown result type (might be due to invalid IL or missing references) //IL_86d1: Unknown result type (might be due to invalid IL or missing references) //IL_86d6: Unknown result type (might be due to invalid IL or missing references) //IL_86dc: Unknown result type (might be due to invalid IL or missing references) //IL_86e6: Unknown result type (might be due to invalid IL or missing references) //IL_86eb: Unknown result type (might be due to invalid IL or missing references) //IL_86f1: Unknown result type (might be due to invalid IL or missing references) //IL_86fb: Unknown result type (might be due to invalid IL or missing references) //IL_8701: Unknown result type (might be due to invalid IL or missing references) //IL_8706: Unknown result type (might be due to invalid IL or missing references) //IL_870c: Unknown result type (might be due to invalid IL or missing references) //IL_8711: Unknown result type (might be due to invalid IL or missing references) //IL_8716: Unknown result type (might be due to invalid IL or missing references) //IL_871c: Unknown result type (might be due to invalid IL or missing references) //IL_8726: Unknown result type (might be due to invalid IL or missing references) //IL_872b: Unknown result type (might be due to invalid IL or missing references) //IL_8736: Unknown result type (might be due to invalid IL or missing references) //IL_873c: Unknown result type (might be due to invalid IL or missing references) //IL_8741: Unknown result type (might be due to invalid IL or missing references) //IL_8747: Unknown result type (might be due to invalid IL or missing references) //IL_874c: Unknown result type (might be due to invalid IL or missing references) //IL_8752: Unknown result type (might be due to invalid IL or missing references) //IL_875c: Unknown result type (might be due to invalid IL or missing references) //IL_8761: Unknown result type (might be due to invalid IL or missing references) //IL_8767: Unknown result type (might be due to invalid IL or missing references) //IL_8771: Unknown result type (might be due to invalid IL or missing references) //IL_8777: Unknown result type (might be due to invalid IL or missing references) //IL_877c: Unknown result type (might be due to invalid IL or missing references) //IL_8782: Unknown result type (might be due to invalid IL or missing references) //IL_8787: Unknown result type (might be due to invalid IL or missing references) //IL_878c: Unknown result type (might be due to invalid IL or missing references) //IL_8792: Unknown result type (might be due to invalid IL or missing references) //IL_879c: Unknown result type (might be due to invalid IL or missing references) //IL_87a1: Unknown result type (might be due to invalid IL or missing references) //IL_87a6: Unknown result type (might be due to invalid IL or missing references) //IL_87b6: Unknown result type (might be due to invalid IL or missing references) //IL_87bc: Unknown result type (might be due to invalid IL or missing references) //IL_87c1: Unknown result type (might be due to invalid IL or missing references) //IL_87c7: Unknown result type (might be due to invalid IL or missing references) //IL_87cc: Unknown result type (might be due to invalid IL or missing references) //IL_87d2: Unknown result type (might be due to invalid IL or missing references) //IL_87dc: Unknown result type (might be due to invalid IL or missing references) //IL_87e1: Unknown result type (might be due to invalid IL or missing references) //IL_87e7: Unknown result type (might be due to invalid IL or missing references) //IL_87f1: Unknown result type (might be due to invalid IL or missing references) //IL_87f7: Unknown result type (might be due to invalid IL or missing references) //IL_87fc: Unknown result type (might be due to invalid IL or missing references) //IL_8802: Unknown result type (might be due to invalid IL or missing references) //IL_8807: Unknown result type (might be due to invalid IL or missing references) //IL_880c: Unknown result type (might be due to invalid IL or missing references) //IL_8812: Unknown result type (might be due to invalid IL or missing references) //IL_881c: Unknown result type (might be due to invalid IL or missing references) //IL_8821: Unknown result type (might be due to invalid IL or missing references) //IL_882c: Unknown result type (might be due to invalid IL or missing references) //IL_8832: Unknown result type (might be due to invalid IL or missing references) //IL_8837: Unknown result type (might be due to invalid IL or missing references) //IL_883d: Unknown result type (might be due to invalid IL or missing references) //IL_8842: Unknown result type (might be due to invalid IL or missing references) //IL_8848: Unknown result type (might be due to invalid IL or missing references) //IL_8852: Unknown result type (might be due to invalid IL or missing references) //IL_8857: Unknown result type (might be due to invalid IL or missing references) //IL_885d: Unknown result type (might be due to invalid IL or missing references) //IL_8867: Unknown result type (might be due to invalid IL or missing references) //IL_886d: Unknown result type (might be due to invalid IL or missing references) //IL_8872: Unknown result type (might be due to invalid IL or missing references) //IL_8878: Unknown result type (might be due to invalid IL or missing references) //IL_887d: Unknown result type (might be due to invalid IL or missing references) //IL_8882: Unknown result type (might be due to invalid IL or missing references) //IL_8888: Unknown result type (might be due to invalid IL or missing references) //IL_8892: Unknown result type (might be due to invalid IL or missing references) //IL_8897: Unknown result type (might be due to invalid IL or missing references) //IL_889c: Unknown result type (might be due to invalid IL or missing references) //IL_88ac: Unknown result type (might be due to invalid IL or missing references) //IL_88b2: Unknown result type (might be due to invalid IL or missing references) //IL_88b7: Unknown result type (might be due to invalid IL or missing references) //IL_88bd: Unknown result type (might be due to invalid IL or missing references) //IL_88c2: Unknown result type (might be due to invalid IL or missing references) //IL_88c8: Unknown result type (might be due to invalid IL or missing references) //IL_88d2: Unknown result type (might be due to invalid IL or missing references) //IL_88d7: Unknown result type (might be due to invalid IL or missing references) //IL_88dd: Unknown result type (might be due to invalid IL or missing references) //IL_88e7: Unknown result type (might be due to invalid IL or missing references) //IL_88ed: Unknown result type (might be due to invalid IL or missing references) //IL_88f2: Unknown result type (might be due to invalid IL or missing references) //IL_88f8: Unknown result type (might be due to invalid IL or missing references) //IL_88fd: Unknown result type (might be due to invalid IL or missing references) //IL_8902: Unknown result type (might be due to invalid IL or missing references) //IL_8908: Unknown result type (might be due to invalid IL or missing references) //IL_8912: Unknown result type (might be due to invalid IL or missing references) //IL_8917: Unknown result type (might be due to invalid IL or missing references) //IL_8922: Unknown result type (might be due to invalid IL or missing references) //IL_8928: Unknown result type (might be due to invalid IL or missing references) //IL_892d: Unknown result type (might be due to invalid IL or missing references) //IL_8933: Unknown result type (might be due to invalid IL or missing references) //IL_8938: Unknown result type (might be due to invalid IL or missing references) //IL_893e: Unknown result type (might be due to invalid IL or missing references) //IL_8948: Unknown result type (might be due to invalid IL or missing references) //IL_894d: Unknown result type (might be due to invalid IL or missing references) //IL_8953: Unknown result type (might be due to invalid IL or missing references) //IL_895d: Unknown result type (might be due to invalid IL or missing references) //IL_8963: Unknown result type (might be due to invalid IL or missing references) //IL_8968: Unknown result type (might be due to invalid IL or missing references) //IL_896e: Unknown result type (might be due to invalid IL or missing references) //IL_8973: Unknown result type (might be due to invalid IL or missing references) //IL_8978: Unknown result type (might be due to invalid IL or missing references) //IL_897e: Unknown result type (might be due to invalid IL or missing references) //IL_8988: Unknown result type (might be due to invalid IL or missing references) //IL_898d: Unknown result type (might be due to invalid IL or missing references) //IL_8992: Unknown result type (might be due to invalid IL or missing references) //IL_89a2: Unknown result type (might be due to invalid IL or missing references) //IL_89a8: Unknown result type (might be due to invalid IL or missing references) //IL_89ad: Unknown result type (might be due to invalid IL or missing references) //IL_89b3: Unknown result type (might be due to invalid IL or missing references) //IL_89b8: Unknown result type (might be due to invalid IL or missing references) //IL_89be: Unknown result type (might be due to invalid IL or missing references) //IL_89c8: Unknown result type (might be due to invalid IL or missing references) //IL_89cd: Unknown result type (might be due to invalid IL or missing references) //IL_89d3: Unknown result type (might be due to invalid IL or missing references) //IL_89dd: Unknown result type (might be due to invalid IL or missing references) //IL_89e3: Unknown result type (might be due to invalid IL or missing references) //IL_89e8: Unknown result type (might be due to invalid IL or missing references) //IL_89ee: Unknown result type (might be due to invalid IL or missing references) //IL_89f3: Unknown result type (might be due to invalid IL or missing references) //IL_89f8: Unknown result type (might be due to invalid IL or missing references) //IL_89fe: Unknown result type (might be due to invalid IL or missing references) //IL_8a08: Unknown result type (might be due to invalid IL or missing references) //IL_8a0d: Unknown result type (might be due to invalid IL or missing references) //IL_8a18: Unknown result type (might be due to invalid IL or missing references) //IL_8a1e: Unknown result type (might be due to invalid IL or missing references) //IL_8a23: Unknown result type (might be due to invalid IL or missing references) //IL_8a29: Unknown result type (might be due to invalid IL or missing references) //IL_8a2e: Unknown result type (might be due to invalid IL or missing references) //IL_8a34: Unknown result type (might be due to invalid IL or missing references) //IL_8a3e: Unknown result type (might be due to invalid IL or missing references) //IL_8a43: Unknown result type (might be due to invalid IL or missing references) //IL_8a49: Unknown result type (might be due to invalid IL or missing references) //IL_8a53: Unknown result type (might be due to invalid IL or missing references) //IL_8a59: Unknown result type (might be due to invalid IL or missing references) //IL_8a5e: Unknown result type (might be due to invalid IL or missing references) //IL_8a64: Unknown result type (might be due to invalid IL or missing references) //IL_8a69: Unknown result type (might be due to invalid IL or missing references) //IL_8a6e: Unknown result type (might be due to invalid IL or missing references) //IL_8a74: Unknown result type (might be due to invalid IL or missing references) //IL_8a7e: Unknown result type (might be due to invalid IL or missing references) //IL_8a83: Unknown result type (might be due to invalid IL or missing references) //IL_8a88: Unknown result type (might be due to invalid IL or missing references) //IL_8a98: Unknown result type (might be due to invalid IL or missing references) //IL_8a9e: Unknown result type (might be due to invalid IL or missing references) //IL_8aa3: Unknown result type (might be due to invalid IL or missing references) //IL_8aa9: Unknown result type (might be due to invalid IL or missing references) //IL_8aae: Unknown result type (might be due to invalid IL or missing references) //IL_8ab4: Unknown result type (might be due to invalid IL or missing references) //IL_8abe: Unknown result type (might be due to invalid IL or missing references) //IL_8ac3: Unknown result type (might be due to invalid IL or missing references) //IL_8ac9: Unknown result type (might be due to invalid IL or missing references) //IL_8ad3: Unknown result type (might be due to invalid IL or missing references) //IL_8ad9: Unknown result type (might be due to invalid IL or missing references) //IL_8ade: Unknown result type (might be due to invalid IL or missing references) //IL_8ae4: Unknown result type (might be due to invalid IL or missing references) //IL_8ae9: Unknown result type (might be due to invalid IL or missing references) //IL_8aee: Unknown result type (might be due to invalid IL or missing references) //IL_8af9: Unknown result type (might be due to invalid IL or missing references) //IL_8aff: Unknown result type (might be due to invalid IL or missing references) //IL_8b04: Unknown result type (might be due to invalid IL or missing references) //IL_8b0a: Unknown result type (might be due to invalid IL or missing references) //IL_8b0f: Unknown result type (might be due to invalid IL or missing references) //IL_8b15: Unknown result type (might be due to invalid IL or missing references) //IL_8b1f: Unknown result type (might be due to invalid IL or missing references) //IL_8b24: Unknown result type (might be due to invalid IL or missing references) //IL_8b2a: Unknown result type (might be due to invalid IL or missing references) //IL_8b34: Unknown result type (might be due to invalid IL or missing references) //IL_8b3a: Unknown result type (might be due to invalid IL or missing references) //IL_8b3f: Unknown result type (might be due to invalid IL or missing references) //IL_8b45: Unknown result type (might be due to invalid IL or missing references) //IL_8b4a: Unknown result type (might be due to invalid IL or missing references) //IL_8b4f: Unknown result type (might be due to invalid IL or missing references) //IL_8b54: Unknown result type (might be due to invalid IL or missing references) //IL_8b64: Unknown result type (might be due to invalid IL or missing references) //IL_8b6a: Unknown result type (might be due to invalid IL or missing references) //IL_8b6f: Unknown result type (might be due to invalid IL or missing references) //IL_8b75: Unknown result type (might be due to invalid IL or missing references) //IL_8b7a: Unknown result type (might be due to invalid IL or missing references) //IL_8b80: Unknown result type (might be due to invalid IL or missing references) //IL_8b8a: Unknown result type (might be due to invalid IL or missing references) //IL_8b8f: Unknown result type (might be due to invalid IL or missing references) //IL_8b95: Unknown result type (might be due to invalid IL or missing references) //IL_8b9f: Unknown result type (might be due to invalid IL or missing references) //IL_8ba5: Unknown result type (might be due to invalid IL or missing references) //IL_8baa: Unknown result type (might be due to invalid IL or missing references) //IL_8bb0: Unknown result type (might be due to invalid IL or missing references) //IL_8bb5: Unknown result type (might be due to invalid IL or missing references) //IL_8bba: Unknown result type (might be due to invalid IL or missing references) //IL_8bc0: Unknown result type (might be due to invalid IL or missing references) //IL_8bca: Unknown result type (might be due to invalid IL or missing references) //IL_8bcf: Unknown result type (might be due to invalid IL or missing references) //IL_8bda: Unknown result type (might be due to invalid IL or missing references) //IL_8be0: Unknown result type (might be due to invalid IL or missing references) //IL_8be5: Unknown result type (might be due to invalid IL or missing references) //IL_8beb: Unknown result type (might be due to invalid IL or missing references) //IL_8bf0: Unknown result type (might be due to invalid IL or missing references) //IL_8bf6: Unknown result type (might be due to invalid IL or missing references) //IL_8c00: Unknown result type (might be due to invalid IL or missing references) //IL_8c05: Unknown result type (might be due to invalid IL or missing references) //IL_8c0b: Unknown result type (might be due to invalid IL or missing references) //IL_8c15: Unknown result type (might be due to invalid IL or missing references) //IL_8c1b: Unknown result type (might be due to invalid IL or missing references) //IL_8c20: Unknown result type (might be due to invalid IL or missing references) //IL_8c26: Unknown result type (might be due to invalid IL or missing references) //IL_8c2b: Unknown result type (might be due to invalid IL or missing references) //IL_8c30: Unknown result type (might be due to invalid IL or missing references) //IL_8c36: Unknown result type (might be due to invalid IL or missing references) //IL_8c40: Unknown result type (might be due to invalid IL or missing references) //IL_8c45: Unknown result type (might be due to invalid IL or missing references) //IL_8c4a: Unknown result type (might be due to invalid IL or missing references) //IL_8c5a: Unknown result type (might be due to invalid IL or missing references) //IL_8c60: Unknown result type (might be due to invalid IL or missing references) //IL_8c65: Unknown result type (might be due to invalid IL or missing references) //IL_8c6b: Unknown result type (might be due to invalid IL or missing references) //IL_8c70: Unknown result type (might be due to invalid IL or missing references) //IL_8c76: Unknown result type (might be due to invalid IL or missing references) //IL_8c80: Unknown result type (might be due to invalid IL or missing references) //IL_8c85: Unknown result type (might be due to invalid IL or missing references) //IL_8c8b: Unknown result type (might be due to invalid IL or missing references) //IL_8c95: Unknown result type (might be due to invalid IL or missing references) //IL_8c9b: Unknown result type (might be due to invalid IL or missing references) //IL_8ca0: Unknown result type (might be due to invalid IL or missing references) //IL_8ca6: Unknown result type (might be due to invalid IL or missing references) //IL_8cab: Unknown result type (might be due to invalid IL or missing references) //IL_8cb0: Unknown result type (might be due to invalid IL or missing references) //IL_8cb6: Unknown result type (might be due to invalid IL or missing references) //IL_8cc0: Unknown result type (might be due to invalid IL or missing references) //IL_8cc5: Unknown result type (might be due to invalid IL or missing references) //IL_8cd0: Unknown result type (might be due to invalid IL or missing references) //IL_8cd6: Unknown result type (might be due to invalid IL or missing references) //IL_8cdb: Unknown result type (might be due to invalid IL or missing references) //IL_8ce1: Unknown result type (might be due to invalid IL or missing references) //IL_8ce6: Unknown result type (might be due to invalid IL or missing references) //IL_8cec: Unknown result type (might be due to invalid IL or missing references) //IL_8cf6: Unknown result type (might be due to invalid IL or missing references) //IL_8cfb: Unknown result type (might be due to invalid IL or missing references) //IL_8d01: Unknown result type (might be due to invalid IL or missing references) //IL_8d0b: Unknown result type (might be due to invalid IL or missing references) //IL_8d11: Unknown result type (might be due to invalid IL or missing references) //IL_8d16: Unknown result type (might be due to invalid IL or missing references) //IL_8d1c: Unknown result type (might be due to invalid IL or missing references) //IL_8d21: Unknown result type (might be due to invalid IL or missing references) //IL_8d26: Unknown result type (might be due to invalid IL or missing references) //IL_8d2c: Unknown result type (might be due to invalid IL or missing references) //IL_8d36: Unknown result type (might be due to invalid IL or missing references) //IL_8d3b: Unknown result type (might be due to invalid IL or missing references) //IL_8d40: Unknown result type (might be due to invalid IL or missing references) //IL_8d50: Unknown result type (might be due to invalid IL or missing references) //IL_8d56: Unknown result type (might be due to invalid IL or missing references) //IL_8d5b: Unknown result type (might be due to invalid IL or missing references) //IL_8d61: Unknown result type (might be due to invalid IL or missing references) //IL_8d66: Unknown result type (might be due to invalid IL or missing references) //IL_8d6c: Unknown result type (might be due to invalid IL or missing references) //IL_8d76: Unknown result type (might be due to invalid IL or missing references) //IL_8d7b: Unknown result type (might be due to invalid IL or missing references) //IL_8d81: Unknown result type (might be due to invalid IL or missing references) //IL_8d8b: Unknown result type (might be due to invalid IL or missing references) //IL_8d91: Unknown result type (might be due to invalid IL or missing references) //IL_8d96: Unknown result type (might be due to invalid IL or missing references) //IL_8d9c: Unknown result type (might be due to invalid IL or missing references) //IL_8da1: Unknown result type (might be due to invalid IL or missing references) //IL_8da6: Unknown result type (might be due to invalid IL or missing references) //IL_8dac: Unknown result type (might be due to invalid IL or missing references) //IL_8db6: Unknown result type (might be due to invalid IL or missing references) //IL_8dbb: Unknown result type (might be due to invalid IL or missing references) //IL_8dc6: Unknown result type (might be due to invalid IL or missing references) //IL_8dcc: Unknown result type (might be due to invalid IL or missing references) //IL_8dd1: Unknown result type (might be due to invalid IL or missing references) //IL_8dd7: Unknown result type (might be due to invalid IL or missing references) //IL_8ddc: Unknown result type (might be due to invalid IL or missing references) //IL_8de2: Unknown result type (might be due to invalid IL or missing references) //IL_8dec: Unknown result type (might be due to invalid IL or missing references) //IL_8df1: Unknown result type (might be due to invalid IL or missing references) //IL_8df7: Unknown result type (might be due to invalid IL or missing references) //IL_8e01: Unknown result type (might be due to invalid IL or missing references) //IL_8e07: Unknown result type (might be due to invalid IL or missing references) //IL_8e0c: Unknown result type (might be due to invalid IL or missing references) //IL_8e12: Unknown result type (might be due to invalid IL or missing references) //IL_8e17: Unknown result type (might be due to invalid IL or missing references) //IL_8e1c: Unknown result type (might be due to invalid IL or missing references) //IL_8e22: Unknown result type (might be due to invalid IL or missing references) //IL_8e2c: Unknown result type (might be due to invalid IL or missing references) //IL_8e31: Unknown result type (might be due to invalid IL or missing references) //IL_8e36: Unknown result type (might be due to invalid IL or missing references) //IL_8e46: Unknown result type (might be due to invalid IL or missing references) //IL_8e4c: Unknown result type (might be due to invalid IL or missing references) //IL_8e51: Unknown result type (might be due to invalid IL or missing references) //IL_8e57: Unknown result type (might be due to invalid IL or missing references) //IL_8e5c: Unknown result type (might be due to invalid IL or missing references) //IL_8e62: Unknown result type (might be due to invalid IL or missing references) //IL_8e6c: Unknown result type (might be due to invalid IL or missing references) //IL_8e71: Unknown result type (might be due to invalid IL or missing references) //IL_8e77: Unknown result type (might be due to invalid IL or missing references) //IL_8e81: Unknown result type (might be due to invalid IL or missing references) //IL_8e87: Unknown result type (might be due to invalid IL or missing references) //IL_8e8c: Unknown result type (might be due to invalid IL or missing references) //IL_8e92: Unknown result type (might be due to invalid IL or missing references) //IL_8e97: Unknown result type (might be due to invalid IL or missing references) //IL_8e9c: Unknown result type (might be due to invalid IL or missing references) //IL_8ea2: Unknown result type (might be due to invalid IL or missing references) //IL_8eac: Unknown result type (might be due to invalid IL or missing references) //IL_8eb1: Unknown result type (might be due to invalid IL or missing references) //IL_8ebc: Unknown result type (might be due to invalid IL or missing references) //IL_8ec2: Unknown result type (might be due to invalid IL or missing references) //IL_8ec7: Unknown result type (might be due to invalid IL or missing references) //IL_8ecd: Unknown result type (might be due to invalid IL or missing references) //IL_8ed2: Unknown result type (might be due to invalid IL or missing references) //IL_8ed8: Unknown result type (might be due to invalid IL or missing references) //IL_8ee2: Unknown result type (might be due to invalid IL or missing references) //IL_8ee7: Unknown result type (might be due to invalid IL or missing references) //IL_8eed: Unknown result type (might be due to invalid IL or missing references) //IL_8ef7: Unknown result type (might be due to invalid IL or missing references) //IL_8efd: Unknown result type (might be due to invalid IL or missing references) //IL_8f02: Unknown result type (might be due to invalid IL or missing references) //IL_8f08: Unknown result type (might be due to invalid IL or missing references) //IL_8f0d: Unknown result type (might be due to invalid IL or missing references) //IL_8f12: Unknown result type (might be due to invalid IL or missing references) //IL_8f18: Unknown result type (might be due to invalid IL or missing references) //IL_8f22: Unknown result type (might be due to invalid IL or missing references) //IL_8f27: Unknown result type (might be due to invalid IL or missing references) //IL_8f2c: Unknown result type (might be due to invalid IL or missing references) //IL_8f3c: Unknown result type (might be due to invalid IL or missing references) //IL_8f42: Unknown result type (might be due to invalid IL or missing references) //IL_8f47: Unknown result type (might be due to invalid IL or missing references) //IL_8f4d: Unknown result type (might be due to invalid IL or missing references) //IL_8f52: Unknown result type (might be due to invalid IL or missing references) //IL_8f58: Unknown result type (might be due to invalid IL or missing references) //IL_8f62: Unknown result type (might be due to invalid IL or missing references) //IL_8f67: Unknown result type (might be due to invalid IL or missing references) //IL_8f6d: Unknown result type (might be due to invalid IL or missing references) //IL_8f77: Unknown result type (might be due to invalid IL or missing references) //IL_8f7d: Unknown result type (might be due to invalid IL or missing references) //IL_8f82: Unknown result type (might be due to invalid IL or missing references) //IL_8f88: Unknown result type (might be due to invalid IL or missing references) //IL_8f8d: Unknown result type (might be due to invalid IL or missing references) //IL_8f92: Unknown result type (might be due to invalid IL or missing references) //IL_8f98: Unknown result type (might be due to invalid IL or missing references) //IL_8fa2: Unknown result type (might be due to invalid IL or missing references) //IL_8fa7: Unknown result type (might be due to invalid IL or missing references) //IL_8fb2: Unknown result type (might be due to invalid IL or missing references) //IL_8fb8: Unknown result type (might be due to invalid IL or missing references) //IL_8fbd: Unknown result type (might be due to invalid IL or missing references) //IL_8fc3: Unknown result type (might be due to invalid IL or missing references) //IL_8fc8: Unknown result type (might be due to invalid IL or missing references) //IL_8fce: Unknown result type (might be due to invalid IL or missing references) //IL_8fd8: Unknown result type (might be due to invalid IL or missing references) //IL_8fdd: Unknown result type (might be due to invalid IL or missing references) //IL_8fe3: Unknown result type (might be due to invalid IL or missing references) //IL_8fed: Unknown result type (might be due to invalid IL or missing references) //IL_8ff3: Unknown result type (might be due to invalid IL or missing references) //IL_8ff8: Unknown result type (might be due to invalid IL or missing references) //IL_8ffe: Unknown result type (might be due to invalid IL or missing references) //IL_9003: Unknown result type (might be due to invalid IL or missing references) //IL_9008: Unknown result type (might be due to invalid IL or missing references) //IL_900e: Unknown result type (might be due to invalid IL or missing references) //IL_9018: Unknown result type (might be due to invalid IL or missing references) //IL_901d: Unknown result type (might be due to invalid IL or missing references) //IL_9022: Unknown result type (might be due to invalid IL or missing references) //IL_9032: Unknown result type (might be due to invalid IL or missing references) //IL_9038: Unknown result type (might be due to invalid IL or missing references) //IL_903d: Unknown result type (might be due to invalid IL or missing references) //IL_9043: Unknown result type (might be due to invalid IL or missing references) //IL_9048: Unknown result type (might be due to invalid IL or missing references) //IL_904e: Unknown result type (might be due to invalid IL or missing references) //IL_9058: Unknown result type (might be due to invalid IL or missing references) //IL_905d: Unknown result type (might be due to invalid IL or missing references) //IL_9063: Unknown result type (might be due to invalid IL or missing references) //IL_906d: Unknown result type (might be due to invalid IL or missing references) //IL_9073: Unknown result type (might be due to invalid IL or missing references) //IL_9078: Unknown result type (might be due to invalid IL or missing references) //IL_907e: Unknown result type (might be due to invalid IL or missing references) //IL_9083: Unknown result type (might be due to invalid IL or missing references) //IL_9088: Unknown result type (might be due to invalid IL or missing references) //IL_908e: Unknown result type (might be due to invalid IL or missing references) //IL_9098: Unknown result type (might be due to invalid IL or missing references) //IL_909d: Unknown result type (might be due to invalid IL or missing references) //IL_90a8: Unknown result type (might be due to invalid IL or missing references) //IL_90ae: Unknown result type (might be due to invalid IL or missing references) //IL_90b3: Unknown result type (might be due to invalid IL or missing references) //IL_90b9: Unknown result type (might be due to invalid IL or missing references) //IL_90be: Unknown result type (might be due to invalid IL or missing references) //IL_90c4: Unknown result type (might be due to invalid IL or missing references) //IL_90ce: Unknown result type (might be due to invalid IL or missing references) //IL_90d3: Unknown result type (might be due to invalid IL or missing references) //IL_90d9: Unknown result type (might be due to invalid IL or missing references) //IL_90e3: Unknown result type (might be due to invalid IL or missing references) //IL_90e9: Unknown result type (might be due to invalid IL or missing references) //IL_90ee: Unknown result type (might be due to invalid IL or missing references) //IL_90f4: Unknown result type (might be due to invalid IL or missing references) //IL_90f9: Unknown result type (might be due to invalid IL or missing references) //IL_90fe: Unknown result type (might be due to invalid IL or missing references) //IL_9104: Unknown result type (might be due to invalid IL or missing references) //IL_910e: Unknown result type (might be due to invalid IL or missing references) //IL_9113: Unknown result type (might be due to invalid IL or missing references) //IL_9118: Unknown result type (might be due to invalid IL or missing references) //IL_9128: Unknown result type (might be due to invalid IL or missing references) //IL_912e: Unknown result type (might be due to invalid IL or missing references) //IL_9133: Unknown result type (might be due to invalid IL or missing references) //IL_9139: Unknown result type (might be due to invalid IL or missing references) //IL_913e: Unknown result type (might be due to invalid IL or missing references) //IL_9144: Unknown result type (might be due to invalid IL or missing references) //IL_914e: Unknown result type (might be due to invalid IL or missing references) //IL_9153: Unknown result type (might be due to invalid IL or missing references) //IL_9159: Unknown result type (might be due to invalid IL or missing references) //IL_9163: Unknown result type (might be due to invalid IL or missing references) //IL_9169: Unknown result type (might be due to invalid IL or missing references) //IL_916e: Unknown result type (might be due to invalid IL or missing references) //IL_9174: Unknown result type (might be due to invalid IL or missing references) //IL_9179: Unknown result type (might be due to invalid IL or missing references) //IL_917e: Unknown result type (might be due to invalid IL or missing references) //IL_9184: Unknown result type (might be due to invalid IL or missing references) //IL_918e: Unknown result type (might be due to invalid IL or missing references) //IL_9193: Unknown result type (might be due to invalid IL or missing references) //IL_919e: Unknown result type (might be due to invalid IL or missing references) //IL_91a4: Unknown result type (might be due to invalid IL or missing references) //IL_91a9: Unknown result type (might be due to invalid IL or missing references) //IL_91af: Unknown result type (might be due to invalid IL or missing references) //IL_91b4: Unknown result type (might be due to invalid IL or missing references) //IL_91ba: Unknown result type (might be due to invalid IL or missing references) //IL_91c4: Unknown result type (might be due to invalid IL or missing references) //IL_91c9: Unknown result type (might be due to invalid IL or missing references) //IL_91cf: Unknown result type (might be due to invalid IL or missing references) //IL_91d9: Unknown result type (might be due to invalid IL or missing references) //IL_91df: Unknown result type (might be due to invalid IL or missing references) //IL_91e4: Unknown result type (might be due to invalid IL or missing references) //IL_91ea: Unknown result type (might be due to invalid IL or missing references) //IL_91ef: Unknown result type (might be due to invalid IL or missing references) //IL_91f4: Unknown result type (might be due to invalid IL or missing references) //IL_91fa: Unknown result type (might be due to invalid IL or missing references) //IL_9204: Unknown result type (might be due to invalid IL or missing references) //IL_9209: Unknown result type (might be due to invalid IL or missing references) //IL_920e: Unknown result type (might be due to invalid IL or missing references) //IL_921e: Unknown result type (might be due to invalid IL or missing references) //IL_9224: Unknown result type (might be due to invalid IL or missing references) //IL_9229: Unknown result type (might be due to invalid IL or missing references) //IL_922f: Unknown result type (might be due to invalid IL or missing references) //IL_9234: Unknown result type (might be due to invalid IL or missing references) //IL_923a: Unknown result type (might be due to invalid IL or missing references) //IL_9244: Unknown result type (might be due to invalid IL or missing references) //IL_924a: Unknown result type (might be due to invalid IL or missing references) //IL_924f: Unknown result type (might be due to invalid IL or missing references) //IL_9255: Unknown result type (might be due to invalid IL or missing references) //IL_925a: Unknown result type (might be due to invalid IL or missing references) //IL_925f: Unknown result type (might be due to invalid IL or missing references) //IL_926a: Unknown result type (might be due to invalid IL or missing references) //IL_9270: Unknown result type (might be due to invalid IL or missing references) //IL_9275: Unknown result type (might be due to invalid IL or missing references) //IL_927b: Unknown result type (might be due to invalid IL or missing references) //IL_9280: Unknown result type (might be due to invalid IL or missing references) //IL_9286: Unknown result type (might be due to invalid IL or missing references) //IL_9290: Unknown result type (might be due to invalid IL or missing references) //IL_9295: Unknown result type (might be due to invalid IL or missing references) //IL_929b: Unknown result type (might be due to invalid IL or missing references) //IL_92a5: Unknown result type (might be due to invalid IL or missing references) //IL_92ab: Unknown result type (might be due to invalid IL or missing references) //IL_92b0: Unknown result type (might be due to invalid IL or missing references) //IL_92b6: Unknown result type (might be due to invalid IL or missing references) //IL_92bb: Unknown result type (might be due to invalid IL or missing references) //IL_92c0: Unknown result type (might be due to invalid IL or missing references) //IL_92c5: Unknown result type (might be due to invalid IL or missing references) //IL_92d5: Unknown result type (might be due to invalid IL or missing references) //IL_92db: Unknown result type (might be due to invalid IL or missing references) //IL_92e0: Unknown result type (might be due to invalid IL or missing references) //IL_92e6: Unknown result type (might be due to invalid IL or missing references) //IL_92eb: Unknown result type (might be due to invalid IL or missing references) //IL_92f1: Unknown result type (might be due to invalid IL or missing references) //IL_92fb: Unknown result type (might be due to invalid IL or missing references) //IL_9301: Unknown result type (might be due to invalid IL or missing references) //IL_9306: Unknown result type (might be due to invalid IL or missing references) //IL_930c: Unknown result type (might be due to invalid IL or missing references) //IL_9311: Unknown result type (might be due to invalid IL or missing references) //IL_9316: Unknown result type (might be due to invalid IL or missing references) //IL_931c: Unknown result type (might be due to invalid IL or missing references) //IL_9326: Unknown result type (might be due to invalid IL or missing references) //IL_932b: Unknown result type (might be due to invalid IL or missing references) //IL_9336: Unknown result type (might be due to invalid IL or missing references) //IL_933c: Unknown result type (might be due to invalid IL or missing references) //IL_9341: Unknown result type (might be due to invalid IL or missing references) //IL_9347: Unknown result type (might be due to invalid IL or missing references) //IL_934c: Unknown result type (might be due to invalid IL or missing references) //IL_9352: Unknown result type (might be due to invalid IL or missing references) //IL_935c: Unknown result type (might be due to invalid IL or missing references) //IL_9361: Unknown result type (might be due to invalid IL or missing references) //IL_9367: Unknown result type (might be due to invalid IL or missing references) //IL_9371: Unknown result type (might be due to invalid IL or missing references) //IL_9377: Unknown result type (might be due to invalid IL or missing references) //IL_937c: Unknown result type (might be due to invalid IL or missing references) //IL_9382: Unknown result type (might be due to invalid IL or missing references) //IL_9387: Unknown result type (might be due to invalid IL or missing references) //IL_938c: Unknown result type (might be due to invalid IL or missing references) //IL_9392: Unknown result type (might be due to invalid IL or missing references) //IL_939c: Unknown result type (might be due to invalid IL or missing references) //IL_93a1: Unknown result type (might be due to invalid IL or missing references) //IL_93a6: Unknown result type (might be due to invalid IL or missing references) //IL_93b6: Unknown result type (might be due to invalid IL or missing references) //IL_93bc: Unknown result type (might be due to invalid IL or missing references) //IL_93c1: Unknown result type (might be due to invalid IL or missing references) //IL_93c7: Unknown result type (might be due to invalid IL or missing references) //IL_93cc: Unknown result type (might be due to invalid IL or missing references) //IL_93d2: Unknown result type (might be due to invalid IL or missing references) //IL_93dc: Unknown result type (might be due to invalid IL or missing references) //IL_93e2: Unknown result type (might be due to invalid IL or missing references) //IL_93e7: Unknown result type (might be due to invalid IL or missing references) //IL_93ed: Unknown result type (might be due to invalid IL or missing references) //IL_93f2: Unknown result type (might be due to invalid IL or missing references) //IL_93f7: Unknown result type (might be due to invalid IL or missing references) //IL_93fd: Unknown result type (might be due to invalid IL or missing references) //IL_9407: Unknown result type (might be due to invalid IL or missing references) //IL_940c: Unknown result type (might be due to invalid IL or missing references) //IL_9417: Unknown result type (might be due to invalid IL or missing references) //IL_941d: Unknown result type (might be due to invalid IL or missing references) //IL_9422: Unknown result type (might be due to invalid IL or missing references) //IL_9428: Unknown result type (might be due to invalid IL or missing references) //IL_942d: Unknown result type (might be due to invalid IL or missing references) //IL_9433: Unknown result type (might be due to invalid IL or missing references) //IL_943d: Unknown result type (might be due to invalid IL or missing references) //IL_9442: Unknown result type (might be due to invalid IL or missing references) //IL_9448: Unknown result type (might be due to invalid IL or missing references) //IL_9452: Unknown result type (might be due to invalid IL or missing references) //IL_9458: Unknown result type (might be due to invalid IL or missing references) //IL_945d: Unknown result type (might be due to invalid IL or missing references) //IL_9463: Unknown result type (might be due to invalid IL or missing references) //IL_9468: Unknown result type (might be due to invalid IL or missing references) //IL_946d: Unknown result type (might be due to invalid IL or missing references) //IL_9473: Unknown result type (might be due to invalid IL or missing references) //IL_947d: Unknown result type (might be due to invalid IL or missing references) //IL_9482: Unknown result type (might be due to invalid IL or missing references) //IL_9487: Unknown result type (might be due to invalid IL or missing references) //IL_9497: Unknown result type (might be due to invalid IL or missing references) //IL_949d: Unknown result type (might be due to invalid IL or missing references) //IL_94a2: Unknown result type (might be due to invalid IL or missing references) //IL_94a8: Unknown result type (might be due to invalid IL or missing references) //IL_94ad: Unknown result type (might be due to invalid IL or missing references) //IL_94b3: Unknown result type (might be due to invalid IL or missing references) //IL_94bd: Unknown result type (might be due to invalid IL or missing references) //IL_94c3: Unknown result type (might be due to invalid IL or missing references) //IL_94c8: Unknown result type (might be due to invalid IL or missing references) //IL_94ce: Unknown result type (might be due to invalid IL or missing references) //IL_94d3: Unknown result type (might be due to invalid IL or missing references) //IL_94d8: Unknown result type (might be due to invalid IL or missing references) //IL_94de: Unknown result type (might be due to invalid IL or missing references) //IL_94e8: Unknown result type (might be due to invalid IL or missing references) //IL_94ed: Unknown result type (might be due to invalid IL or missing references) //IL_94f8: Unknown result type (might be due to invalid IL or missing references) //IL_94fe: Unknown result type (might be due to invalid IL or missing references) //IL_9503: Unknown result type (might be due to invalid IL or missing references) //IL_9509: Unknown result type (might be due to invalid IL or missing references) //IL_950e: Unknown result type (might be due to invalid IL or missing references) //IL_9514: Unknown result type (might be due to invalid IL or missing references) //IL_951e: Unknown result type (might be due to invalid IL or missing references) //IL_9523: Unknown result type (might be due to invalid IL or missing references) //IL_9529: Unknown result type (might be due to invalid IL or missing references) //IL_9533: Unknown result type (might be due to invalid IL or missing references) //IL_9539: Unknown result type (might be due to invalid IL or missing references) //IL_953e: Unknown result type (might be due to invalid IL or missing references) //IL_9544: Unknown result type (might be due to invalid IL or missing references) //IL_9549: Unknown result type (might be due to invalid IL or missing references) //IL_954e: Unknown result type (might be due to invalid IL or missing references) //IL_9554: Unknown result type (might be due to invalid IL or missing references) //IL_955e: Unknown result type (might be due to invalid IL or missing references) //IL_9563: Unknown result type (might be due to invalid IL or missing references) //IL_9568: Unknown result type (might be due to invalid IL or missing references) //IL_9578: Unknown result type (might be due to invalid IL or missing references) //IL_957e: Unknown result type (might be due to invalid IL or missing references) //IL_9583: Unknown result type (might be due to invalid IL or missing references) //IL_9589: Unknown result type (might be due to invalid IL or missing references) //IL_958e: Unknown result type (might be due to invalid IL or missing references) //IL_9594: Unknown result type (might be due to invalid IL or missing references) //IL_959e: Unknown result type (might be due to invalid IL or missing references) //IL_95a4: Unknown result type (might be due to invalid IL or missing references) //IL_95a9: Unknown result type (might be due to invalid IL or missing references) //IL_95af: Unknown result type (might be due to invalid IL or missing references) //IL_95b4: Unknown result type (might be due to invalid IL or missing references) //IL_95b9: Unknown result type (might be due to invalid IL or missing references) //IL_95bf: Unknown result type (might be due to invalid IL or missing references) //IL_95c9: Unknown result type (might be due to invalid IL or missing references) //IL_95ce: Unknown result type (might be due to invalid IL or missing references) //IL_95d9: Unknown result type (might be due to invalid IL or missing references) //IL_95df: Unknown result type (might be due to invalid IL or missing references) //IL_95e4: Unknown result type (might be due to invalid IL or missing references) //IL_95ea: Unknown result type (might be due to invalid IL or missing references) //IL_95ef: Unknown result type (might be due to invalid IL or missing references) //IL_95f5: Unknown result type (might be due to invalid IL or missing references) //IL_95ff: Unknown result type (might be due to invalid IL or missing references) //IL_9604: Unknown result type (might be due to invalid IL or missing references) //IL_960a: Unknown result type (might be due to invalid IL or missing references) //IL_9614: Unknown result type (might be due to invalid IL or missing references) //IL_961a: Unknown result type (might be due to invalid IL or missing references) //IL_961f: Unknown result type (might be due to invalid IL or missing references) //IL_9625: Unknown result type (might be due to invalid IL or missing references) //IL_962a: Unknown result type (might be due to invalid IL or missing references) //IL_962f: Unknown result type (might be due to invalid IL or missing references) //IL_9635: Unknown result type (might be due to invalid IL or missing references) //IL_963f: Unknown result type (might be due to invalid IL or missing references) //IL_9644: Unknown result type (might be due to invalid IL or missing references) //IL_9649: Unknown result type (might be due to invalid IL or missing references) //IL_9659: Unknown result type (might be due to invalid IL or missing references) //IL_965f: Unknown result type (might be due to invalid IL or missing references) //IL_9664: Unknown result type (might be due to invalid IL or missing references) //IL_966a: Unknown result type (might be due to invalid IL or missing references) //IL_966f: Unknown result type (might be due to invalid IL or missing references) //IL_9675: Unknown result type (might be due to invalid IL or missing references) //IL_967f: Unknown result type (might be due to invalid IL or missing references) //IL_9685: Unknown result type (might be due to invalid IL or missing references) //IL_968a: Unknown result type (might be due to invalid IL or missing references) //IL_9690: Unknown result type (might be due to invalid IL or missing references) //IL_9695: Unknown result type (might be due to invalid IL or missing references) //IL_969a: Unknown result type (might be due to invalid IL or missing references) //IL_96a0: Unknown result type (might be due to invalid IL or missing references) //IL_96aa: Unknown result type (might be due to invalid IL or missing references) //IL_96af: Unknown result type (might be due to invalid IL or missing references) //IL_96ba: Unknown result type (might be due to invalid IL or missing references) //IL_96c0: Unknown result type (might be due to invalid IL or missing references) //IL_96c5: Unknown result type (might be due to invalid IL or missing references) //IL_96cb: Unknown result type (might be due to invalid IL or missing references) //IL_96d0: Unknown result type (might be due to invalid IL or missing references) //IL_96d6: Unknown result type (might be due to invalid IL or missing references) //IL_96e0: Unknown result type (might be due to invalid IL or missing references) //IL_96e5: Unknown result type (might be due to invalid IL or missing references) //IL_96eb: Unknown result type (might be due to invalid IL or missing references) //IL_96f5: Unknown result type (might be due to invalid IL or missing references) //IL_96fb: Unknown result type (might be due to invalid IL or missing references) //IL_9700: Unknown result type (might be due to invalid IL or missing references) //IL_9706: Unknown result type (might be due to invalid IL or missing references) //IL_970b: Unknown result type (might be due to invalid IL or missing references) //IL_9710: Unknown result type (might be due to invalid IL or missing references) //IL_9716: Unknown result type (might be due to invalid IL or missing references) //IL_9720: Unknown result type (might be due to invalid IL or missing references) //IL_9725: Unknown result type (might be due to invalid IL or missing references) //IL_972a: Unknown result type (might be due to invalid IL or missing references) //IL_973a: Unknown result type (might be due to invalid IL or missing references) //IL_9740: Unknown result type (might be due to invalid IL or missing references) //IL_9745: Unknown result type (might be due to invalid IL or missing references) //IL_974b: Unknown result type (might be due to invalid IL or missing references) //IL_9750: Unknown result type (might be due to invalid IL or missing references) //IL_9756: Unknown result type (might be due to invalid IL or missing references) //IL_9760: Unknown result type (might be due to invalid IL or missing references) //IL_9766: Unknown result type (might be due to invalid IL or missing references) //IL_976b: Unknown result type (might be due to invalid IL or missing references) //IL_9771: Unknown result type (might be due to invalid IL or missing references) //IL_9776: Unknown result type (might be due to invalid IL or missing references) //IL_977b: Unknown result type (might be due to invalid IL or missing references) //IL_9781: Unknown result type (might be due to invalid IL or missing references) //IL_978b: Unknown result type (might be due to invalid IL or missing references) //IL_9790: Unknown result type (might be due to invalid IL or missing references) //IL_979b: Unknown result type (might be due to invalid IL or missing references) //IL_97a1: Unknown result type (might be due to invalid IL or missing references) //IL_97a6: Unknown result type (might be due to invalid IL or missing references) //IL_97ac: Unknown result type (might be due to invalid IL or missing references) //IL_97b1: Unknown result type (might be due to invalid IL or missing references) //IL_97b7: Unknown result type (might be due to invalid IL or missing references) //IL_97c1: Unknown result type (might be due to invalid IL or missing references) //IL_97c6: Unknown result type (might be due to invalid IL or missing references) //IL_97cc: Unknown result type (might be due to invalid IL or missing references) //IL_97d6: Unknown result type (might be due to invalid IL or missing references) //IL_97dc: Unknown result type (might be due to invalid IL or missing references) //IL_97e1: Unknown result type (might be due to invalid IL or missing references) //IL_97e7: Unknown result type (might be due to invalid IL or missing references) //IL_97ec: Unknown result type (might be due to invalid IL or missing references) //IL_97f1: Unknown result type (might be due to invalid IL or missing references) //IL_97f7: Unknown result type (might be due to invalid IL or missing references) //IL_9801: Unknown result type (might be due to invalid IL or missing references) //IL_9806: Unknown result type (might be due to invalid IL or missing references) //IL_980b: Unknown result type (might be due to invalid IL or missing references) //IL_981b: Unknown result type (might be due to invalid IL or missing references) //IL_9821: Unknown result type (might be due to invalid IL or missing references) //IL_9826: Unknown result type (might be due to invalid IL or missing references) //IL_982c: Unknown result type (might be due to invalid IL or missing references) //IL_9831: Unknown result type (might be due to invalid IL or missing references) //IL_9837: Unknown result type (might be due to invalid IL or missing references) //IL_9841: Unknown result type (might be due to invalid IL or missing references) //IL_9847: Unknown result type (might be due to invalid IL or missing references) //IL_984c: Unknown result type (might be due to invalid IL or missing references) //IL_9852: Unknown result type (might be due to invalid IL or missing references) //IL_9857: Unknown result type (might be due to invalid IL or missing references) //IL_985c: Unknown result type (might be due to invalid IL or missing references) //IL_9862: Unknown result type (might be due to invalid IL or missing references) //IL_986c: Unknown result type (might be due to invalid IL or missing references) //IL_9871: Unknown result type (might be due to invalid IL or missing references) //IL_987c: Unknown result type (might be due to invalid IL or missing references) //IL_9882: Unknown result type (might be due to invalid IL or missing references) //IL_9887: Unknown result type (might be due to invalid IL or missing references) //IL_988d: Unknown result type (might be due to invalid IL or missing references) //IL_9892: Unknown result type (might be due to invalid IL or missing references) //IL_9898: Unknown result type (might be due to invalid IL or missing references) //IL_98a2: Unknown result type (might be due to invalid IL or missing references) //IL_98a7: Unknown result type (might be due to invalid IL or missing references) //IL_98ad: Unknown result type (might be due to invalid IL or missing references) //IL_98b7: Unknown result type (might be due to invalid IL or missing references) //IL_98bd: Unknown result type (might be due to invalid IL or missing references) //IL_98c2: Unknown result type (might be due to invalid IL or missing references) //IL_98c8: Unknown result type (might be due to invalid IL or missing references) //IL_98cd: Unknown result type (might be due to invalid IL or missing references) //IL_98d2: Unknown result type (might be due to invalid IL or missing references) //IL_98d8: Unknown result type (might be due to invalid IL or missing references) //IL_98e2: Unknown result type (might be due to invalid IL or missing references) //IL_98e7: Unknown result type (might be due to invalid IL or missing references) //IL_98ec: Unknown result type (might be due to invalid IL or missing references) //IL_98fc: Unknown result type (might be due to invalid IL or missing references) //IL_9902: Unknown result type (might be due to invalid IL or missing references) //IL_9907: Unknown result type (might be due to invalid IL or missing references) //IL_990d: Unknown result type (might be due to invalid IL or missing references) //IL_9912: Unknown result type (might be due to invalid IL or missing references) //IL_9918: Unknown result type (might be due to invalid IL or missing references) //IL_9922: Unknown result type (might be due to invalid IL or missing references) //IL_9927: Unknown result type (might be due to invalid IL or missing references) //IL_992d: Unknown result type (might be due to invalid IL or missing references) //IL_9937: Unknown result type (might be due to invalid IL or missing references) //IL_993d: Unknown result type (might be due to invalid IL or missing references) //IL_9942: Unknown result type (might be due to invalid IL or missing references) //IL_9948: Unknown result type (might be due to invalid IL or missing references) //IL_994d: Unknown result type (might be due to invalid IL or missing references) //IL_9952: Unknown result type (might be due to invalid IL or missing references) //IL_995d: Unknown result type (might be due to invalid IL or missing references) //IL_9963: Unknown result type (might be due to invalid IL or missing references) //IL_9968: Unknown result type (might be due to invalid IL or missing references) //IL_996e: Unknown result type (might be due to invalid IL or missing references) //IL_9973: Unknown result type (might be due to invalid IL or missing references) //IL_9979: Unknown result type (might be due to invalid IL or missing references) //IL_9983: Unknown result type (might be due to invalid IL or missing references) //IL_9988: Unknown result type (might be due to invalid IL or missing references) //IL_998e: Unknown result type (might be due to invalid IL or missing references) //IL_9998: Unknown result type (might be due to invalid IL or missing references) //IL_999e: Unknown result type (might be due to invalid IL or missing references) //IL_99a3: Unknown result type (might be due to invalid IL or missing references) //IL_99a9: Unknown result type (might be due to invalid IL or missing references) //IL_99ae: Unknown result type (might be due to invalid IL or missing references) //IL_99b3: Unknown result type (might be due to invalid IL or missing references) //IL_99b8: Unknown result type (might be due to invalid IL or missing references) //IL_99c8: Unknown result type (might be due to invalid IL or missing references) //IL_99ce: Unknown result type (might be due to invalid IL or missing references) //IL_99d3: Unknown result type (might be due to invalid IL or missing references) //IL_99d9: Unknown result type (might be due to invalid IL or missing references) //IL_99de: Unknown result type (might be due to invalid IL or missing references) //IL_99e4: Unknown result type (might be due to invalid IL or missing references) //IL_99ee: Unknown result type (might be due to invalid IL or missing references) //IL_99f3: Unknown result type (might be due to invalid IL or missing references) //IL_99f9: Unknown result type (might be due to invalid IL or missing references) //IL_9a03: Unknown result type (might be due to invalid IL or missing references) //IL_9a09: Unknown result type (might be due to invalid IL or missing references) //IL_9a0e: Unknown result type (might be due to invalid IL or missing references) //IL_9a14: Unknown result type (might be due to invalid IL or missing references) //IL_9a19: Unknown result type (might be due to invalid IL or missing references) //IL_9a1e: Unknown result type (might be due to invalid IL or missing references) //IL_9a24: Unknown result type (might be due to invalid IL or missing references) //IL_9a2e: Unknown result type (might be due to invalid IL or missing references) //IL_9a33: Unknown result type (might be due to invalid IL or missing references) //IL_9a3e: Unknown result type (might be due to invalid IL or missing references) //IL_9a44: Unknown result type (might be due to invalid IL or missing references) //IL_9a49: Unknown result type (might be due to invalid IL or missing references) //IL_9a4f: Unknown result type (might be due to invalid IL or missing references) //IL_9a54: Unknown result type (might be due to invalid IL or missing references) //IL_9a5a: Unknown result type (might be due to invalid IL or missing references) //IL_9a64: Unknown result type (might be due to invalid IL or missing references) //IL_9a69: Unknown result type (might be due to invalid IL or missing references) //IL_9a6f: Unknown result type (might be due to invalid IL or missing references) //IL_9a79: Unknown result type (might be due to invalid IL or missing references) //IL_9a7f: Unknown result type (might be due to invalid IL or missing references) //IL_9a84: Unknown result type (might be due to invalid IL or missing references) //IL_9a8a: Unknown result type (might be due to invalid IL or missing references) //IL_9a8f: Unknown result type (might be due to invalid IL or missing references) //IL_9a94: Unknown result type (might be due to invalid IL or missing references) //IL_9a9a: Unknown result type (might be due to invalid IL or missing references) //IL_9aa4: Unknown result type (might be due to invalid IL or missing references) //IL_9aa9: Unknown result type (might be due to invalid IL or missing references) //IL_9aae: Unknown result type (might be due to invalid IL or missing references) //IL_9abe: Unknown result type (might be due to invalid IL or missing references) //IL_9ac4: Unknown result type (might be due to invalid IL or missing references) //IL_9ac9: Unknown result type (might be due to invalid IL or missing references) //IL_9acf: Unknown result type (might be due to invalid IL or missing references) //IL_9ad4: Unknown result type (might be due to invalid IL or missing references) //IL_9ada: Unknown result type (might be due to invalid IL or missing references) //IL_9ae4: Unknown result type (might be due to invalid IL or missing references) //IL_9ae9: Unknown result type (might be due to invalid IL or missing references) //IL_9aef: Unknown result type (might be due to invalid IL or missing references) //IL_9af9: Unknown result type (might be due to invalid IL or missing references) //IL_9aff: Unknown result type (might be due to invalid IL or missing references) //IL_9b04: Unknown result type (might be due to invalid IL or missing references) //IL_9b0a: Unknown result type (might be due to invalid IL or missing references) //IL_9b0f: Unknown result type (might be due to invalid IL or missing references) //IL_9b14: Unknown result type (might be due to invalid IL or missing references) //IL_9b1a: Unknown result type (might be due to invalid IL or missing references) //IL_9b24: Unknown result type (might be due to invalid IL or missing references) //IL_9b29: Unknown result type (might be due to invalid IL or missing references) //IL_9b34: Unknown result type (might be due to invalid IL or missing references) //IL_9b3a: Unknown result type (might be due to invalid IL or missing references) //IL_9b3f: Unknown result type (might be due to invalid IL or missing references) //IL_9b45: Unknown result type (might be due to invalid IL or missing references) //IL_9b4a: Unknown result type (might be due to invalid IL or missing references) //IL_9b50: Unknown result type (might be due to invalid IL or missing references) //IL_9b5a: Unknown result type (might be due to invalid IL or missing references) //IL_9b5f: Unknown result type (might be due to invalid IL or missing references) //IL_9b65: Unknown result type (might be due to invalid IL or missing references) //IL_9b6f: Unknown result type (might be due to invalid IL or missing references) //IL_9b75: Unknown result type (might be due to invalid IL or missing references) //IL_9b7a: Unknown result type (might be due to invalid IL or missing references) //IL_9b80: Unknown result type (might be due to invalid IL or missing references) //IL_9b85: Unknown result type (might be due to invalid IL or missing references) //IL_9b8a: Unknown result type (might be due to invalid IL or missing references) //IL_9b90: Unknown result type (might be due to invalid IL or missing references) //IL_9b9a: Unknown result type (might be due to invalid IL or missing references) //IL_9b9f: Unknown result type (might be due to invalid IL or missing references) //IL_9ba4: Unknown result type (might be due to invalid IL or missing references) //IL_9bb4: Unknown result type (might be due to invalid IL or missing references) //IL_9bba: Unknown result type (might be due to invalid IL or missing references) //IL_9bbf: Unknown result type (might be due to invalid IL or missing references) //IL_9bc5: Unknown result type (might be due to invalid IL or missing references) //IL_9bca: Unknown result type (might be due to invalid IL or missing references) //IL_9bd0: Unknown result type (might be due to invalid IL or missing references) //IL_9bda: Unknown result type (might be due to invalid IL or missing references) //IL_9bdf: Unknown result type (might be due to invalid IL or missing references) //IL_9be5: Unknown result type (might be due to invalid IL or missing references) //IL_9bef: Unknown result type (might be due to invalid IL or missing references) //IL_9bf5: Unknown result type (might be due to invalid IL or missing references) //IL_9bfa: Unknown result type (might be due to invalid IL or missing references) //IL_9c00: Unknown result type (might be due to invalid IL or missing references) //IL_9c05: Unknown result type (might be due to invalid IL or missing references) //IL_9c0a: Unknown result type (might be due to invalid IL or missing references) //IL_9c10: Unknown result type (might be due to invalid IL or missing references) //IL_9c1a: Unknown result type (might be due to invalid IL or missing references) //IL_9c1f: Unknown result type (might be due to invalid IL or missing references) //IL_9c2a: Unknown result type (might be due to invalid IL or missing references) //IL_9c30: Unknown result type (might be due to invalid IL or missing references) //IL_9c35: Unknown result type (might be due to invalid IL or missing references) //IL_9c3b: Unknown result type (might be due to invalid IL or missing references) //IL_9c40: Unknown result type (might be due to invalid IL or missing references) //IL_9c46: Unknown result type (might be due to invalid IL or missing references) //IL_9c50: Unknown result type (might be due to invalid IL or missing references) //IL_9c55: Unknown result type (might be due to invalid IL or missing references) //IL_9c5b: Unknown result type (might be due to invalid IL or missing references) //IL_9c65: Unknown result type (might be due to invalid IL or missing references) //IL_9c6b: Unknown result type (might be due to invalid IL or missing references) //IL_9c70: Unknown result type (might be due to invalid IL or missing references) //IL_9c76: Unknown result type (might be due to invalid IL or missing references) //IL_9c7b: Unknown result type (might be due to invalid IL or missing references) //IL_9c80: Unknown result type (might be due to invalid IL or missing references) //IL_9c86: Unknown result type (might be due to invalid IL or missing references) //IL_9c90: Unknown result type (might be due to invalid IL or missing references) //IL_9c95: Unknown result type (might be due to invalid IL or missing references) //IL_9c9a: Unknown result type (might be due to invalid IL or missing references) //IL_9caa: Unknown result type (might be due to invalid IL or missing references) //IL_9cb0: Unknown result type (might be due to invalid IL or missing references) //IL_9cb5: Unknown result type (might be due to invalid IL or missing references) //IL_9cbb: Unknown result type (might be due to invalid IL or missing references) //IL_9cc0: Unknown result type (might be due to invalid IL or missing references) //IL_9cc6: Unknown result type (might be due to invalid IL or missing references) //IL_9cd0: Unknown result type (might be due to invalid IL or missing references) //IL_9cd5: Unknown result type (might be due to invalid IL or missing references) //IL_9cdb: Unknown result type (might be due to invalid IL or missing references) //IL_9ce5: Unknown result type (might be due to invalid IL or missing references) //IL_9ceb: Unknown result type (might be due to invalid IL or missing references) //IL_9cf0: Unknown result type (might be due to invalid IL or missing references) //IL_9cf6: Unknown result type (might be due to invalid IL or missing references) //IL_9cfb: Unknown result type (might be due to invalid IL or missing references) //IL_9d00: Unknown result type (might be due to invalid IL or missing references) //IL_9d06: Unknown result type (might be due to invalid IL or missing references) //IL_9d10: Unknown result type (might be due to invalid IL or missing references) //IL_9d15: Unknown result type (might be due to invalid IL or missing references) //IL_9d20: Unknown result type (might be due to invalid IL or missing references) //IL_9d26: Unknown result type (might be due to invalid IL or missing references) //IL_9d2b: Unknown result type (might be due to invalid IL or missing references) //IL_9d31: Unknown result type (might be due to invalid IL or missing references) //IL_9d36: Unknown result type (might be due to invalid IL or missing references) //IL_9d3c: Unknown result type (might be due to invalid IL or missing references) //IL_9d46: Unknown result type (might be due to invalid IL or missing references) //IL_9d4b: Unknown result type (might be due to invalid IL or missing references) //IL_9d51: Unknown result type (might be due to invalid IL or missing references) //IL_9d5b: Unknown result type (might be due to invalid IL or missing references) //IL_9d61: Unknown result type (might be due to invalid IL or missing references) //IL_9d66: Unknown result type (might be due to invalid IL or missing references) //IL_9d6c: Unknown result type (might be due to invalid IL or missing references) //IL_9d71: Unknown result type (might be due to invalid IL or missing references) //IL_9d76: Unknown result type (might be due to invalid IL or missing references) //IL_9d7c: Unknown result type (might be due to invalid IL or missing references) //IL_9d86: Unknown result type (might be due to invalid IL or missing references) //IL_9d8b: Unknown result type (might be due to invalid IL or missing references) //IL_9d90: Unknown result type (might be due to invalid IL or missing references) //IL_9da0: Unknown result type (might be due to invalid IL or missing references) //IL_9da6: Unknown result type (might be due to invalid IL or missing references) //IL_9dab: Unknown result type (might be due to invalid IL or missing references) //IL_9db1: Unknown result type (might be due to invalid IL or missing references) //IL_9db6: Unknown result type (might be due to invalid IL or missing references) //IL_9dbc: Unknown result type (might be due to invalid IL or missing references) //IL_9dc6: Unknown result type (might be due to invalid IL or missing references) //IL_9dcb: Unknown result type (might be due to invalid IL or missing references) //IL_9dd1: Unknown result type (might be due to invalid IL or missing references) //IL_9ddb: Unknown result type (might be due to invalid IL or missing references) //IL_9de1: Unknown result type (might be due to invalid IL or missing references) //IL_9de6: Unknown result type (might be due to invalid IL or missing references) //IL_9dec: Unknown result type (might be due to invalid IL or missing references) //IL_9df1: Unknown result type (might be due to invalid IL or missing references) //IL_9df6: Unknown result type (might be due to invalid IL or missing references) //IL_9dfc: Unknown result type (might be due to invalid IL or missing references) //IL_9e06: Unknown result type (might be due to invalid IL or missing references) //IL_9e0b: Unknown result type (might be due to invalid IL or missing references) //IL_9e16: Unknown result type (might be due to invalid IL or missing references) //IL_9e1c: Unknown result type (might be due to invalid IL or missing references) //IL_9e21: Unknown result type (might be due to invalid IL or missing references) //IL_9e27: Unknown result type (might be due to invalid IL or missing references) //IL_9e2c: Unknown result type (might be due to invalid IL or missing references) //IL_9e32: Unknown result type (might be due to invalid IL or missing references) //IL_9e3c: Unknown result type (might be due to invalid IL or missing references) //IL_9e41: Unknown result type (might be due to invalid IL or missing references) //IL_9e47: Unknown result type (might be due to invalid IL or missing references) //IL_9e51: Unknown result type (might be due to invalid IL or missing references) //IL_9e57: Unknown result type (might be due to invalid IL or missing references) //IL_9e5c: Unknown result type (might be due to invalid IL or missing references) //IL_9e62: Unknown result type (might be due to invalid IL or missing references) //IL_9e67: Unknown result type (might be due to invalid IL or missing references) //IL_9e6c: Unknown result type (might be due to invalid IL or missing references) //IL_9e72: Unknown result type (might be due to invalid IL or missing references) //IL_9e7c: Unknown result type (might be due to invalid IL or missing references) //IL_9e81: Unknown result type (might be due to invalid IL or missing references) //IL_9e86: Unknown result type (might be due to invalid IL or missing references) //IL_9e96: Unknown result type (might be due to invalid IL or missing references) //IL_9e9c: Unknown result type (might be due to invalid IL or missing references) //IL_9ea1: Unknown result type (might be due to invalid IL or missing references) //IL_9ea7: Unknown result type (might be due to invalid IL or missing references) //IL_9eac: Unknown result type (might be due to invalid IL or missing references) //IL_9eb2: Unknown result type (might be due to invalid IL or missing references) //IL_9ebc: Unknown result type (might be due to invalid IL or missing references) //IL_9ec1: Unknown result type (might be due to invalid IL or missing references) //IL_9ec7: Unknown result type (might be due to invalid IL or missing references) //IL_9ed1: Unknown result type (might be due to invalid IL or missing references) //IL_9ed7: Unknown result type (might be due to invalid IL or missing references) //IL_9edc: Unknown result type (might be due to invalid IL or missing references) //IL_9ee2: Unknown result type (might be due to invalid IL or missing references) //IL_9ee7: Unknown result type (might be due to invalid IL or missing references) //IL_9eec: Unknown result type (might be due to invalid IL or missing references) //IL_9ef2: Unknown result type (might be due to invalid IL or missing references) //IL_9efc: Unknown result type (might be due to invalid IL or missing references) //IL_9f01: Unknown result type (might be due to invalid IL or missing references) //IL_9f0c: Unknown result type (might be due to invalid IL or missing references) //IL_9f12: Unknown result type (might be due to invalid IL or missing references) //IL_9f17: Unknown result type (might be due to invalid IL or missing references) //IL_9f1d: Unknown result type (might be due to invalid IL or missing references) //IL_9f22: Unknown result type (might be due to invalid IL or missing references) //IL_9f28: Unknown result type (might be due to invalid IL or missing references) //IL_9f32: Unknown result type (might be due to invalid IL or missing references) //IL_9f37: Unknown result type (might be due to invalid IL or missing references) //IL_9f3d: Unknown result type (might be due to invalid IL or missing references) //IL_9f47: Unknown result type (might be due to invalid IL or missing references) //IL_9f4d: Unknown result type (might be due to invalid IL or missing references) //IL_9f52: Unknown result type (might be due to invalid IL or missing references) //IL_9f58: Unknown result type (might be due to invalid IL or missing references) //IL_9f5d: Unknown result type (might be due to invalid IL or missing references) //IL_9f62: Unknown result type (might be due to invalid IL or missing references) //IL_9f68: Unknown result type (might be due to invalid IL or missing references) //IL_9f72: Unknown result type (might be due to invalid IL or missing references) //IL_9f77: Unknown result type (might be due to invalid IL or missing references) //IL_9f7c: Unknown result type (might be due to invalid IL or missing references) //IL_9f8c: Unknown result type (might be due to invalid IL or missing references) //IL_9f92: Unknown result type (might be due to invalid IL or missing references) //IL_9f97: Unknown result type (might be due to invalid IL or missing references) //IL_9f9d: Unknown result type (might be due to invalid IL or missing references) //IL_9fa2: Unknown result type (might be due to invalid IL or missing references) //IL_9fa8: Unknown result type (might be due to invalid IL or missing references) //IL_9fb2: Unknown result type (might be due to invalid IL or missing references) //IL_9fb7: Unknown result type (might be due to invalid IL or missing references) //IL_9fbd: Unknown result type (might be due to invalid IL or missing references) //IL_9fc7: Unknown result type (might be due to invalid IL or missing references) //IL_9fcd: Unknown result type (might be due to invalid IL or missing references) //IL_9fd2: Unknown result type (might be due to invalid IL or missing references) //IL_9fd8: Unknown result type (might be due to invalid IL or missing references) //IL_9fdd: Unknown result type (might be due to invalid IL or missing references) //IL_9fe2: Unknown result type (might be due to invalid IL or missing references) //IL_9fe8: Unknown result type (might be due to invalid IL or missing references) //IL_9ff2: Unknown result type (might be due to invalid IL or missing references) //IL_9ff7: Unknown result type (might be due to invalid IL or missing references) //IL_a002: Unknown result type (might be due to invalid IL or missing references) //IL_a008: Unknown result type (might be due to invalid IL or missing references) //IL_a00d: Unknown result type (might be due to invalid IL or missing references) //IL_a013: Unknown result type (might be due to invalid IL or missing references) //IL_a018: Unknown result type (might be due to invalid IL or missing references) //IL_a01e: Unknown result type (might be due to invalid IL or missing references) //IL_a028: Unknown result type (might be due to invalid IL or missing references) //IL_a02d: Unknown result type (might be due to invalid IL or missing references) //IL_a033: Unknown result type (might be due to invalid IL or missing references) //IL_a03d: Unknown result type (might be due to invalid IL or missing references) //IL_a043: Unknown result type (might be due to invalid IL or missing references) //IL_a048: Unknown result type (might be due to invalid IL or missing references) //IL_a04e: Unknown result type (might be due to invalid IL or missing references) //IL_a053: Unknown result type (might be due to invalid IL or missing references) //IL_a058: Unknown result type (might be due to invalid IL or missing references) //IL_a05e: Unknown result type (might be due to invalid IL or missing references) //IL_a068: Unknown result type (might be due to invalid IL or missing references) //IL_a06d: Unknown result type (might be due to invalid IL or missing references) //IL_a072: Unknown result type (might be due to invalid IL or missing references) //IL_a082: Unknown result type (might be due to invalid IL or missing references) //IL_a088: Unknown result type (might be due to invalid IL or missing references) //IL_a08d: Unknown result type (might be due to invalid IL or missing references) //IL_a093: Unknown result type (might be due to invalid IL or missing references) //IL_a098: Unknown result type (might be due to invalid IL or missing references) //IL_a09e: Unknown result type (might be due to invalid IL or missing references) //IL_a0a8: Unknown result type (might be due to invalid IL or missing references) //IL_a0ad: Unknown result type (might be due to invalid IL or missing references) //IL_a0b3: Unknown result type (might be due to invalid IL or missing references) //IL_a0bd: Unknown result type (might be due to invalid IL or missing references) //IL_a0c3: Unknown result type (might be due to invalid IL or missing references) //IL_a0c8: Unknown result type (might be due to invalid IL or missing references) //IL_a0ce: Unknown result type (might be due to invalid IL or missing references) //IL_a0d3: Unknown result type (might be due to invalid IL or missing references) //IL_a0d8: Unknown result type (might be due to invalid IL or missing references) //IL_a0e3: Unknown result type (might be due to invalid IL or missing references) //IL_a0e9: Unknown result type (might be due to invalid IL or missing references) //IL_a0ee: Unknown result type (might be due to invalid IL or missing references) //IL_a0f4: Unknown result type (might be due to invalid IL or missing references) //IL_a0f9: Unknown result type (might be due to invalid IL or missing references) //IL_a0ff: Unknown result type (might be due to invalid IL or missing references) //IL_a109: Unknown result type (might be due to invalid IL or missing references) //IL_a10e: Unknown result type (might be due to invalid IL or missing references) //IL_a114: Unknown result type (might be due to invalid IL or missing references) //IL_a11e: Unknown result type (might be due to invalid IL or missing references) //IL_a124: Unknown result type (might be due to invalid IL or missing references) //IL_a129: Unknown result type (might be due to invalid IL or missing references) //IL_a12f: Unknown result type (might be due to invalid IL or missing references) //IL_a134: Unknown result type (might be due to invalid IL or missing references) //IL_a139: Unknown result type (might be due to invalid IL or missing references) //IL_a13e: Unknown result type (might be due to invalid IL or missing references) //IL_a14e: Unknown result type (might be due to invalid IL or missing references) //IL_a154: Unknown result type (might be due to invalid IL or missing references) //IL_a159: Unknown result type (might be due to invalid IL or missing references) //IL_a15f: Unknown result type (might be due to invalid IL or missing references) //IL_a164: Unknown result type (might be due to invalid IL or missing references) //IL_a16a: Unknown result type (might be due to invalid IL or missing references) //IL_a174: Unknown result type (might be due to invalid IL or missing references) //IL_a179: Unknown result type (might be due to invalid IL or missing references) //IL_a17f: Unknown result type (might be due to invalid IL or missing references) //IL_a189: Unknown result type (might be due to invalid IL or missing references) //IL_a18f: Unknown result type (might be due to invalid IL or missing references) //IL_a194: Unknown result type (might be due to invalid IL or missing references) //IL_a19a: Unknown result type (might be due to invalid IL or missing references) //IL_a19f: Unknown result type (might be due to invalid IL or missing references) //IL_a1a4: Unknown result type (might be due to invalid IL or missing references) //IL_a1aa: Unknown result type (might be due to invalid IL or missing references) //IL_a1b4: Unknown result type (might be due to invalid IL or missing references) //IL_a1b9: Unknown result type (might be due to invalid IL or missing references) //IL_a1c4: Unknown result type (might be due to invalid IL or missing references) //IL_a1ca: Unknown result type (might be due to invalid IL or missing references) //IL_a1cf: Unknown result type (might be due to invalid IL or missing references) //IL_a1d5: Unknown result type (might be due to invalid IL or missing references) //IL_a1da: Unknown result type (might be due to invalid IL or missing references) //IL_a1e0: Unknown result type (might be due to invalid IL or missing references) //IL_a1ea: Unknown result type (might be due to invalid IL or missing references) //IL_a1ef: Unknown result type (might be due to invalid IL or missing references) //IL_a1f5: Unknown result type (might be due to invalid IL or missing references) //IL_a1ff: Unknown result type (might be due to invalid IL or missing references) //IL_a205: Unknown result type (might be due to invalid IL or missing references) //IL_a20a: Unknown result type (might be due to invalid IL or missing references) //IL_a210: Unknown result type (might be due to invalid IL or missing references) //IL_a215: Unknown result type (might be due to invalid IL or missing references) //IL_a21a: Unknown result type (might be due to invalid IL or missing references) //IL_a220: Unknown result type (might be due to invalid IL or missing references) //IL_a22a: Unknown result type (might be due to invalid IL or missing references) //IL_a22f: Unknown result type (might be due to invalid IL or missing references) //IL_a234: Unknown result type (might be due to invalid IL or missing references) //IL_a244: Unknown result type (might be due to invalid IL or missing references) //IL_a24a: Unknown result type (might be due to invalid IL or missing references) //IL_a24f: Unknown result type (might be due to invalid IL or missing references) //IL_a255: Unknown result type (might be due to invalid IL or missing references) //IL_a25a: Unknown result type (might be due to invalid IL or missing references) //IL_a260: Unknown result type (might be due to invalid IL or missing references) //IL_a26a: Unknown result type (might be due to invalid IL or missing references) //IL_a26f: Unknown result type (might be due to invalid IL or missing references) //IL_a275: Unknown result type (might be due to invalid IL or missing references) //IL_a27f: Unknown result type (might be due to invalid IL or missing references) //IL_a285: Unknown result type (might be due to invalid IL or missing references) //IL_a28a: Unknown result type (might be due to invalid IL or missing references) //IL_a290: Unknown result type (might be due to invalid IL or missing references) //IL_a295: Unknown result type (might be due to invalid IL or missing references) //IL_a29a: Unknown result type (might be due to invalid IL or missing references) //IL_a2a0: Unknown result type (might be due to invalid IL or missing references) //IL_a2aa: Unknown result type (might be due to invalid IL or missing references) //IL_a2af: Unknown result type (might be due to invalid IL or missing references) //IL_a2ba: Unknown result type (might be due to invalid IL or missing references) //IL_a2c0: Unknown result type (might be due to invalid IL or missing references) //IL_a2c5: Unknown result type (might be due to invalid IL or missing references) //IL_a2cb: Unknown result type (might be due to invalid IL or missing references) //IL_a2d0: Unknown result type (might be due to invalid IL or missing references) //IL_a2d6: Unknown result type (might be due to invalid IL or missing references) //IL_a2e0: Unknown result type (might be due to invalid IL or missing references) //IL_a2e5: Unknown result type (might be due to invalid IL or missing references) //IL_a2eb: Unknown result type (might be due to invalid IL or missing references) //IL_a2f5: Unknown result type (might be due to invalid IL or missing references) //IL_a2fb: Unknown result type (might be due to invalid IL or missing references) //IL_a300: Unknown result type (might be due to invalid IL or missing references) //IL_a306: Unknown result type (might be due to invalid IL or missing references) //IL_a30b: Unknown result type (might be due to invalid IL or missing references) //IL_a310: Unknown result type (might be due to invalid IL or missing references) //IL_a316: Unknown result type (might be due to invalid IL or missing references) //IL_a320: Unknown result type (might be due to invalid IL or missing references) //IL_a325: Unknown result type (might be due to invalid IL or missing references) //IL_a32a: Unknown result type (might be due to invalid IL or missing references) //IL_a33a: Unknown result type (might be due to invalid IL or missing references) //IL_a340: Unknown result type (might be due to invalid IL or missing references) //IL_a345: Unknown result type (might be due to invalid IL or missing references) //IL_a34b: Unknown result type (might be due to invalid IL or missing references) //IL_a350: Unknown result type (might be due to invalid IL or missing references) //IL_a356: Unknown result type (might be due to invalid IL or missing references) //IL_a360: Unknown result type (might be due to invalid IL or missing references) //IL_a365: Unknown result type (might be due to invalid IL or missing references) //IL_a36b: Unknown result type (might be due to invalid IL or missing references) //IL_a375: Unknown result type (might be due to invalid IL or missing references) //IL_a37b: Unknown result type (might be due to invalid IL or missing references) //IL_a380: Unknown result type (might be due to invalid IL or missing references) //IL_a386: Unknown result type (might be due to invalid IL or missing references) //IL_a38b: Unknown result type (might be due to invalid IL or missing references) //IL_a390: Unknown result type (might be due to invalid IL or missing references) //IL_a396: Unknown result type (might be due to invalid IL or missing references) //IL_a3a0: Unknown result type (might be due to invalid IL or missing references) //IL_a3a5: Unknown result type (might be due to invalid IL or missing references) //IL_a3b0: Unknown result type (might be due to invalid IL or missing references) //IL_a3b6: Unknown result type (might be due to invalid IL or missing references) //IL_a3bb: Unknown result type (might be due to invalid IL or missing references) //IL_a3c1: Unknown result type (might be due to invalid IL or missing references) //IL_a3c6: Unknown result type (might be due to invalid IL or missing references) //IL_a3cc: Unknown result type (might be due to invalid IL or missing references) //IL_a3d6: Unknown result type (might be due to invalid IL or missing references) //IL_a3db: Unknown result type (might be due to invalid IL or missing references) //IL_a3e1: Unknown result type (might be due to invalid IL or missing references) //IL_a3eb: Unknown result type (might be due to invalid IL or missing references) //IL_a3f1: Unknown result type (might be due to invalid IL or missing references) //IL_a3f6: Unknown result type (might be due to invalid IL or missing references) //IL_a3fc: Unknown result type (might be due to invalid IL or missing references) //IL_a401: Unknown result type (might be due to invalid IL or missing references) //IL_a406: Unknown result type (might be due to invalid IL or missing references) //IL_a40c: Unknown result type (might be due to invalid IL or missing references) //IL_a416: Unknown result type (might be due to invalid IL or missing references) //IL_a41b: Unknown result type (might be due to invalid IL or missing references) //IL_a420: Unknown result type (might be due to invalid IL or missing references) //IL_a430: Unknown result type (might be due to invalid IL or missing references) //IL_a436: Unknown result type (might be due to invalid IL or missing references) //IL_a43b: Unknown result type (might be due to invalid IL or missing references) //IL_a441: Unknown result type (might be due to invalid IL or missing references) //IL_a446: Unknown result type (might be due to invalid IL or missing references) //IL_a44c: Unknown result type (might be due to invalid IL or missing references) //IL_a456: Unknown result type (might be due to invalid IL or missing references) //IL_a45b: Unknown result type (might be due to invalid IL or missing references) //IL_a461: Unknown result type (might be due to invalid IL or missing references) //IL_a46b: Unknown result type (might be due to invalid IL or missing references) //IL_a471: Unknown result type (might be due to invalid IL or missing references) //IL_a476: Unknown result type (might be due to invalid IL or missing references) //IL_a47c: Unknown result type (might be due to invalid IL or missing references) //IL_a481: Unknown result type (might be due to invalid IL or missing references) //IL_a486: Unknown result type (might be due to invalid IL or missing references) //IL_a48c: Unknown result type (might be due to invalid IL or missing references) //IL_a496: Unknown result type (might be due to invalid IL or missing references) //IL_a49b: Unknown result type (might be due to invalid IL or missing references) //IL_a4a6: Unknown result type (might be due to invalid IL or missing references) //IL_a4ac: Unknown result type (might be due to invalid IL or missing references) //IL_a4b1: Unknown result type (might be due to invalid IL or missing references) //IL_a4b7: Unknown result type (might be due to invalid IL or missing references) //IL_a4bc: Unknown result type (might be due to invalid IL or missing references) //IL_a4c2: Unknown result type (might be due to invalid IL or missing references) //IL_a4cc: Unknown result type (might be due to invalid IL or missing references) //IL_a4d1: Unknown result type (might be due to invalid IL or missing references) //IL_a4d7: Unknown result type (might be due to invalid IL or missing references) //IL_a4e1: Unknown result type (might be due to invalid IL or missing references) //IL_a4e7: Unknown result type (might be due to invalid IL or missing references) //IL_a4ec: Unknown result type (might be due to invalid IL or missing references) //IL_a4f2: Unknown result type (might be due to invalid IL or missing references) //IL_a4f7: Unknown result type (might be due to invalid IL or missing references) //IL_a4fc: Unknown result type (might be due to invalid IL or missing references) //IL_a502: Unknown result type (might be due to invalid IL or missing references) //IL_a50c: Unknown result type (might be due to invalid IL or missing references) //IL_a511: Unknown result type (might be due to invalid IL or missing references) //IL_a516: Unknown result type (might be due to invalid IL or missing references) //IL_a526: Unknown result type (might be due to invalid IL or missing references) //IL_a52c: Unknown result type (might be due to invalid IL or missing references) //IL_a531: Unknown result type (might be due to invalid IL or missing references) //IL_a537: Unknown result type (might be due to invalid IL or missing references) //IL_a53c: Unknown result type (might be due to invalid IL or missing references) //IL_a542: Unknown result type (might be due to invalid IL or missing references) //IL_a54c: Unknown result type (might be due to invalid IL or missing references) //IL_a551: Unknown result type (might be due to invalid IL or missing references) //IL_a557: Unknown result type (might be due to invalid IL or missing references) //IL_a561: Unknown result type (might be due to invalid IL or missing references) //IL_a567: Unknown result type (might be due to invalid IL or missing references) //IL_a56c: Unknown result type (might be due to invalid IL or missing references) //IL_a572: Unknown result type (might be due to invalid IL or missing references) //IL_a577: Unknown result type (might be due to invalid IL or missing references) //IL_a57c: Unknown result type (might be due to invalid IL or missing references) //IL_a582: Unknown result type (might be due to invalid IL or missing references) //IL_a58c: Unknown result type (might be due to invalid IL or missing references) //IL_a591: Unknown result type (might be due to invalid IL or missing references) //IL_a59c: Unknown result type (might be due to invalid IL or missing references) //IL_a5a2: Unknown result type (might be due to invalid IL or missing references) //IL_a5a7: Unknown result type (might be due to invalid IL or missing references) //IL_a5ad: Unknown result type (might be due to invalid IL or missing references) //IL_a5b2: Unknown result type (might be due to invalid IL or missing references) //IL_a5b8: Unknown result type (might be due to invalid IL or missing references) //IL_a5c2: Unknown result type (might be due to invalid IL or missing references) //IL_a5c7: Unknown result type (might be due to invalid IL or missing references) //IL_a5cd: Unknown result type (might be due to invalid IL or missing references) //IL_a5d7: Unknown result type (might be due to invalid IL or missing references) //IL_a5dd: Unknown result type (might be due to invalid IL or missing references) //IL_a5e2: Unknown result type (might be due to invalid IL or missing references) //IL_a5e8: Unknown result type (might be due to invalid IL or missing references) //IL_a5ed: Unknown result type (might be due to invalid IL or missing references) //IL_a5f2: Unknown result type (might be due to invalid IL or missing references) //IL_a5f8: Unknown result type (might be due to invalid IL or missing references) //IL_a602: Unknown result type (might be due to invalid IL or missing references) //IL_a607: Unknown result type (might be due to invalid IL or missing references) //IL_a60c: Unknown result type (might be due to invalid IL or missing references) //IL_a61c: Unknown result type (might be due to invalid IL or missing references) //IL_a622: Unknown result type (might be due to invalid IL or missing references) //IL_a627: Unknown result type (might be due to invalid IL or missing references) //IL_a62d: Unknown result type (might be due to invalid IL or missing references) //IL_a632: Unknown result type (might be due to invalid IL or missing references) //IL_a638: Unknown result type (might be due to invalid IL or missing references) //IL_a642: Unknown result type (might be due to invalid IL or missing references) //IL_a647: Unknown result type (might be due to invalid IL or missing references) //IL_a64d: Unknown result type (might be due to invalid IL or missing references) //IL_a657: Unknown result type (might be due to invalid IL or missing references) //IL_a65d: Unknown result type (might be due to invalid IL or missing references) //IL_a662: Unknown result type (might be due to invalid IL or missing references) //IL_a668: Unknown result type (might be due to invalid IL or missing references) //IL_a66d: Unknown result type (might be due to invalid IL or missing references) //IL_a672: Unknown result type (might be due to invalid IL or missing references) //IL_a678: Unknown result type (might be due to invalid IL or missing references) //IL_a682: Unknown result type (might be due to invalid IL or missing references) //IL_a687: Unknown result type (might be due to invalid IL or missing references) //IL_a692: Unknown result type (might be due to invalid IL or missing references) //IL_a698: Unknown result type (might be due to invalid IL or missing references) //IL_a69d: Unknown result type (might be due to invalid IL or missing references) //IL_a6a3: Unknown result type (might be due to invalid IL or missing references) //IL_a6a8: Unknown result type (might be due to invalid IL or missing references) //IL_a6ae: Unknown result type (might be due to invalid IL or missing references) //IL_a6b8: Unknown result type (might be due to invalid IL or missing references) //IL_a6bd: Unknown result type (might be due to invalid IL or missing references) //IL_a6c3: Unknown result type (might be due to invalid IL or missing references) //IL_a6cd: Unknown result type (might be due to invalid IL or missing references) //IL_a6d3: Unknown result type (might be due to invalid IL or missing references) //IL_a6d8: Unknown result type (might be due to invalid IL or missing references) //IL_a6de: Unknown result type (might be due to invalid IL or missing references) //IL_a6e3: Unknown result type (might be due to invalid IL or missing references) //IL_a6e8: Unknown result type (might be due to invalid IL or missing references) //IL_a6ee: Unknown result type (might be due to invalid IL or missing references) //IL_a6f8: Unknown result type (might be due to invalid IL or missing references) //IL_a6fd: Unknown result type (might be due to invalid IL or missing references) //IL_a702: Unknown result type (might be due to invalid IL or missing references) //IL_a712: Unknown result type (might be due to invalid IL or missing references) //IL_a718: Unknown result type (might be due to invalid IL or missing references) //IL_a71d: Unknown result type (might be due to invalid IL or missing references) //IL_a723: Unknown result type (might be due to invalid IL or missing references) //IL_a728: Unknown result type (might be due to invalid IL or missing references) //IL_a72e: Unknown result type (might be due to invalid IL or missing references) //IL_a738: Unknown result type (might be due to invalid IL or missing references) //IL_a73d: Unknown result type (might be due to invalid IL or missing references) //IL_a743: Unknown result type (might be due to invalid IL or missing references) //IL_a74d: Unknown result type (might be due to invalid IL or missing references) //IL_a753: Unknown result type (might be due to invalid IL or missing references) //IL_a758: Unknown result type (might be due to invalid IL or missing references) //IL_a75e: Unknown result type (might be due to invalid IL or missing references) //IL_a763: Unknown result type (might be due to invalid IL or missing references) //IL_a768: Unknown result type (might be due to invalid IL or missing references) //IL_a76e: Unknown result type (might be due to invalid IL or missing references) //IL_a778: Unknown result type (might be due to invalid IL or missing references) //IL_a77d: Unknown result type (might be due to invalid IL or missing references) //IL_a788: Unknown result type (might be due to invalid IL or missing references) //IL_a78e: Unknown result type (might be due to invalid IL or missing references) //IL_a793: Unknown result type (might be due to invalid IL or missing references) //IL_a799: Unknown result type (might be due to invalid IL or missing references) //IL_a79e: Unknown result type (might be due to invalid IL or missing references) //IL_a7a4: Unknown result type (might be due to invalid IL or missing references) //IL_a7ae: Unknown result type (might be due to invalid IL or missing references) //IL_a7b3: Unknown result type (might be due to invalid IL or missing references) //IL_a7b9: Unknown result type (might be due to invalid IL or missing references) //IL_a7c3: Unknown result type (might be due to invalid IL or missing references) //IL_a7c9: Unknown result type (might be due to invalid IL or missing references) //IL_a7ce: Unknown result type (might be due to invalid IL or missing references) //IL_a7d4: Unknown result type (might be due to invalid IL or missing references) //IL_a7d9: Unknown result type (might be due to invalid IL or missing references) //IL_a7de: Unknown result type (might be due to invalid IL or missing references) //IL_a7e4: Unknown result type (might be due to invalid IL or missing references) //IL_a7ee: Unknown result type (might be due to invalid IL or missing references) //IL_a7f3: Unknown result type (might be due to invalid IL or missing references) //IL_a7f8: Unknown result type (might be due to invalid IL or missing references) if (!showMainRaysOnly && ledgeSwitchingDetectors.showSecondLedgeSwitchingRays) { Debug.DrawLine(((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.585f - ledgeSwitchSecondWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.585f - ledgeSwitchSecondWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.585f - ledgeSwitchSecondWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.585f - ledgeSwitchSecondWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 - ledgeSwitchSecondWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 - ledgeSwitchSecondWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 - ledgeSwitchSecondWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 - ledgeSwitchSecondWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 - ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 - ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 - ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 - ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.585f + ledgeSwitchSecondWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.585f + ledgeSwitchSecondWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.585f + ledgeSwitchSecondWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.585f + ledgeSwitchSecondWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + ledgeSwitchSecondWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchSecondWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + ledgeSwitchSecondWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchSecondWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 - ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 - ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 - ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 - ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2f - surfaceDetectorWidth2, Color.cyan); Debug.DrawLine(((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, Color.blue); Debug.DrawLine(((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2, Color.cyan); Debug.DrawLine(((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, Color.blue); Debug.DrawLine(((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2, Color.cyan); Debug.DrawLine(((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, Color.blue); Debug.DrawLine(((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - rightWidth * 2f - surfaceDetectorWidth2, Color.cyan); Debug.DrawLine(((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 2.2f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.5f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, Color.blue); Debug.DrawLine(((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2, Color.cyan); Debug.DrawLine(((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, Color.blue); Debug.DrawLine(((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2f + surfaceDetectorWidth2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, Color.blue); Debug.DrawLine(((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, Color.blue); Debug.DrawLine(((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, Color.blue); Debug.DrawLine(((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + rightWidth * 2f + surfaceDetectorWidth2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 2.2f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.5f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, Color.blue); Debug.DrawLine(((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f - ledgeSwitchSecondWidthBack, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.375f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.75f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.125f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.45f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.8f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.1f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.405f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.375f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.75f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.125f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.45f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.8f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.1f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.405f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.375f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.75f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.125f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.45f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.8f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.1f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.405f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.375f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.75f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.125f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.45f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.8f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.1f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.405f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f + ledgeSwitchSecondWidthForward, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.375f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.75f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.125f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.45f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.8f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.1f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.405f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.375f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.75f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.125f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.45f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.8f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.1f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.405f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.375f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.75f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.125f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.45f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.8f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.1f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.405f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.375f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.75f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.125f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.45f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.8f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.1f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.405f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2), Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2), Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2), Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2), Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2), Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2), Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2), Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2), Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2), Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2), Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, Color.blue); } } private void DrawThirdLedgeSwitchingDetectors() { //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_002a: Unknown result type (might be due to invalid IL or missing references) //IL_002f: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_006a: Unknown result type (might be due to invalid IL or missing references) //IL_006f: Unknown result type (might be due to invalid IL or missing references) //IL_007a: Unknown result type (might be due to invalid IL or missing references) //IL_0080: Unknown result type (might be due to invalid IL or missing references) //IL_0085: Unknown result type (might be due to invalid IL or missing references) //IL_008b: Unknown result type (might be due to invalid IL or missing references) //IL_0095: Unknown result type (might be due to invalid IL or missing references) //IL_009a: Unknown result type (might be due to invalid IL or missing references) //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_00a5: Unknown result type (might be due to invalid IL or missing references) //IL_00ab: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) //IL_00ba: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_00ca: Unknown result type (might be due to invalid IL or missing references) //IL_00da: Unknown result type (might be due to invalid IL or missing references) //IL_00e0: Unknown result type (might be due to invalid IL or missing references) //IL_00e5: Unknown result type (might be due to invalid IL or missing references) //IL_00eb: Unknown result type (might be due to invalid IL or missing references) //IL_00f5: Unknown result type (might be due to invalid IL or missing references) //IL_00fa: Unknown result type (might be due to invalid IL or missing references) //IL_0100: Unknown result type (might be due to invalid IL or missing references) //IL_0105: Unknown result type (might be due to invalid IL or missing references) //IL_010b: Unknown result type (might be due to invalid IL or missing references) //IL_0115: Unknown result type (might be due to invalid IL or missing references) //IL_011a: Unknown result type (might be due to invalid IL or missing references) //IL_0120: Unknown result type (might be due to invalid IL or missing references) //IL_0125: Unknown result type (might be due to invalid IL or missing references) //IL_0130: Unknown result type (might be due to invalid IL or missing references) //IL_0136: Unknown result type (might be due to invalid IL or missing references) //IL_013b: Unknown result type (might be due to invalid IL or missing references) //IL_0141: Unknown result type (might be due to invalid IL or missing references) //IL_014b: Unknown result type (might be due to invalid IL or missing references) //IL_0150: Unknown result type (might be due to invalid IL or missing references) //IL_0156: Unknown result type (might be due to invalid IL or missing references) //IL_015b: Unknown result type (might be due to invalid IL or missing references) //IL_0161: Unknown result type (might be due to invalid IL or missing references) //IL_016b: Unknown result type (might be due to invalid IL or missing references) //IL_0170: Unknown result type (might be due to invalid IL or missing references) //IL_0176: Unknown result type (might be due to invalid IL or missing references) //IL_017b: Unknown result type (might be due to invalid IL or missing references) //IL_0180: Unknown result type (might be due to invalid IL or missing references) //IL_0190: Unknown result type (might be due to invalid IL or missing references) //IL_0196: Unknown result type (might be due to invalid IL or missing references) //IL_019b: Unknown result type (might be due to invalid IL or missing references) //IL_01a1: Unknown result type (might be due to invalid IL or missing references) //IL_01ab: Unknown result type (might be due to invalid IL or missing references) //IL_01b0: Unknown result type (might be due to invalid IL or missing references) //IL_01b6: Unknown result type (might be due to invalid IL or missing references) //IL_01bb: Unknown result type (might be due to invalid IL or missing references) //IL_01c1: Unknown result type (might be due to invalid IL or missing references) //IL_01cb: Unknown result type (might be due to invalid IL or missing references) //IL_01d0: Unknown result type (might be due to invalid IL or missing references) //IL_01d6: Unknown result type (might be due to invalid IL or missing references) //IL_01db: Unknown result type (might be due to invalid IL or missing references) //IL_01e6: Unknown result type (might be due to invalid IL or missing references) //IL_01ec: Unknown result type (might be due to invalid IL or missing references) //IL_01f1: Unknown result type (might be due to invalid IL or missing references) //IL_01f7: Unknown result type (might be due to invalid IL or missing references) //IL_0201: Unknown result type (might be due to invalid IL or missing references) //IL_0206: Unknown result type (might be due to invalid IL or missing references) //IL_020c: Unknown result type (might be due to invalid IL or missing references) //IL_0211: Unknown result type (might be due to invalid IL or missing references) //IL_0217: Unknown result type (might be due to invalid IL or missing references) //IL_0221: Unknown result type (might be due to invalid IL or missing references) //IL_0226: Unknown result type (might be due to invalid IL or missing references) //IL_022c: Unknown result type (might be due to invalid IL or missing references) //IL_0231: Unknown result type (might be due to invalid IL or missing references) //IL_0236: Unknown result type (might be due to invalid IL or missing references) //IL_0246: Unknown result type (might be due to invalid IL or missing references) //IL_024c: Unknown result type (might be due to invalid IL or missing references) //IL_0251: Unknown result type (might be due to invalid IL or missing references) //IL_0257: Unknown result type (might be due to invalid IL or missing references) //IL_0261: Unknown result type (might be due to invalid IL or missing references) //IL_0266: Unknown result type (might be due to invalid IL or missing references) //IL_026c: Unknown result type (might be due to invalid IL or missing references) //IL_0271: Unknown result type (might be due to invalid IL or missing references) //IL_0277: Unknown result type (might be due to invalid IL or missing references) //IL_0281: Unknown result type (might be due to invalid IL or missing references) //IL_0286: Unknown result type (might be due to invalid IL or missing references) //IL_028c: Unknown result type (might be due to invalid IL or missing references) //IL_0291: Unknown result type (might be due to invalid IL or missing references) //IL_029c: Unknown result type (might be due to invalid IL or missing references) //IL_02a2: Unknown result type (might be due to invalid IL or missing references) //IL_02a7: Unknown result type (might be due to invalid IL or missing references) //IL_02ad: Unknown result type (might be due to invalid IL or missing references) //IL_02b7: Unknown result type (might be due to invalid IL or missing references) //IL_02bc: Unknown result type (might be due to invalid IL or missing references) //IL_02c2: Unknown result type (might be due to invalid IL or missing references) //IL_02c7: Unknown result type (might be due to invalid IL or missing references) //IL_02cd: Unknown result type (might be due to invalid IL or missing references) //IL_02d7: Unknown result type (might be due to invalid IL or missing references) //IL_02dc: Unknown result type (might be due to invalid IL or missing references) //IL_02e2: Unknown result type (might be due to invalid IL or missing references) //IL_02e7: Unknown result type (might be due to invalid IL or missing references) //IL_02ec: Unknown result type (might be due to invalid IL or missing references) //IL_02fc: Unknown result type (might be due to invalid IL or missing references) //IL_0302: Unknown result type (might be due to invalid IL or missing references) //IL_0307: Unknown result type (might be due to invalid IL or missing references) //IL_030d: Unknown result type (might be due to invalid IL or missing references) //IL_0317: Unknown result type (might be due to invalid IL or missing references) //IL_031c: Unknown result type (might be due to invalid IL or missing references) //IL_0322: Unknown result type (might be due to invalid IL or missing references) //IL_0327: Unknown result type (might be due to invalid IL or missing references) //IL_032d: Unknown result type (might be due to invalid IL or missing references) //IL_0337: Unknown result type (might be due to invalid IL or missing references) //IL_033c: Unknown result type (might be due to invalid IL or missing references) //IL_0342: Unknown result type (might be due to invalid IL or missing references) //IL_0347: Unknown result type (might be due to invalid IL or missing references) //IL_0352: Unknown result type (might be due to invalid IL or missing references) //IL_0358: Unknown result type (might be due to invalid IL or missing references) //IL_035d: Unknown result type (might be due to invalid IL or missing references) //IL_0363: Unknown result type (might be due to invalid IL or missing references) //IL_036d: Unknown result type (might be due to invalid IL or missing references) //IL_0372: Unknown result type (might be due to invalid IL or missing references) //IL_0378: Unknown result type (might be due to invalid IL or missing references) //IL_037d: Unknown result type (might be due to invalid IL or missing references) //IL_0383: Unknown result type (might be due to invalid IL or missing references) //IL_038d: Unknown result type (might be due to invalid IL or missing references) //IL_0392: Unknown result type (might be due to invalid IL or missing references) //IL_0398: Unknown result type (might be due to invalid IL or missing references) //IL_039d: Unknown result type (might be due to invalid IL or missing references) //IL_03a2: Unknown result type (might be due to invalid IL or missing references) //IL_03b2: Unknown result type (might be due to invalid IL or missing references) //IL_03b8: Unknown result type (might be due to invalid IL or missing references) //IL_03bd: Unknown result type (might be due to invalid IL or missing references) //IL_03c3: Unknown result type (might be due to invalid IL or missing references) //IL_03cd: Unknown result type (might be due to invalid IL or missing references) //IL_03d2: Unknown result type (might be due to invalid IL or missing references) //IL_03d8: Unknown result type (might be due to invalid IL or missing references) //IL_03dd: Unknown result type (might be due to invalid IL or missing references) //IL_03e3: Unknown result type (might be due to invalid IL or missing references) //IL_03ed: Unknown result type (might be due to invalid IL or missing references) //IL_03f2: Unknown result type (might be due to invalid IL or missing references) //IL_03f8: Unknown result type (might be due to invalid IL or missing references) //IL_03fd: Unknown result type (might be due to invalid IL or missing references) //IL_0408: Unknown result type (might be due to invalid IL or missing references) //IL_040e: Unknown result type (might be due to invalid IL or missing references) //IL_0413: Unknown result type (might be due to invalid IL or missing references) //IL_0419: Unknown result type (might be due to invalid IL or missing references) //IL_0423: Unknown result type (might be due to invalid IL or missing references) //IL_0428: Unknown result type (might be due to invalid IL or missing references) //IL_042e: Unknown result type (might be due to invalid IL or missing references) //IL_0433: Unknown result type (might be due to invalid IL or missing references) //IL_0439: Unknown result type (might be due to invalid IL or missing references) //IL_0443: Unknown result type (might be due to invalid IL or missing references) //IL_0448: Unknown result type (might be due to invalid IL or missing references) //IL_044e: Unknown result type (might be due to invalid IL or missing references) //IL_0453: Unknown result type (might be due to invalid IL or missing references) //IL_0458: Unknown result type (might be due to invalid IL or missing references) //IL_0468: Unknown result type (might be due to invalid IL or missing references) //IL_046e: Unknown result type (might be due to invalid IL or missing references) //IL_0473: Unknown result type (might be due to invalid IL or missing references) //IL_0479: Unknown result type (might be due to invalid IL or missing references) //IL_047e: Unknown result type (might be due to invalid IL or missing references) //IL_0484: Unknown result type (might be due to invalid IL or missing references) //IL_048e: Unknown result type (might be due to invalid IL or missing references) //IL_0493: Unknown result type (might be due to invalid IL or missing references) //IL_0499: Unknown result type (might be due to invalid IL or missing references) //IL_049e: Unknown result type (might be due to invalid IL or missing references) //IL_04a9: Unknown result type (might be due to invalid IL or missing references) //IL_04af: Unknown result type (might be due to invalid IL or missing references) //IL_04b4: Unknown result type (might be due to invalid IL or missing references) //IL_04ba: Unknown result type (might be due to invalid IL or missing references) //IL_04bf: Unknown result type (might be due to invalid IL or missing references) //IL_04c5: Unknown result type (might be due to invalid IL or missing references) //IL_04cf: Unknown result type (might be due to invalid IL or missing references) //IL_04d4: Unknown result type (might be due to invalid IL or missing references) //IL_04da: Unknown result type (might be due to invalid IL or missing references) //IL_04df: Unknown result type (might be due to invalid IL or missing references) //IL_04e4: Unknown result type (might be due to invalid IL or missing references) //IL_04f4: Unknown result type (might be due to invalid IL or missing references) //IL_04fa: Unknown result type (might be due to invalid IL or missing references) //IL_04ff: Unknown result type (might be due to invalid IL or missing references) //IL_0505: Unknown result type (might be due to invalid IL or missing references) //IL_050a: Unknown result type (might be due to invalid IL or missing references) //IL_0510: Unknown result type (might be due to invalid IL or missing references) //IL_051a: Unknown result type (might be due to invalid IL or missing references) //IL_051f: Unknown result type (might be due to invalid IL or missing references) //IL_0525: Unknown result type (might be due to invalid IL or missing references) //IL_052a: Unknown result type (might be due to invalid IL or missing references) //IL_0535: Unknown result type (might be due to invalid IL or missing references) //IL_053b: Unknown result type (might be due to invalid IL or missing references) //IL_0540: Unknown result type (might be due to invalid IL or missing references) //IL_0546: Unknown result type (might be due to invalid IL or missing references) //IL_054b: Unknown result type (might be due to invalid IL or missing references) //IL_0551: Unknown result type (might be due to invalid IL or missing references) //IL_055b: Unknown result type (might be due to invalid IL or missing references) //IL_0560: Unknown result type (might be due to invalid IL or missing references) //IL_0566: Unknown result type (might be due to invalid IL or missing references) //IL_056b: Unknown result type (might be due to invalid IL or missing references) //IL_0570: Unknown result type (might be due to invalid IL or missing references) //IL_0580: Unknown result type (might be due to invalid IL or missing references) //IL_0586: Unknown result type (might be due to invalid IL or missing references) //IL_058b: Unknown result type (might be due to invalid IL or missing references) //IL_0591: Unknown result type (might be due to invalid IL or missing references) //IL_059b: Unknown result type (might be due to invalid IL or missing references) //IL_05a0: Unknown result type (might be due to invalid IL or missing references) //IL_05a6: Unknown result type (might be due to invalid IL or missing references) //IL_05ab: Unknown result type (might be due to invalid IL or missing references) //IL_05b1: Unknown result type (might be due to invalid IL or missing references) //IL_05bb: Unknown result type (might be due to invalid IL or missing references) //IL_05c0: Unknown result type (might be due to invalid IL or missing references) //IL_05c6: Unknown result type (might be due to invalid IL or missing references) //IL_05cb: Unknown result type (might be due to invalid IL or missing references) //IL_05d6: Unknown result type (might be due to invalid IL or missing references) //IL_05dc: Unknown result type (might be due to invalid IL or missing references) //IL_05e1: Unknown result type (might be due to invalid IL or missing references) //IL_05e7: Unknown result type (might be due to invalid IL or missing references) //IL_05f1: Unknown result type (might be due to invalid IL or missing references) //IL_05f6: Unknown result type (might be due to invalid IL or missing references) //IL_05fc: Unknown result type (might be due to invalid IL or missing references) //IL_0601: Unknown result type (might be due to invalid IL or missing references) //IL_0607: Unknown result type (might be due to invalid IL or missing references) //IL_0611: Unknown result type (might be due to invalid IL or missing references) //IL_0616: Unknown result type (might be due to invalid IL or missing references) //IL_061c: Unknown result type (might be due to invalid IL or missing references) //IL_0621: Unknown result type (might be due to invalid IL or missing references) //IL_0626: Unknown result type (might be due to invalid IL or missing references) //IL_0636: Unknown result type (might be due to invalid IL or missing references) //IL_063c: Unknown result type (might be due to invalid IL or missing references) //IL_0641: Unknown result type (might be due to invalid IL or missing references) //IL_0647: Unknown result type (might be due to invalid IL or missing references) //IL_0651: Unknown result type (might be due to invalid IL or missing references) //IL_0656: Unknown result type (might be due to invalid IL or missing references) //IL_065c: Unknown result type (might be due to invalid IL or missing references) //IL_0661: Unknown result type (might be due to invalid IL or missing references) //IL_0667: Unknown result type (might be due to invalid IL or missing references) //IL_0671: Unknown result type (might be due to invalid IL or missing references) //IL_0676: Unknown result type (might be due to invalid IL or missing references) //IL_067c: Unknown result type (might be due to invalid IL or missing references) //IL_0681: Unknown result type (might be due to invalid IL or missing references) //IL_068c: Unknown result type (might be due to invalid IL or missing references) //IL_0692: Unknown result type (might be due to invalid IL or missing references) //IL_0697: Unknown result type (might be due to invalid IL or missing references) //IL_069d: Unknown result type (might be due to invalid IL or missing references) //IL_06a7: Unknown result type (might be due to invalid IL or missing references) //IL_06ac: Unknown result type (might be due to invalid IL or missing references) //IL_06b2: Unknown result type (might be due to invalid IL or missing references) //IL_06b7: Unknown result type (might be due to invalid IL or missing references) //IL_06bd: Unknown result type (might be due to invalid IL or missing references) //IL_06c7: Unknown result type (might be due to invalid IL or missing references) //IL_06cc: Unknown result type (might be due to invalid IL or missing references) //IL_06d2: Unknown result type (might be due to invalid IL or missing references) //IL_06d7: Unknown result type (might be due to invalid IL or missing references) //IL_06dc: Unknown result type (might be due to invalid IL or missing references) //IL_06ec: Unknown result type (might be due to invalid IL or missing references) //IL_06f2: Unknown result type (might be due to invalid IL or missing references) //IL_06f7: Unknown result type (might be due to invalid IL or missing references) //IL_06fd: Unknown result type (might be due to invalid IL or missing references) //IL_0707: Unknown result type (might be due to invalid IL or missing references) //IL_070c: Unknown result type (might be due to invalid IL or missing references) //IL_0712: Unknown result type (might be due to invalid IL or missing references) //IL_0717: Unknown result type (might be due to invalid IL or missing references) //IL_071d: Unknown result type (might be due to invalid IL or missing references) //IL_0727: Unknown result type (might be due to invalid IL or missing references) //IL_072c: Unknown result type (might be due to invalid IL or missing references) //IL_0732: Unknown result type (might be due to invalid IL or missing references) //IL_0737: Unknown result type (might be due to invalid IL or missing references) //IL_0742: Unknown result type (might be due to invalid IL or missing references) //IL_0748: Unknown result type (might be due to invalid IL or missing references) //IL_074d: Unknown result type (might be due to invalid IL or missing references) //IL_0753: Unknown result type (might be due to invalid IL or missing references) //IL_075d: Unknown result type (might be due to invalid IL or missing references) //IL_0762: Unknown result type (might be due to invalid IL or missing references) //IL_0768: Unknown result type (might be due to invalid IL or missing references) //IL_076d: Unknown result type (might be due to invalid IL or missing references) //IL_0773: Unknown result type (might be due to invalid IL or missing references) //IL_077d: Unknown result type (might be due to invalid IL or missing references) //IL_0782: Unknown result type (might be due to invalid IL or missing references) //IL_0788: Unknown result type (might be due to invalid IL or missing references) //IL_078d: Unknown result type (might be due to invalid IL or missing references) //IL_0792: Unknown result type (might be due to invalid IL or missing references) //IL_07a2: Unknown result type (might be due to invalid IL or missing references) //IL_07a8: Unknown result type (might be due to invalid IL or missing references) //IL_07ad: Unknown result type (might be due to invalid IL or missing references) //IL_07b3: Unknown result type (might be due to invalid IL or missing references) //IL_07bd: Unknown result type (might be due to invalid IL or missing references) //IL_07c2: Unknown result type (might be due to invalid IL or missing references) //IL_07c8: Unknown result type (might be due to invalid IL or missing references) //IL_07cd: Unknown result type (might be due to invalid IL or missing references) //IL_07d3: Unknown result type (might be due to invalid IL or missing references) //IL_07dd: Unknown result type (might be due to invalid IL or missing references) //IL_07e2: Unknown result type (might be due to invalid IL or missing references) //IL_07e8: Unknown result type (might be due to invalid IL or missing references) //IL_07ed: Unknown result type (might be due to invalid IL or missing references) //IL_07f8: Unknown result type (might be due to invalid IL or missing references) //IL_07fe: Unknown result type (might be due to invalid IL or missing references) //IL_0803: Unknown result type (might be due to invalid IL or missing references) //IL_0809: Unknown result type (might be due to invalid IL or missing references) //IL_0813: Unknown result type (might be due to invalid IL or missing references) //IL_0818: Unknown result type (might be due to invalid IL or missing references) //IL_081e: Unknown result type (might be due to invalid IL or missing references) //IL_0823: Unknown result type (might be due to invalid IL or missing references) //IL_0829: Unknown result type (might be due to invalid IL or missing references) //IL_0833: Unknown result type (might be due to invalid IL or missing references) //IL_0838: Unknown result type (might be due to invalid IL or missing references) //IL_083e: Unknown result type (might be due to invalid IL or missing references) //IL_0843: Unknown result type (might be due to invalid IL or missing references) //IL_0848: Unknown result type (might be due to invalid IL or missing references) //IL_0858: Unknown result type (might be due to invalid IL or missing references) //IL_085e: Unknown result type (might be due to invalid IL or missing references) //IL_0863: Unknown result type (might be due to invalid IL or missing references) //IL_0869: Unknown result type (might be due to invalid IL or missing references) //IL_0873: Unknown result type (might be due to invalid IL or missing references) //IL_0878: Unknown result type (might be due to invalid IL or missing references) //IL_087e: Unknown result type (might be due to invalid IL or missing references) //IL_0883: Unknown result type (might be due to invalid IL or missing references) //IL_0889: Unknown result type (might be due to invalid IL or missing references) //IL_0893: Unknown result type (might be due to invalid IL or missing references) //IL_0898: Unknown result type (might be due to invalid IL or missing references) //IL_089e: Unknown result type (might be due to invalid IL or missing references) //IL_08a3: Unknown result type (might be due to invalid IL or missing references) //IL_08ae: Unknown result type (might be due to invalid IL or missing references) //IL_08b4: Unknown result type (might be due to invalid IL or missing references) //IL_08b9: Unknown result type (might be due to invalid IL or missing references) //IL_08bf: Unknown result type (might be due to invalid IL or missing references) //IL_08c9: Unknown result type (might be due to invalid IL or missing references) //IL_08ce: Unknown result type (might be due to invalid IL or missing references) //IL_08d4: Unknown result type (might be due to invalid IL or missing references) //IL_08d9: Unknown result type (might be due to invalid IL or missing references) //IL_08df: Unknown result type (might be due to invalid IL or missing references) //IL_08e9: Unknown result type (might be due to invalid IL or missing references) //IL_08ee: Unknown result type (might be due to invalid IL or missing references) //IL_08f4: Unknown result type (might be due to invalid IL or missing references) //IL_08f9: Unknown result type (might be due to invalid IL or missing references) //IL_08fe: Unknown result type (might be due to invalid IL or missing references) //IL_090e: Unknown result type (might be due to invalid IL or missing references) //IL_0914: Unknown result type (might be due to invalid IL or missing references) //IL_0919: Unknown result type (might be due to invalid IL or missing references) //IL_091f: Unknown result type (might be due to invalid IL or missing references) //IL_0929: Unknown result type (might be due to invalid IL or missing references) //IL_092e: Unknown result type (might be due to invalid IL or missing references) //IL_0934: Unknown result type (might be due to invalid IL or missing references) //IL_0939: Unknown result type (might be due to invalid IL or missing references) //IL_093f: Unknown result type (might be due to invalid IL or missing references) //IL_0949: Unknown result type (might be due to invalid IL or missing references) //IL_094e: Unknown result type (might be due to invalid IL or missing references) //IL_0954: Unknown result type (might be due to invalid IL or missing references) //IL_0959: Unknown result type (might be due to invalid IL or missing references) //IL_0964: Unknown result type (might be due to invalid IL or missing references) //IL_096a: Unknown result type (might be due to invalid IL or missing references) //IL_096f: Unknown result type (might be due to invalid IL or missing references) //IL_0975: Unknown result type (might be due to invalid IL or missing references) //IL_097f: Unknown result type (might be due to invalid IL or missing references) //IL_0984: Unknown result type (might be due to invalid IL or missing references) //IL_098a: Unknown result type (might be due to invalid IL or missing references) //IL_098f: Unknown result type (might be due to invalid IL or missing references) //IL_0995: Unknown result type (might be due to invalid IL or missing references) //IL_099f: Unknown result type (might be due to invalid IL or missing references) //IL_09a4: Unknown result type (might be due to invalid IL or missing references) //IL_09aa: Unknown result type (might be due to invalid IL or missing references) //IL_09af: Unknown result type (might be due to invalid IL or missing references) //IL_09b4: Unknown result type (might be due to invalid IL or missing references) //IL_09c4: Unknown result type (might be due to invalid IL or missing references) //IL_09ca: Unknown result type (might be due to invalid IL or missing references) //IL_09cf: Unknown result type (might be due to invalid IL or missing references) //IL_09d5: Unknown result type (might be due to invalid IL or missing references) //IL_09df: Unknown result type (might be due to invalid IL or missing references) //IL_09e4: Unknown result type (might be due to invalid IL or missing references) //IL_09ea: Unknown result type (might be due to invalid IL or missing references) //IL_09ef: Unknown result type (might be due to invalid IL or missing references) //IL_09f5: Unknown result type (might be due to invalid IL or missing references) //IL_09ff: Unknown result type (might be due to invalid IL or missing references) //IL_0a04: Unknown result type (might be due to invalid IL or missing references) //IL_0a0a: Unknown result type (might be due to invalid IL or missing references) //IL_0a0f: Unknown result type (might be due to invalid IL or missing references) //IL_0a1a: Unknown result type (might be due to invalid IL or missing references) //IL_0a20: Unknown result type (might be due to invalid IL or missing references) //IL_0a25: Unknown result type (might be due to invalid IL or missing references) //IL_0a2b: Unknown result type (might be due to invalid IL or missing references) //IL_0a35: Unknown result type (might be due to invalid IL or missing references) //IL_0a3a: Unknown result type (might be due to invalid IL or missing references) //IL_0a40: Unknown result type (might be due to invalid IL or missing references) //IL_0a45: Unknown result type (might be due to invalid IL or missing references) //IL_0a4b: Unknown result type (might be due to invalid IL or missing references) //IL_0a55: Unknown result type (might be due to invalid IL or missing references) //IL_0a5a: Unknown result type (might be due to invalid IL or missing references) //IL_0a60: Unknown result type (might be due to invalid IL or missing references) //IL_0a65: Unknown result type (might be due to invalid IL or missing references) //IL_0a6a: Unknown result type (might be due to invalid IL or missing references) //IL_0a7a: Unknown result type (might be due to invalid IL or missing references) //IL_0a80: Unknown result type (might be due to invalid IL or missing references) //IL_0a85: Unknown result type (might be due to invalid IL or missing references) //IL_0a8b: Unknown result type (might be due to invalid IL or missing references) //IL_0a95: Unknown result type (might be due to invalid IL or missing references) //IL_0a9a: Unknown result type (might be due to invalid IL or missing references) //IL_0aa0: Unknown result type (might be due to invalid IL or missing references) //IL_0aa5: Unknown result type (might be due to invalid IL or missing references) //IL_0aab: Unknown result type (might be due to invalid IL or missing references) //IL_0ab5: Unknown result type (might be due to invalid IL or missing references) //IL_0aba: Unknown result type (might be due to invalid IL or missing references) //IL_0ac0: Unknown result type (might be due to invalid IL or missing references) //IL_0ac5: Unknown result type (might be due to invalid IL or missing references) //IL_0ad0: Unknown result type (might be due to invalid IL or missing references) //IL_0ad6: Unknown result type (might be due to invalid IL or missing references) //IL_0adb: Unknown result type (might be due to invalid IL or missing references) //IL_0ae1: Unknown result type (might be due to invalid IL or missing references) //IL_0aeb: Unknown result type (might be due to invalid IL or missing references) //IL_0af0: Unknown result type (might be due to invalid IL or missing references) //IL_0af6: Unknown result type (might be due to invalid IL or missing references) //IL_0afb: Unknown result type (might be due to invalid IL or missing references) //IL_0b01: Unknown result type (might be due to invalid IL or missing references) //IL_0b0b: Unknown result type (might be due to invalid IL or missing references) //IL_0b10: Unknown result type (might be due to invalid IL or missing references) //IL_0b16: Unknown result type (might be due to invalid IL or missing references) //IL_0b1b: Unknown result type (might be due to invalid IL or missing references) //IL_0b20: Unknown result type (might be due to invalid IL or missing references) //IL_0b30: Unknown result type (might be due to invalid IL or missing references) //IL_0b36: Unknown result type (might be due to invalid IL or missing references) //IL_0b3b: Unknown result type (might be due to invalid IL or missing references) //IL_0b41: Unknown result type (might be due to invalid IL or missing references) //IL_0b46: Unknown result type (might be due to invalid IL or missing references) //IL_0b4c: Unknown result type (might be due to invalid IL or missing references) //IL_0b56: Unknown result type (might be due to invalid IL or missing references) //IL_0b5b: Unknown result type (might be due to invalid IL or missing references) //IL_0b61: Unknown result type (might be due to invalid IL or missing references) //IL_0b66: Unknown result type (might be due to invalid IL or missing references) //IL_0b71: Unknown result type (might be due to invalid IL or missing references) //IL_0b77: Unknown result type (might be due to invalid IL or missing references) //IL_0b7c: Unknown result type (might be due to invalid IL or missing references) //IL_0b82: Unknown result type (might be due to invalid IL or missing references) //IL_0b87: Unknown result type (might be due to invalid IL or missing references) //IL_0b8d: Unknown result type (might be due to invalid IL or missing references) //IL_0b97: Unknown result type (might be due to invalid IL or missing references) //IL_0b9c: Unknown result type (might be due to invalid IL or missing references) //IL_0ba2: Unknown result type (might be due to invalid IL or missing references) //IL_0ba7: Unknown result type (might be due to invalid IL or missing references) //IL_0bac: Unknown result type (might be due to invalid IL or missing references) //IL_0bbc: Unknown result type (might be due to invalid IL or missing references) //IL_0bc2: Unknown result type (might be due to invalid IL or missing references) //IL_0bc7: Unknown result type (might be due to invalid IL or missing references) //IL_0bcd: Unknown result type (might be due to invalid IL or missing references) //IL_0bd2: Unknown result type (might be due to invalid IL or missing references) //IL_0bd8: Unknown result type (might be due to invalid IL or missing references) //IL_0be2: Unknown result type (might be due to invalid IL or missing references) //IL_0be7: Unknown result type (might be due to invalid IL or missing references) //IL_0bed: Unknown result type (might be due to invalid IL or missing references) //IL_0bf2: Unknown result type (might be due to invalid IL or missing references) //IL_0bfd: Unknown result type (might be due to invalid IL or missing references) //IL_0c03: Unknown result type (might be due to invalid IL or missing references) //IL_0c08: Unknown result type (might be due to invalid IL or missing references) //IL_0c0e: Unknown result type (might be due to invalid IL or missing references) //IL_0c13: Unknown result type (might be due to invalid IL or missing references) //IL_0c19: Unknown result type (might be due to invalid IL or missing references) //IL_0c23: Unknown result type (might be due to invalid IL or missing references) //IL_0c28: Unknown result type (might be due to invalid IL or missing references) //IL_0c2e: Unknown result type (might be due to invalid IL or missing references) //IL_0c33: Unknown result type (might be due to invalid IL or missing references) //IL_0c38: Unknown result type (might be due to invalid IL or missing references) //IL_0c48: Unknown result type (might be due to invalid IL or missing references) //IL_0c4e: Unknown result type (might be due to invalid IL or missing references) //IL_0c53: Unknown result type (might be due to invalid IL or missing references) //IL_0c59: Unknown result type (might be due to invalid IL or missing references) //IL_0c63: Unknown result type (might be due to invalid IL or missing references) //IL_0c68: Unknown result type (might be due to invalid IL or missing references) //IL_0c6e: Unknown result type (might be due to invalid IL or missing references) //IL_0c73: Unknown result type (might be due to invalid IL or missing references) //IL_0c79: Unknown result type (might be due to invalid IL or missing references) //IL_0c83: Unknown result type (might be due to invalid IL or missing references) //IL_0c88: Unknown result type (might be due to invalid IL or missing references) //IL_0c8e: Unknown result type (might be due to invalid IL or missing references) //IL_0c93: Unknown result type (might be due to invalid IL or missing references) //IL_0c9e: Unknown result type (might be due to invalid IL or missing references) //IL_0ca4: Unknown result type (might be due to invalid IL or missing references) //IL_0ca9: Unknown result type (might be due to invalid IL or missing references) //IL_0caf: Unknown result type (might be due to invalid IL or missing references) //IL_0cb9: Unknown result type (might be due to invalid IL or missing references) //IL_0cbe: Unknown result type (might be due to invalid IL or missing references) //IL_0cc4: Unknown result type (might be due to invalid IL or missing references) //IL_0cc9: Unknown result type (might be due to invalid IL or missing references) //IL_0ccf: Unknown result type (might be due to invalid IL or missing references) //IL_0cd9: Unknown result type (might be due to invalid IL or missing references) //IL_0cde: Unknown result type (might be due to invalid IL or missing references) //IL_0ce4: Unknown result type (might be due to invalid IL or missing references) //IL_0ce9: Unknown result type (might be due to invalid IL or missing references) //IL_0cee: Unknown result type (might be due to invalid IL or missing references) //IL_0cfe: Unknown result type (might be due to invalid IL or missing references) //IL_0d04: Unknown result type (might be due to invalid IL or missing references) //IL_0d09: Unknown result type (might be due to invalid IL or missing references) //IL_0d0f: Unknown result type (might be due to invalid IL or missing references) //IL_0d19: Unknown result type (might be due to invalid IL or missing references) //IL_0d1e: Unknown result type (might be due to invalid IL or missing references) //IL_0d24: Unknown result type (might be due to invalid IL or missing references) //IL_0d29: Unknown result type (might be due to invalid IL or missing references) //IL_0d2f: Unknown result type (might be due to invalid IL or missing references) //IL_0d39: Unknown result type (might be due to invalid IL or missing references) //IL_0d3e: Unknown result type (might be due to invalid IL or missing references) //IL_0d44: Unknown result type (might be due to invalid IL or missing references) //IL_0d49: Unknown result type (might be due to invalid IL or missing references) //IL_0d54: Unknown result type (might be due to invalid IL or missing references) //IL_0d5a: Unknown result type (might be due to invalid IL or missing references) //IL_0d5f: Unknown result type (might be due to invalid IL or missing references) //IL_0d65: Unknown result type (might be due to invalid IL or missing references) //IL_0d6f: Unknown result type (might be due to invalid IL or missing references) //IL_0d74: Unknown result type (might be due to invalid IL or missing references) //IL_0d7a: Unknown result type (might be due to invalid IL or missing references) //IL_0d7f: Unknown result type (might be due to invalid IL or missing references) //IL_0d85: Unknown result type (might be due to invalid IL or missing references) //IL_0d8f: Unknown result type (might be due to invalid IL or missing references) //IL_0d94: Unknown result type (might be due to invalid IL or missing references) //IL_0d9a: Unknown result type (might be due to invalid IL or missing references) //IL_0d9f: Unknown result type (might be due to invalid IL or missing references) //IL_0da4: Unknown result type (might be due to invalid IL or missing references) //IL_0db4: Unknown result type (might be due to invalid IL or missing references) //IL_0dba: Unknown result type (might be due to invalid IL or missing references) //IL_0dbf: Unknown result type (might be due to invalid IL or missing references) //IL_0dc5: Unknown result type (might be due to invalid IL or missing references) //IL_0dca: Unknown result type (might be due to invalid IL or missing references) //IL_0dd0: Unknown result type (might be due to invalid IL or missing references) //IL_0dd5: Unknown result type (might be due to invalid IL or missing references) //IL_0ddb: Unknown result type (might be due to invalid IL or missing references) //IL_0de5: Unknown result type (might be due to invalid IL or missing references) //IL_0dea: Unknown result type (might be due to invalid IL or missing references) //IL_0df0: Unknown result type (might be due to invalid IL or missing references) //IL_0dfa: Unknown result type (might be due to invalid IL or missing references) //IL_0dff: Unknown result type (might be due to invalid IL or missing references) //IL_0e05: Unknown result type (might be due to invalid IL or missing references) //IL_0e0f: Unknown result type (might be due to invalid IL or missing references) //IL_0e14: Unknown result type (might be due to invalid IL or missing references) //IL_0e1a: Unknown result type (might be due to invalid IL or missing references) //IL_0e1f: Unknown result type (might be due to invalid IL or missing references) //IL_0e25: Unknown result type (might be due to invalid IL or missing references) //IL_0e2a: Unknown result type (might be due to invalid IL or missing references) //IL_0e35: Unknown result type (might be due to invalid IL or missing references) //IL_0e3b: Unknown result type (might be due to invalid IL or missing references) //IL_0e40: Unknown result type (might be due to invalid IL or missing references) //IL_0e46: Unknown result type (might be due to invalid IL or missing references) //IL_0e4b: Unknown result type (might be due to invalid IL or missing references) //IL_0e51: Unknown result type (might be due to invalid IL or missing references) //IL_0e56: Unknown result type (might be due to invalid IL or missing references) //IL_0e5c: Unknown result type (might be due to invalid IL or missing references) //IL_0e66: Unknown result type (might be due to invalid IL or missing references) //IL_0e6b: Unknown result type (might be due to invalid IL or missing references) //IL_0e71: Unknown result type (might be due to invalid IL or missing references) //IL_0e76: Unknown result type (might be due to invalid IL or missing references) //IL_0e7c: Unknown result type (might be due to invalid IL or missing references) //IL_0e86: Unknown result type (might be due to invalid IL or missing references) //IL_0e8b: Unknown result type (might be due to invalid IL or missing references) //IL_0e91: Unknown result type (might be due to invalid IL or missing references) //IL_0e9b: Unknown result type (might be due to invalid IL or missing references) //IL_0ea0: Unknown result type (might be due to invalid IL or missing references) //IL_0ea6: Unknown result type (might be due to invalid IL or missing references) //IL_0eab: Unknown result type (might be due to invalid IL or missing references) //IL_0eb0: Unknown result type (might be due to invalid IL or missing references) //IL_0ec0: Unknown result type (might be due to invalid IL or missing references) //IL_0ec6: Unknown result type (might be due to invalid IL or missing references) //IL_0ecb: Unknown result type (might be due to invalid IL or missing references) //IL_0ed1: Unknown result type (might be due to invalid IL or missing references) //IL_0ed6: Unknown result type (might be due to invalid IL or missing references) //IL_0edc: Unknown result type (might be due to invalid IL or missing references) //IL_0ee1: Unknown result type (might be due to invalid IL or missing references) //IL_0ee7: Unknown result type (might be due to invalid IL or missing references) //IL_0ef1: Unknown result type (might be due to invalid IL or missing references) //IL_0ef6: Unknown result type (might be due to invalid IL or missing references) //IL_0efc: Unknown result type (might be due to invalid IL or missing references) //IL_0f06: Unknown result type (might be due to invalid IL or missing references) //IL_0f0b: Unknown result type (might be due to invalid IL or missing references) //IL_0f11: Unknown result type (might be due to invalid IL or missing references) //IL_0f1b: Unknown result type (might be due to invalid IL or missing references) //IL_0f20: Unknown result type (might be due to invalid IL or missing references) //IL_0f26: Unknown result type (might be due to invalid IL or missing references) //IL_0f2b: Unknown result type (might be due to invalid IL or missing references) //IL_0f31: Unknown result type (might be due to invalid IL or missing references) //IL_0f36: Unknown result type (might be due to invalid IL or missing references) //IL_0f41: Unknown result type (might be due to invalid IL or missing references) //IL_0f47: Unknown result type (might be due to invalid IL or missing references) //IL_0f4c: Unknown result type (might be due to invalid IL or missing references) //IL_0f52: Unknown result type (might be due to invalid IL or missing references) //IL_0f57: Unknown result type (might be due to invalid IL or missing references) //IL_0f5d: Unknown result type (might be due to invalid IL or missing references) //IL_0f62: Unknown result type (might be due to invalid IL or missing references) //IL_0f68: Unknown result type (might be due to invalid IL or missing references) //IL_0f72: Unknown result type (might be due to invalid IL or missing references) //IL_0f77: Unknown result type (might be due to invalid IL or missing references) //IL_0f7d: Unknown result type (might be due to invalid IL or missing references) //IL_0f87: Unknown result type (might be due to invalid IL or missing references) //IL_0f8c: Unknown result type (might be due to invalid IL or missing references) //IL_0f92: Unknown result type (might be due to invalid IL or missing references) //IL_0f9c: Unknown result type (might be due to invalid IL or missing references) //IL_0fa1: Unknown result type (might be due to invalid IL or missing references) //IL_0fa7: Unknown result type (might be due to invalid IL or missing references) //IL_0fac: Unknown result type (might be due to invalid IL or missing references) //IL_0fb2: Unknown result type (might be due to invalid IL or missing references) //IL_0fb7: Unknown result type (might be due to invalid IL or missing references) //IL_0fbc: Unknown result type (might be due to invalid IL or missing references) //IL_0fcc: Unknown result type (might be due to invalid IL or missing references) //IL_0fd2: Unknown result type (might be due to invalid IL or missing references) //IL_0fd7: Unknown result type (might be due to invalid IL or missing references) //IL_0fdd: Unknown result type (might be due to invalid IL or missing references) //IL_0fe7: Unknown result type (might be due to invalid IL or missing references) //IL_0fec: Unknown result type (might be due to invalid IL or missing references) //IL_0ff2: Unknown result type (might be due to invalid IL or missing references) //IL_0ffc: Unknown result type (might be due to invalid IL or missing references) //IL_1001: Unknown result type (might be due to invalid IL or missing references) //IL_1007: Unknown result type (might be due to invalid IL or missing references) //IL_1011: Unknown result type (might be due to invalid IL or missing references) //IL_1016: Unknown result type (might be due to invalid IL or missing references) //IL_101c: Unknown result type (might be due to invalid IL or missing references) //IL_1021: Unknown result type (might be due to invalid IL or missing references) //IL_1027: Unknown result type (might be due to invalid IL or missing references) //IL_102c: Unknown result type (might be due to invalid IL or missing references) //IL_1032: Unknown result type (might be due to invalid IL or missing references) //IL_1037: Unknown result type (might be due to invalid IL or missing references) //IL_1042: Unknown result type (might be due to invalid IL or missing references) //IL_1048: Unknown result type (might be due to invalid IL or missing references) //IL_104d: Unknown result type (might be due to invalid IL or missing references) //IL_1053: Unknown result type (might be due to invalid IL or missing references) //IL_105d: Unknown result type (might be due to invalid IL or missing references) //IL_1062: Unknown result type (might be due to invalid IL or missing references) //IL_1068: Unknown result type (might be due to invalid IL or missing references) //IL_106d: Unknown result type (might be due to invalid IL or missing references) //IL_1073: Unknown result type (might be due to invalid IL or missing references) //IL_107d: Unknown result type (might be due to invalid IL or missing references) //IL_1082: Unknown result type (might be due to invalid IL or missing references) //IL_1088: Unknown result type (might be due to invalid IL or missing references) //IL_1092: Unknown result type (might be due to invalid IL or missing references) //IL_1097: Unknown result type (might be due to invalid IL or missing references) //IL_109d: Unknown result type (might be due to invalid IL or missing references) //IL_10a2: Unknown result type (might be due to invalid IL or missing references) //IL_10a8: Unknown result type (might be due to invalid IL or missing references) //IL_10ad: Unknown result type (might be due to invalid IL or missing references) //IL_10b2: Unknown result type (might be due to invalid IL or missing references) //IL_10c2: Unknown result type (might be due to invalid IL or missing references) //IL_10c8: Unknown result type (might be due to invalid IL or missing references) //IL_10cd: Unknown result type (might be due to invalid IL or missing references) //IL_10d3: Unknown result type (might be due to invalid IL or missing references) //IL_10dd: Unknown result type (might be due to invalid IL or missing references) //IL_10e2: Unknown result type (might be due to invalid IL or missing references) //IL_10e8: Unknown result type (might be due to invalid IL or missing references) //IL_10f2: Unknown result type (might be due to invalid IL or missing references) //IL_10f7: Unknown result type (might be due to invalid IL or missing references) //IL_10fd: Unknown result type (might be due to invalid IL or missing references) //IL_1107: Unknown result type (might be due to invalid IL or missing references) //IL_110c: Unknown result type (might be due to invalid IL or missing references) //IL_1112: Unknown result type (might be due to invalid IL or missing references) //IL_1117: Unknown result type (might be due to invalid IL or missing references) //IL_111d: Unknown result type (might be due to invalid IL or missing references) //IL_1122: Unknown result type (might be due to invalid IL or missing references) //IL_1128: Unknown result type (might be due to invalid IL or missing references) //IL_112d: Unknown result type (might be due to invalid IL or missing references) //IL_1138: Unknown result type (might be due to invalid IL or missing references) //IL_113e: Unknown result type (might be due to invalid IL or missing references) //IL_1143: Unknown result type (might be due to invalid IL or missing references) //IL_1149: Unknown result type (might be due to invalid IL or missing references) //IL_1153: Unknown result type (might be due to invalid IL or missing references) //IL_1158: Unknown result type (might be due to invalid IL or missing references) //IL_115e: Unknown result type (might be due to invalid IL or missing references) //IL_1168: Unknown result type (might be due to invalid IL or missing references) //IL_116d: Unknown result type (might be due to invalid IL or missing references) //IL_1173: Unknown result type (might be due to invalid IL or missing references) //IL_117d: Unknown result type (might be due to invalid IL or missing references) //IL_1182: Unknown result type (might be due to invalid IL or missing references) //IL_1188: Unknown result type (might be due to invalid IL or missing references) //IL_118d: Unknown result type (might be due to invalid IL or missing references) //IL_1193: Unknown result type (might be due to invalid IL or missing references) //IL_1198: Unknown result type (might be due to invalid IL or missing references) //IL_119e: Unknown result type (might be due to invalid IL or missing references) //IL_11a3: Unknown result type (might be due to invalid IL or missing references) //IL_11a8: Unknown result type (might be due to invalid IL or missing references) //IL_11b8: Unknown result type (might be due to invalid IL or missing references) //IL_11be: Unknown result type (might be due to invalid IL or missing references) //IL_11c3: Unknown result type (might be due to invalid IL or missing references) //IL_11c9: Unknown result type (might be due to invalid IL or missing references) //IL_11ce: Unknown result type (might be due to invalid IL or missing references) //IL_11d4: Unknown result type (might be due to invalid IL or missing references) //IL_11d9: Unknown result type (might be due to invalid IL or missing references) //IL_11df: Unknown result type (might be due to invalid IL or missing references) //IL_11e9: Unknown result type (might be due to invalid IL or missing references) //IL_11ee: Unknown result type (might be due to invalid IL or missing references) //IL_11f4: Unknown result type (might be due to invalid IL or missing references) //IL_11fe: Unknown result type (might be due to invalid IL or missing references) //IL_1203: Unknown result type (might be due to invalid IL or missing references) //IL_1209: Unknown result type (might be due to invalid IL or missing references) //IL_1213: Unknown result type (might be due to invalid IL or missing references) //IL_1218: Unknown result type (might be due to invalid IL or missing references) //IL_121e: Unknown result type (might be due to invalid IL or missing references) //IL_1223: Unknown result type (might be due to invalid IL or missing references) //IL_1229: Unknown result type (might be due to invalid IL or missing references) //IL_122e: Unknown result type (might be due to invalid IL or missing references) //IL_1239: Unknown result type (might be due to invalid IL or missing references) //IL_123f: Unknown result type (might be due to invalid IL or missing references) //IL_1244: Unknown result type (might be due to invalid IL or missing references) //IL_124a: Unknown result type (might be due to invalid IL or missing references) //IL_124f: Unknown result type (might be due to invalid IL or missing references) //IL_1255: Unknown result type (might be due to invalid IL or missing references) //IL_125a: Unknown result type (might be due to invalid IL or missing references) //IL_1260: Unknown result type (might be due to invalid IL or missing references) //IL_126a: Unknown result type (might be due to invalid IL or missing references) //IL_126f: Unknown result type (might be due to invalid IL or missing references) //IL_1275: Unknown result type (might be due to invalid IL or missing references) //IL_127a: Unknown result type (might be due to invalid IL or missing references) //IL_1280: Unknown result type (might be due to invalid IL or missing references) //IL_128a: Unknown result type (might be due to invalid IL or missing references) //IL_128f: Unknown result type (might be due to invalid IL or missing references) //IL_1295: Unknown result type (might be due to invalid IL or missing references) //IL_129f: Unknown result type (might be due to invalid IL or missing references) //IL_12a4: Unknown result type (might be due to invalid IL or missing references) //IL_12aa: Unknown result type (might be due to invalid IL or missing references) //IL_12af: Unknown result type (might be due to invalid IL or missing references) //IL_12b4: Unknown result type (might be due to invalid IL or missing references) //IL_12c4: Unknown result type (might be due to invalid IL or missing references) //IL_12ca: Unknown result type (might be due to invalid IL or missing references) //IL_12cf: Unknown result type (might be due to invalid IL or missing references) //IL_12d5: Unknown result type (might be due to invalid IL or missing references) //IL_12da: Unknown result type (might be due to invalid IL or missing references) //IL_12e0: Unknown result type (might be due to invalid IL or missing references) //IL_12e5: Unknown result type (might be due to invalid IL or missing references) //IL_12eb: Unknown result type (might be due to invalid IL or missing references) //IL_12f5: Unknown result type (might be due to invalid IL or missing references) //IL_12fa: Unknown result type (might be due to invalid IL or missing references) //IL_1300: Unknown result type (might be due to invalid IL or missing references) //IL_130a: Unknown result type (might be due to invalid IL or missing references) //IL_130f: Unknown result type (might be due to invalid IL or missing references) //IL_1315: Unknown result type (might be due to invalid IL or missing references) //IL_131f: Unknown result type (might be due to invalid IL or missing references) //IL_1324: Unknown result type (might be due to invalid IL or missing references) //IL_132a: Unknown result type (might be due to invalid IL or missing references) //IL_132f: Unknown result type (might be due to invalid IL or missing references) //IL_1335: Unknown result type (might be due to invalid IL or missing references) //IL_133a: Unknown result type (might be due to invalid IL or missing references) //IL_1345: Unknown result type (might be due to invalid IL or missing references) //IL_134b: Unknown result type (might be due to invalid IL or missing references) //IL_1350: Unknown result type (might be due to invalid IL or missing references) //IL_1356: Unknown result type (might be due to invalid IL or missing references) //IL_135b: Unknown result type (might be due to invalid IL or missing references) //IL_1361: Unknown result type (might be due to invalid IL or missing references) //IL_1366: Unknown result type (might be due to invalid IL or missing references) //IL_136c: Unknown result type (might be due to invalid IL or missing references) //IL_1376: Unknown result type (might be due to invalid IL or missing references) //IL_137b: Unknown result type (might be due to invalid IL or missing references) //IL_1381: Unknown result type (might be due to invalid IL or missing references) //IL_138b: Unknown result type (might be due to invalid IL or missing references) //IL_1390: Unknown result type (might be due to invalid IL or missing references) //IL_1396: Unknown result type (might be due to invalid IL or missing references) //IL_13a0: Unknown result type (might be due to invalid IL or missing references) //IL_13a5: Unknown result type (might be due to invalid IL or missing references) //IL_13ab: Unknown result type (might be due to invalid IL or missing references) //IL_13b0: Unknown result type (might be due to invalid IL or missing references) //IL_13b6: Unknown result type (might be due to invalid IL or missing references) //IL_13bb: Unknown result type (might be due to invalid IL or missing references) //IL_13c0: Unknown result type (might be due to invalid IL or missing references) //IL_13d0: Unknown result type (might be due to invalid IL or missing references) //IL_13d6: Unknown result type (might be due to invalid IL or missing references) //IL_13db: Unknown result type (might be due to invalid IL or missing references) //IL_13e1: Unknown result type (might be due to invalid IL or missing references) //IL_13eb: Unknown result type (might be due to invalid IL or missing references) //IL_13f0: Unknown result type (might be due to invalid IL or missing references) //IL_13f6: Unknown result type (might be due to invalid IL or missing references) //IL_1400: Unknown result type (might be due to invalid IL or missing references) //IL_1405: Unknown result type (might be due to invalid IL or missing references) //IL_140b: Unknown result type (might be due to invalid IL or missing references) //IL_1415: Unknown result type (might be due to invalid IL or missing references) //IL_141a: Unknown result type (might be due to invalid IL or missing references) //IL_1420: Unknown result type (might be due to invalid IL or missing references) //IL_1425: Unknown result type (might be due to invalid IL or missing references) //IL_142b: Unknown result type (might be due to invalid IL or missing references) //IL_1430: Unknown result type (might be due to invalid IL or missing references) //IL_1436: Unknown result type (might be due to invalid IL or missing references) //IL_143b: Unknown result type (might be due to invalid IL or missing references) //IL_1446: Unknown result type (might be due to invalid IL or missing references) //IL_144c: Unknown result type (might be due to invalid IL or missing references) //IL_1451: Unknown result type (might be due to invalid IL or missing references) //IL_1457: Unknown result type (might be due to invalid IL or missing references) //IL_1461: Unknown result type (might be due to invalid IL or missing references) //IL_1466: Unknown result type (might be due to invalid IL or missing references) //IL_146c: Unknown result type (might be due to invalid IL or missing references) //IL_1471: Unknown result type (might be due to invalid IL or missing references) //IL_1477: Unknown result type (might be due to invalid IL or missing references) //IL_1481: Unknown result type (might be due to invalid IL or missing references) //IL_1486: Unknown result type (might be due to invalid IL or missing references) //IL_148c: Unknown result type (might be due to invalid IL or missing references) //IL_1496: Unknown result type (might be due to invalid IL or missing references) //IL_149b: Unknown result type (might be due to invalid IL or missing references) //IL_14a1: Unknown result type (might be due to invalid IL or missing references) //IL_14a6: Unknown result type (might be due to invalid IL or missing references) //IL_14ac: Unknown result type (might be due to invalid IL or missing references) //IL_14b1: Unknown result type (might be due to invalid IL or missing references) //IL_14b6: Unknown result type (might be due to invalid IL or missing references) //IL_14c6: Unknown result type (might be due to invalid IL or missing references) //IL_14cc: Unknown result type (might be due to invalid IL or missing references) //IL_14d1: Unknown result type (might be due to invalid IL or missing references) //IL_14d7: Unknown result type (might be due to invalid IL or missing references) //IL_14e1: Unknown result type (might be due to invalid IL or missing references) //IL_14e6: Unknown result type (might be due to invalid IL or missing references) //IL_14ec: Unknown result type (might be due to invalid IL or missing references) //IL_14f6: Unknown result type (might be due to invalid IL or missing references) //IL_14fb: Unknown result type (might be due to invalid IL or missing references) //IL_1501: Unknown result type (might be due to invalid IL or missing references) //IL_150b: Unknown result type (might be due to invalid IL or missing references) //IL_1510: Unknown result type (might be due to invalid IL or missing references) //IL_1516: Unknown result type (might be due to invalid IL or missing references) //IL_151b: Unknown result type (might be due to invalid IL or missing references) //IL_1521: Unknown result type (might be due to invalid IL or missing references) //IL_1526: Unknown result type (might be due to invalid IL or missing references) //IL_152c: Unknown result type (might be due to invalid IL or missing references) //IL_1531: Unknown result type (might be due to invalid IL or missing references) //IL_153c: Unknown result type (might be due to invalid IL or missing references) //IL_1542: Unknown result type (might be due to invalid IL or missing references) //IL_1547: Unknown result type (might be due to invalid IL or missing references) //IL_154d: Unknown result type (might be due to invalid IL or missing references) //IL_1557: Unknown result type (might be due to invalid IL or missing references) //IL_155c: Unknown result type (might be due to invalid IL or missing references) //IL_1562: Unknown result type (might be due to invalid IL or missing references) //IL_156c: Unknown result type (might be due to invalid IL or missing references) //IL_1571: Unknown result type (might be due to invalid IL or missing references) //IL_1577: Unknown result type (might be due to invalid IL or missing references) //IL_1581: Unknown result type (might be due to invalid IL or missing references) //IL_1586: Unknown result type (might be due to invalid IL or missing references) //IL_158c: Unknown result type (might be due to invalid IL or missing references) //IL_1591: Unknown result type (might be due to invalid IL or missing references) //IL_1597: Unknown result type (might be due to invalid IL or missing references) //IL_159c: Unknown result type (might be due to invalid IL or missing references) //IL_15a2: Unknown result type (might be due to invalid IL or missing references) //IL_15a7: Unknown result type (might be due to invalid IL or missing references) //IL_15ac: Unknown result type (might be due to invalid IL or missing references) //IL_15bc: Unknown result type (might be due to invalid IL or missing references) //IL_15c2: Unknown result type (might be due to invalid IL or missing references) //IL_15c7: Unknown result type (might be due to invalid IL or missing references) //IL_15cd: Unknown result type (might be due to invalid IL or missing references) //IL_15d2: Unknown result type (might be due to invalid IL or missing references) //IL_15d8: Unknown result type (might be due to invalid IL or missing references) //IL_15dd: Unknown result type (might be due to invalid IL or missing references) //IL_15e3: Unknown result type (might be due to invalid IL or missing references) //IL_15ed: Unknown result type (might be due to invalid IL or missing references) //IL_15f2: Unknown result type (might be due to invalid IL or missing references) //IL_15f8: Unknown result type (might be due to invalid IL or missing references) //IL_1602: Unknown result type (might be due to invalid IL or missing references) //IL_1607: Unknown result type (might be due to invalid IL or missing references) //IL_160d: Unknown result type (might be due to invalid IL or missing references) //IL_1617: Unknown result type (might be due to invalid IL or missing references) //IL_161c: Unknown result type (might be due to invalid IL or missing references) //IL_1622: Unknown result type (might be due to invalid IL or missing references) //IL_1627: Unknown result type (might be due to invalid IL or missing references) //IL_162d: Unknown result type (might be due to invalid IL or missing references) //IL_1632: Unknown result type (might be due to invalid IL or missing references) //IL_163d: Unknown result type (might be due to invalid IL or missing references) //IL_1643: Unknown result type (might be due to invalid IL or missing references) //IL_1648: Unknown result type (might be due to invalid IL or missing references) //IL_164e: Unknown result type (might be due to invalid IL or missing references) //IL_1653: Unknown result type (might be due to invalid IL or missing references) //IL_1659: Unknown result type (might be due to invalid IL or missing references) //IL_165e: Unknown result type (might be due to invalid IL or missing references) //IL_1664: Unknown result type (might be due to invalid IL or missing references) //IL_166e: Unknown result type (might be due to invalid IL or missing references) //IL_1673: Unknown result type (might be due to invalid IL or missing references) //IL_1679: Unknown result type (might be due to invalid IL or missing references) //IL_167e: Unknown result type (might be due to invalid IL or missing references) //IL_1684: Unknown result type (might be due to invalid IL or missing references) //IL_168e: Unknown result type (might be due to invalid IL or missing references) //IL_1693: Unknown result type (might be due to invalid IL or missing references) //IL_1699: Unknown result type (might be due to invalid IL or missing references) //IL_16a3: Unknown result type (might be due to invalid IL or missing references) //IL_16a8: Unknown result type (might be due to invalid IL or missing references) //IL_16ae: Unknown result type (might be due to invalid IL or missing references) //IL_16b3: Unknown result type (might be due to invalid IL or missing references) //IL_16b8: Unknown result type (might be due to invalid IL or missing references) //IL_16c8: Unknown result type (might be due to invalid IL or missing references) //IL_16ce: Unknown result type (might be due to invalid IL or missing references) //IL_16d3: Unknown result type (might be due to invalid IL or missing references) //IL_16d9: Unknown result type (might be due to invalid IL or missing references) //IL_16de: Unknown result type (might be due to invalid IL or missing references) //IL_16e4: Unknown result type (might be due to invalid IL or missing references) //IL_16e9: Unknown result type (might be due to invalid IL or missing references) //IL_16ef: Unknown result type (might be due to invalid IL or missing references) //IL_16f9: Unknown result type (might be due to invalid IL or missing references) //IL_16fe: Unknown result type (might be due to invalid IL or missing references) //IL_1704: Unknown result type (might be due to invalid IL or missing references) //IL_170e: Unknown result type (might be due to invalid IL or missing references) //IL_1713: Unknown result type (might be due to invalid IL or missing references) //IL_1719: Unknown result type (might be due to invalid IL or missing references) //IL_1723: Unknown result type (might be due to invalid IL or missing references) //IL_1728: Unknown result type (might be due to invalid IL or missing references) //IL_172e: Unknown result type (might be due to invalid IL or missing references) //IL_1733: Unknown result type (might be due to invalid IL or missing references) //IL_1739: Unknown result type (might be due to invalid IL or missing references) //IL_173e: Unknown result type (might be due to invalid IL or missing references) //IL_1749: Unknown result type (might be due to invalid IL or missing references) //IL_174f: Unknown result type (might be due to invalid IL or missing references) //IL_1754: Unknown result type (might be due to invalid IL or missing references) //IL_175a: Unknown result type (might be due to invalid IL or missing references) //IL_175f: Unknown result type (might be due to invalid IL or missing references) //IL_1765: Unknown result type (might be due to invalid IL or missing references) //IL_176a: Unknown result type (might be due to invalid IL or missing references) //IL_1770: Unknown result type (might be due to invalid IL or missing references) //IL_177a: Unknown result type (might be due to invalid IL or missing references) //IL_177f: Unknown result type (might be due to invalid IL or missing references) //IL_1785: Unknown result type (might be due to invalid IL or missing references) //IL_178f: Unknown result type (might be due to invalid IL or missing references) //IL_1794: Unknown result type (might be due to invalid IL or missing references) //IL_179a: Unknown result type (might be due to invalid IL or missing references) //IL_17a4: Unknown result type (might be due to invalid IL or missing references) //IL_17a9: Unknown result type (might be due to invalid IL or missing references) //IL_17af: Unknown result type (might be due to invalid IL or missing references) //IL_17b4: Unknown result type (might be due to invalid IL or missing references) //IL_17ba: Unknown result type (might be due to invalid IL or missing references) //IL_17bf: Unknown result type (might be due to invalid IL or missing references) //IL_17c4: Unknown result type (might be due to invalid IL or missing references) //IL_17d4: Unknown result type (might be due to invalid IL or missing references) //IL_17da: Unknown result type (might be due to invalid IL or missing references) //IL_17df: Unknown result type (might be due to invalid IL or missing references) //IL_17e5: Unknown result type (might be due to invalid IL or missing references) //IL_17ef: Unknown result type (might be due to invalid IL or missing references) //IL_17f4: Unknown result type (might be due to invalid IL or missing references) //IL_17fa: Unknown result type (might be due to invalid IL or missing references) //IL_1804: Unknown result type (might be due to invalid IL or missing references) //IL_1809: Unknown result type (might be due to invalid IL or missing references) //IL_180f: Unknown result type (might be due to invalid IL or missing references) //IL_1819: Unknown result type (might be due to invalid IL or missing references) //IL_181e: Unknown result type (might be due to invalid IL or missing references) //IL_1824: Unknown result type (might be due to invalid IL or missing references) //IL_1829: Unknown result type (might be due to invalid IL or missing references) //IL_182f: Unknown result type (might be due to invalid IL or missing references) //IL_1834: Unknown result type (might be due to invalid IL or missing references) //IL_183a: Unknown result type (might be due to invalid IL or missing references) //IL_183f: Unknown result type (might be due to invalid IL or missing references) //IL_184a: Unknown result type (might be due to invalid IL or missing references) //IL_1850: Unknown result type (might be due to invalid IL or missing references) //IL_1855: Unknown result type (might be due to invalid IL or missing references) //IL_185b: Unknown result type (might be due to invalid IL or missing references) //IL_1865: Unknown result type (might be due to invalid IL or missing references) //IL_186a: Unknown result type (might be due to invalid IL or missing references) //IL_1870: Unknown result type (might be due to invalid IL or missing references) //IL_1875: Unknown result type (might be due to invalid IL or missing references) //IL_187b: Unknown result type (might be due to invalid IL or missing references) //IL_1885: Unknown result type (might be due to invalid IL or missing references) //IL_188a: Unknown result type (might be due to invalid IL or missing references) //IL_1890: Unknown result type (might be due to invalid IL or missing references) //IL_189a: Unknown result type (might be due to invalid IL or missing references) //IL_189f: Unknown result type (might be due to invalid IL or missing references) //IL_18a5: Unknown result type (might be due to invalid IL or missing references) //IL_18aa: Unknown result type (might be due to invalid IL or missing references) //IL_18b0: Unknown result type (might be due to invalid IL or missing references) //IL_18b5: Unknown result type (might be due to invalid IL or missing references) //IL_18ba: Unknown result type (might be due to invalid IL or missing references) //IL_18ca: Unknown result type (might be due to invalid IL or missing references) //IL_18d0: Unknown result type (might be due to invalid IL or missing references) //IL_18d5: Unknown result type (might be due to invalid IL or missing references) //IL_18db: Unknown result type (might be due to invalid IL or missing references) //IL_18e5: Unknown result type (might be due to invalid IL or missing references) //IL_18ea: Unknown result type (might be due to invalid IL or missing references) //IL_18f0: Unknown result type (might be due to invalid IL or missing references) //IL_18fa: Unknown result type (might be due to invalid IL or missing references) //IL_18ff: Unknown result type (might be due to invalid IL or missing references) //IL_1905: Unknown result type (might be due to invalid IL or missing references) //IL_190f: Unknown result type (might be due to invalid IL or missing references) //IL_1914: Unknown result type (might be due to invalid IL or missing references) //IL_191a: Unknown result type (might be due to invalid IL or missing references) //IL_191f: Unknown result type (might be due to invalid IL or missing references) //IL_1925: Unknown result type (might be due to invalid IL or missing references) //IL_192a: Unknown result type (might be due to invalid IL or missing references) //IL_1930: Unknown result type (might be due to invalid IL or missing references) //IL_1935: Unknown result type (might be due to invalid IL or missing references) //IL_1940: Unknown result type (might be due to invalid IL or missing references) //IL_1946: Unknown result type (might be due to invalid IL or missing references) //IL_194b: Unknown result type (might be due to invalid IL or missing references) //IL_1951: Unknown result type (might be due to invalid IL or missing references) //IL_195b: Unknown result type (might be due to invalid IL or missing references) //IL_1960: Unknown result type (might be due to invalid IL or missing references) //IL_1966: Unknown result type (might be due to invalid IL or missing references) //IL_1970: Unknown result type (might be due to invalid IL or missing references) //IL_1975: Unknown result type (might be due to invalid IL or missing references) //IL_197b: Unknown result type (might be due to invalid IL or missing references) //IL_1985: Unknown result type (might be due to invalid IL or missing references) //IL_198a: Unknown result type (might be due to invalid IL or missing references) //IL_1990: Unknown result type (might be due to invalid IL or missing references) //IL_1995: Unknown result type (might be due to invalid IL or missing references) //IL_199b: Unknown result type (might be due to invalid IL or missing references) //IL_19a0: Unknown result type (might be due to invalid IL or missing references) //IL_19a6: Unknown result type (might be due to invalid IL or missing references) //IL_19ab: Unknown result type (might be due to invalid IL or missing references) //IL_19b0: Unknown result type (might be due to invalid IL or missing references) //IL_19c0: Unknown result type (might be due to invalid IL or missing references) //IL_19c6: Unknown result type (might be due to invalid IL or missing references) //IL_19cb: Unknown result type (might be due to invalid IL or missing references) //IL_19d1: Unknown result type (might be due to invalid IL or missing references) //IL_19d6: Unknown result type (might be due to invalid IL or missing references) //IL_19dc: Unknown result type (might be due to invalid IL or missing references) //IL_19e1: Unknown result type (might be due to invalid IL or missing references) //IL_19e7: Unknown result type (might be due to invalid IL or missing references) //IL_19f1: Unknown result type (might be due to invalid IL or missing references) //IL_19f6: Unknown result type (might be due to invalid IL or missing references) //IL_19fc: Unknown result type (might be due to invalid IL or missing references) //IL_1a06: Unknown result type (might be due to invalid IL or missing references) //IL_1a0b: Unknown result type (might be due to invalid IL or missing references) //IL_1a11: Unknown result type (might be due to invalid IL or missing references) //IL_1a16: Unknown result type (might be due to invalid IL or missing references) //IL_1a1c: Unknown result type (might be due to invalid IL or missing references) //IL_1a21: Unknown result type (might be due to invalid IL or missing references) //IL_1a2c: Unknown result type (might be due to invalid IL or missing references) //IL_1a32: Unknown result type (might be due to invalid IL or missing references) //IL_1a37: Unknown result type (might be due to invalid IL or missing references) //IL_1a3d: Unknown result type (might be due to invalid IL or missing references) //IL_1a42: Unknown result type (might be due to invalid IL or missing references) //IL_1a48: Unknown result type (might be due to invalid IL or missing references) //IL_1a4d: Unknown result type (might be due to invalid IL or missing references) //IL_1a53: Unknown result type (might be due to invalid IL or missing references) //IL_1a5d: Unknown result type (might be due to invalid IL or missing references) //IL_1a62: Unknown result type (might be due to invalid IL or missing references) //IL_1a68: Unknown result type (might be due to invalid IL or missing references) //IL_1a6d: Unknown result type (might be due to invalid IL or missing references) //IL_1a73: Unknown result type (might be due to invalid IL or missing references) //IL_1a7d: Unknown result type (might be due to invalid IL or missing references) //IL_1a82: Unknown result type (might be due to invalid IL or missing references) //IL_1a88: Unknown result type (might be due to invalid IL or missing references) //IL_1a8d: Unknown result type (might be due to invalid IL or missing references) //IL_1a92: Unknown result type (might be due to invalid IL or missing references) //IL_1aa2: Unknown result type (might be due to invalid IL or missing references) //IL_1aa8: Unknown result type (might be due to invalid IL or missing references) //IL_1aad: Unknown result type (might be due to invalid IL or missing references) //IL_1ab3: Unknown result type (might be due to invalid IL or missing references) //IL_1ab8: Unknown result type (might be due to invalid IL or missing references) //IL_1abe: Unknown result type (might be due to invalid IL or missing references) //IL_1ac3: Unknown result type (might be due to invalid IL or missing references) //IL_1ac9: Unknown result type (might be due to invalid IL or missing references) //IL_1ad3: Unknown result type (might be due to invalid IL or missing references) //IL_1ad8: Unknown result type (might be due to invalid IL or missing references) //IL_1ade: Unknown result type (might be due to invalid IL or missing references) //IL_1ae8: Unknown result type (might be due to invalid IL or missing references) //IL_1aed: Unknown result type (might be due to invalid IL or missing references) //IL_1af3: Unknown result type (might be due to invalid IL or missing references) //IL_1af8: Unknown result type (might be due to invalid IL or missing references) //IL_1afe: Unknown result type (might be due to invalid IL or missing references) //IL_1b03: Unknown result type (might be due to invalid IL or missing references) //IL_1b0e: Unknown result type (might be due to invalid IL or missing references) //IL_1b14: Unknown result type (might be due to invalid IL or missing references) //IL_1b19: Unknown result type (might be due to invalid IL or missing references) //IL_1b1f: Unknown result type (might be due to invalid IL or missing references) //IL_1b24: Unknown result type (might be due to invalid IL or missing references) //IL_1b2a: Unknown result type (might be due to invalid IL or missing references) //IL_1b2f: Unknown result type (might be due to invalid IL or missing references) //IL_1b35: Unknown result type (might be due to invalid IL or missing references) //IL_1b3f: Unknown result type (might be due to invalid IL or missing references) //IL_1b44: Unknown result type (might be due to invalid IL or missing references) //IL_1b4a: Unknown result type (might be due to invalid IL or missing references) //IL_1b54: Unknown result type (might be due to invalid IL or missing references) //IL_1b59: Unknown result type (might be due to invalid IL or missing references) //IL_1b5f: Unknown result type (might be due to invalid IL or missing references) //IL_1b64: Unknown result type (might be due to invalid IL or missing references) //IL_1b6a: Unknown result type (might be due to invalid IL or missing references) //IL_1b6f: Unknown result type (might be due to invalid IL or missing references) //IL_1b74: Unknown result type (might be due to invalid IL or missing references) //IL_1b84: Unknown result type (might be due to invalid IL or missing references) //IL_1b8a: Unknown result type (might be due to invalid IL or missing references) //IL_1b8f: Unknown result type (might be due to invalid IL or missing references) //IL_1b95: Unknown result type (might be due to invalid IL or missing references) //IL_1b9f: Unknown result type (might be due to invalid IL or missing references) //IL_1ba4: Unknown result type (might be due to invalid IL or missing references) //IL_1baa: Unknown result type (might be due to invalid IL or missing references) //IL_1bb4: Unknown result type (might be due to invalid IL or missing references) //IL_1bb9: Unknown result type (might be due to invalid IL or missing references) //IL_1bbf: Unknown result type (might be due to invalid IL or missing references) //IL_1bc4: Unknown result type (might be due to invalid IL or missing references) //IL_1bca: Unknown result type (might be due to invalid IL or missing references) //IL_1bcf: Unknown result type (might be due to invalid IL or missing references) //IL_1bd5: Unknown result type (might be due to invalid IL or missing references) //IL_1bda: Unknown result type (might be due to invalid IL or missing references) //IL_1be5: Unknown result type (might be due to invalid IL or missing references) //IL_1beb: Unknown result type (might be due to invalid IL or missing references) //IL_1bf0: Unknown result type (might be due to invalid IL or missing references) //IL_1bf6: Unknown result type (might be due to invalid IL or missing references) //IL_1c00: Unknown result type (might be due to invalid IL or missing references) //IL_1c05: Unknown result type (might be due to invalid IL or missing references) //IL_1c0b: Unknown result type (might be due to invalid IL or missing references) //IL_1c10: Unknown result type (might be due to invalid IL or missing references) //IL_1c16: Unknown result type (might be due to invalid IL or missing references) //IL_1c20: Unknown result type (might be due to invalid IL or missing references) //IL_1c25: Unknown result type (might be due to invalid IL or missing references) //IL_1c2b: Unknown result type (might be due to invalid IL or missing references) //IL_1c30: Unknown result type (might be due to invalid IL or missing references) //IL_1c36: Unknown result type (might be due to invalid IL or missing references) //IL_1c3b: Unknown result type (might be due to invalid IL or missing references) //IL_1c40: Unknown result type (might be due to invalid IL or missing references) //IL_1c50: Unknown result type (might be due to invalid IL or missing references) //IL_1c56: Unknown result type (might be due to invalid IL or missing references) //IL_1c5b: Unknown result type (might be due to invalid IL or missing references) //IL_1c61: Unknown result type (might be due to invalid IL or missing references) //IL_1c6b: Unknown result type (might be due to invalid IL or missing references) //IL_1c70: Unknown result type (might be due to invalid IL or missing references) //IL_1c76: Unknown result type (might be due to invalid IL or missing references) //IL_1c80: Unknown result type (might be due to invalid IL or missing references) //IL_1c85: Unknown result type (might be due to invalid IL or missing references) //IL_1c8b: Unknown result type (might be due to invalid IL or missing references) //IL_1c90: Unknown result type (might be due to invalid IL or missing references) //IL_1c96: Unknown result type (might be due to invalid IL or missing references) //IL_1c9b: Unknown result type (might be due to invalid IL or missing references) //IL_1ca1: Unknown result type (might be due to invalid IL or missing references) //IL_1ca6: Unknown result type (might be due to invalid IL or missing references) //IL_1cb1: Unknown result type (might be due to invalid IL or missing references) //IL_1cb7: Unknown result type (might be due to invalid IL or missing references) //IL_1cbc: Unknown result type (might be due to invalid IL or missing references) //IL_1cc2: Unknown result type (might be due to invalid IL or missing references) //IL_1ccc: Unknown result type (might be due to invalid IL or missing references) //IL_1cd1: Unknown result type (might be due to invalid IL or missing references) //IL_1cd7: Unknown result type (might be due to invalid IL or missing references) //IL_1ce1: Unknown result type (might be due to invalid IL or missing references) //IL_1ce6: Unknown result type (might be due to invalid IL or missing references) //IL_1cec: Unknown result type (might be due to invalid IL or missing references) //IL_1cf1: Unknown result type (might be due to invalid IL or missing references) //IL_1cf7: Unknown result type (might be due to invalid IL or missing references) //IL_1cfc: Unknown result type (might be due to invalid IL or missing references) //IL_1d02: Unknown result type (might be due to invalid IL or missing references) //IL_1d07: Unknown result type (might be due to invalid IL or missing references) //IL_1d0c: Unknown result type (might be due to invalid IL or missing references) //IL_1d1c: Unknown result type (might be due to invalid IL or missing references) //IL_1d22: Unknown result type (might be due to invalid IL or missing references) //IL_1d27: Unknown result type (might be due to invalid IL or missing references) //IL_1d2d: Unknown result type (might be due to invalid IL or missing references) //IL_1d32: Unknown result type (might be due to invalid IL or missing references) //IL_1d38: Unknown result type (might be due to invalid IL or missing references) //IL_1d3d: Unknown result type (might be due to invalid IL or missing references) //IL_1d43: Unknown result type (might be due to invalid IL or missing references) //IL_1d4d: Unknown result type (might be due to invalid IL or missing references) //IL_1d52: Unknown result type (might be due to invalid IL or missing references) //IL_1d58: Unknown result type (might be due to invalid IL or missing references) //IL_1d62: Unknown result type (might be due to invalid IL or missing references) //IL_1d67: Unknown result type (might be due to invalid IL or missing references) //IL_1d6d: Unknown result type (might be due to invalid IL or missing references) //IL_1d77: Unknown result type (might be due to invalid IL or missing references) //IL_1d7c: Unknown result type (might be due to invalid IL or missing references) //IL_1d82: Unknown result type (might be due to invalid IL or missing references) //IL_1d87: Unknown result type (might be due to invalid IL or missing references) //IL_1d8d: Unknown result type (might be due to invalid IL or missing references) //IL_1d92: Unknown result type (might be due to invalid IL or missing references) //IL_1d9d: Unknown result type (might be due to invalid IL or missing references) //IL_1da3: Unknown result type (might be due to invalid IL or missing references) //IL_1da8: Unknown result type (might be due to invalid IL or missing references) //IL_1dae: Unknown result type (might be due to invalid IL or missing references) //IL_1db3: Unknown result type (might be due to invalid IL or missing references) //IL_1db9: Unknown result type (might be due to invalid IL or missing references) //IL_1dbe: Unknown result type (might be due to invalid IL or missing references) //IL_1dc4: Unknown result type (might be due to invalid IL or missing references) //IL_1dce: Unknown result type (might be due to invalid IL or missing references) //IL_1dd3: Unknown result type (might be due to invalid IL or missing references) //IL_1dd9: Unknown result type (might be due to invalid IL or missing references) //IL_1dde: Unknown result type (might be due to invalid IL or missing references) //IL_1de4: Unknown result type (might be due to invalid IL or missing references) //IL_1dee: Unknown result type (might be due to invalid IL or missing references) //IL_1df3: Unknown result type (might be due to invalid IL or missing references) //IL_1df9: Unknown result type (might be due to invalid IL or missing references) //IL_1e03: Unknown result type (might be due to invalid IL or missing references) //IL_1e08: Unknown result type (might be due to invalid IL or missing references) //IL_1e0e: Unknown result type (might be due to invalid IL or missing references) //IL_1e13: Unknown result type (might be due to invalid IL or missing references) //IL_1e18: Unknown result type (might be due to invalid IL or missing references) //IL_1e28: Unknown result type (might be due to invalid IL or missing references) //IL_1e2e: Unknown result type (might be due to invalid IL or missing references) //IL_1e33: Unknown result type (might be due to invalid IL or missing references) //IL_1e39: Unknown result type (might be due to invalid IL or missing references) //IL_1e3e: Unknown result type (might be due to invalid IL or missing references) //IL_1e44: Unknown result type (might be due to invalid IL or missing references) //IL_1e49: Unknown result type (might be due to invalid IL or missing references) //IL_1e4f: Unknown result type (might be due to invalid IL or missing references) //IL_1e59: Unknown result type (might be due to invalid IL or missing references) //IL_1e5e: Unknown result type (might be due to invalid IL or missing references) //IL_1e64: Unknown result type (might be due to invalid IL or missing references) //IL_1e6e: Unknown result type (might be due to invalid IL or missing references) //IL_1e73: Unknown result type (might be due to invalid IL or missing references) //IL_1e79: Unknown result type (might be due to invalid IL or missing references) //IL_1e83: Unknown result type (might be due to invalid IL or missing references) //IL_1e88: Unknown result type (might be due to invalid IL or missing references) //IL_1e8e: Unknown result type (might be due to invalid IL or missing references) //IL_1e93: Unknown result type (might be due to invalid IL or missing references) //IL_1e99: Unknown result type (might be due to invalid IL or missing references) //IL_1e9e: Unknown result type (might be due to invalid IL or missing references) //IL_1ea9: Unknown result type (might be due to invalid IL or missing references) //IL_1eaf: Unknown result type (might be due to invalid IL or missing references) //IL_1eb4: Unknown result type (might be due to invalid IL or missing references) //IL_1eba: Unknown result type (might be due to invalid IL or missing references) //IL_1ebf: Unknown result type (might be due to invalid IL or missing references) //IL_1ec5: Unknown result type (might be due to invalid IL or missing references) //IL_1eca: Unknown result type (might be due to invalid IL or missing references) //IL_1ed0: Unknown result type (might be due to invalid IL or missing references) //IL_1eda: Unknown result type (might be due to invalid IL or missing references) //IL_1edf: Unknown result type (might be due to invalid IL or missing references) //IL_1ee5: Unknown result type (might be due to invalid IL or missing references) //IL_1eef: Unknown result type (might be due to invalid IL or missing references) //IL_1ef4: Unknown result type (might be due to invalid IL or missing references) //IL_1efa: Unknown result type (might be due to invalid IL or missing references) //IL_1f04: Unknown result type (might be due to invalid IL or missing references) //IL_1f09: Unknown result type (might be due to invalid IL or missing references) //IL_1f0f: Unknown result type (might be due to invalid IL or missing references) //IL_1f14: Unknown result type (might be due to invalid IL or missing references) //IL_1f1a: Unknown result type (might be due to invalid IL or missing references) //IL_1f1f: Unknown result type (might be due to invalid IL or missing references) //IL_1f24: Unknown result type (might be due to invalid IL or missing references) //IL_1f34: Unknown result type (might be due to invalid IL or missing references) //IL_1f3a: Unknown result type (might be due to invalid IL or missing references) //IL_1f3f: Unknown result type (might be due to invalid IL or missing references) //IL_1f45: Unknown result type (might be due to invalid IL or missing references) //IL_1f4f: Unknown result type (might be due to invalid IL or missing references) //IL_1f54: Unknown result type (might be due to invalid IL or missing references) //IL_1f5a: Unknown result type (might be due to invalid IL or missing references) //IL_1f64: Unknown result type (might be due to invalid IL or missing references) //IL_1f69: Unknown result type (might be due to invalid IL or missing references) //IL_1f6f: Unknown result type (might be due to invalid IL or missing references) //IL_1f79: Unknown result type (might be due to invalid IL or missing references) //IL_1f7e: Unknown result type (might be due to invalid IL or missing references) //IL_1f84: Unknown result type (might be due to invalid IL or missing references) //IL_1f89: Unknown result type (might be due to invalid IL or missing references) //IL_1f8f: Unknown result type (might be due to invalid IL or missing references) //IL_1f94: Unknown result type (might be due to invalid IL or missing references) //IL_1f9a: Unknown result type (might be due to invalid IL or missing references) //IL_1f9f: Unknown result type (might be due to invalid IL or missing references) //IL_1faa: Unknown result type (might be due to invalid IL or missing references) //IL_1fb0: Unknown result type (might be due to invalid IL or missing references) //IL_1fb5: Unknown result type (might be due to invalid IL or missing references) //IL_1fbb: Unknown result type (might be due to invalid IL or missing references) //IL_1fc5: Unknown result type (might be due to invalid IL or missing references) //IL_1fca: Unknown result type (might be due to invalid IL or missing references) //IL_1fd0: Unknown result type (might be due to invalid IL or missing references) //IL_1fd5: Unknown result type (might be due to invalid IL or missing references) //IL_1fdb: Unknown result type (might be due to invalid IL or missing references) //IL_1fe5: Unknown result type (might be due to invalid IL or missing references) //IL_1fea: Unknown result type (might be due to invalid IL or missing references) //IL_1ff0: Unknown result type (might be due to invalid IL or missing references) //IL_1ffa: Unknown result type (might be due to invalid IL or missing references) //IL_1fff: Unknown result type (might be due to invalid IL or missing references) //IL_2005: Unknown result type (might be due to invalid IL or missing references) //IL_200a: Unknown result type (might be due to invalid IL or missing references) //IL_2010: Unknown result type (might be due to invalid IL or missing references) //IL_2015: Unknown result type (might be due to invalid IL or missing references) //IL_201a: Unknown result type (might be due to invalid IL or missing references) //IL_202a: Unknown result type (might be due to invalid IL or missing references) //IL_2030: Unknown result type (might be due to invalid IL or missing references) //IL_2035: Unknown result type (might be due to invalid IL or missing references) //IL_203b: Unknown result type (might be due to invalid IL or missing references) //IL_2045: Unknown result type (might be due to invalid IL or missing references) //IL_204a: Unknown result type (might be due to invalid IL or missing references) //IL_2050: Unknown result type (might be due to invalid IL or missing references) //IL_205a: Unknown result type (might be due to invalid IL or missing references) //IL_205f: Unknown result type (might be due to invalid IL or missing references) //IL_2065: Unknown result type (might be due to invalid IL or missing references) //IL_206f: Unknown result type (might be due to invalid IL or missing references) //IL_2074: Unknown result type (might be due to invalid IL or missing references) //IL_207a: Unknown result type (might be due to invalid IL or missing references) //IL_207f: Unknown result type (might be due to invalid IL or missing references) //IL_2085: Unknown result type (might be due to invalid IL or missing references) //IL_208a: Unknown result type (might be due to invalid IL or missing references) //IL_2090: Unknown result type (might be due to invalid IL or missing references) //IL_2095: Unknown result type (might be due to invalid IL or missing references) //IL_20a0: Unknown result type (might be due to invalid IL or missing references) //IL_20a6: Unknown result type (might be due to invalid IL or missing references) //IL_20ab: Unknown result type (might be due to invalid IL or missing references) //IL_20b1: Unknown result type (might be due to invalid IL or missing references) //IL_20bb: Unknown result type (might be due to invalid IL or missing references) //IL_20c0: Unknown result type (might be due to invalid IL or missing references) //IL_20c6: Unknown result type (might be due to invalid IL or missing references) //IL_20d0: Unknown result type (might be due to invalid IL or missing references) //IL_20d5: Unknown result type (might be due to invalid IL or missing references) //IL_20db: Unknown result type (might be due to invalid IL or missing references) //IL_20e5: Unknown result type (might be due to invalid IL or missing references) //IL_20ea: Unknown result type (might be due to invalid IL or missing references) //IL_20f0: Unknown result type (might be due to invalid IL or missing references) //IL_20f5: Unknown result type (might be due to invalid IL or missing references) //IL_20fb: Unknown result type (might be due to invalid IL or missing references) //IL_2100: Unknown result type (might be due to invalid IL or missing references) //IL_2106: Unknown result type (might be due to invalid IL or missing references) //IL_210b: Unknown result type (might be due to invalid IL or missing references) //IL_2110: Unknown result type (might be due to invalid IL or missing references) //IL_2120: Unknown result type (might be due to invalid IL or missing references) //IL_2126: Unknown result type (might be due to invalid IL or missing references) //IL_212b: Unknown result type (might be due to invalid IL or missing references) //IL_2131: Unknown result type (might be due to invalid IL or missing references) //IL_2136: Unknown result type (might be due to invalid IL or missing references) //IL_213c: Unknown result type (might be due to invalid IL or missing references) //IL_2141: Unknown result type (might be due to invalid IL or missing references) //IL_2147: Unknown result type (might be due to invalid IL or missing references) //IL_2151: Unknown result type (might be due to invalid IL or missing references) //IL_2156: Unknown result type (might be due to invalid IL or missing references) //IL_215c: Unknown result type (might be due to invalid IL or missing references) //IL_2166: Unknown result type (might be due to invalid IL or missing references) //IL_216b: Unknown result type (might be due to invalid IL or missing references) //IL_2171: Unknown result type (might be due to invalid IL or missing references) //IL_217b: Unknown result type (might be due to invalid IL or missing references) //IL_2180: Unknown result type (might be due to invalid IL or missing references) //IL_2186: Unknown result type (might be due to invalid IL or missing references) //IL_218b: Unknown result type (might be due to invalid IL or missing references) //IL_2191: Unknown result type (might be due to invalid IL or missing references) //IL_2196: Unknown result type (might be due to invalid IL or missing references) //IL_21a1: Unknown result type (might be due to invalid IL or missing references) //IL_21a7: Unknown result type (might be due to invalid IL or missing references) //IL_21ac: Unknown result type (might be due to invalid IL or missing references) //IL_21b2: Unknown result type (might be due to invalid IL or missing references) //IL_21b7: Unknown result type (might be due to invalid IL or missing references) //IL_21bd: Unknown result type (might be due to invalid IL or missing references) //IL_21c2: Unknown result type (might be due to invalid IL or missing references) //IL_21c8: Unknown result type (might be due to invalid IL or missing references) //IL_21d2: Unknown result type (might be due to invalid IL or missing references) //IL_21d7: Unknown result type (might be due to invalid IL or missing references) //IL_21dd: Unknown result type (might be due to invalid IL or missing references) //IL_21e2: Unknown result type (might be due to invalid IL or missing references) //IL_21e8: Unknown result type (might be due to invalid IL or missing references) //IL_21f2: Unknown result type (might be due to invalid IL or missing references) //IL_21f7: Unknown result type (might be due to invalid IL or missing references) //IL_21fd: Unknown result type (might be due to invalid IL or missing references) //IL_2207: Unknown result type (might be due to invalid IL or missing references) //IL_220c: Unknown result type (might be due to invalid IL or missing references) //IL_2212: Unknown result type (might be due to invalid IL or missing references) //IL_2217: Unknown result type (might be due to invalid IL or missing references) //IL_221c: Unknown result type (might be due to invalid IL or missing references) //IL_222c: Unknown result type (might be due to invalid IL or missing references) //IL_2232: Unknown result type (might be due to invalid IL or missing references) //IL_2237: Unknown result type (might be due to invalid IL or missing references) //IL_223d: Unknown result type (might be due to invalid IL or missing references) //IL_2242: Unknown result type (might be due to invalid IL or missing references) //IL_2248: Unknown result type (might be due to invalid IL or missing references) //IL_224d: Unknown result type (might be due to invalid IL or missing references) //IL_2253: Unknown result type (might be due to invalid IL or missing references) //IL_225d: Unknown result type (might be due to invalid IL or missing references) //IL_2262: Unknown result type (might be due to invalid IL or missing references) //IL_2268: Unknown result type (might be due to invalid IL or missing references) //IL_2272: Unknown result type (might be due to invalid IL or missing references) //IL_2277: Unknown result type (might be due to invalid IL or missing references) //IL_227d: Unknown result type (might be due to invalid IL or missing references) //IL_2287: Unknown result type (might be due to invalid IL or missing references) //IL_228c: Unknown result type (might be due to invalid IL or missing references) //IL_2292: Unknown result type (might be due to invalid IL or missing references) //IL_2297: Unknown result type (might be due to invalid IL or missing references) //IL_229d: Unknown result type (might be due to invalid IL or missing references) //IL_22a2: Unknown result type (might be due to invalid IL or missing references) //IL_22ad: Unknown result type (might be due to invalid IL or missing references) //IL_22b3: Unknown result type (might be due to invalid IL or missing references) //IL_22b8: Unknown result type (might be due to invalid IL or missing references) //IL_22be: Unknown result type (might be due to invalid IL or missing references) //IL_22c3: Unknown result type (might be due to invalid IL or missing references) //IL_22c9: Unknown result type (might be due to invalid IL or missing references) //IL_22ce: Unknown result type (might be due to invalid IL or missing references) //IL_22d4: Unknown result type (might be due to invalid IL or missing references) //IL_22de: Unknown result type (might be due to invalid IL or missing references) //IL_22e3: Unknown result type (might be due to invalid IL or missing references) //IL_22e9: Unknown result type (might be due to invalid IL or missing references) //IL_22f3: Unknown result type (might be due to invalid IL or missing references) //IL_22f8: Unknown result type (might be due to invalid IL or missing references) //IL_22fe: Unknown result type (might be due to invalid IL or missing references) //IL_2308: Unknown result type (might be due to invalid IL or missing references) //IL_230d: Unknown result type (might be due to invalid IL or missing references) //IL_2313: Unknown result type (might be due to invalid IL or missing references) //IL_2318: Unknown result type (might be due to invalid IL or missing references) //IL_231e: Unknown result type (might be due to invalid IL or missing references) //IL_2323: Unknown result type (might be due to invalid IL or missing references) //IL_2328: Unknown result type (might be due to invalid IL or missing references) //IL_2338: Unknown result type (might be due to invalid IL or missing references) //IL_233e: Unknown result type (might be due to invalid IL or missing references) //IL_2343: Unknown result type (might be due to invalid IL or missing references) //IL_2349: Unknown result type (might be due to invalid IL or missing references) //IL_2353: Unknown result type (might be due to invalid IL or missing references) //IL_2358: Unknown result type (might be due to invalid IL or missing references) //IL_235e: Unknown result type (might be due to invalid IL or missing references) //IL_2368: Unknown result type (might be due to invalid IL or missing references) //IL_236d: Unknown result type (might be due to invalid IL or missing references) //IL_2373: Unknown result type (might be due to invalid IL or missing references) //IL_237d: Unknown result type (might be due to invalid IL or missing references) //IL_2382: Unknown result type (might be due to invalid IL or missing references) //IL_2388: Unknown result type (might be due to invalid IL or missing references) //IL_238d: Unknown result type (might be due to invalid IL or missing references) //IL_2393: Unknown result type (might be due to invalid IL or missing references) //IL_2398: Unknown result type (might be due to invalid IL or missing references) //IL_239e: Unknown result type (might be due to invalid IL or missing references) //IL_23a3: Unknown result type (might be due to invalid IL or missing references) //IL_23ae: Unknown result type (might be due to invalid IL or missing references) //IL_23b4: Unknown result type (might be due to invalid IL or missing references) //IL_23b9: Unknown result type (might be due to invalid IL or missing references) //IL_23bf: Unknown result type (might be due to invalid IL or missing references) //IL_23c9: Unknown result type (might be due to invalid IL or missing references) //IL_23ce: Unknown result type (might be due to invalid IL or missing references) //IL_23d4: Unknown result type (might be due to invalid IL or missing references) //IL_23d9: Unknown result type (might be due to invalid IL or missing references) //IL_23df: Unknown result type (might be due to invalid IL or missing references) //IL_23e9: Unknown result type (might be due to invalid IL or missing references) //IL_23ee: Unknown result type (might be due to invalid IL or missing references) //IL_23f4: Unknown result type (might be due to invalid IL or missing references) //IL_23fe: Unknown result type (might be due to invalid IL or missing references) //IL_2403: Unknown result type (might be due to invalid IL or missing references) //IL_2409: Unknown result type (might be due to invalid IL or missing references) //IL_240e: Unknown result type (might be due to invalid IL or missing references) //IL_2414: Unknown result type (might be due to invalid IL or missing references) //IL_2419: Unknown result type (might be due to invalid IL or missing references) //IL_241e: Unknown result type (might be due to invalid IL or missing references) //IL_242e: Unknown result type (might be due to invalid IL or missing references) //IL_2434: Unknown result type (might be due to invalid IL or missing references) //IL_2439: Unknown result type (might be due to invalid IL or missing references) //IL_243f: Unknown result type (might be due to invalid IL or missing references) //IL_2449: Unknown result type (might be due to invalid IL or missing references) //IL_244e: Unknown result type (might be due to invalid IL or missing references) //IL_2454: Unknown result type (might be due to invalid IL or missing references) //IL_245e: Unknown result type (might be due to invalid IL or missing references) //IL_2463: Unknown result type (might be due to invalid IL or missing references) //IL_2469: Unknown result type (might be due to invalid IL or missing references) //IL_2473: Unknown result type (might be due to invalid IL or missing references) //IL_2478: Unknown result type (might be due to invalid IL or missing references) //IL_247e: Unknown result type (might be due to invalid IL or missing references) //IL_2483: Unknown result type (might be due to invalid IL or missing references) //IL_2489: Unknown result type (might be due to invalid IL or missing references) //IL_248e: Unknown result type (might be due to invalid IL or missing references) //IL_2494: Unknown result type (might be due to invalid IL or missing references) //IL_2499: Unknown result type (might be due to invalid IL or missing references) //IL_24a4: Unknown result type (might be due to invalid IL or missing references) //IL_24aa: Unknown result type (might be due to invalid IL or missing references) //IL_24af: Unknown result type (might be due to invalid IL or missing references) //IL_24b5: Unknown result type (might be due to invalid IL or missing references) //IL_24bf: Unknown result type (might be due to invalid IL or missing references) //IL_24c4: Unknown result type (might be due to invalid IL or missing references) //IL_24ca: Unknown result type (might be due to invalid IL or missing references) //IL_24d4: Unknown result type (might be due to invalid IL or missing references) //IL_24d9: Unknown result type (might be due to invalid IL or missing references) //IL_24df: Unknown result type (might be due to invalid IL or missing references) //IL_24e9: Unknown result type (might be due to invalid IL or missing references) //IL_24ee: Unknown result type (might be due to invalid IL or missing references) //IL_24f4: Unknown result type (might be due to invalid IL or missing references) //IL_24f9: Unknown result type (might be due to invalid IL or missing references) //IL_24ff: Unknown result type (might be due to invalid IL or missing references) //IL_2504: Unknown result type (might be due to invalid IL or missing references) //IL_250a: Unknown result type (might be due to invalid IL or missing references) //IL_250f: Unknown result type (might be due to invalid IL or missing references) //IL_2514: Unknown result type (might be due to invalid IL or missing references) //IL_2524: Unknown result type (might be due to invalid IL or missing references) //IL_252a: Unknown result type (might be due to invalid IL or missing references) //IL_252f: Unknown result type (might be due to invalid IL or missing references) //IL_2535: Unknown result type (might be due to invalid IL or missing references) //IL_253a: Unknown result type (might be due to invalid IL or missing references) //IL_2540: Unknown result type (might be due to invalid IL or missing references) //IL_2545: Unknown result type (might be due to invalid IL or missing references) //IL_254b: Unknown result type (might be due to invalid IL or missing references) //IL_2555: Unknown result type (might be due to invalid IL or missing references) //IL_255a: Unknown result type (might be due to invalid IL or missing references) //IL_2560: Unknown result type (might be due to invalid IL or missing references) //IL_256a: Unknown result type (might be due to invalid IL or missing references) //IL_256f: Unknown result type (might be due to invalid IL or missing references) //IL_2575: Unknown result type (might be due to invalid IL or missing references) //IL_257f: Unknown result type (might be due to invalid IL or missing references) //IL_2584: Unknown result type (might be due to invalid IL or missing references) //IL_258a: Unknown result type (might be due to invalid IL or missing references) //IL_258f: Unknown result type (might be due to invalid IL or missing references) //IL_2595: Unknown result type (might be due to invalid IL or missing references) //IL_259a: Unknown result type (might be due to invalid IL or missing references) //IL_25a5: Unknown result type (might be due to invalid IL or missing references) //IL_25ab: Unknown result type (might be due to invalid IL or missing references) //IL_25b0: Unknown result type (might be due to invalid IL or missing references) //IL_25b6: Unknown result type (might be due to invalid IL or missing references) //IL_25bb: Unknown result type (might be due to invalid IL or missing references) //IL_25c1: Unknown result type (might be due to invalid IL or missing references) //IL_25c6: Unknown result type (might be due to invalid IL or missing references) //IL_25cc: Unknown result type (might be due to invalid IL or missing references) //IL_25d6: Unknown result type (might be due to invalid IL or missing references) //IL_25db: Unknown result type (might be due to invalid IL or missing references) //IL_25e1: Unknown result type (might be due to invalid IL or missing references) //IL_25e6: Unknown result type (might be due to invalid IL or missing references) //IL_25ec: Unknown result type (might be due to invalid IL or missing references) //IL_25f6: Unknown result type (might be due to invalid IL or missing references) //IL_25fb: Unknown result type (might be due to invalid IL or missing references) //IL_2601: Unknown result type (might be due to invalid IL or missing references) //IL_260b: Unknown result type (might be due to invalid IL or missing references) //IL_2610: Unknown result type (might be due to invalid IL or missing references) //IL_2616: Unknown result type (might be due to invalid IL or missing references) //IL_261b: Unknown result type (might be due to invalid IL or missing references) //IL_2620: Unknown result type (might be due to invalid IL or missing references) //IL_2630: Unknown result type (might be due to invalid IL or missing references) //IL_2636: Unknown result type (might be due to invalid IL or missing references) //IL_263b: Unknown result type (might be due to invalid IL or missing references) //IL_2641: Unknown result type (might be due to invalid IL or missing references) //IL_2646: Unknown result type (might be due to invalid IL or missing references) //IL_264c: Unknown result type (might be due to invalid IL or missing references) //IL_2651: Unknown result type (might be due to invalid IL or missing references) //IL_2657: Unknown result type (might be due to invalid IL or missing references) //IL_2661: Unknown result type (might be due to invalid IL or missing references) //IL_2666: Unknown result type (might be due to invalid IL or missing references) //IL_266c: Unknown result type (might be due to invalid IL or missing references) //IL_2676: Unknown result type (might be due to invalid IL or missing references) //IL_267b: Unknown result type (might be due to invalid IL or missing references) //IL_2681: Unknown result type (might be due to invalid IL or missing references) //IL_268b: Unknown result type (might be due to invalid IL or missing references) //IL_2690: Unknown result type (might be due to invalid IL or missing references) //IL_2696: Unknown result type (might be due to invalid IL or missing references) //IL_269b: Unknown result type (might be due to invalid IL or missing references) //IL_26a1: Unknown result type (might be due to invalid IL or missing references) //IL_26a6: Unknown result type (might be due to invalid IL or missing references) //IL_26b1: Unknown result type (might be due to invalid IL or missing references) //IL_26b7: Unknown result type (might be due to invalid IL or missing references) //IL_26bc: Unknown result type (might be due to invalid IL or missing references) //IL_26c2: Unknown result type (might be due to invalid IL or missing references) //IL_26c7: Unknown result type (might be due to invalid IL or missing references) //IL_26cd: Unknown result type (might be due to invalid IL or missing references) //IL_26d2: Unknown result type (might be due to invalid IL or missing references) //IL_26d8: Unknown result type (might be due to invalid IL or missing references) //IL_26e2: Unknown result type (might be due to invalid IL or missing references) //IL_26e7: Unknown result type (might be due to invalid IL or missing references) //IL_26ed: Unknown result type (might be due to invalid IL or missing references) //IL_26f7: Unknown result type (might be due to invalid IL or missing references) //IL_26fc: Unknown result type (might be due to invalid IL or missing references) //IL_2702: Unknown result type (might be due to invalid IL or missing references) //IL_270c: Unknown result type (might be due to invalid IL or missing references) //IL_2711: Unknown result type (might be due to invalid IL or missing references) //IL_2717: Unknown result type (might be due to invalid IL or missing references) //IL_271c: Unknown result type (might be due to invalid IL or missing references) //IL_2722: Unknown result type (might be due to invalid IL or missing references) //IL_2727: Unknown result type (might be due to invalid IL or missing references) //IL_272c: Unknown result type (might be due to invalid IL or missing references) //IL_273c: Unknown result type (might be due to invalid IL or missing references) //IL_2742: Unknown result type (might be due to invalid IL or missing references) //IL_2747: Unknown result type (might be due to invalid IL or missing references) //IL_274d: Unknown result type (might be due to invalid IL or missing references) //IL_2757: Unknown result type (might be due to invalid IL or missing references) //IL_275c: Unknown result type (might be due to invalid IL or missing references) //IL_2762: Unknown result type (might be due to invalid IL or missing references) //IL_276c: Unknown result type (might be due to invalid IL or missing references) //IL_2771: Unknown result type (might be due to invalid IL or missing references) //IL_2777: Unknown result type (might be due to invalid IL or missing references) //IL_2781: Unknown result type (might be due to invalid IL or missing references) //IL_2786: Unknown result type (might be due to invalid IL or missing references) //IL_278c: Unknown result type (might be due to invalid IL or missing references) //IL_2791: Unknown result type (might be due to invalid IL or missing references) //IL_2797: Unknown result type (might be due to invalid IL or missing references) //IL_279c: Unknown result type (might be due to invalid IL or missing references) //IL_27a2: Unknown result type (might be due to invalid IL or missing references) //IL_27a7: Unknown result type (might be due to invalid IL or missing references) //IL_27b2: Unknown result type (might be due to invalid IL or missing references) //IL_27b8: Unknown result type (might be due to invalid IL or missing references) //IL_27bd: Unknown result type (might be due to invalid IL or missing references) //IL_27c3: Unknown result type (might be due to invalid IL or missing references) //IL_27cd: Unknown result type (might be due to invalid IL or missing references) //IL_27d2: Unknown result type (might be due to invalid IL or missing references) //IL_27d8: Unknown result type (might be due to invalid IL or missing references) //IL_27dd: Unknown result type (might be due to invalid IL or missing references) //IL_27e3: Unknown result type (might be due to invalid IL or missing references) //IL_27ed: Unknown result type (might be due to invalid IL or missing references) //IL_27f2: Unknown result type (might be due to invalid IL or missing references) //IL_27f8: Unknown result type (might be due to invalid IL or missing references) //IL_2802: Unknown result type (might be due to invalid IL or missing references) //IL_2807: Unknown result type (might be due to invalid IL or missing references) //IL_280d: Unknown result type (might be due to invalid IL or missing references) //IL_2812: Unknown result type (might be due to invalid IL or missing references) //IL_2818: Unknown result type (might be due to invalid IL or missing references) //IL_281d: Unknown result type (might be due to invalid IL or missing references) //IL_2822: Unknown result type (might be due to invalid IL or missing references) //IL_2832: Unknown result type (might be due to invalid IL or missing references) //IL_2838: Unknown result type (might be due to invalid IL or missing references) //IL_283d: Unknown result type (might be due to invalid IL or missing references) //IL_2843: Unknown result type (might be due to invalid IL or missing references) //IL_284d: Unknown result type (might be due to invalid IL or missing references) //IL_2852: Unknown result type (might be due to invalid IL or missing references) //IL_2858: Unknown result type (might be due to invalid IL or missing references) //IL_2862: Unknown result type (might be due to invalid IL or missing references) //IL_2867: Unknown result type (might be due to invalid IL or missing references) //IL_286d: Unknown result type (might be due to invalid IL or missing references) //IL_2877: Unknown result type (might be due to invalid IL or missing references) //IL_287c: Unknown result type (might be due to invalid IL or missing references) //IL_2882: Unknown result type (might be due to invalid IL or missing references) //IL_2887: Unknown result type (might be due to invalid IL or missing references) //IL_288d: Unknown result type (might be due to invalid IL or missing references) //IL_2892: Unknown result type (might be due to invalid IL or missing references) //IL_2898: Unknown result type (might be due to invalid IL or missing references) //IL_289d: Unknown result type (might be due to invalid IL or missing references) //IL_28a8: Unknown result type (might be due to invalid IL or missing references) //IL_28ae: Unknown result type (might be due to invalid IL or missing references) //IL_28b3: Unknown result type (might be due to invalid IL or missing references) //IL_28b9: Unknown result type (might be due to invalid IL or missing references) //IL_28c3: Unknown result type (might be due to invalid IL or missing references) //IL_28c8: Unknown result type (might be due to invalid IL or missing references) //IL_28ce: Unknown result type (might be due to invalid IL or missing references) //IL_28d8: Unknown result type (might be due to invalid IL or missing references) //IL_28dd: Unknown result type (might be due to invalid IL or missing references) //IL_28e3: Unknown result type (might be due to invalid IL or missing references) //IL_28ed: Unknown result type (might be due to invalid IL or missing references) //IL_28f2: Unknown result type (might be due to invalid IL or missing references) //IL_28f8: Unknown result type (might be due to invalid IL or missing references) //IL_28fd: Unknown result type (might be due to invalid IL or missing references) //IL_2903: Unknown result type (might be due to invalid IL or missing references) //IL_2908: Unknown result type (might be due to invalid IL or missing references) //IL_290e: Unknown result type (might be due to invalid IL or missing references) //IL_2913: Unknown result type (might be due to invalid IL or missing references) //IL_2918: Unknown result type (might be due to invalid IL or missing references) //IL_2928: Unknown result type (might be due to invalid IL or missing references) //IL_292e: Unknown result type (might be due to invalid IL or missing references) //IL_2933: Unknown result type (might be due to invalid IL or missing references) //IL_2939: Unknown result type (might be due to invalid IL or missing references) //IL_293e: Unknown result type (might be due to invalid IL or missing references) //IL_2944: Unknown result type (might be due to invalid IL or missing references) //IL_2949: Unknown result type (might be due to invalid IL or missing references) //IL_294f: Unknown result type (might be due to invalid IL or missing references) //IL_2959: Unknown result type (might be due to invalid IL or missing references) //IL_295e: Unknown result type (might be due to invalid IL or missing references) //IL_2964: Unknown result type (might be due to invalid IL or missing references) //IL_296e: Unknown result type (might be due to invalid IL or missing references) //IL_2973: Unknown result type (might be due to invalid IL or missing references) //IL_2979: Unknown result type (might be due to invalid IL or missing references) //IL_2983: Unknown result type (might be due to invalid IL or missing references) //IL_2988: Unknown result type (might be due to invalid IL or missing references) //IL_298e: Unknown result type (might be due to invalid IL or missing references) //IL_2993: Unknown result type (might be due to invalid IL or missing references) //IL_2999: Unknown result type (might be due to invalid IL or missing references) //IL_299e: Unknown result type (might be due to invalid IL or missing references) //IL_29a9: Unknown result type (might be due to invalid IL or missing references) //IL_29af: Unknown result type (might be due to invalid IL or missing references) //IL_29b4: Unknown result type (might be due to invalid IL or missing references) //IL_29ba: Unknown result type (might be due to invalid IL or missing references) //IL_29bf: Unknown result type (might be due to invalid IL or missing references) //IL_29c5: Unknown result type (might be due to invalid IL or missing references) //IL_29ca: Unknown result type (might be due to invalid IL or missing references) //IL_29d0: Unknown result type (might be due to invalid IL or missing references) //IL_29da: Unknown result type (might be due to invalid IL or missing references) //IL_29df: Unknown result type (might be due to invalid IL or missing references) //IL_29e5: Unknown result type (might be due to invalid IL or missing references) //IL_29ea: Unknown result type (might be due to invalid IL or missing references) //IL_29f0: Unknown result type (might be due to invalid IL or missing references) //IL_29fa: Unknown result type (might be due to invalid IL or missing references) //IL_29ff: Unknown result type (might be due to invalid IL or missing references) //IL_2a05: Unknown result type (might be due to invalid IL or missing references) //IL_2a0f: Unknown result type (might be due to invalid IL or missing references) //IL_2a14: Unknown result type (might be due to invalid IL or missing references) //IL_2a1a: Unknown result type (might be due to invalid IL or missing references) //IL_2a1f: Unknown result type (might be due to invalid IL or missing references) //IL_2a24: Unknown result type (might be due to invalid IL or missing references) //IL_2a34: Unknown result type (might be due to invalid IL or missing references) //IL_2a3a: Unknown result type (might be due to invalid IL or missing references) //IL_2a3f: Unknown result type (might be due to invalid IL or missing references) //IL_2a45: Unknown result type (might be due to invalid IL or missing references) //IL_2a4a: Unknown result type (might be due to invalid IL or missing references) //IL_2a50: Unknown result type (might be due to invalid IL or missing references) //IL_2a55: Unknown result type (might be due to invalid IL or missing references) //IL_2a5b: Unknown result type (might be due to invalid IL or missing references) //IL_2a65: Unknown result type (might be due to invalid IL or missing references) //IL_2a6a: Unknown result type (might be due to invalid IL or missing references) //IL_2a70: Unknown result type (might be due to invalid IL or missing references) //IL_2a7a: Unknown result type (might be due to invalid IL or missing references) //IL_2a7f: Unknown result type (might be due to invalid IL or missing references) //IL_2a85: Unknown result type (might be due to invalid IL or missing references) //IL_2a8f: Unknown result type (might be due to invalid IL or missing references) //IL_2a94: Unknown result type (might be due to invalid IL or missing references) //IL_2a9a: Unknown result type (might be due to invalid IL or missing references) //IL_2a9f: Unknown result type (might be due to invalid IL or missing references) //IL_2aa5: Unknown result type (might be due to invalid IL or missing references) //IL_2aaa: Unknown result type (might be due to invalid IL or missing references) //IL_2ab5: Unknown result type (might be due to invalid IL or missing references) //IL_2abb: Unknown result type (might be due to invalid IL or missing references) //IL_2ac0: Unknown result type (might be due to invalid IL or missing references) //IL_2ac6: Unknown result type (might be due to invalid IL or missing references) //IL_2acb: Unknown result type (might be due to invalid IL or missing references) //IL_2ad1: Unknown result type (might be due to invalid IL or missing references) //IL_2ad6: Unknown result type (might be due to invalid IL or missing references) //IL_2adc: Unknown result type (might be due to invalid IL or missing references) //IL_2ae6: Unknown result type (might be due to invalid IL or missing references) //IL_2aeb: Unknown result type (might be due to invalid IL or missing references) //IL_2af1: Unknown result type (might be due to invalid IL or missing references) //IL_2afb: Unknown result type (might be due to invalid IL or missing references) //IL_2b00: Unknown result type (might be due to invalid IL or missing references) //IL_2b06: Unknown result type (might be due to invalid IL or missing references) //IL_2b10: Unknown result type (might be due to invalid IL or missing references) //IL_2b15: Unknown result type (might be due to invalid IL or missing references) //IL_2b1b: Unknown result type (might be due to invalid IL or missing references) //IL_2b20: Unknown result type (might be due to invalid IL or missing references) //IL_2b26: Unknown result type (might be due to invalid IL or missing references) //IL_2b2b: Unknown result type (might be due to invalid IL or missing references) //IL_2b30: Unknown result type (might be due to invalid IL or missing references) //IL_2b40: Unknown result type (might be due to invalid IL or missing references) //IL_2b46: Unknown result type (might be due to invalid IL or missing references) //IL_2b4b: Unknown result type (might be due to invalid IL or missing references) //IL_2b51: Unknown result type (might be due to invalid IL or missing references) //IL_2b5b: Unknown result type (might be due to invalid IL or missing references) //IL_2b60: Unknown result type (might be due to invalid IL or missing references) //IL_2b66: Unknown result type (might be due to invalid IL or missing references) //IL_2b70: Unknown result type (might be due to invalid IL or missing references) //IL_2b75: Unknown result type (might be due to invalid IL or missing references) //IL_2b7b: Unknown result type (might be due to invalid IL or missing references) //IL_2b85: Unknown result type (might be due to invalid IL or missing references) //IL_2b8a: Unknown result type (might be due to invalid IL or missing references) //IL_2b90: Unknown result type (might be due to invalid IL or missing references) //IL_2b95: Unknown result type (might be due to invalid IL or missing references) //IL_2b9b: Unknown result type (might be due to invalid IL or missing references) //IL_2ba0: Unknown result type (might be due to invalid IL or missing references) //IL_2ba6: Unknown result type (might be due to invalid IL or missing references) //IL_2bab: Unknown result type (might be due to invalid IL or missing references) //IL_2bb6: Unknown result type (might be due to invalid IL or missing references) //IL_2bbc: Unknown result type (might be due to invalid IL or missing references) //IL_2bc1: Unknown result type (might be due to invalid IL or missing references) //IL_2bc7: Unknown result type (might be due to invalid IL or missing references) //IL_2bd1: Unknown result type (might be due to invalid IL or missing references) //IL_2bd6: Unknown result type (might be due to invalid IL or missing references) //IL_2bdc: Unknown result type (might be due to invalid IL or missing references) //IL_2be1: Unknown result type (might be due to invalid IL or missing references) //IL_2be7: Unknown result type (might be due to invalid IL or missing references) //IL_2bf1: Unknown result type (might be due to invalid IL or missing references) //IL_2bf6: Unknown result type (might be due to invalid IL or missing references) //IL_2bfc: Unknown result type (might be due to invalid IL or missing references) //IL_2c06: Unknown result type (might be due to invalid IL or missing references) //IL_2c0b: Unknown result type (might be due to invalid IL or missing references) //IL_2c11: Unknown result type (might be due to invalid IL or missing references) //IL_2c16: Unknown result type (might be due to invalid IL or missing references) //IL_2c1c: Unknown result type (might be due to invalid IL or missing references) //IL_2c21: Unknown result type (might be due to invalid IL or missing references) //IL_2c26: Unknown result type (might be due to invalid IL or missing references) //IL_2c36: Unknown result type (might be due to invalid IL or missing references) //IL_2c3c: Unknown result type (might be due to invalid IL or missing references) //IL_2c41: Unknown result type (might be due to invalid IL or missing references) //IL_2c47: Unknown result type (might be due to invalid IL or missing references) //IL_2c51: Unknown result type (might be due to invalid IL or missing references) //IL_2c56: Unknown result type (might be due to invalid IL or missing references) //IL_2c5c: Unknown result type (might be due to invalid IL or missing references) //IL_2c66: Unknown result type (might be due to invalid IL or missing references) //IL_2c6b: Unknown result type (might be due to invalid IL or missing references) //IL_2c71: Unknown result type (might be due to invalid IL or missing references) //IL_2c7b: Unknown result type (might be due to invalid IL or missing references) //IL_2c80: Unknown result type (might be due to invalid IL or missing references) //IL_2c86: Unknown result type (might be due to invalid IL or missing references) //IL_2c8b: Unknown result type (might be due to invalid IL or missing references) //IL_2c91: Unknown result type (might be due to invalid IL or missing references) //IL_2c96: Unknown result type (might be due to invalid IL or missing references) //IL_2c9c: Unknown result type (might be due to invalid IL or missing references) //IL_2ca1: Unknown result type (might be due to invalid IL or missing references) //IL_2cac: Unknown result type (might be due to invalid IL or missing references) //IL_2cb2: Unknown result type (might be due to invalid IL or missing references) //IL_2cb7: Unknown result type (might be due to invalid IL or missing references) //IL_2cbd: Unknown result type (might be due to invalid IL or missing references) //IL_2cc7: Unknown result type (might be due to invalid IL or missing references) //IL_2ccc: Unknown result type (might be due to invalid IL or missing references) //IL_2cd2: Unknown result type (might be due to invalid IL or missing references) //IL_2cdc: Unknown result type (might be due to invalid IL or missing references) //IL_2ce1: Unknown result type (might be due to invalid IL or missing references) //IL_2ce7: Unknown result type (might be due to invalid IL or missing references) //IL_2cf1: Unknown result type (might be due to invalid IL or missing references) //IL_2cf6: Unknown result type (might be due to invalid IL or missing references) //IL_2cfc: Unknown result type (might be due to invalid IL or missing references) //IL_2d01: Unknown result type (might be due to invalid IL or missing references) //IL_2d07: Unknown result type (might be due to invalid IL or missing references) //IL_2d0c: Unknown result type (might be due to invalid IL or missing references) //IL_2d12: Unknown result type (might be due to invalid IL or missing references) //IL_2d17: Unknown result type (might be due to invalid IL or missing references) //IL_2d1c: Unknown result type (might be due to invalid IL or missing references) //IL_2d2c: Unknown result type (might be due to invalid IL or missing references) //IL_2d32: Unknown result type (might be due to invalid IL or missing references) //IL_2d37: Unknown result type (might be due to invalid IL or missing references) //IL_2d3d: Unknown result type (might be due to invalid IL or missing references) //IL_2d42: Unknown result type (might be due to invalid IL or missing references) //IL_2d48: Unknown result type (might be due to invalid IL or missing references) //IL_2d4d: Unknown result type (might be due to invalid IL or missing references) //IL_2d53: Unknown result type (might be due to invalid IL or missing references) //IL_2d5d: Unknown result type (might be due to invalid IL or missing references) //IL_2d62: Unknown result type (might be due to invalid IL or missing references) //IL_2d68: Unknown result type (might be due to invalid IL or missing references) //IL_2d72: Unknown result type (might be due to invalid IL or missing references) //IL_2d77: Unknown result type (might be due to invalid IL or missing references) //IL_2d7d: Unknown result type (might be due to invalid IL or missing references) //IL_2d82: Unknown result type (might be due to invalid IL or missing references) //IL_2d88: Unknown result type (might be due to invalid IL or missing references) //IL_2d8d: Unknown result type (might be due to invalid IL or missing references) //IL_2d98: Unknown result type (might be due to invalid IL or missing references) //IL_2d9e: Unknown result type (might be due to invalid IL or missing references) //IL_2da3: Unknown result type (might be due to invalid IL or missing references) //IL_2da9: Unknown result type (might be due to invalid IL or missing references) //IL_2dae: Unknown result type (might be due to invalid IL or missing references) //IL_2db4: Unknown result type (might be due to invalid IL or missing references) //IL_2db9: Unknown result type (might be due to invalid IL or missing references) //IL_2dbf: Unknown result type (might be due to invalid IL or missing references) //IL_2dc9: Unknown result type (might be due to invalid IL or missing references) //IL_2dce: Unknown result type (might be due to invalid IL or missing references) //IL_2dd4: Unknown result type (might be due to invalid IL or missing references) //IL_2dd9: Unknown result type (might be due to invalid IL or missing references) //IL_2ddf: Unknown result type (might be due to invalid IL or missing references) //IL_2de9: Unknown result type (might be due to invalid IL or missing references) //IL_2dee: Unknown result type (might be due to invalid IL or missing references) //IL_2df4: Unknown result type (might be due to invalid IL or missing references) //IL_2df9: Unknown result type (might be due to invalid IL or missing references) //IL_2dfe: Unknown result type (might be due to invalid IL or missing references) //IL_2e0e: Unknown result type (might be due to invalid IL or missing references) //IL_2e14: Unknown result type (might be due to invalid IL or missing references) //IL_2e19: Unknown result type (might be due to invalid IL or missing references) //IL_2e1f: Unknown result type (might be due to invalid IL or missing references) //IL_2e24: Unknown result type (might be due to invalid IL or missing references) //IL_2e2a: Unknown result type (might be due to invalid IL or missing references) //IL_2e2f: Unknown result type (might be due to invalid IL or missing references) //IL_2e35: Unknown result type (might be due to invalid IL or missing references) //IL_2e3f: Unknown result type (might be due to invalid IL or missing references) //IL_2e44: Unknown result type (might be due to invalid IL or missing references) //IL_2e4a: Unknown result type (might be due to invalid IL or missing references) //IL_2e54: Unknown result type (might be due to invalid IL or missing references) //IL_2e59: Unknown result type (might be due to invalid IL or missing references) //IL_2e5f: Unknown result type (might be due to invalid IL or missing references) //IL_2e64: Unknown result type (might be due to invalid IL or missing references) //IL_2e6a: Unknown result type (might be due to invalid IL or missing references) //IL_2e6f: Unknown result type (might be due to invalid IL or missing references) //IL_2e7a: Unknown result type (might be due to invalid IL or missing references) //IL_2e80: Unknown result type (might be due to invalid IL or missing references) //IL_2e85: Unknown result type (might be due to invalid IL or missing references) //IL_2e8b: Unknown result type (might be due to invalid IL or missing references) //IL_2e90: Unknown result type (might be due to invalid IL or missing references) //IL_2e96: Unknown result type (might be due to invalid IL or missing references) //IL_2e9b: Unknown result type (might be due to invalid IL or missing references) //IL_2ea1: Unknown result type (might be due to invalid IL or missing references) //IL_2eab: Unknown result type (might be due to invalid IL or missing references) //IL_2eb0: Unknown result type (might be due to invalid IL or missing references) //IL_2eb6: Unknown result type (might be due to invalid IL or missing references) //IL_2ec0: Unknown result type (might be due to invalid IL or missing references) //IL_2ec5: Unknown result type (might be due to invalid IL or missing references) //IL_2ecb: Unknown result type (might be due to invalid IL or missing references) //IL_2ed0: Unknown result type (might be due to invalid IL or missing references) //IL_2ed6: Unknown result type (might be due to invalid IL or missing references) //IL_2edb: Unknown result type (might be due to invalid IL or missing references) //IL_2ee0: Unknown result type (might be due to invalid IL or missing references) //IL_2ef0: Unknown result type (might be due to invalid IL or missing references) //IL_2ef6: Unknown result type (might be due to invalid IL or missing references) //IL_2efb: Unknown result type (might be due to invalid IL or missing references) //IL_2f01: Unknown result type (might be due to invalid IL or missing references) //IL_2f0b: Unknown result type (might be due to invalid IL or missing references) //IL_2f10: Unknown result type (might be due to invalid IL or missing references) //IL_2f16: Unknown result type (might be due to invalid IL or missing references) //IL_2f20: Unknown result type (might be due to invalid IL or missing references) //IL_2f25: Unknown result type (might be due to invalid IL or missing references) //IL_2f2b: Unknown result type (might be due to invalid IL or missing references) //IL_2f30: Unknown result type (might be due to invalid IL or missing references) //IL_2f36: Unknown result type (might be due to invalid IL or missing references) //IL_2f3b: Unknown result type (might be due to invalid IL or missing references) //IL_2f41: Unknown result type (might be due to invalid IL or missing references) //IL_2f46: Unknown result type (might be due to invalid IL or missing references) //IL_2f51: Unknown result type (might be due to invalid IL or missing references) //IL_2f57: Unknown result type (might be due to invalid IL or missing references) //IL_2f5c: Unknown result type (might be due to invalid IL or missing references) //IL_2f62: Unknown result type (might be due to invalid IL or missing references) //IL_2f6c: Unknown result type (might be due to invalid IL or missing references) //IL_2f71: Unknown result type (might be due to invalid IL or missing references) //IL_2f77: Unknown result type (might be due to invalid IL or missing references) //IL_2f7c: Unknown result type (might be due to invalid IL or missing references) //IL_2f82: Unknown result type (might be due to invalid IL or missing references) //IL_2f8c: Unknown result type (might be due to invalid IL or missing references) //IL_2f91: Unknown result type (might be due to invalid IL or missing references) //IL_2f97: Unknown result type (might be due to invalid IL or missing references) //IL_2f9c: Unknown result type (might be due to invalid IL or missing references) //IL_2fa2: Unknown result type (might be due to invalid IL or missing references) //IL_2fa7: Unknown result type (might be due to invalid IL or missing references) //IL_2fac: Unknown result type (might be due to invalid IL or missing references) //IL_2fbc: Unknown result type (might be due to invalid IL or missing references) //IL_2fc2: Unknown result type (might be due to invalid IL or missing references) //IL_2fc7: Unknown result type (might be due to invalid IL or missing references) //IL_2fcd: Unknown result type (might be due to invalid IL or missing references) //IL_2fd7: Unknown result type (might be due to invalid IL or missing references) //IL_2fdc: Unknown result type (might be due to invalid IL or missing references) //IL_2fe2: Unknown result type (might be due to invalid IL or missing references) //IL_2fec: Unknown result type (might be due to invalid IL or missing references) //IL_2ff1: Unknown result type (might be due to invalid IL or missing references) //IL_2ff7: Unknown result type (might be due to invalid IL or missing references) //IL_2ffc: Unknown result type (might be due to invalid IL or missing references) //IL_3002: Unknown result type (might be due to invalid IL or missing references) //IL_3007: Unknown result type (might be due to invalid IL or missing references) //IL_300d: Unknown result type (might be due to invalid IL or missing references) //IL_3012: Unknown result type (might be due to invalid IL or missing references) //IL_301d: Unknown result type (might be due to invalid IL or missing references) //IL_3023: Unknown result type (might be due to invalid IL or missing references) //IL_3028: Unknown result type (might be due to invalid IL or missing references) //IL_302e: Unknown result type (might be due to invalid IL or missing references) //IL_3038: Unknown result type (might be due to invalid IL or missing references) //IL_303d: Unknown result type (might be due to invalid IL or missing references) //IL_3043: Unknown result type (might be due to invalid IL or missing references) //IL_304d: Unknown result type (might be due to invalid IL or missing references) //IL_3052: Unknown result type (might be due to invalid IL or missing references) //IL_3058: Unknown result type (might be due to invalid IL or missing references) //IL_305d: Unknown result type (might be due to invalid IL or missing references) //IL_3063: Unknown result type (might be due to invalid IL or missing references) //IL_3068: Unknown result type (might be due to invalid IL or missing references) //IL_306e: Unknown result type (might be due to invalid IL or missing references) //IL_3073: Unknown result type (might be due to invalid IL or missing references) //IL_3078: Unknown result type (might be due to invalid IL or missing references) //IL_3088: Unknown result type (might be due to invalid IL or missing references) //IL_308e: Unknown result type (might be due to invalid IL or missing references) //IL_3093: Unknown result type (might be due to invalid IL or missing references) //IL_3099: Unknown result type (might be due to invalid IL or missing references) //IL_309e: Unknown result type (might be due to invalid IL or missing references) //IL_30a4: Unknown result type (might be due to invalid IL or missing references) //IL_30a9: Unknown result type (might be due to invalid IL or missing references) //IL_30af: Unknown result type (might be due to invalid IL or missing references) //IL_30b9: Unknown result type (might be due to invalid IL or missing references) //IL_30be: Unknown result type (might be due to invalid IL or missing references) //IL_30c4: Unknown result type (might be due to invalid IL or missing references) //IL_30ce: Unknown result type (might be due to invalid IL or missing references) //IL_30d3: Unknown result type (might be due to invalid IL or missing references) //IL_30d9: Unknown result type (might be due to invalid IL or missing references) //IL_30e3: Unknown result type (might be due to invalid IL or missing references) //IL_30e8: Unknown result type (might be due to invalid IL or missing references) //IL_30ee: Unknown result type (might be due to invalid IL or missing references) //IL_30f3: Unknown result type (might be due to invalid IL or missing references) //IL_30f9: Unknown result type (might be due to invalid IL or missing references) //IL_30fe: Unknown result type (might be due to invalid IL or missing references) //IL_3109: Unknown result type (might be due to invalid IL or missing references) //IL_310f: Unknown result type (might be due to invalid IL or missing references) //IL_3114: Unknown result type (might be due to invalid IL or missing references) //IL_311a: Unknown result type (might be due to invalid IL or missing references) //IL_311f: Unknown result type (might be due to invalid IL or missing references) //IL_3125: Unknown result type (might be due to invalid IL or missing references) //IL_312a: Unknown result type (might be due to invalid IL or missing references) //IL_3130: Unknown result type (might be due to invalid IL or missing references) //IL_313a: Unknown result type (might be due to invalid IL or missing references) //IL_313f: Unknown result type (might be due to invalid IL or missing references) //IL_3145: Unknown result type (might be due to invalid IL or missing references) //IL_314a: Unknown result type (might be due to invalid IL or missing references) //IL_3150: Unknown result type (might be due to invalid IL or missing references) //IL_315a: Unknown result type (might be due to invalid IL or missing references) //IL_315f: Unknown result type (might be due to invalid IL or missing references) //IL_3165: Unknown result type (might be due to invalid IL or missing references) //IL_316f: Unknown result type (might be due to invalid IL or missing references) //IL_3174: Unknown result type (might be due to invalid IL or missing references) //IL_317a: Unknown result type (might be due to invalid IL or missing references) //IL_317f: Unknown result type (might be due to invalid IL or missing references) //IL_3184: Unknown result type (might be due to invalid IL or missing references) //IL_3194: Unknown result type (might be due to invalid IL or missing references) //IL_319a: Unknown result type (might be due to invalid IL or missing references) //IL_319f: Unknown result type (might be due to invalid IL or missing references) //IL_31a5: Unknown result type (might be due to invalid IL or missing references) //IL_31aa: Unknown result type (might be due to invalid IL or missing references) //IL_31b0: Unknown result type (might be due to invalid IL or missing references) //IL_31b5: Unknown result type (might be due to invalid IL or missing references) //IL_31bb: Unknown result type (might be due to invalid IL or missing references) //IL_31c5: Unknown result type (might be due to invalid IL or missing references) //IL_31ca: Unknown result type (might be due to invalid IL or missing references) //IL_31d0: Unknown result type (might be due to invalid IL or missing references) //IL_31da: Unknown result type (might be due to invalid IL or missing references) //IL_31df: Unknown result type (might be due to invalid IL or missing references) //IL_31e5: Unknown result type (might be due to invalid IL or missing references) //IL_31ef: Unknown result type (might be due to invalid IL or missing references) //IL_31f4: Unknown result type (might be due to invalid IL or missing references) //IL_31fa: Unknown result type (might be due to invalid IL or missing references) //IL_31ff: Unknown result type (might be due to invalid IL or missing references) //IL_3205: Unknown result type (might be due to invalid IL or missing references) //IL_320a: Unknown result type (might be due to invalid IL or missing references) //IL_3215: Unknown result type (might be due to invalid IL or missing references) //IL_321b: Unknown result type (might be due to invalid IL or missing references) //IL_3220: Unknown result type (might be due to invalid IL or missing references) //IL_3226: Unknown result type (might be due to invalid IL or missing references) //IL_322b: Unknown result type (might be due to invalid IL or missing references) //IL_3231: Unknown result type (might be due to invalid IL or missing references) //IL_3236: Unknown result type (might be due to invalid IL or missing references) //IL_323c: Unknown result type (might be due to invalid IL or missing references) //IL_3246: Unknown result type (might be due to invalid IL or missing references) //IL_324b: Unknown result type (might be due to invalid IL or missing references) //IL_3251: Unknown result type (might be due to invalid IL or missing references) //IL_325b: Unknown result type (might be due to invalid IL or missing references) //IL_3260: Unknown result type (might be due to invalid IL or missing references) //IL_3266: Unknown result type (might be due to invalid IL or missing references) //IL_3270: Unknown result type (might be due to invalid IL or missing references) //IL_3275: Unknown result type (might be due to invalid IL or missing references) //IL_327b: Unknown result type (might be due to invalid IL or missing references) //IL_3280: Unknown result type (might be due to invalid IL or missing references) //IL_3286: Unknown result type (might be due to invalid IL or missing references) //IL_328b: Unknown result type (might be due to invalid IL or missing references) //IL_3290: Unknown result type (might be due to invalid IL or missing references) //IL_32a0: Unknown result type (might be due to invalid IL or missing references) //IL_32a6: Unknown result type (might be due to invalid IL or missing references) //IL_32ab: Unknown result type (might be due to invalid IL or missing references) //IL_32b1: Unknown result type (might be due to invalid IL or missing references) //IL_32bb: Unknown result type (might be due to invalid IL or missing references) //IL_32c0: Unknown result type (might be due to invalid IL or missing references) //IL_32c6: Unknown result type (might be due to invalid IL or missing references) //IL_32d0: Unknown result type (might be due to invalid IL or missing references) //IL_32d5: Unknown result type (might be due to invalid IL or missing references) //IL_32db: Unknown result type (might be due to invalid IL or missing references) //IL_32e5: Unknown result type (might be due to invalid IL or missing references) //IL_32ea: Unknown result type (might be due to invalid IL or missing references) //IL_32f0: Unknown result type (might be due to invalid IL or missing references) //IL_32f5: Unknown result type (might be due to invalid IL or missing references) //IL_32fb: Unknown result type (might be due to invalid IL or missing references) //IL_3300: Unknown result type (might be due to invalid IL or missing references) //IL_3306: Unknown result type (might be due to invalid IL or missing references) //IL_330b: Unknown result type (might be due to invalid IL or missing references) //IL_3316: Unknown result type (might be due to invalid IL or missing references) //IL_331c: Unknown result type (might be due to invalid IL or missing references) //IL_3321: Unknown result type (might be due to invalid IL or missing references) //IL_3327: Unknown result type (might be due to invalid IL or missing references) //IL_3331: Unknown result type (might be due to invalid IL or missing references) //IL_3336: Unknown result type (might be due to invalid IL or missing references) //IL_333c: Unknown result type (might be due to invalid IL or missing references) //IL_3341: Unknown result type (might be due to invalid IL or missing references) //IL_3347: Unknown result type (might be due to invalid IL or missing references) //IL_3351: Unknown result type (might be due to invalid IL or missing references) //IL_3356: Unknown result type (might be due to invalid IL or missing references) //IL_335c: Unknown result type (might be due to invalid IL or missing references) //IL_3366: Unknown result type (might be due to invalid IL or missing references) //IL_336b: Unknown result type (might be due to invalid IL or missing references) //IL_3371: Unknown result type (might be due to invalid IL or missing references) //IL_3376: Unknown result type (might be due to invalid IL or missing references) //IL_337c: Unknown result type (might be due to invalid IL or missing references) //IL_3381: Unknown result type (might be due to invalid IL or missing references) //IL_3386: Unknown result type (might be due to invalid IL or missing references) //IL_3396: Unknown result type (might be due to invalid IL or missing references) //IL_339c: Unknown result type (might be due to invalid IL or missing references) //IL_33a1: Unknown result type (might be due to invalid IL or missing references) //IL_33a7: Unknown result type (might be due to invalid IL or missing references) //IL_33b1: Unknown result type (might be due to invalid IL or missing references) //IL_33b6: Unknown result type (might be due to invalid IL or missing references) //IL_33bc: Unknown result type (might be due to invalid IL or missing references) //IL_33c6: Unknown result type (might be due to invalid IL or missing references) //IL_33cb: Unknown result type (might be due to invalid IL or missing references) //IL_33d1: Unknown result type (might be due to invalid IL or missing references) //IL_33db: Unknown result type (might be due to invalid IL or missing references) //IL_33e0: Unknown result type (might be due to invalid IL or missing references) //IL_33e6: Unknown result type (might be due to invalid IL or missing references) //IL_33eb: Unknown result type (might be due to invalid IL or missing references) //IL_33f1: Unknown result type (might be due to invalid IL or missing references) //IL_33f6: Unknown result type (might be due to invalid IL or missing references) //IL_33fc: Unknown result type (might be due to invalid IL or missing references) //IL_3401: Unknown result type (might be due to invalid IL or missing references) //IL_340c: Unknown result type (might be due to invalid IL or missing references) //IL_3412: Unknown result type (might be due to invalid IL or missing references) //IL_3417: Unknown result type (might be due to invalid IL or missing references) //IL_341d: Unknown result type (might be due to invalid IL or missing references) //IL_3427: Unknown result type (might be due to invalid IL or missing references) //IL_342c: Unknown result type (might be due to invalid IL or missing references) //IL_3432: Unknown result type (might be due to invalid IL or missing references) //IL_343c: Unknown result type (might be due to invalid IL or missing references) //IL_3441: Unknown result type (might be due to invalid IL or missing references) //IL_3447: Unknown result type (might be due to invalid IL or missing references) //IL_3451: Unknown result type (might be due to invalid IL or missing references) //IL_3456: Unknown result type (might be due to invalid IL or missing references) //IL_345c: Unknown result type (might be due to invalid IL or missing references) //IL_3461: Unknown result type (might be due to invalid IL or missing references) //IL_3467: Unknown result type (might be due to invalid IL or missing references) //IL_346c: Unknown result type (might be due to invalid IL or missing references) //IL_3472: Unknown result type (might be due to invalid IL or missing references) //IL_3477: Unknown result type (might be due to invalid IL or missing references) //IL_347c: Unknown result type (might be due to invalid IL or missing references) //IL_348c: Unknown result type (might be due to invalid IL or missing references) //IL_3492: Unknown result type (might be due to invalid IL or missing references) //IL_3497: Unknown result type (might be due to invalid IL or missing references) //IL_349d: Unknown result type (might be due to invalid IL or missing references) //IL_34a2: Unknown result type (might be due to invalid IL or missing references) //IL_34a8: Unknown result type (might be due to invalid IL or missing references) //IL_34b2: Unknown result type (might be due to invalid IL or missing references) //IL_34b7: Unknown result type (might be due to invalid IL or missing references) //IL_34bd: Unknown result type (might be due to invalid IL or missing references) //IL_34c2: Unknown result type (might be due to invalid IL or missing references) //IL_34cd: Unknown result type (might be due to invalid IL or missing references) //IL_34d3: Unknown result type (might be due to invalid IL or missing references) //IL_34d8: Unknown result type (might be due to invalid IL or missing references) //IL_34de: Unknown result type (might be due to invalid IL or missing references) //IL_34e3: Unknown result type (might be due to invalid IL or missing references) //IL_34e9: Unknown result type (might be due to invalid IL or missing references) //IL_34f3: Unknown result type (might be due to invalid IL or missing references) //IL_34f8: Unknown result type (might be due to invalid IL or missing references) //IL_34fe: Unknown result type (might be due to invalid IL or missing references) //IL_3503: Unknown result type (might be due to invalid IL or missing references) //IL_3508: Unknown result type (might be due to invalid IL or missing references) //IL_3518: Unknown result type (might be due to invalid IL or missing references) //IL_351e: Unknown result type (might be due to invalid IL or missing references) //IL_3523: Unknown result type (might be due to invalid IL or missing references) //IL_3529: Unknown result type (might be due to invalid IL or missing references) //IL_352e: Unknown result type (might be due to invalid IL or missing references) //IL_3534: Unknown result type (might be due to invalid IL or missing references) //IL_353e: Unknown result type (might be due to invalid IL or missing references) //IL_3543: Unknown result type (might be due to invalid IL or missing references) //IL_3549: Unknown result type (might be due to invalid IL or missing references) //IL_354e: Unknown result type (might be due to invalid IL or missing references) //IL_3554: Unknown result type (might be due to invalid IL or missing references) //IL_355e: Unknown result type (might be due to invalid IL or missing references) //IL_3563: Unknown result type (might be due to invalid IL or missing references) //IL_356e: Unknown result type (might be due to invalid IL or missing references) //IL_3574: Unknown result type (might be due to invalid IL or missing references) //IL_3579: Unknown result type (might be due to invalid IL or missing references) //IL_357f: Unknown result type (might be due to invalid IL or missing references) //IL_3584: Unknown result type (might be due to invalid IL or missing references) //IL_358a: Unknown result type (might be due to invalid IL or missing references) //IL_3594: Unknown result type (might be due to invalid IL or missing references) //IL_3599: Unknown result type (might be due to invalid IL or missing references) //IL_359f: Unknown result type (might be due to invalid IL or missing references) //IL_35a4: Unknown result type (might be due to invalid IL or missing references) //IL_35aa: Unknown result type (might be due to invalid IL or missing references) //IL_35b4: Unknown result type (might be due to invalid IL or missing references) //IL_35b9: Unknown result type (might be due to invalid IL or missing references) //IL_35be: Unknown result type (might be due to invalid IL or missing references) //IL_35ce: Unknown result type (might be due to invalid IL or missing references) //IL_35d4: Unknown result type (might be due to invalid IL or missing references) //IL_35d9: Unknown result type (might be due to invalid IL or missing references) //IL_35df: Unknown result type (might be due to invalid IL or missing references) //IL_35e4: Unknown result type (might be due to invalid IL or missing references) //IL_35ea: Unknown result type (might be due to invalid IL or missing references) //IL_35f4: Unknown result type (might be due to invalid IL or missing references) //IL_35f9: Unknown result type (might be due to invalid IL or missing references) //IL_35ff: Unknown result type (might be due to invalid IL or missing references) //IL_3604: Unknown result type (might be due to invalid IL or missing references) //IL_360a: Unknown result type (might be due to invalid IL or missing references) //IL_3614: Unknown result type (might be due to invalid IL or missing references) //IL_3619: Unknown result type (might be due to invalid IL or missing references) //IL_3624: Unknown result type (might be due to invalid IL or missing references) //IL_362a: Unknown result type (might be due to invalid IL or missing references) //IL_362f: Unknown result type (might be due to invalid IL or missing references) //IL_3635: Unknown result type (might be due to invalid IL or missing references) //IL_363a: Unknown result type (might be due to invalid IL or missing references) //IL_3640: Unknown result type (might be due to invalid IL or missing references) //IL_364a: Unknown result type (might be due to invalid IL or missing references) //IL_364f: Unknown result type (might be due to invalid IL or missing references) //IL_3655: Unknown result type (might be due to invalid IL or missing references) //IL_365a: Unknown result type (might be due to invalid IL or missing references) //IL_3660: Unknown result type (might be due to invalid IL or missing references) //IL_366a: Unknown result type (might be due to invalid IL or missing references) //IL_366f: Unknown result type (might be due to invalid IL or missing references) //IL_3674: Unknown result type (might be due to invalid IL or missing references) //IL_3684: Unknown result type (might be due to invalid IL or missing references) //IL_368a: Unknown result type (might be due to invalid IL or missing references) //IL_368f: Unknown result type (might be due to invalid IL or missing references) //IL_3695: Unknown result type (might be due to invalid IL or missing references) //IL_369a: Unknown result type (might be due to invalid IL or missing references) //IL_36a0: Unknown result type (might be due to invalid IL or missing references) //IL_36aa: Unknown result type (might be due to invalid IL or missing references) //IL_36af: Unknown result type (might be due to invalid IL or missing references) //IL_36b5: Unknown result type (might be due to invalid IL or missing references) //IL_36ba: Unknown result type (might be due to invalid IL or missing references) //IL_36c0: Unknown result type (might be due to invalid IL or missing references) //IL_36ca: Unknown result type (might be due to invalid IL or missing references) //IL_36cf: Unknown result type (might be due to invalid IL or missing references) //IL_36da: Unknown result type (might be due to invalid IL or missing references) //IL_36e0: Unknown result type (might be due to invalid IL or missing references) //IL_36e5: Unknown result type (might be due to invalid IL or missing references) //IL_36eb: Unknown result type (might be due to invalid IL or missing references) //IL_36f0: Unknown result type (might be due to invalid IL or missing references) //IL_36f6: Unknown result type (might be due to invalid IL or missing references) //IL_3700: Unknown result type (might be due to invalid IL or missing references) //IL_3705: Unknown result type (might be due to invalid IL or missing references) //IL_370b: Unknown result type (might be due to invalid IL or missing references) //IL_3710: Unknown result type (might be due to invalid IL or missing references) //IL_3716: Unknown result type (might be due to invalid IL or missing references) //IL_3720: Unknown result type (might be due to invalid IL or missing references) //IL_3725: Unknown result type (might be due to invalid IL or missing references) //IL_372a: Unknown result type (might be due to invalid IL or missing references) //IL_373a: Unknown result type (might be due to invalid IL or missing references) //IL_3740: Unknown result type (might be due to invalid IL or missing references) //IL_3745: Unknown result type (might be due to invalid IL or missing references) //IL_374b: Unknown result type (might be due to invalid IL or missing references) //IL_3750: Unknown result type (might be due to invalid IL or missing references) //IL_3756: Unknown result type (might be due to invalid IL or missing references) //IL_3760: Unknown result type (might be due to invalid IL or missing references) //IL_3765: Unknown result type (might be due to invalid IL or missing references) //IL_376b: Unknown result type (might be due to invalid IL or missing references) //IL_3770: Unknown result type (might be due to invalid IL or missing references) //IL_3776: Unknown result type (might be due to invalid IL or missing references) //IL_3780: Unknown result type (might be due to invalid IL or missing references) //IL_3785: Unknown result type (might be due to invalid IL or missing references) //IL_3790: Unknown result type (might be due to invalid IL or missing references) //IL_3796: Unknown result type (might be due to invalid IL or missing references) //IL_379b: Unknown result type (might be due to invalid IL or missing references) //IL_37a1: Unknown result type (might be due to invalid IL or missing references) //IL_37a6: Unknown result type (might be due to invalid IL or missing references) //IL_37ac: Unknown result type (might be due to invalid IL or missing references) //IL_37b6: Unknown result type (might be due to invalid IL or missing references) //IL_37bb: Unknown result type (might be due to invalid IL or missing references) //IL_37c1: Unknown result type (might be due to invalid IL or missing references) //IL_37c6: Unknown result type (might be due to invalid IL or missing references) //IL_37cc: Unknown result type (might be due to invalid IL or missing references) //IL_37d6: Unknown result type (might be due to invalid IL or missing references) //IL_37db: Unknown result type (might be due to invalid IL or missing references) //IL_37e0: Unknown result type (might be due to invalid IL or missing references) //IL_37f0: Unknown result type (might be due to invalid IL or missing references) //IL_37f6: Unknown result type (might be due to invalid IL or missing references) //IL_37fb: Unknown result type (might be due to invalid IL or missing references) //IL_3801: Unknown result type (might be due to invalid IL or missing references) //IL_3806: Unknown result type (might be due to invalid IL or missing references) //IL_380c: Unknown result type (might be due to invalid IL or missing references) //IL_3816: Unknown result type (might be due to invalid IL or missing references) //IL_381b: Unknown result type (might be due to invalid IL or missing references) //IL_3821: Unknown result type (might be due to invalid IL or missing references) //IL_3826: Unknown result type (might be due to invalid IL or missing references) //IL_382c: Unknown result type (might be due to invalid IL or missing references) //IL_3836: Unknown result type (might be due to invalid IL or missing references) //IL_383b: Unknown result type (might be due to invalid IL or missing references) //IL_3846: Unknown result type (might be due to invalid IL or missing references) //IL_384c: Unknown result type (might be due to invalid IL or missing references) //IL_3851: Unknown result type (might be due to invalid IL or missing references) //IL_3857: Unknown result type (might be due to invalid IL or missing references) //IL_385c: Unknown result type (might be due to invalid IL or missing references) //IL_3862: Unknown result type (might be due to invalid IL or missing references) //IL_386c: Unknown result type (might be due to invalid IL or missing references) //IL_3871: Unknown result type (might be due to invalid IL or missing references) //IL_3877: Unknown result type (might be due to invalid IL or missing references) //IL_387c: Unknown result type (might be due to invalid IL or missing references) //IL_3882: Unknown result type (might be due to invalid IL or missing references) //IL_388c: Unknown result type (might be due to invalid IL or missing references) //IL_3891: Unknown result type (might be due to invalid IL or missing references) //IL_3896: Unknown result type (might be due to invalid IL or missing references) //IL_38a6: Unknown result type (might be due to invalid IL or missing references) //IL_38ac: Unknown result type (might be due to invalid IL or missing references) //IL_38b1: Unknown result type (might be due to invalid IL or missing references) //IL_38b7: Unknown result type (might be due to invalid IL or missing references) //IL_38bc: Unknown result type (might be due to invalid IL or missing references) //IL_38c2: Unknown result type (might be due to invalid IL or missing references) //IL_38cc: Unknown result type (might be due to invalid IL or missing references) //IL_38d1: Unknown result type (might be due to invalid IL or missing references) //IL_38d7: Unknown result type (might be due to invalid IL or missing references) //IL_38dc: Unknown result type (might be due to invalid IL or missing references) //IL_38e2: Unknown result type (might be due to invalid IL or missing references) //IL_38ec: Unknown result type (might be due to invalid IL or missing references) //IL_38f1: Unknown result type (might be due to invalid IL or missing references) //IL_38fc: Unknown result type (might be due to invalid IL or missing references) //IL_3902: Unknown result type (might be due to invalid IL or missing references) //IL_3907: Unknown result type (might be due to invalid IL or missing references) //IL_390d: Unknown result type (might be due to invalid IL or missing references) //IL_3912: Unknown result type (might be due to invalid IL or missing references) //IL_3918: Unknown result type (might be due to invalid IL or missing references) //IL_3922: Unknown result type (might be due to invalid IL or missing references) //IL_3927: Unknown result type (might be due to invalid IL or missing references) //IL_392d: Unknown result type (might be due to invalid IL or missing references) //IL_3932: Unknown result type (might be due to invalid IL or missing references) //IL_3938: Unknown result type (might be due to invalid IL or missing references) //IL_3942: Unknown result type (might be due to invalid IL or missing references) //IL_3947: Unknown result type (might be due to invalid IL or missing references) //IL_394c: Unknown result type (might be due to invalid IL or missing references) //IL_395c: Unknown result type (might be due to invalid IL or missing references) //IL_3962: Unknown result type (might be due to invalid IL or missing references) //IL_3967: Unknown result type (might be due to invalid IL or missing references) //IL_396d: Unknown result type (might be due to invalid IL or missing references) //IL_3972: Unknown result type (might be due to invalid IL or missing references) //IL_3978: Unknown result type (might be due to invalid IL or missing references) //IL_3982: Unknown result type (might be due to invalid IL or missing references) //IL_3987: Unknown result type (might be due to invalid IL or missing references) //IL_398d: Unknown result type (might be due to invalid IL or missing references) //IL_3992: Unknown result type (might be due to invalid IL or missing references) //IL_3998: Unknown result type (might be due to invalid IL or missing references) //IL_39a2: Unknown result type (might be due to invalid IL or missing references) //IL_39a7: Unknown result type (might be due to invalid IL or missing references) //IL_39b2: Unknown result type (might be due to invalid IL or missing references) //IL_39b8: Unknown result type (might be due to invalid IL or missing references) //IL_39bd: Unknown result type (might be due to invalid IL or missing references) //IL_39c3: Unknown result type (might be due to invalid IL or missing references) //IL_39c8: Unknown result type (might be due to invalid IL or missing references) //IL_39ce: Unknown result type (might be due to invalid IL or missing references) //IL_39d8: Unknown result type (might be due to invalid IL or missing references) //IL_39dd: Unknown result type (might be due to invalid IL or missing references) //IL_39e3: Unknown result type (might be due to invalid IL or missing references) //IL_39e8: Unknown result type (might be due to invalid IL or missing references) //IL_39ee: Unknown result type (might be due to invalid IL or missing references) //IL_39f8: Unknown result type (might be due to invalid IL or missing references) //IL_39fd: Unknown result type (might be due to invalid IL or missing references) //IL_3a02: Unknown result type (might be due to invalid IL or missing references) //IL_3a12: Unknown result type (might be due to invalid IL or missing references) //IL_3a18: Unknown result type (might be due to invalid IL or missing references) //IL_3a1d: Unknown result type (might be due to invalid IL or missing references) //IL_3a23: Unknown result type (might be due to invalid IL or missing references) //IL_3a28: Unknown result type (might be due to invalid IL or missing references) //IL_3a2e: Unknown result type (might be due to invalid IL or missing references) //IL_3a38: Unknown result type (might be due to invalid IL or missing references) //IL_3a3d: Unknown result type (might be due to invalid IL or missing references) //IL_3a43: Unknown result type (might be due to invalid IL or missing references) //IL_3a48: Unknown result type (might be due to invalid IL or missing references) //IL_3a53: Unknown result type (might be due to invalid IL or missing references) //IL_3a59: Unknown result type (might be due to invalid IL or missing references) //IL_3a5e: Unknown result type (might be due to invalid IL or missing references) //IL_3a64: Unknown result type (might be due to invalid IL or missing references) //IL_3a69: Unknown result type (might be due to invalid IL or missing references) //IL_3a6f: Unknown result type (might be due to invalid IL or missing references) //IL_3a79: Unknown result type (might be due to invalid IL or missing references) //IL_3a7e: Unknown result type (might be due to invalid IL or missing references) //IL_3a84: Unknown result type (might be due to invalid IL or missing references) //IL_3a89: Unknown result type (might be due to invalid IL or missing references) //IL_3a8e: Unknown result type (might be due to invalid IL or missing references) //IL_3a9e: Unknown result type (might be due to invalid IL or missing references) //IL_3aa4: Unknown result type (might be due to invalid IL or missing references) //IL_3aa9: Unknown result type (might be due to invalid IL or missing references) //IL_3aaf: Unknown result type (might be due to invalid IL or missing references) //IL_3ab4: Unknown result type (might be due to invalid IL or missing references) //IL_3aba: Unknown result type (might be due to invalid IL or missing references) //IL_3ac4: Unknown result type (might be due to invalid IL or missing references) //IL_3ac9: Unknown result type (might be due to invalid IL or missing references) //IL_3acf: Unknown result type (might be due to invalid IL or missing references) //IL_3ad4: Unknown result type (might be due to invalid IL or missing references) //IL_3ada: Unknown result type (might be due to invalid IL or missing references) //IL_3ae4: Unknown result type (might be due to invalid IL or missing references) //IL_3ae9: Unknown result type (might be due to invalid IL or missing references) //IL_3af4: Unknown result type (might be due to invalid IL or missing references) //IL_3afa: Unknown result type (might be due to invalid IL or missing references) //IL_3aff: Unknown result type (might be due to invalid IL or missing references) //IL_3b05: Unknown result type (might be due to invalid IL or missing references) //IL_3b0a: Unknown result type (might be due to invalid IL or missing references) //IL_3b10: Unknown result type (might be due to invalid IL or missing references) //IL_3b1a: Unknown result type (might be due to invalid IL or missing references) //IL_3b1f: Unknown result type (might be due to invalid IL or missing references) //IL_3b25: Unknown result type (might be due to invalid IL or missing references) //IL_3b2a: Unknown result type (might be due to invalid IL or missing references) //IL_3b30: Unknown result type (might be due to invalid IL or missing references) //IL_3b3a: Unknown result type (might be due to invalid IL or missing references) //IL_3b3f: Unknown result type (might be due to invalid IL or missing references) //IL_3b44: Unknown result type (might be due to invalid IL or missing references) //IL_3b54: Unknown result type (might be due to invalid IL or missing references) //IL_3b5a: Unknown result type (might be due to invalid IL or missing references) //IL_3b5f: Unknown result type (might be due to invalid IL or missing references) //IL_3b65: Unknown result type (might be due to invalid IL or missing references) //IL_3b6a: Unknown result type (might be due to invalid IL or missing references) //IL_3b70: Unknown result type (might be due to invalid IL or missing references) //IL_3b7a: Unknown result type (might be due to invalid IL or missing references) //IL_3b7f: Unknown result type (might be due to invalid IL or missing references) //IL_3b85: Unknown result type (might be due to invalid IL or missing references) //IL_3b8a: Unknown result type (might be due to invalid IL or missing references) //IL_3b90: Unknown result type (might be due to invalid IL or missing references) //IL_3b9a: Unknown result type (might be due to invalid IL or missing references) //IL_3b9f: Unknown result type (might be due to invalid IL or missing references) //IL_3baa: Unknown result type (might be due to invalid IL or missing references) //IL_3bb0: Unknown result type (might be due to invalid IL or missing references) //IL_3bb5: Unknown result type (might be due to invalid IL or missing references) //IL_3bbb: Unknown result type (might be due to invalid IL or missing references) //IL_3bc0: Unknown result type (might be due to invalid IL or missing references) //IL_3bc6: Unknown result type (might be due to invalid IL or missing references) //IL_3bd0: Unknown result type (might be due to invalid IL or missing references) //IL_3bd5: Unknown result type (might be due to invalid IL or missing references) //IL_3bdb: Unknown result type (might be due to invalid IL or missing references) //IL_3be0: Unknown result type (might be due to invalid IL or missing references) //IL_3be6: Unknown result type (might be due to invalid IL or missing references) //IL_3bf0: Unknown result type (might be due to invalid IL or missing references) //IL_3bf5: Unknown result type (might be due to invalid IL or missing references) //IL_3bfa: Unknown result type (might be due to invalid IL or missing references) //IL_3c0a: Unknown result type (might be due to invalid IL or missing references) //IL_3c10: Unknown result type (might be due to invalid IL or missing references) //IL_3c15: Unknown result type (might be due to invalid IL or missing references) //IL_3c1b: Unknown result type (might be due to invalid IL or missing references) //IL_3c20: Unknown result type (might be due to invalid IL or missing references) //IL_3c26: Unknown result type (might be due to invalid IL or missing references) //IL_3c30: Unknown result type (might be due to invalid IL or missing references) //IL_3c35: Unknown result type (might be due to invalid IL or missing references) //IL_3c3b: Unknown result type (might be due to invalid IL or missing references) //IL_3c40: Unknown result type (might be due to invalid IL or missing references) //IL_3c46: Unknown result type (might be due to invalid IL or missing references) //IL_3c50: Unknown result type (might be due to invalid IL or missing references) //IL_3c55: Unknown result type (might be due to invalid IL or missing references) //IL_3c60: Unknown result type (might be due to invalid IL or missing references) //IL_3c66: Unknown result type (might be due to invalid IL or missing references) //IL_3c6b: Unknown result type (might be due to invalid IL or missing references) //IL_3c71: Unknown result type (might be due to invalid IL or missing references) //IL_3c76: Unknown result type (might be due to invalid IL or missing references) //IL_3c7c: Unknown result type (might be due to invalid IL or missing references) //IL_3c86: Unknown result type (might be due to invalid IL or missing references) //IL_3c8b: Unknown result type (might be due to invalid IL or missing references) //IL_3c91: Unknown result type (might be due to invalid IL or missing references) //IL_3c96: Unknown result type (might be due to invalid IL or missing references) //IL_3c9c: Unknown result type (might be due to invalid IL or missing references) //IL_3ca6: Unknown result type (might be due to invalid IL or missing references) //IL_3cab: Unknown result type (might be due to invalid IL or missing references) //IL_3cb0: Unknown result type (might be due to invalid IL or missing references) //IL_3cc0: Unknown result type (might be due to invalid IL or missing references) //IL_3cc6: Unknown result type (might be due to invalid IL or missing references) //IL_3ccb: Unknown result type (might be due to invalid IL or missing references) //IL_3cd1: Unknown result type (might be due to invalid IL or missing references) //IL_3cd6: Unknown result type (might be due to invalid IL or missing references) //IL_3cdc: Unknown result type (might be due to invalid IL or missing references) //IL_3ce6: Unknown result type (might be due to invalid IL or missing references) //IL_3ceb: Unknown result type (might be due to invalid IL or missing references) //IL_3cf1: Unknown result type (might be due to invalid IL or missing references) //IL_3cf6: Unknown result type (might be due to invalid IL or missing references) //IL_3cfc: Unknown result type (might be due to invalid IL or missing references) //IL_3d06: Unknown result type (might be due to invalid IL or missing references) //IL_3d0b: Unknown result type (might be due to invalid IL or missing references) //IL_3d16: Unknown result type (might be due to invalid IL or missing references) //IL_3d1c: Unknown result type (might be due to invalid IL or missing references) //IL_3d21: Unknown result type (might be due to invalid IL or missing references) //IL_3d27: Unknown result type (might be due to invalid IL or missing references) //IL_3d2c: Unknown result type (might be due to invalid IL or missing references) //IL_3d32: Unknown result type (might be due to invalid IL or missing references) //IL_3d3c: Unknown result type (might be due to invalid IL or missing references) //IL_3d41: Unknown result type (might be due to invalid IL or missing references) //IL_3d47: Unknown result type (might be due to invalid IL or missing references) //IL_3d4c: Unknown result type (might be due to invalid IL or missing references) //IL_3d52: Unknown result type (might be due to invalid IL or missing references) //IL_3d5c: Unknown result type (might be due to invalid IL or missing references) //IL_3d61: Unknown result type (might be due to invalid IL or missing references) //IL_3d66: Unknown result type (might be due to invalid IL or missing references) //IL_3d76: Unknown result type (might be due to invalid IL or missing references) //IL_3d7c: Unknown result type (might be due to invalid IL or missing references) //IL_3d81: Unknown result type (might be due to invalid IL or missing references) //IL_3d87: Unknown result type (might be due to invalid IL or missing references) //IL_3d8c: Unknown result type (might be due to invalid IL or missing references) //IL_3d92: Unknown result type (might be due to invalid IL or missing references) //IL_3d9c: Unknown result type (might be due to invalid IL or missing references) //IL_3da1: Unknown result type (might be due to invalid IL or missing references) //IL_3da7: Unknown result type (might be due to invalid IL or missing references) //IL_3dac: Unknown result type (might be due to invalid IL or missing references) //IL_3db2: Unknown result type (might be due to invalid IL or missing references) //IL_3dbc: Unknown result type (might be due to invalid IL or missing references) //IL_3dc1: Unknown result type (might be due to invalid IL or missing references) //IL_3dcc: Unknown result type (might be due to invalid IL or missing references) //IL_3dd2: Unknown result type (might be due to invalid IL or missing references) //IL_3dd7: Unknown result type (might be due to invalid IL or missing references) //IL_3ddd: Unknown result type (might be due to invalid IL or missing references) //IL_3de2: Unknown result type (might be due to invalid IL or missing references) //IL_3de8: Unknown result type (might be due to invalid IL or missing references) //IL_3df2: Unknown result type (might be due to invalid IL or missing references) //IL_3df7: Unknown result type (might be due to invalid IL or missing references) //IL_3dfd: Unknown result type (might be due to invalid IL or missing references) //IL_3e02: Unknown result type (might be due to invalid IL or missing references) //IL_3e08: Unknown result type (might be due to invalid IL or missing references) //IL_3e12: Unknown result type (might be due to invalid IL or missing references) //IL_3e17: Unknown result type (might be due to invalid IL or missing references) //IL_3e1c: Unknown result type (might be due to invalid IL or missing references) //IL_3e2c: Unknown result type (might be due to invalid IL or missing references) //IL_3e32: Unknown result type (might be due to invalid IL or missing references) //IL_3e37: Unknown result type (might be due to invalid IL or missing references) //IL_3e3d: Unknown result type (might be due to invalid IL or missing references) //IL_3e42: Unknown result type (might be due to invalid IL or missing references) //IL_3e48: Unknown result type (might be due to invalid IL or missing references) //IL_3e52: Unknown result type (might be due to invalid IL or missing references) //IL_3e57: Unknown result type (might be due to invalid IL or missing references) //IL_3e5d: Unknown result type (might be due to invalid IL or missing references) //IL_3e62: Unknown result type (might be due to invalid IL or missing references) //IL_3e68: Unknown result type (might be due to invalid IL or missing references) //IL_3e72: Unknown result type (might be due to invalid IL or missing references) //IL_3e77: Unknown result type (might be due to invalid IL or missing references) //IL_3e82: Unknown result type (might be due to invalid IL or missing references) //IL_3e88: Unknown result type (might be due to invalid IL or missing references) //IL_3e8d: Unknown result type (might be due to invalid IL or missing references) //IL_3e93: Unknown result type (might be due to invalid IL or missing references) //IL_3e98: Unknown result type (might be due to invalid IL or missing references) //IL_3e9e: Unknown result type (might be due to invalid IL or missing references) //IL_3ea8: Unknown result type (might be due to invalid IL or missing references) //IL_3ead: Unknown result type (might be due to invalid IL or missing references) //IL_3eb3: Unknown result type (might be due to invalid IL or missing references) //IL_3eb8: Unknown result type (might be due to invalid IL or missing references) //IL_3ebe: Unknown result type (might be due to invalid IL or missing references) //IL_3ec8: Unknown result type (might be due to invalid IL or missing references) //IL_3ecd: Unknown result type (might be due to invalid IL or missing references) //IL_3ed2: Unknown result type (might be due to invalid IL or missing references) //IL_3ee2: Unknown result type (might be due to invalid IL or missing references) //IL_3ee8: Unknown result type (might be due to invalid IL or missing references) //IL_3eed: Unknown result type (might be due to invalid IL or missing references) //IL_3ef3: Unknown result type (might be due to invalid IL or missing references) //IL_3ef8: Unknown result type (might be due to invalid IL or missing references) //IL_3efe: Unknown result type (might be due to invalid IL or missing references) //IL_3f08: Unknown result type (might be due to invalid IL or missing references) //IL_3f0d: Unknown result type (might be due to invalid IL or missing references) //IL_3f13: Unknown result type (might be due to invalid IL or missing references) //IL_3f18: Unknown result type (might be due to invalid IL or missing references) //IL_3f1e: Unknown result type (might be due to invalid IL or missing references) //IL_3f28: Unknown result type (might be due to invalid IL or missing references) //IL_3f2d: Unknown result type (might be due to invalid IL or missing references) //IL_3f38: Unknown result type (might be due to invalid IL or missing references) //IL_3f3e: Unknown result type (might be due to invalid IL or missing references) //IL_3f43: Unknown result type (might be due to invalid IL or missing references) //IL_3f49: Unknown result type (might be due to invalid IL or missing references) //IL_3f4e: Unknown result type (might be due to invalid IL or missing references) //IL_3f54: Unknown result type (might be due to invalid IL or missing references) //IL_3f5e: Unknown result type (might be due to invalid IL or missing references) //IL_3f63: Unknown result type (might be due to invalid IL or missing references) //IL_3f69: Unknown result type (might be due to invalid IL or missing references) //IL_3f6e: Unknown result type (might be due to invalid IL or missing references) //IL_3f74: Unknown result type (might be due to invalid IL or missing references) //IL_3f7e: Unknown result type (might be due to invalid IL or missing references) //IL_3f83: Unknown result type (might be due to invalid IL or missing references) //IL_3f88: Unknown result type (might be due to invalid IL or missing references) //IL_3f98: Unknown result type (might be due to invalid IL or missing references) //IL_3f9e: Unknown result type (might be due to invalid IL or missing references) //IL_3fa3: Unknown result type (might be due to invalid IL or missing references) //IL_3fa9: Unknown result type (might be due to invalid IL or missing references) //IL_3fae: Unknown result type (might be due to invalid IL or missing references) //IL_3fb4: Unknown result type (might be due to invalid IL or missing references) //IL_3fb9: Unknown result type (might be due to invalid IL or missing references) //IL_3fc4: Unknown result type (might be due to invalid IL or missing references) //IL_3fca: Unknown result type (might be due to invalid IL or missing references) //IL_3fcf: Unknown result type (might be due to invalid IL or missing references) //IL_3fd5: Unknown result type (might be due to invalid IL or missing references) //IL_3fda: Unknown result type (might be due to invalid IL or missing references) //IL_3fe0: Unknown result type (might be due to invalid IL or missing references) //IL_3fea: Unknown result type (might be due to invalid IL or missing references) //IL_3fef: Unknown result type (might be due to invalid IL or missing references) //IL_3ff5: Unknown result type (might be due to invalid IL or missing references) //IL_3ffa: Unknown result type (might be due to invalid IL or missing references) //IL_3fff: Unknown result type (might be due to invalid IL or missing references) //IL_400f: Unknown result type (might be due to invalid IL or missing references) //IL_4015: Unknown result type (might be due to invalid IL or missing references) //IL_401a: Unknown result type (might be due to invalid IL or missing references) //IL_4020: Unknown result type (might be due to invalid IL or missing references) //IL_4025: Unknown result type (might be due to invalid IL or missing references) //IL_402b: Unknown result type (might be due to invalid IL or missing references) //IL_4030: Unknown result type (might be due to invalid IL or missing references) //IL_4036: Unknown result type (might be due to invalid IL or missing references) //IL_4040: Unknown result type (might be due to invalid IL or missing references) //IL_4045: Unknown result type (might be due to invalid IL or missing references) //IL_4050: Unknown result type (might be due to invalid IL or missing references) //IL_4056: Unknown result type (might be due to invalid IL or missing references) //IL_405b: Unknown result type (might be due to invalid IL or missing references) //IL_4061: Unknown result type (might be due to invalid IL or missing references) //IL_4066: Unknown result type (might be due to invalid IL or missing references) //IL_406c: Unknown result type (might be due to invalid IL or missing references) //IL_4076: Unknown result type (might be due to invalid IL or missing references) //IL_407b: Unknown result type (might be due to invalid IL or missing references) //IL_4081: Unknown result type (might be due to invalid IL or missing references) //IL_4086: Unknown result type (might be due to invalid IL or missing references) //IL_408c: Unknown result type (might be due to invalid IL or missing references) //IL_4096: Unknown result type (might be due to invalid IL or missing references) //IL_409b: Unknown result type (might be due to invalid IL or missing references) //IL_40a0: Unknown result type (might be due to invalid IL or missing references) //IL_40b0: Unknown result type (might be due to invalid IL or missing references) //IL_40b6: Unknown result type (might be due to invalid IL or missing references) //IL_40bb: Unknown result type (might be due to invalid IL or missing references) //IL_40c1: Unknown result type (might be due to invalid IL or missing references) //IL_40c6: Unknown result type (might be due to invalid IL or missing references) //IL_40cc: Unknown result type (might be due to invalid IL or missing references) //IL_40d1: Unknown result type (might be due to invalid IL or missing references) //IL_40d7: Unknown result type (might be due to invalid IL or missing references) //IL_40e1: Unknown result type (might be due to invalid IL or missing references) //IL_40e6: Unknown result type (might be due to invalid IL or missing references) //IL_40f1: Unknown result type (might be due to invalid IL or missing references) //IL_40f7: Unknown result type (might be due to invalid IL or missing references) //IL_40fc: Unknown result type (might be due to invalid IL or missing references) //IL_4102: Unknown result type (might be due to invalid IL or missing references) //IL_4107: Unknown result type (might be due to invalid IL or missing references) //IL_410d: Unknown result type (might be due to invalid IL or missing references) //IL_4117: Unknown result type (might be due to invalid IL or missing references) //IL_411c: Unknown result type (might be due to invalid IL or missing references) //IL_4122: Unknown result type (might be due to invalid IL or missing references) //IL_4127: Unknown result type (might be due to invalid IL or missing references) //IL_412d: Unknown result type (might be due to invalid IL or missing references) //IL_4137: Unknown result type (might be due to invalid IL or missing references) //IL_413c: Unknown result type (might be due to invalid IL or missing references) //IL_4141: Unknown result type (might be due to invalid IL or missing references) //IL_4151: Unknown result type (might be due to invalid IL or missing references) //IL_4157: Unknown result type (might be due to invalid IL or missing references) //IL_415c: Unknown result type (might be due to invalid IL or missing references) //IL_4162: Unknown result type (might be due to invalid IL or missing references) //IL_4167: Unknown result type (might be due to invalid IL or missing references) //IL_416d: Unknown result type (might be due to invalid IL or missing references) //IL_4172: Unknown result type (might be due to invalid IL or missing references) //IL_4178: Unknown result type (might be due to invalid IL or missing references) //IL_4182: Unknown result type (might be due to invalid IL or missing references) //IL_4187: Unknown result type (might be due to invalid IL or missing references) //IL_4192: Unknown result type (might be due to invalid IL or missing references) //IL_4198: Unknown result type (might be due to invalid IL or missing references) //IL_419d: Unknown result type (might be due to invalid IL or missing references) //IL_41a3: Unknown result type (might be due to invalid IL or missing references) //IL_41a8: Unknown result type (might be due to invalid IL or missing references) //IL_41ae: Unknown result type (might be due to invalid IL or missing references) //IL_41b8: Unknown result type (might be due to invalid IL or missing references) //IL_41bd: Unknown result type (might be due to invalid IL or missing references) //IL_41c3: Unknown result type (might be due to invalid IL or missing references) //IL_41c8: Unknown result type (might be due to invalid IL or missing references) //IL_41ce: Unknown result type (might be due to invalid IL or missing references) //IL_41d8: Unknown result type (might be due to invalid IL or missing references) //IL_41dd: Unknown result type (might be due to invalid IL or missing references) //IL_41e2: Unknown result type (might be due to invalid IL or missing references) //IL_41f2: Unknown result type (might be due to invalid IL or missing references) //IL_41f8: Unknown result type (might be due to invalid IL or missing references) //IL_41fd: Unknown result type (might be due to invalid IL or missing references) //IL_4203: Unknown result type (might be due to invalid IL or missing references) //IL_4208: Unknown result type (might be due to invalid IL or missing references) //IL_420e: Unknown result type (might be due to invalid IL or missing references) //IL_4213: Unknown result type (might be due to invalid IL or missing references) //IL_4219: Unknown result type (might be due to invalid IL or missing references) //IL_4223: Unknown result type (might be due to invalid IL or missing references) //IL_4228: Unknown result type (might be due to invalid IL or missing references) //IL_4233: Unknown result type (might be due to invalid IL or missing references) //IL_4239: Unknown result type (might be due to invalid IL or missing references) //IL_423e: Unknown result type (might be due to invalid IL or missing references) //IL_4244: Unknown result type (might be due to invalid IL or missing references) //IL_4249: Unknown result type (might be due to invalid IL or missing references) //IL_424f: Unknown result type (might be due to invalid IL or missing references) //IL_4259: Unknown result type (might be due to invalid IL or missing references) //IL_425e: Unknown result type (might be due to invalid IL or missing references) //IL_4264: Unknown result type (might be due to invalid IL or missing references) //IL_4269: Unknown result type (might be due to invalid IL or missing references) //IL_426f: Unknown result type (might be due to invalid IL or missing references) //IL_4279: Unknown result type (might be due to invalid IL or missing references) //IL_427e: Unknown result type (might be due to invalid IL or missing references) //IL_4283: Unknown result type (might be due to invalid IL or missing references) //IL_4293: Unknown result type (might be due to invalid IL or missing references) //IL_4299: Unknown result type (might be due to invalid IL or missing references) //IL_429e: Unknown result type (might be due to invalid IL or missing references) //IL_42a4: Unknown result type (might be due to invalid IL or missing references) //IL_42a9: Unknown result type (might be due to invalid IL or missing references) //IL_42af: Unknown result type (might be due to invalid IL or missing references) //IL_42b4: Unknown result type (might be due to invalid IL or missing references) //IL_42ba: Unknown result type (might be due to invalid IL or missing references) //IL_42c4: Unknown result type (might be due to invalid IL or missing references) //IL_42c9: Unknown result type (might be due to invalid IL or missing references) //IL_42d4: Unknown result type (might be due to invalid IL or missing references) //IL_42da: Unknown result type (might be due to invalid IL or missing references) //IL_42df: Unknown result type (might be due to invalid IL or missing references) //IL_42e5: Unknown result type (might be due to invalid IL or missing references) //IL_42ea: Unknown result type (might be due to invalid IL or missing references) //IL_42f0: Unknown result type (might be due to invalid IL or missing references) //IL_42fa: Unknown result type (might be due to invalid IL or missing references) //IL_42ff: Unknown result type (might be due to invalid IL or missing references) //IL_4305: Unknown result type (might be due to invalid IL or missing references) //IL_430a: Unknown result type (might be due to invalid IL or missing references) //IL_4310: Unknown result type (might be due to invalid IL or missing references) //IL_431a: Unknown result type (might be due to invalid IL or missing references) //IL_431f: Unknown result type (might be due to invalid IL or missing references) //IL_4324: Unknown result type (might be due to invalid IL or missing references) //IL_4334: Unknown result type (might be due to invalid IL or missing references) //IL_433a: Unknown result type (might be due to invalid IL or missing references) //IL_433f: Unknown result type (might be due to invalid IL or missing references) //IL_4345: Unknown result type (might be due to invalid IL or missing references) //IL_434a: Unknown result type (might be due to invalid IL or missing references) //IL_4350: Unknown result type (might be due to invalid IL or missing references) //IL_4355: Unknown result type (might be due to invalid IL or missing references) //IL_435b: Unknown result type (might be due to invalid IL or missing references) //IL_4365: Unknown result type (might be due to invalid IL or missing references) //IL_436a: Unknown result type (might be due to invalid IL or missing references) //IL_4375: Unknown result type (might be due to invalid IL or missing references) //IL_437b: Unknown result type (might be due to invalid IL or missing references) //IL_4380: Unknown result type (might be due to invalid IL or missing references) //IL_4386: Unknown result type (might be due to invalid IL or missing references) //IL_438b: Unknown result type (might be due to invalid IL or missing references) //IL_4391: Unknown result type (might be due to invalid IL or missing references) //IL_439b: Unknown result type (might be due to invalid IL or missing references) //IL_43a0: Unknown result type (might be due to invalid IL or missing references) //IL_43a6: Unknown result type (might be due to invalid IL or missing references) //IL_43ab: Unknown result type (might be due to invalid IL or missing references) //IL_43b1: Unknown result type (might be due to invalid IL or missing references) //IL_43bb: Unknown result type (might be due to invalid IL or missing references) //IL_43c0: Unknown result type (might be due to invalid IL or missing references) //IL_43c5: Unknown result type (might be due to invalid IL or missing references) //IL_43d5: Unknown result type (might be due to invalid IL or missing references) //IL_43db: Unknown result type (might be due to invalid IL or missing references) //IL_43e0: Unknown result type (might be due to invalid IL or missing references) //IL_43e6: Unknown result type (might be due to invalid IL or missing references) //IL_43eb: Unknown result type (might be due to invalid IL or missing references) //IL_43f1: Unknown result type (might be due to invalid IL or missing references) //IL_43f6: Unknown result type (might be due to invalid IL or missing references) //IL_43fc: Unknown result type (might be due to invalid IL or missing references) //IL_4406: Unknown result type (might be due to invalid IL or missing references) //IL_440b: Unknown result type (might be due to invalid IL or missing references) //IL_4416: Unknown result type (might be due to invalid IL or missing references) //IL_441c: Unknown result type (might be due to invalid IL or missing references) //IL_4421: Unknown result type (might be due to invalid IL or missing references) //IL_4427: Unknown result type (might be due to invalid IL or missing references) //IL_442c: Unknown result type (might be due to invalid IL or missing references) //IL_4432: Unknown result type (might be due to invalid IL or missing references) //IL_443c: Unknown result type (might be due to invalid IL or missing references) //IL_4441: Unknown result type (might be due to invalid IL or missing references) //IL_4447: Unknown result type (might be due to invalid IL or missing references) //IL_444c: Unknown result type (might be due to invalid IL or missing references) //IL_4452: Unknown result type (might be due to invalid IL or missing references) //IL_445c: Unknown result type (might be due to invalid IL or missing references) //IL_4461: Unknown result type (might be due to invalid IL or missing references) //IL_4466: Unknown result type (might be due to invalid IL or missing references) //IL_4476: Unknown result type (might be due to invalid IL or missing references) //IL_447c: Unknown result type (might be due to invalid IL or missing references) //IL_4481: Unknown result type (might be due to invalid IL or missing references) //IL_4487: Unknown result type (might be due to invalid IL or missing references) //IL_448c: Unknown result type (might be due to invalid IL or missing references) //IL_4492: Unknown result type (might be due to invalid IL or missing references) //IL_449c: Unknown result type (might be due to invalid IL or missing references) //IL_44a1: Unknown result type (might be due to invalid IL or missing references) //IL_44a7: Unknown result type (might be due to invalid IL or missing references) //IL_44ac: Unknown result type (might be due to invalid IL or missing references) //IL_44b7: Unknown result type (might be due to invalid IL or missing references) //IL_44bd: Unknown result type (might be due to invalid IL or missing references) //IL_44c2: Unknown result type (might be due to invalid IL or missing references) //IL_44c8: Unknown result type (might be due to invalid IL or missing references) //IL_44cd: Unknown result type (might be due to invalid IL or missing references) //IL_44d3: Unknown result type (might be due to invalid IL or missing references) //IL_44d8: Unknown result type (might be due to invalid IL or missing references) //IL_44dd: Unknown result type (might be due to invalid IL or missing references) //IL_44ed: Unknown result type (might be due to invalid IL or missing references) //IL_44f3: Unknown result type (might be due to invalid IL or missing references) //IL_44f8: Unknown result type (might be due to invalid IL or missing references) //IL_44fe: Unknown result type (might be due to invalid IL or missing references) //IL_4503: Unknown result type (might be due to invalid IL or missing references) //IL_4509: Unknown result type (might be due to invalid IL or missing references) //IL_4513: Unknown result type (might be due to invalid IL or missing references) //IL_4518: Unknown result type (might be due to invalid IL or missing references) //IL_451e: Unknown result type (might be due to invalid IL or missing references) //IL_4523: Unknown result type (might be due to invalid IL or missing references) //IL_4529: Unknown result type (might be due to invalid IL or missing references) //IL_4533: Unknown result type (might be due to invalid IL or missing references) //IL_4538: Unknown result type (might be due to invalid IL or missing references) //IL_4543: Unknown result type (might be due to invalid IL or missing references) //IL_4549: Unknown result type (might be due to invalid IL or missing references) //IL_454e: Unknown result type (might be due to invalid IL or missing references) //IL_4554: Unknown result type (might be due to invalid IL or missing references) //IL_4559: Unknown result type (might be due to invalid IL or missing references) //IL_455f: Unknown result type (might be due to invalid IL or missing references) //IL_4564: Unknown result type (might be due to invalid IL or missing references) //IL_456a: Unknown result type (might be due to invalid IL or missing references) //IL_4574: Unknown result type (might be due to invalid IL or missing references) //IL_4579: Unknown result type (might be due to invalid IL or missing references) //IL_457e: Unknown result type (might be due to invalid IL or missing references) //IL_458e: Unknown result type (might be due to invalid IL or missing references) //IL_4594: Unknown result type (might be due to invalid IL or missing references) //IL_4599: Unknown result type (might be due to invalid IL or missing references) //IL_459f: Unknown result type (might be due to invalid IL or missing references) //IL_45a4: Unknown result type (might be due to invalid IL or missing references) //IL_45aa: Unknown result type (might be due to invalid IL or missing references) //IL_45b4: Unknown result type (might be due to invalid IL or missing references) //IL_45b9: Unknown result type (might be due to invalid IL or missing references) //IL_45bf: Unknown result type (might be due to invalid IL or missing references) //IL_45c4: Unknown result type (might be due to invalid IL or missing references) //IL_45ca: Unknown result type (might be due to invalid IL or missing references) //IL_45d4: Unknown result type (might be due to invalid IL or missing references) //IL_45d9: Unknown result type (might be due to invalid IL or missing references) //IL_45e4: Unknown result type (might be due to invalid IL or missing references) //IL_45ea: Unknown result type (might be due to invalid IL or missing references) //IL_45ef: Unknown result type (might be due to invalid IL or missing references) //IL_45f5: Unknown result type (might be due to invalid IL or missing references) //IL_45fa: Unknown result type (might be due to invalid IL or missing references) //IL_4600: Unknown result type (might be due to invalid IL or missing references) //IL_4605: Unknown result type (might be due to invalid IL or missing references) //IL_460b: Unknown result type (might be due to invalid IL or missing references) //IL_4615: Unknown result type (might be due to invalid IL or missing references) //IL_461a: Unknown result type (might be due to invalid IL or missing references) //IL_461f: Unknown result type (might be due to invalid IL or missing references) //IL_462f: Unknown result type (might be due to invalid IL or missing references) //IL_4635: Unknown result type (might be due to invalid IL or missing references) //IL_463a: Unknown result type (might be due to invalid IL or missing references) //IL_4640: Unknown result type (might be due to invalid IL or missing references) //IL_4645: Unknown result type (might be due to invalid IL or missing references) //IL_464b: Unknown result type (might be due to invalid IL or missing references) //IL_4655: Unknown result type (might be due to invalid IL or missing references) //IL_465a: Unknown result type (might be due to invalid IL or missing references) //IL_4660: Unknown result type (might be due to invalid IL or missing references) //IL_4665: Unknown result type (might be due to invalid IL or missing references) //IL_466b: Unknown result type (might be due to invalid IL or missing references) //IL_4675: Unknown result type (might be due to invalid IL or missing references) //IL_467a: Unknown result type (might be due to invalid IL or missing references) //IL_4685: Unknown result type (might be due to invalid IL or missing references) //IL_468b: Unknown result type (might be due to invalid IL or missing references) //IL_4690: Unknown result type (might be due to invalid IL or missing references) //IL_4696: Unknown result type (might be due to invalid IL or missing references) //IL_469b: Unknown result type (might be due to invalid IL or missing references) //IL_46a1: Unknown result type (might be due to invalid IL or missing references) //IL_46a6: Unknown result type (might be due to invalid IL or missing references) //IL_46ac: Unknown result type (might be due to invalid IL or missing references) //IL_46b6: Unknown result type (might be due to invalid IL or missing references) //IL_46bb: Unknown result type (might be due to invalid IL or missing references) //IL_46c0: Unknown result type (might be due to invalid IL or missing references) //IL_46d0: Unknown result type (might be due to invalid IL or missing references) //IL_46d6: Unknown result type (might be due to invalid IL or missing references) //IL_46db: Unknown result type (might be due to invalid IL or missing references) //IL_46e1: Unknown result type (might be due to invalid IL or missing references) //IL_46e6: Unknown result type (might be due to invalid IL or missing references) //IL_46ec: Unknown result type (might be due to invalid IL or missing references) //IL_46f6: Unknown result type (might be due to invalid IL or missing references) //IL_46fb: Unknown result type (might be due to invalid IL or missing references) //IL_4701: Unknown result type (might be due to invalid IL or missing references) //IL_4706: Unknown result type (might be due to invalid IL or missing references) //IL_470c: Unknown result type (might be due to invalid IL or missing references) //IL_4716: Unknown result type (might be due to invalid IL or missing references) //IL_471b: Unknown result type (might be due to invalid IL or missing references) //IL_4726: Unknown result type (might be due to invalid IL or missing references) //IL_472c: Unknown result type (might be due to invalid IL or missing references) //IL_4731: Unknown result type (might be due to invalid IL or missing references) //IL_4737: Unknown result type (might be due to invalid IL or missing references) //IL_473c: Unknown result type (might be due to invalid IL or missing references) //IL_4742: Unknown result type (might be due to invalid IL or missing references) //IL_4747: Unknown result type (might be due to invalid IL or missing references) //IL_474d: Unknown result type (might be due to invalid IL or missing references) //IL_4757: Unknown result type (might be due to invalid IL or missing references) //IL_475c: Unknown result type (might be due to invalid IL or missing references) //IL_4761: Unknown result type (might be due to invalid IL or missing references) //IL_4771: Unknown result type (might be due to invalid IL or missing references) //IL_4777: Unknown result type (might be due to invalid IL or missing references) //IL_477c: Unknown result type (might be due to invalid IL or missing references) //IL_4782: Unknown result type (might be due to invalid IL or missing references) //IL_4787: Unknown result type (might be due to invalid IL or missing references) //IL_478d: Unknown result type (might be due to invalid IL or missing references) //IL_4797: Unknown result type (might be due to invalid IL or missing references) //IL_479c: Unknown result type (might be due to invalid IL or missing references) //IL_47a2: Unknown result type (might be due to invalid IL or missing references) //IL_47a7: Unknown result type (might be due to invalid IL or missing references) //IL_47ad: Unknown result type (might be due to invalid IL or missing references) //IL_47b7: Unknown result type (might be due to invalid IL or missing references) //IL_47bc: Unknown result type (might be due to invalid IL or missing references) //IL_47c7: Unknown result type (might be due to invalid IL or missing references) //IL_47cd: Unknown result type (might be due to invalid IL or missing references) //IL_47d2: Unknown result type (might be due to invalid IL or missing references) //IL_47d8: Unknown result type (might be due to invalid IL or missing references) //IL_47dd: Unknown result type (might be due to invalid IL or missing references) //IL_47e3: Unknown result type (might be due to invalid IL or missing references) //IL_47e8: Unknown result type (might be due to invalid IL or missing references) //IL_47ee: Unknown result type (might be due to invalid IL or missing references) //IL_47f8: Unknown result type (might be due to invalid IL or missing references) //IL_47fd: Unknown result type (might be due to invalid IL or missing references) //IL_4802: Unknown result type (might be due to invalid IL or missing references) //IL_4812: Unknown result type (might be due to invalid IL or missing references) //IL_4818: Unknown result type (might be due to invalid IL or missing references) //IL_481d: Unknown result type (might be due to invalid IL or missing references) //IL_4823: Unknown result type (might be due to invalid IL or missing references) //IL_4828: Unknown result type (might be due to invalid IL or missing references) //IL_482e: Unknown result type (might be due to invalid IL or missing references) //IL_4838: Unknown result type (might be due to invalid IL or missing references) //IL_483d: Unknown result type (might be due to invalid IL or missing references) //IL_4843: Unknown result type (might be due to invalid IL or missing references) //IL_4848: Unknown result type (might be due to invalid IL or missing references) //IL_484e: Unknown result type (might be due to invalid IL or missing references) //IL_4858: Unknown result type (might be due to invalid IL or missing references) //IL_485d: Unknown result type (might be due to invalid IL or missing references) //IL_4868: Unknown result type (might be due to invalid IL or missing references) //IL_486e: Unknown result type (might be due to invalid IL or missing references) //IL_4873: Unknown result type (might be due to invalid IL or missing references) //IL_4879: Unknown result type (might be due to invalid IL or missing references) //IL_487e: Unknown result type (might be due to invalid IL or missing references) //IL_4884: Unknown result type (might be due to invalid IL or missing references) //IL_4889: Unknown result type (might be due to invalid IL or missing references) //IL_488f: Unknown result type (might be due to invalid IL or missing references) //IL_4899: Unknown result type (might be due to invalid IL or missing references) //IL_489e: Unknown result type (might be due to invalid IL or missing references) //IL_48a3: Unknown result type (might be due to invalid IL or missing references) //IL_48b3: Unknown result type (might be due to invalid IL or missing references) //IL_48b9: Unknown result type (might be due to invalid IL or missing references) //IL_48be: Unknown result type (might be due to invalid IL or missing references) //IL_48c4: Unknown result type (might be due to invalid IL or missing references) //IL_48c9: Unknown result type (might be due to invalid IL or missing references) //IL_48cf: Unknown result type (might be due to invalid IL or missing references) //IL_48d9: Unknown result type (might be due to invalid IL or missing references) //IL_48de: Unknown result type (might be due to invalid IL or missing references) //IL_48e4: Unknown result type (might be due to invalid IL or missing references) //IL_48e9: Unknown result type (might be due to invalid IL or missing references) //IL_48ef: Unknown result type (might be due to invalid IL or missing references) //IL_48f9: Unknown result type (might be due to invalid IL or missing references) //IL_48fe: Unknown result type (might be due to invalid IL or missing references) //IL_4909: Unknown result type (might be due to invalid IL or missing references) //IL_490f: Unknown result type (might be due to invalid IL or missing references) //IL_4914: Unknown result type (might be due to invalid IL or missing references) //IL_491a: Unknown result type (might be due to invalid IL or missing references) //IL_491f: Unknown result type (might be due to invalid IL or missing references) //IL_4925: Unknown result type (might be due to invalid IL or missing references) //IL_492a: Unknown result type (might be due to invalid IL or missing references) //IL_4930: Unknown result type (might be due to invalid IL or missing references) //IL_493a: Unknown result type (might be due to invalid IL or missing references) //IL_493f: Unknown result type (might be due to invalid IL or missing references) //IL_4944: Unknown result type (might be due to invalid IL or missing references) //IL_4954: Unknown result type (might be due to invalid IL or missing references) //IL_495a: Unknown result type (might be due to invalid IL or missing references) //IL_495f: Unknown result type (might be due to invalid IL or missing references) //IL_4965: Unknown result type (might be due to invalid IL or missing references) //IL_496a: Unknown result type (might be due to invalid IL or missing references) //IL_4970: Unknown result type (might be due to invalid IL or missing references) //IL_497a: Unknown result type (might be due to invalid IL or missing references) //IL_497f: Unknown result type (might be due to invalid IL or missing references) //IL_4985: Unknown result type (might be due to invalid IL or missing references) //IL_498a: Unknown result type (might be due to invalid IL or missing references) //IL_4995: Unknown result type (might be due to invalid IL or missing references) //IL_499b: Unknown result type (might be due to invalid IL or missing references) //IL_49a0: Unknown result type (might be due to invalid IL or missing references) //IL_49a6: Unknown result type (might be due to invalid IL or missing references) //IL_49ab: Unknown result type (might be due to invalid IL or missing references) //IL_49b1: Unknown result type (might be due to invalid IL or missing references) //IL_49bb: Unknown result type (might be due to invalid IL or missing references) //IL_49c0: Unknown result type (might be due to invalid IL or missing references) //IL_49c6: Unknown result type (might be due to invalid IL or missing references) //IL_49cb: Unknown result type (might be due to invalid IL or missing references) //IL_49d0: Unknown result type (might be due to invalid IL or missing references) //IL_49e0: Unknown result type (might be due to invalid IL or missing references) //IL_49e6: Unknown result type (might be due to invalid IL or missing references) //IL_49eb: Unknown result type (might be due to invalid IL or missing references) //IL_49f1: Unknown result type (might be due to invalid IL or missing references) //IL_49f6: Unknown result type (might be due to invalid IL or missing references) //IL_49fc: Unknown result type (might be due to invalid IL or missing references) //IL_4a06: Unknown result type (might be due to invalid IL or missing references) //IL_4a0b: Unknown result type (might be due to invalid IL or missing references) //IL_4a11: Unknown result type (might be due to invalid IL or missing references) //IL_4a16: Unknown result type (might be due to invalid IL or missing references) //IL_4a1c: Unknown result type (might be due to invalid IL or missing references) //IL_4a26: Unknown result type (might be due to invalid IL or missing references) //IL_4a2b: Unknown result type (might be due to invalid IL or missing references) //IL_4a36: Unknown result type (might be due to invalid IL or missing references) //IL_4a3c: Unknown result type (might be due to invalid IL or missing references) //IL_4a41: Unknown result type (might be due to invalid IL or missing references) //IL_4a47: Unknown result type (might be due to invalid IL or missing references) //IL_4a4c: Unknown result type (might be due to invalid IL or missing references) //IL_4a52: Unknown result type (might be due to invalid IL or missing references) //IL_4a5c: Unknown result type (might be due to invalid IL or missing references) //IL_4a61: Unknown result type (might be due to invalid IL or missing references) //IL_4a67: Unknown result type (might be due to invalid IL or missing references) //IL_4a6c: Unknown result type (might be due to invalid IL or missing references) //IL_4a72: Unknown result type (might be due to invalid IL or missing references) //IL_4a7c: Unknown result type (might be due to invalid IL or missing references) //IL_4a81: Unknown result type (might be due to invalid IL or missing references) //IL_4a86: Unknown result type (might be due to invalid IL or missing references) //IL_4a96: Unknown result type (might be due to invalid IL or missing references) //IL_4a9c: Unknown result type (might be due to invalid IL or missing references) //IL_4aa1: Unknown result type (might be due to invalid IL or missing references) //IL_4aa7: Unknown result type (might be due to invalid IL or missing references) //IL_4aac: Unknown result type (might be due to invalid IL or missing references) //IL_4ab2: Unknown result type (might be due to invalid IL or missing references) //IL_4abc: Unknown result type (might be due to invalid IL or missing references) //IL_4ac1: Unknown result type (might be due to invalid IL or missing references) //IL_4ac7: Unknown result type (might be due to invalid IL or missing references) //IL_4acc: Unknown result type (might be due to invalid IL or missing references) //IL_4ad2: Unknown result type (might be due to invalid IL or missing references) //IL_4adc: Unknown result type (might be due to invalid IL or missing references) //IL_4ae1: Unknown result type (might be due to invalid IL or missing references) //IL_4aec: Unknown result type (might be due to invalid IL or missing references) //IL_4af2: Unknown result type (might be due to invalid IL or missing references) //IL_4af7: Unknown result type (might be due to invalid IL or missing references) //IL_4afd: Unknown result type (might be due to invalid IL or missing references) //IL_4b02: Unknown result type (might be due to invalid IL or missing references) //IL_4b08: Unknown result type (might be due to invalid IL or missing references) //IL_4b12: Unknown result type (might be due to invalid IL or missing references) //IL_4b17: Unknown result type (might be due to invalid IL or missing references) //IL_4b1d: Unknown result type (might be due to invalid IL or missing references) //IL_4b22: Unknown result type (might be due to invalid IL or missing references) //IL_4b28: Unknown result type (might be due to invalid IL or missing references) //IL_4b32: Unknown result type (might be due to invalid IL or missing references) //IL_4b37: Unknown result type (might be due to invalid IL or missing references) //IL_4b3c: Unknown result type (might be due to invalid IL or missing references) //IL_4b4c: Unknown result type (might be due to invalid IL or missing references) //IL_4b52: Unknown result type (might be due to invalid IL or missing references) //IL_4b57: Unknown result type (might be due to invalid IL or missing references) //IL_4b5d: Unknown result type (might be due to invalid IL or missing references) //IL_4b62: Unknown result type (might be due to invalid IL or missing references) //IL_4b68: Unknown result type (might be due to invalid IL or missing references) //IL_4b72: Unknown result type (might be due to invalid IL or missing references) //IL_4b77: Unknown result type (might be due to invalid IL or missing references) //IL_4b7d: Unknown result type (might be due to invalid IL or missing references) //IL_4b82: Unknown result type (might be due to invalid IL or missing references) //IL_4b88: Unknown result type (might be due to invalid IL or missing references) //IL_4b92: Unknown result type (might be due to invalid IL or missing references) //IL_4b97: Unknown result type (might be due to invalid IL or missing references) //IL_4ba2: Unknown result type (might be due to invalid IL or missing references) //IL_4ba8: Unknown result type (might be due to invalid IL or missing references) //IL_4bad: Unknown result type (might be due to invalid IL or missing references) //IL_4bb3: Unknown result type (might be due to invalid IL or missing references) //IL_4bb8: Unknown result type (might be due to invalid IL or missing references) //IL_4bbe: Unknown result type (might be due to invalid IL or missing references) //IL_4bc8: Unknown result type (might be due to invalid IL or missing references) //IL_4bcd: Unknown result type (might be due to invalid IL or missing references) //IL_4bd3: Unknown result type (might be due to invalid IL or missing references) //IL_4bd8: Unknown result type (might be due to invalid IL or missing references) //IL_4bde: Unknown result type (might be due to invalid IL or missing references) //IL_4be8: Unknown result type (might be due to invalid IL or missing references) //IL_4bed: Unknown result type (might be due to invalid IL or missing references) //IL_4bf2: Unknown result type (might be due to invalid IL or missing references) //IL_4c02: Unknown result type (might be due to invalid IL or missing references) //IL_4c08: Unknown result type (might be due to invalid IL or missing references) //IL_4c0d: Unknown result type (might be due to invalid IL or missing references) //IL_4c13: Unknown result type (might be due to invalid IL or missing references) //IL_4c18: Unknown result type (might be due to invalid IL or missing references) //IL_4c1e: Unknown result type (might be due to invalid IL or missing references) //IL_4c28: Unknown result type (might be due to invalid IL or missing references) //IL_4c2d: Unknown result type (might be due to invalid IL or missing references) //IL_4c33: Unknown result type (might be due to invalid IL or missing references) //IL_4c38: Unknown result type (might be due to invalid IL or missing references) //IL_4c3e: Unknown result type (might be due to invalid IL or missing references) //IL_4c48: Unknown result type (might be due to invalid IL or missing references) //IL_4c4d: Unknown result type (might be due to invalid IL or missing references) //IL_4c58: Unknown result type (might be due to invalid IL or missing references) //IL_4c5e: Unknown result type (might be due to invalid IL or missing references) //IL_4c63: Unknown result type (might be due to invalid IL or missing references) //IL_4c69: Unknown result type (might be due to invalid IL or missing references) //IL_4c6e: Unknown result type (might be due to invalid IL or missing references) //IL_4c74: Unknown result type (might be due to invalid IL or missing references) //IL_4c7e: Unknown result type (might be due to invalid IL or missing references) //IL_4c83: Unknown result type (might be due to invalid IL or missing references) //IL_4c89: Unknown result type (might be due to invalid IL or missing references) //IL_4c8e: Unknown result type (might be due to invalid IL or missing references) //IL_4c94: Unknown result type (might be due to invalid IL or missing references) //IL_4c9e: Unknown result type (might be due to invalid IL or missing references) //IL_4ca3: Unknown result type (might be due to invalid IL or missing references) //IL_4ca8: Unknown result type (might be due to invalid IL or missing references) //IL_4cb8: Unknown result type (might be due to invalid IL or missing references) //IL_4cbe: Unknown result type (might be due to invalid IL or missing references) //IL_4cc3: Unknown result type (might be due to invalid IL or missing references) //IL_4cc9: Unknown result type (might be due to invalid IL or missing references) //IL_4cce: Unknown result type (might be due to invalid IL or missing references) //IL_4cd4: Unknown result type (might be due to invalid IL or missing references) //IL_4cde: Unknown result type (might be due to invalid IL or missing references) //IL_4ce3: Unknown result type (might be due to invalid IL or missing references) //IL_4ce9: Unknown result type (might be due to invalid IL or missing references) //IL_4cee: Unknown result type (might be due to invalid IL or missing references) //IL_4cf4: Unknown result type (might be due to invalid IL or missing references) //IL_4cfe: Unknown result type (might be due to invalid IL or missing references) //IL_4d03: Unknown result type (might be due to invalid IL or missing references) //IL_4d0e: Unknown result type (might be due to invalid IL or missing references) //IL_4d14: Unknown result type (might be due to invalid IL or missing references) //IL_4d19: Unknown result type (might be due to invalid IL or missing references) //IL_4d1f: Unknown result type (might be due to invalid IL or missing references) //IL_4d24: Unknown result type (might be due to invalid IL or missing references) //IL_4d2a: Unknown result type (might be due to invalid IL or missing references) //IL_4d34: Unknown result type (might be due to invalid IL or missing references) //IL_4d39: Unknown result type (might be due to invalid IL or missing references) //IL_4d3f: Unknown result type (might be due to invalid IL or missing references) //IL_4d44: Unknown result type (might be due to invalid IL or missing references) //IL_4d4a: Unknown result type (might be due to invalid IL or missing references) //IL_4d54: Unknown result type (might be due to invalid IL or missing references) //IL_4d59: Unknown result type (might be due to invalid IL or missing references) //IL_4d5e: Unknown result type (might be due to invalid IL or missing references) //IL_4d6e: Unknown result type (might be due to invalid IL or missing references) //IL_4d74: Unknown result type (might be due to invalid IL or missing references) //IL_4d79: Unknown result type (might be due to invalid IL or missing references) //IL_4d7f: Unknown result type (might be due to invalid IL or missing references) //IL_4d84: Unknown result type (might be due to invalid IL or missing references) //IL_4d8a: Unknown result type (might be due to invalid IL or missing references) //IL_4d94: Unknown result type (might be due to invalid IL or missing references) //IL_4d99: Unknown result type (might be due to invalid IL or missing references) //IL_4d9f: Unknown result type (might be due to invalid IL or missing references) //IL_4da4: Unknown result type (might be due to invalid IL or missing references) //IL_4daa: Unknown result type (might be due to invalid IL or missing references) //IL_4db4: Unknown result type (might be due to invalid IL or missing references) //IL_4db9: Unknown result type (might be due to invalid IL or missing references) //IL_4dc4: Unknown result type (might be due to invalid IL or missing references) //IL_4dca: Unknown result type (might be due to invalid IL or missing references) //IL_4dcf: Unknown result type (might be due to invalid IL or missing references) //IL_4dd5: Unknown result type (might be due to invalid IL or missing references) //IL_4dda: Unknown result type (might be due to invalid IL or missing references) //IL_4de0: Unknown result type (might be due to invalid IL or missing references) //IL_4dea: Unknown result type (might be due to invalid IL or missing references) //IL_4def: Unknown result type (might be due to invalid IL or missing references) //IL_4df5: Unknown result type (might be due to invalid IL or missing references) //IL_4dfa: Unknown result type (might be due to invalid IL or missing references) //IL_4e00: Unknown result type (might be due to invalid IL or missing references) //IL_4e0a: Unknown result type (might be due to invalid IL or missing references) //IL_4e0f: Unknown result type (might be due to invalid IL or missing references) //IL_4e14: Unknown result type (might be due to invalid IL or missing references) //IL_4e24: Unknown result type (might be due to invalid IL or missing references) //IL_4e2a: Unknown result type (might be due to invalid IL or missing references) //IL_4e2f: Unknown result type (might be due to invalid IL or missing references) //IL_4e35: Unknown result type (might be due to invalid IL or missing references) //IL_4e3a: Unknown result type (might be due to invalid IL or missing references) //IL_4e40: Unknown result type (might be due to invalid IL or missing references) //IL_4e4a: Unknown result type (might be due to invalid IL or missing references) //IL_4e4f: Unknown result type (might be due to invalid IL or missing references) //IL_4e55: Unknown result type (might be due to invalid IL or missing references) //IL_4e5a: Unknown result type (might be due to invalid IL or missing references) //IL_4e60: Unknown result type (might be due to invalid IL or missing references) //IL_4e6a: Unknown result type (might be due to invalid IL or missing references) //IL_4e6f: Unknown result type (might be due to invalid IL or missing references) //IL_4e7a: Unknown result type (might be due to invalid IL or missing references) //IL_4e80: Unknown result type (might be due to invalid IL or missing references) //IL_4e85: Unknown result type (might be due to invalid IL or missing references) //IL_4e8b: Unknown result type (might be due to invalid IL or missing references) //IL_4e90: Unknown result type (might be due to invalid IL or missing references) //IL_4e96: Unknown result type (might be due to invalid IL or missing references) //IL_4ea0: Unknown result type (might be due to invalid IL or missing references) //IL_4ea5: Unknown result type (might be due to invalid IL or missing references) //IL_4eab: Unknown result type (might be due to invalid IL or missing references) //IL_4eb0: Unknown result type (might be due to invalid IL or missing references) //IL_4eb6: Unknown result type (might be due to invalid IL or missing references) //IL_4ec0: Unknown result type (might be due to invalid IL or missing references) //IL_4ec5: Unknown result type (might be due to invalid IL or missing references) //IL_4eca: Unknown result type (might be due to invalid IL or missing references) //IL_4eda: Unknown result type (might be due to invalid IL or missing references) //IL_4ee0: Unknown result type (might be due to invalid IL or missing references) //IL_4ee5: Unknown result type (might be due to invalid IL or missing references) //IL_4eeb: Unknown result type (might be due to invalid IL or missing references) //IL_4ef0: Unknown result type (might be due to invalid IL or missing references) //IL_4ef6: Unknown result type (might be due to invalid IL or missing references) //IL_4f00: Unknown result type (might be due to invalid IL or missing references) //IL_4f05: Unknown result type (might be due to invalid IL or missing references) //IL_4f0b: Unknown result type (might be due to invalid IL or missing references) //IL_4f10: Unknown result type (might be due to invalid IL or missing references) //IL_4f1b: Unknown result type (might be due to invalid IL or missing references) //IL_4f21: Unknown result type (might be due to invalid IL or missing references) //IL_4f26: Unknown result type (might be due to invalid IL or missing references) //IL_4f2c: Unknown result type (might be due to invalid IL or missing references) //IL_4f31: Unknown result type (might be due to invalid IL or missing references) //IL_4f37: Unknown result type (might be due to invalid IL or missing references) //IL_4f41: Unknown result type (might be due to invalid IL or missing references) //IL_4f46: Unknown result type (might be due to invalid IL or missing references) //IL_4f4c: Unknown result type (might be due to invalid IL or missing references) //IL_4f51: Unknown result type (might be due to invalid IL or missing references) //IL_4f56: Unknown result type (might be due to invalid IL or missing references) //IL_4f66: Unknown result type (might be due to invalid IL or missing references) //IL_4f6c: Unknown result type (might be due to invalid IL or missing references) //IL_4f71: Unknown result type (might be due to invalid IL or missing references) //IL_4f77: Unknown result type (might be due to invalid IL or missing references) //IL_4f7c: Unknown result type (might be due to invalid IL or missing references) //IL_4f82: Unknown result type (might be due to invalid IL or missing references) //IL_4f8c: Unknown result type (might be due to invalid IL or missing references) //IL_4f91: Unknown result type (might be due to invalid IL or missing references) //IL_4f97: Unknown result type (might be due to invalid IL or missing references) //IL_4f9c: Unknown result type (might be due to invalid IL or missing references) //IL_4fa2: Unknown result type (might be due to invalid IL or missing references) //IL_4fac: Unknown result type (might be due to invalid IL or missing references) //IL_4fb1: Unknown result type (might be due to invalid IL or missing references) //IL_4fbc: Unknown result type (might be due to invalid IL or missing references) //IL_4fc2: Unknown result type (might be due to invalid IL or missing references) //IL_4fc7: Unknown result type (might be due to invalid IL or missing references) //IL_4fcd: Unknown result type (might be due to invalid IL or missing references) //IL_4fd2: Unknown result type (might be due to invalid IL or missing references) //IL_4fd8: Unknown result type (might be due to invalid IL or missing references) //IL_4fe2: Unknown result type (might be due to invalid IL or missing references) //IL_4fe7: Unknown result type (might be due to invalid IL or missing references) //IL_4fed: Unknown result type (might be due to invalid IL or missing references) //IL_4ff2: Unknown result type (might be due to invalid IL or missing references) //IL_4ff8: Unknown result type (might be due to invalid IL or missing references) //IL_5002: Unknown result type (might be due to invalid IL or missing references) //IL_5007: Unknown result type (might be due to invalid IL or missing references) //IL_500c: Unknown result type (might be due to invalid IL or missing references) //IL_501c: Unknown result type (might be due to invalid IL or missing references) //IL_5022: Unknown result type (might be due to invalid IL or missing references) //IL_5027: Unknown result type (might be due to invalid IL or missing references) //IL_502d: Unknown result type (might be due to invalid IL or missing references) //IL_5032: Unknown result type (might be due to invalid IL or missing references) //IL_5038: Unknown result type (might be due to invalid IL or missing references) //IL_5042: Unknown result type (might be due to invalid IL or missing references) //IL_5047: Unknown result type (might be due to invalid IL or missing references) //IL_504d: Unknown result type (might be due to invalid IL or missing references) //IL_5052: Unknown result type (might be due to invalid IL or missing references) //IL_5058: Unknown result type (might be due to invalid IL or missing references) //IL_5062: Unknown result type (might be due to invalid IL or missing references) //IL_5067: Unknown result type (might be due to invalid IL or missing references) //IL_5072: Unknown result type (might be due to invalid IL or missing references) //IL_5078: Unknown result type (might be due to invalid IL or missing references) //IL_507d: Unknown result type (might be due to invalid IL or missing references) //IL_5083: Unknown result type (might be due to invalid IL or missing references) //IL_5088: Unknown result type (might be due to invalid IL or missing references) //IL_508e: Unknown result type (might be due to invalid IL or missing references) //IL_5098: Unknown result type (might be due to invalid IL or missing references) //IL_509d: Unknown result type (might be due to invalid IL or missing references) //IL_50a3: Unknown result type (might be due to invalid IL or missing references) //IL_50a8: Unknown result type (might be due to invalid IL or missing references) //IL_50ae: Unknown result type (might be due to invalid IL or missing references) //IL_50b8: Unknown result type (might be due to invalid IL or missing references) //IL_50bd: Unknown result type (might be due to invalid IL or missing references) //IL_50c2: Unknown result type (might be due to invalid IL or missing references) //IL_50d2: Unknown result type (might be due to invalid IL or missing references) //IL_50d8: Unknown result type (might be due to invalid IL or missing references) //IL_50dd: Unknown result type (might be due to invalid IL or missing references) //IL_50e3: Unknown result type (might be due to invalid IL or missing references) //IL_50e8: Unknown result type (might be due to invalid IL or missing references) //IL_50ee: Unknown result type (might be due to invalid IL or missing references) //IL_50f8: Unknown result type (might be due to invalid IL or missing references) //IL_50fd: Unknown result type (might be due to invalid IL or missing references) //IL_5103: Unknown result type (might be due to invalid IL or missing references) //IL_5108: Unknown result type (might be due to invalid IL or missing references) //IL_510e: Unknown result type (might be due to invalid IL or missing references) //IL_5118: Unknown result type (might be due to invalid IL or missing references) //IL_511d: Unknown result type (might be due to invalid IL or missing references) //IL_5128: Unknown result type (might be due to invalid IL or missing references) //IL_512e: Unknown result type (might be due to invalid IL or missing references) //IL_5133: Unknown result type (might be due to invalid IL or missing references) //IL_5139: Unknown result type (might be due to invalid IL or missing references) //IL_513e: Unknown result type (might be due to invalid IL or missing references) //IL_5144: Unknown result type (might be due to invalid IL or missing references) //IL_514e: Unknown result type (might be due to invalid IL or missing references) //IL_5153: Unknown result type (might be due to invalid IL or missing references) //IL_5159: Unknown result type (might be due to invalid IL or missing references) //IL_515e: Unknown result type (might be due to invalid IL or missing references) //IL_5164: Unknown result type (might be due to invalid IL or missing references) //IL_516e: Unknown result type (might be due to invalid IL or missing references) //IL_5173: Unknown result type (might be due to invalid IL or missing references) //IL_5178: Unknown result type (might be due to invalid IL or missing references) //IL_5188: Unknown result type (might be due to invalid IL or missing references) //IL_518e: Unknown result type (might be due to invalid IL or missing references) //IL_5193: Unknown result type (might be due to invalid IL or missing references) //IL_5199: Unknown result type (might be due to invalid IL or missing references) //IL_519e: Unknown result type (might be due to invalid IL or missing references) //IL_51a4: Unknown result type (might be due to invalid IL or missing references) //IL_51ae: Unknown result type (might be due to invalid IL or missing references) //IL_51b3: Unknown result type (might be due to invalid IL or missing references) //IL_51b9: Unknown result type (might be due to invalid IL or missing references) //IL_51be: Unknown result type (might be due to invalid IL or missing references) //IL_51c4: Unknown result type (might be due to invalid IL or missing references) //IL_51ce: Unknown result type (might be due to invalid IL or missing references) //IL_51d3: Unknown result type (might be due to invalid IL or missing references) //IL_51de: Unknown result type (might be due to invalid IL or missing references) //IL_51e4: Unknown result type (might be due to invalid IL or missing references) //IL_51e9: Unknown result type (might be due to invalid IL or missing references) //IL_51ef: Unknown result type (might be due to invalid IL or missing references) //IL_51f4: Unknown result type (might be due to invalid IL or missing references) //IL_51fa: Unknown result type (might be due to invalid IL or missing references) //IL_5204: Unknown result type (might be due to invalid IL or missing references) //IL_5209: Unknown result type (might be due to invalid IL or missing references) //IL_520f: Unknown result type (might be due to invalid IL or missing references) //IL_5214: Unknown result type (might be due to invalid IL or missing references) //IL_521a: Unknown result type (might be due to invalid IL or missing references) //IL_5224: Unknown result type (might be due to invalid IL or missing references) //IL_5229: Unknown result type (might be due to invalid IL or missing references) //IL_522e: Unknown result type (might be due to invalid IL or missing references) //IL_523e: Unknown result type (might be due to invalid IL or missing references) //IL_5244: Unknown result type (might be due to invalid IL or missing references) //IL_5249: Unknown result type (might be due to invalid IL or missing references) //IL_524f: Unknown result type (might be due to invalid IL or missing references) //IL_5254: Unknown result type (might be due to invalid IL or missing references) //IL_525a: Unknown result type (might be due to invalid IL or missing references) //IL_5264: Unknown result type (might be due to invalid IL or missing references) //IL_5269: Unknown result type (might be due to invalid IL or missing references) //IL_526f: Unknown result type (might be due to invalid IL or missing references) //IL_5274: Unknown result type (might be due to invalid IL or missing references) //IL_527a: Unknown result type (might be due to invalid IL or missing references) //IL_5284: Unknown result type (might be due to invalid IL or missing references) //IL_5289: Unknown result type (might be due to invalid IL or missing references) //IL_5294: Unknown result type (might be due to invalid IL or missing references) //IL_529a: Unknown result type (might be due to invalid IL or missing references) //IL_529f: Unknown result type (might be due to invalid IL or missing references) //IL_52a5: Unknown result type (might be due to invalid IL or missing references) //IL_52aa: Unknown result type (might be due to invalid IL or missing references) //IL_52b0: Unknown result type (might be due to invalid IL or missing references) //IL_52ba: Unknown result type (might be due to invalid IL or missing references) //IL_52bf: Unknown result type (might be due to invalid IL or missing references) //IL_52c5: Unknown result type (might be due to invalid IL or missing references) //IL_52ca: Unknown result type (might be due to invalid IL or missing references) //IL_52d0: Unknown result type (might be due to invalid IL or missing references) //IL_52da: Unknown result type (might be due to invalid IL or missing references) //IL_52df: Unknown result type (might be due to invalid IL or missing references) //IL_52e4: Unknown result type (might be due to invalid IL or missing references) //IL_52f4: Unknown result type (might be due to invalid IL or missing references) //IL_52fa: Unknown result type (might be due to invalid IL or missing references) //IL_52ff: Unknown result type (might be due to invalid IL or missing references) //IL_5305: Unknown result type (might be due to invalid IL or missing references) //IL_530a: Unknown result type (might be due to invalid IL or missing references) //IL_5310: Unknown result type (might be due to invalid IL or missing references) //IL_531a: Unknown result type (might be due to invalid IL or missing references) //IL_531f: Unknown result type (might be due to invalid IL or missing references) //IL_5325: Unknown result type (might be due to invalid IL or missing references) //IL_532a: Unknown result type (might be due to invalid IL or missing references) //IL_5330: Unknown result type (might be due to invalid IL or missing references) //IL_533a: Unknown result type (might be due to invalid IL or missing references) //IL_533f: Unknown result type (might be due to invalid IL or missing references) //IL_534a: Unknown result type (might be due to invalid IL or missing references) //IL_5350: Unknown result type (might be due to invalid IL or missing references) //IL_5355: Unknown result type (might be due to invalid IL or missing references) //IL_535b: Unknown result type (might be due to invalid IL or missing references) //IL_5360: Unknown result type (might be due to invalid IL or missing references) //IL_5366: Unknown result type (might be due to invalid IL or missing references) //IL_5370: Unknown result type (might be due to invalid IL or missing references) //IL_5375: Unknown result type (might be due to invalid IL or missing references) //IL_537b: Unknown result type (might be due to invalid IL or missing references) //IL_5380: Unknown result type (might be due to invalid IL or missing references) //IL_5386: Unknown result type (might be due to invalid IL or missing references) //IL_5390: Unknown result type (might be due to invalid IL or missing references) //IL_5395: Unknown result type (might be due to invalid IL or missing references) //IL_539a: Unknown result type (might be due to invalid IL or missing references) //IL_53aa: Unknown result type (might be due to invalid IL or missing references) //IL_53b0: Unknown result type (might be due to invalid IL or missing references) //IL_53b5: Unknown result type (might be due to invalid IL or missing references) //IL_53bb: Unknown result type (might be due to invalid IL or missing references) //IL_53c0: Unknown result type (might be due to invalid IL or missing references) //IL_53c6: Unknown result type (might be due to invalid IL or missing references) //IL_53d0: Unknown result type (might be due to invalid IL or missing references) //IL_53d5: Unknown result type (might be due to invalid IL or missing references) //IL_53db: Unknown result type (might be due to invalid IL or missing references) //IL_53e0: Unknown result type (might be due to invalid IL or missing references) //IL_53e6: Unknown result type (might be due to invalid IL or missing references) //IL_53f0: Unknown result type (might be due to invalid IL or missing references) //IL_53f5: Unknown result type (might be due to invalid IL or missing references) //IL_5400: Unknown result type (might be due to invalid IL or missing references) //IL_5406: Unknown result type (might be due to invalid IL or missing references) //IL_540b: Unknown result type (might be due to invalid IL or missing references) //IL_5411: Unknown result type (might be due to invalid IL or missing references) //IL_5416: Unknown result type (might be due to invalid IL or missing references) //IL_541c: Unknown result type (might be due to invalid IL or missing references) //IL_5426: Unknown result type (might be due to invalid IL or missing references) //IL_542b: Unknown result type (might be due to invalid IL or missing references) //IL_5431: Unknown result type (might be due to invalid IL or missing references) //IL_5436: Unknown result type (might be due to invalid IL or missing references) //IL_543c: Unknown result type (might be due to invalid IL or missing references) //IL_5446: Unknown result type (might be due to invalid IL or missing references) //IL_544b: Unknown result type (might be due to invalid IL or missing references) //IL_5450: Unknown result type (might be due to invalid IL or missing references) //IL_5460: Unknown result type (might be due to invalid IL or missing references) //IL_5466: Unknown result type (might be due to invalid IL or missing references) //IL_546b: Unknown result type (might be due to invalid IL or missing references) //IL_5471: Unknown result type (might be due to invalid IL or missing references) //IL_5476: Unknown result type (might be due to invalid IL or missing references) //IL_547c: Unknown result type (might be due to invalid IL or missing references) //IL_5481: Unknown result type (might be due to invalid IL or missing references) //IL_548c: Unknown result type (might be due to invalid IL or missing references) //IL_5492: Unknown result type (might be due to invalid IL or missing references) //IL_5497: Unknown result type (might be due to invalid IL or missing references) //IL_549d: Unknown result type (might be due to invalid IL or missing references) //IL_54a2: Unknown result type (might be due to invalid IL or missing references) //IL_54a8: Unknown result type (might be due to invalid IL or missing references) //IL_54b2: Unknown result type (might be due to invalid IL or missing references) //IL_54b7: Unknown result type (might be due to invalid IL or missing references) //IL_54bd: Unknown result type (might be due to invalid IL or missing references) //IL_54c2: Unknown result type (might be due to invalid IL or missing references) //IL_54c7: Unknown result type (might be due to invalid IL or missing references) //IL_54d7: Unknown result type (might be due to invalid IL or missing references) //IL_54dd: Unknown result type (might be due to invalid IL or missing references) //IL_54e2: Unknown result type (might be due to invalid IL or missing references) //IL_54e8: Unknown result type (might be due to invalid IL or missing references) //IL_54ed: Unknown result type (might be due to invalid IL or missing references) //IL_54f3: Unknown result type (might be due to invalid IL or missing references) //IL_54f8: Unknown result type (might be due to invalid IL or missing references) //IL_54fe: Unknown result type (might be due to invalid IL or missing references) //IL_5508: Unknown result type (might be due to invalid IL or missing references) //IL_550d: Unknown result type (might be due to invalid IL or missing references) //IL_5518: Unknown result type (might be due to invalid IL or missing references) //IL_551e: Unknown result type (might be due to invalid IL or missing references) //IL_5523: Unknown result type (might be due to invalid IL or missing references) //IL_5529: Unknown result type (might be due to invalid IL or missing references) //IL_552e: Unknown result type (might be due to invalid IL or missing references) //IL_5534: Unknown result type (might be due to invalid IL or missing references) //IL_553e: Unknown result type (might be due to invalid IL or missing references) //IL_5543: Unknown result type (might be due to invalid IL or missing references) //IL_5549: Unknown result type (might be due to invalid IL or missing references) //IL_554e: Unknown result type (might be due to invalid IL or missing references) //IL_5554: Unknown result type (might be due to invalid IL or missing references) //IL_555e: Unknown result type (might be due to invalid IL or missing references) //IL_5563: Unknown result type (might be due to invalid IL or missing references) //IL_5568: Unknown result type (might be due to invalid IL or missing references) //IL_5578: Unknown result type (might be due to invalid IL or missing references) //IL_557e: Unknown result type (might be due to invalid IL or missing references) //IL_5583: Unknown result type (might be due to invalid IL or missing references) //IL_5589: Unknown result type (might be due to invalid IL or missing references) //IL_558e: Unknown result type (might be due to invalid IL or missing references) //IL_5594: Unknown result type (might be due to invalid IL or missing references) //IL_5599: Unknown result type (might be due to invalid IL or missing references) //IL_559f: Unknown result type (might be due to invalid IL or missing references) //IL_55a9: Unknown result type (might be due to invalid IL or missing references) //IL_55ae: Unknown result type (might be due to invalid IL or missing references) //IL_55b9: Unknown result type (might be due to invalid IL or missing references) //IL_55bf: Unknown result type (might be due to invalid IL or missing references) //IL_55c4: Unknown result type (might be due to invalid IL or missing references) //IL_55ca: Unknown result type (might be due to invalid IL or missing references) //IL_55cf: Unknown result type (might be due to invalid IL or missing references) //IL_55d5: Unknown result type (might be due to invalid IL or missing references) //IL_55df: Unknown result type (might be due to invalid IL or missing references) //IL_55e4: Unknown result type (might be due to invalid IL or missing references) //IL_55ea: Unknown result type (might be due to invalid IL or missing references) //IL_55ef: Unknown result type (might be due to invalid IL or missing references) //IL_55f5: Unknown result type (might be due to invalid IL or missing references) //IL_55ff: Unknown result type (might be due to invalid IL or missing references) //IL_5604: Unknown result type (might be due to invalid IL or missing references) //IL_5609: Unknown result type (might be due to invalid IL or missing references) //IL_5619: Unknown result type (might be due to invalid IL or missing references) //IL_561f: Unknown result type (might be due to invalid IL or missing references) //IL_5624: Unknown result type (might be due to invalid IL or missing references) //IL_562a: Unknown result type (might be due to invalid IL or missing references) //IL_562f: Unknown result type (might be due to invalid IL or missing references) //IL_5635: Unknown result type (might be due to invalid IL or missing references) //IL_563a: Unknown result type (might be due to invalid IL or missing references) //IL_5640: Unknown result type (might be due to invalid IL or missing references) //IL_564a: Unknown result type (might be due to invalid IL or missing references) //IL_564f: Unknown result type (might be due to invalid IL or missing references) //IL_565a: Unknown result type (might be due to invalid IL or missing references) //IL_5660: Unknown result type (might be due to invalid IL or missing references) //IL_5665: Unknown result type (might be due to invalid IL or missing references) //IL_566b: Unknown result type (might be due to invalid IL or missing references) //IL_5670: Unknown result type (might be due to invalid IL or missing references) //IL_5676: Unknown result type (might be due to invalid IL or missing references) //IL_5680: Unknown result type (might be due to invalid IL or missing references) //IL_5685: Unknown result type (might be due to invalid IL or missing references) //IL_568b: Unknown result type (might be due to invalid IL or missing references) //IL_5690: Unknown result type (might be due to invalid IL or missing references) //IL_5696: Unknown result type (might be due to invalid IL or missing references) //IL_56a0: Unknown result type (might be due to invalid IL or missing references) //IL_56a5: Unknown result type (might be due to invalid IL or missing references) //IL_56aa: Unknown result type (might be due to invalid IL or missing references) //IL_56ba: Unknown result type (might be due to invalid IL or missing references) //IL_56c0: Unknown result type (might be due to invalid IL or missing references) //IL_56c5: Unknown result type (might be due to invalid IL or missing references) //IL_56cb: Unknown result type (might be due to invalid IL or missing references) //IL_56d0: Unknown result type (might be due to invalid IL or missing references) //IL_56d6: Unknown result type (might be due to invalid IL or missing references) //IL_56db: Unknown result type (might be due to invalid IL or missing references) //IL_56e1: Unknown result type (might be due to invalid IL or missing references) //IL_56eb: Unknown result type (might be due to invalid IL or missing references) //IL_56f0: Unknown result type (might be due to invalid IL or missing references) //IL_56fb: Unknown result type (might be due to invalid IL or missing references) //IL_5701: Unknown result type (might be due to invalid IL or missing references) //IL_5706: Unknown result type (might be due to invalid IL or missing references) //IL_570c: Unknown result type (might be due to invalid IL or missing references) //IL_5711: Unknown result type (might be due to invalid IL or missing references) //IL_5717: Unknown result type (might be due to invalid IL or missing references) //IL_5721: Unknown result type (might be due to invalid IL or missing references) //IL_5726: Unknown result type (might be due to invalid IL or missing references) //IL_572c: Unknown result type (might be due to invalid IL or missing references) //IL_5731: Unknown result type (might be due to invalid IL or missing references) //IL_5737: Unknown result type (might be due to invalid IL or missing references) //IL_5741: Unknown result type (might be due to invalid IL or missing references) //IL_5746: Unknown result type (might be due to invalid IL or missing references) //IL_574b: Unknown result type (might be due to invalid IL or missing references) //IL_575b: Unknown result type (might be due to invalid IL or missing references) //IL_5761: Unknown result type (might be due to invalid IL or missing references) //IL_5766: Unknown result type (might be due to invalid IL or missing references) //IL_576c: Unknown result type (might be due to invalid IL or missing references) //IL_5771: Unknown result type (might be due to invalid IL or missing references) //IL_5777: Unknown result type (might be due to invalid IL or missing references) //IL_577c: Unknown result type (might be due to invalid IL or missing references) //IL_5782: Unknown result type (might be due to invalid IL or missing references) //IL_578c: Unknown result type (might be due to invalid IL or missing references) //IL_5791: Unknown result type (might be due to invalid IL or missing references) //IL_579c: Unknown result type (might be due to invalid IL or missing references) //IL_57a2: Unknown result type (might be due to invalid IL or missing references) //IL_57a7: Unknown result type (might be due to invalid IL or missing references) //IL_57ad: Unknown result type (might be due to invalid IL or missing references) //IL_57b2: Unknown result type (might be due to invalid IL or missing references) //IL_57b8: Unknown result type (might be due to invalid IL or missing references) //IL_57c2: Unknown result type (might be due to invalid IL or missing references) //IL_57c7: Unknown result type (might be due to invalid IL or missing references) //IL_57cd: Unknown result type (might be due to invalid IL or missing references) //IL_57d2: Unknown result type (might be due to invalid IL or missing references) //IL_57d8: Unknown result type (might be due to invalid IL or missing references) //IL_57e2: Unknown result type (might be due to invalid IL or missing references) //IL_57e7: Unknown result type (might be due to invalid IL or missing references) //IL_57ec: Unknown result type (might be due to invalid IL or missing references) //IL_57fc: Unknown result type (might be due to invalid IL or missing references) //IL_5802: Unknown result type (might be due to invalid IL or missing references) //IL_5807: Unknown result type (might be due to invalid IL or missing references) //IL_580d: Unknown result type (might be due to invalid IL or missing references) //IL_5812: Unknown result type (might be due to invalid IL or missing references) //IL_5818: Unknown result type (might be due to invalid IL or missing references) //IL_581d: Unknown result type (might be due to invalid IL or missing references) //IL_5823: Unknown result type (might be due to invalid IL or missing references) //IL_582d: Unknown result type (might be due to invalid IL or missing references) //IL_5832: Unknown result type (might be due to invalid IL or missing references) //IL_583d: Unknown result type (might be due to invalid IL or missing references) //IL_5843: Unknown result type (might be due to invalid IL or missing references) //IL_5848: Unknown result type (might be due to invalid IL or missing references) //IL_584e: Unknown result type (might be due to invalid IL or missing references) //IL_5853: Unknown result type (might be due to invalid IL or missing references) //IL_5859: Unknown result type (might be due to invalid IL or missing references) //IL_5863: Unknown result type (might be due to invalid IL or missing references) //IL_5868: Unknown result type (might be due to invalid IL or missing references) //IL_586e: Unknown result type (might be due to invalid IL or missing references) //IL_5873: Unknown result type (might be due to invalid IL or missing references) //IL_5879: Unknown result type (might be due to invalid IL or missing references) //IL_5883: Unknown result type (might be due to invalid IL or missing references) //IL_5888: Unknown result type (might be due to invalid IL or missing references) //IL_588d: Unknown result type (might be due to invalid IL or missing references) //IL_589d: Unknown result type (might be due to invalid IL or missing references) //IL_58a3: Unknown result type (might be due to invalid IL or missing references) //IL_58a8: Unknown result type (might be due to invalid IL or missing references) //IL_58ae: Unknown result type (might be due to invalid IL or missing references) //IL_58b3: Unknown result type (might be due to invalid IL or missing references) //IL_58b9: Unknown result type (might be due to invalid IL or missing references) //IL_58be: Unknown result type (might be due to invalid IL or missing references) //IL_58c4: Unknown result type (might be due to invalid IL or missing references) //IL_58ce: Unknown result type (might be due to invalid IL or missing references) //IL_58d3: Unknown result type (might be due to invalid IL or missing references) //IL_58de: Unknown result type (might be due to invalid IL or missing references) //IL_58e4: Unknown result type (might be due to invalid IL or missing references) //IL_58e9: Unknown result type (might be due to invalid IL or missing references) //IL_58ef: Unknown result type (might be due to invalid IL or missing references) //IL_58f4: Unknown result type (might be due to invalid IL or missing references) //IL_58fa: Unknown result type (might be due to invalid IL or missing references) //IL_5904: Unknown result type (might be due to invalid IL or missing references) //IL_5909: Unknown result type (might be due to invalid IL or missing references) //IL_590f: Unknown result type (might be due to invalid IL or missing references) //IL_5914: Unknown result type (might be due to invalid IL or missing references) //IL_591a: Unknown result type (might be due to invalid IL or missing references) //IL_5924: Unknown result type (might be due to invalid IL or missing references) //IL_5929: Unknown result type (might be due to invalid IL or missing references) //IL_592e: Unknown result type (might be due to invalid IL or missing references) //IL_593e: Unknown result type (might be due to invalid IL or missing references) //IL_5944: Unknown result type (might be due to invalid IL or missing references) //IL_5949: Unknown result type (might be due to invalid IL or missing references) //IL_594f: Unknown result type (might be due to invalid IL or missing references) //IL_5954: Unknown result type (might be due to invalid IL or missing references) //IL_595a: Unknown result type (might be due to invalid IL or missing references) //IL_5964: Unknown result type (might be due to invalid IL or missing references) //IL_5969: Unknown result type (might be due to invalid IL or missing references) //IL_596f: Unknown result type (might be due to invalid IL or missing references) //IL_5974: Unknown result type (might be due to invalid IL or missing references) //IL_597f: Unknown result type (might be due to invalid IL or missing references) //IL_5985: Unknown result type (might be due to invalid IL or missing references) //IL_598a: Unknown result type (might be due to invalid IL or missing references) //IL_5990: Unknown result type (might be due to invalid IL or missing references) //IL_5995: Unknown result type (might be due to invalid IL or missing references) //IL_599b: Unknown result type (might be due to invalid IL or missing references) //IL_59a0: Unknown result type (might be due to invalid IL or missing references) //IL_59a5: Unknown result type (might be due to invalid IL or missing references) //IL_59b5: Unknown result type (might be due to invalid IL or missing references) //IL_59bb: Unknown result type (might be due to invalid IL or missing references) //IL_59c0: Unknown result type (might be due to invalid IL or missing references) //IL_59c6: Unknown result type (might be due to invalid IL or missing references) //IL_59cb: Unknown result type (might be due to invalid IL or missing references) //IL_59d1: Unknown result type (might be due to invalid IL or missing references) //IL_59db: Unknown result type (might be due to invalid IL or missing references) //IL_59e0: Unknown result type (might be due to invalid IL or missing references) //IL_59e6: Unknown result type (might be due to invalid IL or missing references) //IL_59eb: Unknown result type (might be due to invalid IL or missing references) //IL_59f1: Unknown result type (might be due to invalid IL or missing references) //IL_59fb: Unknown result type (might be due to invalid IL or missing references) //IL_5a00: Unknown result type (might be due to invalid IL or missing references) //IL_5a0b: Unknown result type (might be due to invalid IL or missing references) //IL_5a11: Unknown result type (might be due to invalid IL or missing references) //IL_5a16: Unknown result type (might be due to invalid IL or missing references) //IL_5a1c: Unknown result type (might be due to invalid IL or missing references) //IL_5a21: Unknown result type (might be due to invalid IL or missing references) //IL_5a27: Unknown result type (might be due to invalid IL or missing references) //IL_5a2c: Unknown result type (might be due to invalid IL or missing references) //IL_5a32: Unknown result type (might be due to invalid IL or missing references) //IL_5a3c: Unknown result type (might be due to invalid IL or missing references) //IL_5a41: Unknown result type (might be due to invalid IL or missing references) //IL_5a46: Unknown result type (might be due to invalid IL or missing references) //IL_5a56: Unknown result type (might be due to invalid IL or missing references) //IL_5a5c: Unknown result type (might be due to invalid IL or missing references) //IL_5a61: Unknown result type (might be due to invalid IL or missing references) //IL_5a67: Unknown result type (might be due to invalid IL or missing references) //IL_5a6c: Unknown result type (might be due to invalid IL or missing references) //IL_5a72: Unknown result type (might be due to invalid IL or missing references) //IL_5a7c: Unknown result type (might be due to invalid IL or missing references) //IL_5a81: Unknown result type (might be due to invalid IL or missing references) //IL_5a87: Unknown result type (might be due to invalid IL or missing references) //IL_5a8c: Unknown result type (might be due to invalid IL or missing references) //IL_5a92: Unknown result type (might be due to invalid IL or missing references) //IL_5a9c: Unknown result type (might be due to invalid IL or missing references) //IL_5aa1: Unknown result type (might be due to invalid IL or missing references) //IL_5aac: Unknown result type (might be due to invalid IL or missing references) //IL_5ab2: Unknown result type (might be due to invalid IL or missing references) //IL_5ab7: Unknown result type (might be due to invalid IL or missing references) //IL_5abd: Unknown result type (might be due to invalid IL or missing references) //IL_5ac2: Unknown result type (might be due to invalid IL or missing references) //IL_5ac8: Unknown result type (might be due to invalid IL or missing references) //IL_5acd: Unknown result type (might be due to invalid IL or missing references) //IL_5ad3: Unknown result type (might be due to invalid IL or missing references) //IL_5add: Unknown result type (might be due to invalid IL or missing references) //IL_5ae2: Unknown result type (might be due to invalid IL or missing references) //IL_5ae7: Unknown result type (might be due to invalid IL or missing references) //IL_5af7: Unknown result type (might be due to invalid IL or missing references) //IL_5afd: Unknown result type (might be due to invalid IL or missing references) //IL_5b02: Unknown result type (might be due to invalid IL or missing references) //IL_5b08: Unknown result type (might be due to invalid IL or missing references) //IL_5b0d: Unknown result type (might be due to invalid IL or missing references) //IL_5b13: Unknown result type (might be due to invalid IL or missing references) //IL_5b1d: Unknown result type (might be due to invalid IL or missing references) //IL_5b22: Unknown result type (might be due to invalid IL or missing references) //IL_5b28: Unknown result type (might be due to invalid IL or missing references) //IL_5b2d: Unknown result type (might be due to invalid IL or missing references) //IL_5b33: Unknown result type (might be due to invalid IL or missing references) //IL_5b3d: Unknown result type (might be due to invalid IL or missing references) //IL_5b42: Unknown result type (might be due to invalid IL or missing references) //IL_5b4d: Unknown result type (might be due to invalid IL or missing references) //IL_5b53: Unknown result type (might be due to invalid IL or missing references) //IL_5b58: Unknown result type (might be due to invalid IL or missing references) //IL_5b5e: Unknown result type (might be due to invalid IL or missing references) //IL_5b63: Unknown result type (might be due to invalid IL or missing references) //IL_5b69: Unknown result type (might be due to invalid IL or missing references) //IL_5b6e: Unknown result type (might be due to invalid IL or missing references) //IL_5b74: Unknown result type (might be due to invalid IL or missing references) //IL_5b7e: Unknown result type (might be due to invalid IL or missing references) //IL_5b83: Unknown result type (might be due to invalid IL or missing references) //IL_5b88: Unknown result type (might be due to invalid IL or missing references) //IL_5b98: Unknown result type (might be due to invalid IL or missing references) //IL_5b9e: Unknown result type (might be due to invalid IL or missing references) //IL_5ba3: Unknown result type (might be due to invalid IL or missing references) //IL_5ba9: Unknown result type (might be due to invalid IL or missing references) //IL_5bae: Unknown result type (might be due to invalid IL or missing references) //IL_5bb4: Unknown result type (might be due to invalid IL or missing references) //IL_5bbe: Unknown result type (might be due to invalid IL or missing references) //IL_5bc3: Unknown result type (might be due to invalid IL or missing references) //IL_5bc9: Unknown result type (might be due to invalid IL or missing references) //IL_5bce: Unknown result type (might be due to invalid IL or missing references) //IL_5bd4: Unknown result type (might be due to invalid IL or missing references) //IL_5bde: Unknown result type (might be due to invalid IL or missing references) //IL_5be3: Unknown result type (might be due to invalid IL or missing references) //IL_5bee: Unknown result type (might be due to invalid IL or missing references) //IL_5bf4: Unknown result type (might be due to invalid IL or missing references) //IL_5bf9: Unknown result type (might be due to invalid IL or missing references) //IL_5bff: Unknown result type (might be due to invalid IL or missing references) //IL_5c04: Unknown result type (might be due to invalid IL or missing references) //IL_5c0a: Unknown result type (might be due to invalid IL or missing references) //IL_5c0f: Unknown result type (might be due to invalid IL or missing references) //IL_5c15: Unknown result type (might be due to invalid IL or missing references) //IL_5c1f: Unknown result type (might be due to invalid IL or missing references) //IL_5c24: Unknown result type (might be due to invalid IL or missing references) //IL_5c29: Unknown result type (might be due to invalid IL or missing references) //IL_5c39: Unknown result type (might be due to invalid IL or missing references) //IL_5c3f: Unknown result type (might be due to invalid IL or missing references) //IL_5c44: Unknown result type (might be due to invalid IL or missing references) //IL_5c4a: Unknown result type (might be due to invalid IL or missing references) //IL_5c4f: Unknown result type (might be due to invalid IL or missing references) //IL_5c55: Unknown result type (might be due to invalid IL or missing references) //IL_5c5f: Unknown result type (might be due to invalid IL or missing references) //IL_5c64: Unknown result type (might be due to invalid IL or missing references) //IL_5c6a: Unknown result type (might be due to invalid IL or missing references) //IL_5c6f: Unknown result type (might be due to invalid IL or missing references) //IL_5c75: Unknown result type (might be due to invalid IL or missing references) //IL_5c7f: Unknown result type (might be due to invalid IL or missing references) //IL_5c84: Unknown result type (might be due to invalid IL or missing references) //IL_5c8f: Unknown result type (might be due to invalid IL or missing references) //IL_5c95: Unknown result type (might be due to invalid IL or missing references) //IL_5c9a: Unknown result type (might be due to invalid IL or missing references) //IL_5ca0: Unknown result type (might be due to invalid IL or missing references) //IL_5ca5: Unknown result type (might be due to invalid IL or missing references) //IL_5cab: Unknown result type (might be due to invalid IL or missing references) //IL_5cb0: Unknown result type (might be due to invalid IL or missing references) //IL_5cb6: Unknown result type (might be due to invalid IL or missing references) //IL_5cc0: Unknown result type (might be due to invalid IL or missing references) //IL_5cc5: Unknown result type (might be due to invalid IL or missing references) //IL_5cca: Unknown result type (might be due to invalid IL or missing references) //IL_5cda: Unknown result type (might be due to invalid IL or missing references) //IL_5ce0: Unknown result type (might be due to invalid IL or missing references) //IL_5ce5: Unknown result type (might be due to invalid IL or missing references) //IL_5ceb: Unknown result type (might be due to invalid IL or missing references) //IL_5cf0: Unknown result type (might be due to invalid IL or missing references) //IL_5cf6: Unknown result type (might be due to invalid IL or missing references) //IL_5d00: Unknown result type (might be due to invalid IL or missing references) //IL_5d05: Unknown result type (might be due to invalid IL or missing references) //IL_5d0b: Unknown result type (might be due to invalid IL or missing references) //IL_5d10: Unknown result type (might be due to invalid IL or missing references) //IL_5d16: Unknown result type (might be due to invalid IL or missing references) //IL_5d20: Unknown result type (might be due to invalid IL or missing references) //IL_5d25: Unknown result type (might be due to invalid IL or missing references) //IL_5d30: Unknown result type (might be due to invalid IL or missing references) //IL_5d36: Unknown result type (might be due to invalid IL or missing references) //IL_5d3b: Unknown result type (might be due to invalid IL or missing references) //IL_5d41: Unknown result type (might be due to invalid IL or missing references) //IL_5d46: Unknown result type (might be due to invalid IL or missing references) //IL_5d4c: Unknown result type (might be due to invalid IL or missing references) //IL_5d51: Unknown result type (might be due to invalid IL or missing references) //IL_5d57: Unknown result type (might be due to invalid IL or missing references) //IL_5d61: Unknown result type (might be due to invalid IL or missing references) //IL_5d66: Unknown result type (might be due to invalid IL or missing references) //IL_5d6b: Unknown result type (might be due to invalid IL or missing references) //IL_5d7b: Unknown result type (might be due to invalid IL or missing references) //IL_5d81: Unknown result type (might be due to invalid IL or missing references) //IL_5d86: Unknown result type (might be due to invalid IL or missing references) //IL_5d8c: Unknown result type (might be due to invalid IL or missing references) //IL_5d91: Unknown result type (might be due to invalid IL or missing references) //IL_5d97: Unknown result type (might be due to invalid IL or missing references) //IL_5da1: Unknown result type (might be due to invalid IL or missing references) //IL_5da6: Unknown result type (might be due to invalid IL or missing references) //IL_5dac: Unknown result type (might be due to invalid IL or missing references) //IL_5db1: Unknown result type (might be due to invalid IL or missing references) //IL_5db7: Unknown result type (might be due to invalid IL or missing references) //IL_5dc1: Unknown result type (might be due to invalid IL or missing references) //IL_5dc6: Unknown result type (might be due to invalid IL or missing references) //IL_5dd1: Unknown result type (might be due to invalid IL or missing references) //IL_5dd7: Unknown result type (might be due to invalid IL or missing references) //IL_5ddc: Unknown result type (might be due to invalid IL or missing references) //IL_5de2: Unknown result type (might be due to invalid IL or missing references) //IL_5de7: Unknown result type (might be due to invalid IL or missing references) //IL_5ded: Unknown result type (might be due to invalid IL or missing references) //IL_5df2: Unknown result type (might be due to invalid IL or missing references) //IL_5df8: Unknown result type (might be due to invalid IL or missing references) //IL_5e02: Unknown result type (might be due to invalid IL or missing references) //IL_5e07: Unknown result type (might be due to invalid IL or missing references) //IL_5e0c: Unknown result type (might be due to invalid IL or missing references) //IL_5e1c: Unknown result type (might be due to invalid IL or missing references) //IL_5e22: Unknown result type (might be due to invalid IL or missing references) //IL_5e27: Unknown result type (might be due to invalid IL or missing references) //IL_5e2d: Unknown result type (might be due to invalid IL or missing references) //IL_5e32: Unknown result type (might be due to invalid IL or missing references) //IL_5e38: Unknown result type (might be due to invalid IL or missing references) //IL_5e42: Unknown result type (might be due to invalid IL or missing references) //IL_5e47: Unknown result type (might be due to invalid IL or missing references) //IL_5e4d: Unknown result type (might be due to invalid IL or missing references) //IL_5e57: Unknown result type (might be due to invalid IL or missing references) //IL_5e5d: Unknown result type (might be due to invalid IL or missing references) //IL_5e62: Unknown result type (might be due to invalid IL or missing references) //IL_5e68: Unknown result type (might be due to invalid IL or missing references) //IL_5e6d: Unknown result type (might be due to invalid IL or missing references) //IL_5e72: Unknown result type (might be due to invalid IL or missing references) //IL_5e7d: Unknown result type (might be due to invalid IL or missing references) //IL_5e83: Unknown result type (might be due to invalid IL or missing references) //IL_5e88: Unknown result type (might be due to invalid IL or missing references) //IL_5e8e: Unknown result type (might be due to invalid IL or missing references) //IL_5e93: Unknown result type (might be due to invalid IL or missing references) //IL_5e99: Unknown result type (might be due to invalid IL or missing references) //IL_5ea3: Unknown result type (might be due to invalid IL or missing references) //IL_5ea8: Unknown result type (might be due to invalid IL or missing references) //IL_5eae: Unknown result type (might be due to invalid IL or missing references) //IL_5eb8: Unknown result type (might be due to invalid IL or missing references) //IL_5ebe: Unknown result type (might be due to invalid IL or missing references) //IL_5ec3: Unknown result type (might be due to invalid IL or missing references) //IL_5ec9: Unknown result type (might be due to invalid IL or missing references) //IL_5ece: Unknown result type (might be due to invalid IL or missing references) //IL_5ed3: Unknown result type (might be due to invalid IL or missing references) //IL_5ed8: Unknown result type (might be due to invalid IL or missing references) //IL_5ee8: Unknown result type (might be due to invalid IL or missing references) //IL_5eee: Unknown result type (might be due to invalid IL or missing references) //IL_5ef3: Unknown result type (might be due to invalid IL or missing references) //IL_5ef9: Unknown result type (might be due to invalid IL or missing references) //IL_5efe: Unknown result type (might be due to invalid IL or missing references) //IL_5f04: Unknown result type (might be due to invalid IL or missing references) //IL_5f0e: Unknown result type (might be due to invalid IL or missing references) //IL_5f13: Unknown result type (might be due to invalid IL or missing references) //IL_5f19: Unknown result type (might be due to invalid IL or missing references) //IL_5f23: Unknown result type (might be due to invalid IL or missing references) //IL_5f29: Unknown result type (might be due to invalid IL or missing references) //IL_5f2e: Unknown result type (might be due to invalid IL or missing references) //IL_5f34: Unknown result type (might be due to invalid IL or missing references) //IL_5f39: Unknown result type (might be due to invalid IL or missing references) //IL_5f3e: Unknown result type (might be due to invalid IL or missing references) //IL_5f44: Unknown result type (might be due to invalid IL or missing references) //IL_5f4e: Unknown result type (might be due to invalid IL or missing references) //IL_5f53: Unknown result type (might be due to invalid IL or missing references) //IL_5f5e: Unknown result type (might be due to invalid IL or missing references) //IL_5f64: Unknown result type (might be due to invalid IL or missing references) //IL_5f69: Unknown result type (might be due to invalid IL or missing references) //IL_5f6f: Unknown result type (might be due to invalid IL or missing references) //IL_5f74: Unknown result type (might be due to invalid IL or missing references) //IL_5f7a: Unknown result type (might be due to invalid IL or missing references) //IL_5f84: Unknown result type (might be due to invalid IL or missing references) //IL_5f89: Unknown result type (might be due to invalid IL or missing references) //IL_5f8f: Unknown result type (might be due to invalid IL or missing references) //IL_5f99: Unknown result type (might be due to invalid IL or missing references) //IL_5f9f: Unknown result type (might be due to invalid IL or missing references) //IL_5fa4: Unknown result type (might be due to invalid IL or missing references) //IL_5faa: Unknown result type (might be due to invalid IL or missing references) //IL_5faf: Unknown result type (might be due to invalid IL or missing references) //IL_5fb4: Unknown result type (might be due to invalid IL or missing references) //IL_5fba: Unknown result type (might be due to invalid IL or missing references) //IL_5fc4: Unknown result type (might be due to invalid IL or missing references) //IL_5fc9: Unknown result type (might be due to invalid IL or missing references) //IL_5fce: Unknown result type (might be due to invalid IL or missing references) //IL_5fde: Unknown result type (might be due to invalid IL or missing references) //IL_5fe4: Unknown result type (might be due to invalid IL or missing references) //IL_5fe9: Unknown result type (might be due to invalid IL or missing references) //IL_5fef: Unknown result type (might be due to invalid IL or missing references) //IL_5ff4: Unknown result type (might be due to invalid IL or missing references) //IL_5ffa: Unknown result type (might be due to invalid IL or missing references) //IL_6004: Unknown result type (might be due to invalid IL or missing references) //IL_6009: Unknown result type (might be due to invalid IL or missing references) //IL_600f: Unknown result type (might be due to invalid IL or missing references) //IL_6019: Unknown result type (might be due to invalid IL or missing references) //IL_601f: Unknown result type (might be due to invalid IL or missing references) //IL_6024: Unknown result type (might be due to invalid IL or missing references) //IL_602a: Unknown result type (might be due to invalid IL or missing references) //IL_602f: Unknown result type (might be due to invalid IL or missing references) //IL_6034: Unknown result type (might be due to invalid IL or missing references) //IL_603a: Unknown result type (might be due to invalid IL or missing references) //IL_6044: Unknown result type (might be due to invalid IL or missing references) //IL_6049: Unknown result type (might be due to invalid IL or missing references) //IL_6054: Unknown result type (might be due to invalid IL or missing references) //IL_605a: Unknown result type (might be due to invalid IL or missing references) //IL_605f: Unknown result type (might be due to invalid IL or missing references) //IL_6065: Unknown result type (might be due to invalid IL or missing references) //IL_606a: Unknown result type (might be due to invalid IL or missing references) //IL_6070: Unknown result type (might be due to invalid IL or missing references) //IL_607a: Unknown result type (might be due to invalid IL or missing references) //IL_607f: Unknown result type (might be due to invalid IL or missing references) //IL_6085: Unknown result type (might be due to invalid IL or missing references) //IL_608f: Unknown result type (might be due to invalid IL or missing references) //IL_6095: Unknown result type (might be due to invalid IL or missing references) //IL_609a: Unknown result type (might be due to invalid IL or missing references) //IL_60a0: Unknown result type (might be due to invalid IL or missing references) //IL_60a5: Unknown result type (might be due to invalid IL or missing references) //IL_60aa: Unknown result type (might be due to invalid IL or missing references) //IL_60b0: Unknown result type (might be due to invalid IL or missing references) //IL_60ba: Unknown result type (might be due to invalid IL or missing references) //IL_60bf: Unknown result type (might be due to invalid IL or missing references) //IL_60c4: Unknown result type (might be due to invalid IL or missing references) //IL_60d4: Unknown result type (might be due to invalid IL or missing references) //IL_60da: Unknown result type (might be due to invalid IL or missing references) //IL_60df: Unknown result type (might be due to invalid IL or missing references) //IL_60e5: Unknown result type (might be due to invalid IL or missing references) //IL_60ea: Unknown result type (might be due to invalid IL or missing references) //IL_60f0: Unknown result type (might be due to invalid IL or missing references) //IL_60fa: Unknown result type (might be due to invalid IL or missing references) //IL_60ff: Unknown result type (might be due to invalid IL or missing references) //IL_6105: Unknown result type (might be due to invalid IL or missing references) //IL_610f: Unknown result type (might be due to invalid IL or missing references) //IL_6115: Unknown result type (might be due to invalid IL or missing references) //IL_611a: Unknown result type (might be due to invalid IL or missing references) //IL_6120: Unknown result type (might be due to invalid IL or missing references) //IL_6125: Unknown result type (might be due to invalid IL or missing references) //IL_612a: Unknown result type (might be due to invalid IL or missing references) //IL_6130: Unknown result type (might be due to invalid IL or missing references) //IL_613a: Unknown result type (might be due to invalid IL or missing references) //IL_613f: Unknown result type (might be due to invalid IL or missing references) //IL_614a: Unknown result type (might be due to invalid IL or missing references) //IL_6150: Unknown result type (might be due to invalid IL or missing references) //IL_6155: Unknown result type (might be due to invalid IL or missing references) //IL_615b: Unknown result type (might be due to invalid IL or missing references) //IL_6160: Unknown result type (might be due to invalid IL or missing references) //IL_6166: Unknown result type (might be due to invalid IL or missing references) //IL_6170: Unknown result type (might be due to invalid IL or missing references) //IL_6175: Unknown result type (might be due to invalid IL or missing references) //IL_617b: Unknown result type (might be due to invalid IL or missing references) //IL_6185: Unknown result type (might be due to invalid IL or missing references) //IL_618b: Unknown result type (might be due to invalid IL or missing references) //IL_6190: Unknown result type (might be due to invalid IL or missing references) //IL_6196: Unknown result type (might be due to invalid IL or missing references) //IL_619b: Unknown result type (might be due to invalid IL or missing references) //IL_61a0: Unknown result type (might be due to invalid IL or missing references) //IL_61a6: Unknown result type (might be due to invalid IL or missing references) //IL_61b0: Unknown result type (might be due to invalid IL or missing references) //IL_61b5: Unknown result type (might be due to invalid IL or missing references) //IL_61ba: Unknown result type (might be due to invalid IL or missing references) //IL_61ca: Unknown result type (might be due to invalid IL or missing references) //IL_61d0: Unknown result type (might be due to invalid IL or missing references) //IL_61d5: Unknown result type (might be due to invalid IL or missing references) //IL_61db: Unknown result type (might be due to invalid IL or missing references) //IL_61e0: Unknown result type (might be due to invalid IL or missing references) //IL_61e6: Unknown result type (might be due to invalid IL or missing references) //IL_61f0: Unknown result type (might be due to invalid IL or missing references) //IL_61f5: Unknown result type (might be due to invalid IL or missing references) //IL_61fb: Unknown result type (might be due to invalid IL or missing references) //IL_6205: Unknown result type (might be due to invalid IL or missing references) //IL_620b: Unknown result type (might be due to invalid IL or missing references) //IL_6210: Unknown result type (might be due to invalid IL or missing references) //IL_6216: Unknown result type (might be due to invalid IL or missing references) //IL_621b: Unknown result type (might be due to invalid IL or missing references) //IL_6220: Unknown result type (might be due to invalid IL or missing references) //IL_6226: Unknown result type (might be due to invalid IL or missing references) //IL_6230: Unknown result type (might be due to invalid IL or missing references) //IL_6235: Unknown result type (might be due to invalid IL or missing references) //IL_6240: Unknown result type (might be due to invalid IL or missing references) //IL_6246: Unknown result type (might be due to invalid IL or missing references) //IL_624b: Unknown result type (might be due to invalid IL or missing references) //IL_6251: Unknown result type (might be due to invalid IL or missing references) //IL_6256: Unknown result type (might be due to invalid IL or missing references) //IL_625c: Unknown result type (might be due to invalid IL or missing references) //IL_6266: Unknown result type (might be due to invalid IL or missing references) //IL_626b: Unknown result type (might be due to invalid IL or missing references) //IL_6271: Unknown result type (might be due to invalid IL or missing references) //IL_627b: Unknown result type (might be due to invalid IL or missing references) //IL_6281: Unknown result type (might be due to invalid IL or missing references) //IL_6286: Unknown result type (might be due to invalid IL or missing references) //IL_628c: Unknown result type (might be due to invalid IL or missing references) //IL_6291: Unknown result type (might be due to invalid IL or missing references) //IL_6296: Unknown result type (might be due to invalid IL or missing references) //IL_629c: Unknown result type (might be due to invalid IL or missing references) //IL_62a6: Unknown result type (might be due to invalid IL or missing references) //IL_62ab: Unknown result type (might be due to invalid IL or missing references) //IL_62b0: Unknown result type (might be due to invalid IL or missing references) //IL_62c0: Unknown result type (might be due to invalid IL or missing references) //IL_62c6: Unknown result type (might be due to invalid IL or missing references) //IL_62cb: Unknown result type (might be due to invalid IL or missing references) //IL_62d1: Unknown result type (might be due to invalid IL or missing references) //IL_62d6: Unknown result type (might be due to invalid IL or missing references) //IL_62dc: Unknown result type (might be due to invalid IL or missing references) //IL_62e6: Unknown result type (might be due to invalid IL or missing references) //IL_62eb: Unknown result type (might be due to invalid IL or missing references) //IL_62f1: Unknown result type (might be due to invalid IL or missing references) //IL_62fb: Unknown result type (might be due to invalid IL or missing references) //IL_6301: Unknown result type (might be due to invalid IL or missing references) //IL_6306: Unknown result type (might be due to invalid IL or missing references) //IL_630c: Unknown result type (might be due to invalid IL or missing references) //IL_6311: Unknown result type (might be due to invalid IL or missing references) //IL_6316: Unknown result type (might be due to invalid IL or missing references) //IL_631c: Unknown result type (might be due to invalid IL or missing references) //IL_6326: Unknown result type (might be due to invalid IL or missing references) //IL_632b: Unknown result type (might be due to invalid IL or missing references) //IL_6336: Unknown result type (might be due to invalid IL or missing references) //IL_633c: Unknown result type (might be due to invalid IL or missing references) //IL_6341: Unknown result type (might be due to invalid IL or missing references) //IL_6347: Unknown result type (might be due to invalid IL or missing references) //IL_634c: Unknown result type (might be due to invalid IL or missing references) //IL_6352: Unknown result type (might be due to invalid IL or missing references) //IL_635c: Unknown result type (might be due to invalid IL or missing references) //IL_6361: Unknown result type (might be due to invalid IL or missing references) //IL_6367: Unknown result type (might be due to invalid IL or missing references) //IL_6371: Unknown result type (might be due to invalid IL or missing references) //IL_6377: Unknown result type (might be due to invalid IL or missing references) //IL_637c: Unknown result type (might be due to invalid IL or missing references) //IL_6382: Unknown result type (might be due to invalid IL or missing references) //IL_6387: Unknown result type (might be due to invalid IL or missing references) //IL_638c: Unknown result type (might be due to invalid IL or missing references) //IL_6392: Unknown result type (might be due to invalid IL or missing references) //IL_639c: Unknown result type (might be due to invalid IL or missing references) //IL_63a1: Unknown result type (might be due to invalid IL or missing references) //IL_63a6: Unknown result type (might be due to invalid IL or missing references) //IL_63b6: Unknown result type (might be due to invalid IL or missing references) //IL_63bc: Unknown result type (might be due to invalid IL or missing references) //IL_63c1: Unknown result type (might be due to invalid IL or missing references) //IL_63c7: Unknown result type (might be due to invalid IL or missing references) //IL_63cc: Unknown result type (might be due to invalid IL or missing references) //IL_63d2: Unknown result type (might be due to invalid IL or missing references) //IL_63dc: Unknown result type (might be due to invalid IL or missing references) //IL_63e1: Unknown result type (might be due to invalid IL or missing references) //IL_63e7: Unknown result type (might be due to invalid IL or missing references) //IL_63f1: Unknown result type (might be due to invalid IL or missing references) //IL_63f7: Unknown result type (might be due to invalid IL or missing references) //IL_63fc: Unknown result type (might be due to invalid IL or missing references) //IL_6402: Unknown result type (might be due to invalid IL or missing references) //IL_6407: Unknown result type (might be due to invalid IL or missing references) //IL_640c: Unknown result type (might be due to invalid IL or missing references) //IL_6412: Unknown result type (might be due to invalid IL or missing references) //IL_641c: Unknown result type (might be due to invalid IL or missing references) //IL_6421: Unknown result type (might be due to invalid IL or missing references) //IL_642c: Unknown result type (might be due to invalid IL or missing references) //IL_6432: Unknown result type (might be due to invalid IL or missing references) //IL_6437: Unknown result type (might be due to invalid IL or missing references) //IL_643d: Unknown result type (might be due to invalid IL or missing references) //IL_6442: Unknown result type (might be due to invalid IL or missing references) //IL_6448: Unknown result type (might be due to invalid IL or missing references) //IL_6452: Unknown result type (might be due to invalid IL or missing references) //IL_6457: Unknown result type (might be due to invalid IL or missing references) //IL_645d: Unknown result type (might be due to invalid IL or missing references) //IL_6467: Unknown result type (might be due to invalid IL or missing references) //IL_646d: Unknown result type (might be due to invalid IL or missing references) //IL_6472: Unknown result type (might be due to invalid IL or missing references) //IL_6478: Unknown result type (might be due to invalid IL or missing references) //IL_647d: Unknown result type (might be due to invalid IL or missing references) //IL_6482: Unknown result type (might be due to invalid IL or missing references) //IL_6488: Unknown result type (might be due to invalid IL or missing references) //IL_6492: Unknown result type (might be due to invalid IL or missing references) //IL_6497: Unknown result type (might be due to invalid IL or missing references) //IL_649c: Unknown result type (might be due to invalid IL or missing references) //IL_64ac: Unknown result type (might be due to invalid IL or missing references) //IL_64b2: Unknown result type (might be due to invalid IL or missing references) //IL_64b7: Unknown result type (might be due to invalid IL or missing references) //IL_64bd: Unknown result type (might be due to invalid IL or missing references) //IL_64c2: Unknown result type (might be due to invalid IL or missing references) //IL_64c8: Unknown result type (might be due to invalid IL or missing references) //IL_64d2: Unknown result type (might be due to invalid IL or missing references) //IL_64d7: Unknown result type (might be due to invalid IL or missing references) //IL_64dd: Unknown result type (might be due to invalid IL or missing references) //IL_64e7: Unknown result type (might be due to invalid IL or missing references) //IL_64ed: Unknown result type (might be due to invalid IL or missing references) //IL_64f2: Unknown result type (might be due to invalid IL or missing references) //IL_64f8: Unknown result type (might be due to invalid IL or missing references) //IL_64fd: Unknown result type (might be due to invalid IL or missing references) //IL_6502: Unknown result type (might be due to invalid IL or missing references) //IL_6508: Unknown result type (might be due to invalid IL or missing references) //IL_6512: Unknown result type (might be due to invalid IL or missing references) //IL_6517: Unknown result type (might be due to invalid IL or missing references) //IL_6522: Unknown result type (might be due to invalid IL or missing references) //IL_6528: Unknown result type (might be due to invalid IL or missing references) //IL_652d: Unknown result type (might be due to invalid IL or missing references) //IL_6533: Unknown result type (might be due to invalid IL or missing references) //IL_6538: Unknown result type (might be due to invalid IL or missing references) //IL_653e: Unknown result type (might be due to invalid IL or missing references) //IL_6548: Unknown result type (might be due to invalid IL or missing references) //IL_654d: Unknown result type (might be due to invalid IL or missing references) //IL_6553: Unknown result type (might be due to invalid IL or missing references) //IL_655d: Unknown result type (might be due to invalid IL or missing references) //IL_6563: Unknown result type (might be due to invalid IL or missing references) //IL_6568: Unknown result type (might be due to invalid IL or missing references) //IL_656e: Unknown result type (might be due to invalid IL or missing references) //IL_6573: Unknown result type (might be due to invalid IL or missing references) //IL_6578: Unknown result type (might be due to invalid IL or missing references) //IL_657e: Unknown result type (might be due to invalid IL or missing references) //IL_6588: Unknown result type (might be due to invalid IL or missing references) //IL_658d: Unknown result type (might be due to invalid IL or missing references) //IL_6592: Unknown result type (might be due to invalid IL or missing references) //IL_65a2: Unknown result type (might be due to invalid IL or missing references) //IL_65a8: Unknown result type (might be due to invalid IL or missing references) //IL_65ad: Unknown result type (might be due to invalid IL or missing references) //IL_65b3: Unknown result type (might be due to invalid IL or missing references) //IL_65b8: Unknown result type (might be due to invalid IL or missing references) //IL_65be: Unknown result type (might be due to invalid IL or missing references) //IL_65c8: Unknown result type (might be due to invalid IL or missing references) //IL_65cd: Unknown result type (might be due to invalid IL or missing references) //IL_65d3: Unknown result type (might be due to invalid IL or missing references) //IL_65dd: Unknown result type (might be due to invalid IL or missing references) //IL_65e3: Unknown result type (might be due to invalid IL or missing references) //IL_65e8: Unknown result type (might be due to invalid IL or missing references) //IL_65ee: Unknown result type (might be due to invalid IL or missing references) //IL_65f3: Unknown result type (might be due to invalid IL or missing references) //IL_65f8: Unknown result type (might be due to invalid IL or missing references) //IL_6603: Unknown result type (might be due to invalid IL or missing references) //IL_6609: Unknown result type (might be due to invalid IL or missing references) //IL_660e: Unknown result type (might be due to invalid IL or missing references) //IL_6614: Unknown result type (might be due to invalid IL or missing references) //IL_6619: Unknown result type (might be due to invalid IL or missing references) //IL_661f: Unknown result type (might be due to invalid IL or missing references) //IL_6629: Unknown result type (might be due to invalid IL or missing references) //IL_662e: Unknown result type (might be due to invalid IL or missing references) //IL_6634: Unknown result type (might be due to invalid IL or missing references) //IL_663e: Unknown result type (might be due to invalid IL or missing references) //IL_6644: Unknown result type (might be due to invalid IL or missing references) //IL_6649: Unknown result type (might be due to invalid IL or missing references) //IL_664f: Unknown result type (might be due to invalid IL or missing references) //IL_6654: Unknown result type (might be due to invalid IL or missing references) //IL_6659: Unknown result type (might be due to invalid IL or missing references) //IL_665e: Unknown result type (might be due to invalid IL or missing references) //IL_666e: Unknown result type (might be due to invalid IL or missing references) //IL_6674: Unknown result type (might be due to invalid IL or missing references) //IL_6679: Unknown result type (might be due to invalid IL or missing references) //IL_667f: Unknown result type (might be due to invalid IL or missing references) //IL_6684: Unknown result type (might be due to invalid IL or missing references) //IL_668a: Unknown result type (might be due to invalid IL or missing references) //IL_6694: Unknown result type (might be due to invalid IL or missing references) //IL_6699: Unknown result type (might be due to invalid IL or missing references) //IL_669f: Unknown result type (might be due to invalid IL or missing references) //IL_66a9: Unknown result type (might be due to invalid IL or missing references) //IL_66af: Unknown result type (might be due to invalid IL or missing references) //IL_66b4: Unknown result type (might be due to invalid IL or missing references) //IL_66ba: Unknown result type (might be due to invalid IL or missing references) //IL_66bf: Unknown result type (might be due to invalid IL or missing references) //IL_66c4: Unknown result type (might be due to invalid IL or missing references) //IL_66ca: Unknown result type (might be due to invalid IL or missing references) //IL_66d4: Unknown result type (might be due to invalid IL or missing references) //IL_66d9: Unknown result type (might be due to invalid IL or missing references) //IL_66e4: Unknown result type (might be due to invalid IL or missing references) //IL_66ea: Unknown result type (might be due to invalid IL or missing references) //IL_66ef: Unknown result type (might be due to invalid IL or missing references) //IL_66f5: Unknown result type (might be due to invalid IL or missing references) //IL_66fa: Unknown result type (might be due to invalid IL or missing references) //IL_6700: Unknown result type (might be due to invalid IL or missing references) //IL_670a: Unknown result type (might be due to invalid IL or missing references) //IL_670f: Unknown result type (might be due to invalid IL or missing references) //IL_6715: Unknown result type (might be due to invalid IL or missing references) //IL_671f: Unknown result type (might be due to invalid IL or missing references) //IL_6725: Unknown result type (might be due to invalid IL or missing references) //IL_672a: Unknown result type (might be due to invalid IL or missing references) //IL_6730: Unknown result type (might be due to invalid IL or missing references) //IL_6735: Unknown result type (might be due to invalid IL or missing references) //IL_673a: Unknown result type (might be due to invalid IL or missing references) //IL_6740: Unknown result type (might be due to invalid IL or missing references) //IL_674a: Unknown result type (might be due to invalid IL or missing references) //IL_674f: Unknown result type (might be due to invalid IL or missing references) //IL_6754: Unknown result type (might be due to invalid IL or missing references) //IL_6764: Unknown result type (might be due to invalid IL or missing references) //IL_676a: Unknown result type (might be due to invalid IL or missing references) //IL_676f: Unknown result type (might be due to invalid IL or missing references) //IL_6775: Unknown result type (might be due to invalid IL or missing references) //IL_677a: Unknown result type (might be due to invalid IL or missing references) //IL_6780: Unknown result type (might be due to invalid IL or missing references) //IL_678a: Unknown result type (might be due to invalid IL or missing references) //IL_678f: Unknown result type (might be due to invalid IL or missing references) //IL_6795: Unknown result type (might be due to invalid IL or missing references) //IL_679f: Unknown result type (might be due to invalid IL or missing references) //IL_67a5: Unknown result type (might be due to invalid IL or missing references) //IL_67aa: Unknown result type (might be due to invalid IL or missing references) //IL_67b0: Unknown result type (might be due to invalid IL or missing references) //IL_67b5: Unknown result type (might be due to invalid IL or missing references) //IL_67ba: Unknown result type (might be due to invalid IL or missing references) //IL_67c0: Unknown result type (might be due to invalid IL or missing references) //IL_67ca: Unknown result type (might be due to invalid IL or missing references) //IL_67cf: Unknown result type (might be due to invalid IL or missing references) //IL_67da: Unknown result type (might be due to invalid IL or missing references) //IL_67e0: Unknown result type (might be due to invalid IL or missing references) //IL_67e5: Unknown result type (might be due to invalid IL or missing references) //IL_67eb: Unknown result type (might be due to invalid IL or missing references) //IL_67f0: Unknown result type (might be due to invalid IL or missing references) //IL_67f6: Unknown result type (might be due to invalid IL or missing references) //IL_6800: Unknown result type (might be due to invalid IL or missing references) //IL_6805: Unknown result type (might be due to invalid IL or missing references) //IL_680b: Unknown result type (might be due to invalid IL or missing references) //IL_6815: Unknown result type (might be due to invalid IL or missing references) //IL_681b: Unknown result type (might be due to invalid IL or missing references) //IL_6820: Unknown result type (might be due to invalid IL or missing references) //IL_6826: Unknown result type (might be due to invalid IL or missing references) //IL_682b: Unknown result type (might be due to invalid IL or missing references) //IL_6830: Unknown result type (might be due to invalid IL or missing references) //IL_6836: Unknown result type (might be due to invalid IL or missing references) //IL_6840: Unknown result type (might be due to invalid IL or missing references) //IL_6845: Unknown result type (might be due to invalid IL or missing references) //IL_684a: Unknown result type (might be due to invalid IL or missing references) //IL_685a: Unknown result type (might be due to invalid IL or missing references) //IL_6860: Unknown result type (might be due to invalid IL or missing references) //IL_6865: Unknown result type (might be due to invalid IL or missing references) //IL_686b: Unknown result type (might be due to invalid IL or missing references) //IL_6870: Unknown result type (might be due to invalid IL or missing references) //IL_6876: Unknown result type (might be due to invalid IL or missing references) //IL_6880: Unknown result type (might be due to invalid IL or missing references) //IL_6885: Unknown result type (might be due to invalid IL or missing references) //IL_688b: Unknown result type (might be due to invalid IL or missing references) //IL_6895: Unknown result type (might be due to invalid IL or missing references) //IL_689b: Unknown result type (might be due to invalid IL or missing references) //IL_68a0: Unknown result type (might be due to invalid IL or missing references) //IL_68a6: Unknown result type (might be due to invalid IL or missing references) //IL_68ab: Unknown result type (might be due to invalid IL or missing references) //IL_68b0: Unknown result type (might be due to invalid IL or missing references) //IL_68b6: Unknown result type (might be due to invalid IL or missing references) //IL_68c0: Unknown result type (might be due to invalid IL or missing references) //IL_68c5: Unknown result type (might be due to invalid IL or missing references) //IL_68d0: Unknown result type (might be due to invalid IL or missing references) //IL_68d6: Unknown result type (might be due to invalid IL or missing references) //IL_68db: Unknown result type (might be due to invalid IL or missing references) //IL_68e1: Unknown result type (might be due to invalid IL or missing references) //IL_68e6: Unknown result type (might be due to invalid IL or missing references) //IL_68ec: Unknown result type (might be due to invalid IL or missing references) //IL_68f6: Unknown result type (might be due to invalid IL or missing references) //IL_68fb: Unknown result type (might be due to invalid IL or missing references) //IL_6901: Unknown result type (might be due to invalid IL or missing references) //IL_690b: Unknown result type (might be due to invalid IL or missing references) //IL_6911: Unknown result type (might be due to invalid IL or missing references) //IL_6916: Unknown result type (might be due to invalid IL or missing references) //IL_691c: Unknown result type (might be due to invalid IL or missing references) //IL_6921: Unknown result type (might be due to invalid IL or missing references) //IL_6926: Unknown result type (might be due to invalid IL or missing references) //IL_692c: Unknown result type (might be due to invalid IL or missing references) //IL_6936: Unknown result type (might be due to invalid IL or missing references) //IL_693b: Unknown result type (might be due to invalid IL or missing references) //IL_6940: Unknown result type (might be due to invalid IL or missing references) //IL_6950: Unknown result type (might be due to invalid IL or missing references) //IL_6956: Unknown result type (might be due to invalid IL or missing references) //IL_695b: Unknown result type (might be due to invalid IL or missing references) //IL_6961: Unknown result type (might be due to invalid IL or missing references) //IL_6966: Unknown result type (might be due to invalid IL or missing references) //IL_696c: Unknown result type (might be due to invalid IL or missing references) //IL_6976: Unknown result type (might be due to invalid IL or missing references) //IL_697b: Unknown result type (might be due to invalid IL or missing references) //IL_6981: Unknown result type (might be due to invalid IL or missing references) //IL_698b: Unknown result type (might be due to invalid IL or missing references) //IL_6991: Unknown result type (might be due to invalid IL or missing references) //IL_6996: Unknown result type (might be due to invalid IL or missing references) //IL_699c: Unknown result type (might be due to invalid IL or missing references) //IL_69a1: Unknown result type (might be due to invalid IL or missing references) //IL_69a6: Unknown result type (might be due to invalid IL or missing references) //IL_69ac: Unknown result type (might be due to invalid IL or missing references) //IL_69b6: Unknown result type (might be due to invalid IL or missing references) //IL_69bb: Unknown result type (might be due to invalid IL or missing references) //IL_69c6: Unknown result type (might be due to invalid IL or missing references) //IL_69cc: Unknown result type (might be due to invalid IL or missing references) //IL_69d1: Unknown result type (might be due to invalid IL or missing references) //IL_69d7: Unknown result type (might be due to invalid IL or missing references) //IL_69dc: Unknown result type (might be due to invalid IL or missing references) //IL_69e2: Unknown result type (might be due to invalid IL or missing references) //IL_69ec: Unknown result type (might be due to invalid IL or missing references) //IL_69f1: Unknown result type (might be due to invalid IL or missing references) //IL_69f7: Unknown result type (might be due to invalid IL or missing references) //IL_6a01: Unknown result type (might be due to invalid IL or missing references) //IL_6a07: Unknown result type (might be due to invalid IL or missing references) //IL_6a0c: Unknown result type (might be due to invalid IL or missing references) //IL_6a12: Unknown result type (might be due to invalid IL or missing references) //IL_6a17: Unknown result type (might be due to invalid IL or missing references) //IL_6a1c: Unknown result type (might be due to invalid IL or missing references) //IL_6a22: Unknown result type (might be due to invalid IL or missing references) //IL_6a2c: Unknown result type (might be due to invalid IL or missing references) //IL_6a31: Unknown result type (might be due to invalid IL or missing references) //IL_6a36: Unknown result type (might be due to invalid IL or missing references) //IL_6a46: Unknown result type (might be due to invalid IL or missing references) //IL_6a4c: Unknown result type (might be due to invalid IL or missing references) //IL_6a51: Unknown result type (might be due to invalid IL or missing references) //IL_6a57: Unknown result type (might be due to invalid IL or missing references) //IL_6a5c: Unknown result type (might be due to invalid IL or missing references) //IL_6a62: Unknown result type (might be due to invalid IL or missing references) //IL_6a6c: Unknown result type (might be due to invalid IL or missing references) //IL_6a71: Unknown result type (might be due to invalid IL or missing references) //IL_6a77: Unknown result type (might be due to invalid IL or missing references) //IL_6a81: Unknown result type (might be due to invalid IL or missing references) //IL_6a87: Unknown result type (might be due to invalid IL or missing references) //IL_6a8c: Unknown result type (might be due to invalid IL or missing references) //IL_6a92: Unknown result type (might be due to invalid IL or missing references) //IL_6a97: Unknown result type (might be due to invalid IL or missing references) //IL_6a9c: Unknown result type (might be due to invalid IL or missing references) //IL_6aa2: Unknown result type (might be due to invalid IL or missing references) //IL_6aac: Unknown result type (might be due to invalid IL or missing references) //IL_6ab1: Unknown result type (might be due to invalid IL or missing references) //IL_6abc: Unknown result type (might be due to invalid IL or missing references) //IL_6ac2: Unknown result type (might be due to invalid IL or missing references) //IL_6ac7: Unknown result type (might be due to invalid IL or missing references) //IL_6acd: Unknown result type (might be due to invalid IL or missing references) //IL_6ad2: Unknown result type (might be due to invalid IL or missing references) //IL_6ad8: Unknown result type (might be due to invalid IL or missing references) //IL_6ae2: Unknown result type (might be due to invalid IL or missing references) //IL_6ae7: Unknown result type (might be due to invalid IL or missing references) //IL_6aed: Unknown result type (might be due to invalid IL or missing references) //IL_6af7: Unknown result type (might be due to invalid IL or missing references) //IL_6afd: Unknown result type (might be due to invalid IL or missing references) //IL_6b02: Unknown result type (might be due to invalid IL or missing references) //IL_6b08: Unknown result type (might be due to invalid IL or missing references) //IL_6b0d: Unknown result type (might be due to invalid IL or missing references) //IL_6b12: Unknown result type (might be due to invalid IL or missing references) //IL_6b18: Unknown result type (might be due to invalid IL or missing references) //IL_6b22: Unknown result type (might be due to invalid IL or missing references) //IL_6b27: Unknown result type (might be due to invalid IL or missing references) //IL_6b2c: Unknown result type (might be due to invalid IL or missing references) //IL_6b3c: Unknown result type (might be due to invalid IL or missing references) //IL_6b42: Unknown result type (might be due to invalid IL or missing references) //IL_6b47: Unknown result type (might be due to invalid IL or missing references) //IL_6b4d: Unknown result type (might be due to invalid IL or missing references) //IL_6b52: Unknown result type (might be due to invalid IL or missing references) //IL_6b58: Unknown result type (might be due to invalid IL or missing references) //IL_6b62: Unknown result type (might be due to invalid IL or missing references) //IL_6b67: Unknown result type (might be due to invalid IL or missing references) //IL_6b6d: Unknown result type (might be due to invalid IL or missing references) //IL_6b77: Unknown result type (might be due to invalid IL or missing references) //IL_6b7d: Unknown result type (might be due to invalid IL or missing references) //IL_6b82: Unknown result type (might be due to invalid IL or missing references) //IL_6b88: Unknown result type (might be due to invalid IL or missing references) //IL_6b8d: Unknown result type (might be due to invalid IL or missing references) //IL_6b92: Unknown result type (might be due to invalid IL or missing references) //IL_6b98: Unknown result type (might be due to invalid IL or missing references) //IL_6ba2: Unknown result type (might be due to invalid IL or missing references) //IL_6ba7: Unknown result type (might be due to invalid IL or missing references) //IL_6bb2: Unknown result type (might be due to invalid IL or missing references) //IL_6bb8: Unknown result type (might be due to invalid IL or missing references) //IL_6bbd: Unknown result type (might be due to invalid IL or missing references) //IL_6bc3: Unknown result type (might be due to invalid IL or missing references) //IL_6bc8: Unknown result type (might be due to invalid IL or missing references) //IL_6bce: Unknown result type (might be due to invalid IL or missing references) //IL_6bd8: Unknown result type (might be due to invalid IL or missing references) //IL_6bdd: Unknown result type (might be due to invalid IL or missing references) //IL_6be3: Unknown result type (might be due to invalid IL or missing references) //IL_6bed: Unknown result type (might be due to invalid IL or missing references) //IL_6bf3: Unknown result type (might be due to invalid IL or missing references) //IL_6bf8: Unknown result type (might be due to invalid IL or missing references) //IL_6bfe: Unknown result type (might be due to invalid IL or missing references) //IL_6c03: Unknown result type (might be due to invalid IL or missing references) //IL_6c08: Unknown result type (might be due to invalid IL or missing references) //IL_6c0e: Unknown result type (might be due to invalid IL or missing references) //IL_6c18: Unknown result type (might be due to invalid IL or missing references) //IL_6c1d: Unknown result type (might be due to invalid IL or missing references) //IL_6c22: Unknown result type (might be due to invalid IL or missing references) //IL_6c32: Unknown result type (might be due to invalid IL or missing references) //IL_6c38: Unknown result type (might be due to invalid IL or missing references) //IL_6c3d: Unknown result type (might be due to invalid IL or missing references) //IL_6c43: Unknown result type (might be due to invalid IL or missing references) //IL_6c48: Unknown result type (might be due to invalid IL or missing references) //IL_6c4e: Unknown result type (might be due to invalid IL or missing references) //IL_6c58: Unknown result type (might be due to invalid IL or missing references) //IL_6c5d: Unknown result type (might be due to invalid IL or missing references) //IL_6c63: Unknown result type (might be due to invalid IL or missing references) //IL_6c6d: Unknown result type (might be due to invalid IL or missing references) //IL_6c73: Unknown result type (might be due to invalid IL or missing references) //IL_6c78: Unknown result type (might be due to invalid IL or missing references) //IL_6c7e: Unknown result type (might be due to invalid IL or missing references) //IL_6c83: Unknown result type (might be due to invalid IL or missing references) //IL_6c88: Unknown result type (might be due to invalid IL or missing references) //IL_6c8e: Unknown result type (might be due to invalid IL or missing references) //IL_6c98: Unknown result type (might be due to invalid IL or missing references) //IL_6c9d: Unknown result type (might be due to invalid IL or missing references) //IL_6ca8: Unknown result type (might be due to invalid IL or missing references) //IL_6cae: Unknown result type (might be due to invalid IL or missing references) //IL_6cb3: Unknown result type (might be due to invalid IL or missing references) //IL_6cb9: Unknown result type (might be due to invalid IL or missing references) //IL_6cbe: Unknown result type (might be due to invalid IL or missing references) //IL_6cc4: Unknown result type (might be due to invalid IL or missing references) //IL_6cce: Unknown result type (might be due to invalid IL or missing references) //IL_6cd3: Unknown result type (might be due to invalid IL or missing references) //IL_6cd9: Unknown result type (might be due to invalid IL or missing references) //IL_6ce3: Unknown result type (might be due to invalid IL or missing references) //IL_6ce9: Unknown result type (might be due to invalid IL or missing references) //IL_6cee: Unknown result type (might be due to invalid IL or missing references) //IL_6cf4: Unknown result type (might be due to invalid IL or missing references) //IL_6cf9: Unknown result type (might be due to invalid IL or missing references) //IL_6cfe: Unknown result type (might be due to invalid IL or missing references) //IL_6d04: Unknown result type (might be due to invalid IL or missing references) //IL_6d0e: Unknown result type (might be due to invalid IL or missing references) //IL_6d13: Unknown result type (might be due to invalid IL or missing references) //IL_6d18: Unknown result type (might be due to invalid IL or missing references) //IL_6d28: Unknown result type (might be due to invalid IL or missing references) //IL_6d2e: Unknown result type (might be due to invalid IL or missing references) //IL_6d33: Unknown result type (might be due to invalid IL or missing references) //IL_6d39: Unknown result type (might be due to invalid IL or missing references) //IL_6d3e: Unknown result type (might be due to invalid IL or missing references) //IL_6d44: Unknown result type (might be due to invalid IL or missing references) //IL_6d4e: Unknown result type (might be due to invalid IL or missing references) //IL_6d54: Unknown result type (might be due to invalid IL or missing references) //IL_6d59: Unknown result type (might be due to invalid IL or missing references) //IL_6d5f: Unknown result type (might be due to invalid IL or missing references) //IL_6d64: Unknown result type (might be due to invalid IL or missing references) //IL_6d69: Unknown result type (might be due to invalid IL or missing references) //IL_6d74: Unknown result type (might be due to invalid IL or missing references) //IL_6d7a: Unknown result type (might be due to invalid IL or missing references) //IL_6d7f: Unknown result type (might be due to invalid IL or missing references) //IL_6d85: Unknown result type (might be due to invalid IL or missing references) //IL_6d8a: Unknown result type (might be due to invalid IL or missing references) //IL_6d90: Unknown result type (might be due to invalid IL or missing references) //IL_6d9a: Unknown result type (might be due to invalid IL or missing references) //IL_6d9f: Unknown result type (might be due to invalid IL or missing references) //IL_6da5: Unknown result type (might be due to invalid IL or missing references) //IL_6daf: Unknown result type (might be due to invalid IL or missing references) //IL_6db5: Unknown result type (might be due to invalid IL or missing references) //IL_6dba: Unknown result type (might be due to invalid IL or missing references) //IL_6dc0: Unknown result type (might be due to invalid IL or missing references) //IL_6dc5: Unknown result type (might be due to invalid IL or missing references) //IL_6dca: Unknown result type (might be due to invalid IL or missing references) //IL_6dcf: Unknown result type (might be due to invalid IL or missing references) //IL_6ddf: Unknown result type (might be due to invalid IL or missing references) //IL_6de5: Unknown result type (might be due to invalid IL or missing references) //IL_6dea: Unknown result type (might be due to invalid IL or missing references) //IL_6df0: Unknown result type (might be due to invalid IL or missing references) //IL_6df5: Unknown result type (might be due to invalid IL or missing references) //IL_6dfb: Unknown result type (might be due to invalid IL or missing references) //IL_6e05: Unknown result type (might be due to invalid IL or missing references) //IL_6e0b: Unknown result type (might be due to invalid IL or missing references) //IL_6e10: Unknown result type (might be due to invalid IL or missing references) //IL_6e16: Unknown result type (might be due to invalid IL or missing references) //IL_6e1b: Unknown result type (might be due to invalid IL or missing references) //IL_6e20: Unknown result type (might be due to invalid IL or missing references) //IL_6e26: Unknown result type (might be due to invalid IL or missing references) //IL_6e30: Unknown result type (might be due to invalid IL or missing references) //IL_6e35: Unknown result type (might be due to invalid IL or missing references) //IL_6e40: Unknown result type (might be due to invalid IL or missing references) //IL_6e46: Unknown result type (might be due to invalid IL or missing references) //IL_6e4b: Unknown result type (might be due to invalid IL or missing references) //IL_6e51: Unknown result type (might be due to invalid IL or missing references) //IL_6e56: Unknown result type (might be due to invalid IL or missing references) //IL_6e5c: Unknown result type (might be due to invalid IL or missing references) //IL_6e66: Unknown result type (might be due to invalid IL or missing references) //IL_6e6b: Unknown result type (might be due to invalid IL or missing references) //IL_6e71: Unknown result type (might be due to invalid IL or missing references) //IL_6e7b: Unknown result type (might be due to invalid IL or missing references) //IL_6e81: Unknown result type (might be due to invalid IL or missing references) //IL_6e86: Unknown result type (might be due to invalid IL or missing references) //IL_6e8c: Unknown result type (might be due to invalid IL or missing references) //IL_6e91: Unknown result type (might be due to invalid IL or missing references) //IL_6e96: Unknown result type (might be due to invalid IL or missing references) //IL_6e9c: Unknown result type (might be due to invalid IL or missing references) //IL_6ea6: Unknown result type (might be due to invalid IL or missing references) //IL_6eab: Unknown result type (might be due to invalid IL or missing references) //IL_6eb0: Unknown result type (might be due to invalid IL or missing references) //IL_6ec0: Unknown result type (might be due to invalid IL or missing references) //IL_6ec6: Unknown result type (might be due to invalid IL or missing references) //IL_6ecb: Unknown result type (might be due to invalid IL or missing references) //IL_6ed1: Unknown result type (might be due to invalid IL or missing references) //IL_6ed6: Unknown result type (might be due to invalid IL or missing references) //IL_6edc: Unknown result type (might be due to invalid IL or missing references) //IL_6ee6: Unknown result type (might be due to invalid IL or missing references) //IL_6eec: Unknown result type (might be due to invalid IL or missing references) //IL_6ef1: Unknown result type (might be due to invalid IL or missing references) //IL_6ef7: Unknown result type (might be due to invalid IL or missing references) //IL_6efc: Unknown result type (might be due to invalid IL or missing references) //IL_6f01: Unknown result type (might be due to invalid IL or missing references) //IL_6f07: Unknown result type (might be due to invalid IL or missing references) //IL_6f11: Unknown result type (might be due to invalid IL or missing references) //IL_6f16: Unknown result type (might be due to invalid IL or missing references) //IL_6f21: Unknown result type (might be due to invalid IL or missing references) //IL_6f27: Unknown result type (might be due to invalid IL or missing references) //IL_6f2c: Unknown result type (might be due to invalid IL or missing references) //IL_6f32: Unknown result type (might be due to invalid IL or missing references) //IL_6f37: Unknown result type (might be due to invalid IL or missing references) //IL_6f3d: Unknown result type (might be due to invalid IL or missing references) //IL_6f47: Unknown result type (might be due to invalid IL or missing references) //IL_6f4c: Unknown result type (might be due to invalid IL or missing references) //IL_6f52: Unknown result type (might be due to invalid IL or missing references) //IL_6f5c: Unknown result type (might be due to invalid IL or missing references) //IL_6f62: Unknown result type (might be due to invalid IL or missing references) //IL_6f67: Unknown result type (might be due to invalid IL or missing references) //IL_6f6d: Unknown result type (might be due to invalid IL or missing references) //IL_6f72: Unknown result type (might be due to invalid IL or missing references) //IL_6f77: Unknown result type (might be due to invalid IL or missing references) //IL_6f7d: Unknown result type (might be due to invalid IL or missing references) //IL_6f87: Unknown result type (might be due to invalid IL or missing references) //IL_6f8c: Unknown result type (might be due to invalid IL or missing references) //IL_6f91: Unknown result type (might be due to invalid IL or missing references) //IL_6fa1: Unknown result type (might be due to invalid IL or missing references) //IL_6fa7: Unknown result type (might be due to invalid IL or missing references) //IL_6fac: Unknown result type (might be due to invalid IL or missing references) //IL_6fb2: Unknown result type (might be due to invalid IL or missing references) //IL_6fb7: Unknown result type (might be due to invalid IL or missing references) //IL_6fbd: Unknown result type (might be due to invalid IL or missing references) //IL_6fc7: Unknown result type (might be due to invalid IL or missing references) //IL_6fcd: Unknown result type (might be due to invalid IL or missing references) //IL_6fd2: Unknown result type (might be due to invalid IL or missing references) //IL_6fd8: Unknown result type (might be due to invalid IL or missing references) //IL_6fdd: Unknown result type (might be due to invalid IL or missing references) //IL_6fe2: Unknown result type (might be due to invalid IL or missing references) //IL_6fe8: Unknown result type (might be due to invalid IL or missing references) //IL_6ff2: Unknown result type (might be due to invalid IL or missing references) //IL_6ff7: Unknown result type (might be due to invalid IL or missing references) //IL_7002: Unknown result type (might be due to invalid IL or missing references) //IL_7008: Unknown result type (might be due to invalid IL or missing references) //IL_700d: Unknown result type (might be due to invalid IL or missing references) //IL_7013: Unknown result type (might be due to invalid IL or missing references) //IL_7018: Unknown result type (might be due to invalid IL or missing references) //IL_701e: Unknown result type (might be due to invalid IL or missing references) //IL_7028: Unknown result type (might be due to invalid IL or missing references) //IL_702d: Unknown result type (might be due to invalid IL or missing references) //IL_7033: Unknown result type (might be due to invalid IL or missing references) //IL_703d: Unknown result type (might be due to invalid IL or missing references) //IL_7043: Unknown result type (might be due to invalid IL or missing references) //IL_7048: Unknown result type (might be due to invalid IL or missing references) //IL_704e: Unknown result type (might be due to invalid IL or missing references) //IL_7053: Unknown result type (might be due to invalid IL or missing references) //IL_7058: Unknown result type (might be due to invalid IL or missing references) //IL_705e: Unknown result type (might be due to invalid IL or missing references) //IL_7068: Unknown result type (might be due to invalid IL or missing references) //IL_706d: Unknown result type (might be due to invalid IL or missing references) //IL_7072: Unknown result type (might be due to invalid IL or missing references) //IL_7082: Unknown result type (might be due to invalid IL or missing references) //IL_7088: Unknown result type (might be due to invalid IL or missing references) //IL_708d: Unknown result type (might be due to invalid IL or missing references) //IL_7093: Unknown result type (might be due to invalid IL or missing references) //IL_7098: Unknown result type (might be due to invalid IL or missing references) //IL_709e: Unknown result type (might be due to invalid IL or missing references) //IL_70a8: Unknown result type (might be due to invalid IL or missing references) //IL_70ae: Unknown result type (might be due to invalid IL or missing references) //IL_70b3: Unknown result type (might be due to invalid IL or missing references) //IL_70b9: Unknown result type (might be due to invalid IL or missing references) //IL_70be: Unknown result type (might be due to invalid IL or missing references) //IL_70c3: Unknown result type (might be due to invalid IL or missing references) //IL_70c9: Unknown result type (might be due to invalid IL or missing references) //IL_70d3: Unknown result type (might be due to invalid IL or missing references) //IL_70d8: Unknown result type (might be due to invalid IL or missing references) //IL_70e3: Unknown result type (might be due to invalid IL or missing references) //IL_70e9: Unknown result type (might be due to invalid IL or missing references) //IL_70ee: Unknown result type (might be due to invalid IL or missing references) //IL_70f4: Unknown result type (might be due to invalid IL or missing references) //IL_70f9: Unknown result type (might be due to invalid IL or missing references) //IL_70ff: Unknown result type (might be due to invalid IL or missing references) //IL_7109: Unknown result type (might be due to invalid IL or missing references) //IL_710e: Unknown result type (might be due to invalid IL or missing references) //IL_7114: Unknown result type (might be due to invalid IL or missing references) //IL_711e: Unknown result type (might be due to invalid IL or missing references) //IL_7124: Unknown result type (might be due to invalid IL or missing references) //IL_7129: Unknown result type (might be due to invalid IL or missing references) //IL_712f: Unknown result type (might be due to invalid IL or missing references) //IL_7134: Unknown result type (might be due to invalid IL or missing references) //IL_7139: Unknown result type (might be due to invalid IL or missing references) //IL_713f: Unknown result type (might be due to invalid IL or missing references) //IL_7149: Unknown result type (might be due to invalid IL or missing references) //IL_714e: Unknown result type (might be due to invalid IL or missing references) //IL_7153: Unknown result type (might be due to invalid IL or missing references) //IL_7163: Unknown result type (might be due to invalid IL or missing references) //IL_7169: Unknown result type (might be due to invalid IL or missing references) //IL_716e: Unknown result type (might be due to invalid IL or missing references) //IL_7174: Unknown result type (might be due to invalid IL or missing references) //IL_7179: Unknown result type (might be due to invalid IL or missing references) //IL_717f: Unknown result type (might be due to invalid IL or missing references) //IL_7189: Unknown result type (might be due to invalid IL or missing references) //IL_718f: Unknown result type (might be due to invalid IL or missing references) //IL_7194: Unknown result type (might be due to invalid IL or missing references) //IL_719a: Unknown result type (might be due to invalid IL or missing references) //IL_719f: Unknown result type (might be due to invalid IL or missing references) //IL_71a4: Unknown result type (might be due to invalid IL or missing references) //IL_71aa: Unknown result type (might be due to invalid IL or missing references) //IL_71b4: Unknown result type (might be due to invalid IL or missing references) //IL_71b9: Unknown result type (might be due to invalid IL or missing references) //IL_71c4: Unknown result type (might be due to invalid IL or missing references) //IL_71ca: Unknown result type (might be due to invalid IL or missing references) //IL_71cf: Unknown result type (might be due to invalid IL or missing references) //IL_71d5: Unknown result type (might be due to invalid IL or missing references) //IL_71da: Unknown result type (might be due to invalid IL or missing references) //IL_71e0: Unknown result type (might be due to invalid IL or missing references) //IL_71ea: Unknown result type (might be due to invalid IL or missing references) //IL_71ef: Unknown result type (might be due to invalid IL or missing references) //IL_71f5: Unknown result type (might be due to invalid IL or missing references) //IL_71ff: Unknown result type (might be due to invalid IL or missing references) //IL_7205: Unknown result type (might be due to invalid IL or missing references) //IL_720a: Unknown result type (might be due to invalid IL or missing references) //IL_7210: Unknown result type (might be due to invalid IL or missing references) //IL_7215: Unknown result type (might be due to invalid IL or missing references) //IL_721a: Unknown result type (might be due to invalid IL or missing references) //IL_7220: Unknown result type (might be due to invalid IL or missing references) //IL_722a: Unknown result type (might be due to invalid IL or missing references) //IL_722f: Unknown result type (might be due to invalid IL or missing references) //IL_7234: Unknown result type (might be due to invalid IL or missing references) //IL_7244: Unknown result type (might be due to invalid IL or missing references) //IL_724a: Unknown result type (might be due to invalid IL or missing references) //IL_724f: Unknown result type (might be due to invalid IL or missing references) //IL_7255: Unknown result type (might be due to invalid IL or missing references) //IL_725a: Unknown result type (might be due to invalid IL or missing references) //IL_7260: Unknown result type (might be due to invalid IL or missing references) //IL_726a: Unknown result type (might be due to invalid IL or missing references) //IL_7270: Unknown result type (might be due to invalid IL or missing references) //IL_7275: Unknown result type (might be due to invalid IL or missing references) //IL_727b: Unknown result type (might be due to invalid IL or missing references) //IL_7280: Unknown result type (might be due to invalid IL or missing references) //IL_7285: Unknown result type (might be due to invalid IL or missing references) //IL_728b: Unknown result type (might be due to invalid IL or missing references) //IL_7295: Unknown result type (might be due to invalid IL or missing references) //IL_729a: Unknown result type (might be due to invalid IL or missing references) //IL_72a5: Unknown result type (might be due to invalid IL or missing references) //IL_72ab: Unknown result type (might be due to invalid IL or missing references) //IL_72b0: Unknown result type (might be due to invalid IL or missing references) //IL_72b6: Unknown result type (might be due to invalid IL or missing references) //IL_72bb: Unknown result type (might be due to invalid IL or missing references) //IL_72c1: Unknown result type (might be due to invalid IL or missing references) //IL_72cb: Unknown result type (might be due to invalid IL or missing references) //IL_72d0: Unknown result type (might be due to invalid IL or missing references) //IL_72d6: Unknown result type (might be due to invalid IL or missing references) //IL_72e0: Unknown result type (might be due to invalid IL or missing references) //IL_72e6: Unknown result type (might be due to invalid IL or missing references) //IL_72eb: Unknown result type (might be due to invalid IL or missing references) //IL_72f1: Unknown result type (might be due to invalid IL or missing references) //IL_72f6: Unknown result type (might be due to invalid IL or missing references) //IL_72fb: Unknown result type (might be due to invalid IL or missing references) //IL_7301: Unknown result type (might be due to invalid IL or missing references) //IL_730b: Unknown result type (might be due to invalid IL or missing references) //IL_7310: Unknown result type (might be due to invalid IL or missing references) //IL_7315: Unknown result type (might be due to invalid IL or missing references) //IL_7325: Unknown result type (might be due to invalid IL or missing references) //IL_732b: Unknown result type (might be due to invalid IL or missing references) //IL_7330: Unknown result type (might be due to invalid IL or missing references) //IL_7336: Unknown result type (might be due to invalid IL or missing references) //IL_733b: Unknown result type (might be due to invalid IL or missing references) //IL_7341: Unknown result type (might be due to invalid IL or missing references) //IL_734b: Unknown result type (might be due to invalid IL or missing references) //IL_7351: Unknown result type (might be due to invalid IL or missing references) //IL_7356: Unknown result type (might be due to invalid IL or missing references) //IL_735c: Unknown result type (might be due to invalid IL or missing references) //IL_7361: Unknown result type (might be due to invalid IL or missing references) //IL_7366: Unknown result type (might be due to invalid IL or missing references) //IL_736c: Unknown result type (might be due to invalid IL or missing references) //IL_7376: Unknown result type (might be due to invalid IL or missing references) //IL_737b: Unknown result type (might be due to invalid IL or missing references) //IL_7386: Unknown result type (might be due to invalid IL or missing references) //IL_738c: Unknown result type (might be due to invalid IL or missing references) //IL_7391: Unknown result type (might be due to invalid IL or missing references) //IL_7397: Unknown result type (might be due to invalid IL or missing references) //IL_739c: Unknown result type (might be due to invalid IL or missing references) //IL_73a2: Unknown result type (might be due to invalid IL or missing references) //IL_73ac: Unknown result type (might be due to invalid IL or missing references) //IL_73b1: Unknown result type (might be due to invalid IL or missing references) //IL_73b7: Unknown result type (might be due to invalid IL or missing references) //IL_73c1: Unknown result type (might be due to invalid IL or missing references) //IL_73c7: Unknown result type (might be due to invalid IL or missing references) //IL_73cc: Unknown result type (might be due to invalid IL or missing references) //IL_73d2: Unknown result type (might be due to invalid IL or missing references) //IL_73d7: Unknown result type (might be due to invalid IL or missing references) //IL_73dc: Unknown result type (might be due to invalid IL or missing references) //IL_73e2: Unknown result type (might be due to invalid IL or missing references) //IL_73ec: Unknown result type (might be due to invalid IL or missing references) //IL_73f1: Unknown result type (might be due to invalid IL or missing references) //IL_73f6: Unknown result type (might be due to invalid IL or missing references) //IL_7406: Unknown result type (might be due to invalid IL or missing references) //IL_740c: Unknown result type (might be due to invalid IL or missing references) //IL_7411: Unknown result type (might be due to invalid IL or missing references) //IL_7417: Unknown result type (might be due to invalid IL or missing references) //IL_741c: Unknown result type (might be due to invalid IL or missing references) //IL_7422: Unknown result type (might be due to invalid IL or missing references) //IL_742c: Unknown result type (might be due to invalid IL or missing references) //IL_7431: Unknown result type (might be due to invalid IL or missing references) //IL_7437: Unknown result type (might be due to invalid IL or missing references) //IL_7441: Unknown result type (might be due to invalid IL or missing references) //IL_7447: Unknown result type (might be due to invalid IL or missing references) //IL_744c: Unknown result type (might be due to invalid IL or missing references) //IL_7452: Unknown result type (might be due to invalid IL or missing references) //IL_7457: Unknown result type (might be due to invalid IL or missing references) //IL_745c: Unknown result type (might be due to invalid IL or missing references) //IL_7467: Unknown result type (might be due to invalid IL or missing references) //IL_746d: Unknown result type (might be due to invalid IL or missing references) //IL_7472: Unknown result type (might be due to invalid IL or missing references) //IL_7478: Unknown result type (might be due to invalid IL or missing references) //IL_747d: Unknown result type (might be due to invalid IL or missing references) //IL_7483: Unknown result type (might be due to invalid IL or missing references) //IL_748d: Unknown result type (might be due to invalid IL or missing references) //IL_7492: Unknown result type (might be due to invalid IL or missing references) //IL_7498: Unknown result type (might be due to invalid IL or missing references) //IL_74a2: Unknown result type (might be due to invalid IL or missing references) //IL_74a8: Unknown result type (might be due to invalid IL or missing references) //IL_74ad: Unknown result type (might be due to invalid IL or missing references) //IL_74b3: Unknown result type (might be due to invalid IL or missing references) //IL_74b8: Unknown result type (might be due to invalid IL or missing references) //IL_74bd: Unknown result type (might be due to invalid IL or missing references) //IL_74c2: Unknown result type (might be due to invalid IL or missing references) //IL_74d2: Unknown result type (might be due to invalid IL or missing references) //IL_74d8: Unknown result type (might be due to invalid IL or missing references) //IL_74dd: Unknown result type (might be due to invalid IL or missing references) //IL_74e3: Unknown result type (might be due to invalid IL or missing references) //IL_74e8: Unknown result type (might be due to invalid IL or missing references) //IL_74ee: Unknown result type (might be due to invalid IL or missing references) //IL_74f8: Unknown result type (might be due to invalid IL or missing references) //IL_74fd: Unknown result type (might be due to invalid IL or missing references) //IL_7503: Unknown result type (might be due to invalid IL or missing references) //IL_750d: Unknown result type (might be due to invalid IL or missing references) //IL_7513: Unknown result type (might be due to invalid IL or missing references) //IL_7518: Unknown result type (might be due to invalid IL or missing references) //IL_751e: Unknown result type (might be due to invalid IL or missing references) //IL_7523: Unknown result type (might be due to invalid IL or missing references) //IL_7528: Unknown result type (might be due to invalid IL or missing references) //IL_752e: Unknown result type (might be due to invalid IL or missing references) //IL_7538: Unknown result type (might be due to invalid IL or missing references) //IL_753d: Unknown result type (might be due to invalid IL or missing references) //IL_7548: Unknown result type (might be due to invalid IL or missing references) //IL_754e: Unknown result type (might be due to invalid IL or missing references) //IL_7553: Unknown result type (might be due to invalid IL or missing references) //IL_7559: Unknown result type (might be due to invalid IL or missing references) //IL_755e: Unknown result type (might be due to invalid IL or missing references) //IL_7564: Unknown result type (might be due to invalid IL or missing references) //IL_756e: Unknown result type (might be due to invalid IL or missing references) //IL_7573: Unknown result type (might be due to invalid IL or missing references) //IL_7579: Unknown result type (might be due to invalid IL or missing references) //IL_7583: Unknown result type (might be due to invalid IL or missing references) //IL_7589: Unknown result type (might be due to invalid IL or missing references) //IL_758e: Unknown result type (might be due to invalid IL or missing references) //IL_7594: Unknown result type (might be due to invalid IL or missing references) //IL_7599: Unknown result type (might be due to invalid IL or missing references) //IL_759e: Unknown result type (might be due to invalid IL or missing references) //IL_75a4: Unknown result type (might be due to invalid IL or missing references) //IL_75ae: Unknown result type (might be due to invalid IL or missing references) //IL_75b3: Unknown result type (might be due to invalid IL or missing references) //IL_75b8: Unknown result type (might be due to invalid IL or missing references) //IL_75c8: Unknown result type (might be due to invalid IL or missing references) //IL_75ce: Unknown result type (might be due to invalid IL or missing references) //IL_75d3: Unknown result type (might be due to invalid IL or missing references) //IL_75d9: Unknown result type (might be due to invalid IL or missing references) //IL_75de: Unknown result type (might be due to invalid IL or missing references) //IL_75e4: Unknown result type (might be due to invalid IL or missing references) //IL_75ee: Unknown result type (might be due to invalid IL or missing references) //IL_75f3: Unknown result type (might be due to invalid IL or missing references) //IL_75f9: Unknown result type (might be due to invalid IL or missing references) //IL_7603: Unknown result type (might be due to invalid IL or missing references) //IL_7609: Unknown result type (might be due to invalid IL or missing references) //IL_760e: Unknown result type (might be due to invalid IL or missing references) //IL_7614: Unknown result type (might be due to invalid IL or missing references) //IL_7619: Unknown result type (might be due to invalid IL or missing references) //IL_761e: Unknown result type (might be due to invalid IL or missing references) //IL_7624: Unknown result type (might be due to invalid IL or missing references) //IL_762e: Unknown result type (might be due to invalid IL or missing references) //IL_7633: Unknown result type (might be due to invalid IL or missing references) //IL_763e: Unknown result type (might be due to invalid IL or missing references) //IL_7644: Unknown result type (might be due to invalid IL or missing references) //IL_7649: Unknown result type (might be due to invalid IL or missing references) //IL_764f: Unknown result type (might be due to invalid IL or missing references) //IL_7654: Unknown result type (might be due to invalid IL or missing references) //IL_765a: Unknown result type (might be due to invalid IL or missing references) //IL_7664: Unknown result type (might be due to invalid IL or missing references) //IL_7669: Unknown result type (might be due to invalid IL or missing references) //IL_766f: Unknown result type (might be due to invalid IL or missing references) //IL_7679: Unknown result type (might be due to invalid IL or missing references) //IL_767f: Unknown result type (might be due to invalid IL or missing references) //IL_7684: Unknown result type (might be due to invalid IL or missing references) //IL_768a: Unknown result type (might be due to invalid IL or missing references) //IL_768f: Unknown result type (might be due to invalid IL or missing references) //IL_7694: Unknown result type (might be due to invalid IL or missing references) //IL_769a: Unknown result type (might be due to invalid IL or missing references) //IL_76a4: Unknown result type (might be due to invalid IL or missing references) //IL_76a9: Unknown result type (might be due to invalid IL or missing references) //IL_76ae: Unknown result type (might be due to invalid IL or missing references) //IL_76be: Unknown result type (might be due to invalid IL or missing references) //IL_76c4: Unknown result type (might be due to invalid IL or missing references) //IL_76c9: Unknown result type (might be due to invalid IL or missing references) //IL_76cf: Unknown result type (might be due to invalid IL or missing references) //IL_76d4: Unknown result type (might be due to invalid IL or missing references) //IL_76da: Unknown result type (might be due to invalid IL or missing references) //IL_76e4: Unknown result type (might be due to invalid IL or missing references) //IL_76e9: Unknown result type (might be due to invalid IL or missing references) //IL_76ef: Unknown result type (might be due to invalid IL or missing references) //IL_76f9: Unknown result type (might be due to invalid IL or missing references) //IL_76ff: Unknown result type (might be due to invalid IL or missing references) //IL_7704: Unknown result type (might be due to invalid IL or missing references) //IL_770a: Unknown result type (might be due to invalid IL or missing references) //IL_770f: Unknown result type (might be due to invalid IL or missing references) //IL_7714: Unknown result type (might be due to invalid IL or missing references) //IL_771a: Unknown result type (might be due to invalid IL or missing references) //IL_7724: Unknown result type (might be due to invalid IL or missing references) //IL_7729: Unknown result type (might be due to invalid IL or missing references) //IL_7734: Unknown result type (might be due to invalid IL or missing references) //IL_773a: Unknown result type (might be due to invalid IL or missing references) //IL_773f: Unknown result type (might be due to invalid IL or missing references) //IL_7745: Unknown result type (might be due to invalid IL or missing references) //IL_774a: Unknown result type (might be due to invalid IL or missing references) //IL_7750: Unknown result type (might be due to invalid IL or missing references) //IL_775a: Unknown result type (might be due to invalid IL or missing references) //IL_775f: Unknown result type (might be due to invalid IL or missing references) //IL_7765: Unknown result type (might be due to invalid IL or missing references) //IL_776f: Unknown result type (might be due to invalid IL or missing references) //IL_7775: Unknown result type (might be due to invalid IL or missing references) //IL_777a: Unknown result type (might be due to invalid IL or missing references) //IL_7780: Unknown result type (might be due to invalid IL or missing references) //IL_7785: Unknown result type (might be due to invalid IL or missing references) //IL_778a: Unknown result type (might be due to invalid IL or missing references) //IL_7790: Unknown result type (might be due to invalid IL or missing references) //IL_779a: Unknown result type (might be due to invalid IL or missing references) //IL_779f: Unknown result type (might be due to invalid IL or missing references) //IL_77a4: Unknown result type (might be due to invalid IL or missing references) //IL_77b4: Unknown result type (might be due to invalid IL or missing references) //IL_77ba: Unknown result type (might be due to invalid IL or missing references) //IL_77bf: Unknown result type (might be due to invalid IL or missing references) //IL_77c5: Unknown result type (might be due to invalid IL or missing references) //IL_77ca: Unknown result type (might be due to invalid IL or missing references) //IL_77d0: Unknown result type (might be due to invalid IL or missing references) //IL_77da: Unknown result type (might be due to invalid IL or missing references) //IL_77df: Unknown result type (might be due to invalid IL or missing references) //IL_77e5: Unknown result type (might be due to invalid IL or missing references) //IL_77ef: Unknown result type (might be due to invalid IL or missing references) //IL_77f5: Unknown result type (might be due to invalid IL or missing references) //IL_77fa: Unknown result type (might be due to invalid IL or missing references) //IL_7800: Unknown result type (might be due to invalid IL or missing references) //IL_7805: Unknown result type (might be due to invalid IL or missing references) //IL_780a: Unknown result type (might be due to invalid IL or missing references) //IL_7810: Unknown result type (might be due to invalid IL or missing references) //IL_781a: Unknown result type (might be due to invalid IL or missing references) //IL_781f: Unknown result type (might be due to invalid IL or missing references) //IL_782a: Unknown result type (might be due to invalid IL or missing references) //IL_7830: Unknown result type (might be due to invalid IL or missing references) //IL_7835: Unknown result type (might be due to invalid IL or missing references) //IL_783b: Unknown result type (might be due to invalid IL or missing references) //IL_7840: Unknown result type (might be due to invalid IL or missing references) //IL_7846: Unknown result type (might be due to invalid IL or missing references) //IL_7850: Unknown result type (might be due to invalid IL or missing references) //IL_7855: Unknown result type (might be due to invalid IL or missing references) //IL_785b: Unknown result type (might be due to invalid IL or missing references) //IL_7865: Unknown result type (might be due to invalid IL or missing references) //IL_786b: Unknown result type (might be due to invalid IL or missing references) //IL_7870: Unknown result type (might be due to invalid IL or missing references) //IL_7876: Unknown result type (might be due to invalid IL or missing references) //IL_787b: Unknown result type (might be due to invalid IL or missing references) //IL_7880: Unknown result type (might be due to invalid IL or missing references) //IL_7886: Unknown result type (might be due to invalid IL or missing references) //IL_7890: Unknown result type (might be due to invalid IL or missing references) //IL_7895: Unknown result type (might be due to invalid IL or missing references) //IL_789a: Unknown result type (might be due to invalid IL or missing references) //IL_78aa: Unknown result type (might be due to invalid IL or missing references) //IL_78b0: Unknown result type (might be due to invalid IL or missing references) //IL_78b5: Unknown result type (might be due to invalid IL or missing references) //IL_78bb: Unknown result type (might be due to invalid IL or missing references) //IL_78c0: Unknown result type (might be due to invalid IL or missing references) //IL_78c6: Unknown result type (might be due to invalid IL or missing references) //IL_78d0: Unknown result type (might be due to invalid IL or missing references) //IL_78d5: Unknown result type (might be due to invalid IL or missing references) //IL_78db: Unknown result type (might be due to invalid IL or missing references) //IL_78e5: Unknown result type (might be due to invalid IL or missing references) //IL_78eb: Unknown result type (might be due to invalid IL or missing references) //IL_78f0: Unknown result type (might be due to invalid IL or missing references) //IL_78f6: Unknown result type (might be due to invalid IL or missing references) //IL_78fb: Unknown result type (might be due to invalid IL or missing references) //IL_7900: Unknown result type (might be due to invalid IL or missing references) //IL_7906: Unknown result type (might be due to invalid IL or missing references) //IL_7910: Unknown result type (might be due to invalid IL or missing references) //IL_7915: Unknown result type (might be due to invalid IL or missing references) //IL_7920: Unknown result type (might be due to invalid IL or missing references) //IL_7926: Unknown result type (might be due to invalid IL or missing references) //IL_792b: Unknown result type (might be due to invalid IL or missing references) //IL_7931: Unknown result type (might be due to invalid IL or missing references) //IL_7936: Unknown result type (might be due to invalid IL or missing references) //IL_793c: Unknown result type (might be due to invalid IL or missing references) //IL_7946: Unknown result type (might be due to invalid IL or missing references) //IL_794b: Unknown result type (might be due to invalid IL or missing references) //IL_7951: Unknown result type (might be due to invalid IL or missing references) //IL_795b: Unknown result type (might be due to invalid IL or missing references) //IL_7961: Unknown result type (might be due to invalid IL or missing references) //IL_7966: Unknown result type (might be due to invalid IL or missing references) //IL_796c: Unknown result type (might be due to invalid IL or missing references) //IL_7971: Unknown result type (might be due to invalid IL or missing references) //IL_7976: Unknown result type (might be due to invalid IL or missing references) //IL_797c: Unknown result type (might be due to invalid IL or missing references) //IL_7986: Unknown result type (might be due to invalid IL or missing references) //IL_798b: Unknown result type (might be due to invalid IL or missing references) //IL_7990: Unknown result type (might be due to invalid IL or missing references) //IL_79a0: Unknown result type (might be due to invalid IL or missing references) //IL_79a6: Unknown result type (might be due to invalid IL or missing references) //IL_79ab: Unknown result type (might be due to invalid IL or missing references) //IL_79b1: Unknown result type (might be due to invalid IL or missing references) //IL_79b6: Unknown result type (might be due to invalid IL or missing references) //IL_79bc: Unknown result type (might be due to invalid IL or missing references) //IL_79c6: Unknown result type (might be due to invalid IL or missing references) //IL_79cb: Unknown result type (might be due to invalid IL or missing references) //IL_79d1: Unknown result type (might be due to invalid IL or missing references) //IL_79db: Unknown result type (might be due to invalid IL or missing references) //IL_79e1: Unknown result type (might be due to invalid IL or missing references) //IL_79e6: Unknown result type (might be due to invalid IL or missing references) //IL_79ec: Unknown result type (might be due to invalid IL or missing references) //IL_79f1: Unknown result type (might be due to invalid IL or missing references) //IL_79f6: Unknown result type (might be due to invalid IL or missing references) //IL_79fc: Unknown result type (might be due to invalid IL or missing references) //IL_7a06: Unknown result type (might be due to invalid IL or missing references) //IL_7a0b: Unknown result type (might be due to invalid IL or missing references) //IL_7a16: Unknown result type (might be due to invalid IL or missing references) //IL_7a1c: Unknown result type (might be due to invalid IL or missing references) //IL_7a21: Unknown result type (might be due to invalid IL or missing references) //IL_7a27: Unknown result type (might be due to invalid IL or missing references) //IL_7a2c: Unknown result type (might be due to invalid IL or missing references) //IL_7a32: Unknown result type (might be due to invalid IL or missing references) //IL_7a3c: Unknown result type (might be due to invalid IL or missing references) //IL_7a41: Unknown result type (might be due to invalid IL or missing references) //IL_7a47: Unknown result type (might be due to invalid IL or missing references) //IL_7a51: Unknown result type (might be due to invalid IL or missing references) //IL_7a57: Unknown result type (might be due to invalid IL or missing references) //IL_7a5c: Unknown result type (might be due to invalid IL or missing references) //IL_7a62: Unknown result type (might be due to invalid IL or missing references) //IL_7a67: Unknown result type (might be due to invalid IL or missing references) //IL_7a6c: Unknown result type (might be due to invalid IL or missing references) //IL_7a72: Unknown result type (might be due to invalid IL or missing references) //IL_7a7c: Unknown result type (might be due to invalid IL or missing references) //IL_7a81: Unknown result type (might be due to invalid IL or missing references) //IL_7a86: Unknown result type (might be due to invalid IL or missing references) //IL_7a96: Unknown result type (might be due to invalid IL or missing references) //IL_7a9c: Unknown result type (might be due to invalid IL or missing references) //IL_7aa1: Unknown result type (might be due to invalid IL or missing references) //IL_7aa7: Unknown result type (might be due to invalid IL or missing references) //IL_7aac: Unknown result type (might be due to invalid IL or missing references) //IL_7ab2: Unknown result type (might be due to invalid IL or missing references) //IL_7abc: Unknown result type (might be due to invalid IL or missing references) //IL_7ac1: Unknown result type (might be due to invalid IL or missing references) //IL_7ac7: Unknown result type (might be due to invalid IL or missing references) //IL_7ad1: Unknown result type (might be due to invalid IL or missing references) //IL_7ad7: Unknown result type (might be due to invalid IL or missing references) //IL_7adc: Unknown result type (might be due to invalid IL or missing references) //IL_7ae2: Unknown result type (might be due to invalid IL or missing references) //IL_7ae7: Unknown result type (might be due to invalid IL or missing references) //IL_7aec: Unknown result type (might be due to invalid IL or missing references) //IL_7af2: Unknown result type (might be due to invalid IL or missing references) //IL_7afc: Unknown result type (might be due to invalid IL or missing references) //IL_7b01: Unknown result type (might be due to invalid IL or missing references) //IL_7b0c: Unknown result type (might be due to invalid IL or missing references) //IL_7b12: Unknown result type (might be due to invalid IL or missing references) //IL_7b17: Unknown result type (might be due to invalid IL or missing references) //IL_7b1d: Unknown result type (might be due to invalid IL or missing references) //IL_7b22: Unknown result type (might be due to invalid IL or missing references) //IL_7b28: Unknown result type (might be due to invalid IL or missing references) //IL_7b32: Unknown result type (might be due to invalid IL or missing references) //IL_7b37: Unknown result type (might be due to invalid IL or missing references) //IL_7b3d: Unknown result type (might be due to invalid IL or missing references) //IL_7b47: Unknown result type (might be due to invalid IL or missing references) //IL_7b4d: Unknown result type (might be due to invalid IL or missing references) //IL_7b52: Unknown result type (might be due to invalid IL or missing references) //IL_7b58: Unknown result type (might be due to invalid IL or missing references) //IL_7b5d: Unknown result type (might be due to invalid IL or missing references) //IL_7b62: Unknown result type (might be due to invalid IL or missing references) //IL_7b68: Unknown result type (might be due to invalid IL or missing references) //IL_7b72: Unknown result type (might be due to invalid IL or missing references) //IL_7b77: Unknown result type (might be due to invalid IL or missing references) //IL_7b7c: Unknown result type (might be due to invalid IL or missing references) //IL_7b8c: Unknown result type (might be due to invalid IL or missing references) //IL_7b92: Unknown result type (might be due to invalid IL or missing references) //IL_7b97: Unknown result type (might be due to invalid IL or missing references) //IL_7b9d: Unknown result type (might be due to invalid IL or missing references) //IL_7ba2: Unknown result type (might be due to invalid IL or missing references) //IL_7ba8: Unknown result type (might be due to invalid IL or missing references) //IL_7bb2: Unknown result type (might be due to invalid IL or missing references) //IL_7bb7: Unknown result type (might be due to invalid IL or missing references) //IL_7bbd: Unknown result type (might be due to invalid IL or missing references) //IL_7bc7: Unknown result type (might be due to invalid IL or missing references) //IL_7bcd: Unknown result type (might be due to invalid IL or missing references) //IL_7bd2: Unknown result type (might be due to invalid IL or missing references) //IL_7bd8: Unknown result type (might be due to invalid IL or missing references) //IL_7bdd: Unknown result type (might be due to invalid IL or missing references) //IL_7be2: Unknown result type (might be due to invalid IL or missing references) //IL_7bed: Unknown result type (might be due to invalid IL or missing references) //IL_7bf3: Unknown result type (might be due to invalid IL or missing references) //IL_7bf8: Unknown result type (might be due to invalid IL or missing references) //IL_7bfe: Unknown result type (might be due to invalid IL or missing references) //IL_7c03: Unknown result type (might be due to invalid IL or missing references) //IL_7c09: Unknown result type (might be due to invalid IL or missing references) //IL_7c13: Unknown result type (might be due to invalid IL or missing references) //IL_7c18: Unknown result type (might be due to invalid IL or missing references) //IL_7c1e: Unknown result type (might be due to invalid IL or missing references) //IL_7c28: Unknown result type (might be due to invalid IL or missing references) //IL_7c2e: Unknown result type (might be due to invalid IL or missing references) //IL_7c33: Unknown result type (might be due to invalid IL or missing references) //IL_7c39: Unknown result type (might be due to invalid IL or missing references) //IL_7c3e: Unknown result type (might be due to invalid IL or missing references) //IL_7c43: Unknown result type (might be due to invalid IL or missing references) //IL_7c48: Unknown result type (might be due to invalid IL or missing references) //IL_7c58: Unknown result type (might be due to invalid IL or missing references) //IL_7c5e: Unknown result type (might be due to invalid IL or missing references) //IL_7c63: Unknown result type (might be due to invalid IL or missing references) //IL_7c69: Unknown result type (might be due to invalid IL or missing references) //IL_7c6e: Unknown result type (might be due to invalid IL or missing references) //IL_7c74: Unknown result type (might be due to invalid IL or missing references) //IL_7c7e: Unknown result type (might be due to invalid IL or missing references) //IL_7c83: Unknown result type (might be due to invalid IL or missing references) //IL_7c89: Unknown result type (might be due to invalid IL or missing references) //IL_7c93: Unknown result type (might be due to invalid IL or missing references) //IL_7c99: Unknown result type (might be due to invalid IL or missing references) //IL_7c9e: Unknown result type (might be due to invalid IL or missing references) //IL_7ca4: Unknown result type (might be due to invalid IL or missing references) //IL_7ca9: Unknown result type (might be due to invalid IL or missing references) //IL_7cae: Unknown result type (might be due to invalid IL or missing references) //IL_7cb4: Unknown result type (might be due to invalid IL or missing references) //IL_7cbe: Unknown result type (might be due to invalid IL or missing references) //IL_7cc3: Unknown result type (might be due to invalid IL or missing references) //IL_7cce: Unknown result type (might be due to invalid IL or missing references) //IL_7cd4: Unknown result type (might be due to invalid IL or missing references) //IL_7cd9: Unknown result type (might be due to invalid IL or missing references) //IL_7cdf: Unknown result type (might be due to invalid IL or missing references) //IL_7ce4: Unknown result type (might be due to invalid IL or missing references) //IL_7cea: Unknown result type (might be due to invalid IL or missing references) //IL_7cf4: Unknown result type (might be due to invalid IL or missing references) //IL_7cf9: Unknown result type (might be due to invalid IL or missing references) //IL_7cff: Unknown result type (might be due to invalid IL or missing references) //IL_7d09: Unknown result type (might be due to invalid IL or missing references) //IL_7d0f: Unknown result type (might be due to invalid IL or missing references) //IL_7d14: Unknown result type (might be due to invalid IL or missing references) //IL_7d1a: Unknown result type (might be due to invalid IL or missing references) //IL_7d1f: Unknown result type (might be due to invalid IL or missing references) //IL_7d24: Unknown result type (might be due to invalid IL or missing references) //IL_7d2a: Unknown result type (might be due to invalid IL or missing references) //IL_7d34: Unknown result type (might be due to invalid IL or missing references) //IL_7d39: Unknown result type (might be due to invalid IL or missing references) //IL_7d3e: Unknown result type (might be due to invalid IL or missing references) //IL_7d4e: Unknown result type (might be due to invalid IL or missing references) //IL_7d54: Unknown result type (might be due to invalid IL or missing references) //IL_7d59: Unknown result type (might be due to invalid IL or missing references) //IL_7d5f: Unknown result type (might be due to invalid IL or missing references) //IL_7d64: Unknown result type (might be due to invalid IL or missing references) //IL_7d6a: Unknown result type (might be due to invalid IL or missing references) //IL_7d74: Unknown result type (might be due to invalid IL or missing references) //IL_7d79: Unknown result type (might be due to invalid IL or missing references) //IL_7d7f: Unknown result type (might be due to invalid IL or missing references) //IL_7d89: Unknown result type (might be due to invalid IL or missing references) //IL_7d8f: Unknown result type (might be due to invalid IL or missing references) //IL_7d94: Unknown result type (might be due to invalid IL or missing references) //IL_7d9a: Unknown result type (might be due to invalid IL or missing references) //IL_7d9f: Unknown result type (might be due to invalid IL or missing references) //IL_7da4: Unknown result type (might be due to invalid IL or missing references) //IL_7daa: Unknown result type (might be due to invalid IL or missing references) //IL_7db4: Unknown result type (might be due to invalid IL or missing references) //IL_7db9: Unknown result type (might be due to invalid IL or missing references) //IL_7dc4: Unknown result type (might be due to invalid IL or missing references) //IL_7dca: Unknown result type (might be due to invalid IL or missing references) //IL_7dcf: Unknown result type (might be due to invalid IL or missing references) //IL_7dd5: Unknown result type (might be due to invalid IL or missing references) //IL_7dda: Unknown result type (might be due to invalid IL or missing references) //IL_7de0: Unknown result type (might be due to invalid IL or missing references) //IL_7dea: Unknown result type (might be due to invalid IL or missing references) //IL_7def: Unknown result type (might be due to invalid IL or missing references) //IL_7df5: Unknown result type (might be due to invalid IL or missing references) //IL_7dff: Unknown result type (might be due to invalid IL or missing references) //IL_7e05: Unknown result type (might be due to invalid IL or missing references) //IL_7e0a: Unknown result type (might be due to invalid IL or missing references) //IL_7e10: Unknown result type (might be due to invalid IL or missing references) //IL_7e15: Unknown result type (might be due to invalid IL or missing references) //IL_7e1a: Unknown result type (might be due to invalid IL or missing references) //IL_7e20: Unknown result type (might be due to invalid IL or missing references) //IL_7e2a: Unknown result type (might be due to invalid IL or missing references) //IL_7e2f: Unknown result type (might be due to invalid IL or missing references) //IL_7e34: Unknown result type (might be due to invalid IL or missing references) //IL_7e44: Unknown result type (might be due to invalid IL or missing references) //IL_7e4a: Unknown result type (might be due to invalid IL or missing references) //IL_7e4f: Unknown result type (might be due to invalid IL or missing references) //IL_7e55: Unknown result type (might be due to invalid IL or missing references) //IL_7e5a: Unknown result type (might be due to invalid IL or missing references) //IL_7e60: Unknown result type (might be due to invalid IL or missing references) //IL_7e6a: Unknown result type (might be due to invalid IL or missing references) //IL_7e6f: Unknown result type (might be due to invalid IL or missing references) //IL_7e75: Unknown result type (might be due to invalid IL or missing references) //IL_7e7f: Unknown result type (might be due to invalid IL or missing references) //IL_7e85: Unknown result type (might be due to invalid IL or missing references) //IL_7e8a: Unknown result type (might be due to invalid IL or missing references) //IL_7e90: Unknown result type (might be due to invalid IL or missing references) //IL_7e95: Unknown result type (might be due to invalid IL or missing references) //IL_7e9a: Unknown result type (might be due to invalid IL or missing references) //IL_7ea0: Unknown result type (might be due to invalid IL or missing references) //IL_7eaa: Unknown result type (might be due to invalid IL or missing references) //IL_7eaf: Unknown result type (might be due to invalid IL or missing references) //IL_7eba: Unknown result type (might be due to invalid IL or missing references) //IL_7ec0: Unknown result type (might be due to invalid IL or missing references) //IL_7ec5: Unknown result type (might be due to invalid IL or missing references) //IL_7ecb: Unknown result type (might be due to invalid IL or missing references) //IL_7ed0: Unknown result type (might be due to invalid IL or missing references) //IL_7ed6: Unknown result type (might be due to invalid IL or missing references) //IL_7ee0: Unknown result type (might be due to invalid IL or missing references) //IL_7ee5: Unknown result type (might be due to invalid IL or missing references) //IL_7eeb: Unknown result type (might be due to invalid IL or missing references) //IL_7ef5: Unknown result type (might be due to invalid IL or missing references) //IL_7efb: Unknown result type (might be due to invalid IL or missing references) //IL_7f00: Unknown result type (might be due to invalid IL or missing references) //IL_7f06: Unknown result type (might be due to invalid IL or missing references) //IL_7f0b: Unknown result type (might be due to invalid IL or missing references) //IL_7f10: Unknown result type (might be due to invalid IL or missing references) //IL_7f16: Unknown result type (might be due to invalid IL or missing references) //IL_7f20: Unknown result type (might be due to invalid IL or missing references) //IL_7f25: Unknown result type (might be due to invalid IL or missing references) //IL_7f2a: Unknown result type (might be due to invalid IL or missing references) //IL_7f3a: Unknown result type (might be due to invalid IL or missing references) //IL_7f40: Unknown result type (might be due to invalid IL or missing references) //IL_7f45: Unknown result type (might be due to invalid IL or missing references) //IL_7f4b: Unknown result type (might be due to invalid IL or missing references) //IL_7f50: Unknown result type (might be due to invalid IL or missing references) //IL_7f56: Unknown result type (might be due to invalid IL or missing references) //IL_7f60: Unknown result type (might be due to invalid IL or missing references) //IL_7f65: Unknown result type (might be due to invalid IL or missing references) //IL_7f6b: Unknown result type (might be due to invalid IL or missing references) //IL_7f75: Unknown result type (might be due to invalid IL or missing references) //IL_7f7b: Unknown result type (might be due to invalid IL or missing references) //IL_7f80: Unknown result type (might be due to invalid IL or missing references) //IL_7f86: Unknown result type (might be due to invalid IL or missing references) //IL_7f8b: Unknown result type (might be due to invalid IL or missing references) //IL_7f90: Unknown result type (might be due to invalid IL or missing references) //IL_7f96: Unknown result type (might be due to invalid IL or missing references) //IL_7fa0: Unknown result type (might be due to invalid IL or missing references) //IL_7fa5: Unknown result type (might be due to invalid IL or missing references) //IL_7fb0: Unknown result type (might be due to invalid IL or missing references) //IL_7fb6: Unknown result type (might be due to invalid IL or missing references) //IL_7fbb: Unknown result type (might be due to invalid IL or missing references) //IL_7fc1: Unknown result type (might be due to invalid IL or missing references) //IL_7fc6: Unknown result type (might be due to invalid IL or missing references) //IL_7fcc: Unknown result type (might be due to invalid IL or missing references) //IL_7fd6: Unknown result type (might be due to invalid IL or missing references) //IL_7fdb: Unknown result type (might be due to invalid IL or missing references) //IL_7fe1: Unknown result type (might be due to invalid IL or missing references) //IL_7feb: Unknown result type (might be due to invalid IL or missing references) //IL_7ff1: Unknown result type (might be due to invalid IL or missing references) //IL_7ff6: Unknown result type (might be due to invalid IL or missing references) //IL_7ffc: Unknown result type (might be due to invalid IL or missing references) //IL_8001: Unknown result type (might be due to invalid IL or missing references) //IL_8006: Unknown result type (might be due to invalid IL or missing references) //IL_800c: Unknown result type (might be due to invalid IL or missing references) //IL_8016: Unknown result type (might be due to invalid IL or missing references) //IL_801b: Unknown result type (might be due to invalid IL or missing references) //IL_8020: Unknown result type (might be due to invalid IL or missing references) //IL_8030: Unknown result type (might be due to invalid IL or missing references) //IL_8036: Unknown result type (might be due to invalid IL or missing references) //IL_803b: Unknown result type (might be due to invalid IL or missing references) //IL_8041: Unknown result type (might be due to invalid IL or missing references) //IL_8046: Unknown result type (might be due to invalid IL or missing references) //IL_804c: Unknown result type (might be due to invalid IL or missing references) //IL_8056: Unknown result type (might be due to invalid IL or missing references) //IL_805b: Unknown result type (might be due to invalid IL or missing references) //IL_8061: Unknown result type (might be due to invalid IL or missing references) //IL_806b: Unknown result type (might be due to invalid IL or missing references) //IL_8071: Unknown result type (might be due to invalid IL or missing references) //IL_8076: Unknown result type (might be due to invalid IL or missing references) //IL_807c: Unknown result type (might be due to invalid IL or missing references) //IL_8081: Unknown result type (might be due to invalid IL or missing references) //IL_8086: Unknown result type (might be due to invalid IL or missing references) //IL_808c: Unknown result type (might be due to invalid IL or missing references) //IL_8096: Unknown result type (might be due to invalid IL or missing references) //IL_809b: Unknown result type (might be due to invalid IL or missing references) //IL_80a6: Unknown result type (might be due to invalid IL or missing references) //IL_80ac: Unknown result type (might be due to invalid IL or missing references) //IL_80b1: Unknown result type (might be due to invalid IL or missing references) //IL_80b7: Unknown result type (might be due to invalid IL or missing references) //IL_80bc: Unknown result type (might be due to invalid IL or missing references) //IL_80c2: Unknown result type (might be due to invalid IL or missing references) //IL_80cc: Unknown result type (might be due to invalid IL or missing references) //IL_80d1: Unknown result type (might be due to invalid IL or missing references) //IL_80d7: Unknown result type (might be due to invalid IL or missing references) //IL_80e1: Unknown result type (might be due to invalid IL or missing references) //IL_80e7: Unknown result type (might be due to invalid IL or missing references) //IL_80ec: Unknown result type (might be due to invalid IL or missing references) //IL_80f2: Unknown result type (might be due to invalid IL or missing references) //IL_80f7: Unknown result type (might be due to invalid IL or missing references) //IL_80fc: Unknown result type (might be due to invalid IL or missing references) //IL_8102: Unknown result type (might be due to invalid IL or missing references) //IL_810c: Unknown result type (might be due to invalid IL or missing references) //IL_8111: Unknown result type (might be due to invalid IL or missing references) //IL_8116: Unknown result type (might be due to invalid IL or missing references) //IL_8126: Unknown result type (might be due to invalid IL or missing references) //IL_812c: Unknown result type (might be due to invalid IL or missing references) //IL_8131: Unknown result type (might be due to invalid IL or missing references) //IL_8137: Unknown result type (might be due to invalid IL or missing references) //IL_813c: Unknown result type (might be due to invalid IL or missing references) //IL_8142: Unknown result type (might be due to invalid IL or missing references) //IL_814c: Unknown result type (might be due to invalid IL or missing references) //IL_8151: Unknown result type (might be due to invalid IL or missing references) //IL_8157: Unknown result type (might be due to invalid IL or missing references) //IL_8161: Unknown result type (might be due to invalid IL or missing references) //IL_8167: Unknown result type (might be due to invalid IL or missing references) //IL_816c: Unknown result type (might be due to invalid IL or missing references) //IL_8172: Unknown result type (might be due to invalid IL or missing references) //IL_8177: Unknown result type (might be due to invalid IL or missing references) //IL_817c: Unknown result type (might be due to invalid IL or missing references) //IL_8182: Unknown result type (might be due to invalid IL or missing references) //IL_818c: Unknown result type (might be due to invalid IL or missing references) //IL_8191: Unknown result type (might be due to invalid IL or missing references) //IL_819c: Unknown result type (might be due to invalid IL or missing references) //IL_81a2: Unknown result type (might be due to invalid IL or missing references) //IL_81a7: Unknown result type (might be due to invalid IL or missing references) //IL_81ad: Unknown result type (might be due to invalid IL or missing references) //IL_81b2: Unknown result type (might be due to invalid IL or missing references) //IL_81b8: Unknown result type (might be due to invalid IL or missing references) //IL_81c2: Unknown result type (might be due to invalid IL or missing references) //IL_81c7: Unknown result type (might be due to invalid IL or missing references) //IL_81cd: Unknown result type (might be due to invalid IL or missing references) //IL_81d7: Unknown result type (might be due to invalid IL or missing references) //IL_81dd: Unknown result type (might be due to invalid IL or missing references) //IL_81e2: Unknown result type (might be due to invalid IL or missing references) //IL_81e8: Unknown result type (might be due to invalid IL or missing references) //IL_81ed: Unknown result type (might be due to invalid IL or missing references) //IL_81f2: Unknown result type (might be due to invalid IL or missing references) //IL_81f8: Unknown result type (might be due to invalid IL or missing references) //IL_8202: Unknown result type (might be due to invalid IL or missing references) //IL_8207: Unknown result type (might be due to invalid IL or missing references) //IL_820c: Unknown result type (might be due to invalid IL or missing references) //IL_821c: Unknown result type (might be due to invalid IL or missing references) //IL_8222: Unknown result type (might be due to invalid IL or missing references) //IL_8227: Unknown result type (might be due to invalid IL or missing references) //IL_822d: Unknown result type (might be due to invalid IL or missing references) //IL_8232: Unknown result type (might be due to invalid IL or missing references) //IL_8238: Unknown result type (might be due to invalid IL or missing references) //IL_8242: Unknown result type (might be due to invalid IL or missing references) //IL_8247: Unknown result type (might be due to invalid IL or missing references) //IL_824d: Unknown result type (might be due to invalid IL or missing references) //IL_8257: Unknown result type (might be due to invalid IL or missing references) //IL_825d: Unknown result type (might be due to invalid IL or missing references) //IL_8262: Unknown result type (might be due to invalid IL or missing references) //IL_8268: Unknown result type (might be due to invalid IL or missing references) //IL_826d: Unknown result type (might be due to invalid IL or missing references) //IL_8272: Unknown result type (might be due to invalid IL or missing references) //IL_8278: Unknown result type (might be due to invalid IL or missing references) //IL_8282: Unknown result type (might be due to invalid IL or missing references) //IL_8287: Unknown result type (might be due to invalid IL or missing references) //IL_8292: Unknown result type (might be due to invalid IL or missing references) //IL_8298: Unknown result type (might be due to invalid IL or missing references) //IL_829d: Unknown result type (might be due to invalid IL or missing references) //IL_82a3: Unknown result type (might be due to invalid IL or missing references) //IL_82a8: Unknown result type (might be due to invalid IL or missing references) //IL_82ae: Unknown result type (might be due to invalid IL or missing references) //IL_82b8: Unknown result type (might be due to invalid IL or missing references) //IL_82bd: Unknown result type (might be due to invalid IL or missing references) //IL_82c3: Unknown result type (might be due to invalid IL or missing references) //IL_82cd: Unknown result type (might be due to invalid IL or missing references) //IL_82d3: Unknown result type (might be due to invalid IL or missing references) //IL_82d8: Unknown result type (might be due to invalid IL or missing references) //IL_82de: Unknown result type (might be due to invalid IL or missing references) //IL_82e3: Unknown result type (might be due to invalid IL or missing references) //IL_82e8: Unknown result type (might be due to invalid IL or missing references) //IL_82ee: Unknown result type (might be due to invalid IL or missing references) //IL_82f8: Unknown result type (might be due to invalid IL or missing references) //IL_82fd: Unknown result type (might be due to invalid IL or missing references) //IL_8302: Unknown result type (might be due to invalid IL or missing references) //IL_8312: Unknown result type (might be due to invalid IL or missing references) //IL_8318: Unknown result type (might be due to invalid IL or missing references) //IL_831d: Unknown result type (might be due to invalid IL or missing references) //IL_8323: Unknown result type (might be due to invalid IL or missing references) //IL_8328: Unknown result type (might be due to invalid IL or missing references) //IL_832e: Unknown result type (might be due to invalid IL or missing references) //IL_8338: Unknown result type (might be due to invalid IL or missing references) //IL_833d: Unknown result type (might be due to invalid IL or missing references) //IL_8343: Unknown result type (might be due to invalid IL or missing references) //IL_834d: Unknown result type (might be due to invalid IL or missing references) //IL_8353: Unknown result type (might be due to invalid IL or missing references) //IL_8358: Unknown result type (might be due to invalid IL or missing references) //IL_835e: Unknown result type (might be due to invalid IL or missing references) //IL_8363: Unknown result type (might be due to invalid IL or missing references) //IL_8368: Unknown result type (might be due to invalid IL or missing references) //IL_8373: Unknown result type (might be due to invalid IL or missing references) //IL_8379: Unknown result type (might be due to invalid IL or missing references) //IL_837e: Unknown result type (might be due to invalid IL or missing references) //IL_8384: Unknown result type (might be due to invalid IL or missing references) //IL_8389: Unknown result type (might be due to invalid IL or missing references) //IL_838f: Unknown result type (might be due to invalid IL or missing references) //IL_8399: Unknown result type (might be due to invalid IL or missing references) //IL_839e: Unknown result type (might be due to invalid IL or missing references) //IL_83a4: Unknown result type (might be due to invalid IL or missing references) //IL_83ae: Unknown result type (might be due to invalid IL or missing references) //IL_83b4: Unknown result type (might be due to invalid IL or missing references) //IL_83b9: Unknown result type (might be due to invalid IL or missing references) //IL_83bf: Unknown result type (might be due to invalid IL or missing references) //IL_83c4: Unknown result type (might be due to invalid IL or missing references) //IL_83c9: Unknown result type (might be due to invalid IL or missing references) //IL_83ce: Unknown result type (might be due to invalid IL or missing references) //IL_83de: Unknown result type (might be due to invalid IL or missing references) //IL_83e4: Unknown result type (might be due to invalid IL or missing references) //IL_83e9: Unknown result type (might be due to invalid IL or missing references) //IL_83ef: Unknown result type (might be due to invalid IL or missing references) //IL_83f4: Unknown result type (might be due to invalid IL or missing references) //IL_83fa: Unknown result type (might be due to invalid IL or missing references) //IL_8404: Unknown result type (might be due to invalid IL or missing references) //IL_8409: Unknown result type (might be due to invalid IL or missing references) //IL_840f: Unknown result type (might be due to invalid IL or missing references) //IL_8419: Unknown result type (might be due to invalid IL or missing references) //IL_841f: Unknown result type (might be due to invalid IL or missing references) //IL_8424: Unknown result type (might be due to invalid IL or missing references) //IL_842a: Unknown result type (might be due to invalid IL or missing references) //IL_842f: Unknown result type (might be due to invalid IL or missing references) //IL_8434: Unknown result type (might be due to invalid IL or missing references) //IL_843a: Unknown result type (might be due to invalid IL or missing references) //IL_8444: Unknown result type (might be due to invalid IL or missing references) //IL_8449: Unknown result type (might be due to invalid IL or missing references) //IL_8454: Unknown result type (might be due to invalid IL or missing references) //IL_845a: Unknown result type (might be due to invalid IL or missing references) //IL_845f: Unknown result type (might be due to invalid IL or missing references) //IL_8465: Unknown result type (might be due to invalid IL or missing references) //IL_846a: Unknown result type (might be due to invalid IL or missing references) //IL_8470: Unknown result type (might be due to invalid IL or missing references) //IL_847a: Unknown result type (might be due to invalid IL or missing references) //IL_847f: Unknown result type (might be due to invalid IL or missing references) //IL_8485: Unknown result type (might be due to invalid IL or missing references) //IL_848f: Unknown result type (might be due to invalid IL or missing references) //IL_8495: Unknown result type (might be due to invalid IL or missing references) //IL_849a: Unknown result type (might be due to invalid IL or missing references) //IL_84a0: Unknown result type (might be due to invalid IL or missing references) //IL_84a5: Unknown result type (might be due to invalid IL or missing references) //IL_84aa: Unknown result type (might be due to invalid IL or missing references) //IL_84b0: Unknown result type (might be due to invalid IL or missing references) //IL_84ba: Unknown result type (might be due to invalid IL or missing references) //IL_84bf: Unknown result type (might be due to invalid IL or missing references) //IL_84c4: Unknown result type (might be due to invalid IL or missing references) //IL_84d4: Unknown result type (might be due to invalid IL or missing references) //IL_84da: Unknown result type (might be due to invalid IL or missing references) //IL_84df: Unknown result type (might be due to invalid IL or missing references) //IL_84e5: Unknown result type (might be due to invalid IL or missing references) //IL_84ea: Unknown result type (might be due to invalid IL or missing references) //IL_84f0: Unknown result type (might be due to invalid IL or missing references) //IL_84fa: Unknown result type (might be due to invalid IL or missing references) //IL_84ff: Unknown result type (might be due to invalid IL or missing references) //IL_8505: Unknown result type (might be due to invalid IL or missing references) //IL_850f: Unknown result type (might be due to invalid IL or missing references) //IL_8515: Unknown result type (might be due to invalid IL or missing references) //IL_851a: Unknown result type (might be due to invalid IL or missing references) //IL_8520: Unknown result type (might be due to invalid IL or missing references) //IL_8525: Unknown result type (might be due to invalid IL or missing references) //IL_852a: Unknown result type (might be due to invalid IL or missing references) //IL_8530: Unknown result type (might be due to invalid IL or missing references) //IL_853a: Unknown result type (might be due to invalid IL or missing references) //IL_853f: Unknown result type (might be due to invalid IL or missing references) //IL_854a: Unknown result type (might be due to invalid IL or missing references) //IL_8550: Unknown result type (might be due to invalid IL or missing references) //IL_8555: Unknown result type (might be due to invalid IL or missing references) //IL_855b: Unknown result type (might be due to invalid IL or missing references) //IL_8560: Unknown result type (might be due to invalid IL or missing references) //IL_8566: Unknown result type (might be due to invalid IL or missing references) //IL_8570: Unknown result type (might be due to invalid IL or missing references) //IL_8575: Unknown result type (might be due to invalid IL or missing references) //IL_857b: Unknown result type (might be due to invalid IL or missing references) //IL_8585: Unknown result type (might be due to invalid IL or missing references) //IL_858b: Unknown result type (might be due to invalid IL or missing references) //IL_8590: Unknown result type (might be due to invalid IL or missing references) //IL_8596: Unknown result type (might be due to invalid IL or missing references) //IL_859b: Unknown result type (might be due to invalid IL or missing references) //IL_85a0: Unknown result type (might be due to invalid IL or missing references) //IL_85a6: Unknown result type (might be due to invalid IL or missing references) //IL_85b0: Unknown result type (might be due to invalid IL or missing references) //IL_85b5: Unknown result type (might be due to invalid IL or missing references) //IL_85ba: Unknown result type (might be due to invalid IL or missing references) //IL_85ca: Unknown result type (might be due to invalid IL or missing references) //IL_85d0: Unknown result type (might be due to invalid IL or missing references) //IL_85d5: Unknown result type (might be due to invalid IL or missing references) //IL_85db: Unknown result type (might be due to invalid IL or missing references) //IL_85e0: Unknown result type (might be due to invalid IL or missing references) //IL_85e6: Unknown result type (might be due to invalid IL or missing references) //IL_85f0: Unknown result type (might be due to invalid IL or missing references) //IL_85f5: Unknown result type (might be due to invalid IL or missing references) //IL_85fb: Unknown result type (might be due to invalid IL or missing references) //IL_8605: Unknown result type (might be due to invalid IL or missing references) //IL_860b: Unknown result type (might be due to invalid IL or missing references) //IL_8610: Unknown result type (might be due to invalid IL or missing references) //IL_8616: Unknown result type (might be due to invalid IL or missing references) //IL_861b: Unknown result type (might be due to invalid IL or missing references) //IL_8620: Unknown result type (might be due to invalid IL or missing references) //IL_8626: Unknown result type (might be due to invalid IL or missing references) //IL_8630: Unknown result type (might be due to invalid IL or missing references) //IL_8635: Unknown result type (might be due to invalid IL or missing references) //IL_8640: Unknown result type (might be due to invalid IL or missing references) //IL_8646: Unknown result type (might be due to invalid IL or missing references) //IL_864b: Unknown result type (might be due to invalid IL or missing references) //IL_8651: Unknown result type (might be due to invalid IL or missing references) //IL_8656: Unknown result type (might be due to invalid IL or missing references) //IL_865c: Unknown result type (might be due to invalid IL or missing references) //IL_8666: Unknown result type (might be due to invalid IL or missing references) //IL_866b: Unknown result type (might be due to invalid IL or missing references) //IL_8671: Unknown result type (might be due to invalid IL or missing references) //IL_867b: Unknown result type (might be due to invalid IL or missing references) //IL_8681: Unknown result type (might be due to invalid IL or missing references) //IL_8686: Unknown result type (might be due to invalid IL or missing references) //IL_868c: Unknown result type (might be due to invalid IL or missing references) //IL_8691: Unknown result type (might be due to invalid IL or missing references) //IL_8696: Unknown result type (might be due to invalid IL or missing references) //IL_869c: Unknown result type (might be due to invalid IL or missing references) //IL_86a6: Unknown result type (might be due to invalid IL or missing references) //IL_86ab: Unknown result type (might be due to invalid IL or missing references) //IL_86b0: Unknown result type (might be due to invalid IL or missing references) //IL_86c0: Unknown result type (might be due to invalid IL or missing references) //IL_86c6: Unknown result type (might be due to invalid IL or missing references) //IL_86cb: Unknown result type (might be due to invalid IL or missing references) //IL_86d1: Unknown result type (might be due to invalid IL or missing references) //IL_86d6: Unknown result type (might be due to invalid IL or missing references) //IL_86dc: Unknown result type (might be due to invalid IL or missing references) //IL_86e6: Unknown result type (might be due to invalid IL or missing references) //IL_86eb: Unknown result type (might be due to invalid IL or missing references) //IL_86f1: Unknown result type (might be due to invalid IL or missing references) //IL_86fb: Unknown result type (might be due to invalid IL or missing references) //IL_8701: Unknown result type (might be due to invalid IL or missing references) //IL_8706: Unknown result type (might be due to invalid IL or missing references) //IL_870c: Unknown result type (might be due to invalid IL or missing references) //IL_8711: Unknown result type (might be due to invalid IL or missing references) //IL_8716: Unknown result type (might be due to invalid IL or missing references) //IL_871c: Unknown result type (might be due to invalid IL or missing references) //IL_8726: Unknown result type (might be due to invalid IL or missing references) //IL_872b: Unknown result type (might be due to invalid IL or missing references) //IL_8736: Unknown result type (might be due to invalid IL or missing references) //IL_873c: Unknown result type (might be due to invalid IL or missing references) //IL_8741: Unknown result type (might be due to invalid IL or missing references) //IL_8747: Unknown result type (might be due to invalid IL or missing references) //IL_874c: Unknown result type (might be due to invalid IL or missing references) //IL_8752: Unknown result type (might be due to invalid IL or missing references) //IL_875c: Unknown result type (might be due to invalid IL or missing references) //IL_8761: Unknown result type (might be due to invalid IL or missing references) //IL_8767: Unknown result type (might be due to invalid IL or missing references) //IL_8771: Unknown result type (might be due to invalid IL or missing references) //IL_8777: Unknown result type (might be due to invalid IL or missing references) //IL_877c: Unknown result type (might be due to invalid IL or missing references) //IL_8782: Unknown result type (might be due to invalid IL or missing references) //IL_8787: Unknown result type (might be due to invalid IL or missing references) //IL_878c: Unknown result type (might be due to invalid IL or missing references) //IL_8792: Unknown result type (might be due to invalid IL or missing references) //IL_879c: Unknown result type (might be due to invalid IL or missing references) //IL_87a1: Unknown result type (might be due to invalid IL or missing references) //IL_87a6: Unknown result type (might be due to invalid IL or missing references) //IL_87b6: Unknown result type (might be due to invalid IL or missing references) //IL_87bc: Unknown result type (might be due to invalid IL or missing references) //IL_87c1: Unknown result type (might be due to invalid IL or missing references) //IL_87c7: Unknown result type (might be due to invalid IL or missing references) //IL_87cc: Unknown result type (might be due to invalid IL or missing references) //IL_87d2: Unknown result type (might be due to invalid IL or missing references) //IL_87dc: Unknown result type (might be due to invalid IL or missing references) //IL_87e1: Unknown result type (might be due to invalid IL or missing references) //IL_87e7: Unknown result type (might be due to invalid IL or missing references) //IL_87f1: Unknown result type (might be due to invalid IL or missing references) //IL_87f7: Unknown result type (might be due to invalid IL or missing references) //IL_87fc: Unknown result type (might be due to invalid IL or missing references) //IL_8802: Unknown result type (might be due to invalid IL or missing references) //IL_8807: Unknown result type (might be due to invalid IL or missing references) //IL_880c: Unknown result type (might be due to invalid IL or missing references) //IL_8812: Unknown result type (might be due to invalid IL or missing references) //IL_881c: Unknown result type (might be due to invalid IL or missing references) //IL_8821: Unknown result type (might be due to invalid IL or missing references) //IL_882c: Unknown result type (might be due to invalid IL or missing references) //IL_8832: Unknown result type (might be due to invalid IL or missing references) //IL_8837: Unknown result type (might be due to invalid IL or missing references) //IL_883d: Unknown result type (might be due to invalid IL or missing references) //IL_8842: Unknown result type (might be due to invalid IL or missing references) //IL_8848: Unknown result type (might be due to invalid IL or missing references) //IL_8852: Unknown result type (might be due to invalid IL or missing references) //IL_8857: Unknown result type (might be due to invalid IL or missing references) //IL_885d: Unknown result type (might be due to invalid IL or missing references) //IL_8867: Unknown result type (might be due to invalid IL or missing references) //IL_886d: Unknown result type (might be due to invalid IL or missing references) //IL_8872: Unknown result type (might be due to invalid IL or missing references) //IL_8878: Unknown result type (might be due to invalid IL or missing references) //IL_887d: Unknown result type (might be due to invalid IL or missing references) //IL_8882: Unknown result type (might be due to invalid IL or missing references) //IL_8888: Unknown result type (might be due to invalid IL or missing references) //IL_8892: Unknown result type (might be due to invalid IL or missing references) //IL_8897: Unknown result type (might be due to invalid IL or missing references) //IL_889c: Unknown result type (might be due to invalid IL or missing references) //IL_88ac: Unknown result type (might be due to invalid IL or missing references) //IL_88b2: Unknown result type (might be due to invalid IL or missing references) //IL_88b7: Unknown result type (might be due to invalid IL or missing references) //IL_88bd: Unknown result type (might be due to invalid IL or missing references) //IL_88c2: Unknown result type (might be due to invalid IL or missing references) //IL_88c8: Unknown result type (might be due to invalid IL or missing references) //IL_88d2: Unknown result type (might be due to invalid IL or missing references) //IL_88d7: Unknown result type (might be due to invalid IL or missing references) //IL_88dd: Unknown result type (might be due to invalid IL or missing references) //IL_88e7: Unknown result type (might be due to invalid IL or missing references) //IL_88ed: Unknown result type (might be due to invalid IL or missing references) //IL_88f2: Unknown result type (might be due to invalid IL or missing references) //IL_88f8: Unknown result type (might be due to invalid IL or missing references) //IL_88fd: Unknown result type (might be due to invalid IL or missing references) //IL_8902: Unknown result type (might be due to invalid IL or missing references) //IL_8908: Unknown result type (might be due to invalid IL or missing references) //IL_8912: Unknown result type (might be due to invalid IL or missing references) //IL_8917: Unknown result type (might be due to invalid IL or missing references) //IL_8922: Unknown result type (might be due to invalid IL or missing references) //IL_8928: Unknown result type (might be due to invalid IL or missing references) //IL_892d: Unknown result type (might be due to invalid IL or missing references) //IL_8933: Unknown result type (might be due to invalid IL or missing references) //IL_8938: Unknown result type (might be due to invalid IL or missing references) //IL_893e: Unknown result type (might be due to invalid IL or missing references) //IL_8948: Unknown result type (might be due to invalid IL or missing references) //IL_894d: Unknown result type (might be due to invalid IL or missing references) //IL_8953: Unknown result type (might be due to invalid IL or missing references) //IL_895d: Unknown result type (might be due to invalid IL or missing references) //IL_8963: Unknown result type (might be due to invalid IL or missing references) //IL_8968: Unknown result type (might be due to invalid IL or missing references) //IL_896e: Unknown result type (might be due to invalid IL or missing references) //IL_8973: Unknown result type (might be due to invalid IL or missing references) //IL_8978: Unknown result type (might be due to invalid IL or missing references) //IL_897e: Unknown result type (might be due to invalid IL or missing references) //IL_8988: Unknown result type (might be due to invalid IL or missing references) //IL_898d: Unknown result type (might be due to invalid IL or missing references) //IL_8992: Unknown result type (might be due to invalid IL or missing references) //IL_89a2: Unknown result type (might be due to invalid IL or missing references) //IL_89a8: Unknown result type (might be due to invalid IL or missing references) //IL_89ad: Unknown result type (might be due to invalid IL or missing references) //IL_89b3: Unknown result type (might be due to invalid IL or missing references) //IL_89b8: Unknown result type (might be due to invalid IL or missing references) //IL_89be: Unknown result type (might be due to invalid IL or missing references) //IL_89c8: Unknown result type (might be due to invalid IL or missing references) //IL_89cd: Unknown result type (might be due to invalid IL or missing references) //IL_89d3: Unknown result type (might be due to invalid IL or missing references) //IL_89dd: Unknown result type (might be due to invalid IL or missing references) //IL_89e3: Unknown result type (might be due to invalid IL or missing references) //IL_89e8: Unknown result type (might be due to invalid IL or missing references) //IL_89ee: Unknown result type (might be due to invalid IL or missing references) //IL_89f3: Unknown result type (might be due to invalid IL or missing references) //IL_89f8: Unknown result type (might be due to invalid IL or missing references) //IL_89fe: Unknown result type (might be due to invalid IL or missing references) //IL_8a08: Unknown result type (might be due to invalid IL or missing references) //IL_8a0d: Unknown result type (might be due to invalid IL or missing references) //IL_8a18: Unknown result type (might be due to invalid IL or missing references) //IL_8a1e: Unknown result type (might be due to invalid IL or missing references) //IL_8a23: Unknown result type (might be due to invalid IL or missing references) //IL_8a29: Unknown result type (might be due to invalid IL or missing references) //IL_8a2e: Unknown result type (might be due to invalid IL or missing references) //IL_8a34: Unknown result type (might be due to invalid IL or missing references) //IL_8a3e: Unknown result type (might be due to invalid IL or missing references) //IL_8a43: Unknown result type (might be due to invalid IL or missing references) //IL_8a49: Unknown result type (might be due to invalid IL or missing references) //IL_8a53: Unknown result type (might be due to invalid IL or missing references) //IL_8a59: Unknown result type (might be due to invalid IL or missing references) //IL_8a5e: Unknown result type (might be due to invalid IL or missing references) //IL_8a64: Unknown result type (might be due to invalid IL or missing references) //IL_8a69: Unknown result type (might be due to invalid IL or missing references) //IL_8a6e: Unknown result type (might be due to invalid IL or missing references) //IL_8a74: Unknown result type (might be due to invalid IL or missing references) //IL_8a7e: Unknown result type (might be due to invalid IL or missing references) //IL_8a83: Unknown result type (might be due to invalid IL or missing references) //IL_8a88: Unknown result type (might be due to invalid IL or missing references) //IL_8a98: Unknown result type (might be due to invalid IL or missing references) //IL_8a9e: Unknown result type (might be due to invalid IL or missing references) //IL_8aa3: Unknown result type (might be due to invalid IL or missing references) //IL_8aa9: Unknown result type (might be due to invalid IL or missing references) //IL_8aae: Unknown result type (might be due to invalid IL or missing references) //IL_8ab4: Unknown result type (might be due to invalid IL or missing references) //IL_8abe: Unknown result type (might be due to invalid IL or missing references) //IL_8ac3: Unknown result type (might be due to invalid IL or missing references) //IL_8ac9: Unknown result type (might be due to invalid IL or missing references) //IL_8ad3: Unknown result type (might be due to invalid IL or missing references) //IL_8ad9: Unknown result type (might be due to invalid IL or missing references) //IL_8ade: Unknown result type (might be due to invalid IL or missing references) //IL_8ae4: Unknown result type (might be due to invalid IL or missing references) //IL_8ae9: Unknown result type (might be due to invalid IL or missing references) //IL_8aee: Unknown result type (might be due to invalid IL or missing references) //IL_8af9: Unknown result type (might be due to invalid IL or missing references) //IL_8aff: Unknown result type (might be due to invalid IL or missing references) //IL_8b04: Unknown result type (might be due to invalid IL or missing references) //IL_8b0a: Unknown result type (might be due to invalid IL or missing references) //IL_8b0f: Unknown result type (might be due to invalid IL or missing references) //IL_8b15: Unknown result type (might be due to invalid IL or missing references) //IL_8b1f: Unknown result type (might be due to invalid IL or missing references) //IL_8b24: Unknown result type (might be due to invalid IL or missing references) //IL_8b2a: Unknown result type (might be due to invalid IL or missing references) //IL_8b34: Unknown result type (might be due to invalid IL or missing references) //IL_8b3a: Unknown result type (might be due to invalid IL or missing references) //IL_8b3f: Unknown result type (might be due to invalid IL or missing references) //IL_8b45: Unknown result type (might be due to invalid IL or missing references) //IL_8b4a: Unknown result type (might be due to invalid IL or missing references) //IL_8b4f: Unknown result type (might be due to invalid IL or missing references) //IL_8b54: Unknown result type (might be due to invalid IL or missing references) //IL_8b64: Unknown result type (might be due to invalid IL or missing references) //IL_8b6a: Unknown result type (might be due to invalid IL or missing references) //IL_8b6f: Unknown result type (might be due to invalid IL or missing references) //IL_8b75: Unknown result type (might be due to invalid IL or missing references) //IL_8b7a: Unknown result type (might be due to invalid IL or missing references) //IL_8b80: Unknown result type (might be due to invalid IL or missing references) //IL_8b8a: Unknown result type (might be due to invalid IL or missing references) //IL_8b8f: Unknown result type (might be due to invalid IL or missing references) //IL_8b95: Unknown result type (might be due to invalid IL or missing references) //IL_8b9f: Unknown result type (might be due to invalid IL or missing references) //IL_8ba5: Unknown result type (might be due to invalid IL or missing references) //IL_8baa: Unknown result type (might be due to invalid IL or missing references) //IL_8bb0: Unknown result type (might be due to invalid IL or missing references) //IL_8bb5: Unknown result type (might be due to invalid IL or missing references) //IL_8bba: Unknown result type (might be due to invalid IL or missing references) //IL_8bc0: Unknown result type (might be due to invalid IL or missing references) //IL_8bca: Unknown result type (might be due to invalid IL or missing references) //IL_8bcf: Unknown result type (might be due to invalid IL or missing references) //IL_8bda: Unknown result type (might be due to invalid IL or missing references) //IL_8be0: Unknown result type (might be due to invalid IL or missing references) //IL_8be5: Unknown result type (might be due to invalid IL or missing references) //IL_8beb: Unknown result type (might be due to invalid IL or missing references) //IL_8bf0: Unknown result type (might be due to invalid IL or missing references) //IL_8bf6: Unknown result type (might be due to invalid IL or missing references) //IL_8c00: Unknown result type (might be due to invalid IL or missing references) //IL_8c05: Unknown result type (might be due to invalid IL or missing references) //IL_8c0b: Unknown result type (might be due to invalid IL or missing references) //IL_8c15: Unknown result type (might be due to invalid IL or missing references) //IL_8c1b: Unknown result type (might be due to invalid IL or missing references) //IL_8c20: Unknown result type (might be due to invalid IL or missing references) //IL_8c26: Unknown result type (might be due to invalid IL or missing references) //IL_8c2b: Unknown result type (might be due to invalid IL or missing references) //IL_8c30: Unknown result type (might be due to invalid IL or missing references) //IL_8c36: Unknown result type (might be due to invalid IL or missing references) //IL_8c40: Unknown result type (might be due to invalid IL or missing references) //IL_8c45: Unknown result type (might be due to invalid IL or missing references) //IL_8c4a: Unknown result type (might be due to invalid IL or missing references) //IL_8c5a: Unknown result type (might be due to invalid IL or missing references) //IL_8c60: Unknown result type (might be due to invalid IL or missing references) //IL_8c65: Unknown result type (might be due to invalid IL or missing references) //IL_8c6b: Unknown result type (might be due to invalid IL or missing references) //IL_8c70: Unknown result type (might be due to invalid IL or missing references) //IL_8c76: Unknown result type (might be due to invalid IL or missing references) //IL_8c80: Unknown result type (might be due to invalid IL or missing references) //IL_8c85: Unknown result type (might be due to invalid IL or missing references) //IL_8c8b: Unknown result type (might be due to invalid IL or missing references) //IL_8c95: Unknown result type (might be due to invalid IL or missing references) //IL_8c9b: Unknown result type (might be due to invalid IL or missing references) //IL_8ca0: Unknown result type (might be due to invalid IL or missing references) //IL_8ca6: Unknown result type (might be due to invalid IL or missing references) //IL_8cab: Unknown result type (might be due to invalid IL or missing references) //IL_8cb0: Unknown result type (might be due to invalid IL or missing references) //IL_8cb6: Unknown result type (might be due to invalid IL or missing references) //IL_8cc0: Unknown result type (might be due to invalid IL or missing references) //IL_8cc5: Unknown result type (might be due to invalid IL or missing references) //IL_8cd0: Unknown result type (might be due to invalid IL or missing references) //IL_8cd6: Unknown result type (might be due to invalid IL or missing references) //IL_8cdb: Unknown result type (might be due to invalid IL or missing references) //IL_8ce1: Unknown result type (might be due to invalid IL or missing references) //IL_8ce6: Unknown result type (might be due to invalid IL or missing references) //IL_8cec: Unknown result type (might be due to invalid IL or missing references) //IL_8cf6: Unknown result type (might be due to invalid IL or missing references) //IL_8cfb: Unknown result type (might be due to invalid IL or missing references) //IL_8d01: Unknown result type (might be due to invalid IL or missing references) //IL_8d0b: Unknown result type (might be due to invalid IL or missing references) //IL_8d11: Unknown result type (might be due to invalid IL or missing references) //IL_8d16: Unknown result type (might be due to invalid IL or missing references) //IL_8d1c: Unknown result type (might be due to invalid IL or missing references) //IL_8d21: Unknown result type (might be due to invalid IL or missing references) //IL_8d26: Unknown result type (might be due to invalid IL or missing references) //IL_8d2c: Unknown result type (might be due to invalid IL or missing references) //IL_8d36: Unknown result type (might be due to invalid IL or missing references) //IL_8d3b: Unknown result type (might be due to invalid IL or missing references) //IL_8d40: Unknown result type (might be due to invalid IL or missing references) //IL_8d50: Unknown result type (might be due to invalid IL or missing references) //IL_8d56: Unknown result type (might be due to invalid IL or missing references) //IL_8d5b: Unknown result type (might be due to invalid IL or missing references) //IL_8d61: Unknown result type (might be due to invalid IL or missing references) //IL_8d66: Unknown result type (might be due to invalid IL or missing references) //IL_8d6c: Unknown result type (might be due to invalid IL or missing references) //IL_8d76: Unknown result type (might be due to invalid IL or missing references) //IL_8d7b: Unknown result type (might be due to invalid IL or missing references) //IL_8d81: Unknown result type (might be due to invalid IL or missing references) //IL_8d8b: Unknown result type (might be due to invalid IL or missing references) //IL_8d91: Unknown result type (might be due to invalid IL or missing references) //IL_8d96: Unknown result type (might be due to invalid IL or missing references) //IL_8d9c: Unknown result type (might be due to invalid IL or missing references) //IL_8da1: Unknown result type (might be due to invalid IL or missing references) //IL_8da6: Unknown result type (might be due to invalid IL or missing references) //IL_8dac: Unknown result type (might be due to invalid IL or missing references) //IL_8db6: Unknown result type (might be due to invalid IL or missing references) //IL_8dbb: Unknown result type (might be due to invalid IL or missing references) //IL_8dc6: Unknown result type (might be due to invalid IL or missing references) //IL_8dcc: Unknown result type (might be due to invalid IL or missing references) //IL_8dd1: Unknown result type (might be due to invalid IL or missing references) //IL_8dd7: Unknown result type (might be due to invalid IL or missing references) //IL_8ddc: Unknown result type (might be due to invalid IL or missing references) //IL_8de2: Unknown result type (might be due to invalid IL or missing references) //IL_8dec: Unknown result type (might be due to invalid IL or missing references) //IL_8df1: Unknown result type (might be due to invalid IL or missing references) //IL_8df7: Unknown result type (might be due to invalid IL or missing references) //IL_8e01: Unknown result type (might be due to invalid IL or missing references) //IL_8e07: Unknown result type (might be due to invalid IL or missing references) //IL_8e0c: Unknown result type (might be due to invalid IL or missing references) //IL_8e12: Unknown result type (might be due to invalid IL or missing references) //IL_8e17: Unknown result type (might be due to invalid IL or missing references) //IL_8e1c: Unknown result type (might be due to invalid IL or missing references) //IL_8e22: Unknown result type (might be due to invalid IL or missing references) //IL_8e2c: Unknown result type (might be due to invalid IL or missing references) //IL_8e31: Unknown result type (might be due to invalid IL or missing references) //IL_8e36: Unknown result type (might be due to invalid IL or missing references) //IL_8e46: Unknown result type (might be due to invalid IL or missing references) //IL_8e4c: Unknown result type (might be due to invalid IL or missing references) //IL_8e51: Unknown result type (might be due to invalid IL or missing references) //IL_8e57: Unknown result type (might be due to invalid IL or missing references) //IL_8e5c: Unknown result type (might be due to invalid IL or missing references) //IL_8e62: Unknown result type (might be due to invalid IL or missing references) //IL_8e6c: Unknown result type (might be due to invalid IL or missing references) //IL_8e71: Unknown result type (might be due to invalid IL or missing references) //IL_8e77: Unknown result type (might be due to invalid IL or missing references) //IL_8e81: Unknown result type (might be due to invalid IL or missing references) //IL_8e87: Unknown result type (might be due to invalid IL or missing references) //IL_8e8c: Unknown result type (might be due to invalid IL or missing references) //IL_8e92: Unknown result type (might be due to invalid IL or missing references) //IL_8e97: Unknown result type (might be due to invalid IL or missing references) //IL_8e9c: Unknown result type (might be due to invalid IL or missing references) //IL_8ea2: Unknown result type (might be due to invalid IL or missing references) //IL_8eac: Unknown result type (might be due to invalid IL or missing references) //IL_8eb1: Unknown result type (might be due to invalid IL or missing references) //IL_8ebc: Unknown result type (might be due to invalid IL or missing references) //IL_8ec2: Unknown result type (might be due to invalid IL or missing references) //IL_8ec7: Unknown result type (might be due to invalid IL or missing references) //IL_8ecd: Unknown result type (might be due to invalid IL or missing references) //IL_8ed2: Unknown result type (might be due to invalid IL or missing references) //IL_8ed8: Unknown result type (might be due to invalid IL or missing references) //IL_8ee2: Unknown result type (might be due to invalid IL or missing references) //IL_8ee7: Unknown result type (might be due to invalid IL or missing references) //IL_8eed: Unknown result type (might be due to invalid IL or missing references) //IL_8ef7: Unknown result type (might be due to invalid IL or missing references) //IL_8efd: Unknown result type (might be due to invalid IL or missing references) //IL_8f02: Unknown result type (might be due to invalid IL or missing references) //IL_8f08: Unknown result type (might be due to invalid IL or missing references) //IL_8f0d: Unknown result type (might be due to invalid IL or missing references) //IL_8f12: Unknown result type (might be due to invalid IL or missing references) //IL_8f18: Unknown result type (might be due to invalid IL or missing references) //IL_8f22: Unknown result type (might be due to invalid IL or missing references) //IL_8f27: Unknown result type (might be due to invalid IL or missing references) //IL_8f2c: Unknown result type (might be due to invalid IL or missing references) //IL_8f3c: Unknown result type (might be due to invalid IL or missing references) //IL_8f42: Unknown result type (might be due to invalid IL or missing references) //IL_8f47: Unknown result type (might be due to invalid IL or missing references) //IL_8f4d: Unknown result type (might be due to invalid IL or missing references) //IL_8f52: Unknown result type (might be due to invalid IL or missing references) //IL_8f58: Unknown result type (might be due to invalid IL or missing references) //IL_8f62: Unknown result type (might be due to invalid IL or missing references) //IL_8f67: Unknown result type (might be due to invalid IL or missing references) //IL_8f6d: Unknown result type (might be due to invalid IL or missing references) //IL_8f77: Unknown result type (might be due to invalid IL or missing references) //IL_8f7d: Unknown result type (might be due to invalid IL or missing references) //IL_8f82: Unknown result type (might be due to invalid IL or missing references) //IL_8f88: Unknown result type (might be due to invalid IL or missing references) //IL_8f8d: Unknown result type (might be due to invalid IL or missing references) //IL_8f92: Unknown result type (might be due to invalid IL or missing references) //IL_8f98: Unknown result type (might be due to invalid IL or missing references) //IL_8fa2: Unknown result type (might be due to invalid IL or missing references) //IL_8fa7: Unknown result type (might be due to invalid IL or missing references) //IL_8fb2: Unknown result type (might be due to invalid IL or missing references) //IL_8fb8: Unknown result type (might be due to invalid IL or missing references) //IL_8fbd: Unknown result type (might be due to invalid IL or missing references) //IL_8fc3: Unknown result type (might be due to invalid IL or missing references) //IL_8fc8: Unknown result type (might be due to invalid IL or missing references) //IL_8fce: Unknown result type (might be due to invalid IL or missing references) //IL_8fd8: Unknown result type (might be due to invalid IL or missing references) //IL_8fdd: Unknown result type (might be due to invalid IL or missing references) //IL_8fe3: Unknown result type (might be due to invalid IL or missing references) //IL_8fed: Unknown result type (might be due to invalid IL or missing references) //IL_8ff3: Unknown result type (might be due to invalid IL or missing references) //IL_8ff8: Unknown result type (might be due to invalid IL or missing references) //IL_8ffe: Unknown result type (might be due to invalid IL or missing references) //IL_9003: Unknown result type (might be due to invalid IL or missing references) //IL_9008: Unknown result type (might be due to invalid IL or missing references) //IL_900e: Unknown result type (might be due to invalid IL or missing references) //IL_9018: Unknown result type (might be due to invalid IL or missing references) //IL_901d: Unknown result type (might be due to invalid IL or missing references) //IL_9022: Unknown result type (might be due to invalid IL or missing references) //IL_9032: Unknown result type (might be due to invalid IL or missing references) //IL_9038: Unknown result type (might be due to invalid IL or missing references) //IL_903d: Unknown result type (might be due to invalid IL or missing references) //IL_9043: Unknown result type (might be due to invalid IL or missing references) //IL_9048: Unknown result type (might be due to invalid IL or missing references) //IL_904e: Unknown result type (might be due to invalid IL or missing references) //IL_9058: Unknown result type (might be due to invalid IL or missing references) //IL_905d: Unknown result type (might be due to invalid IL or missing references) //IL_9063: Unknown result type (might be due to invalid IL or missing references) //IL_906d: Unknown result type (might be due to invalid IL or missing references) //IL_9073: Unknown result type (might be due to invalid IL or missing references) //IL_9078: Unknown result type (might be due to invalid IL or missing references) //IL_907e: Unknown result type (might be due to invalid IL or missing references) //IL_9083: Unknown result type (might be due to invalid IL or missing references) //IL_9088: Unknown result type (might be due to invalid IL or missing references) //IL_908e: Unknown result type (might be due to invalid IL or missing references) //IL_9098: Unknown result type (might be due to invalid IL or missing references) //IL_909d: Unknown result type (might be due to invalid IL or missing references) //IL_90a8: Unknown result type (might be due to invalid IL or missing references) //IL_90ae: Unknown result type (might be due to invalid IL or missing references) //IL_90b3: Unknown result type (might be due to invalid IL or missing references) //IL_90b9: Unknown result type (might be due to invalid IL or missing references) //IL_90be: Unknown result type (might be due to invalid IL or missing references) //IL_90c4: Unknown result type (might be due to invalid IL or missing references) //IL_90ce: Unknown result type (might be due to invalid IL or missing references) //IL_90d3: Unknown result type (might be due to invalid IL or missing references) //IL_90d9: Unknown result type (might be due to invalid IL or missing references) //IL_90e3: Unknown result type (might be due to invalid IL or missing references) //IL_90e9: Unknown result type (might be due to invalid IL or missing references) //IL_90ee: Unknown result type (might be due to invalid IL or missing references) //IL_90f4: Unknown result type (might be due to invalid IL or missing references) //IL_90f9: Unknown result type (might be due to invalid IL or missing references) //IL_90fe: Unknown result type (might be due to invalid IL or missing references) //IL_9104: Unknown result type (might be due to invalid IL or missing references) //IL_910e: Unknown result type (might be due to invalid IL or missing references) //IL_9113: Unknown result type (might be due to invalid IL or missing references) //IL_9118: Unknown result type (might be due to invalid IL or missing references) //IL_9128: Unknown result type (might be due to invalid IL or missing references) //IL_912e: Unknown result type (might be due to invalid IL or missing references) //IL_9133: Unknown result type (might be due to invalid IL or missing references) //IL_9139: Unknown result type (might be due to invalid IL or missing references) //IL_913e: Unknown result type (might be due to invalid IL or missing references) //IL_9144: Unknown result type (might be due to invalid IL or missing references) //IL_914e: Unknown result type (might be due to invalid IL or missing references) //IL_9153: Unknown result type (might be due to invalid IL or missing references) //IL_9159: Unknown result type (might be due to invalid IL or missing references) //IL_9163: Unknown result type (might be due to invalid IL or missing references) //IL_9169: Unknown result type (might be due to invalid IL or missing references) //IL_916e: Unknown result type (might be due to invalid IL or missing references) //IL_9174: Unknown result type (might be due to invalid IL or missing references) //IL_9179: Unknown result type (might be due to invalid IL or missing references) //IL_917e: Unknown result type (might be due to invalid IL or missing references) //IL_9184: Unknown result type (might be due to invalid IL or missing references) //IL_918e: Unknown result type (might be due to invalid IL or missing references) //IL_9193: Unknown result type (might be due to invalid IL or missing references) //IL_919e: Unknown result type (might be due to invalid IL or missing references) //IL_91a4: Unknown result type (might be due to invalid IL or missing references) //IL_91a9: Unknown result type (might be due to invalid IL or missing references) //IL_91af: Unknown result type (might be due to invalid IL or missing references) //IL_91b4: Unknown result type (might be due to invalid IL or missing references) //IL_91ba: Unknown result type (might be due to invalid IL or missing references) //IL_91c4: Unknown result type (might be due to invalid IL or missing references) //IL_91c9: Unknown result type (might be due to invalid IL or missing references) //IL_91cf: Unknown result type (might be due to invalid IL or missing references) //IL_91d9: Unknown result type (might be due to invalid IL or missing references) //IL_91df: Unknown result type (might be due to invalid IL or missing references) //IL_91e4: Unknown result type (might be due to invalid IL or missing references) //IL_91ea: Unknown result type (might be due to invalid IL or missing references) //IL_91ef: Unknown result type (might be due to invalid IL or missing references) //IL_91f4: Unknown result type (might be due to invalid IL or missing references) //IL_91fa: Unknown result type (might be due to invalid IL or missing references) //IL_9204: Unknown result type (might be due to invalid IL or missing references) //IL_9209: Unknown result type (might be due to invalid IL or missing references) //IL_920e: Unknown result type (might be due to invalid IL or missing references) //IL_921e: Unknown result type (might be due to invalid IL or missing references) //IL_9224: Unknown result type (might be due to invalid IL or missing references) //IL_9229: Unknown result type (might be due to invalid IL or missing references) //IL_922f: Unknown result type (might be due to invalid IL or missing references) //IL_9234: Unknown result type (might be due to invalid IL or missing references) //IL_923a: Unknown result type (might be due to invalid IL or missing references) //IL_9244: Unknown result type (might be due to invalid IL or missing references) //IL_924a: Unknown result type (might be due to invalid IL or missing references) //IL_924f: Unknown result type (might be due to invalid IL or missing references) //IL_9255: Unknown result type (might be due to invalid IL or missing references) //IL_925a: Unknown result type (might be due to invalid IL or missing references) //IL_925f: Unknown result type (might be due to invalid IL or missing references) //IL_926a: Unknown result type (might be due to invalid IL or missing references) //IL_9270: Unknown result type (might be due to invalid IL or missing references) //IL_9275: Unknown result type (might be due to invalid IL or missing references) //IL_927b: Unknown result type (might be due to invalid IL or missing references) //IL_9280: Unknown result type (might be due to invalid IL or missing references) //IL_9286: Unknown result type (might be due to invalid IL or missing references) //IL_9290: Unknown result type (might be due to invalid IL or missing references) //IL_9295: Unknown result type (might be due to invalid IL or missing references) //IL_929b: Unknown result type (might be due to invalid IL or missing references) //IL_92a5: Unknown result type (might be due to invalid IL or missing references) //IL_92ab: Unknown result type (might be due to invalid IL or missing references) //IL_92b0: Unknown result type (might be due to invalid IL or missing references) //IL_92b6: Unknown result type (might be due to invalid IL or missing references) //IL_92bb: Unknown result type (might be due to invalid IL or missing references) //IL_92c0: Unknown result type (might be due to invalid IL or missing references) //IL_92c5: Unknown result type (might be due to invalid IL or missing references) //IL_92d5: Unknown result type (might be due to invalid IL or missing references) //IL_92db: Unknown result type (might be due to invalid IL or missing references) //IL_92e0: Unknown result type (might be due to invalid IL or missing references) //IL_92e6: Unknown result type (might be due to invalid IL or missing references) //IL_92eb: Unknown result type (might be due to invalid IL or missing references) //IL_92f1: Unknown result type (might be due to invalid IL or missing references) //IL_92fb: Unknown result type (might be due to invalid IL or missing references) //IL_9301: Unknown result type (might be due to invalid IL or missing references) //IL_9306: Unknown result type (might be due to invalid IL or missing references) //IL_930c: Unknown result type (might be due to invalid IL or missing references) //IL_9311: Unknown result type (might be due to invalid IL or missing references) //IL_9316: Unknown result type (might be due to invalid IL or missing references) //IL_931c: Unknown result type (might be due to invalid IL or missing references) //IL_9326: Unknown result type (might be due to invalid IL or missing references) //IL_932b: Unknown result type (might be due to invalid IL or missing references) //IL_9336: Unknown result type (might be due to invalid IL or missing references) //IL_933c: Unknown result type (might be due to invalid IL or missing references) //IL_9341: Unknown result type (might be due to invalid IL or missing references) //IL_9347: Unknown result type (might be due to invalid IL or missing references) //IL_934c: Unknown result type (might be due to invalid IL or missing references) //IL_9352: Unknown result type (might be due to invalid IL or missing references) //IL_935c: Unknown result type (might be due to invalid IL or missing references) //IL_9361: Unknown result type (might be due to invalid IL or missing references) //IL_9367: Unknown result type (might be due to invalid IL or missing references) //IL_9371: Unknown result type (might be due to invalid IL or missing references) //IL_9377: Unknown result type (might be due to invalid IL or missing references) //IL_937c: Unknown result type (might be due to invalid IL or missing references) //IL_9382: Unknown result type (might be due to invalid IL or missing references) //IL_9387: Unknown result type (might be due to invalid IL or missing references) //IL_938c: Unknown result type (might be due to invalid IL or missing references) //IL_9392: Unknown result type (might be due to invalid IL or missing references) //IL_939c: Unknown result type (might be due to invalid IL or missing references) //IL_93a1: Unknown result type (might be due to invalid IL or missing references) //IL_93a6: Unknown result type (might be due to invalid IL or missing references) //IL_93b6: Unknown result type (might be due to invalid IL or missing references) //IL_93bc: Unknown result type (might be due to invalid IL or missing references) //IL_93c1: Unknown result type (might be due to invalid IL or missing references) //IL_93c7: Unknown result type (might be due to invalid IL or missing references) //IL_93cc: Unknown result type (might be due to invalid IL or missing references) //IL_93d2: Unknown result type (might be due to invalid IL or missing references) //IL_93dc: Unknown result type (might be due to invalid IL or missing references) //IL_93e2: Unknown result type (might be due to invalid IL or missing references) //IL_93e7: Unknown result type (might be due to invalid IL or missing references) //IL_93ed: Unknown result type (might be due to invalid IL or missing references) //IL_93f2: Unknown result type (might be due to invalid IL or missing references) //IL_93f7: Unknown result type (might be due to invalid IL or missing references) //IL_93fd: Unknown result type (might be due to invalid IL or missing references) //IL_9407: Unknown result type (might be due to invalid IL or missing references) //IL_940c: Unknown result type (might be due to invalid IL or missing references) //IL_9417: Unknown result type (might be due to invalid IL or missing references) //IL_941d: Unknown result type (might be due to invalid IL or missing references) //IL_9422: Unknown result type (might be due to invalid IL or missing references) //IL_9428: Unknown result type (might be due to invalid IL or missing references) //IL_942d: Unknown result type (might be due to invalid IL or missing references) //IL_9433: Unknown result type (might be due to invalid IL or missing references) //IL_943d: Unknown result type (might be due to invalid IL or missing references) //IL_9442: Unknown result type (might be due to invalid IL or missing references) //IL_9448: Unknown result type (might be due to invalid IL or missing references) //IL_9452: Unknown result type (might be due to invalid IL or missing references) //IL_9458: Unknown result type (might be due to invalid IL or missing references) //IL_945d: Unknown result type (might be due to invalid IL or missing references) //IL_9463: Unknown result type (might be due to invalid IL or missing references) //IL_9468: Unknown result type (might be due to invalid IL or missing references) //IL_946d: Unknown result type (might be due to invalid IL or missing references) //IL_9473: Unknown result type (might be due to invalid IL or missing references) //IL_947d: Unknown result type (might be due to invalid IL or missing references) //IL_9482: Unknown result type (might be due to invalid IL or missing references) //IL_9487: Unknown result type (might be due to invalid IL or missing references) //IL_9497: Unknown result type (might be due to invalid IL or missing references) //IL_949d: Unknown result type (might be due to invalid IL or missing references) //IL_94a2: Unknown result type (might be due to invalid IL or missing references) //IL_94a8: Unknown result type (might be due to invalid IL or missing references) //IL_94ad: Unknown result type (might be due to invalid IL or missing references) //IL_94b3: Unknown result type (might be due to invalid IL or missing references) //IL_94bd: Unknown result type (might be due to invalid IL or missing references) //IL_94c3: Unknown result type (might be due to invalid IL or missing references) //IL_94c8: Unknown result type (might be due to invalid IL or missing references) //IL_94ce: Unknown result type (might be due to invalid IL or missing references) //IL_94d3: Unknown result type (might be due to invalid IL or missing references) //IL_94d8: Unknown result type (might be due to invalid IL or missing references) //IL_94de: Unknown result type (might be due to invalid IL or missing references) //IL_94e8: Unknown result type (might be due to invalid IL or missing references) //IL_94ed: Unknown result type (might be due to invalid IL or missing references) //IL_94f8: Unknown result type (might be due to invalid IL or missing references) //IL_94fe: Unknown result type (might be due to invalid IL or missing references) //IL_9503: Unknown result type (might be due to invalid IL or missing references) //IL_9509: Unknown result type (might be due to invalid IL or missing references) //IL_950e: Unknown result type (might be due to invalid IL or missing references) //IL_9514: Unknown result type (might be due to invalid IL or missing references) //IL_951e: Unknown result type (might be due to invalid IL or missing references) //IL_9523: Unknown result type (might be due to invalid IL or missing references) //IL_9529: Unknown result type (might be due to invalid IL or missing references) //IL_9533: Unknown result type (might be due to invalid IL or missing references) //IL_9539: Unknown result type (might be due to invalid IL or missing references) //IL_953e: Unknown result type (might be due to invalid IL or missing references) //IL_9544: Unknown result type (might be due to invalid IL or missing references) //IL_9549: Unknown result type (might be due to invalid IL or missing references) //IL_954e: Unknown result type (might be due to invalid IL or missing references) //IL_9554: Unknown result type (might be due to invalid IL or missing references) //IL_955e: Unknown result type (might be due to invalid IL or missing references) //IL_9563: Unknown result type (might be due to invalid IL or missing references) //IL_9568: Unknown result type (might be due to invalid IL or missing references) //IL_9578: Unknown result type (might be due to invalid IL or missing references) //IL_957e: Unknown result type (might be due to invalid IL or missing references) //IL_9583: Unknown result type (might be due to invalid IL or missing references) //IL_9589: Unknown result type (might be due to invalid IL or missing references) //IL_958e: Unknown result type (might be due to invalid IL or missing references) //IL_9594: Unknown result type (might be due to invalid IL or missing references) //IL_959e: Unknown result type (might be due to invalid IL or missing references) //IL_95a4: Unknown result type (might be due to invalid IL or missing references) //IL_95a9: Unknown result type (might be due to invalid IL or missing references) //IL_95af: Unknown result type (might be due to invalid IL or missing references) //IL_95b4: Unknown result type (might be due to invalid IL or missing references) //IL_95b9: Unknown result type (might be due to invalid IL or missing references) //IL_95bf: Unknown result type (might be due to invalid IL or missing references) //IL_95c9: Unknown result type (might be due to invalid IL or missing references) //IL_95ce: Unknown result type (might be due to invalid IL or missing references) //IL_95d9: Unknown result type (might be due to invalid IL or missing references) //IL_95df: Unknown result type (might be due to invalid IL or missing references) //IL_95e4: Unknown result type (might be due to invalid IL or missing references) //IL_95ea: Unknown result type (might be due to invalid IL or missing references) //IL_95ef: Unknown result type (might be due to invalid IL or missing references) //IL_95f5: Unknown result type (might be due to invalid IL or missing references) //IL_95ff: Unknown result type (might be due to invalid IL or missing references) //IL_9604: Unknown result type (might be due to invalid IL or missing references) //IL_960a: Unknown result type (might be due to invalid IL or missing references) //IL_9614: Unknown result type (might be due to invalid IL or missing references) //IL_961a: Unknown result type (might be due to invalid IL or missing references) //IL_961f: Unknown result type (might be due to invalid IL or missing references) //IL_9625: Unknown result type (might be due to invalid IL or missing references) //IL_962a: Unknown result type (might be due to invalid IL or missing references) //IL_962f: Unknown result type (might be due to invalid IL or missing references) //IL_9635: Unknown result type (might be due to invalid IL or missing references) //IL_963f: Unknown result type (might be due to invalid IL or missing references) //IL_9644: Unknown result type (might be due to invalid IL or missing references) //IL_9649: Unknown result type (might be due to invalid IL or missing references) //IL_9659: Unknown result type (might be due to invalid IL or missing references) //IL_965f: Unknown result type (might be due to invalid IL or missing references) //IL_9664: Unknown result type (might be due to invalid IL or missing references) //IL_966a: Unknown result type (might be due to invalid IL or missing references) //IL_966f: Unknown result type (might be due to invalid IL or missing references) //IL_9675: Unknown result type (might be due to invalid IL or missing references) //IL_967f: Unknown result type (might be due to invalid IL or missing references) //IL_9685: Unknown result type (might be due to invalid IL or missing references) //IL_968a: Unknown result type (might be due to invalid IL or missing references) //IL_9690: Unknown result type (might be due to invalid IL or missing references) //IL_9695: Unknown result type (might be due to invalid IL or missing references) //IL_969a: Unknown result type (might be due to invalid IL or missing references) //IL_96a0: Unknown result type (might be due to invalid IL or missing references) //IL_96aa: Unknown result type (might be due to invalid IL or missing references) //IL_96af: Unknown result type (might be due to invalid IL or missing references) //IL_96ba: Unknown result type (might be due to invalid IL or missing references) //IL_96c0: Unknown result type (might be due to invalid IL or missing references) //IL_96c5: Unknown result type (might be due to invalid IL or missing references) //IL_96cb: Unknown result type (might be due to invalid IL or missing references) //IL_96d0: Unknown result type (might be due to invalid IL or missing references) //IL_96d6: Unknown result type (might be due to invalid IL or missing references) //IL_96e0: Unknown result type (might be due to invalid IL or missing references) //IL_96e5: Unknown result type (might be due to invalid IL or missing references) //IL_96eb: Unknown result type (might be due to invalid IL or missing references) //IL_96f5: Unknown result type (might be due to invalid IL or missing references) //IL_96fb: Unknown result type (might be due to invalid IL or missing references) //IL_9700: Unknown result type (might be due to invalid IL or missing references) //IL_9706: Unknown result type (might be due to invalid IL or missing references) //IL_970b: Unknown result type (might be due to invalid IL or missing references) //IL_9710: Unknown result type (might be due to invalid IL or missing references) //IL_9716: Unknown result type (might be due to invalid IL or missing references) //IL_9720: Unknown result type (might be due to invalid IL or missing references) //IL_9725: Unknown result type (might be due to invalid IL or missing references) //IL_972a: Unknown result type (might be due to invalid IL or missing references) //IL_973a: Unknown result type (might be due to invalid IL or missing references) //IL_9740: Unknown result type (might be due to invalid IL or missing references) //IL_9745: Unknown result type (might be due to invalid IL or missing references) //IL_974b: Unknown result type (might be due to invalid IL or missing references) //IL_9750: Unknown result type (might be due to invalid IL or missing references) //IL_9756: Unknown result type (might be due to invalid IL or missing references) //IL_9760: Unknown result type (might be due to invalid IL or missing references) //IL_9766: Unknown result type (might be due to invalid IL or missing references) //IL_976b: Unknown result type (might be due to invalid IL or missing references) //IL_9771: Unknown result type (might be due to invalid IL or missing references) //IL_9776: Unknown result type (might be due to invalid IL or missing references) //IL_977b: Unknown result type (might be due to invalid IL or missing references) //IL_9781: Unknown result type (might be due to invalid IL or missing references) //IL_978b: Unknown result type (might be due to invalid IL or missing references) //IL_9790: Unknown result type (might be due to invalid IL or missing references) //IL_979b: Unknown result type (might be due to invalid IL or missing references) //IL_97a1: Unknown result type (might be due to invalid IL or missing references) //IL_97a6: Unknown result type (might be due to invalid IL or missing references) //IL_97ac: Unknown result type (might be due to invalid IL or missing references) //IL_97b1: Unknown result type (might be due to invalid IL or missing references) //IL_97b7: Unknown result type (might be due to invalid IL or missing references) //IL_97c1: Unknown result type (might be due to invalid IL or missing references) //IL_97c6: Unknown result type (might be due to invalid IL or missing references) //IL_97cc: Unknown result type (might be due to invalid IL or missing references) //IL_97d6: Unknown result type (might be due to invalid IL or missing references) //IL_97dc: Unknown result type (might be due to invalid IL or missing references) //IL_97e1: Unknown result type (might be due to invalid IL or missing references) //IL_97e7: Unknown result type (might be due to invalid IL or missing references) //IL_97ec: Unknown result type (might be due to invalid IL or missing references) //IL_97f1: Unknown result type (might be due to invalid IL or missing references) //IL_97f7: Unknown result type (might be due to invalid IL or missing references) //IL_9801: Unknown result type (might be due to invalid IL or missing references) //IL_9806: Unknown result type (might be due to invalid IL or missing references) //IL_980b: Unknown result type (might be due to invalid IL or missing references) //IL_981b: Unknown result type (might be due to invalid IL or missing references) //IL_9821: Unknown result type (might be due to invalid IL or missing references) //IL_9826: Unknown result type (might be due to invalid IL or missing references) //IL_982c: Unknown result type (might be due to invalid IL or missing references) //IL_9831: Unknown result type (might be due to invalid IL or missing references) //IL_9837: Unknown result type (might be due to invalid IL or missing references) //IL_9841: Unknown result type (might be due to invalid IL or missing references) //IL_9847: Unknown result type (might be due to invalid IL or missing references) //IL_984c: Unknown result type (might be due to invalid IL or missing references) //IL_9852: Unknown result type (might be due to invalid IL or missing references) //IL_9857: Unknown result type (might be due to invalid IL or missing references) //IL_985c: Unknown result type (might be due to invalid IL or missing references) //IL_9862: Unknown result type (might be due to invalid IL or missing references) //IL_986c: Unknown result type (might be due to invalid IL or missing references) //IL_9871: Unknown result type (might be due to invalid IL or missing references) //IL_987c: Unknown result type (might be due to invalid IL or missing references) //IL_9882: Unknown result type (might be due to invalid IL or missing references) //IL_9887: Unknown result type (might be due to invalid IL or missing references) //IL_988d: Unknown result type (might be due to invalid IL or missing references) //IL_9892: Unknown result type (might be due to invalid IL or missing references) //IL_9898: Unknown result type (might be due to invalid IL or missing references) //IL_98a2: Unknown result type (might be due to invalid IL or missing references) //IL_98a7: Unknown result type (might be due to invalid IL or missing references) //IL_98ad: Unknown result type (might be due to invalid IL or missing references) //IL_98b7: Unknown result type (might be due to invalid IL or missing references) //IL_98bd: Unknown result type (might be due to invalid IL or missing references) //IL_98c2: Unknown result type (might be due to invalid IL or missing references) //IL_98c8: Unknown result type (might be due to invalid IL or missing references) //IL_98cd: Unknown result type (might be due to invalid IL or missing references) //IL_98d2: Unknown result type (might be due to invalid IL or missing references) //IL_98d8: Unknown result type (might be due to invalid IL or missing references) //IL_98e2: Unknown result type (might be due to invalid IL or missing references) //IL_98e7: Unknown result type (might be due to invalid IL or missing references) //IL_98ec: Unknown result type (might be due to invalid IL or missing references) //IL_98fc: Unknown result type (might be due to invalid IL or missing references) //IL_9902: Unknown result type (might be due to invalid IL or missing references) //IL_9907: Unknown result type (might be due to invalid IL or missing references) //IL_990d: Unknown result type (might be due to invalid IL or missing references) //IL_9912: Unknown result type (might be due to invalid IL or missing references) //IL_9918: Unknown result type (might be due to invalid IL or missing references) //IL_9922: Unknown result type (might be due to invalid IL or missing references) //IL_9927: Unknown result type (might be due to invalid IL or missing references) //IL_992d: Unknown result type (might be due to invalid IL or missing references) //IL_9937: Unknown result type (might be due to invalid IL or missing references) //IL_993d: Unknown result type (might be due to invalid IL or missing references) //IL_9942: Unknown result type (might be due to invalid IL or missing references) //IL_9948: Unknown result type (might be due to invalid IL or missing references) //IL_994d: Unknown result type (might be due to invalid IL or missing references) //IL_9952: Unknown result type (might be due to invalid IL or missing references) //IL_995d: Unknown result type (might be due to invalid IL or missing references) //IL_9963: Unknown result type (might be due to invalid IL or missing references) //IL_9968: Unknown result type (might be due to invalid IL or missing references) //IL_996e: Unknown result type (might be due to invalid IL or missing references) //IL_9973: Unknown result type (might be due to invalid IL or missing references) //IL_9979: Unknown result type (might be due to invalid IL or missing references) //IL_9983: Unknown result type (might be due to invalid IL or missing references) //IL_9988: Unknown result type (might be due to invalid IL or missing references) //IL_998e: Unknown result type (might be due to invalid IL or missing references) //IL_9998: Unknown result type (might be due to invalid IL or missing references) //IL_999e: Unknown result type (might be due to invalid IL or missing references) //IL_99a3: Unknown result type (might be due to invalid IL or missing references) //IL_99a9: Unknown result type (might be due to invalid IL or missing references) //IL_99ae: Unknown result type (might be due to invalid IL or missing references) //IL_99b3: Unknown result type (might be due to invalid IL or missing references) //IL_99b8: Unknown result type (might be due to invalid IL or missing references) //IL_99c8: Unknown result type (might be due to invalid IL or missing references) //IL_99ce: Unknown result type (might be due to invalid IL or missing references) //IL_99d3: Unknown result type (might be due to invalid IL or missing references) //IL_99d9: Unknown result type (might be due to invalid IL or missing references) //IL_99de: Unknown result type (might be due to invalid IL or missing references) //IL_99e4: Unknown result type (might be due to invalid IL or missing references) //IL_99ee: Unknown result type (might be due to invalid IL or missing references) //IL_99f3: Unknown result type (might be due to invalid IL or missing references) //IL_99f9: Unknown result type (might be due to invalid IL or missing references) //IL_9a03: Unknown result type (might be due to invalid IL or missing references) //IL_9a09: Unknown result type (might be due to invalid IL or missing references) //IL_9a0e: Unknown result type (might be due to invalid IL or missing references) //IL_9a14: Unknown result type (might be due to invalid IL or missing references) //IL_9a19: Unknown result type (might be due to invalid IL or missing references) //IL_9a1e: Unknown result type (might be due to invalid IL or missing references) //IL_9a24: Unknown result type (might be due to invalid IL or missing references) //IL_9a2e: Unknown result type (might be due to invalid IL or missing references) //IL_9a33: Unknown result type (might be due to invalid IL or missing references) //IL_9a3e: Unknown result type (might be due to invalid IL or missing references) //IL_9a44: Unknown result type (might be due to invalid IL or missing references) //IL_9a49: Unknown result type (might be due to invalid IL or missing references) //IL_9a4f: Unknown result type (might be due to invalid IL or missing references) //IL_9a54: Unknown result type (might be due to invalid IL or missing references) //IL_9a5a: Unknown result type (might be due to invalid IL or missing references) //IL_9a64: Unknown result type (might be due to invalid IL or missing references) //IL_9a69: Unknown result type (might be due to invalid IL or missing references) //IL_9a6f: Unknown result type (might be due to invalid IL or missing references) //IL_9a79: Unknown result type (might be due to invalid IL or missing references) //IL_9a7f: Unknown result type (might be due to invalid IL or missing references) //IL_9a84: Unknown result type (might be due to invalid IL or missing references) //IL_9a8a: Unknown result type (might be due to invalid IL or missing references) //IL_9a8f: Unknown result type (might be due to invalid IL or missing references) //IL_9a94: Unknown result type (might be due to invalid IL or missing references) //IL_9a9a: Unknown result type (might be due to invalid IL or missing references) //IL_9aa4: Unknown result type (might be due to invalid IL or missing references) //IL_9aa9: Unknown result type (might be due to invalid IL or missing references) //IL_9aae: Unknown result type (might be due to invalid IL or missing references) //IL_9abe: Unknown result type (might be due to invalid IL or missing references) //IL_9ac4: Unknown result type (might be due to invalid IL or missing references) //IL_9ac9: Unknown result type (might be due to invalid IL or missing references) //IL_9acf: Unknown result type (might be due to invalid IL or missing references) //IL_9ad4: Unknown result type (might be due to invalid IL or missing references) //IL_9ada: Unknown result type (might be due to invalid IL or missing references) //IL_9ae4: Unknown result type (might be due to invalid IL or missing references) //IL_9ae9: Unknown result type (might be due to invalid IL or missing references) //IL_9aef: Unknown result type (might be due to invalid IL or missing references) //IL_9af9: Unknown result type (might be due to invalid IL or missing references) //IL_9aff: Unknown result type (might be due to invalid IL or missing references) //IL_9b04: Unknown result type (might be due to invalid IL or missing references) //IL_9b0a: Unknown result type (might be due to invalid IL or missing references) //IL_9b0f: Unknown result type (might be due to invalid IL or missing references) //IL_9b14: Unknown result type (might be due to invalid IL or missing references) //IL_9b1a: Unknown result type (might be due to invalid IL or missing references) //IL_9b24: Unknown result type (might be due to invalid IL or missing references) //IL_9b29: Unknown result type (might be due to invalid IL or missing references) //IL_9b34: Unknown result type (might be due to invalid IL or missing references) //IL_9b3a: Unknown result type (might be due to invalid IL or missing references) //IL_9b3f: Unknown result type (might be due to invalid IL or missing references) //IL_9b45: Unknown result type (might be due to invalid IL or missing references) //IL_9b4a: Unknown result type (might be due to invalid IL or missing references) //IL_9b50: Unknown result type (might be due to invalid IL or missing references) //IL_9b5a: Unknown result type (might be due to invalid IL or missing references) //IL_9b5f: Unknown result type (might be due to invalid IL or missing references) //IL_9b65: Unknown result type (might be due to invalid IL or missing references) //IL_9b6f: Unknown result type (might be due to invalid IL or missing references) //IL_9b75: Unknown result type (might be due to invalid IL or missing references) //IL_9b7a: Unknown result type (might be due to invalid IL or missing references) //IL_9b80: Unknown result type (might be due to invalid IL or missing references) //IL_9b85: Unknown result type (might be due to invalid IL or missing references) //IL_9b8a: Unknown result type (might be due to invalid IL or missing references) //IL_9b90: Unknown result type (might be due to invalid IL or missing references) //IL_9b9a: Unknown result type (might be due to invalid IL or missing references) //IL_9b9f: Unknown result type (might be due to invalid IL or missing references) //IL_9ba4: Unknown result type (might be due to invalid IL or missing references) //IL_9bb4: Unknown result type (might be due to invalid IL or missing references) //IL_9bba: Unknown result type (might be due to invalid IL or missing references) //IL_9bbf: Unknown result type (might be due to invalid IL or missing references) //IL_9bc5: Unknown result type (might be due to invalid IL or missing references) //IL_9bca: Unknown result type (might be due to invalid IL or missing references) //IL_9bd0: Unknown result type (might be due to invalid IL or missing references) //IL_9bda: Unknown result type (might be due to invalid IL or missing references) //IL_9bdf: Unknown result type (might be due to invalid IL or missing references) //IL_9be5: Unknown result type (might be due to invalid IL or missing references) //IL_9bef: Unknown result type (might be due to invalid IL or missing references) //IL_9bf5: Unknown result type (might be due to invalid IL or missing references) //IL_9bfa: Unknown result type (might be due to invalid IL or missing references) //IL_9c00: Unknown result type (might be due to invalid IL or missing references) //IL_9c05: Unknown result type (might be due to invalid IL or missing references) //IL_9c0a: Unknown result type (might be due to invalid IL or missing references) //IL_9c10: Unknown result type (might be due to invalid IL or missing references) //IL_9c1a: Unknown result type (might be due to invalid IL or missing references) //IL_9c1f: Unknown result type (might be due to invalid IL or missing references) //IL_9c2a: Unknown result type (might be due to invalid IL or missing references) //IL_9c30: Unknown result type (might be due to invalid IL or missing references) //IL_9c35: Unknown result type (might be due to invalid IL or missing references) //IL_9c3b: Unknown result type (might be due to invalid IL or missing references) //IL_9c40: Unknown result type (might be due to invalid IL or missing references) //IL_9c46: Unknown result type (might be due to invalid IL or missing references) //IL_9c50: Unknown result type (might be due to invalid IL or missing references) //IL_9c55: Unknown result type (might be due to invalid IL or missing references) //IL_9c5b: Unknown result type (might be due to invalid IL or missing references) //IL_9c65: Unknown result type (might be due to invalid IL or missing references) //IL_9c6b: Unknown result type (might be due to invalid IL or missing references) //IL_9c70: Unknown result type (might be due to invalid IL or missing references) //IL_9c76: Unknown result type (might be due to invalid IL or missing references) //IL_9c7b: Unknown result type (might be due to invalid IL or missing references) //IL_9c80: Unknown result type (might be due to invalid IL or missing references) //IL_9c86: Unknown result type (might be due to invalid IL or missing references) //IL_9c90: Unknown result type (might be due to invalid IL or missing references) //IL_9c95: Unknown result type (might be due to invalid IL or missing references) //IL_9c9a: Unknown result type (might be due to invalid IL or missing references) //IL_9caa: Unknown result type (might be due to invalid IL or missing references) //IL_9cb0: Unknown result type (might be due to invalid IL or missing references) //IL_9cb5: Unknown result type (might be due to invalid IL or missing references) //IL_9cbb: Unknown result type (might be due to invalid IL or missing references) //IL_9cc0: Unknown result type (might be due to invalid IL or missing references) //IL_9cc6: Unknown result type (might be due to invalid IL or missing references) //IL_9cd0: Unknown result type (might be due to invalid IL or missing references) //IL_9cd5: Unknown result type (might be due to invalid IL or missing references) //IL_9cdb: Unknown result type (might be due to invalid IL or missing references) //IL_9ce5: Unknown result type (might be due to invalid IL or missing references) //IL_9ceb: Unknown result type (might be due to invalid IL or missing references) //IL_9cf0: Unknown result type (might be due to invalid IL or missing references) //IL_9cf6: Unknown result type (might be due to invalid IL or missing references) //IL_9cfb: Unknown result type (might be due to invalid IL or missing references) //IL_9d00: Unknown result type (might be due to invalid IL or missing references) //IL_9d06: Unknown result type (might be due to invalid IL or missing references) //IL_9d10: Unknown result type (might be due to invalid IL or missing references) //IL_9d15: Unknown result type (might be due to invalid IL or missing references) //IL_9d20: Unknown result type (might be due to invalid IL or missing references) //IL_9d26: Unknown result type (might be due to invalid IL or missing references) //IL_9d2b: Unknown result type (might be due to invalid IL or missing references) //IL_9d31: Unknown result type (might be due to invalid IL or missing references) //IL_9d36: Unknown result type (might be due to invalid IL or missing references) //IL_9d3c: Unknown result type (might be due to invalid IL or missing references) //IL_9d46: Unknown result type (might be due to invalid IL or missing references) //IL_9d4b: Unknown result type (might be due to invalid IL or missing references) //IL_9d51: Unknown result type (might be due to invalid IL or missing references) //IL_9d5b: Unknown result type (might be due to invalid IL or missing references) //IL_9d61: Unknown result type (might be due to invalid IL or missing references) //IL_9d66: Unknown result type (might be due to invalid IL or missing references) //IL_9d6c: Unknown result type (might be due to invalid IL or missing references) //IL_9d71: Unknown result type (might be due to invalid IL or missing references) //IL_9d76: Unknown result type (might be due to invalid IL or missing references) //IL_9d7c: Unknown result type (might be due to invalid IL or missing references) //IL_9d86: Unknown result type (might be due to invalid IL or missing references) //IL_9d8b: Unknown result type (might be due to invalid IL or missing references) //IL_9d90: Unknown result type (might be due to invalid IL or missing references) //IL_9da0: Unknown result type (might be due to invalid IL or missing references) //IL_9da6: Unknown result type (might be due to invalid IL or missing references) //IL_9dab: Unknown result type (might be due to invalid IL or missing references) //IL_9db1: Unknown result type (might be due to invalid IL or missing references) //IL_9db6: Unknown result type (might be due to invalid IL or missing references) //IL_9dbc: Unknown result type (might be due to invalid IL or missing references) //IL_9dc6: Unknown result type (might be due to invalid IL or missing references) //IL_9dcb: Unknown result type (might be due to invalid IL or missing references) //IL_9dd1: Unknown result type (might be due to invalid IL or missing references) //IL_9ddb: Unknown result type (might be due to invalid IL or missing references) //IL_9de1: Unknown result type (might be due to invalid IL or missing references) //IL_9de6: Unknown result type (might be due to invalid IL or missing references) //IL_9dec: Unknown result type (might be due to invalid IL or missing references) //IL_9df1: Unknown result type (might be due to invalid IL or missing references) //IL_9df6: Unknown result type (might be due to invalid IL or missing references) //IL_9dfc: Unknown result type (might be due to invalid IL or missing references) //IL_9e06: Unknown result type (might be due to invalid IL or missing references) //IL_9e0b: Unknown result type (might be due to invalid IL or missing references) //IL_9e16: Unknown result type (might be due to invalid IL or missing references) //IL_9e1c: Unknown result type (might be due to invalid IL or missing references) //IL_9e21: Unknown result type (might be due to invalid IL or missing references) //IL_9e27: Unknown result type (might be due to invalid IL or missing references) //IL_9e2c: Unknown result type (might be due to invalid IL or missing references) //IL_9e32: Unknown result type (might be due to invalid IL or missing references) //IL_9e3c: Unknown result type (might be due to invalid IL or missing references) //IL_9e41: Unknown result type (might be due to invalid IL or missing references) //IL_9e47: Unknown result type (might be due to invalid IL or missing references) //IL_9e51: Unknown result type (might be due to invalid IL or missing references) //IL_9e57: Unknown result type (might be due to invalid IL or missing references) //IL_9e5c: Unknown result type (might be due to invalid IL or missing references) //IL_9e62: Unknown result type (might be due to invalid IL or missing references) //IL_9e67: Unknown result type (might be due to invalid IL or missing references) //IL_9e6c: Unknown result type (might be due to invalid IL or missing references) //IL_9e72: Unknown result type (might be due to invalid IL or missing references) //IL_9e7c: Unknown result type (might be due to invalid IL or missing references) //IL_9e81: Unknown result type (might be due to invalid IL or missing references) //IL_9e86: Unknown result type (might be due to invalid IL or missing references) //IL_9e96: Unknown result type (might be due to invalid IL or missing references) //IL_9e9c: Unknown result type (might be due to invalid IL or missing references) //IL_9ea1: Unknown result type (might be due to invalid IL or missing references) //IL_9ea7: Unknown result type (might be due to invalid IL or missing references) //IL_9eac: Unknown result type (might be due to invalid IL or missing references) //IL_9eb2: Unknown result type (might be due to invalid IL or missing references) //IL_9ebc: Unknown result type (might be due to invalid IL or missing references) //IL_9ec1: Unknown result type (might be due to invalid IL or missing references) //IL_9ec7: Unknown result type (might be due to invalid IL or missing references) //IL_9ed1: Unknown result type (might be due to invalid IL or missing references) //IL_9ed7: Unknown result type (might be due to invalid IL or missing references) //IL_9edc: Unknown result type (might be due to invalid IL or missing references) //IL_9ee2: Unknown result type (might be due to invalid IL or missing references) //IL_9ee7: Unknown result type (might be due to invalid IL or missing references) //IL_9eec: Unknown result type (might be due to invalid IL or missing references) //IL_9ef2: Unknown result type (might be due to invalid IL or missing references) //IL_9efc: Unknown result type (might be due to invalid IL or missing references) //IL_9f01: Unknown result type (might be due to invalid IL or missing references) //IL_9f0c: Unknown result type (might be due to invalid IL or missing references) //IL_9f12: Unknown result type (might be due to invalid IL or missing references) //IL_9f17: Unknown result type (might be due to invalid IL or missing references) //IL_9f1d: Unknown result type (might be due to invalid IL or missing references) //IL_9f22: Unknown result type (might be due to invalid IL or missing references) //IL_9f28: Unknown result type (might be due to invalid IL or missing references) //IL_9f32: Unknown result type (might be due to invalid IL or missing references) //IL_9f37: Unknown result type (might be due to invalid IL or missing references) //IL_9f3d: Unknown result type (might be due to invalid IL or missing references) //IL_9f47: Unknown result type (might be due to invalid IL or missing references) //IL_9f4d: Unknown result type (might be due to invalid IL or missing references) //IL_9f52: Unknown result type (might be due to invalid IL or missing references) //IL_9f58: Unknown result type (might be due to invalid IL or missing references) //IL_9f5d: Unknown result type (might be due to invalid IL or missing references) //IL_9f62: Unknown result type (might be due to invalid IL or missing references) //IL_9f68: Unknown result type (might be due to invalid IL or missing references) //IL_9f72: Unknown result type (might be due to invalid IL or missing references) //IL_9f77: Unknown result type (might be due to invalid IL or missing references) //IL_9f7c: Unknown result type (might be due to invalid IL or missing references) //IL_9f8c: Unknown result type (might be due to invalid IL or missing references) //IL_9f92: Unknown result type (might be due to invalid IL or missing references) //IL_9f97: Unknown result type (might be due to invalid IL or missing references) //IL_9f9d: Unknown result type (might be due to invalid IL or missing references) //IL_9fa2: Unknown result type (might be due to invalid IL or missing references) //IL_9fa8: Unknown result type (might be due to invalid IL or missing references) //IL_9fb2: Unknown result type (might be due to invalid IL or missing references) //IL_9fb7: Unknown result type (might be due to invalid IL or missing references) //IL_9fbd: Unknown result type (might be due to invalid IL or missing references) //IL_9fc7: Unknown result type (might be due to invalid IL or missing references) //IL_9fcd: Unknown result type (might be due to invalid IL or missing references) //IL_9fd2: Unknown result type (might be due to invalid IL or missing references) //IL_9fd8: Unknown result type (might be due to invalid IL or missing references) //IL_9fdd: Unknown result type (might be due to invalid IL or missing references) //IL_9fe2: Unknown result type (might be due to invalid IL or missing references) //IL_9fe8: Unknown result type (might be due to invalid IL or missing references) //IL_9ff2: Unknown result type (might be due to invalid IL or missing references) //IL_9ff7: Unknown result type (might be due to invalid IL or missing references) //IL_a002: Unknown result type (might be due to invalid IL or missing references) //IL_a008: Unknown result type (might be due to invalid IL or missing references) //IL_a00d: Unknown result type (might be due to invalid IL or missing references) //IL_a013: Unknown result type (might be due to invalid IL or missing references) //IL_a018: Unknown result type (might be due to invalid IL or missing references) //IL_a01e: Unknown result type (might be due to invalid IL or missing references) //IL_a028: Unknown result type (might be due to invalid IL or missing references) //IL_a02d: Unknown result type (might be due to invalid IL or missing references) //IL_a033: Unknown result type (might be due to invalid IL or missing references) //IL_a03d: Unknown result type (might be due to invalid IL or missing references) //IL_a043: Unknown result type (might be due to invalid IL or missing references) //IL_a048: Unknown result type (might be due to invalid IL or missing references) //IL_a04e: Unknown result type (might be due to invalid IL or missing references) //IL_a053: Unknown result type (might be due to invalid IL or missing references) //IL_a058: Unknown result type (might be due to invalid IL or missing references) //IL_a05e: Unknown result type (might be due to invalid IL or missing references) //IL_a068: Unknown result type (might be due to invalid IL or missing references) //IL_a06d: Unknown result type (might be due to invalid IL or missing references) //IL_a072: Unknown result type (might be due to invalid IL or missing references) //IL_a082: Unknown result type (might be due to invalid IL or missing references) //IL_a088: Unknown result type (might be due to invalid IL or missing references) //IL_a08d: Unknown result type (might be due to invalid IL or missing references) //IL_a093: Unknown result type (might be due to invalid IL or missing references) //IL_a098: Unknown result type (might be due to invalid IL or missing references) //IL_a09e: Unknown result type (might be due to invalid IL or missing references) //IL_a0a8: Unknown result type (might be due to invalid IL or missing references) //IL_a0ad: Unknown result type (might be due to invalid IL or missing references) //IL_a0b3: Unknown result type (might be due to invalid IL or missing references) //IL_a0bd: Unknown result type (might be due to invalid IL or missing references) //IL_a0c3: Unknown result type (might be due to invalid IL or missing references) //IL_a0c8: Unknown result type (might be due to invalid IL or missing references) //IL_a0ce: Unknown result type (might be due to invalid IL or missing references) //IL_a0d3: Unknown result type (might be due to invalid IL or missing references) //IL_a0d8: Unknown result type (might be due to invalid IL or missing references) //IL_a0e3: Unknown result type (might be due to invalid IL or missing references) //IL_a0e9: Unknown result type (might be due to invalid IL or missing references) //IL_a0ee: Unknown result type (might be due to invalid IL or missing references) //IL_a0f4: Unknown result type (might be due to invalid IL or missing references) //IL_a0f9: Unknown result type (might be due to invalid IL or missing references) //IL_a0ff: Unknown result type (might be due to invalid IL or missing references) //IL_a109: Unknown result type (might be due to invalid IL or missing references) //IL_a10e: Unknown result type (might be due to invalid IL or missing references) //IL_a114: Unknown result type (might be due to invalid IL or missing references) //IL_a11e: Unknown result type (might be due to invalid IL or missing references) //IL_a124: Unknown result type (might be due to invalid IL or missing references) //IL_a129: Unknown result type (might be due to invalid IL or missing references) //IL_a12f: Unknown result type (might be due to invalid IL or missing references) //IL_a134: Unknown result type (might be due to invalid IL or missing references) //IL_a139: Unknown result type (might be due to invalid IL or missing references) //IL_a13e: Unknown result type (might be due to invalid IL or missing references) //IL_a14e: Unknown result type (might be due to invalid IL or missing references) //IL_a154: Unknown result type (might be due to invalid IL or missing references) //IL_a159: Unknown result type (might be due to invalid IL or missing references) //IL_a15f: Unknown result type (might be due to invalid IL or missing references) //IL_a164: Unknown result type (might be due to invalid IL or missing references) //IL_a16a: Unknown result type (might be due to invalid IL or missing references) //IL_a174: Unknown result type (might be due to invalid IL or missing references) //IL_a179: Unknown result type (might be due to invalid IL or missing references) //IL_a17f: Unknown result type (might be due to invalid IL or missing references) //IL_a189: Unknown result type (might be due to invalid IL or missing references) //IL_a18f: Unknown result type (might be due to invalid IL or missing references) //IL_a194: Unknown result type (might be due to invalid IL or missing references) //IL_a19a: Unknown result type (might be due to invalid IL or missing references) //IL_a19f: Unknown result type (might be due to invalid IL or missing references) //IL_a1a4: Unknown result type (might be due to invalid IL or missing references) //IL_a1aa: Unknown result type (might be due to invalid IL or missing references) //IL_a1b4: Unknown result type (might be due to invalid IL or missing references) //IL_a1b9: Unknown result type (might be due to invalid IL or missing references) //IL_a1c4: Unknown result type (might be due to invalid IL or missing references) //IL_a1ca: Unknown result type (might be due to invalid IL or missing references) //IL_a1cf: Unknown result type (might be due to invalid IL or missing references) //IL_a1d5: Unknown result type (might be due to invalid IL or missing references) //IL_a1da: Unknown result type (might be due to invalid IL or missing references) //IL_a1e0: Unknown result type (might be due to invalid IL or missing references) //IL_a1ea: Unknown result type (might be due to invalid IL or missing references) //IL_a1ef: Unknown result type (might be due to invalid IL or missing references) //IL_a1f5: Unknown result type (might be due to invalid IL or missing references) //IL_a1ff: Unknown result type (might be due to invalid IL or missing references) //IL_a205: Unknown result type (might be due to invalid IL or missing references) //IL_a20a: Unknown result type (might be due to invalid IL or missing references) //IL_a210: Unknown result type (might be due to invalid IL or missing references) //IL_a215: Unknown result type (might be due to invalid IL or missing references) //IL_a21a: Unknown result type (might be due to invalid IL or missing references) //IL_a220: Unknown result type (might be due to invalid IL or missing references) //IL_a22a: Unknown result type (might be due to invalid IL or missing references) //IL_a22f: Unknown result type (might be due to invalid IL or missing references) //IL_a234: Unknown result type (might be due to invalid IL or missing references) //IL_a244: Unknown result type (might be due to invalid IL or missing references) //IL_a24a: Unknown result type (might be due to invalid IL or missing references) //IL_a24f: Unknown result type (might be due to invalid IL or missing references) //IL_a255: Unknown result type (might be due to invalid IL or missing references) //IL_a25a: Unknown result type (might be due to invalid IL or missing references) //IL_a260: Unknown result type (might be due to invalid IL or missing references) //IL_a26a: Unknown result type (might be due to invalid IL or missing references) //IL_a26f: Unknown result type (might be due to invalid IL or missing references) //IL_a275: Unknown result type (might be due to invalid IL or missing references) //IL_a27f: Unknown result type (might be due to invalid IL or missing references) //IL_a285: Unknown result type (might be due to invalid IL or missing references) //IL_a28a: Unknown result type (might be due to invalid IL or missing references) //IL_a290: Unknown result type (might be due to invalid IL or missing references) //IL_a295: Unknown result type (might be due to invalid IL or missing references) //IL_a29a: Unknown result type (might be due to invalid IL or missing references) //IL_a2a0: Unknown result type (might be due to invalid IL or missing references) //IL_a2aa: Unknown result type (might be due to invalid IL or missing references) //IL_a2af: Unknown result type (might be due to invalid IL or missing references) //IL_a2ba: Unknown result type (might be due to invalid IL or missing references) //IL_a2c0: Unknown result type (might be due to invalid IL or missing references) //IL_a2c5: Unknown result type (might be due to invalid IL or missing references) //IL_a2cb: Unknown result type (might be due to invalid IL or missing references) //IL_a2d0: Unknown result type (might be due to invalid IL or missing references) //IL_a2d6: Unknown result type (might be due to invalid IL or missing references) //IL_a2e0: Unknown result type (might be due to invalid IL or missing references) //IL_a2e5: Unknown result type (might be due to invalid IL or missing references) //IL_a2eb: Unknown result type (might be due to invalid IL or missing references) //IL_a2f5: Unknown result type (might be due to invalid IL or missing references) //IL_a2fb: Unknown result type (might be due to invalid IL or missing references) //IL_a300: Unknown result type (might be due to invalid IL or missing references) //IL_a306: Unknown result type (might be due to invalid IL or missing references) //IL_a30b: Unknown result type (might be due to invalid IL or missing references) //IL_a310: Unknown result type (might be due to invalid IL or missing references) //IL_a316: Unknown result type (might be due to invalid IL or missing references) //IL_a320: Unknown result type (might be due to invalid IL or missing references) //IL_a325: Unknown result type (might be due to invalid IL or missing references) //IL_a32a: Unknown result type (might be due to invalid IL or missing references) //IL_a33a: Unknown result type (might be due to invalid IL or missing references) //IL_a340: Unknown result type (might be due to invalid IL or missing references) //IL_a345: Unknown result type (might be due to invalid IL or missing references) //IL_a34b: Unknown result type (might be due to invalid IL or missing references) //IL_a350: Unknown result type (might be due to invalid IL or missing references) //IL_a356: Unknown result type (might be due to invalid IL or missing references) //IL_a360: Unknown result type (might be due to invalid IL or missing references) //IL_a365: Unknown result type (might be due to invalid IL or missing references) //IL_a36b: Unknown result type (might be due to invalid IL or missing references) //IL_a375: Unknown result type (might be due to invalid IL or missing references) //IL_a37b: Unknown result type (might be due to invalid IL or missing references) //IL_a380: Unknown result type (might be due to invalid IL or missing references) //IL_a386: Unknown result type (might be due to invalid IL or missing references) //IL_a38b: Unknown result type (might be due to invalid IL or missing references) //IL_a390: Unknown result type (might be due to invalid IL or missing references) //IL_a396: Unknown result type (might be due to invalid IL or missing references) //IL_a3a0: Unknown result type (might be due to invalid IL or missing references) //IL_a3a5: Unknown result type (might be due to invalid IL or missing references) //IL_a3b0: Unknown result type (might be due to invalid IL or missing references) //IL_a3b6: Unknown result type (might be due to invalid IL or missing references) //IL_a3bb: Unknown result type (might be due to invalid IL or missing references) //IL_a3c1: Unknown result type (might be due to invalid IL or missing references) //IL_a3c6: Unknown result type (might be due to invalid IL or missing references) //IL_a3cc: Unknown result type (might be due to invalid IL or missing references) //IL_a3d6: Unknown result type (might be due to invalid IL or missing references) //IL_a3db: Unknown result type (might be due to invalid IL or missing references) //IL_a3e1: Unknown result type (might be due to invalid IL or missing references) //IL_a3eb: Unknown result type (might be due to invalid IL or missing references) //IL_a3f1: Unknown result type (might be due to invalid IL or missing references) //IL_a3f6: Unknown result type (might be due to invalid IL or missing references) //IL_a3fc: Unknown result type (might be due to invalid IL or missing references) //IL_a401: Unknown result type (might be due to invalid IL or missing references) //IL_a406: Unknown result type (might be due to invalid IL or missing references) //IL_a40c: Unknown result type (might be due to invalid IL or missing references) //IL_a416: Unknown result type (might be due to invalid IL or missing references) //IL_a41b: Unknown result type (might be due to invalid IL or missing references) //IL_a420: Unknown result type (might be due to invalid IL or missing references) //IL_a430: Unknown result type (might be due to invalid IL or missing references) //IL_a436: Unknown result type (might be due to invalid IL or missing references) //IL_a43b: Unknown result type (might be due to invalid IL or missing references) //IL_a441: Unknown result type (might be due to invalid IL or missing references) //IL_a446: Unknown result type (might be due to invalid IL or missing references) //IL_a44c: Unknown result type (might be due to invalid IL or missing references) //IL_a456: Unknown result type (might be due to invalid IL or missing references) //IL_a45b: Unknown result type (might be due to invalid IL or missing references) //IL_a461: Unknown result type (might be due to invalid IL or missing references) //IL_a46b: Unknown result type (might be due to invalid IL or missing references) //IL_a471: Unknown result type (might be due to invalid IL or missing references) //IL_a476: Unknown result type (might be due to invalid IL or missing references) //IL_a47c: Unknown result type (might be due to invalid IL or missing references) //IL_a481: Unknown result type (might be due to invalid IL or missing references) //IL_a486: Unknown result type (might be due to invalid IL or missing references) //IL_a48c: Unknown result type (might be due to invalid IL or missing references) //IL_a496: Unknown result type (might be due to invalid IL or missing references) //IL_a49b: Unknown result type (might be due to invalid IL or missing references) //IL_a4a6: Unknown result type (might be due to invalid IL or missing references) //IL_a4ac: Unknown result type (might be due to invalid IL or missing references) //IL_a4b1: Unknown result type (might be due to invalid IL or missing references) //IL_a4b7: Unknown result type (might be due to invalid IL or missing references) //IL_a4bc: Unknown result type (might be due to invalid IL or missing references) //IL_a4c2: Unknown result type (might be due to invalid IL or missing references) //IL_a4cc: Unknown result type (might be due to invalid IL or missing references) //IL_a4d1: Unknown result type (might be due to invalid IL or missing references) //IL_a4d7: Unknown result type (might be due to invalid IL or missing references) //IL_a4e1: Unknown result type (might be due to invalid IL or missing references) //IL_a4e7: Unknown result type (might be due to invalid IL or missing references) //IL_a4ec: Unknown result type (might be due to invalid IL or missing references) //IL_a4f2: Unknown result type (might be due to invalid IL or missing references) //IL_a4f7: Unknown result type (might be due to invalid IL or missing references) //IL_a4fc: Unknown result type (might be due to invalid IL or missing references) //IL_a502: Unknown result type (might be due to invalid IL or missing references) //IL_a50c: Unknown result type (might be due to invalid IL or missing references) //IL_a511: Unknown result type (might be due to invalid IL or missing references) //IL_a516: Unknown result type (might be due to invalid IL or missing references) //IL_a526: Unknown result type (might be due to invalid IL or missing references) //IL_a52c: Unknown result type (might be due to invalid IL or missing references) //IL_a531: Unknown result type (might be due to invalid IL or missing references) //IL_a537: Unknown result type (might be due to invalid IL or missing references) //IL_a53c: Unknown result type (might be due to invalid IL or missing references) //IL_a542: Unknown result type (might be due to invalid IL or missing references) //IL_a54c: Unknown result type (might be due to invalid IL or missing references) //IL_a551: Unknown result type (might be due to invalid IL or missing references) //IL_a557: Unknown result type (might be due to invalid IL or missing references) //IL_a561: Unknown result type (might be due to invalid IL or missing references) //IL_a567: Unknown result type (might be due to invalid IL or missing references) //IL_a56c: Unknown result type (might be due to invalid IL or missing references) //IL_a572: Unknown result type (might be due to invalid IL or missing references) //IL_a577: Unknown result type (might be due to invalid IL or missing references) //IL_a57c: Unknown result type (might be due to invalid IL or missing references) //IL_a582: Unknown result type (might be due to invalid IL or missing references) //IL_a58c: Unknown result type (might be due to invalid IL or missing references) //IL_a591: Unknown result type (might be due to invalid IL or missing references) //IL_a59c: Unknown result type (might be due to invalid IL or missing references) //IL_a5a2: Unknown result type (might be due to invalid IL or missing references) //IL_a5a7: Unknown result type (might be due to invalid IL or missing references) //IL_a5ad: Unknown result type (might be due to invalid IL or missing references) //IL_a5b2: Unknown result type (might be due to invalid IL or missing references) //IL_a5b8: Unknown result type (might be due to invalid IL or missing references) //IL_a5c2: Unknown result type (might be due to invalid IL or missing references) //IL_a5c7: Unknown result type (might be due to invalid IL or missing references) //IL_a5cd: Unknown result type (might be due to invalid IL or missing references) //IL_a5d7: Unknown result type (might be due to invalid IL or missing references) //IL_a5dd: Unknown result type (might be due to invalid IL or missing references) //IL_a5e2: Unknown result type (might be due to invalid IL or missing references) //IL_a5e8: Unknown result type (might be due to invalid IL or missing references) //IL_a5ed: Unknown result type (might be due to invalid IL or missing references) //IL_a5f2: Unknown result type (might be due to invalid IL or missing references) //IL_a5f8: Unknown result type (might be due to invalid IL or missing references) //IL_a602: Unknown result type (might be due to invalid IL or missing references) //IL_a607: Unknown result type (might be due to invalid IL or missing references) //IL_a60c: Unknown result type (might be due to invalid IL or missing references) //IL_a61c: Unknown result type (might be due to invalid IL or missing references) //IL_a622: Unknown result type (might be due to invalid IL or missing references) //IL_a627: Unknown result type (might be due to invalid IL or missing references) //IL_a62d: Unknown result type (might be due to invalid IL or missing references) //IL_a632: Unknown result type (might be due to invalid IL or missing references) //IL_a638: Unknown result type (might be due to invalid IL or missing references) //IL_a642: Unknown result type (might be due to invalid IL or missing references) //IL_a647: Unknown result type (might be due to invalid IL or missing references) //IL_a64d: Unknown result type (might be due to invalid IL or missing references) //IL_a657: Unknown result type (might be due to invalid IL or missing references) //IL_a65d: Unknown result type (might be due to invalid IL or missing references) //IL_a662: Unknown result type (might be due to invalid IL or missing references) //IL_a668: Unknown result type (might be due to invalid IL or missing references) //IL_a66d: Unknown result type (might be due to invalid IL or missing references) //IL_a672: Unknown result type (might be due to invalid IL or missing references) //IL_a678: Unknown result type (might be due to invalid IL or missing references) //IL_a682: Unknown result type (might be due to invalid IL or missing references) //IL_a687: Unknown result type (might be due to invalid IL or missing references) //IL_a692: Unknown result type (might be due to invalid IL or missing references) //IL_a698: Unknown result type (might be due to invalid IL or missing references) //IL_a69d: Unknown result type (might be due to invalid IL or missing references) //IL_a6a3: Unknown result type (might be due to invalid IL or missing references) //IL_a6a8: Unknown result type (might be due to invalid IL or missing references) //IL_a6ae: Unknown result type (might be due to invalid IL or missing references) //IL_a6b8: Unknown result type (might be due to invalid IL or missing references) //IL_a6bd: Unknown result type (might be due to invalid IL or missing references) //IL_a6c3: Unknown result type (might be due to invalid IL or missing references) //IL_a6cd: Unknown result type (might be due to invalid IL or missing references) //IL_a6d3: Unknown result type (might be due to invalid IL or missing references) //IL_a6d8: Unknown result type (might be due to invalid IL or missing references) //IL_a6de: Unknown result type (might be due to invalid IL or missing references) //IL_a6e3: Unknown result type (might be due to invalid IL or missing references) //IL_a6e8: Unknown result type (might be due to invalid IL or missing references) //IL_a6ee: Unknown result type (might be due to invalid IL or missing references) //IL_a6f8: Unknown result type (might be due to invalid IL or missing references) //IL_a6fd: Unknown result type (might be due to invalid IL or missing references) //IL_a702: Unknown result type (might be due to invalid IL or missing references) //IL_a712: Unknown result type (might be due to invalid IL or missing references) //IL_a718: Unknown result type (might be due to invalid IL or missing references) //IL_a71d: Unknown result type (might be due to invalid IL or missing references) //IL_a723: Unknown result type (might be due to invalid IL or missing references) //IL_a728: Unknown result type (might be due to invalid IL or missing references) //IL_a72e: Unknown result type (might be due to invalid IL or missing references) //IL_a738: Unknown result type (might be due to invalid IL or missing references) //IL_a73d: Unknown result type (might be due to invalid IL or missing references) //IL_a743: Unknown result type (might be due to invalid IL or missing references) //IL_a74d: Unknown result type (might be due to invalid IL or missing references) //IL_a753: Unknown result type (might be due to invalid IL or missing references) //IL_a758: Unknown result type (might be due to invalid IL or missing references) //IL_a75e: Unknown result type (might be due to invalid IL or missing references) //IL_a763: Unknown result type (might be due to invalid IL or missing references) //IL_a768: Unknown result type (might be due to invalid IL or missing references) //IL_a76e: Unknown result type (might be due to invalid IL or missing references) //IL_a778: Unknown result type (might be due to invalid IL or missing references) //IL_a77d: Unknown result type (might be due to invalid IL or missing references) //IL_a788: Unknown result type (might be due to invalid IL or missing references) //IL_a78e: Unknown result type (might be due to invalid IL or missing references) //IL_a793: Unknown result type (might be due to invalid IL or missing references) //IL_a799: Unknown result type (might be due to invalid IL or missing references) //IL_a79e: Unknown result type (might be due to invalid IL or missing references) //IL_a7a4: Unknown result type (might be due to invalid IL or missing references) //IL_a7ae: Unknown result type (might be due to invalid IL or missing references) //IL_a7b3: Unknown result type (might be due to invalid IL or missing references) //IL_a7b9: Unknown result type (might be due to invalid IL or missing references) //IL_a7c3: Unknown result type (might be due to invalid IL or missing references) //IL_a7c9: Unknown result type (might be due to invalid IL or missing references) //IL_a7ce: Unknown result type (might be due to invalid IL or missing references) //IL_a7d4: Unknown result type (might be due to invalid IL or missing references) //IL_a7d9: Unknown result type (might be due to invalid IL or missing references) //IL_a7de: Unknown result type (might be due to invalid IL or missing references) //IL_a7e4: Unknown result type (might be due to invalid IL or missing references) //IL_a7ee: Unknown result type (might be due to invalid IL or missing references) //IL_a7f3: Unknown result type (might be due to invalid IL or missing references) //IL_a7f8: Unknown result type (might be due to invalid IL or missing references) if (!showMainRaysOnly && ledgeSwitchingDetectors.showThirdLedgeSwitchingRays) { Debug.DrawLine(((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.585f - ledgeSwitchThirdWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.585f - ledgeSwitchThirdWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.585f - ledgeSwitchThirdWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.585f - ledgeSwitchThirdWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 - ledgeSwitchThirdWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 - ledgeSwitchThirdWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 - ledgeSwitchThirdWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 - ledgeSwitchThirdWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 - ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 - ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 - ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 - ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.585f + ledgeSwitchThirdWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.585f + ledgeSwitchThirdWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.585f + ledgeSwitchThirdWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.585f + ledgeSwitchThirdWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + ledgeSwitchThirdWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchThirdWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + ledgeSwitchThirdWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchThirdWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 - ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 - ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 - ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 - ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, Color.red); Debug.DrawLine(((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2f - surfaceDetectorWidth2, Color.cyan); Debug.DrawLine(((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, Color.blue); Debug.DrawLine(((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2, Color.cyan); Debug.DrawLine(((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, Color.blue); Debug.DrawLine(((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2, Color.cyan); Debug.DrawLine(((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, Color.blue); Debug.DrawLine(((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - rightWidth * 2f - surfaceDetectorWidth2, Color.cyan); Debug.DrawLine(((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 2.2f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.5f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, Color.blue); Debug.DrawLine(((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2, Color.cyan); Debug.DrawLine(((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, Color.blue); Debug.DrawLine(((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2f + surfaceDetectorWidth2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, Color.blue); Debug.DrawLine(((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, Color.blue); Debug.DrawLine(((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, Color.blue); Debug.DrawLine(((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + rightWidth * 2f + surfaceDetectorWidth2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 2.2f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.5f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, Color.blue); Debug.DrawLine(((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, Color.cyan); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.585f - ledgeSwitchThirdWidthBack, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.585f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.375f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.585f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.75f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.585f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.125f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.585f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.45f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.585f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.8f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.585f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.1f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.585f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.405f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.375f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.75f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.125f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.45f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.8f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.1f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.405f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.375f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.75f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.125f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.45f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.8f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.1f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.405f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.375f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.75f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.125f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.45f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.8f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.1f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.405f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.585f + ledgeSwitchThirdWidthForward, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.585f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.375f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.585f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.75f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.585f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.125f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.585f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.45f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.585f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.8f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.585f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.1f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.585f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.405f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.375f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.75f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.125f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.45f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.8f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.1f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.405f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.375f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.75f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.125f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.45f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.8f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.1f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.405f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.375f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.75f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.125f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.45f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.8f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.1f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.405f, Color.red); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2), Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2), Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2), Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2), Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2), Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2), Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2), Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2), Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2), Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2), Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, Color.blue); Debug.DrawLine(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, Color.blue); } } private void FixedUpdate() { //IL_00c3: Unknown result type (might be due to invalid IL or missing references) //IL_00d3: Unknown result type (might be due to invalid IL or missing references) //IL_00de: Unknown result type (might be due to invalid IL or missing references) //IL_00ee: Unknown result type (might be due to invalid IL or missing references) //IL_00f3: Unknown result type (might be due to invalid IL or missing references) //IL_00fe: Unknown result type (might be due to invalid IL or missing references) //IL_010e: Unknown result type (might be due to invalid IL or missing references) //IL_0113: Unknown result type (might be due to invalid IL or missing references) //IL_0118: Unknown result type (might be due to invalid IL or missing references) //IL_0124: Unknown result type (might be due to invalid IL or missing references) //IL_0134: Unknown result type (might be due to invalid IL or missing references) //IL_013f: Unknown result type (might be due to invalid IL or missing references) //IL_014a: Unknown result type (might be due to invalid IL or missing references) //IL_0154: Unknown result type (might be due to invalid IL or missing references) //IL_0159: Unknown result type (might be due to invalid IL or missing references) //IL_0164: Unknown result type (might be due to invalid IL or missing references) //IL_0174: Unknown result type (might be due to invalid IL or missing references) //IL_0179: Unknown result type (might be due to invalid IL or missing references) //IL_0184: Unknown result type (might be due to invalid IL or missing references) //IL_0194: Unknown result type (might be due to invalid IL or missing references) //IL_0199: Unknown result type (might be due to invalid IL or missing references) //IL_019e: Unknown result type (might be due to invalid IL or missing references) //IL_01a5: Unknown result type (might be due to invalid IL or missing references) //IL_01c3: Unknown result type (might be due to invalid IL or missing references) //IL_01c8: Unknown result type (might be due to invalid IL or missing references) //IL_01d4: Unknown result type (might be due to invalid IL or missing references) //IL_01df: Unknown result type (might be due to invalid IL or missing references) //IL_01e4: Unknown result type (might be due to invalid IL or missing references) //IL_01f0: Unknown result type (might be due to invalid IL or missing references) //IL_01fb: Unknown result type (might be due to invalid IL or missing references) //IL_0200: Unknown result type (might be due to invalid IL or missing references) //IL_020c: Unknown result type (might be due to invalid IL or missing references) //IL_0217: Unknown result type (might be due to invalid IL or missing references) //IL_021c: Unknown result type (might be due to invalid IL or missing references) //IL_0223: Unknown result type (might be due to invalid IL or missing references) //IL_0234: Unknown result type (might be due to invalid IL or missing references) //IL_0239: Unknown result type (might be due to invalid IL or missing references) //IL_0240: Unknown result type (might be due to invalid IL or missing references) //IL_0251: Unknown result type (might be due to invalid IL or missing references) //IL_0256: Unknown result type (might be due to invalid IL or missing references) //IL_025d: Unknown result type (might be due to invalid IL or missing references) //IL_0275: Unknown result type (might be due to invalid IL or missing references) //IL_027a: Unknown result type (might be due to invalid IL or missing references) //IL_0281: Unknown result type (might be due to invalid IL or missing references) //IL_0299: Unknown result type (might be due to invalid IL or missing references) //IL_029e: Unknown result type (might be due to invalid IL or missing references) //IL_02a5: Unknown result type (might be due to invalid IL or missing references) //IL_02bd: Unknown result type (might be due to invalid IL or missing references) //IL_02c2: Unknown result type (might be due to invalid IL or missing references) //IL_02c9: Unknown result type (might be due to invalid IL or missing references) //IL_02d3: Unknown result type (might be due to invalid IL or missing references) //IL_02d9: Unknown result type (might be due to invalid IL or missing references) //IL_02de: Unknown result type (might be due to invalid IL or missing references) //IL_02e4: Unknown result type (might be due to invalid IL or missing references) //IL_02e9: Unknown result type (might be due to invalid IL or missing references) //IL_0301: Unknown result type (might be due to invalid IL or missing references) //IL_0319: Unknown result type (might be due to invalid IL or missing references) //IL_031e: Unknown result type (might be due to invalid IL or missing references) //IL_0325: Unknown result type (might be due to invalid IL or missing references) //IL_032f: Unknown result type (might be due to invalid IL or missing references) //IL_0335: Unknown result type (might be due to invalid IL or missing references) //IL_033a: Unknown result type (might be due to invalid IL or missing references) //IL_0340: Unknown result type (might be due to invalid IL or missing references) //IL_0345: Unknown result type (might be due to invalid IL or missing references) //IL_035d: Unknown result type (might be due to invalid IL or missing references) //IL_0375: Unknown result type (might be due to invalid IL or missing references) //IL_037a: Unknown result type (might be due to invalid IL or missing references) //IL_0381: Unknown result type (might be due to invalid IL or missing references) //IL_038b: Unknown result type (might be due to invalid IL or missing references) //IL_0391: Unknown result type (might be due to invalid IL or missing references) //IL_0396: Unknown result type (might be due to invalid IL or missing references) //IL_039c: Unknown result type (might be due to invalid IL or missing references) //IL_03a1: Unknown result type (might be due to invalid IL or missing references) //IL_03b9: Unknown result type (might be due to invalid IL or missing references) //IL_03d1: Unknown result type (might be due to invalid IL or missing references) //IL_03d6: Unknown result type (might be due to invalid IL or missing references) //IL_03dd: Unknown result type (might be due to invalid IL or missing references) //IL_03e7: Unknown result type (might be due to invalid IL or missing references) //IL_03ed: Unknown result type (might be due to invalid IL or missing references) //IL_03f2: Unknown result type (might be due to invalid IL or missing references) //IL_03f8: Unknown result type (might be due to invalid IL or missing references) //IL_03fd: Unknown result type (might be due to invalid IL or missing references) //IL_0415: Unknown result type (might be due to invalid IL or missing references) //IL_042d: Unknown result type (might be due to invalid IL or missing references) //IL_0432: Unknown result type (might be due to invalid IL or missing references) //IL_0439: Unknown result type (might be due to invalid IL or missing references) //IL_0443: Unknown result type (might be due to invalid IL or missing references) //IL_0449: Unknown result type (might be due to invalid IL or missing references) //IL_044e: Unknown result type (might be due to invalid IL or missing references) //IL_0454: Unknown result type (might be due to invalid IL or missing references) //IL_0459: Unknown result type (might be due to invalid IL or missing references) //IL_0471: Unknown result type (might be due to invalid IL or missing references) //IL_0489: Unknown result type (might be due to invalid IL or missing references) //IL_048e: Unknown result type (might be due to invalid IL or missing references) //IL_0495: Unknown result type (might be due to invalid IL or missing references) //IL_049f: Unknown result type (might be due to invalid IL or missing references) //IL_04a5: Unknown result type (might be due to invalid IL or missing references) //IL_04aa: Unknown result type (might be due to invalid IL or missing references) //IL_04b0: Unknown result type (might be due to invalid IL or missing references) //IL_04b5: Unknown result type (might be due to invalid IL or missing references) //IL_04cd: Unknown result type (might be due to invalid IL or missing references) //IL_04e5: Unknown result type (might be due to invalid IL or missing references) //IL_04ea: Unknown result type (might be due to invalid IL or missing references) //IL_0503: Unknown result type (might be due to invalid IL or missing references) //IL_0509: Unknown result type (might be due to invalid IL or missing references) //IL_050a: Unknown result type (might be due to invalid IL or missing references) //IL_0026: Unknown result type (might be due to invalid IL or missing references) //IL_002b: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_0058: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Unknown result type (might be due to invalid IL or missing references) //IL_052b: Unknown result type (might be due to invalid IL or missing references) //IL_0531: Unknown result type (might be due to invalid IL or missing references) //IL_0536: Unknown result type (might be due to invalid IL or missing references) //IL_053c: Unknown result type (might be due to invalid IL or missing references) //IL_0541: Unknown result type (might be due to invalid IL or missing references) //IL_054c: Unknown result type (might be due to invalid IL or missing references) //IL_0551: Unknown result type (might be due to invalid IL or missing references) //IL_0573: Unknown result type (might be due to invalid IL or missing references) //IL_0578: Unknown result type (might be due to invalid IL or missing references) //IL_0581: Unknown result type (might be due to invalid IL or missing references) //IL_0587: Unknown result type (might be due to invalid IL or missing references) //IL_058c: Unknown result type (might be due to invalid IL or missing references) //IL_0592: Unknown result type (might be due to invalid IL or missing references) //IL_059c: Unknown result type (might be due to invalid IL or missing references) //IL_05a1: Unknown result type (might be due to invalid IL or missing references) //IL_05a7: Unknown result type (might be due to invalid IL or missing references) //IL_05ac: Unknown result type (might be due to invalid IL or missing references) //IL_05b8: Unknown result type (might be due to invalid IL or missing references) //IL_05d5: Unknown result type (might be due to invalid IL or missing references) //IL_05db: Unknown result type (might be due to invalid IL or missing references) //IL_05e0: Unknown result type (might be due to invalid IL or missing references) //IL_05e6: Unknown result type (might be due to invalid IL or missing references) //IL_05eb: Unknown result type (might be due to invalid IL or missing references) //IL_05f1: Unknown result type (might be due to invalid IL or missing references) //IL_05fb: Unknown result type (might be due to invalid IL or missing references) //IL_0600: Unknown result type (might be due to invalid IL or missing references) //IL_0606: Unknown result type (might be due to invalid IL or missing references) //IL_060b: Unknown result type (might be due to invalid IL or missing references) //IL_0616: Unknown result type (might be due to invalid IL or missing references) //IL_061b: Unknown result type (might be due to invalid IL or missing references) //IL_063d: Unknown result type (might be due to invalid IL or missing references) //IL_0642: Unknown result type (might be due to invalid IL or missing references) //IL_064b: Unknown result type (might be due to invalid IL or missing references) //IL_0651: Unknown result type (might be due to invalid IL or missing references) //IL_0656: Unknown result type (might be due to invalid IL or missing references) //IL_065c: Unknown result type (might be due to invalid IL or missing references) //IL_0666: Unknown result type (might be due to invalid IL or missing references) //IL_066b: Unknown result type (might be due to invalid IL or missing references) //IL_0671: Unknown result type (might be due to invalid IL or missing references) //IL_0676: Unknown result type (might be due to invalid IL or missing references) //IL_067c: Unknown result type (might be due to invalid IL or missing references) //IL_0686: Unknown result type (might be due to invalid IL or missing references) //IL_068b: Unknown result type (might be due to invalid IL or missing references) //IL_0691: Unknown result type (might be due to invalid IL or missing references) //IL_0696: Unknown result type (might be due to invalid IL or missing references) //IL_06a2: Unknown result type (might be due to invalid IL or missing references) //IL_06bf: Unknown result type (might be due to invalid IL or missing references) //IL_06c5: Unknown result type (might be due to invalid IL or missing references) //IL_06ca: Unknown result type (might be due to invalid IL or missing references) //IL_06d0: Unknown result type (might be due to invalid IL or missing references) //IL_06d5: Unknown result type (might be due to invalid IL or missing references) //IL_06db: Unknown result type (might be due to invalid IL or missing references) //IL_06e5: Unknown result type (might be due to invalid IL or missing references) //IL_06ea: Unknown result type (might be due to invalid IL or missing references) //IL_06f0: Unknown result type (might be due to invalid IL or missing references) //IL_06f5: Unknown result type (might be due to invalid IL or missing references) //IL_0700: Unknown result type (might be due to invalid IL or missing references) //IL_0705: Unknown result type (might be due to invalid IL or missing references) //IL_0727: Unknown result type (might be due to invalid IL or missing references) //IL_072c: Unknown result type (might be due to invalid IL or missing references) //IL_0735: Unknown result type (might be due to invalid IL or missing references) //IL_073b: Unknown result type (might be due to invalid IL or missing references) //IL_0740: Unknown result type (might be due to invalid IL or missing references) //IL_0746: Unknown result type (might be due to invalid IL or missing references) //IL_0750: Unknown result type (might be due to invalid IL or missing references) //IL_0755: Unknown result type (might be due to invalid IL or missing references) //IL_075b: Unknown result type (might be due to invalid IL or missing references) //IL_0760: Unknown result type (might be due to invalid IL or missing references) //IL_0766: Unknown result type (might be due to invalid IL or missing references) //IL_0770: Unknown result type (might be due to invalid IL or missing references) //IL_0775: Unknown result type (might be due to invalid IL or missing references) //IL_077b: Unknown result type (might be due to invalid IL or missing references) //IL_0780: Unknown result type (might be due to invalid IL or missing references) //IL_078c: Unknown result type (might be due to invalid IL or missing references) //IL_07fd: Unknown result type (might be due to invalid IL or missing references) //IL_0803: Unknown result type (might be due to invalid IL or missing references) //IL_0808: Unknown result type (might be due to invalid IL or missing references) //IL_080e: Unknown result type (might be due to invalid IL or missing references) //IL_0813: Unknown result type (might be due to invalid IL or missing references) //IL_081e: Unknown result type (might be due to invalid IL or missing references) //IL_0824: Unknown result type (might be due to invalid IL or missing references) //IL_0829: Unknown result type (might be due to invalid IL or missing references) //IL_082f: Unknown result type (might be due to invalid IL or missing references) //IL_0839: Unknown result type (might be due to invalid IL or missing references) //IL_083e: Unknown result type (might be due to invalid IL or missing references) //IL_0844: Unknown result type (might be due to invalid IL or missing references) //IL_0849: Unknown result type (might be due to invalid IL or missing references) //IL_0855: Unknown result type (might be due to invalid IL or missing references) //IL_09d2: Unknown result type (might be due to invalid IL or missing references) //IL_09d8: Unknown result type (might be due to invalid IL or missing references) //IL_09dd: Unknown result type (might be due to invalid IL or missing references) //IL_09e3: Unknown result type (might be due to invalid IL or missing references) //IL_09e8: Unknown result type (might be due to invalid IL or missing references) //IL_09ee: Unknown result type (might be due to invalid IL or missing references) //IL_09f3: Unknown result type (might be due to invalid IL or missing references) //IL_09f9: Unknown result type (might be due to invalid IL or missing references) //IL_0a03: Unknown result type (might be due to invalid IL or missing references) //IL_0a08: Unknown result type (might be due to invalid IL or missing references) //IL_0a0e: Unknown result type (might be due to invalid IL or missing references) //IL_0a18: Unknown result type (might be due to invalid IL or missing references) //IL_0a1d: Unknown result type (might be due to invalid IL or missing references) //IL_0a23: Unknown result type (might be due to invalid IL or missing references) //IL_0a28: Unknown result type (might be due to invalid IL or missing references) //IL_0a32: Unknown result type (might be due to invalid IL or missing references) //IL_0a43: Unknown result type (might be due to invalid IL or missing references) //IL_0a5f: Unknown result type (might be due to invalid IL or missing references) //IL_0a64: Unknown result type (might be due to invalid IL or missing references) //IL_0aa5: Unknown result type (might be due to invalid IL or missing references) //IL_0aab: Unknown result type (might be due to invalid IL or missing references) //IL_0ab0: Unknown result type (might be due to invalid IL or missing references) //IL_0ab6: Unknown result type (might be due to invalid IL or missing references) //IL_0ac0: Unknown result type (might be due to invalid IL or missing references) //IL_0ac5: Unknown result type (might be due to invalid IL or missing references) //IL_0acb: Unknown result type (might be due to invalid IL or missing references) //IL_0ad5: Unknown result type (might be due to invalid IL or missing references) //IL_0ada: Unknown result type (might be due to invalid IL or missing references) //IL_0ae0: Unknown result type (might be due to invalid IL or missing references) //IL_0ae5: Unknown result type (might be due to invalid IL or missing references) //IL_0af0: Unknown result type (might be due to invalid IL or missing references) //IL_0af6: Unknown result type (might be due to invalid IL or missing references) //IL_0afb: Unknown result type (might be due to invalid IL or missing references) //IL_0b01: Unknown result type (might be due to invalid IL or missing references) //IL_0b0b: Unknown result type (might be due to invalid IL or missing references) //IL_0b10: Unknown result type (might be due to invalid IL or missing references) //IL_0b16: Unknown result type (might be due to invalid IL or missing references) //IL_0b20: Unknown result type (might be due to invalid IL or missing references) //IL_0b25: Unknown result type (might be due to invalid IL or missing references) //IL_0b2b: Unknown result type (might be due to invalid IL or missing references) //IL_0b30: Unknown result type (might be due to invalid IL or missing references) //IL_0b3c: Unknown result type (might be due to invalid IL or missing references) //IL_0f47: Unknown result type (might be due to invalid IL or missing references) //IL_0f4d: Unknown result type (might be due to invalid IL or missing references) //IL_0f52: Unknown result type (might be due to invalid IL or missing references) //IL_0f58: Unknown result type (might be due to invalid IL or missing references) //IL_0f62: Unknown result type (might be due to invalid IL or missing references) //IL_0f67: Unknown result type (might be due to invalid IL or missing references) //IL_0f72: Unknown result type (might be due to invalid IL or missing references) //IL_0f78: Unknown result type (might be due to invalid IL or missing references) //IL_0f7d: Unknown result type (might be due to invalid IL or missing references) //IL_0f83: Unknown result type (might be due to invalid IL or missing references) //IL_0f8d: Unknown result type (might be due to invalid IL or missing references) //IL_0f92: Unknown result type (might be due to invalid IL or missing references) //IL_0f98: Unknown result type (might be due to invalid IL or missing references) //IL_0fa2: Unknown result type (might be due to invalid IL or missing references) //IL_0fa7: Unknown result type (might be due to invalid IL or missing references) //IL_0fad: Unknown result type (might be due to invalid IL or missing references) //IL_0fb2: Unknown result type (might be due to invalid IL or missing references) //IL_0fbe: Unknown result type (might be due to invalid IL or missing references) //IL_0b59: Unknown result type (might be due to invalid IL or missing references) //IL_0b5f: Unknown result type (might be due to invalid IL or missing references) //IL_0b64: Unknown result type (might be due to invalid IL or missing references) //IL_0b6a: Unknown result type (might be due to invalid IL or missing references) //IL_0b74: Unknown result type (might be due to invalid IL or missing references) //IL_0b79: Unknown result type (might be due to invalid IL or missing references) //IL_0b7f: Unknown result type (might be due to invalid IL or missing references) //IL_0b84: Unknown result type (might be due to invalid IL or missing references) //IL_0b8f: Unknown result type (might be due to invalid IL or missing references) //IL_0b95: Unknown result type (might be due to invalid IL or missing references) //IL_0b9a: Unknown result type (might be due to invalid IL or missing references) //IL_0ba0: Unknown result type (might be due to invalid IL or missing references) //IL_0baa: Unknown result type (might be due to invalid IL or missing references) //IL_0baf: Unknown result type (might be due to invalid IL or missing references) //IL_0bb5: Unknown result type (might be due to invalid IL or missing references) //IL_0bbf: Unknown result type (might be due to invalid IL or missing references) //IL_0bc4: Unknown result type (might be due to invalid IL or missing references) //IL_0bca: Unknown result type (might be due to invalid IL or missing references) //IL_0bcf: Unknown result type (might be due to invalid IL or missing references) //IL_0bdb: Unknown result type (might be due to invalid IL or missing references) //IL_0fdb: Unknown result type (might be due to invalid IL or missing references) //IL_0fe1: Unknown result type (might be due to invalid IL or missing references) //IL_0fe6: Unknown result type (might be due to invalid IL or missing references) //IL_0fec: Unknown result type (might be due to invalid IL or missing references) //IL_0ff6: Unknown result type (might be due to invalid IL or missing references) //IL_0ffb: Unknown result type (might be due to invalid IL or missing references) //IL_1001: Unknown result type (might be due to invalid IL or missing references) //IL_1006: Unknown result type (might be due to invalid IL or missing references) //IL_1011: Unknown result type (might be due to invalid IL or missing references) //IL_1017: Unknown result type (might be due to invalid IL or missing references) //IL_101c: Unknown result type (might be due to invalid IL or missing references) //IL_1022: Unknown result type (might be due to invalid IL or missing references) //IL_102c: Unknown result type (might be due to invalid IL or missing references) //IL_1031: Unknown result type (might be due to invalid IL or missing references) //IL_1037: Unknown result type (might be due to invalid IL or missing references) //IL_1041: Unknown result type (might be due to invalid IL or missing references) //IL_1046: Unknown result type (might be due to invalid IL or missing references) //IL_104c: Unknown result type (might be due to invalid IL or missing references) //IL_1051: Unknown result type (might be due to invalid IL or missing references) //IL_105d: Unknown result type (might be due to invalid IL or missing references) //IL_0bf8: Unknown result type (might be due to invalid IL or missing references) //IL_0bfe: Unknown result type (might be due to invalid IL or missing references) //IL_0c03: Unknown result type (might be due to invalid IL or missing references) //IL_0c09: Unknown result type (might be due to invalid IL or missing references) //IL_0c13: Unknown result type (might be due to invalid IL or missing references) //IL_0c18: Unknown result type (might be due to invalid IL or missing references) //IL_0c1e: Unknown result type (might be due to invalid IL or missing references) //IL_0c23: Unknown result type (might be due to invalid IL or missing references) //IL_0c2e: Unknown result type (might be due to invalid IL or missing references) //IL_0c34: Unknown result type (might be due to invalid IL or missing references) //IL_0c39: Unknown result type (might be due to invalid IL or missing references) //IL_0c3f: Unknown result type (might be due to invalid IL or missing references) //IL_0c49: Unknown result type (might be due to invalid IL or missing references) //IL_0c4e: Unknown result type (might be due to invalid IL or missing references) //IL_0c54: Unknown result type (might be due to invalid IL or missing references) //IL_0c5e: Unknown result type (might be due to invalid IL or missing references) //IL_0c63: Unknown result type (might be due to invalid IL or missing references) //IL_0c69: Unknown result type (might be due to invalid IL or missing references) //IL_0c6e: Unknown result type (might be due to invalid IL or missing references) //IL_0c7a: Unknown result type (might be due to invalid IL or missing references) //IL_107a: Unknown result type (might be due to invalid IL or missing references) //IL_1080: Unknown result type (might be due to invalid IL or missing references) //IL_1085: Unknown result type (might be due to invalid IL or missing references) //IL_108b: Unknown result type (might be due to invalid IL or missing references) //IL_1095: Unknown result type (might be due to invalid IL or missing references) //IL_109a: Unknown result type (might be due to invalid IL or missing references) //IL_10a0: Unknown result type (might be due to invalid IL or missing references) //IL_10aa: Unknown result type (might be due to invalid IL or missing references) //IL_10af: Unknown result type (might be due to invalid IL or missing references) //IL_10b5: Unknown result type (might be due to invalid IL or missing references) //IL_10ba: Unknown result type (might be due to invalid IL or missing references) //IL_10c5: Unknown result type (might be due to invalid IL or missing references) //IL_10cb: Unknown result type (might be due to invalid IL or missing references) //IL_10d0: Unknown result type (might be due to invalid IL or missing references) //IL_10d6: Unknown result type (might be due to invalid IL or missing references) //IL_10e0: Unknown result type (might be due to invalid IL or missing references) //IL_10e5: Unknown result type (might be due to invalid IL or missing references) //IL_10eb: Unknown result type (might be due to invalid IL or missing references) //IL_10f5: Unknown result type (might be due to invalid IL or missing references) //IL_10fa: Unknown result type (might be due to invalid IL or missing references) //IL_1106: Unknown result type (might be due to invalid IL or missing references) //IL_0c97: Unknown result type (might be due to invalid IL or missing references) //IL_0c9d: Unknown result type (might be due to invalid IL or missing references) //IL_0ca2: Unknown result type (might be due to invalid IL or missing references) //IL_0ca8: Unknown result type (might be due to invalid IL or missing references) //IL_0cb2: Unknown result type (might be due to invalid IL or missing references) //IL_0cb7: Unknown result type (might be due to invalid IL or missing references) //IL_0cc2: Unknown result type (might be due to invalid IL or missing references) //IL_0cc8: Unknown result type (might be due to invalid IL or missing references) //IL_0ccd: Unknown result type (might be due to invalid IL or missing references) //IL_0cd3: Unknown result type (might be due to invalid IL or missing references) //IL_0cdd: Unknown result type (might be due to invalid IL or missing references) //IL_0ce2: Unknown result type (might be due to invalid IL or missing references) //IL_0ce8: Unknown result type (might be due to invalid IL or missing references) //IL_0cf2: Unknown result type (might be due to invalid IL or missing references) //IL_0cf7: Unknown result type (might be due to invalid IL or missing references) //IL_0cfd: Unknown result type (might be due to invalid IL or missing references) //IL_0d02: Unknown result type (might be due to invalid IL or missing references) //IL_0d0e: Unknown result type (might be due to invalid IL or missing references) //IL_14b9: Unknown result type (might be due to invalid IL or missing references) //IL_14bf: Unknown result type (might be due to invalid IL or missing references) //IL_14c4: Unknown result type (might be due to invalid IL or missing references) //IL_14ca: Unknown result type (might be due to invalid IL or missing references) //IL_14d4: Unknown result type (might be due to invalid IL or missing references) //IL_14d9: Unknown result type (might be due to invalid IL or missing references) //IL_14df: Unknown result type (might be due to invalid IL or missing references) //IL_14e9: Unknown result type (might be due to invalid IL or missing references) //IL_14ee: Unknown result type (might be due to invalid IL or missing references) //IL_14f4: Unknown result type (might be due to invalid IL or missing references) //IL_14f9: Unknown result type (might be due to invalid IL or missing references) //IL_14ff: Unknown result type (might be due to invalid IL or missing references) //IL_1509: Unknown result type (might be due to invalid IL or missing references) //IL_150e: Unknown result type (might be due to invalid IL or missing references) //IL_1519: Unknown result type (might be due to invalid IL or missing references) //IL_151f: Unknown result type (might be due to invalid IL or missing references) //IL_1524: Unknown result type (might be due to invalid IL or missing references) //IL_152a: Unknown result type (might be due to invalid IL or missing references) //IL_1534: Unknown result type (might be due to invalid IL or missing references) //IL_1539: Unknown result type (might be due to invalid IL or missing references) //IL_153f: Unknown result type (might be due to invalid IL or missing references) //IL_1549: Unknown result type (might be due to invalid IL or missing references) //IL_154e: Unknown result type (might be due to invalid IL or missing references) //IL_1554: Unknown result type (might be due to invalid IL or missing references) //IL_1559: Unknown result type (might be due to invalid IL or missing references) //IL_155f: Unknown result type (might be due to invalid IL or missing references) //IL_1569: Unknown result type (might be due to invalid IL or missing references) //IL_156e: Unknown result type (might be due to invalid IL or missing references) //IL_157a: Unknown result type (might be due to invalid IL or missing references) //IL_1120: Unknown result type (might be due to invalid IL or missing references) //IL_1125: Unknown result type (might be due to invalid IL or missing references) //IL_0d2b: Unknown result type (might be due to invalid IL or missing references) //IL_0d31: Unknown result type (might be due to invalid IL or missing references) //IL_0d36: Unknown result type (might be due to invalid IL or missing references) //IL_0d3c: Unknown result type (might be due to invalid IL or missing references) //IL_0d46: Unknown result type (might be due to invalid IL or missing references) //IL_0d4b: Unknown result type (might be due to invalid IL or missing references) //IL_0d51: Unknown result type (might be due to invalid IL or missing references) //IL_0d5b: Unknown result type (might be due to invalid IL or missing references) //IL_0d60: Unknown result type (might be due to invalid IL or missing references) //IL_0d66: Unknown result type (might be due to invalid IL or missing references) //IL_0d6b: Unknown result type (might be due to invalid IL or missing references) //IL_0d76: Unknown result type (might be due to invalid IL or missing references) //IL_0d7c: Unknown result type (might be due to invalid IL or missing references) //IL_0d81: Unknown result type (might be due to invalid IL or missing references) //IL_0d87: Unknown result type (might be due to invalid IL or missing references) //IL_0d91: Unknown result type (might be due to invalid IL or missing references) //IL_0d96: Unknown result type (might be due to invalid IL or missing references) //IL_0d9c: Unknown result type (might be due to invalid IL or missing references) //IL_0da6: Unknown result type (might be due to invalid IL or missing references) //IL_0dab: Unknown result type (might be due to invalid IL or missing references) //IL_0db7: Unknown result type (might be due to invalid IL or missing references) //IL_17de: Unknown result type (might be due to invalid IL or missing references) //IL_17e4: Unknown result type (might be due to invalid IL or missing references) //IL_17e9: Unknown result type (might be due to invalid IL or missing references) //IL_17ef: Unknown result type (might be due to invalid IL or missing references) //IL_17f9: Unknown result type (might be due to invalid IL or missing references) //IL_17fe: Unknown result type (might be due to invalid IL or missing references) //IL_1804: Unknown result type (might be due to invalid IL or missing references) //IL_180e: Unknown result type (might be due to invalid IL or missing references) //IL_1813: Unknown result type (might be due to invalid IL or missing references) //IL_181e: Unknown result type (might be due to invalid IL or missing references) //IL_1824: Unknown result type (might be due to invalid IL or missing references) //IL_1829: Unknown result type (might be due to invalid IL or missing references) //IL_182f: Unknown result type (might be due to invalid IL or missing references) //IL_1839: Unknown result type (might be due to invalid IL or missing references) //IL_183e: Unknown result type (might be due to invalid IL or missing references) //IL_1844: Unknown result type (might be due to invalid IL or missing references) //IL_184e: Unknown result type (might be due to invalid IL or missing references) //IL_1853: Unknown result type (might be due to invalid IL or missing references) //IL_1859: Unknown result type (might be due to invalid IL or missing references) //IL_185e: Unknown result type (might be due to invalid IL or missing references) //IL_1864: Unknown result type (might be due to invalid IL or missing references) //IL_186e: Unknown result type (might be due to invalid IL or missing references) //IL_1873: Unknown result type (might be due to invalid IL or missing references) //IL_187f: Unknown result type (might be due to invalid IL or missing references) //IL_1597: Unknown result type (might be due to invalid IL or missing references) //IL_159d: Unknown result type (might be due to invalid IL or missing references) //IL_15a2: Unknown result type (might be due to invalid IL or missing references) //IL_15a8: Unknown result type (might be due to invalid IL or missing references) //IL_15b2: Unknown result type (might be due to invalid IL or missing references) //IL_15b7: Unknown result type (might be due to invalid IL or missing references) //IL_15bd: Unknown result type (might be due to invalid IL or missing references) //IL_15c7: Unknown result type (might be due to invalid IL or missing references) //IL_15cc: Unknown result type (might be due to invalid IL or missing references) //IL_15d7: Unknown result type (might be due to invalid IL or missing references) //IL_15dd: Unknown result type (might be due to invalid IL or missing references) //IL_15e2: Unknown result type (might be due to invalid IL or missing references) //IL_15e8: Unknown result type (might be due to invalid IL or missing references) //IL_15f2: Unknown result type (might be due to invalid IL or missing references) //IL_15f7: Unknown result type (might be due to invalid IL or missing references) //IL_15fd: Unknown result type (might be due to invalid IL or missing references) //IL_1607: Unknown result type (might be due to invalid IL or missing references) //IL_160c: Unknown result type (might be due to invalid IL or missing references) //IL_1612: Unknown result type (might be due to invalid IL or missing references) //IL_1617: Unknown result type (might be due to invalid IL or missing references) //IL_161d: Unknown result type (might be due to invalid IL or missing references) //IL_1627: Unknown result type (might be due to invalid IL or missing references) //IL_162c: Unknown result type (might be due to invalid IL or missing references) //IL_1638: Unknown result type (might be due to invalid IL or missing references) //IL_115a: Unknown result type (might be due to invalid IL or missing references) //IL_115f: Unknown result type (might be due to invalid IL or missing references) //IL_0dd1: Unknown result type (might be due to invalid IL or missing references) //IL_0dd6: Unknown result type (might be due to invalid IL or missing references) //IL_189c: Unknown result type (might be due to invalid IL or missing references) //IL_18a2: Unknown result type (might be due to invalid IL or missing references) //IL_18a7: Unknown result type (might be due to invalid IL or missing references) //IL_18ad: Unknown result type (might be due to invalid IL or missing references) //IL_18b7: Unknown result type (might be due to invalid IL or missing references) //IL_18bc: Unknown result type (might be due to invalid IL or missing references) //IL_18c2: Unknown result type (might be due to invalid IL or missing references) //IL_18cc: Unknown result type (might be due to invalid IL or missing references) //IL_18d1: Unknown result type (might be due to invalid IL or missing references) //IL_18d7: Unknown result type (might be due to invalid IL or missing references) //IL_18dc: Unknown result type (might be due to invalid IL or missing references) //IL_18e2: Unknown result type (might be due to invalid IL or missing references) //IL_18ec: Unknown result type (might be due to invalid IL or missing references) //IL_18f1: Unknown result type (might be due to invalid IL or missing references) //IL_18fc: Unknown result type (might be due to invalid IL or missing references) //IL_1902: Unknown result type (might be due to invalid IL or missing references) //IL_1907: Unknown result type (might be due to invalid IL or missing references) //IL_190d: Unknown result type (might be due to invalid IL or missing references) //IL_1917: Unknown result type (might be due to invalid IL or missing references) //IL_191c: Unknown result type (might be due to invalid IL or missing references) //IL_1922: Unknown result type (might be due to invalid IL or missing references) //IL_192c: Unknown result type (might be due to invalid IL or missing references) //IL_1931: Unknown result type (might be due to invalid IL or missing references) //IL_1937: Unknown result type (might be due to invalid IL or missing references) //IL_1941: Unknown result type (might be due to invalid IL or missing references) //IL_1946: Unknown result type (might be due to invalid IL or missing references) //IL_1952: Unknown result type (might be due to invalid IL or missing references) //IL_1655: Unknown result type (might be due to invalid IL or missing references) //IL_165b: Unknown result type (might be due to invalid IL or missing references) //IL_1660: Unknown result type (might be due to invalid IL or missing references) //IL_1666: Unknown result type (might be due to invalid IL or missing references) //IL_1670: Unknown result type (might be due to invalid IL or missing references) //IL_1675: Unknown result type (might be due to invalid IL or missing references) //IL_167b: Unknown result type (might be due to invalid IL or missing references) //IL_1685: Unknown result type (might be due to invalid IL or missing references) //IL_168a: Unknown result type (might be due to invalid IL or missing references) //IL_1690: Unknown result type (might be due to invalid IL or missing references) //IL_1695: Unknown result type (might be due to invalid IL or missing references) //IL_169b: Unknown result type (might be due to invalid IL or missing references) //IL_16a5: Unknown result type (might be due to invalid IL or missing references) //IL_16aa: Unknown result type (might be due to invalid IL or missing references) //IL_16b5: Unknown result type (might be due to invalid IL or missing references) //IL_16bb: Unknown result type (might be due to invalid IL or missing references) //IL_16c0: Unknown result type (might be due to invalid IL or missing references) //IL_16c6: Unknown result type (might be due to invalid IL or missing references) //IL_16d0: Unknown result type (might be due to invalid IL or missing references) //IL_16d5: Unknown result type (might be due to invalid IL or missing references) //IL_16db: Unknown result type (might be due to invalid IL or missing references) //IL_16e5: Unknown result type (might be due to invalid IL or missing references) //IL_16ea: Unknown result type (might be due to invalid IL or missing references) //IL_16f0: Unknown result type (might be due to invalid IL or missing references) //IL_16fa: Unknown result type (might be due to invalid IL or missing references) //IL_16ff: Unknown result type (might be due to invalid IL or missing references) //IL_170b: Unknown result type (might be due to invalid IL or missing references) //IL_12cb: Unknown result type (might be due to invalid IL or missing references) //IL_12d1: Unknown result type (might be due to invalid IL or missing references) //IL_12d6: Unknown result type (might be due to invalid IL or missing references) //IL_12dc: Unknown result type (might be due to invalid IL or missing references) //IL_12e6: Unknown result type (might be due to invalid IL or missing references) //IL_12eb: Unknown result type (might be due to invalid IL or missing references) //IL_12f1: Unknown result type (might be due to invalid IL or missing references) //IL_12fb: Unknown result type (might be due to invalid IL or missing references) //IL_1300: Unknown result type (might be due to invalid IL or missing references) //IL_1306: Unknown result type (might be due to invalid IL or missing references) //IL_1310: Unknown result type (might be due to invalid IL or missing references) //IL_1315: Unknown result type (might be due to invalid IL or missing references) //IL_131b: Unknown result type (might be due to invalid IL or missing references) //IL_1332: Unknown result type (might be due to invalid IL or missing references) //IL_1338: Unknown result type (might be due to invalid IL or missing references) //IL_134f: Unknown result type (might be due to invalid IL or missing references) //IL_1354: Unknown result type (might be due to invalid IL or missing references) //IL_135a: Unknown result type (might be due to invalid IL or missing references) //IL_135f: Unknown result type (might be due to invalid IL or missing references) //IL_1365: Unknown result type (might be due to invalid IL or missing references) //IL_136a: Unknown result type (might be due to invalid IL or missing references) //IL_1375: Unknown result type (might be due to invalid IL or missing references) //IL_1387: Unknown result type (might be due to invalid IL or missing references) //IL_1391: Unknown result type (might be due to invalid IL or missing references) //IL_1396: Unknown result type (might be due to invalid IL or missing references) //IL_13a1: Unknown result type (might be due to invalid IL or missing references) //IL_13b3: Unknown result type (might be due to invalid IL or missing references) //IL_13b8: Unknown result type (might be due to invalid IL or missing references) //IL_13bd: Unknown result type (might be due to invalid IL or missing references) //IL_13c8: Unknown result type (might be due to invalid IL or missing references) //IL_13ce: Unknown result type (might be due to invalid IL or missing references) //IL_13d3: Unknown result type (might be due to invalid IL or missing references) //IL_13d9: Unknown result type (might be due to invalid IL or missing references) //IL_13e3: Unknown result type (might be due to invalid IL or missing references) //IL_13e8: Unknown result type (might be due to invalid IL or missing references) //IL_13ee: Unknown result type (might be due to invalid IL or missing references) //IL_13f8: Unknown result type (might be due to invalid IL or missing references) //IL_13fd: Unknown result type (might be due to invalid IL or missing references) //IL_1403: Unknown result type (might be due to invalid IL or missing references) //IL_1409: Unknown result type (might be due to invalid IL or missing references) //IL_140e: Unknown result type (might be due to invalid IL or missing references) //IL_1414: Unknown result type (might be due to invalid IL or missing references) //IL_1419: Unknown result type (might be due to invalid IL or missing references) //IL_141f: Unknown result type (might be due to invalid IL or missing references) //IL_1424: Unknown result type (might be due to invalid IL or missing references) //IL_1429: Unknown result type (might be due to invalid IL or missing references) //IL_1435: Unknown result type (might be due to invalid IL or missing references) //IL_1192: Unknown result type (might be due to invalid IL or missing references) //IL_1197: Unknown result type (might be due to invalid IL or missing references) //IL_0e0b: Unknown result type (might be due to invalid IL or missing references) //IL_0e10: Unknown result type (might be due to invalid IL or missing references) //IL_1a2e: Unknown result type (might be due to invalid IL or missing references) //IL_1a34: Unknown result type (might be due to invalid IL or missing references) //IL_1a39: Unknown result type (might be due to invalid IL or missing references) //IL_1a3f: Unknown result type (might be due to invalid IL or missing references) //IL_1a49: Unknown result type (might be due to invalid IL or missing references) //IL_1a4e: Unknown result type (might be due to invalid IL or missing references) //IL_1a54: Unknown result type (might be due to invalid IL or missing references) //IL_1a5e: Unknown result type (might be due to invalid IL or missing references) //IL_1a63: Unknown result type (might be due to invalid IL or missing references) //IL_1a69: Unknown result type (might be due to invalid IL or missing references) //IL_1a6e: Unknown result type (might be due to invalid IL or missing references) //IL_1a74: Unknown result type (might be due to invalid IL or missing references) //IL_1a7e: Unknown result type (might be due to invalid IL or missing references) //IL_1a83: Unknown result type (might be due to invalid IL or missing references) //IL_1a8e: Unknown result type (might be due to invalid IL or missing references) //IL_1a94: Unknown result type (might be due to invalid IL or missing references) //IL_1a99: Unknown result type (might be due to invalid IL or missing references) //IL_1a9f: Unknown result type (might be due to invalid IL or missing references) //IL_1aa9: Unknown result type (might be due to invalid IL or missing references) //IL_1aae: Unknown result type (might be due to invalid IL or missing references) //IL_1ab4: Unknown result type (might be due to invalid IL or missing references) //IL_1abe: Unknown result type (might be due to invalid IL or missing references) //IL_1ac3: Unknown result type (might be due to invalid IL or missing references) //IL_1ac9: Unknown result type (might be due to invalid IL or missing references) //IL_1ace: Unknown result type (might be due to invalid IL or missing references) //IL_1ad4: Unknown result type (might be due to invalid IL or missing references) //IL_1ade: Unknown result type (might be due to invalid IL or missing references) //IL_1ae3: Unknown result type (might be due to invalid IL or missing references) //IL_1aef: Unknown result type (might be due to invalid IL or missing references) //IL_196c: Unknown result type (might be due to invalid IL or missing references) //IL_1971: Unknown result type (might be due to invalid IL or missing references) //IL_1725: Unknown result type (might be due to invalid IL or missing references) //IL_172a: Unknown result type (might be due to invalid IL or missing references) //IL_1490: Unknown result type (might be due to invalid IL or missing references) //IL_1495: Unknown result type (might be due to invalid IL or missing references) //IL_11e5: Unknown result type (might be due to invalid IL or missing references) //IL_11ea: Unknown result type (might be due to invalid IL or missing references) //IL_0e43: Unknown result type (might be due to invalid IL or missing references) //IL_0e48: Unknown result type (might be due to invalid IL or missing references) //IL_1d53: Unknown result type (might be due to invalid IL or missing references) //IL_1d59: Unknown result type (might be due to invalid IL or missing references) //IL_1d5e: Unknown result type (might be due to invalid IL or missing references) //IL_1d64: Unknown result type (might be due to invalid IL or missing references) //IL_1d6e: Unknown result type (might be due to invalid IL or missing references) //IL_1d73: Unknown result type (might be due to invalid IL or missing references) //IL_1d79: Unknown result type (might be due to invalid IL or missing references) //IL_1d83: Unknown result type (might be due to invalid IL or missing references) //IL_1d88: Unknown result type (might be due to invalid IL or missing references) //IL_1d93: Unknown result type (might be due to invalid IL or missing references) //IL_1d99: Unknown result type (might be due to invalid IL or missing references) //IL_1d9e: Unknown result type (might be due to invalid IL or missing references) //IL_1da4: Unknown result type (might be due to invalid IL or missing references) //IL_1dae: Unknown result type (might be due to invalid IL or missing references) //IL_1db3: Unknown result type (might be due to invalid IL or missing references) //IL_1db9: Unknown result type (might be due to invalid IL or missing references) //IL_1dc3: Unknown result type (might be due to invalid IL or missing references) //IL_1dc8: Unknown result type (might be due to invalid IL or missing references) //IL_1dce: Unknown result type (might be due to invalid IL or missing references) //IL_1dd3: Unknown result type (might be due to invalid IL or missing references) //IL_1dd9: Unknown result type (might be due to invalid IL or missing references) //IL_1de3: Unknown result type (might be due to invalid IL or missing references) //IL_1de8: Unknown result type (might be due to invalid IL or missing references) //IL_1df4: Unknown result type (might be due to invalid IL or missing references) //IL_1b0c: Unknown result type (might be due to invalid IL or missing references) //IL_1b12: Unknown result type (might be due to invalid IL or missing references) //IL_1b17: Unknown result type (might be due to invalid IL or missing references) //IL_1b1d: Unknown result type (might be due to invalid IL or missing references) //IL_1b27: Unknown result type (might be due to invalid IL or missing references) //IL_1b2c: Unknown result type (might be due to invalid IL or missing references) //IL_1b32: Unknown result type (might be due to invalid IL or missing references) //IL_1b3c: Unknown result type (might be due to invalid IL or missing references) //IL_1b41: Unknown result type (might be due to invalid IL or missing references) //IL_1b4c: Unknown result type (might be due to invalid IL or missing references) //IL_1b52: Unknown result type (might be due to invalid IL or missing references) //IL_1b57: Unknown result type (might be due to invalid IL or missing references) //IL_1b5d: Unknown result type (might be due to invalid IL or missing references) //IL_1b67: Unknown result type (might be due to invalid IL or missing references) //IL_1b6c: Unknown result type (might be due to invalid IL or missing references) //IL_1b72: Unknown result type (might be due to invalid IL or missing references) //IL_1b7c: Unknown result type (might be due to invalid IL or missing references) //IL_1b81: Unknown result type (might be due to invalid IL or missing references) //IL_1b87: Unknown result type (might be due to invalid IL or missing references) //IL_1b8c: Unknown result type (might be due to invalid IL or missing references) //IL_1b92: Unknown result type (might be due to invalid IL or missing references) //IL_1b9c: Unknown result type (might be due to invalid IL or missing references) //IL_1ba1: Unknown result type (might be due to invalid IL or missing references) //IL_1bad: Unknown result type (might be due to invalid IL or missing references) //IL_19a6: Unknown result type (might be due to invalid IL or missing references) //IL_19ab: Unknown result type (might be due to invalid IL or missing references) //IL_175f: Unknown result type (might be due to invalid IL or missing references) //IL_1764: Unknown result type (might be due to invalid IL or missing references) //IL_1462: Unknown result type (might be due to invalid IL or missing references) //IL_1467: Unknown result type (might be due to invalid IL or missing references) //IL_0e96: Unknown result type (might be due to invalid IL or missing references) //IL_0e9b: Unknown result type (might be due to invalid IL or missing references) //IL_1e11: Unknown result type (might be due to invalid IL or missing references) //IL_1e17: Unknown result type (might be due to invalid IL or missing references) //IL_1e1c: Unknown result type (might be due to invalid IL or missing references) //IL_1e22: Unknown result type (might be due to invalid IL or missing references) //IL_1e2c: Unknown result type (might be due to invalid IL or missing references) //IL_1e31: Unknown result type (might be due to invalid IL or missing references) //IL_1e37: Unknown result type (might be due to invalid IL or missing references) //IL_1e41: Unknown result type (might be due to invalid IL or missing references) //IL_1e46: Unknown result type (might be due to invalid IL or missing references) //IL_1e4c: Unknown result type (might be due to invalid IL or missing references) //IL_1e51: Unknown result type (might be due to invalid IL or missing references) //IL_1e57: Unknown result type (might be due to invalid IL or missing references) //IL_1e61: Unknown result type (might be due to invalid IL or missing references) //IL_1e66: Unknown result type (might be due to invalid IL or missing references) //IL_1e71: Unknown result type (might be due to invalid IL or missing references) //IL_1e77: Unknown result type (might be due to invalid IL or missing references) //IL_1e7c: Unknown result type (might be due to invalid IL or missing references) //IL_1e82: Unknown result type (might be due to invalid IL or missing references) //IL_1e8c: Unknown result type (might be due to invalid IL or missing references) //IL_1e91: Unknown result type (might be due to invalid IL or missing references) //IL_1e97: Unknown result type (might be due to invalid IL or missing references) //IL_1ea1: Unknown result type (might be due to invalid IL or missing references) //IL_1ea6: Unknown result type (might be due to invalid IL or missing references) //IL_1eac: Unknown result type (might be due to invalid IL or missing references) //IL_1eb6: Unknown result type (might be due to invalid IL or missing references) //IL_1ebb: Unknown result type (might be due to invalid IL or missing references) //IL_1ec7: Unknown result type (might be due to invalid IL or missing references) //IL_1bca: Unknown result type (might be due to invalid IL or missing references) //IL_1bd0: Unknown result type (might be due to invalid IL or missing references) //IL_1bd5: Unknown result type (might be due to invalid IL or missing references) //IL_1bdb: Unknown result type (might be due to invalid IL or missing references) //IL_1be5: Unknown result type (might be due to invalid IL or missing references) //IL_1bea: Unknown result type (might be due to invalid IL or missing references) //IL_1bf0: Unknown result type (might be due to invalid IL or missing references) //IL_1bfa: Unknown result type (might be due to invalid IL or missing references) //IL_1bff: Unknown result type (might be due to invalid IL or missing references) //IL_1c05: Unknown result type (might be due to invalid IL or missing references) //IL_1c0a: Unknown result type (might be due to invalid IL or missing references) //IL_1c10: Unknown result type (might be due to invalid IL or missing references) //IL_1c1a: Unknown result type (might be due to invalid IL or missing references) //IL_1c1f: Unknown result type (might be due to invalid IL or missing references) //IL_1c2a: Unknown result type (might be due to invalid IL or missing references) //IL_1c30: Unknown result type (might be due to invalid IL or missing references) //IL_1c35: Unknown result type (might be due to invalid IL or missing references) //IL_1c3b: Unknown result type (might be due to invalid IL or missing references) //IL_1c45: Unknown result type (might be due to invalid IL or missing references) //IL_1c4a: Unknown result type (might be due to invalid IL or missing references) //IL_1c50: Unknown result type (might be due to invalid IL or missing references) //IL_1c5a: Unknown result type (might be due to invalid IL or missing references) //IL_1c5f: Unknown result type (might be due to invalid IL or missing references) //IL_1c65: Unknown result type (might be due to invalid IL or missing references) //IL_1c6f: Unknown result type (might be due to invalid IL or missing references) //IL_1c74: Unknown result type (might be due to invalid IL or missing references) //IL_1c80: Unknown result type (might be due to invalid IL or missing references) //IL_19de: Unknown result type (might be due to invalid IL or missing references) //IL_19e3: Unknown result type (might be due to invalid IL or missing references) //IL_1797: Unknown result type (might be due to invalid IL or missing references) //IL_179c: Unknown result type (might be due to invalid IL or missing references) //IL_123a: Unknown result type (might be due to invalid IL or missing references) //IL_123f: Unknown result type (might be due to invalid IL or missing references) //IL_1261: Unknown result type (might be due to invalid IL or missing references) //IL_1266: Unknown result type (might be due to invalid IL or missing references) //IL_126f: Unknown result type (might be due to invalid IL or missing references) //IL_1fa3: Unknown result type (might be due to invalid IL or missing references) //IL_1fa9: Unknown result type (might be due to invalid IL or missing references) //IL_1fae: Unknown result type (might be due to invalid IL or missing references) //IL_1fb4: Unknown result type (might be due to invalid IL or missing references) //IL_1fb9: Unknown result type (might be due to invalid IL or missing references) //IL_1fbf: Unknown result type (might be due to invalid IL or missing references) //IL_1fc9: Unknown result type (might be due to invalid IL or missing references) //IL_1fce: Unknown result type (might be due to invalid IL or missing references) //IL_1fd9: Unknown result type (might be due to invalid IL or missing references) //IL_1fdf: Unknown result type (might be due to invalid IL or missing references) //IL_1fe4: Unknown result type (might be due to invalid IL or missing references) //IL_1fea: Unknown result type (might be due to invalid IL or missing references) //IL_1ff4: Unknown result type (might be due to invalid IL or missing references) //IL_1ff9: Unknown result type (might be due to invalid IL or missing references) //IL_1fff: Unknown result type (might be due to invalid IL or missing references) //IL_2009: Unknown result type (might be due to invalid IL or missing references) //IL_200e: Unknown result type (might be due to invalid IL or missing references) //IL_2014: Unknown result type (might be due to invalid IL or missing references) //IL_201e: Unknown result type (might be due to invalid IL or missing references) //IL_2023: Unknown result type (might be due to invalid IL or missing references) //IL_2029: Unknown result type (might be due to invalid IL or missing references) //IL_202e: Unknown result type (might be due to invalid IL or missing references) //IL_2034: Unknown result type (might be due to invalid IL or missing references) //IL_2039: Unknown result type (might be due to invalid IL or missing references) //IL_2045: Unknown result type (might be due to invalid IL or missing references) //IL_1ee1: Unknown result type (might be due to invalid IL or missing references) //IL_1ee6: Unknown result type (might be due to invalid IL or missing references) //IL_1c9a: Unknown result type (might be due to invalid IL or missing references) //IL_1c9f: Unknown result type (might be due to invalid IL or missing references) //IL_0eeb: Unknown result type (might be due to invalid IL or missing references) //IL_0ef0: Unknown result type (might be due to invalid IL or missing references) //IL_0f12: Unknown result type (might be due to invalid IL or missing references) //IL_0f17: Unknown result type (might be due to invalid IL or missing references) //IL_0f20: Unknown result type (might be due to invalid IL or missing references) //IL_20f2: Unknown result type (might be due to invalid IL or missing references) //IL_20f8: Unknown result type (might be due to invalid IL or missing references) //IL_20fd: Unknown result type (might be due to invalid IL or missing references) //IL_2103: Unknown result type (might be due to invalid IL or missing references) //IL_210d: Unknown result type (might be due to invalid IL or missing references) //IL_2112: Unknown result type (might be due to invalid IL or missing references) //IL_2118: Unknown result type (might be due to invalid IL or missing references) //IL_2122: Unknown result type (might be due to invalid IL or missing references) //IL_2127: Unknown result type (might be due to invalid IL or missing references) //IL_212d: Unknown result type (might be due to invalid IL or missing references) //IL_2132: Unknown result type (might be due to invalid IL or missing references) //IL_2138: Unknown result type (might be due to invalid IL or missing references) //IL_213d: Unknown result type (might be due to invalid IL or missing references) //IL_2148: Unknown result type (might be due to invalid IL or missing references) //IL_214e: Unknown result type (might be due to invalid IL or missing references) //IL_2153: Unknown result type (might be due to invalid IL or missing references) //IL_2159: Unknown result type (might be due to invalid IL or missing references) //IL_2163: Unknown result type (might be due to invalid IL or missing references) //IL_2168: Unknown result type (might be due to invalid IL or missing references) //IL_216e: Unknown result type (might be due to invalid IL or missing references) //IL_2178: Unknown result type (might be due to invalid IL or missing references) //IL_217d: Unknown result type (might be due to invalid IL or missing references) //IL_2183: Unknown result type (might be due to invalid IL or missing references) //IL_218d: Unknown result type (might be due to invalid IL or missing references) //IL_2192: Unknown result type (might be due to invalid IL or missing references) //IL_2198: Unknown result type (might be due to invalid IL or missing references) //IL_219d: Unknown result type (might be due to invalid IL or missing references) //IL_21a3: Unknown result type (might be due to invalid IL or missing references) //IL_21a8: Unknown result type (might be due to invalid IL or missing references) //IL_21ae: Unknown result type (might be due to invalid IL or missing references) //IL_21b3: Unknown result type (might be due to invalid IL or missing references) //IL_21bf: Unknown result type (might be due to invalid IL or missing references) //IL_205f: Unknown result type (might be due to invalid IL or missing references) //IL_2065: Unknown result type (might be due to invalid IL or missing references) //IL_206a: Unknown result type (might be due to invalid IL or missing references) //IL_2070: Unknown result type (might be due to invalid IL or missing references) //IL_2075: Unknown result type (might be due to invalid IL or missing references) //IL_207b: Unknown result type (might be due to invalid IL or missing references) //IL_2085: Unknown result type (might be due to invalid IL or missing references) //IL_208a: Unknown result type (might be due to invalid IL or missing references) //IL_2095: Unknown result type (might be due to invalid IL or missing references) //IL_209b: Unknown result type (might be due to invalid IL or missing references) //IL_20a0: Unknown result type (might be due to invalid IL or missing references) //IL_20a6: Unknown result type (might be due to invalid IL or missing references) //IL_20b0: Unknown result type (might be due to invalid IL or missing references) //IL_20b5: Unknown result type (might be due to invalid IL or missing references) //IL_20bb: Unknown result type (might be due to invalid IL or missing references) //IL_20c0: Unknown result type (might be due to invalid IL or missing references) //IL_20c6: Unknown result type (might be due to invalid IL or missing references) //IL_20cb: Unknown result type (might be due to invalid IL or missing references) //IL_20d7: Unknown result type (might be due to invalid IL or missing references) //IL_1f1b: Unknown result type (might be due to invalid IL or missing references) //IL_1f20: Unknown result type (might be due to invalid IL or missing references) //IL_1cd4: Unknown result type (might be due to invalid IL or missing references) //IL_1cd9: Unknown result type (might be due to invalid IL or missing references) //IL_21d9: Unknown result type (might be due to invalid IL or missing references) //IL_21df: Unknown result type (might be due to invalid IL or missing references) //IL_21e4: Unknown result type (might be due to invalid IL or missing references) //IL_21ea: Unknown result type (might be due to invalid IL or missing references) //IL_21ef: Unknown result type (might be due to invalid IL or missing references) //IL_21f5: Unknown result type (might be due to invalid IL or missing references) //IL_21fa: Unknown result type (might be due to invalid IL or missing references) //IL_2200: Unknown result type (might be due to invalid IL or missing references) //IL_220a: Unknown result type (might be due to invalid IL or missing references) //IL_220f: Unknown result type (might be due to invalid IL or missing references) //IL_2215: Unknown result type (might be due to invalid IL or missing references) //IL_221f: Unknown result type (might be due to invalid IL or missing references) //IL_2224: Unknown result type (might be due to invalid IL or missing references) //IL_222a: Unknown result type (might be due to invalid IL or missing references) //IL_2234: Unknown result type (might be due to invalid IL or missing references) //IL_2239: Unknown result type (might be due to invalid IL or missing references) //IL_223f: Unknown result type (might be due to invalid IL or missing references) //IL_2250: Unknown result type (might be due to invalid IL or missing references) //IL_1f53: Unknown result type (might be due to invalid IL or missing references) //IL_1f58: Unknown result type (might be due to invalid IL or missing references) //IL_1d0c: Unknown result type (might be due to invalid IL or missing references) //IL_1d11: Unknown result type (might be due to invalid IL or missing references) //IL_226d: Unknown result type (might be due to invalid IL or missing references) //IL_2273: Unknown result type (might be due to invalid IL or missing references) //IL_2278: Unknown result type (might be due to invalid IL or missing references) //IL_227e: Unknown result type (might be due to invalid IL or missing references) //IL_2288: Unknown result type (might be due to invalid IL or missing references) //IL_228d: Unknown result type (might be due to invalid IL or missing references) //IL_2293: Unknown result type (might be due to invalid IL or missing references) //IL_229d: Unknown result type (might be due to invalid IL or missing references) //IL_22a2: Unknown result type (might be due to invalid IL or missing references) //IL_22a8: Unknown result type (might be due to invalid IL or missing references) //IL_22b2: Unknown result type (might be due to invalid IL or missing references) //IL_22b7: Unknown result type (might be due to invalid IL or missing references) //IL_22bd: Unknown result type (might be due to invalid IL or missing references) //IL_22c2: Unknown result type (might be due to invalid IL or missing references) //IL_22c8: Unknown result type (might be due to invalid IL or missing references) //IL_22cd: Unknown result type (might be due to invalid IL or missing references) //IL_22d3: Unknown result type (might be due to invalid IL or missing references) //IL_22d8: Unknown result type (might be due to invalid IL or missing references) //IL_22e3: Unknown result type (might be due to invalid IL or missing references) //IL_22e9: Unknown result type (might be due to invalid IL or missing references) //IL_22ee: Unknown result type (might be due to invalid IL or missing references) //IL_22f4: Unknown result type (might be due to invalid IL or missing references) //IL_22fe: Unknown result type (might be due to invalid IL or missing references) //IL_2303: Unknown result type (might be due to invalid IL or missing references) //IL_2309: Unknown result type (might be due to invalid IL or missing references) //IL_2313: Unknown result type (might be due to invalid IL or missing references) //IL_2318: Unknown result type (might be due to invalid IL or missing references) //IL_231e: Unknown result type (might be due to invalid IL or missing references) //IL_2328: Unknown result type (might be due to invalid IL or missing references) //IL_232d: Unknown result type (might be due to invalid IL or missing references) //IL_2333: Unknown result type (might be due to invalid IL or missing references) //IL_2338: Unknown result type (might be due to invalid IL or missing references) //IL_233e: Unknown result type (might be due to invalid IL or missing references) //IL_2343: Unknown result type (might be due to invalid IL or missing references) //IL_2349: Unknown result type (might be due to invalid IL or missing references) //IL_234e: Unknown result type (might be due to invalid IL or missing references) //IL_2354: Unknown result type (might be due to invalid IL or missing references) //IL_2359: Unknown result type (might be due to invalid IL or missing references) //IL_2365: Unknown result type (might be due to invalid IL or missing references) //IL_23a8: Unknown result type (might be due to invalid IL or missing references) //IL_23ae: Unknown result type (might be due to invalid IL or missing references) //IL_23b3: Unknown result type (might be due to invalid IL or missing references) //IL_23b9: Unknown result type (might be due to invalid IL or missing references) //IL_23be: Unknown result type (might be due to invalid IL or missing references) //IL_23c4: Unknown result type (might be due to invalid IL or missing references) //IL_23ce: Unknown result type (might be due to invalid IL or missing references) //IL_23d3: Unknown result type (might be due to invalid IL or missing references) //IL_23de: Unknown result type (might be due to invalid IL or missing references) //IL_23e4: Unknown result type (might be due to invalid IL or missing references) //IL_23e9: Unknown result type (might be due to invalid IL or missing references) //IL_23ef: Unknown result type (might be due to invalid IL or missing references) //IL_23f9: Unknown result type (might be due to invalid IL or missing references) //IL_23fe: Unknown result type (might be due to invalid IL or missing references) //IL_2404: Unknown result type (might be due to invalid IL or missing references) //IL_240e: Unknown result type (might be due to invalid IL or missing references) //IL_2413: Unknown result type (might be due to invalid IL or missing references) //IL_2419: Unknown result type (might be due to invalid IL or missing references) //IL_2423: Unknown result type (might be due to invalid IL or missing references) //IL_2428: Unknown result type (might be due to invalid IL or missing references) //IL_242e: Unknown result type (might be due to invalid IL or missing references) //IL_2433: Unknown result type (might be due to invalid IL or missing references) //IL_2439: Unknown result type (might be due to invalid IL or missing references) //IL_243e: Unknown result type (might be due to invalid IL or missing references) //IL_244a: Unknown result type (might be due to invalid IL or missing references) //IL_24f7: Unknown result type (might be due to invalid IL or missing references) //IL_24fd: Unknown result type (might be due to invalid IL or missing references) //IL_2502: Unknown result type (might be due to invalid IL or missing references) //IL_2508: Unknown result type (might be due to invalid IL or missing references) //IL_2512: Unknown result type (might be due to invalid IL or missing references) //IL_2517: Unknown result type (might be due to invalid IL or missing references) //IL_251d: Unknown result type (might be due to invalid IL or missing references) //IL_2527: Unknown result type (might be due to invalid IL or missing references) //IL_252c: Unknown result type (might be due to invalid IL or missing references) //IL_2532: Unknown result type (might be due to invalid IL or missing references) //IL_2537: Unknown result type (might be due to invalid IL or missing references) //IL_253d: Unknown result type (might be due to invalid IL or missing references) //IL_2542: Unknown result type (might be due to invalid IL or missing references) //IL_254d: Unknown result type (might be due to invalid IL or missing references) //IL_2553: Unknown result type (might be due to invalid IL or missing references) //IL_2558: Unknown result type (might be due to invalid IL or missing references) //IL_255e: Unknown result type (might be due to invalid IL or missing references) //IL_2568: Unknown result type (might be due to invalid IL or missing references) //IL_256d: Unknown result type (might be due to invalid IL or missing references) //IL_2573: Unknown result type (might be due to invalid IL or missing references) //IL_257d: Unknown result type (might be due to invalid IL or missing references) //IL_2582: Unknown result type (might be due to invalid IL or missing references) //IL_2588: Unknown result type (might be due to invalid IL or missing references) //IL_2592: Unknown result type (might be due to invalid IL or missing references) //IL_2597: Unknown result type (might be due to invalid IL or missing references) //IL_259d: Unknown result type (might be due to invalid IL or missing references) //IL_25a2: Unknown result type (might be due to invalid IL or missing references) //IL_25a8: Unknown result type (might be due to invalid IL or missing references) //IL_25ad: Unknown result type (might be due to invalid IL or missing references) //IL_25b3: Unknown result type (might be due to invalid IL or missing references) //IL_25b8: Unknown result type (might be due to invalid IL or missing references) //IL_25c4: Unknown result type (might be due to invalid IL or missing references) //IL_2464: Unknown result type (might be due to invalid IL or missing references) //IL_246a: Unknown result type (might be due to invalid IL or missing references) //IL_246f: Unknown result type (might be due to invalid IL or missing references) //IL_2475: Unknown result type (might be due to invalid IL or missing references) //IL_247a: Unknown result type (might be due to invalid IL or missing references) //IL_2480: Unknown result type (might be due to invalid IL or missing references) //IL_248a: Unknown result type (might be due to invalid IL or missing references) //IL_248f: Unknown result type (might be due to invalid IL or missing references) //IL_249a: Unknown result type (might be due to invalid IL or missing references) //IL_24a0: Unknown result type (might be due to invalid IL or missing references) //IL_24a5: Unknown result type (might be due to invalid IL or missing references) //IL_24ab: Unknown result type (might be due to invalid IL or missing references) //IL_24b5: Unknown result type (might be due to invalid IL or missing references) //IL_24ba: Unknown result type (might be due to invalid IL or missing references) //IL_24c0: Unknown result type (might be due to invalid IL or missing references) //IL_24c5: Unknown result type (might be due to invalid IL or missing references) //IL_24cb: Unknown result type (might be due to invalid IL or missing references) //IL_24d0: Unknown result type (might be due to invalid IL or missing references) //IL_24dc: Unknown result type (might be due to invalid IL or missing references) //IL_25de: Unknown result type (might be due to invalid IL or missing references) //IL_25e4: Unknown result type (might be due to invalid IL or missing references) //IL_25e9: Unknown result type (might be due to invalid IL or missing references) //IL_25ef: Unknown result type (might be due to invalid IL or missing references) //IL_25f4: Unknown result type (might be due to invalid IL or missing references) //IL_25fa: Unknown result type (might be due to invalid IL or missing references) //IL_25ff: Unknown result type (might be due to invalid IL or missing references) //IL_2605: Unknown result type (might be due to invalid IL or missing references) //IL_260f: Unknown result type (might be due to invalid IL or missing references) //IL_2614: Unknown result type (might be due to invalid IL or missing references) //IL_261a: Unknown result type (might be due to invalid IL or missing references) //IL_2624: Unknown result type (might be due to invalid IL or missing references) //IL_2629: Unknown result type (might be due to invalid IL or missing references) //IL_262f: Unknown result type (might be due to invalid IL or missing references) //IL_2639: Unknown result type (might be due to invalid IL or missing references) //IL_263e: Unknown result type (might be due to invalid IL or missing references) //IL_2644: Unknown result type (might be due to invalid IL or missing references) //IL_2655: Unknown result type (might be due to invalid IL or missing references) //IL_2672: Unknown result type (might be due to invalid IL or missing references) //IL_2678: Unknown result type (might be due to invalid IL or missing references) //IL_267d: Unknown result type (might be due to invalid IL or missing references) //IL_2683: Unknown result type (might be due to invalid IL or missing references) //IL_268d: Unknown result type (might be due to invalid IL or missing references) //IL_2692: Unknown result type (might be due to invalid IL or missing references) //IL_2698: Unknown result type (might be due to invalid IL or missing references) //IL_26a2: Unknown result type (might be due to invalid IL or missing references) //IL_26a7: Unknown result type (might be due to invalid IL or missing references) //IL_26ad: Unknown result type (might be due to invalid IL or missing references) //IL_26b7: Unknown result type (might be due to invalid IL or missing references) //IL_26bc: Unknown result type (might be due to invalid IL or missing references) //IL_26c2: Unknown result type (might be due to invalid IL or missing references) //IL_26c7: Unknown result type (might be due to invalid IL or missing references) //IL_26cd: Unknown result type (might be due to invalid IL or missing references) //IL_26d2: Unknown result type (might be due to invalid IL or missing references) //IL_26d8: Unknown result type (might be due to invalid IL or missing references) //IL_26dd: Unknown result type (might be due to invalid IL or missing references) //IL_26e8: Unknown result type (might be due to invalid IL or missing references) //IL_26ee: Unknown result type (might be due to invalid IL or missing references) //IL_26f3: Unknown result type (might be due to invalid IL or missing references) //IL_26f9: Unknown result type (might be due to invalid IL or missing references) //IL_2703: Unknown result type (might be due to invalid IL or missing references) //IL_2708: Unknown result type (might be due to invalid IL or missing references) //IL_270e: Unknown result type (might be due to invalid IL or missing references) //IL_2718: Unknown result type (might be due to invalid IL or missing references) //IL_271d: Unknown result type (might be due to invalid IL or missing references) //IL_2723: Unknown result type (might be due to invalid IL or missing references) //IL_272d: Unknown result type (might be due to invalid IL or missing references) //IL_2732: Unknown result type (might be due to invalid IL or missing references) //IL_2738: Unknown result type (might be due to invalid IL or missing references) //IL_273d: Unknown result type (might be due to invalid IL or missing references) //IL_2743: Unknown result type (might be due to invalid IL or missing references) //IL_2748: Unknown result type (might be due to invalid IL or missing references) //IL_274e: Unknown result type (might be due to invalid IL or missing references) //IL_2753: Unknown result type (might be due to invalid IL or missing references) //IL_2759: Unknown result type (might be due to invalid IL or missing references) //IL_275e: Unknown result type (might be due to invalid IL or missing references) //IL_276a: Unknown result type (might be due to invalid IL or missing references) //IL_2c69: Unknown result type (might be due to invalid IL or missing references) //IL_2c6e: Unknown result type (might be due to invalid IL or missing references) //IL_27d3: Unknown result type (might be due to invalid IL or missing references) //IL_27d9: Unknown result type (might be due to invalid IL or missing references) //IL_27de: Unknown result type (might be due to invalid IL or missing references) //IL_27e4: Unknown result type (might be due to invalid IL or missing references) //IL_27e9: Unknown result type (might be due to invalid IL or missing references) //IL_27ef: Unknown result type (might be due to invalid IL or missing references) //IL_27f9: Unknown result type (might be due to invalid IL or missing references) //IL_27fe: Unknown result type (might be due to invalid IL or missing references) //IL_2804: Unknown result type (might be due to invalid IL or missing references) //IL_2809: Unknown result type (might be due to invalid IL or missing references) //IL_2814: Unknown result type (might be due to invalid IL or missing references) //IL_281a: Unknown result type (might be due to invalid IL or missing references) //IL_281f: Unknown result type (might be due to invalid IL or missing references) //IL_2825: Unknown result type (might be due to invalid IL or missing references) //IL_282a: Unknown result type (might be due to invalid IL or missing references) //IL_2830: Unknown result type (might be due to invalid IL or missing references) //IL_283a: Unknown result type (might be due to invalid IL or missing references) //IL_283f: Unknown result type (might be due to invalid IL or missing references) //IL_2845: Unknown result type (might be due to invalid IL or missing references) //IL_284a: Unknown result type (might be due to invalid IL or missing references) //IL_2850: Unknown result type (might be due to invalid IL or missing references) //IL_2855: Unknown result type (might be due to invalid IL or missing references) //IL_2861: Unknown result type (might be due to invalid IL or missing references) //IL_3167: Unknown result type (might be due to invalid IL or missing references) //IL_316c: Unknown result type (might be due to invalid IL or missing references) //IL_287b: Unknown result type (might be due to invalid IL or missing references) //IL_2881: Unknown result type (might be due to invalid IL or missing references) //IL_2886: Unknown result type (might be due to invalid IL or missing references) //IL_288c: Unknown result type (might be due to invalid IL or missing references) //IL_2896: Unknown result type (might be due to invalid IL or missing references) //IL_289b: Unknown result type (might be due to invalid IL or missing references) //IL_28a1: Unknown result type (might be due to invalid IL or missing references) //IL_28ab: Unknown result type (might be due to invalid IL or missing references) //IL_28b0: Unknown result type (might be due to invalid IL or missing references) //IL_28b6: Unknown result type (might be due to invalid IL or missing references) //IL_28bb: Unknown result type (might be due to invalid IL or missing references) //IL_28c6: Unknown result type (might be due to invalid IL or missing references) //IL_28cc: Unknown result type (might be due to invalid IL or missing references) //IL_28d1: Unknown result type (might be due to invalid IL or missing references) //IL_28d7: Unknown result type (might be due to invalid IL or missing references) //IL_28e1: Unknown result type (might be due to invalid IL or missing references) //IL_28e6: Unknown result type (might be due to invalid IL or missing references) //IL_28ec: Unknown result type (might be due to invalid IL or missing references) //IL_28f6: Unknown result type (might be due to invalid IL or missing references) //IL_28fb: Unknown result type (might be due to invalid IL or missing references) //IL_2901: Unknown result type (might be due to invalid IL or missing references) //IL_2906: Unknown result type (might be due to invalid IL or missing references) //IL_290c: Unknown result type (might be due to invalid IL or missing references) //IL_2911: Unknown result type (might be due to invalid IL or missing references) //IL_291d: Unknown result type (might be due to invalid IL or missing references) //IL_31a9: Unknown result type (might be due to invalid IL or missing references) //IL_31af: Unknown result type (might be due to invalid IL or missing references) //IL_31b4: Unknown result type (might be due to invalid IL or missing references) //IL_31bf: Unknown result type (might be due to invalid IL or missing references) //IL_31c5: Unknown result type (might be due to invalid IL or missing references) //IL_31ca: Unknown result type (might be due to invalid IL or missing references) //IL_31d5: Unknown result type (might be due to invalid IL or missing references) //IL_31df: Unknown result type (might be due to invalid IL or missing references) //IL_31e4: Unknown result type (might be due to invalid IL or missing references) //IL_31ef: Unknown result type (might be due to invalid IL or missing references) //IL_31f5: Unknown result type (might be due to invalid IL or missing references) //IL_31fa: Unknown result type (might be due to invalid IL or missing references) //IL_3205: Unknown result type (might be due to invalid IL or missing references) //IL_320b: Unknown result type (might be due to invalid IL or missing references) //IL_3210: Unknown result type (might be due to invalid IL or missing references) //IL_321b: Unknown result type (might be due to invalid IL or missing references) //IL_3225: Unknown result type (might be due to invalid IL or missing references) //IL_322a: Unknown result type (might be due to invalid IL or missing references) //IL_3230: Unknown result type (might be due to invalid IL or missing references) //IL_3235: Unknown result type (might be due to invalid IL or missing references) //IL_323b: Unknown result type (might be due to invalid IL or missing references) //IL_3240: Unknown result type (might be due to invalid IL or missing references) //IL_324c: Unknown result type (might be due to invalid IL or missing references) //IL_2cd1: Unknown result type (might be due to invalid IL or missing references) //IL_2cd7: Unknown result type (might be due to invalid IL or missing references) //IL_2cdc: Unknown result type (might be due to invalid IL or missing references) //IL_2ce2: Unknown result type (might be due to invalid IL or missing references) //IL_2ce7: Unknown result type (might be due to invalid IL or missing references) //IL_2ced: Unknown result type (might be due to invalid IL or missing references) //IL_2cf7: Unknown result type (might be due to invalid IL or missing references) //IL_2cfc: Unknown result type (might be due to invalid IL or missing references) //IL_2d02: Unknown result type (might be due to invalid IL or missing references) //IL_2d07: Unknown result type (might be due to invalid IL or missing references) //IL_2d12: Unknown result type (might be due to invalid IL or missing references) //IL_2d18: Unknown result type (might be due to invalid IL or missing references) //IL_2d1d: Unknown result type (might be due to invalid IL or missing references) //IL_2d23: Unknown result type (might be due to invalid IL or missing references) //IL_2d28: Unknown result type (might be due to invalid IL or missing references) //IL_2d2e: Unknown result type (might be due to invalid IL or missing references) //IL_2d38: Unknown result type (might be due to invalid IL or missing references) //IL_2d3d: Unknown result type (might be due to invalid IL or missing references) //IL_2d43: Unknown result type (might be due to invalid IL or missing references) //IL_2d48: Unknown result type (might be due to invalid IL or missing references) //IL_2d4e: Unknown result type (might be due to invalid IL or missing references) //IL_2d53: Unknown result type (might be due to invalid IL or missing references) //IL_2d5f: Unknown result type (might be due to invalid IL or missing references) //IL_2937: Unknown result type (might be due to invalid IL or missing references) //IL_293d: Unknown result type (might be due to invalid IL or missing references) //IL_2942: Unknown result type (might be due to invalid IL or missing references) //IL_2948: Unknown result type (might be due to invalid IL or missing references) //IL_2952: Unknown result type (might be due to invalid IL or missing references) //IL_2957: Unknown result type (might be due to invalid IL or missing references) //IL_295d: Unknown result type (might be due to invalid IL or missing references) //IL_2967: Unknown result type (might be due to invalid IL or missing references) //IL_296c: Unknown result type (might be due to invalid IL or missing references) //IL_2972: Unknown result type (might be due to invalid IL or missing references) //IL_2977: Unknown result type (might be due to invalid IL or missing references) //IL_2982: Unknown result type (might be due to invalid IL or missing references) //IL_2988: Unknown result type (might be due to invalid IL or missing references) //IL_298d: Unknown result type (might be due to invalid IL or missing references) //IL_2993: Unknown result type (might be due to invalid IL or missing references) //IL_299d: Unknown result type (might be due to invalid IL or missing references) //IL_29a2: Unknown result type (might be due to invalid IL or missing references) //IL_29a8: Unknown result type (might be due to invalid IL or missing references) //IL_29b2: Unknown result type (might be due to invalid IL or missing references) //IL_29b7: Unknown result type (might be due to invalid IL or missing references) //IL_29bd: Unknown result type (might be due to invalid IL or missing references) //IL_29c2: Unknown result type (might be due to invalid IL or missing references) //IL_29c8: Unknown result type (might be due to invalid IL or missing references) //IL_29cd: Unknown result type (might be due to invalid IL or missing references) //IL_29d9: Unknown result type (might be due to invalid IL or missing references) //IL_3403: Unknown result type (might be due to invalid IL or missing references) //IL_3409: Unknown result type (might be due to invalid IL or missing references) //IL_340e: Unknown result type (might be due to invalid IL or missing references) //IL_3414: Unknown result type (might be due to invalid IL or missing references) //IL_3419: Unknown result type (might be due to invalid IL or missing references) //IL_3424: Unknown result type (might be due to invalid IL or missing references) //IL_342a: Unknown result type (might be due to invalid IL or missing references) //IL_342f: Unknown result type (might be due to invalid IL or missing references) //IL_3435: Unknown result type (might be due to invalid IL or missing references) //IL_343a: Unknown result type (might be due to invalid IL or missing references) //IL_3440: Unknown result type (might be due to invalid IL or missing references) //IL_344a: Unknown result type (might be due to invalid IL or missing references) //IL_344f: Unknown result type (might be due to invalid IL or missing references) //IL_3455: Unknown result type (might be due to invalid IL or missing references) //IL_345f: Unknown result type (might be due to invalid IL or missing references) //IL_3464: Unknown result type (might be due to invalid IL or missing references) //IL_346a: Unknown result type (might be due to invalid IL or missing references) //IL_3470: Unknown result type (might be due to invalid IL or missing references) //IL_3475: Unknown result type (might be due to invalid IL or missing references) //IL_347a: Unknown result type (might be due to invalid IL or missing references) //IL_3486: Unknown result type (might be due to invalid IL or missing references) //IL_3269: Unknown result type (might be due to invalid IL or missing references) //IL_326f: Unknown result type (might be due to invalid IL or missing references) //IL_3274: Unknown result type (might be due to invalid IL or missing references) //IL_327f: Unknown result type (might be due to invalid IL or missing references) //IL_3285: Unknown result type (might be due to invalid IL or missing references) //IL_328a: Unknown result type (might be due to invalid IL or missing references) //IL_3295: Unknown result type (might be due to invalid IL or missing references) //IL_329f: Unknown result type (might be due to invalid IL or missing references) //IL_32a4: Unknown result type (might be due to invalid IL or missing references) //IL_32af: Unknown result type (might be due to invalid IL or missing references) //IL_32b5: Unknown result type (might be due to invalid IL or missing references) //IL_32ba: Unknown result type (might be due to invalid IL or missing references) //IL_32c5: Unknown result type (might be due to invalid IL or missing references) //IL_32cb: Unknown result type (might be due to invalid IL or missing references) //IL_32d0: Unknown result type (might be due to invalid IL or missing references) //IL_32db: Unknown result type (might be due to invalid IL or missing references) //IL_32e5: Unknown result type (might be due to invalid IL or missing references) //IL_32ea: Unknown result type (might be due to invalid IL or missing references) //IL_32f0: Unknown result type (might be due to invalid IL or missing references) //IL_32fa: Unknown result type (might be due to invalid IL or missing references) //IL_32ff: Unknown result type (might be due to invalid IL or missing references) //IL_3305: Unknown result type (might be due to invalid IL or missing references) //IL_330a: Unknown result type (might be due to invalid IL or missing references) //IL_3316: Unknown result type (might be due to invalid IL or missing references) //IL_2d79: Unknown result type (might be due to invalid IL or missing references) //IL_2d7f: Unknown result type (might be due to invalid IL or missing references) //IL_2d84: Unknown result type (might be due to invalid IL or missing references) //IL_2d8a: Unknown result type (might be due to invalid IL or missing references) //IL_2d94: Unknown result type (might be due to invalid IL or missing references) //IL_2d99: Unknown result type (might be due to invalid IL or missing references) //IL_2d9f: Unknown result type (might be due to invalid IL or missing references) //IL_2da9: Unknown result type (might be due to invalid IL or missing references) //IL_2dae: Unknown result type (might be due to invalid IL or missing references) //IL_2db4: Unknown result type (might be due to invalid IL or missing references) //IL_2db9: Unknown result type (might be due to invalid IL or missing references) //IL_2dc4: Unknown result type (might be due to invalid IL or missing references) //IL_2dca: Unknown result type (might be due to invalid IL or missing references) //IL_2dcf: Unknown result type (might be due to invalid IL or missing references) //IL_2dd5: Unknown result type (might be due to invalid IL or missing references) //IL_2ddf: Unknown result type (might be due to invalid IL or missing references) //IL_2de4: Unknown result type (might be due to invalid IL or missing references) //IL_2dea: Unknown result type (might be due to invalid IL or missing references) //IL_2df4: Unknown result type (might be due to invalid IL or missing references) //IL_2df9: Unknown result type (might be due to invalid IL or missing references) //IL_2dff: Unknown result type (might be due to invalid IL or missing references) //IL_2e04: Unknown result type (might be due to invalid IL or missing references) //IL_2e0a: Unknown result type (might be due to invalid IL or missing references) //IL_2e0f: Unknown result type (might be due to invalid IL or missing references) //IL_2e1b: Unknown result type (might be due to invalid IL or missing references) //IL_29f3: Unknown result type (might be due to invalid IL or missing references) //IL_29f9: Unknown result type (might be due to invalid IL or missing references) //IL_29fe: Unknown result type (might be due to invalid IL or missing references) //IL_2a04: Unknown result type (might be due to invalid IL or missing references) //IL_2a0e: Unknown result type (might be due to invalid IL or missing references) //IL_2a13: Unknown result type (might be due to invalid IL or missing references) //IL_2a19: Unknown result type (might be due to invalid IL or missing references) //IL_2a23: Unknown result type (might be due to invalid IL or missing references) //IL_2a28: Unknown result type (might be due to invalid IL or missing references) //IL_2a2e: Unknown result type (might be due to invalid IL or missing references) //IL_2a33: Unknown result type (might be due to invalid IL or missing references) //IL_2a3e: Unknown result type (might be due to invalid IL or missing references) //IL_2a44: Unknown result type (might be due to invalid IL or missing references) //IL_2a49: Unknown result type (might be due to invalid IL or missing references) //IL_2a4f: Unknown result type (might be due to invalid IL or missing references) //IL_2a59: Unknown result type (might be due to invalid IL or missing references) //IL_2a5e: Unknown result type (might be due to invalid IL or missing references) //IL_2a64: Unknown result type (might be due to invalid IL or missing references) //IL_2a6e: Unknown result type (might be due to invalid IL or missing references) //IL_2a73: Unknown result type (might be due to invalid IL or missing references) //IL_2a79: Unknown result type (might be due to invalid IL or missing references) //IL_2a7e: Unknown result type (might be due to invalid IL or missing references) //IL_2a84: Unknown result type (might be due to invalid IL or missing references) //IL_2a89: Unknown result type (might be due to invalid IL or missing references) //IL_2a95: Unknown result type (might be due to invalid IL or missing references) //IL_34a0: Unknown result type (might be due to invalid IL or missing references) //IL_34a6: Unknown result type (might be due to invalid IL or missing references) //IL_34ab: Unknown result type (might be due to invalid IL or missing references) //IL_34b1: Unknown result type (might be due to invalid IL or missing references) //IL_34b6: Unknown result type (might be due to invalid IL or missing references) //IL_34bc: Unknown result type (might be due to invalid IL or missing references) //IL_34c6: Unknown result type (might be due to invalid IL or missing references) //IL_34cb: Unknown result type (might be due to invalid IL or missing references) //IL_34d1: Unknown result type (might be due to invalid IL or missing references) //IL_34db: Unknown result type (might be due to invalid IL or missing references) //IL_34e0: Unknown result type (might be due to invalid IL or missing references) //IL_34e6: Unknown result type (might be due to invalid IL or missing references) //IL_34ec: Unknown result type (might be due to invalid IL or missing references) //IL_34f1: Unknown result type (might be due to invalid IL or missing references) //IL_34f6: Unknown result type (might be due to invalid IL or missing references) //IL_3501: Unknown result type (might be due to invalid IL or missing references) //IL_3507: Unknown result type (might be due to invalid IL or missing references) //IL_350c: Unknown result type (might be due to invalid IL or missing references) //IL_3512: Unknown result type (might be due to invalid IL or missing references) //IL_3517: Unknown result type (might be due to invalid IL or missing references) //IL_351d: Unknown result type (might be due to invalid IL or missing references) //IL_3522: Unknown result type (might be due to invalid IL or missing references) //IL_3528: Unknown result type (might be due to invalid IL or missing references) //IL_3532: Unknown result type (might be due to invalid IL or missing references) //IL_3537: Unknown result type (might be due to invalid IL or missing references) //IL_353d: Unknown result type (might be due to invalid IL or missing references) //IL_3543: Unknown result type (might be due to invalid IL or missing references) //IL_3548: Unknown result type (might be due to invalid IL or missing references) //IL_354d: Unknown result type (might be due to invalid IL or missing references) //IL_3559: Unknown result type (might be due to invalid IL or missing references) //IL_3330: Unknown result type (might be due to invalid IL or missing references) //IL_3336: Unknown result type (might be due to invalid IL or missing references) //IL_333b: Unknown result type (might be due to invalid IL or missing references) //IL_3346: Unknown result type (might be due to invalid IL or missing references) //IL_334c: Unknown result type (might be due to invalid IL or missing references) //IL_3351: Unknown result type (might be due to invalid IL or missing references) //IL_335c: Unknown result type (might be due to invalid IL or missing references) //IL_3366: Unknown result type (might be due to invalid IL or missing references) //IL_336b: Unknown result type (might be due to invalid IL or missing references) //IL_3376: Unknown result type (might be due to invalid IL or missing references) //IL_337c: Unknown result type (might be due to invalid IL or missing references) //IL_3381: Unknown result type (might be due to invalid IL or missing references) //IL_338c: Unknown result type (might be due to invalid IL or missing references) //IL_3392: Unknown result type (might be due to invalid IL or missing references) //IL_3397: Unknown result type (might be due to invalid IL or missing references) //IL_33a2: Unknown result type (might be due to invalid IL or missing references) //IL_33ac: Unknown result type (might be due to invalid IL or missing references) //IL_33b1: Unknown result type (might be due to invalid IL or missing references) //IL_33b7: Unknown result type (might be due to invalid IL or missing references) //IL_33c1: Unknown result type (might be due to invalid IL or missing references) //IL_33c6: Unknown result type (might be due to invalid IL or missing references) //IL_33cc: Unknown result type (might be due to invalid IL or missing references) //IL_33d1: Unknown result type (might be due to invalid IL or missing references) //IL_33dd: Unknown result type (might be due to invalid IL or missing references) //IL_2e35: Unknown result type (might be due to invalid IL or missing references) //IL_2e3b: Unknown result type (might be due to invalid IL or missing references) //IL_2e40: Unknown result type (might be due to invalid IL or missing references) //IL_2e46: Unknown result type (might be due to invalid IL or missing references) //IL_2e50: Unknown result type (might be due to invalid IL or missing references) //IL_2e55: Unknown result type (might be due to invalid IL or missing references) //IL_2e5b: Unknown result type (might be due to invalid IL or missing references) //IL_2e65: Unknown result type (might be due to invalid IL or missing references) //IL_2e6a: Unknown result type (might be due to invalid IL or missing references) //IL_2e70: Unknown result type (might be due to invalid IL or missing references) //IL_2e75: Unknown result type (might be due to invalid IL or missing references) //IL_2e80: Unknown result type (might be due to invalid IL or missing references) //IL_2e86: Unknown result type (might be due to invalid IL or missing references) //IL_2e8b: Unknown result type (might be due to invalid IL or missing references) //IL_2e91: Unknown result type (might be due to invalid IL or missing references) //IL_2e9b: Unknown result type (might be due to invalid IL or missing references) //IL_2ea0: Unknown result type (might be due to invalid IL or missing references) //IL_2ea6: Unknown result type (might be due to invalid IL or missing references) //IL_2eb0: Unknown result type (might be due to invalid IL or missing references) //IL_2eb5: Unknown result type (might be due to invalid IL or missing references) //IL_2ebb: Unknown result type (might be due to invalid IL or missing references) //IL_2ec0: Unknown result type (might be due to invalid IL or missing references) //IL_2ec6: Unknown result type (might be due to invalid IL or missing references) //IL_2ecb: Unknown result type (might be due to invalid IL or missing references) //IL_2ed7: Unknown result type (might be due to invalid IL or missing references) //IL_2aaf: Unknown result type (might be due to invalid IL or missing references) //IL_2ab5: Unknown result type (might be due to invalid IL or missing references) //IL_2aba: Unknown result type (might be due to invalid IL or missing references) //IL_2ac0: Unknown result type (might be due to invalid IL or missing references) //IL_2aca: Unknown result type (might be due to invalid IL or missing references) //IL_2acf: Unknown result type (might be due to invalid IL or missing references) //IL_2ad5: Unknown result type (might be due to invalid IL or missing references) //IL_2ada: Unknown result type (might be due to invalid IL or missing references) //IL_2ae0: Unknown result type (might be due to invalid IL or missing references) //IL_2ae5: Unknown result type (might be due to invalid IL or missing references) //IL_2aeb: Unknown result type (might be due to invalid IL or missing references) //IL_2af0: Unknown result type (might be due to invalid IL or missing references) //IL_2af6: Unknown result type (might be due to invalid IL or missing references) //IL_2afb: Unknown result type (might be due to invalid IL or missing references) //IL_2b06: Unknown result type (might be due to invalid IL or missing references) //IL_2b0c: Unknown result type (might be due to invalid IL or missing references) //IL_2b11: Unknown result type (might be due to invalid IL or missing references) //IL_2b17: Unknown result type (might be due to invalid IL or missing references) //IL_2b21: Unknown result type (might be due to invalid IL or missing references) //IL_2b26: Unknown result type (might be due to invalid IL or missing references) //IL_2b2c: Unknown result type (might be due to invalid IL or missing references) //IL_2b31: Unknown result type (might be due to invalid IL or missing references) //IL_2b37: Unknown result type (might be due to invalid IL or missing references) //IL_2b3c: Unknown result type (might be due to invalid IL or missing references) //IL_2b42: Unknown result type (might be due to invalid IL or missing references) //IL_2b47: Unknown result type (might be due to invalid IL or missing references) //IL_2b4d: Unknown result type (might be due to invalid IL or missing references) //IL_2b52: Unknown result type (might be due to invalid IL or missing references) //IL_2b5e: Unknown result type (might be due to invalid IL or missing references) //IL_373e: Unknown result type (might be due to invalid IL or missing references) //IL_3744: Unknown result type (might be due to invalid IL or missing references) //IL_3749: Unknown result type (might be due to invalid IL or missing references) //IL_374f: Unknown result type (might be due to invalid IL or missing references) //IL_3754: Unknown result type (might be due to invalid IL or missing references) //IL_375a: Unknown result type (might be due to invalid IL or missing references) //IL_3764: Unknown result type (might be due to invalid IL or missing references) //IL_3769: Unknown result type (might be due to invalid IL or missing references) //IL_3774: Unknown result type (might be due to invalid IL or missing references) //IL_377a: Unknown result type (might be due to invalid IL or missing references) //IL_377f: Unknown result type (might be due to invalid IL or missing references) //IL_3785: Unknown result type (might be due to invalid IL or missing references) //IL_378a: Unknown result type (might be due to invalid IL or missing references) //IL_3790: Unknown result type (might be due to invalid IL or missing references) //IL_379a: Unknown result type (might be due to invalid IL or missing references) //IL_379f: Unknown result type (might be due to invalid IL or missing references) //IL_37a5: Unknown result type (might be due to invalid IL or missing references) //IL_37af: Unknown result type (might be due to invalid IL or missing references) //IL_37b4: Unknown result type (might be due to invalid IL or missing references) //IL_37ba: Unknown result type (might be due to invalid IL or missing references) //IL_37c0: Unknown result type (might be due to invalid IL or missing references) //IL_37c5: Unknown result type (might be due to invalid IL or missing references) //IL_37ca: Unknown result type (might be due to invalid IL or missing references) //IL_37d0: Unknown result type (might be due to invalid IL or missing references) //IL_37da: Unknown result type (might be due to invalid IL or missing references) //IL_37df: Unknown result type (might be due to invalid IL or missing references) //IL_37eb: Unknown result type (might be due to invalid IL or missing references) //IL_3581: Unknown result type (might be due to invalid IL or missing references) //IL_3587: Unknown result type (might be due to invalid IL or missing references) //IL_358c: Unknown result type (might be due to invalid IL or missing references) //IL_3592: Unknown result type (might be due to invalid IL or missing references) //IL_359c: Unknown result type (might be due to invalid IL or missing references) //IL_35a1: Unknown result type (might be due to invalid IL or missing references) //IL_35a7: Unknown result type (might be due to invalid IL or missing references) //IL_35b1: Unknown result type (might be due to invalid IL or missing references) //IL_35b6: Unknown result type (might be due to invalid IL or missing references) //IL_35bc: Unknown result type (might be due to invalid IL or missing references) //IL_35c6: Unknown result type (might be due to invalid IL or missing references) //IL_35cb: Unknown result type (might be due to invalid IL or missing references) //IL_35d1: Unknown result type (might be due to invalid IL or missing references) //IL_35e8: Unknown result type (might be due to invalid IL or missing references) //IL_35ee: Unknown result type (might be due to invalid IL or missing references) //IL_3605: Unknown result type (might be due to invalid IL or missing references) //IL_360a: Unknown result type (might be due to invalid IL or missing references) //IL_3610: Unknown result type (might be due to invalid IL or missing references) //IL_3615: Unknown result type (might be due to invalid IL or missing references) //IL_361b: Unknown result type (might be due to invalid IL or missing references) //IL_3620: Unknown result type (might be due to invalid IL or missing references) //IL_362b: Unknown result type (might be due to invalid IL or missing references) //IL_363d: Unknown result type (might be due to invalid IL or missing references) //IL_3647: Unknown result type (might be due to invalid IL or missing references) //IL_364c: Unknown result type (might be due to invalid IL or missing references) //IL_3657: Unknown result type (might be due to invalid IL or missing references) //IL_3669: Unknown result type (might be due to invalid IL or missing references) //IL_366e: Unknown result type (might be due to invalid IL or missing references) //IL_3673: Unknown result type (might be due to invalid IL or missing references) //IL_367e: Unknown result type (might be due to invalid IL or missing references) //IL_3684: Unknown result type (might be due to invalid IL or missing references) //IL_3689: Unknown result type (might be due to invalid IL or missing references) //IL_368f: Unknown result type (might be due to invalid IL or missing references) //IL_3699: Unknown result type (might be due to invalid IL or missing references) //IL_369e: Unknown result type (might be due to invalid IL or missing references) //IL_36a4: Unknown result type (might be due to invalid IL or missing references) //IL_36ae: Unknown result type (might be due to invalid IL or missing references) //IL_36b3: Unknown result type (might be due to invalid IL or missing references) //IL_36b9: Unknown result type (might be due to invalid IL or missing references) //IL_36bf: Unknown result type (might be due to invalid IL or missing references) //IL_36c4: Unknown result type (might be due to invalid IL or missing references) //IL_36ca: Unknown result type (might be due to invalid IL or missing references) //IL_36cf: Unknown result type (might be due to invalid IL or missing references) //IL_36d5: Unknown result type (might be due to invalid IL or missing references) //IL_36da: Unknown result type (might be due to invalid IL or missing references) //IL_36df: Unknown result type (might be due to invalid IL or missing references) //IL_36eb: Unknown result type (might be due to invalid IL or missing references) //IL_2ef1: Unknown result type (might be due to invalid IL or missing references) //IL_2ef7: Unknown result type (might be due to invalid IL or missing references) //IL_2efc: Unknown result type (might be due to invalid IL or missing references) //IL_2f02: Unknown result type (might be due to invalid IL or missing references) //IL_2f0c: Unknown result type (might be due to invalid IL or missing references) //IL_2f11: Unknown result type (might be due to invalid IL or missing references) //IL_2f17: Unknown result type (might be due to invalid IL or missing references) //IL_2f21: Unknown result type (might be due to invalid IL or missing references) //IL_2f26: Unknown result type (might be due to invalid IL or missing references) //IL_2f2c: Unknown result type (might be due to invalid IL or missing references) //IL_2f31: Unknown result type (might be due to invalid IL or missing references) //IL_2f3c: Unknown result type (might be due to invalid IL or missing references) //IL_2f42: Unknown result type (might be due to invalid IL or missing references) //IL_2f47: Unknown result type (might be due to invalid IL or missing references) //IL_2f4d: Unknown result type (might be due to invalid IL or missing references) //IL_2f57: Unknown result type (might be due to invalid IL or missing references) //IL_2f5c: Unknown result type (might be due to invalid IL or missing references) //IL_2f62: Unknown result type (might be due to invalid IL or missing references) //IL_2f6c: Unknown result type (might be due to invalid IL or missing references) //IL_2f71: Unknown result type (might be due to invalid IL or missing references) //IL_2f77: Unknown result type (might be due to invalid IL or missing references) //IL_2f7c: Unknown result type (might be due to invalid IL or missing references) //IL_2f82: Unknown result type (might be due to invalid IL or missing references) //IL_2f87: Unknown result type (might be due to invalid IL or missing references) //IL_2f93: Unknown result type (might be due to invalid IL or missing references) //IL_2b7b: Unknown result type (might be due to invalid IL or missing references) //IL_2b81: Unknown result type (might be due to invalid IL or missing references) //IL_2b86: Unknown result type (might be due to invalid IL or missing references) //IL_2b8c: Unknown result type (might be due to invalid IL or missing references) //IL_2b96: Unknown result type (might be due to invalid IL or missing references) //IL_2b9b: Unknown result type (might be due to invalid IL or missing references) //IL_2ba1: Unknown result type (might be due to invalid IL or missing references) //IL_2bab: Unknown result type (might be due to invalid IL or missing references) //IL_2bb0: Unknown result type (might be due to invalid IL or missing references) //IL_2bb6: Unknown result type (might be due to invalid IL or missing references) //IL_2bbb: Unknown result type (might be due to invalid IL or missing references) //IL_2bc1: Unknown result type (might be due to invalid IL or missing references) //IL_2bc6: Unknown result type (might be due to invalid IL or missing references) //IL_2bcc: Unknown result type (might be due to invalid IL or missing references) //IL_2bd1: Unknown result type (might be due to invalid IL or missing references) //IL_2bdc: Unknown result type (might be due to invalid IL or missing references) //IL_2be2: Unknown result type (might be due to invalid IL or missing references) //IL_2be7: Unknown result type (might be due to invalid IL or missing references) //IL_2bed: Unknown result type (might be due to invalid IL or missing references) //IL_2bf7: Unknown result type (might be due to invalid IL or missing references) //IL_2bfc: Unknown result type (might be due to invalid IL or missing references) //IL_2c02: Unknown result type (might be due to invalid IL or missing references) //IL_2c0c: Unknown result type (might be due to invalid IL or missing references) //IL_2c11: Unknown result type (might be due to invalid IL or missing references) //IL_2c17: Unknown result type (might be due to invalid IL or missing references) //IL_2c1c: Unknown result type (might be due to invalid IL or missing references) //IL_2c22: Unknown result type (might be due to invalid IL or missing references) //IL_2c27: Unknown result type (might be due to invalid IL or missing references) //IL_2c2d: Unknown result type (might be due to invalid IL or missing references) //IL_2c32: Unknown result type (might be due to invalid IL or missing references) //IL_2c3e: Unknown result type (might be due to invalid IL or missing references) //IL_3805: Unknown result type (might be due to invalid IL or missing references) //IL_380b: Unknown result type (might be due to invalid IL or missing references) //IL_3810: Unknown result type (might be due to invalid IL or missing references) //IL_3816: Unknown result type (might be due to invalid IL or missing references) //IL_381b: Unknown result type (might be due to invalid IL or missing references) //IL_3821: Unknown result type (might be due to invalid IL or missing references) //IL_382b: Unknown result type (might be due to invalid IL or missing references) //IL_3830: Unknown result type (might be due to invalid IL or missing references) //IL_3836: Unknown result type (might be due to invalid IL or missing references) //IL_3840: Unknown result type (might be due to invalid IL or missing references) //IL_3845: Unknown result type (might be due to invalid IL or missing references) //IL_384b: Unknown result type (might be due to invalid IL or missing references) //IL_3851: Unknown result type (might be due to invalid IL or missing references) //IL_3856: Unknown result type (might be due to invalid IL or missing references) //IL_385b: Unknown result type (might be due to invalid IL or missing references) //IL_3861: Unknown result type (might be due to invalid IL or missing references) //IL_386b: Unknown result type (might be due to invalid IL or missing references) //IL_3870: Unknown result type (might be due to invalid IL or missing references) //IL_387b: Unknown result type (might be due to invalid IL or missing references) //IL_3881: Unknown result type (might be due to invalid IL or missing references) //IL_3886: Unknown result type (might be due to invalid IL or missing references) //IL_388c: Unknown result type (might be due to invalid IL or missing references) //IL_3891: Unknown result type (might be due to invalid IL or missing references) //IL_3897: Unknown result type (might be due to invalid IL or missing references) //IL_389c: Unknown result type (might be due to invalid IL or missing references) //IL_38a2: Unknown result type (might be due to invalid IL or missing references) //IL_38ac: Unknown result type (might be due to invalid IL or missing references) //IL_38b1: Unknown result type (might be due to invalid IL or missing references) //IL_38b7: Unknown result type (might be due to invalid IL or missing references) //IL_38bd: Unknown result type (might be due to invalid IL or missing references) //IL_38c2: Unknown result type (might be due to invalid IL or missing references) //IL_38c7: Unknown result type (might be due to invalid IL or missing references) //IL_38cd: Unknown result type (might be due to invalid IL or missing references) //IL_38d7: Unknown result type (might be due to invalid IL or missing references) //IL_38dc: Unknown result type (might be due to invalid IL or missing references) //IL_38e8: Unknown result type (might be due to invalid IL or missing references) //IL_2fad: Unknown result type (might be due to invalid IL or missing references) //IL_2fb3: Unknown result type (might be due to invalid IL or missing references) //IL_2fb8: Unknown result type (might be due to invalid IL or missing references) //IL_2fbe: Unknown result type (might be due to invalid IL or missing references) //IL_2fc8: Unknown result type (might be due to invalid IL or missing references) //IL_2fcd: Unknown result type (might be due to invalid IL or missing references) //IL_2fd3: Unknown result type (might be due to invalid IL or missing references) //IL_2fd8: Unknown result type (might be due to invalid IL or missing references) //IL_2fde: Unknown result type (might be due to invalid IL or missing references) //IL_2fe3: Unknown result type (might be due to invalid IL or missing references) //IL_2fe9: Unknown result type (might be due to invalid IL or missing references) //IL_2fee: Unknown result type (might be due to invalid IL or missing references) //IL_2ff4: Unknown result type (might be due to invalid IL or missing references) //IL_2ff9: Unknown result type (might be due to invalid IL or missing references) //IL_3004: Unknown result type (might be due to invalid IL or missing references) //IL_300a: Unknown result type (might be due to invalid IL or missing references) //IL_300f: Unknown result type (might be due to invalid IL or missing references) //IL_3015: Unknown result type (might be due to invalid IL or missing references) //IL_301f: Unknown result type (might be due to invalid IL or missing references) //IL_3024: Unknown result type (might be due to invalid IL or missing references) //IL_302a: Unknown result type (might be due to invalid IL or missing references) //IL_302f: Unknown result type (might be due to invalid IL or missing references) //IL_3035: Unknown result type (might be due to invalid IL or missing references) //IL_303a: Unknown result type (might be due to invalid IL or missing references) //IL_3040: Unknown result type (might be due to invalid IL or missing references) //IL_3045: Unknown result type (might be due to invalid IL or missing references) //IL_304b: Unknown result type (might be due to invalid IL or missing references) //IL_3050: Unknown result type (might be due to invalid IL or missing references) //IL_305c: Unknown result type (might be due to invalid IL or missing references) //IL_3ae6: Unknown result type (might be due to invalid IL or missing references) //IL_3aec: Unknown result type (might be due to invalid IL or missing references) //IL_3af1: Unknown result type (might be due to invalid IL or missing references) //IL_3af7: Unknown result type (might be due to invalid IL or missing references) //IL_3afc: Unknown result type (might be due to invalid IL or missing references) //IL_3b02: Unknown result type (might be due to invalid IL or missing references) //IL_3b0c: Unknown result type (might be due to invalid IL or missing references) //IL_3b11: Unknown result type (might be due to invalid IL or missing references) //IL_3b1c: Unknown result type (might be due to invalid IL or missing references) //IL_3b22: Unknown result type (might be due to invalid IL or missing references) //IL_3b27: Unknown result type (might be due to invalid IL or missing references) //IL_3b2d: Unknown result type (might be due to invalid IL or missing references) //IL_3b32: Unknown result type (might be due to invalid IL or missing references) //IL_3b38: Unknown result type (might be due to invalid IL or missing references) //IL_3b42: Unknown result type (might be due to invalid IL or missing references) //IL_3b47: Unknown result type (might be due to invalid IL or missing references) //IL_3b4d: Unknown result type (might be due to invalid IL or missing references) //IL_3b57: Unknown result type (might be due to invalid IL or missing references) //IL_3b5c: Unknown result type (might be due to invalid IL or missing references) //IL_3b62: Unknown result type (might be due to invalid IL or missing references) //IL_3b68: Unknown result type (might be due to invalid IL or missing references) //IL_3b6d: Unknown result type (might be due to invalid IL or missing references) //IL_3b72: Unknown result type (might be due to invalid IL or missing references) //IL_3b78: Unknown result type (might be due to invalid IL or missing references) //IL_3b82: Unknown result type (might be due to invalid IL or missing references) //IL_3b87: Unknown result type (might be due to invalid IL or missing references) //IL_3b93: Unknown result type (might be due to invalid IL or missing references) //IL_3910: Unknown result type (might be due to invalid IL or missing references) //IL_3916: Unknown result type (might be due to invalid IL or missing references) //IL_391b: Unknown result type (might be due to invalid IL or missing references) //IL_3921: Unknown result type (might be due to invalid IL or missing references) //IL_392b: Unknown result type (might be due to invalid IL or missing references) //IL_3930: Unknown result type (might be due to invalid IL or missing references) //IL_3936: Unknown result type (might be due to invalid IL or missing references) //IL_3940: Unknown result type (might be due to invalid IL or missing references) //IL_3945: Unknown result type (might be due to invalid IL or missing references) //IL_394b: Unknown result type (might be due to invalid IL or missing references) //IL_3955: Unknown result type (might be due to invalid IL or missing references) //IL_395a: Unknown result type (might be due to invalid IL or missing references) //IL_3960: Unknown result type (might be due to invalid IL or missing references) //IL_3977: Unknown result type (might be due to invalid IL or missing references) //IL_397d: Unknown result type (might be due to invalid IL or missing references) //IL_3994: Unknown result type (might be due to invalid IL or missing references) //IL_3999: Unknown result type (might be due to invalid IL or missing references) //IL_399f: Unknown result type (might be due to invalid IL or missing references) //IL_39a4: Unknown result type (might be due to invalid IL or missing references) //IL_39aa: Unknown result type (might be due to invalid IL or missing references) //IL_39af: Unknown result type (might be due to invalid IL or missing references) //IL_39ba: Unknown result type (might be due to invalid IL or missing references) //IL_39cc: Unknown result type (might be due to invalid IL or missing references) //IL_39d6: Unknown result type (might be due to invalid IL or missing references) //IL_39db: Unknown result type (might be due to invalid IL or missing references) //IL_39e6: Unknown result type (might be due to invalid IL or missing references) //IL_39f8: Unknown result type (might be due to invalid IL or missing references) //IL_39fd: Unknown result type (might be due to invalid IL or missing references) //IL_3a02: Unknown result type (might be due to invalid IL or missing references) //IL_3a08: Unknown result type (might be due to invalid IL or missing references) //IL_3a12: Unknown result type (might be due to invalid IL or missing references) //IL_3a17: Unknown result type (might be due to invalid IL or missing references) //IL_3a22: Unknown result type (might be due to invalid IL or missing references) //IL_3a28: Unknown result type (might be due to invalid IL or missing references) //IL_3a2d: Unknown result type (might be due to invalid IL or missing references) //IL_3a33: Unknown result type (might be due to invalid IL or missing references) //IL_3a3d: Unknown result type (might be due to invalid IL or missing references) //IL_3a42: Unknown result type (might be due to invalid IL or missing references) //IL_3a48: Unknown result type (might be due to invalid IL or missing references) //IL_3a52: Unknown result type (might be due to invalid IL or missing references) //IL_3a57: Unknown result type (might be due to invalid IL or missing references) //IL_3a5d: Unknown result type (might be due to invalid IL or missing references) //IL_3a63: Unknown result type (might be due to invalid IL or missing references) //IL_3a68: Unknown result type (might be due to invalid IL or missing references) //IL_3a6e: Unknown result type (might be due to invalid IL or missing references) //IL_3a73: Unknown result type (might be due to invalid IL or missing references) //IL_3a79: Unknown result type (might be due to invalid IL or missing references) //IL_3a7e: Unknown result type (might be due to invalid IL or missing references) //IL_3a83: Unknown result type (might be due to invalid IL or missing references) //IL_3a89: Unknown result type (might be due to invalid IL or missing references) //IL_3a93: Unknown result type (might be due to invalid IL or missing references) //IL_3a98: Unknown result type (might be due to invalid IL or missing references) //IL_3aa4: Unknown result type (might be due to invalid IL or missing references) //IL_371f: Unknown result type (might be due to invalid IL or missing references) //IL_3724: Unknown result type (might be due to invalid IL or missing references) //IL_3079: Unknown result type (might be due to invalid IL or missing references) //IL_307f: Unknown result type (might be due to invalid IL or missing references) //IL_3084: Unknown result type (might be due to invalid IL or missing references) //IL_308a: Unknown result type (might be due to invalid IL or missing references) //IL_3094: Unknown result type (might be due to invalid IL or missing references) //IL_3099: Unknown result type (might be due to invalid IL or missing references) //IL_309f: Unknown result type (might be due to invalid IL or missing references) //IL_30a9: Unknown result type (might be due to invalid IL or missing references) //IL_30ae: Unknown result type (might be due to invalid IL or missing references) //IL_30b4: Unknown result type (might be due to invalid IL or missing references) //IL_30b9: Unknown result type (might be due to invalid IL or missing references) //IL_30bf: Unknown result type (might be due to invalid IL or missing references) //IL_30c4: Unknown result type (might be due to invalid IL or missing references) //IL_30ca: Unknown result type (might be due to invalid IL or missing references) //IL_30cf: Unknown result type (might be due to invalid IL or missing references) //IL_30da: Unknown result type (might be due to invalid IL or missing references) //IL_30e0: Unknown result type (might be due to invalid IL or missing references) //IL_30e5: Unknown result type (might be due to invalid IL or missing references) //IL_30eb: Unknown result type (might be due to invalid IL or missing references) //IL_30f5: Unknown result type (might be due to invalid IL or missing references) //IL_30fa: Unknown result type (might be due to invalid IL or missing references) //IL_3100: Unknown result type (might be due to invalid IL or missing references) //IL_310a: Unknown result type (might be due to invalid IL or missing references) //IL_310f: Unknown result type (might be due to invalid IL or missing references) //IL_3115: Unknown result type (might be due to invalid IL or missing references) //IL_311a: Unknown result type (might be due to invalid IL or missing references) //IL_3120: Unknown result type (might be due to invalid IL or missing references) //IL_3125: Unknown result type (might be due to invalid IL or missing references) //IL_312b: Unknown result type (might be due to invalid IL or missing references) //IL_3130: Unknown result type (might be due to invalid IL or missing references) //IL_313c: Unknown result type (might be due to invalid IL or missing references) //IL_3bad: Unknown result type (might be due to invalid IL or missing references) //IL_3bb3: Unknown result type (might be due to invalid IL or missing references) //IL_3bb8: Unknown result type (might be due to invalid IL or missing references) //IL_3bbe: Unknown result type (might be due to invalid IL or missing references) //IL_3bc3: Unknown result type (might be due to invalid IL or missing references) //IL_3bc9: Unknown result type (might be due to invalid IL or missing references) //IL_3bd3: Unknown result type (might be due to invalid IL or missing references) //IL_3bd8: Unknown result type (might be due to invalid IL or missing references) //IL_3bde: Unknown result type (might be due to invalid IL or missing references) //IL_3be8: Unknown result type (might be due to invalid IL or missing references) //IL_3bed: Unknown result type (might be due to invalid IL or missing references) //IL_3bf3: Unknown result type (might be due to invalid IL or missing references) //IL_3bf9: Unknown result type (might be due to invalid IL or missing references) //IL_3bfe: Unknown result type (might be due to invalid IL or missing references) //IL_3c03: Unknown result type (might be due to invalid IL or missing references) //IL_3c09: Unknown result type (might be due to invalid IL or missing references) //IL_3c13: Unknown result type (might be due to invalid IL or missing references) //IL_3c18: Unknown result type (might be due to invalid IL or missing references) //IL_3c23: Unknown result type (might be due to invalid IL or missing references) //IL_3c29: Unknown result type (might be due to invalid IL or missing references) //IL_3c2e: Unknown result type (might be due to invalid IL or missing references) //IL_3c34: Unknown result type (might be due to invalid IL or missing references) //IL_3c39: Unknown result type (might be due to invalid IL or missing references) //IL_3c3f: Unknown result type (might be due to invalid IL or missing references) //IL_3c44: Unknown result type (might be due to invalid IL or missing references) //IL_3c4a: Unknown result type (might be due to invalid IL or missing references) //IL_3c54: Unknown result type (might be due to invalid IL or missing references) //IL_3c59: Unknown result type (might be due to invalid IL or missing references) //IL_3c5f: Unknown result type (might be due to invalid IL or missing references) //IL_3c65: Unknown result type (might be due to invalid IL or missing references) //IL_3c6a: Unknown result type (might be due to invalid IL or missing references) //IL_3c6f: Unknown result type (might be due to invalid IL or missing references) //IL_3c75: Unknown result type (might be due to invalid IL or missing references) //IL_3c7f: Unknown result type (might be due to invalid IL or missing references) //IL_3c84: Unknown result type (might be due to invalid IL or missing references) //IL_3c90: Unknown result type (might be due to invalid IL or missing references) //IL_4123: Unknown result type (might be due to invalid IL or missing references) //IL_4128: Unknown result type (might be due to invalid IL or missing references) //IL_4132: Unknown result type (might be due to invalid IL or missing references) //IL_4137: Unknown result type (might be due to invalid IL or missing references) //IL_413b: Unknown result type (might be due to invalid IL or missing references) //IL_4140: Unknown result type (might be due to invalid IL or missing references) //IL_4154: Unknown result type (might be due to invalid IL or missing references) //IL_4156: Unknown result type (might be due to invalid IL or missing references) //IL_4162: Unknown result type (might be due to invalid IL or missing references) //IL_3cb8: Unknown result type (might be due to invalid IL or missing references) //IL_3cbe: Unknown result type (might be due to invalid IL or missing references) //IL_3cc3: Unknown result type (might be due to invalid IL or missing references) //IL_3cc9: Unknown result type (might be due to invalid IL or missing references) //IL_3cd3: Unknown result type (might be due to invalid IL or missing references) //IL_3cd8: Unknown result type (might be due to invalid IL or missing references) //IL_3cde: Unknown result type (might be due to invalid IL or missing references) //IL_3ce8: Unknown result type (might be due to invalid IL or missing references) //IL_3ced: Unknown result type (might be due to invalid IL or missing references) //IL_3cf3: Unknown result type (might be due to invalid IL or missing references) //IL_3cfd: Unknown result type (might be due to invalid IL or missing references) //IL_3d02: Unknown result type (might be due to invalid IL or missing references) //IL_3d08: Unknown result type (might be due to invalid IL or missing references) //IL_3d1f: Unknown result type (might be due to invalid IL or missing references) //IL_3d25: Unknown result type (might be due to invalid IL or missing references) //IL_3d3c: Unknown result type (might be due to invalid IL or missing references) //IL_3d41: Unknown result type (might be due to invalid IL or missing references) //IL_3d47: Unknown result type (might be due to invalid IL or missing references) //IL_3d4c: Unknown result type (might be due to invalid IL or missing references) //IL_3d52: Unknown result type (might be due to invalid IL or missing references) //IL_3d57: Unknown result type (might be due to invalid IL or missing references) //IL_3d62: Unknown result type (might be due to invalid IL or missing references) //IL_3d74: Unknown result type (might be due to invalid IL or missing references) //IL_3d7e: Unknown result type (might be due to invalid IL or missing references) //IL_3d83: Unknown result type (might be due to invalid IL or missing references) //IL_3d8e: Unknown result type (might be due to invalid IL or missing references) //IL_3da0: Unknown result type (might be due to invalid IL or missing references) //IL_3da5: Unknown result type (might be due to invalid IL or missing references) //IL_3daa: Unknown result type (might be due to invalid IL or missing references) //IL_3db0: Unknown result type (might be due to invalid IL or missing references) //IL_3dba: Unknown result type (might be due to invalid IL or missing references) //IL_3dbf: Unknown result type (might be due to invalid IL or missing references) //IL_3dca: Unknown result type (might be due to invalid IL or missing references) //IL_3dd0: Unknown result type (might be due to invalid IL or missing references) //IL_3dd5: Unknown result type (might be due to invalid IL or missing references) //IL_3ddb: Unknown result type (might be due to invalid IL or missing references) //IL_3de5: Unknown result type (might be due to invalid IL or missing references) //IL_3dea: Unknown result type (might be due to invalid IL or missing references) //IL_3df0: Unknown result type (might be due to invalid IL or missing references) //IL_3dfa: Unknown result type (might be due to invalid IL or missing references) //IL_3dff: Unknown result type (might be due to invalid IL or missing references) //IL_3e05: Unknown result type (might be due to invalid IL or missing references) //IL_3e0b: Unknown result type (might be due to invalid IL or missing references) //IL_3e10: Unknown result type (might be due to invalid IL or missing references) //IL_3e16: Unknown result type (might be due to invalid IL or missing references) //IL_3e1b: Unknown result type (might be due to invalid IL or missing references) //IL_3e21: Unknown result type (might be due to invalid IL or missing references) //IL_3e26: Unknown result type (might be due to invalid IL or missing references) //IL_3e2b: Unknown result type (might be due to invalid IL or missing references) //IL_3e31: Unknown result type (might be due to invalid IL or missing references) //IL_3e3b: Unknown result type (might be due to invalid IL or missing references) //IL_3e40: Unknown result type (might be due to invalid IL or missing references) //IL_3e4c: Unknown result type (might be due to invalid IL or missing references) //IL_4176: Unknown result type (might be due to invalid IL or missing references) //IL_417e: Unknown result type (might be due to invalid IL or missing references) //IL_4188: Unknown result type (might be due to invalid IL or missing references) //IL_418d: Unknown result type (might be due to invalid IL or missing references) //IL_4192: Unknown result type (might be due to invalid IL or missing references) //IL_419e: Unknown result type (might be due to invalid IL or missing references) //IL_42a1: Unknown result type (might be due to invalid IL or missing references) //IL_42a6: Unknown result type (might be due to invalid IL or missing references) //IL_42ac: Unknown result type (might be due to invalid IL or missing references) //IL_42b1: Unknown result type (might be due to invalid IL or missing references) //IL_41b2: Unknown result type (might be due to invalid IL or missing references) //IL_41ba: Unknown result type (might be due to invalid IL or missing references) //IL_41c4: Unknown result type (might be due to invalid IL or missing references) //IL_41c9: Unknown result type (might be due to invalid IL or missing references) //IL_41ce: Unknown result type (might be due to invalid IL or missing references) //IL_41da: Unknown result type (might be due to invalid IL or missing references) //IL_3edd: Unknown result type (might be due to invalid IL or missing references) //IL_3ee3: Unknown result type (might be due to invalid IL or missing references) //IL_3ee8: Unknown result type (might be due to invalid IL or missing references) //IL_3eee: Unknown result type (might be due to invalid IL or missing references) //IL_3ef8: Unknown result type (might be due to invalid IL or missing references) //IL_3efd: Unknown result type (might be due to invalid IL or missing references) //IL_3f03: Unknown result type (might be due to invalid IL or missing references) //IL_3f0d: Unknown result type (might be due to invalid IL or missing references) //IL_3f12: Unknown result type (might be due to invalid IL or missing references) //IL_3f18: Unknown result type (might be due to invalid IL or missing references) //IL_3f1d: Unknown result type (might be due to invalid IL or missing references) //IL_3f28: Unknown result type (might be due to invalid IL or missing references) //IL_3f2e: Unknown result type (might be due to invalid IL or missing references) //IL_3f33: Unknown result type (might be due to invalid IL or missing references) //IL_3f39: Unknown result type (might be due to invalid IL or missing references) //IL_3f43: Unknown result type (might be due to invalid IL or missing references) //IL_3f48: Unknown result type (might be due to invalid IL or missing references) //IL_3f4e: Unknown result type (might be due to invalid IL or missing references) //IL_3f58: Unknown result type (might be due to invalid IL or missing references) //IL_3f5d: Unknown result type (might be due to invalid IL or missing references) //IL_3f69: Unknown result type (might be due to invalid IL or missing references) //IL_42d0: Unknown result type (might be due to invalid IL or missing references) //IL_42d7: Unknown result type (might be due to invalid IL or missing references) //IL_42dc: Unknown result type (might be due to invalid IL or missing references) //IL_42f8: Unknown result type (might be due to invalid IL or missing references) //IL_42ff: Unknown result type (might be due to invalid IL or missing references) //IL_4304: Unknown result type (might be due to invalid IL or missing references) //IL_41ee: Unknown result type (might be due to invalid IL or missing references) //IL_41f6: Unknown result type (might be due to invalid IL or missing references) //IL_4200: Unknown result type (might be due to invalid IL or missing references) //IL_4205: Unknown result type (might be due to invalid IL or missing references) //IL_420a: Unknown result type (might be due to invalid IL or missing references) //IL_4216: Unknown result type (might be due to invalid IL or missing references) //IL_4002: Unknown result type (might be due to invalid IL or missing references) //IL_4008: Unknown result type (might be due to invalid IL or missing references) //IL_400d: Unknown result type (might be due to invalid IL or missing references) //IL_4013: Unknown result type (might be due to invalid IL or missing references) //IL_401d: Unknown result type (might be due to invalid IL or missing references) //IL_4022: Unknown result type (might be due to invalid IL or missing references) //IL_4028: Unknown result type (might be due to invalid IL or missing references) //IL_4032: Unknown result type (might be due to invalid IL or missing references) //IL_4037: Unknown result type (might be due to invalid IL or missing references) //IL_403d: Unknown result type (might be due to invalid IL or missing references) //IL_4042: Unknown result type (might be due to invalid IL or missing references) //IL_404d: Unknown result type (might be due to invalid IL or missing references) //IL_4053: Unknown result type (might be due to invalid IL or missing references) //IL_4058: Unknown result type (might be due to invalid IL or missing references) //IL_405e: Unknown result type (might be due to invalid IL or missing references) //IL_4068: Unknown result type (might be due to invalid IL or missing references) //IL_406d: Unknown result type (might be due to invalid IL or missing references) //IL_4073: Unknown result type (might be due to invalid IL or missing references) //IL_407d: Unknown result type (might be due to invalid IL or missing references) //IL_4082: Unknown result type (might be due to invalid IL or missing references) //IL_408e: Unknown result type (might be due to invalid IL or missing references) //IL_422a: Unknown result type (might be due to invalid IL or missing references) //IL_4232: Unknown result type (might be due to invalid IL or missing references) //IL_423c: Unknown result type (might be due to invalid IL or missing references) //IL_4241: Unknown result type (might be due to invalid IL or missing references) //IL_4246: Unknown result type (might be due to invalid IL or missing references) //IL_4252: Unknown result type (might be due to invalid IL or missing references) //IL_3fc5: Unknown result type (might be due to invalid IL or missing references) //IL_3fd0: Unknown result type (might be due to invalid IL or missing references) //IL_3f91: Unknown result type (might be due to invalid IL or missing references) //IL_3f9c: Unknown result type (might be due to invalid IL or missing references) //IL_40ea: Unknown result type (might be due to invalid IL or missing references) //IL_40f5: Unknown result type (might be due to invalid IL or missing references) //IL_40b6: Unknown result type (might be due to invalid IL or missing references) //IL_40c1: Unknown result type (might be due to invalid IL or missing references) //IL_90f8: Unknown result type (might be due to invalid IL or missing references) //IL_90fd: Unknown result type (might be due to invalid IL or missing references) //IL_9104: Unknown result type (might be due to invalid IL or missing references) //IL_9109: Unknown result type (might be due to invalid IL or missing references) //IL_9126: Unknown result type (might be due to invalid IL or missing references) //IL_912b: Unknown result type (might be due to invalid IL or missing references) //IL_9132: Unknown result type (might be due to invalid IL or missing references) //IL_9137: Unknown result type (might be due to invalid IL or missing references) //IL_789c: Unknown result type (might be due to invalid IL or missing references) //IL_78a2: Unknown result type (might be due to invalid IL or missing references) //IL_78a7: Unknown result type (might be due to invalid IL or missing references) //IL_78ad: Unknown result type (might be due to invalid IL or missing references) //IL_78b7: Unknown result type (might be due to invalid IL or missing references) //IL_78bc: Unknown result type (might be due to invalid IL or missing references) //IL_78c2: Unknown result type (might be due to invalid IL or missing references) //IL_78cc: Unknown result type (might be due to invalid IL or missing references) //IL_78d1: Unknown result type (might be due to invalid IL or missing references) //IL_78d7: Unknown result type (might be due to invalid IL or missing references) //IL_78dc: Unknown result type (might be due to invalid IL or missing references) //IL_78e7: Unknown result type (might be due to invalid IL or missing references) //IL_78ed: Unknown result type (might be due to invalid IL or missing references) //IL_78f2: Unknown result type (might be due to invalid IL or missing references) //IL_78f8: Unknown result type (might be due to invalid IL or missing references) //IL_7902: Unknown result type (might be due to invalid IL or missing references) //IL_7907: Unknown result type (might be due to invalid IL or missing references) //IL_790d: Unknown result type (might be due to invalid IL or missing references) //IL_7917: Unknown result type (might be due to invalid IL or missing references) //IL_791c: Unknown result type (might be due to invalid IL or missing references) //IL_7922: Unknown result type (might be due to invalid IL or missing references) //IL_7927: Unknown result type (might be due to invalid IL or missing references) //IL_7933: Unknown result type (might be due to invalid IL or missing references) //IL_43a6: Unknown result type (might be due to invalid IL or missing references) //IL_43ac: Unknown result type (might be due to invalid IL or missing references) //IL_43b1: Unknown result type (might be due to invalid IL or missing references) //IL_43b7: Unknown result type (might be due to invalid IL or missing references) //IL_43c1: Unknown result type (might be due to invalid IL or missing references) //IL_43c6: Unknown result type (might be due to invalid IL or missing references) //IL_43d1: Unknown result type (might be due to invalid IL or missing references) //IL_43d7: Unknown result type (might be due to invalid IL or missing references) //IL_43dc: Unknown result type (might be due to invalid IL or missing references) //IL_43e2: Unknown result type (might be due to invalid IL or missing references) //IL_43ec: Unknown result type (might be due to invalid IL or missing references) //IL_43f1: Unknown result type (might be due to invalid IL or missing references) //IL_43f7: Unknown result type (might be due to invalid IL or missing references) //IL_4401: Unknown result type (might be due to invalid IL or missing references) //IL_4406: Unknown result type (might be due to invalid IL or missing references) //IL_440c: Unknown result type (might be due to invalid IL or missing references) //IL_4411: Unknown result type (might be due to invalid IL or missing references) //IL_441d: Unknown result type (might be due to invalid IL or missing references) //IL_9152: Unknown result type (might be due to invalid IL or missing references) //IL_9162: Unknown result type (might be due to invalid IL or missing references) //IL_9168: Unknown result type (might be due to invalid IL or missing references) //IL_916d: Unknown result type (might be due to invalid IL or missing references) //IL_9172: Unknown result type (might be due to invalid IL or missing references) //IL_9177: Unknown result type (might be due to invalid IL or missing references) //IL_8006: Unknown result type (might be due to invalid IL or missing references) //IL_800c: Unknown result type (might be due to invalid IL or missing references) //IL_8011: Unknown result type (might be due to invalid IL or missing references) //IL_8017: Unknown result type (might be due to invalid IL or missing references) //IL_8021: Unknown result type (might be due to invalid IL or missing references) //IL_8026: Unknown result type (might be due to invalid IL or missing references) //IL_802c: Unknown result type (might be due to invalid IL or missing references) //IL_8036: Unknown result type (might be due to invalid IL or missing references) //IL_803b: Unknown result type (might be due to invalid IL or missing references) //IL_8041: Unknown result type (might be due to invalid IL or missing references) //IL_8046: Unknown result type (might be due to invalid IL or missing references) //IL_804c: Unknown result type (might be due to invalid IL or missing references) //IL_8056: Unknown result type (might be due to invalid IL or missing references) //IL_805b: Unknown result type (might be due to invalid IL or missing references) //IL_8066: Unknown result type (might be due to invalid IL or missing references) //IL_806c: Unknown result type (might be due to invalid IL or missing references) //IL_8071: Unknown result type (might be due to invalid IL or missing references) //IL_8077: Unknown result type (might be due to invalid IL or missing references) //IL_8081: Unknown result type (might be due to invalid IL or missing references) //IL_8086: Unknown result type (might be due to invalid IL or missing references) //IL_808c: Unknown result type (might be due to invalid IL or missing references) //IL_8096: Unknown result type (might be due to invalid IL or missing references) //IL_809b: Unknown result type (might be due to invalid IL or missing references) //IL_80a1: Unknown result type (might be due to invalid IL or missing references) //IL_80a6: Unknown result type (might be due to invalid IL or missing references) //IL_80ac: Unknown result type (might be due to invalid IL or missing references) //IL_80b6: Unknown result type (might be due to invalid IL or missing references) //IL_80bb: Unknown result type (might be due to invalid IL or missing references) //IL_80c7: Unknown result type (might be due to invalid IL or missing references) //IL_79c1: Unknown result type (might be due to invalid IL or missing references) //IL_79c7: Unknown result type (might be due to invalid IL or missing references) //IL_79cc: Unknown result type (might be due to invalid IL or missing references) //IL_79d2: Unknown result type (might be due to invalid IL or missing references) //IL_79dc: Unknown result type (might be due to invalid IL or missing references) //IL_79e1: Unknown result type (might be due to invalid IL or missing references) //IL_79e7: Unknown result type (might be due to invalid IL or missing references) //IL_79f1: Unknown result type (might be due to invalid IL or missing references) //IL_79f6: Unknown result type (might be due to invalid IL or missing references) //IL_79fc: Unknown result type (might be due to invalid IL or missing references) //IL_7a01: Unknown result type (might be due to invalid IL or missing references) //IL_7a0c: Unknown result type (might be due to invalid IL or missing references) //IL_7a12: Unknown result type (might be due to invalid IL or missing references) //IL_7a17: Unknown result type (might be due to invalid IL or missing references) //IL_7a1d: Unknown result type (might be due to invalid IL or missing references) //IL_7a27: Unknown result type (might be due to invalid IL or missing references) //IL_7a2c: Unknown result type (might be due to invalid IL or missing references) //IL_7a32: Unknown result type (might be due to invalid IL or missing references) //IL_7a3c: Unknown result type (might be due to invalid IL or missing references) //IL_7a41: Unknown result type (might be due to invalid IL or missing references) //IL_7a47: Unknown result type (might be due to invalid IL or missing references) //IL_7a4c: Unknown result type (might be due to invalid IL or missing references) //IL_7a58: Unknown result type (might be due to invalid IL or missing references) //IL_7950: Unknown result type (might be due to invalid IL or missing references) //IL_7955: Unknown result type (might be due to invalid IL or missing references) //IL_91a5: Unknown result type (might be due to invalid IL or missing references) //IL_91ab: Unknown result type (might be due to invalid IL or missing references) //IL_91b0: Unknown result type (might be due to invalid IL or missing references) //IL_91b5: Unknown result type (might be due to invalid IL or missing references) //IL_886c: Unknown result type (might be due to invalid IL or missing references) //IL_8872: Unknown result type (might be due to invalid IL or missing references) //IL_8877: Unknown result type (might be due to invalid IL or missing references) //IL_887d: Unknown result type (might be due to invalid IL or missing references) //IL_8887: Unknown result type (might be due to invalid IL or missing references) //IL_888c: Unknown result type (might be due to invalid IL or missing references) //IL_8892: Unknown result type (might be due to invalid IL or missing references) //IL_889c: Unknown result type (might be due to invalid IL or missing references) //IL_88a1: Unknown result type (might be due to invalid IL or missing references) //IL_88a7: Unknown result type (might be due to invalid IL or missing references) //IL_88ac: Unknown result type (might be due to invalid IL or missing references) //IL_88b2: Unknown result type (might be due to invalid IL or missing references) //IL_88bc: Unknown result type (might be due to invalid IL or missing references) //IL_88c1: Unknown result type (might be due to invalid IL or missing references) //IL_88cc: Unknown result type (might be due to invalid IL or missing references) //IL_88d2: Unknown result type (might be due to invalid IL or missing references) //IL_88d7: Unknown result type (might be due to invalid IL or missing references) //IL_88dd: Unknown result type (might be due to invalid IL or missing references) //IL_88e7: Unknown result type (might be due to invalid IL or missing references) //IL_88ec: Unknown result type (might be due to invalid IL or missing references) //IL_88f2: Unknown result type (might be due to invalid IL or missing references) //IL_88fc: Unknown result type (might be due to invalid IL or missing references) //IL_8901: Unknown result type (might be due to invalid IL or missing references) //IL_8907: Unknown result type (might be due to invalid IL or missing references) //IL_890c: Unknown result type (might be due to invalid IL or missing references) //IL_8912: Unknown result type (might be due to invalid IL or missing references) //IL_891c: Unknown result type (might be due to invalid IL or missing references) //IL_8921: Unknown result type (might be due to invalid IL or missing references) //IL_892d: Unknown result type (might be due to invalid IL or missing references) //IL_8155: Unknown result type (might be due to invalid IL or missing references) //IL_815b: Unknown result type (might be due to invalid IL or missing references) //IL_8160: Unknown result type (might be due to invalid IL or missing references) //IL_8166: Unknown result type (might be due to invalid IL or missing references) //IL_8170: Unknown result type (might be due to invalid IL or missing references) //IL_8175: Unknown result type (might be due to invalid IL or missing references) //IL_817b: Unknown result type (might be due to invalid IL or missing references) //IL_8185: Unknown result type (might be due to invalid IL or missing references) //IL_818a: Unknown result type (might be due to invalid IL or missing references) //IL_8190: Unknown result type (might be due to invalid IL or missing references) //IL_8195: Unknown result type (might be due to invalid IL or missing references) //IL_819b: Unknown result type (might be due to invalid IL or missing references) //IL_81a5: Unknown result type (might be due to invalid IL or missing references) //IL_81aa: Unknown result type (might be due to invalid IL or missing references) //IL_81b5: Unknown result type (might be due to invalid IL or missing references) //IL_81bb: Unknown result type (might be due to invalid IL or missing references) //IL_81c0: Unknown result type (might be due to invalid IL or missing references) //IL_81c6: Unknown result type (might be due to invalid IL or missing references) //IL_81d0: Unknown result type (might be due to invalid IL or missing references) //IL_81d5: Unknown result type (might be due to invalid IL or missing references) //IL_81db: Unknown result type (might be due to invalid IL or missing references) //IL_81e5: Unknown result type (might be due to invalid IL or missing references) //IL_81ea: Unknown result type (might be due to invalid IL or missing references) //IL_81f0: Unknown result type (might be due to invalid IL or missing references) //IL_81f5: Unknown result type (might be due to invalid IL or missing references) //IL_81fb: Unknown result type (might be due to invalid IL or missing references) //IL_8205: Unknown result type (might be due to invalid IL or missing references) //IL_820a: Unknown result type (might be due to invalid IL or missing references) //IL_8216: Unknown result type (might be due to invalid IL or missing references) //IL_80e4: Unknown result type (might be due to invalid IL or missing references) //IL_80e9: Unknown result type (might be due to invalid IL or missing references) //IL_7ae6: Unknown result type (might be due to invalid IL or missing references) //IL_7aec: Unknown result type (might be due to invalid IL or missing references) //IL_7af1: Unknown result type (might be due to invalid IL or missing references) //IL_7af7: Unknown result type (might be due to invalid IL or missing references) //IL_7b01: Unknown result type (might be due to invalid IL or missing references) //IL_7b06: Unknown result type (might be due to invalid IL or missing references) //IL_7b0c: Unknown result type (might be due to invalid IL or missing references) //IL_7b16: Unknown result type (might be due to invalid IL or missing references) //IL_7b1b: Unknown result type (might be due to invalid IL or missing references) //IL_7b21: Unknown result type (might be due to invalid IL or missing references) //IL_7b26: Unknown result type (might be due to invalid IL or missing references) //IL_7b31: Unknown result type (might be due to invalid IL or missing references) //IL_7b37: Unknown result type (might be due to invalid IL or missing references) //IL_7b3c: Unknown result type (might be due to invalid IL or missing references) //IL_7b42: Unknown result type (might be due to invalid IL or missing references) //IL_7b4c: Unknown result type (might be due to invalid IL or missing references) //IL_7b51: Unknown result type (might be due to invalid IL or missing references) //IL_7b57: Unknown result type (might be due to invalid IL or missing references) //IL_7b61: Unknown result type (might be due to invalid IL or missing references) //IL_7b66: Unknown result type (might be due to invalid IL or missing references) //IL_7b6c: Unknown result type (might be due to invalid IL or missing references) //IL_7b71: Unknown result type (might be due to invalid IL or missing references) //IL_7b7d: Unknown result type (might be due to invalid IL or missing references) //IL_7a75: Unknown result type (might be due to invalid IL or missing references) //IL_7a7a: Unknown result type (might be due to invalid IL or missing references) //IL_798a: Unknown result type (might be due to invalid IL or missing references) //IL_7995: Unknown result type (might be due to invalid IL or missing references) //IL_79a6: Unknown result type (might be due to invalid IL or missing references) //IL_79ab: Unknown result type (might be due to invalid IL or missing references) //IL_79b0: Unknown result type (might be due to invalid IL or missing references) //IL_9b12: Unknown result type (might be due to invalid IL or missing references) //IL_9b17: Unknown result type (might be due to invalid IL or missing references) //IL_97b0: Unknown result type (might be due to invalid IL or missing references) //IL_976b: Unknown result type (might be due to invalid IL or missing references) //IL_9771: Unknown result type (might be due to invalid IL or missing references) //IL_9776: Unknown result type (might be due to invalid IL or missing references) //IL_977b: Unknown result type (might be due to invalid IL or missing references) //IL_926d: Unknown result type (might be due to invalid IL or missing references) //IL_927d: Unknown result type (might be due to invalid IL or missing references) //IL_9288: Unknown result type (might be due to invalid IL or missing references) //IL_9298: Unknown result type (might be due to invalid IL or missing references) //IL_929d: Unknown result type (might be due to invalid IL or missing references) //IL_92a2: Unknown result type (might be due to invalid IL or missing references) //IL_91c7: Unknown result type (might be due to invalid IL or missing references) //IL_91d7: Unknown result type (might be due to invalid IL or missing references) //IL_91dd: Unknown result type (might be due to invalid IL or missing references) //IL_91e2: Unknown result type (might be due to invalid IL or missing references) //IL_91e7: Unknown result type (might be due to invalid IL or missing references) //IL_91ec: Unknown result type (might be due to invalid IL or missing references) //IL_91f1: Unknown result type (might be due to invalid IL or missing references) //IL_89bb: Unknown result type (might be due to invalid IL or missing references) //IL_89c1: Unknown result type (might be due to invalid IL or missing references) //IL_89c6: Unknown result type (might be due to invalid IL or missing references) //IL_89cc: Unknown result type (might be due to invalid IL or missing references) //IL_89d6: Unknown result type (might be due to invalid IL or missing references) //IL_89db: Unknown result type (might be due to invalid IL or missing references) //IL_89e1: Unknown result type (might be due to invalid IL or missing references) //IL_89eb: Unknown result type (might be due to invalid IL or missing references) //IL_89f0: Unknown result type (might be due to invalid IL or missing references) //IL_89f6: Unknown result type (might be due to invalid IL or missing references) //IL_89fb: Unknown result type (might be due to invalid IL or missing references) //IL_8a01: Unknown result type (might be due to invalid IL or missing references) //IL_8a0b: Unknown result type (might be due to invalid IL or missing references) //IL_8a10: Unknown result type (might be due to invalid IL or missing references) //IL_8a1b: Unknown result type (might be due to invalid IL or missing references) //IL_8a21: Unknown result type (might be due to invalid IL or missing references) //IL_8a26: Unknown result type (might be due to invalid IL or missing references) //IL_8a2c: Unknown result type (might be due to invalid IL or missing references) //IL_8a36: Unknown result type (might be due to invalid IL or missing references) //IL_8a3b: Unknown result type (might be due to invalid IL or missing references) //IL_8a41: Unknown result type (might be due to invalid IL or missing references) //IL_8a4b: Unknown result type (might be due to invalid IL or missing references) //IL_8a50: Unknown result type (might be due to invalid IL or missing references) //IL_8a56: Unknown result type (might be due to invalid IL or missing references) //IL_8a5b: Unknown result type (might be due to invalid IL or missing references) //IL_8a61: Unknown result type (might be due to invalid IL or missing references) //IL_8a6b: Unknown result type (might be due to invalid IL or missing references) //IL_8a70: Unknown result type (might be due to invalid IL or missing references) //IL_8a7c: Unknown result type (might be due to invalid IL or missing references) //IL_894a: Unknown result type (might be due to invalid IL or missing references) //IL_894f: Unknown result type (might be due to invalid IL or missing references) //IL_82a4: Unknown result type (might be due to invalid IL or missing references) //IL_82aa: Unknown result type (might be due to invalid IL or missing references) //IL_82af: Unknown result type (might be due to invalid IL or missing references) //IL_82b5: Unknown result type (might be due to invalid IL or missing references) //IL_82bf: Unknown result type (might be due to invalid IL or missing references) //IL_82c4: Unknown result type (might be due to invalid IL or missing references) //IL_82ca: Unknown result type (might be due to invalid IL or missing references) //IL_82d4: Unknown result type (might be due to invalid IL or missing references) //IL_82d9: Unknown result type (might be due to invalid IL or missing references) //IL_82df: Unknown result type (might be due to invalid IL or missing references) //IL_82e4: Unknown result type (might be due to invalid IL or missing references) //IL_82ea: Unknown result type (might be due to invalid IL or missing references) //IL_82f4: Unknown result type (might be due to invalid IL or missing references) //IL_82f9: Unknown result type (might be due to invalid IL or missing references) //IL_8304: Unknown result type (might be due to invalid IL or missing references) //IL_830a: Unknown result type (might be due to invalid IL or missing references) //IL_830f: Unknown result type (might be due to invalid IL or missing references) //IL_8315: Unknown result type (might be due to invalid IL or missing references) //IL_831f: Unknown result type (might be due to invalid IL or missing references) //IL_8324: Unknown result type (might be due to invalid IL or missing references) //IL_832a: Unknown result type (might be due to invalid IL or missing references) //IL_8334: Unknown result type (might be due to invalid IL or missing references) //IL_8339: Unknown result type (might be due to invalid IL or missing references) //IL_833f: Unknown result type (might be due to invalid IL or missing references) //IL_8344: Unknown result type (might be due to invalid IL or missing references) //IL_834a: Unknown result type (might be due to invalid IL or missing references) //IL_8354: Unknown result type (might be due to invalid IL or missing references) //IL_8359: Unknown result type (might be due to invalid IL or missing references) //IL_8365: Unknown result type (might be due to invalid IL or missing references) //IL_8233: Unknown result type (might be due to invalid IL or missing references) //IL_8238: Unknown result type (might be due to invalid IL or missing references) //IL_811e: Unknown result type (might be due to invalid IL or missing references) //IL_8129: Unknown result type (might be due to invalid IL or missing references) //IL_813a: Unknown result type (might be due to invalid IL or missing references) //IL_813f: Unknown result type (might be due to invalid IL or missing references) //IL_8144: Unknown result type (might be due to invalid IL or missing references) //IL_7c0b: Unknown result type (might be due to invalid IL or missing references) //IL_7c11: Unknown result type (might be due to invalid IL or missing references) //IL_7c16: Unknown result type (might be due to invalid IL or missing references) //IL_7c1c: Unknown result type (might be due to invalid IL or missing references) //IL_7c26: Unknown result type (might be due to invalid IL or missing references) //IL_7c2b: Unknown result type (might be due to invalid IL or missing references) //IL_7c31: Unknown result type (might be due to invalid IL or missing references) //IL_7c3b: Unknown result type (might be due to invalid IL or missing references) //IL_7c40: Unknown result type (might be due to invalid IL or missing references) //IL_7c46: Unknown result type (might be due to invalid IL or missing references) //IL_7c4b: Unknown result type (might be due to invalid IL or missing references) //IL_7c56: Unknown result type (might be due to invalid IL or missing references) //IL_7c5c: Unknown result type (might be due to invalid IL or missing references) //IL_7c61: Unknown result type (might be due to invalid IL or missing references) //IL_7c67: Unknown result type (might be due to invalid IL or missing references) //IL_7c71: Unknown result type (might be due to invalid IL or missing references) //IL_7c76: Unknown result type (might be due to invalid IL or missing references) //IL_7c7c: Unknown result type (might be due to invalid IL or missing references) //IL_7c86: Unknown result type (might be due to invalid IL or missing references) //IL_7c8b: Unknown result type (might be due to invalid IL or missing references) //IL_7c91: Unknown result type (might be due to invalid IL or missing references) //IL_7c96: Unknown result type (might be due to invalid IL or missing references) //IL_7ca2: Unknown result type (might be due to invalid IL or missing references) //IL_7b9a: Unknown result type (might be due to invalid IL or missing references) //IL_7b9f: Unknown result type (might be due to invalid IL or missing references) //IL_7aaf: Unknown result type (might be due to invalid IL or missing references) //IL_7aba: Unknown result type (might be due to invalid IL or missing references) //IL_7acb: Unknown result type (might be due to invalid IL or missing references) //IL_7ad0: Unknown result type (might be due to invalid IL or missing references) //IL_7ad5: Unknown result type (might be due to invalid IL or missing references) //IL_9b36: Unknown result type (might be due to invalid IL or missing references) //IL_9b3b: Unknown result type (might be due to invalid IL or missing references) //IL_9b57: Unknown result type (might be due to invalid IL or missing references) //IL_9b5c: Unknown result type (might be due to invalid IL or missing references) //IL_92f2: Unknown result type (might be due to invalid IL or missing references) //IL_92f7: Unknown result type (might be due to invalid IL or missing references) //IL_8b0a: Unknown result type (might be due to invalid IL or missing references) //IL_8b10: Unknown result type (might be due to invalid IL or missing references) //IL_8b15: Unknown result type (might be due to invalid IL or missing references) //IL_8b1b: Unknown result type (might be due to invalid IL or missing references) //IL_8b25: Unknown result type (might be due to invalid IL or missing references) //IL_8b2a: Unknown result type (might be due to invalid IL or missing references) //IL_8b30: Unknown result type (might be due to invalid IL or missing references) //IL_8b3a: Unknown result type (might be due to invalid IL or missing references) //IL_8b3f: Unknown result type (might be due to invalid IL or missing references) //IL_8b45: Unknown result type (might be due to invalid IL or missing references) //IL_8b4a: Unknown result type (might be due to invalid IL or missing references) //IL_8b50: Unknown result type (might be due to invalid IL or missing references) //IL_8b5a: Unknown result type (might be due to invalid IL or missing references) //IL_8b5f: Unknown result type (might be due to invalid IL or missing references) //IL_8b6a: Unknown result type (might be due to invalid IL or missing references) //IL_8b70: Unknown result type (might be due to invalid IL or missing references) //IL_8b75: Unknown result type (might be due to invalid IL or missing references) //IL_8b7b: Unknown result type (might be due to invalid IL or missing references) //IL_8b85: Unknown result type (might be due to invalid IL or missing references) //IL_8b8a: Unknown result type (might be due to invalid IL or missing references) //IL_8b90: Unknown result type (might be due to invalid IL or missing references) //IL_8b9a: Unknown result type (might be due to invalid IL or missing references) //IL_8b9f: Unknown result type (might be due to invalid IL or missing references) //IL_8ba5: Unknown result type (might be due to invalid IL or missing references) //IL_8baa: Unknown result type (might be due to invalid IL or missing references) //IL_8bb0: Unknown result type (might be due to invalid IL or missing references) //IL_8bba: Unknown result type (might be due to invalid IL or missing references) //IL_8bbf: Unknown result type (might be due to invalid IL or missing references) //IL_8bcb: Unknown result type (might be due to invalid IL or missing references) //IL_8a99: Unknown result type (might be due to invalid IL or missing references) //IL_8a9e: Unknown result type (might be due to invalid IL or missing references) //IL_8984: Unknown result type (might be due to invalid IL or missing references) //IL_898f: Unknown result type (might be due to invalid IL or missing references) //IL_89a0: Unknown result type (might be due to invalid IL or missing references) //IL_89a5: Unknown result type (might be due to invalid IL or missing references) //IL_89aa: Unknown result type (might be due to invalid IL or missing references) //IL_83f3: Unknown result type (might be due to invalid IL or missing references) //IL_83f9: Unknown result type (might be due to invalid IL or missing references) //IL_83fe: Unknown result type (might be due to invalid IL or missing references) //IL_8404: Unknown result type (might be due to invalid IL or missing references) //IL_840e: Unknown result type (might be due to invalid IL or missing references) //IL_8413: Unknown result type (might be due to invalid IL or missing references) //IL_8419: Unknown result type (might be due to invalid IL or missing references) //IL_8423: Unknown result type (might be due to invalid IL or missing references) //IL_8428: Unknown result type (might be due to invalid IL or missing references) //IL_842e: Unknown result type (might be due to invalid IL or missing references) //IL_8433: Unknown result type (might be due to invalid IL or missing references) //IL_8439: Unknown result type (might be due to invalid IL or missing references) //IL_8443: Unknown result type (might be due to invalid IL or missing references) //IL_8448: Unknown result type (might be due to invalid IL or missing references) //IL_8453: Unknown result type (might be due to invalid IL or missing references) //IL_8459: Unknown result type (might be due to invalid IL or missing references) //IL_845e: Unknown result type (might be due to invalid IL or missing references) //IL_8464: Unknown result type (might be due to invalid IL or missing references) //IL_846e: Unknown result type (might be due to invalid IL or missing references) //IL_8473: Unknown result type (might be due to invalid IL or missing references) //IL_8479: Unknown result type (might be due to invalid IL or missing references) //IL_8483: Unknown result type (might be due to invalid IL or missing references) //IL_8488: Unknown result type (might be due to invalid IL or missing references) //IL_848e: Unknown result type (might be due to invalid IL or missing references) //IL_8493: Unknown result type (might be due to invalid IL or missing references) //IL_8499: Unknown result type (might be due to invalid IL or missing references) //IL_84a3: Unknown result type (might be due to invalid IL or missing references) //IL_84a8: Unknown result type (might be due to invalid IL or missing references) //IL_84b4: Unknown result type (might be due to invalid IL or missing references) //IL_8382: Unknown result type (might be due to invalid IL or missing references) //IL_8387: Unknown result type (might be due to invalid IL or missing references) //IL_826d: Unknown result type (might be due to invalid IL or missing references) //IL_8278: Unknown result type (might be due to invalid IL or missing references) //IL_8289: Unknown result type (might be due to invalid IL or missing references) //IL_828e: Unknown result type (might be due to invalid IL or missing references) //IL_8293: Unknown result type (might be due to invalid IL or missing references) //IL_7d30: Unknown result type (might be due to invalid IL or missing references) //IL_7d36: Unknown result type (might be due to invalid IL or missing references) //IL_7d3b: Unknown result type (might be due to invalid IL or missing references) //IL_7d41: Unknown result type (might be due to invalid IL or missing references) //IL_7d4b: Unknown result type (might be due to invalid IL or missing references) //IL_7d50: Unknown result type (might be due to invalid IL or missing references) //IL_7d56: Unknown result type (might be due to invalid IL or missing references) //IL_7d60: Unknown result type (might be due to invalid IL or missing references) //IL_7d65: Unknown result type (might be due to invalid IL or missing references) //IL_7d6b: Unknown result type (might be due to invalid IL or missing references) //IL_7d70: Unknown result type (might be due to invalid IL or missing references) //IL_7d7b: Unknown result type (might be due to invalid IL or missing references) //IL_7d81: Unknown result type (might be due to invalid IL or missing references) //IL_7d86: Unknown result type (might be due to invalid IL or missing references) //IL_7d8c: Unknown result type (might be due to invalid IL or missing references) //IL_7d96: Unknown result type (might be due to invalid IL or missing references) //IL_7d9b: Unknown result type (might be due to invalid IL or missing references) //IL_7da1: Unknown result type (might be due to invalid IL or missing references) //IL_7dab: Unknown result type (might be due to invalid IL or missing references) //IL_7db0: Unknown result type (might be due to invalid IL or missing references) //IL_7db6: Unknown result type (might be due to invalid IL or missing references) //IL_7dbb: Unknown result type (might be due to invalid IL or missing references) //IL_7dc7: Unknown result type (might be due to invalid IL or missing references) //IL_7cbf: Unknown result type (might be due to invalid IL or missing references) //IL_7cc4: Unknown result type (might be due to invalid IL or missing references) //IL_7bd4: Unknown result type (might be due to invalid IL or missing references) //IL_7bdf: Unknown result type (might be due to invalid IL or missing references) //IL_7bf0: Unknown result type (might be due to invalid IL or missing references) //IL_7bf5: Unknown result type (might be due to invalid IL or missing references) //IL_7bfa: Unknown result type (might be due to invalid IL or missing references) //IL_445c: Unknown result type (might be due to invalid IL or missing references) //IL_4462: Unknown result type (might be due to invalid IL or missing references) //IL_4467: Unknown result type (might be due to invalid IL or missing references) //IL_446d: Unknown result type (might be due to invalid IL or missing references) //IL_4477: Unknown result type (might be due to invalid IL or missing references) //IL_447c: Unknown result type (might be due to invalid IL or missing references) //IL_4482: Unknown result type (might be due to invalid IL or missing references) //IL_448c: Unknown result type (might be due to invalid IL or missing references) //IL_4491: Unknown result type (might be due to invalid IL or missing references) //IL_4497: Unknown result type (might be due to invalid IL or missing references) //IL_449c: Unknown result type (might be due to invalid IL or missing references) //IL_44a7: Unknown result type (might be due to invalid IL or missing references) //IL_44ad: Unknown result type (might be due to invalid IL or missing references) //IL_44b2: Unknown result type (might be due to invalid IL or missing references) //IL_44b8: Unknown result type (might be due to invalid IL or missing references) //IL_44c2: Unknown result type (might be due to invalid IL or missing references) //IL_44c7: Unknown result type (might be due to invalid IL or missing references) //IL_44cd: Unknown result type (might be due to invalid IL or missing references) //IL_44d7: Unknown result type (might be due to invalid IL or missing references) //IL_44dc: Unknown result type (might be due to invalid IL or missing references) //IL_44e2: Unknown result type (might be due to invalid IL or missing references) //IL_44e7: Unknown result type (might be due to invalid IL or missing references) //IL_44ed: Unknown result type (might be due to invalid IL or missing references) //IL_44f2: Unknown result type (might be due to invalid IL or missing references) //IL_44fe: Unknown result type (might be due to invalid IL or missing references) //IL_9931: Unknown result type (might be due to invalid IL or missing references) //IL_9936: Unknown result type (might be due to invalid IL or missing references) //IL_9941: Unknown result type (might be due to invalid IL or missing references) //IL_9946: Unknown result type (might be due to invalid IL or missing references) //IL_94f9: Unknown result type (might be due to invalid IL or missing references) //IL_9527: Unknown result type (might be due to invalid IL or missing references) //IL_9320: Unknown result type (might be due to invalid IL or missing references) //IL_934e: Unknown result type (might be due to invalid IL or missing references) //IL_8c59: Unknown result type (might be due to invalid IL or missing references) //IL_8c5f: Unknown result type (might be due to invalid IL or missing references) //IL_8c64: Unknown result type (might be due to invalid IL or missing references) //IL_8c6a: Unknown result type (might be due to invalid IL or missing references) //IL_8c74: Unknown result type (might be due to invalid IL or missing references) //IL_8c79: Unknown result type (might be due to invalid IL or missing references) //IL_8c7f: Unknown result type (might be due to invalid IL or missing references) //IL_8c89: Unknown result type (might be due to invalid IL or missing references) //IL_8c8e: Unknown result type (might be due to invalid IL or missing references) //IL_8c94: Unknown result type (might be due to invalid IL or missing references) //IL_8c99: Unknown result type (might be due to invalid IL or missing references) //IL_8c9f: Unknown result type (might be due to invalid IL or missing references) //IL_8ca9: Unknown result type (might be due to invalid IL or missing references) //IL_8cae: Unknown result type (might be due to invalid IL or missing references) //IL_8cb9: Unknown result type (might be due to invalid IL or missing references) //IL_8cbf: Unknown result type (might be due to invalid IL or missing references) //IL_8cc4: Unknown result type (might be due to invalid IL or missing references) //IL_8cca: Unknown result type (might be due to invalid IL or missing references) //IL_8cd4: Unknown result type (might be due to invalid IL or missing references) //IL_8cd9: Unknown result type (might be due to invalid IL or missing references) //IL_8cdf: Unknown result type (might be due to invalid IL or missing references) //IL_8ce9: Unknown result type (might be due to invalid IL or missing references) //IL_8cee: Unknown result type (might be due to invalid IL or missing references) //IL_8cf4: Unknown result type (might be due to invalid IL or missing references) //IL_8cf9: Unknown result type (might be due to invalid IL or missing references) //IL_8cff: Unknown result type (might be due to invalid IL or missing references) //IL_8d09: Unknown result type (might be due to invalid IL or missing references) //IL_8d0e: Unknown result type (might be due to invalid IL or missing references) //IL_8d1a: Unknown result type (might be due to invalid IL or missing references) //IL_8be8: Unknown result type (might be due to invalid IL or missing references) //IL_8bed: Unknown result type (might be due to invalid IL or missing references) //IL_8ad3: Unknown result type (might be due to invalid IL or missing references) //IL_8ade: Unknown result type (might be due to invalid IL or missing references) //IL_8aef: Unknown result type (might be due to invalid IL or missing references) //IL_8af4: Unknown result type (might be due to invalid IL or missing references) //IL_8af9: Unknown result type (might be due to invalid IL or missing references) //IL_8542: Unknown result type (might be due to invalid IL or missing references) //IL_8548: Unknown result type (might be due to invalid IL or missing references) //IL_854d: Unknown result type (might be due to invalid IL or missing references) //IL_8553: Unknown result type (might be due to invalid IL or missing references) //IL_855d: Unknown result type (might be due to invalid IL or missing references) //IL_8562: Unknown result type (might be due to invalid IL or missing references) //IL_8568: Unknown result type (might be due to invalid IL or missing references) //IL_8572: Unknown result type (might be due to invalid IL or missing references) //IL_8577: Unknown result type (might be due to invalid IL or missing references) //IL_857d: Unknown result type (might be due to invalid IL or missing references) //IL_8582: Unknown result type (might be due to invalid IL or missing references) //IL_8588: Unknown result type (might be due to invalid IL or missing references) //IL_8592: Unknown result type (might be due to invalid IL or missing references) //IL_8597: Unknown result type (might be due to invalid IL or missing references) //IL_85a2: Unknown result type (might be due to invalid IL or missing references) //IL_85a8: Unknown result type (might be due to invalid IL or missing references) //IL_85ad: Unknown result type (might be due to invalid IL or missing references) //IL_85b3: Unknown result type (might be due to invalid IL or missing references) //IL_85bd: Unknown result type (might be due to invalid IL or missing references) //IL_85c2: Unknown result type (might be due to invalid IL or missing references) //IL_85c8: Unknown result type (might be due to invalid IL or missing references) //IL_85d2: Unknown result type (might be due to invalid IL or missing references) //IL_85d7: Unknown result type (might be due to invalid IL or missing references) //IL_85dd: Unknown result type (might be due to invalid IL or missing references) //IL_85e2: Unknown result type (might be due to invalid IL or missing references) //IL_85e8: Unknown result type (might be due to invalid IL or missing references) //IL_85f2: Unknown result type (might be due to invalid IL or missing references) //IL_85f7: Unknown result type (might be due to invalid IL or missing references) //IL_8603: Unknown result type (might be due to invalid IL or missing references) //IL_84d1: Unknown result type (might be due to invalid IL or missing references) //IL_84d6: Unknown result type (might be due to invalid IL or missing references) //IL_83bc: Unknown result type (might be due to invalid IL or missing references) //IL_83c7: Unknown result type (might be due to invalid IL or missing references) //IL_83d8: Unknown result type (might be due to invalid IL or missing references) //IL_83dd: Unknown result type (might be due to invalid IL or missing references) //IL_83e2: Unknown result type (might be due to invalid IL or missing references) //IL_7e55: Unknown result type (might be due to invalid IL or missing references) //IL_7e5b: Unknown result type (might be due to invalid IL or missing references) //IL_7e60: Unknown result type (might be due to invalid IL or missing references) //IL_7e66: Unknown result type (might be due to invalid IL or missing references) //IL_7e70: Unknown result type (might be due to invalid IL or missing references) //IL_7e75: Unknown result type (might be due to invalid IL or missing references) //IL_7e7b: Unknown result type (might be due to invalid IL or missing references) //IL_7e85: Unknown result type (might be due to invalid IL or missing references) //IL_7e8a: Unknown result type (might be due to invalid IL or missing references) //IL_7e90: Unknown result type (might be due to invalid IL or missing references) //IL_7e95: Unknown result type (might be due to invalid IL or missing references) //IL_7ea0: Unknown result type (might be due to invalid IL or missing references) //IL_7ea6: Unknown result type (might be due to invalid IL or missing references) //IL_7eab: Unknown result type (might be due to invalid IL or missing references) //IL_7eb1: Unknown result type (might be due to invalid IL or missing references) //IL_7ebb: Unknown result type (might be due to invalid IL or missing references) //IL_7ec0: Unknown result type (might be due to invalid IL or missing references) //IL_7ec6: Unknown result type (might be due to invalid IL or missing references) //IL_7ed0: Unknown result type (might be due to invalid IL or missing references) //IL_7ed5: Unknown result type (might be due to invalid IL or missing references) //IL_7edb: Unknown result type (might be due to invalid IL or missing references) //IL_7ee0: Unknown result type (might be due to invalid IL or missing references) //IL_7eec: Unknown result type (might be due to invalid IL or missing references) //IL_7de4: Unknown result type (might be due to invalid IL or missing references) //IL_7de9: Unknown result type (might be due to invalid IL or missing references) //IL_7cf9: Unknown result type (might be due to invalid IL or missing references) //IL_7d04: Unknown result type (might be due to invalid IL or missing references) //IL_7d15: Unknown result type (might be due to invalid IL or missing references) //IL_7d1a: Unknown result type (might be due to invalid IL or missing references) //IL_7d1f: Unknown result type (might be due to invalid IL or missing references) //IL_451b: Unknown result type (might be due to invalid IL or missing references) //IL_4521: Unknown result type (might be due to invalid IL or missing references) //IL_4526: Unknown result type (might be due to invalid IL or missing references) //IL_452c: Unknown result type (might be due to invalid IL or missing references) //IL_4536: Unknown result type (might be due to invalid IL or missing references) //IL_453b: Unknown result type (might be due to invalid IL or missing references) //IL_4541: Unknown result type (might be due to invalid IL or missing references) //IL_454b: Unknown result type (might be due to invalid IL or missing references) //IL_4550: Unknown result type (might be due to invalid IL or missing references) //IL_4556: Unknown result type (might be due to invalid IL or missing references) //IL_455b: Unknown result type (might be due to invalid IL or missing references) //IL_4566: Unknown result type (might be due to invalid IL or missing references) //IL_456c: Unknown result type (might be due to invalid IL or missing references) //IL_4571: Unknown result type (might be due to invalid IL or missing references) //IL_4577: Unknown result type (might be due to invalid IL or missing references) //IL_4581: Unknown result type (might be due to invalid IL or missing references) //IL_4586: Unknown result type (might be due to invalid IL or missing references) //IL_458c: Unknown result type (might be due to invalid IL or missing references) //IL_4596: Unknown result type (might be due to invalid IL or missing references) //IL_459b: Unknown result type (might be due to invalid IL or missing references) //IL_45a1: Unknown result type (might be due to invalid IL or missing references) //IL_45a6: Unknown result type (might be due to invalid IL or missing references) //IL_45ac: Unknown result type (might be due to invalid IL or missing references) //IL_45b1: Unknown result type (might be due to invalid IL or missing references) //IL_45bd: Unknown result type (might be due to invalid IL or missing references) //IL_9bc5: Unknown result type (might be due to invalid IL or missing references) //IL_9bc7: Unknown result type (might be due to invalid IL or missing references) //IL_9bd8: Unknown result type (might be due to invalid IL or missing references) //IL_9bba: Unknown result type (might be due to invalid IL or missing references) //IL_9bbf: Unknown result type (might be due to invalid IL or missing references) //IL_9b92: Unknown result type (might be due to invalid IL or missing references) //IL_9b97: Unknown result type (might be due to invalid IL or missing references) //IL_9551: Unknown result type (might be due to invalid IL or missing references) //IL_9557: Unknown result type (might be due to invalid IL or missing references) //IL_9368: Unknown result type (might be due to invalid IL or missing references) //IL_936e: Unknown result type (might be due to invalid IL or missing references) //IL_8da8: Unknown result type (might be due to invalid IL or missing references) //IL_8dae: Unknown result type (might be due to invalid IL or missing references) //IL_8db3: Unknown result type (might be due to invalid IL or missing references) //IL_8db9: Unknown result type (might be due to invalid IL or missing references) //IL_8dc3: Unknown result type (might be due to invalid IL or missing references) //IL_8dc8: Unknown result type (might be due to invalid IL or missing references) //IL_8dce: Unknown result type (might be due to invalid IL or missing references) //IL_8dd8: Unknown result type (might be due to invalid IL or missing references) //IL_8ddd: Unknown result type (might be due to invalid IL or missing references) //IL_8de3: Unknown result type (might be due to invalid IL or missing references) //IL_8de8: Unknown result type (might be due to invalid IL or missing references) //IL_8dee: Unknown result type (might be due to invalid IL or missing references) //IL_8df8: Unknown result type (might be due to invalid IL or missing references) //IL_8dfd: Unknown result type (might be due to invalid IL or missing references) //IL_8e08: Unknown result type (might be due to invalid IL or missing references) //IL_8e0e: Unknown result type (might be due to invalid IL or missing references) //IL_8e13: Unknown result type (might be due to invalid IL or missing references) //IL_8e19: Unknown result type (might be due to invalid IL or missing references) //IL_8e23: Unknown result type (might be due to invalid IL or missing references) //IL_8e28: Unknown result type (might be due to invalid IL or missing references) //IL_8e2e: Unknown result type (might be due to invalid IL or missing references) //IL_8e38: Unknown result type (might be due to invalid IL or missing references) //IL_8e3d: Unknown result type (might be due to invalid IL or missing references) //IL_8e43: Unknown result type (might be due to invalid IL or missing references) //IL_8e48: Unknown result type (might be due to invalid IL or missing references) //IL_8e4e: Unknown result type (might be due to invalid IL or missing references) //IL_8e58: Unknown result type (might be due to invalid IL or missing references) //IL_8e5d: Unknown result type (might be due to invalid IL or missing references) //IL_8e69: Unknown result type (might be due to invalid IL or missing references) //IL_8d37: Unknown result type (might be due to invalid IL or missing references) //IL_8d3c: Unknown result type (might be due to invalid IL or missing references) //IL_8c22: Unknown result type (might be due to invalid IL or missing references) //IL_8c2d: Unknown result type (might be due to invalid IL or missing references) //IL_8c3e: Unknown result type (might be due to invalid IL or missing references) //IL_8c43: Unknown result type (might be due to invalid IL or missing references) //IL_8c48: Unknown result type (might be due to invalid IL or missing references) //IL_8691: Unknown result type (might be due to invalid IL or missing references) //IL_8697: Unknown result type (might be due to invalid IL or missing references) //IL_869c: Unknown result type (might be due to invalid IL or missing references) //IL_86a2: Unknown result type (might be due to invalid IL or missing references) //IL_86ac: Unknown result type (might be due to invalid IL or missing references) //IL_86b1: Unknown result type (might be due to invalid IL or missing references) //IL_86b7: Unknown result type (might be due to invalid IL or missing references) //IL_86c1: Unknown result type (might be due to invalid IL or missing references) //IL_86c6: Unknown result type (might be due to invalid IL or missing references) //IL_86cc: Unknown result type (might be due to invalid IL or missing references) //IL_86d1: Unknown result type (might be due to invalid IL or missing references) //IL_86d7: Unknown result type (might be due to invalid IL or missing references) //IL_86e1: Unknown result type (might be due to invalid IL or missing references) //IL_86e6: Unknown result type (might be due to invalid IL or missing references) //IL_86f1: Unknown result type (might be due to invalid IL or missing references) //IL_86f7: Unknown result type (might be due to invalid IL or missing references) //IL_86fc: Unknown result type (might be due to invalid IL or missing references) //IL_8702: Unknown result type (might be due to invalid IL or missing references) //IL_870c: Unknown result type (might be due to invalid IL or missing references) //IL_8711: Unknown result type (might be due to invalid IL or missing references) //IL_8717: Unknown result type (might be due to invalid IL or missing references) //IL_8721: Unknown result type (might be due to invalid IL or missing references) //IL_8726: Unknown result type (might be due to invalid IL or missing references) //IL_872c: Unknown result type (might be due to invalid IL or missing references) //IL_8731: Unknown result type (might be due to invalid IL or missing references) //IL_8737: Unknown result type (might be due to invalid IL or missing references) //IL_8741: Unknown result type (might be due to invalid IL or missing references) //IL_8746: Unknown result type (might be due to invalid IL or missing references) //IL_8752: Unknown result type (might be due to invalid IL or missing references) //IL_8620: Unknown result type (might be due to invalid IL or missing references) //IL_8625: Unknown result type (might be due to invalid IL or missing references) //IL_850b: Unknown result type (might be due to invalid IL or missing references) //IL_8516: Unknown result type (might be due to invalid IL or missing references) //IL_8527: Unknown result type (might be due to invalid IL or missing references) //IL_852c: Unknown result type (might be due to invalid IL or missing references) //IL_8531: Unknown result type (might be due to invalid IL or missing references) //IL_7f87: Unknown result type (might be due to invalid IL or missing references) //IL_7f8c: Unknown result type (might be due to invalid IL or missing references) //IL_7fc7: Unknown result type (might be due to invalid IL or missing references) //IL_7fcc: Unknown result type (might be due to invalid IL or missing references) //IL_7fe3: Unknown result type (might be due to invalid IL or missing references) //IL_7fe8: Unknown result type (might be due to invalid IL or missing references) //IL_7f09: Unknown result type (might be due to invalid IL or missing references) //IL_7f0e: Unknown result type (might be due to invalid IL or missing references) //IL_7e1e: Unknown result type (might be due to invalid IL or missing references) //IL_7e29: Unknown result type (might be due to invalid IL or missing references) //IL_7e3a: Unknown result type (might be due to invalid IL or missing references) //IL_7e3f: Unknown result type (might be due to invalid IL or missing references) //IL_7e44: Unknown result type (might be due to invalid IL or missing references) //IL_45f6: Unknown result type (might be due to invalid IL or missing references) //IL_45fc: Unknown result type (might be due to invalid IL or missing references) //IL_4601: Unknown result type (might be due to invalid IL or missing references) //IL_4607: Unknown result type (might be due to invalid IL or missing references) //IL_4611: Unknown result type (might be due to invalid IL or missing references) //IL_4616: Unknown result type (might be due to invalid IL or missing references) //IL_461c: Unknown result type (might be due to invalid IL or missing references) //IL_4626: Unknown result type (might be due to invalid IL or missing references) //IL_462b: Unknown result type (might be due to invalid IL or missing references) //IL_4631: Unknown result type (might be due to invalid IL or missing references) //IL_4636: Unknown result type (might be due to invalid IL or missing references) //IL_4641: Unknown result type (might be due to invalid IL or missing references) //IL_4647: Unknown result type (might be due to invalid IL or missing references) //IL_464c: Unknown result type (might be due to invalid IL or missing references) //IL_4652: Unknown result type (might be due to invalid IL or missing references) //IL_465c: Unknown result type (might be due to invalid IL or missing references) //IL_4661: Unknown result type (might be due to invalid IL or missing references) //IL_4667: Unknown result type (might be due to invalid IL or missing references) //IL_4671: Unknown result type (might be due to invalid IL or missing references) //IL_4676: Unknown result type (might be due to invalid IL or missing references) //IL_467c: Unknown result type (might be due to invalid IL or missing references) //IL_4681: Unknown result type (might be due to invalid IL or missing references) //IL_4687: Unknown result type (might be due to invalid IL or missing references) //IL_468c: Unknown result type (might be due to invalid IL or missing references) //IL_4698: Unknown result type (might be due to invalid IL or missing references) //IL_9c0c: Unknown result type (might be due to invalid IL or missing references) //IL_9c0e: Unknown result type (might be due to invalid IL or missing references) //IL_9c1f: Unknown result type (might be due to invalid IL or missing references) //IL_8ef7: Unknown result type (might be due to invalid IL or missing references) //IL_8efd: Unknown result type (might be due to invalid IL or missing references) //IL_8f02: Unknown result type (might be due to invalid IL or missing references) //IL_8f08: Unknown result type (might be due to invalid IL or missing references) //IL_8f12: Unknown result type (might be due to invalid IL or missing references) //IL_8f17: Unknown result type (might be due to invalid IL or missing references) //IL_8f1d: Unknown result type (might be due to invalid IL or missing references) //IL_8f27: Unknown result type (might be due to invalid IL or missing references) //IL_8f2c: Unknown result type (might be due to invalid IL or missing references) //IL_8f32: Unknown result type (might be due to invalid IL or missing references) //IL_8f37: Unknown result type (might be due to invalid IL or missing references) //IL_8f3d: Unknown result type (might be due to invalid IL or missing references) //IL_8f47: Unknown result type (might be due to invalid IL or missing references) //IL_8f4c: Unknown result type (might be due to invalid IL or missing references) //IL_8f57: Unknown result type (might be due to invalid IL or missing references) //IL_8f5d: Unknown result type (might be due to invalid IL or missing references) //IL_8f62: Unknown result type (might be due to invalid IL or missing references) //IL_8f68: Unknown result type (might be due to invalid IL or missing references) //IL_8f72: Unknown result type (might be due to invalid IL or missing references) //IL_8f77: Unknown result type (might be due to invalid IL or missing references) //IL_8f7d: Unknown result type (might be due to invalid IL or missing references) //IL_8f87: Unknown result type (might be due to invalid IL or missing references) //IL_8f8c: Unknown result type (might be due to invalid IL or missing references) //IL_8f92: Unknown result type (might be due to invalid IL or missing references) //IL_8f97: Unknown result type (might be due to invalid IL or missing references) //IL_8f9d: Unknown result type (might be due to invalid IL or missing references) //IL_8fa7: Unknown result type (might be due to invalid IL or missing references) //IL_8fac: Unknown result type (might be due to invalid IL or missing references) //IL_8fb8: Unknown result type (might be due to invalid IL or missing references) //IL_8e86: Unknown result type (might be due to invalid IL or missing references) //IL_8e8b: Unknown result type (might be due to invalid IL or missing references) //IL_8d71: Unknown result type (might be due to invalid IL or missing references) //IL_8d7c: Unknown result type (might be due to invalid IL or missing references) //IL_8d8d: Unknown result type (might be due to invalid IL or missing references) //IL_8d92: Unknown result type (might be due to invalid IL or missing references) //IL_8d97: Unknown result type (might be due to invalid IL or missing references) //IL_87ed: Unknown result type (might be due to invalid IL or missing references) //IL_87f2: Unknown result type (might be due to invalid IL or missing references) //IL_882d: Unknown result type (might be due to invalid IL or missing references) //IL_8832: Unknown result type (might be due to invalid IL or missing references) //IL_8849: Unknown result type (might be due to invalid IL or missing references) //IL_884e: Unknown result type (might be due to invalid IL or missing references) //IL_876f: Unknown result type (might be due to invalid IL or missing references) //IL_8774: Unknown result type (might be due to invalid IL or missing references) //IL_865a: Unknown result type (might be due to invalid IL or missing references) //IL_8665: Unknown result type (might be due to invalid IL or missing references) //IL_8676: Unknown result type (might be due to invalid IL or missing references) //IL_867b: Unknown result type (might be due to invalid IL or missing references) //IL_8680: Unknown result type (might be due to invalid IL or missing references) //IL_7f43: Unknown result type (might be due to invalid IL or missing references) //IL_7f4e: Unknown result type (might be due to invalid IL or missing references) //IL_7f5f: Unknown result type (might be due to invalid IL or missing references) //IL_7f64: Unknown result type (might be due to invalid IL or missing references) //IL_7f69: Unknown result type (might be due to invalid IL or missing references) //IL_46b5: Unknown result type (might be due to invalid IL or missing references) //IL_46bb: Unknown result type (might be due to invalid IL or missing references) //IL_46c0: Unknown result type (might be due to invalid IL or missing references) //IL_46c6: Unknown result type (might be due to invalid IL or missing references) //IL_46d0: Unknown result type (might be due to invalid IL or missing references) //IL_46d5: Unknown result type (might be due to invalid IL or missing references) //IL_46db: Unknown result type (might be due to invalid IL or missing references) //IL_46e5: Unknown result type (might be due to invalid IL or missing references) //IL_46ea: Unknown result type (might be due to invalid IL or missing references) //IL_46f0: Unknown result type (might be due to invalid IL or missing references) //IL_46f5: Unknown result type (might be due to invalid IL or missing references) //IL_4700: Unknown result type (might be due to invalid IL or missing references) //IL_4706: Unknown result type (might be due to invalid IL or missing references) //IL_470b: Unknown result type (might be due to invalid IL or missing references) //IL_4711: Unknown result type (might be due to invalid IL or missing references) //IL_471b: Unknown result type (might be due to invalid IL or missing references) //IL_4720: Unknown result type (might be due to invalid IL or missing references) //IL_4726: Unknown result type (might be due to invalid IL or missing references) //IL_4730: Unknown result type (might be due to invalid IL or missing references) //IL_4735: Unknown result type (might be due to invalid IL or missing references) //IL_473b: Unknown result type (might be due to invalid IL or missing references) //IL_4740: Unknown result type (might be due to invalid IL or missing references) //IL_4746: Unknown result type (might be due to invalid IL or missing references) //IL_474b: Unknown result type (might be due to invalid IL or missing references) //IL_4757: Unknown result type (might be due to invalid IL or missing references) //IL_9493: Unknown result type (might be due to invalid IL or missing references) //IL_9499: Unknown result type (might be due to invalid IL or missing references) //IL_94a9: Unknown result type (might be due to invalid IL or missing references) //IL_94ba: Unknown result type (might be due to invalid IL or missing references) //IL_94c0: Unknown result type (might be due to invalid IL or missing references) //IL_94c5: Unknown result type (might be due to invalid IL or missing references) //IL_94ca: Unknown result type (might be due to invalid IL or missing references) //IL_943e: Unknown result type (might be due to invalid IL or missing references) //IL_946c: Unknown result type (might be due to invalid IL or missing references) //IL_947c: Unknown result type (might be due to invalid IL or missing references) //IL_93d3: Unknown result type (might be due to invalid IL or missing references) //IL_9401: Unknown result type (might be due to invalid IL or missing references) //IL_9411: Unknown result type (might be due to invalid IL or missing references) //IL_9053: Unknown result type (might be due to invalid IL or missing references) //IL_9058: Unknown result type (might be due to invalid IL or missing references) //IL_9093: Unknown result type (might be due to invalid IL or missing references) //IL_9098: Unknown result type (might be due to invalid IL or missing references) //IL_90af: Unknown result type (might be due to invalid IL or missing references) //IL_90b4: Unknown result type (might be due to invalid IL or missing references) //IL_8fd5: Unknown result type (might be due to invalid IL or missing references) //IL_8fda: Unknown result type (might be due to invalid IL or missing references) //IL_8ec0: Unknown result type (might be due to invalid IL or missing references) //IL_8ecb: Unknown result type (might be due to invalid IL or missing references) //IL_8edc: Unknown result type (might be due to invalid IL or missing references) //IL_8ee1: Unknown result type (might be due to invalid IL or missing references) //IL_8ee6: Unknown result type (might be due to invalid IL or missing references) //IL_87a9: Unknown result type (might be due to invalid IL or missing references) //IL_87b4: Unknown result type (might be due to invalid IL or missing references) //IL_87c5: Unknown result type (might be due to invalid IL or missing references) //IL_87ca: Unknown result type (might be due to invalid IL or missing references) //IL_87cf: Unknown result type (might be due to invalid IL or missing references) //IL_478b: Unknown result type (might be due to invalid IL or missing references) //IL_4791: Unknown result type (might be due to invalid IL or missing references) //IL_4796: Unknown result type (might be due to invalid IL or missing references) //IL_479c: Unknown result type (might be due to invalid IL or missing references) //IL_47a6: Unknown result type (might be due to invalid IL or missing references) //IL_47ab: Unknown result type (might be due to invalid IL or missing references) //IL_47b1: Unknown result type (might be due to invalid IL or missing references) //IL_47bb: Unknown result type (might be due to invalid IL or missing references) //IL_47c0: Unknown result type (might be due to invalid IL or missing references) //IL_47c6: Unknown result type (might be due to invalid IL or missing references) //IL_47cb: Unknown result type (might be due to invalid IL or missing references) //IL_47d1: Unknown result type (might be due to invalid IL or missing references) //IL_47d6: Unknown result type (might be due to invalid IL or missing references) //IL_47e1: Unknown result type (might be due to invalid IL or missing references) //IL_47e7: Unknown result type (might be due to invalid IL or missing references) //IL_47ec: Unknown result type (might be due to invalid IL or missing references) //IL_47f2: Unknown result type (might be due to invalid IL or missing references) //IL_47fc: Unknown result type (might be due to invalid IL or missing references) //IL_4801: Unknown result type (might be due to invalid IL or missing references) //IL_4807: Unknown result type (might be due to invalid IL or missing references) //IL_4811: Unknown result type (might be due to invalid IL or missing references) //IL_4816: Unknown result type (might be due to invalid IL or missing references) //IL_481c: Unknown result type (might be due to invalid IL or missing references) //IL_4826: Unknown result type (might be due to invalid IL or missing references) //IL_482b: Unknown result type (might be due to invalid IL or missing references) //IL_4831: Unknown result type (might be due to invalid IL or missing references) //IL_4836: Unknown result type (might be due to invalid IL or missing references) //IL_483c: Unknown result type (might be due to invalid IL or missing references) //IL_4841: Unknown result type (might be due to invalid IL or missing references) //IL_4847: Unknown result type (might be due to invalid IL or missing references) //IL_484c: Unknown result type (might be due to invalid IL or missing references) //IL_4852: Unknown result type (might be due to invalid IL or missing references) //IL_4857: Unknown result type (might be due to invalid IL or missing references) //IL_4863: Unknown result type (might be due to invalid IL or missing references) //IL_9c95: Unknown result type (might be due to invalid IL or missing references) //IL_9c9a: Unknown result type (might be due to invalid IL or missing references) //IL_969e: Unknown result type (might be due to invalid IL or missing references) //IL_96a4: Unknown result type (might be due to invalid IL or missing references) //IL_96b4: Unknown result type (might be due to invalid IL or missing references) //IL_96c5: Unknown result type (might be due to invalid IL or missing references) //IL_96cb: Unknown result type (might be due to invalid IL or missing references) //IL_96d0: Unknown result type (might be due to invalid IL or missing references) //IL_96d5: Unknown result type (might be due to invalid IL or missing references) //IL_9649: Unknown result type (might be due to invalid IL or missing references) //IL_9677: Unknown result type (might be due to invalid IL or missing references) //IL_9687: Unknown result type (might be due to invalid IL or missing references) //IL_95de: Unknown result type (might be due to invalid IL or missing references) //IL_960c: Unknown result type (might be due to invalid IL or missing references) //IL_961c: Unknown result type (might be due to invalid IL or missing references) //IL_900f: Unknown result type (might be due to invalid IL or missing references) //IL_901a: Unknown result type (might be due to invalid IL or missing references) //IL_902b: Unknown result type (might be due to invalid IL or missing references) //IL_9030: Unknown result type (might be due to invalid IL or missing references) //IL_9035: Unknown result type (might be due to invalid IL or missing references) //IL_4a1f: Unknown result type (might be due to invalid IL or missing references) //IL_4a25: Unknown result type (might be due to invalid IL or missing references) //IL_4a2a: Unknown result type (might be due to invalid IL or missing references) //IL_4a30: Unknown result type (might be due to invalid IL or missing references) //IL_4a3a: Unknown result type (might be due to invalid IL or missing references) //IL_4a3f: Unknown result type (might be due to invalid IL or missing references) //IL_4a45: Unknown result type (might be due to invalid IL or missing references) //IL_4a4f: Unknown result type (might be due to invalid IL or missing references) //IL_4a54: Unknown result type (might be due to invalid IL or missing references) //IL_4a5a: Unknown result type (might be due to invalid IL or missing references) //IL_4a5f: Unknown result type (might be due to invalid IL or missing references) //IL_4a65: Unknown result type (might be due to invalid IL or missing references) //IL_4a6a: Unknown result type (might be due to invalid IL or missing references) //IL_4a75: Unknown result type (might be due to invalid IL or missing references) //IL_4a7b: Unknown result type (might be due to invalid IL or missing references) //IL_4a80: Unknown result type (might be due to invalid IL or missing references) //IL_4a86: Unknown result type (might be due to invalid IL or missing references) //IL_4a90: Unknown result type (might be due to invalid IL or missing references) //IL_4a95: Unknown result type (might be due to invalid IL or missing references) //IL_4a9b: Unknown result type (might be due to invalid IL or missing references) //IL_4aa5: Unknown result type (might be due to invalid IL or missing references) //IL_4aaa: Unknown result type (might be due to invalid IL or missing references) //IL_4ab0: Unknown result type (might be due to invalid IL or missing references) //IL_4aba: Unknown result type (might be due to invalid IL or missing references) //IL_4abf: Unknown result type (might be due to invalid IL or missing references) //IL_4ac5: Unknown result type (might be due to invalid IL or missing references) //IL_4aca: Unknown result type (might be due to invalid IL or missing references) //IL_4ad0: Unknown result type (might be due to invalid IL or missing references) //IL_4ad5: Unknown result type (might be due to invalid IL or missing references) //IL_4adb: Unknown result type (might be due to invalid IL or missing references) //IL_4ae0: Unknown result type (might be due to invalid IL or missing references) //IL_4ae6: Unknown result type (might be due to invalid IL or missing references) //IL_4aeb: Unknown result type (might be due to invalid IL or missing references) //IL_4af7: Unknown result type (might be due to invalid IL or missing references) //IL_4df2: Unknown result type (might be due to invalid IL or missing references) //IL_4df8: Unknown result type (might be due to invalid IL or missing references) //IL_4dfd: Unknown result type (might be due to invalid IL or missing references) //IL_4e03: Unknown result type (might be due to invalid IL or missing references) //IL_4e0d: Unknown result type (might be due to invalid IL or missing references) //IL_4e12: Unknown result type (might be due to invalid IL or missing references) //IL_4e18: Unknown result type (might be due to invalid IL or missing references) //IL_4e1d: Unknown result type (might be due to invalid IL or missing references) //IL_4e23: Unknown result type (might be due to invalid IL or missing references) //IL_4e28: Unknown result type (might be due to invalid IL or missing references) //IL_4e2e: Unknown result type (might be due to invalid IL or missing references) //IL_4e33: Unknown result type (might be due to invalid IL or missing references) //IL_4e3e: Unknown result type (might be due to invalid IL or missing references) //IL_4e44: Unknown result type (might be due to invalid IL or missing references) //IL_4e49: Unknown result type (might be due to invalid IL or missing references) //IL_4e4f: Unknown result type (might be due to invalid IL or missing references) //IL_4e59: Unknown result type (might be due to invalid IL or missing references) //IL_4e5e: Unknown result type (might be due to invalid IL or missing references) //IL_4e64: Unknown result type (might be due to invalid IL or missing references) //IL_4e6e: Unknown result type (might be due to invalid IL or missing references) //IL_4e73: Unknown result type (might be due to invalid IL or missing references) //IL_4e79: Unknown result type (might be due to invalid IL or missing references) //IL_4e7e: Unknown result type (might be due to invalid IL or missing references) //IL_4e84: Unknown result type (might be due to invalid IL or missing references) //IL_4e89: Unknown result type (might be due to invalid IL or missing references) //IL_4e8f: Unknown result type (might be due to invalid IL or missing references) //IL_4e94: Unknown result type (might be due to invalid IL or missing references) //IL_4e9a: Unknown result type (might be due to invalid IL or missing references) //IL_4e9f: Unknown result type (might be due to invalid IL or missing references) //IL_4ea5: Unknown result type (might be due to invalid IL or missing references) //IL_4eaa: Unknown result type (might be due to invalid IL or missing references) //IL_4eb6: Unknown result type (might be due to invalid IL or missing references) //IL_48d5: Unknown result type (might be due to invalid IL or missing references) //IL_48db: Unknown result type (might be due to invalid IL or missing references) //IL_48e0: Unknown result type (might be due to invalid IL or missing references) //IL_48e6: Unknown result type (might be due to invalid IL or missing references) //IL_48f0: Unknown result type (might be due to invalid IL or missing references) //IL_48f5: Unknown result type (might be due to invalid IL or missing references) //IL_48fb: Unknown result type (might be due to invalid IL or missing references) //IL_4905: Unknown result type (might be due to invalid IL or missing references) //IL_490a: Unknown result type (might be due to invalid IL or missing references) //IL_4910: Unknown result type (might be due to invalid IL or missing references) //IL_491a: Unknown result type (might be due to invalid IL or missing references) //IL_491f: Unknown result type (might be due to invalid IL or missing references) //IL_4925: Unknown result type (might be due to invalid IL or missing references) //IL_492a: Unknown result type (might be due to invalid IL or missing references) //IL_4930: Unknown result type (might be due to invalid IL or missing references) //IL_4935: Unknown result type (might be due to invalid IL or missing references) //IL_493b: Unknown result type (might be due to invalid IL or missing references) //IL_4940: Unknown result type (might be due to invalid IL or missing references) //IL_4946: Unknown result type (might be due to invalid IL or missing references) //IL_494b: Unknown result type (might be due to invalid IL or missing references) //IL_4956: Unknown result type (might be due to invalid IL or missing references) //IL_495c: Unknown result type (might be due to invalid IL or missing references) //IL_4961: Unknown result type (might be due to invalid IL or missing references) //IL_4967: Unknown result type (might be due to invalid IL or missing references) //IL_4971: Unknown result type (might be due to invalid IL or missing references) //IL_4976: Unknown result type (might be due to invalid IL or missing references) //IL_497c: Unknown result type (might be due to invalid IL or missing references) //IL_4986: Unknown result type (might be due to invalid IL or missing references) //IL_498b: Unknown result type (might be due to invalid IL or missing references) //IL_4991: Unknown result type (might be due to invalid IL or missing references) //IL_4996: Unknown result type (might be due to invalid IL or missing references) //IL_499c: Unknown result type (might be due to invalid IL or missing references) //IL_49a1: Unknown result type (might be due to invalid IL or missing references) //IL_49ad: Unknown result type (might be due to invalid IL or missing references) //IL_9c88: Unknown result type (might be due to invalid IL or missing references) //IL_9c8d: Unknown result type (might be due to invalid IL or missing references) //IL_596a: Unknown result type (might be due to invalid IL or missing references) //IL_5970: Unknown result type (might be due to invalid IL or missing references) //IL_5975: Unknown result type (might be due to invalid IL or missing references) //IL_597b: Unknown result type (might be due to invalid IL or missing references) //IL_5985: Unknown result type (might be due to invalid IL or missing references) //IL_598a: Unknown result type (might be due to invalid IL or missing references) //IL_5990: Unknown result type (might be due to invalid IL or missing references) //IL_599a: Unknown result type (might be due to invalid IL or missing references) //IL_599f: Unknown result type (might be due to invalid IL or missing references) //IL_59a5: Unknown result type (might be due to invalid IL or missing references) //IL_59aa: Unknown result type (might be due to invalid IL or missing references) //IL_59b0: Unknown result type (might be due to invalid IL or missing references) //IL_59b5: Unknown result type (might be due to invalid IL or missing references) //IL_59c0: Unknown result type (might be due to invalid IL or missing references) //IL_59c6: Unknown result type (might be due to invalid IL or missing references) //IL_59cb: Unknown result type (might be due to invalid IL or missing references) //IL_59d1: Unknown result type (might be due to invalid IL or missing references) //IL_59db: Unknown result type (might be due to invalid IL or missing references) //IL_59e0: Unknown result type (might be due to invalid IL or missing references) //IL_59e6: Unknown result type (might be due to invalid IL or missing references) //IL_59f0: Unknown result type (might be due to invalid IL or missing references) //IL_59f5: Unknown result type (might be due to invalid IL or missing references) //IL_59fb: Unknown result type (might be due to invalid IL or missing references) //IL_5a05: Unknown result type (might be due to invalid IL or missing references) //IL_5a0a: Unknown result type (might be due to invalid IL or missing references) //IL_5a10: Unknown result type (might be due to invalid IL or missing references) //IL_5a15: Unknown result type (might be due to invalid IL or missing references) //IL_5a1b: Unknown result type (might be due to invalid IL or missing references) //IL_5a20: Unknown result type (might be due to invalid IL or missing references) //IL_5a26: Unknown result type (might be due to invalid IL or missing references) //IL_5a2b: Unknown result type (might be due to invalid IL or missing references) //IL_5a31: Unknown result type (might be due to invalid IL or missing references) //IL_5a36: Unknown result type (might be due to invalid IL or missing references) //IL_5a42: Unknown result type (might be due to invalid IL or missing references) //IL_4b69: Unknown result type (might be due to invalid IL or missing references) //IL_4b6f: Unknown result type (might be due to invalid IL or missing references) //IL_4b74: Unknown result type (might be due to invalid IL or missing references) //IL_4b7a: Unknown result type (might be due to invalid IL or missing references) //IL_4b84: Unknown result type (might be due to invalid IL or missing references) //IL_4b89: Unknown result type (might be due to invalid IL or missing references) //IL_4b8f: Unknown result type (might be due to invalid IL or missing references) //IL_4b99: Unknown result type (might be due to invalid IL or missing references) //IL_4b9e: Unknown result type (might be due to invalid IL or missing references) //IL_4ba4: Unknown result type (might be due to invalid IL or missing references) //IL_4ba9: Unknown result type (might be due to invalid IL or missing references) //IL_4baf: Unknown result type (might be due to invalid IL or missing references) //IL_4bb4: Unknown result type (might be due to invalid IL or missing references) //IL_4bbf: Unknown result type (might be due to invalid IL or missing references) //IL_4bc5: Unknown result type (might be due to invalid IL or missing references) //IL_4bca: Unknown result type (might be due to invalid IL or missing references) //IL_4bd0: Unknown result type (might be due to invalid IL or missing references) //IL_4bda: Unknown result type (might be due to invalid IL or missing references) //IL_4bdf: Unknown result type (might be due to invalid IL or missing references) //IL_4be5: Unknown result type (might be due to invalid IL or missing references) //IL_4bef: Unknown result type (might be due to invalid IL or missing references) //IL_4bf4: Unknown result type (might be due to invalid IL or missing references) //IL_4bfa: Unknown result type (might be due to invalid IL or missing references) //IL_4c04: Unknown result type (might be due to invalid IL or missing references) //IL_4c09: Unknown result type (might be due to invalid IL or missing references) //IL_4c0f: Unknown result type (might be due to invalid IL or missing references) //IL_4c14: Unknown result type (might be due to invalid IL or missing references) //IL_4c1a: Unknown result type (might be due to invalid IL or missing references) //IL_4c1f: Unknown result type (might be due to invalid IL or missing references) //IL_4c25: Unknown result type (might be due to invalid IL or missing references) //IL_4c2a: Unknown result type (might be due to invalid IL or missing references) //IL_4c36: Unknown result type (might be due to invalid IL or missing references) //IL_a1f7: Unknown result type (might be due to invalid IL or missing references) //IL_a1fc: Unknown result type (might be due to invalid IL or missing references) //IL_5bfe: Unknown result type (might be due to invalid IL or missing references) //IL_5c04: Unknown result type (might be due to invalid IL or missing references) //IL_5c09: Unknown result type (might be due to invalid IL or missing references) //IL_5c0f: Unknown result type (might be due to invalid IL or missing references) //IL_5c19: Unknown result type (might be due to invalid IL or missing references) //IL_5c1e: Unknown result type (might be due to invalid IL or missing references) //IL_5c24: Unknown result type (might be due to invalid IL or missing references) //IL_5c2e: Unknown result type (might be due to invalid IL or missing references) //IL_5c33: Unknown result type (might be due to invalid IL or missing references) //IL_5c39: Unknown result type (might be due to invalid IL or missing references) //IL_5c3e: Unknown result type (might be due to invalid IL or missing references) //IL_5c44: Unknown result type (might be due to invalid IL or missing references) //IL_5c49: Unknown result type (might be due to invalid IL or missing references) //IL_5c54: Unknown result type (might be due to invalid IL or missing references) //IL_5c5a: Unknown result type (might be due to invalid IL or missing references) //IL_5c5f: Unknown result type (might be due to invalid IL or missing references) //IL_5c65: Unknown result type (might be due to invalid IL or missing references) //IL_5c6f: Unknown result type (might be due to invalid IL or missing references) //IL_5c74: Unknown result type (might be due to invalid IL or missing references) //IL_5c7a: Unknown result type (might be due to invalid IL or missing references) //IL_5c84: Unknown result type (might be due to invalid IL or missing references) //IL_5c89: Unknown result type (might be due to invalid IL or missing references) //IL_5c8f: Unknown result type (might be due to invalid IL or missing references) //IL_5c99: Unknown result type (might be due to invalid IL or missing references) //IL_5c9e: Unknown result type (might be due to invalid IL or missing references) //IL_5ca4: Unknown result type (might be due to invalid IL or missing references) //IL_5ca9: Unknown result type (might be due to invalid IL or missing references) //IL_5caf: Unknown result type (might be due to invalid IL or missing references) //IL_5cb4: Unknown result type (might be due to invalid IL or missing references) //IL_5cba: Unknown result type (might be due to invalid IL or missing references) //IL_5cbf: Unknown result type (might be due to invalid IL or missing references) //IL_5cc5: Unknown result type (might be due to invalid IL or missing references) //IL_5cca: Unknown result type (might be due to invalid IL or missing references) //IL_5cd6: Unknown result type (might be due to invalid IL or missing references) //IL_4f28: Unknown result type (might be due to invalid IL or missing references) //IL_4f2e: Unknown result type (might be due to invalid IL or missing references) //IL_4f33: Unknown result type (might be due to invalid IL or missing references) //IL_4f39: Unknown result type (might be due to invalid IL or missing references) //IL_4f43: Unknown result type (might be due to invalid IL or missing references) //IL_4f48: Unknown result type (might be due to invalid IL or missing references) //IL_4f4e: Unknown result type (might be due to invalid IL or missing references) //IL_4f53: Unknown result type (might be due to invalid IL or missing references) //IL_4f59: Unknown result type (might be due to invalid IL or missing references) //IL_4f5e: Unknown result type (might be due to invalid IL or missing references) //IL_4f64: Unknown result type (might be due to invalid IL or missing references) //IL_4f69: Unknown result type (might be due to invalid IL or missing references) //IL_4f74: Unknown result type (might be due to invalid IL or missing references) //IL_4f7a: Unknown result type (might be due to invalid IL or missing references) //IL_4f7f: Unknown result type (might be due to invalid IL or missing references) //IL_4f85: Unknown result type (might be due to invalid IL or missing references) //IL_4f8f: Unknown result type (might be due to invalid IL or missing references) //IL_4f94: Unknown result type (might be due to invalid IL or missing references) //IL_4f9a: Unknown result type (might be due to invalid IL or missing references) //IL_4f9f: Unknown result type (might be due to invalid IL or missing references) //IL_4fa5: Unknown result type (might be due to invalid IL or missing references) //IL_4faf: Unknown result type (might be due to invalid IL or missing references) //IL_4fb4: Unknown result type (might be due to invalid IL or missing references) //IL_4fba: Unknown result type (might be due to invalid IL or missing references) //IL_4fbf: Unknown result type (might be due to invalid IL or missing references) //IL_4fc5: Unknown result type (might be due to invalid IL or missing references) //IL_4fca: Unknown result type (might be due to invalid IL or missing references) //IL_4fd0: Unknown result type (might be due to invalid IL or missing references) //IL_4fd5: Unknown result type (might be due to invalid IL or missing references) //IL_4fe1: Unknown result type (might be due to invalid IL or missing references) //IL_5189: Unknown result type (might be due to invalid IL or missing references) //IL_518f: Unknown result type (might be due to invalid IL or missing references) //IL_5194: Unknown result type (might be due to invalid IL or missing references) //IL_519a: Unknown result type (might be due to invalid IL or missing references) //IL_51a4: Unknown result type (might be due to invalid IL or missing references) //IL_51a9: Unknown result type (might be due to invalid IL or missing references) //IL_51af: Unknown result type (might be due to invalid IL or missing references) //IL_51b9: Unknown result type (might be due to invalid IL or missing references) //IL_51be: Unknown result type (might be due to invalid IL or missing references) //IL_51c4: Unknown result type (might be due to invalid IL or missing references) //IL_51c9: Unknown result type (might be due to invalid IL or missing references) //IL_51cf: Unknown result type (might be due to invalid IL or missing references) //IL_51d4: Unknown result type (might be due to invalid IL or missing references) //IL_51df: Unknown result type (might be due to invalid IL or missing references) //IL_51e5: Unknown result type (might be due to invalid IL or missing references) //IL_51ea: Unknown result type (might be due to invalid IL or missing references) //IL_51f0: Unknown result type (might be due to invalid IL or missing references) //IL_51fa: Unknown result type (might be due to invalid IL or missing references) //IL_51ff: Unknown result type (might be due to invalid IL or missing references) //IL_5205: Unknown result type (might be due to invalid IL or missing references) //IL_520f: Unknown result type (might be due to invalid IL or missing references) //IL_5214: Unknown result type (might be due to invalid IL or missing references) //IL_521a: Unknown result type (might be due to invalid IL or missing references) //IL_5224: Unknown result type (might be due to invalid IL or missing references) //IL_5229: Unknown result type (might be due to invalid IL or missing references) //IL_522f: Unknown result type (might be due to invalid IL or missing references) //IL_5234: Unknown result type (might be due to invalid IL or missing references) //IL_523a: Unknown result type (might be due to invalid IL or missing references) //IL_523f: Unknown result type (might be due to invalid IL or missing references) //IL_5245: Unknown result type (might be due to invalid IL or missing references) //IL_524a: Unknown result type (might be due to invalid IL or missing references) //IL_5256: Unknown result type (might be due to invalid IL or missing references) //IL_5fd1: Unknown result type (might be due to invalid IL or missing references) //IL_5fd7: Unknown result type (might be due to invalid IL or missing references) //IL_5fdc: Unknown result type (might be due to invalid IL or missing references) //IL_5fe2: Unknown result type (might be due to invalid IL or missing references) //IL_5fec: Unknown result type (might be due to invalid IL or missing references) //IL_5ff1: Unknown result type (might be due to invalid IL or missing references) //IL_5ff7: Unknown result type (might be due to invalid IL or missing references) //IL_5ffc: Unknown result type (might be due to invalid IL or missing references) //IL_6002: Unknown result type (might be due to invalid IL or missing references) //IL_6007: Unknown result type (might be due to invalid IL or missing references) //IL_600d: Unknown result type (might be due to invalid IL or missing references) //IL_6012: Unknown result type (might be due to invalid IL or missing references) //IL_601d: Unknown result type (might be due to invalid IL or missing references) //IL_6023: Unknown result type (might be due to invalid IL or missing references) //IL_6028: Unknown result type (might be due to invalid IL or missing references) //IL_602e: Unknown result type (might be due to invalid IL or missing references) //IL_6038: Unknown result type (might be due to invalid IL or missing references) //IL_603d: Unknown result type (might be due to invalid IL or missing references) //IL_6043: Unknown result type (might be due to invalid IL or missing references) //IL_604d: Unknown result type (might be due to invalid IL or missing references) //IL_6052: Unknown result type (might be due to invalid IL or missing references) //IL_6058: Unknown result type (might be due to invalid IL or missing references) //IL_605d: Unknown result type (might be due to invalid IL or missing references) //IL_6063: Unknown result type (might be due to invalid IL or missing references) //IL_6068: Unknown result type (might be due to invalid IL or missing references) //IL_606e: Unknown result type (might be due to invalid IL or missing references) //IL_6073: Unknown result type (might be due to invalid IL or missing references) //IL_6079: Unknown result type (might be due to invalid IL or missing references) //IL_607e: Unknown result type (might be due to invalid IL or missing references) //IL_6084: Unknown result type (might be due to invalid IL or missing references) //IL_6089: Unknown result type (might be due to invalid IL or missing references) //IL_6095: Unknown result type (might be due to invalid IL or missing references) //IL_5ab4: Unknown result type (might be due to invalid IL or missing references) //IL_5aba: Unknown result type (might be due to invalid IL or missing references) //IL_5abf: Unknown result type (might be due to invalid IL or missing references) //IL_5ac5: Unknown result type (might be due to invalid IL or missing references) //IL_5acf: Unknown result type (might be due to invalid IL or missing references) //IL_5ad4: Unknown result type (might be due to invalid IL or missing references) //IL_5ada: Unknown result type (might be due to invalid IL or missing references) //IL_5ae4: Unknown result type (might be due to invalid IL or missing references) //IL_5ae9: Unknown result type (might be due to invalid IL or missing references) //IL_5aef: Unknown result type (might be due to invalid IL or missing references) //IL_5af9: Unknown result type (might be due to invalid IL or missing references) //IL_5afe: Unknown result type (might be due to invalid IL or missing references) //IL_5b04: Unknown result type (might be due to invalid IL or missing references) //IL_5b09: Unknown result type (might be due to invalid IL or missing references) //IL_5b0f: Unknown result type (might be due to invalid IL or missing references) //IL_5b14: Unknown result type (might be due to invalid IL or missing references) //IL_5b1a: Unknown result type (might be due to invalid IL or missing references) //IL_5b1f: Unknown result type (might be due to invalid IL or missing references) //IL_5b25: Unknown result type (might be due to invalid IL or missing references) //IL_5b2a: Unknown result type (might be due to invalid IL or missing references) //IL_5b35: Unknown result type (might be due to invalid IL or missing references) //IL_5b3b: Unknown result type (might be due to invalid IL or missing references) //IL_5b40: Unknown result type (might be due to invalid IL or missing references) //IL_5b46: Unknown result type (might be due to invalid IL or missing references) //IL_5b50: Unknown result type (might be due to invalid IL or missing references) //IL_5b55: Unknown result type (might be due to invalid IL or missing references) //IL_5b5b: Unknown result type (might be due to invalid IL or missing references) //IL_5b65: Unknown result type (might be due to invalid IL or missing references) //IL_5b6a: Unknown result type (might be due to invalid IL or missing references) //IL_5b70: Unknown result type (might be due to invalid IL or missing references) //IL_5b75: Unknown result type (might be due to invalid IL or missing references) //IL_5b7b: Unknown result type (might be due to invalid IL or missing references) //IL_5b80: Unknown result type (might be due to invalid IL or missing references) //IL_5b8c: Unknown result type (might be due to invalid IL or missing references) //IL_4ca8: Unknown result type (might be due to invalid IL or missing references) //IL_4cae: Unknown result type (might be due to invalid IL or missing references) //IL_4cb3: Unknown result type (might be due to invalid IL or missing references) //IL_4cb9: Unknown result type (might be due to invalid IL or missing references) //IL_4cc3: Unknown result type (might be due to invalid IL or missing references) //IL_4cc8: Unknown result type (might be due to invalid IL or missing references) //IL_4cce: Unknown result type (might be due to invalid IL or missing references) //IL_4cd8: Unknown result type (might be due to invalid IL or missing references) //IL_4cdd: Unknown result type (might be due to invalid IL or missing references) //IL_4ce3: Unknown result type (might be due to invalid IL or missing references) //IL_4ced: Unknown result type (might be due to invalid IL or missing references) //IL_4cf2: Unknown result type (might be due to invalid IL or missing references) //IL_4cf8: Unknown result type (might be due to invalid IL or missing references) //IL_4cfd: Unknown result type (might be due to invalid IL or missing references) //IL_4d03: Unknown result type (might be due to invalid IL or missing references) //IL_4d08: Unknown result type (might be due to invalid IL or missing references) //IL_4d0e: Unknown result type (might be due to invalid IL or missing references) //IL_4d13: Unknown result type (might be due to invalid IL or missing references) //IL_4d19: Unknown result type (might be due to invalid IL or missing references) //IL_4d1e: Unknown result type (might be due to invalid IL or missing references) //IL_4d29: Unknown result type (might be due to invalid IL or missing references) //IL_4d2f: Unknown result type (might be due to invalid IL or missing references) //IL_4d34: Unknown result type (might be due to invalid IL or missing references) //IL_4d3a: Unknown result type (might be due to invalid IL or missing references) //IL_4d44: Unknown result type (might be due to invalid IL or missing references) //IL_4d49: Unknown result type (might be due to invalid IL or missing references) //IL_4d4f: Unknown result type (might be due to invalid IL or missing references) //IL_4d59: Unknown result type (might be due to invalid IL or missing references) //IL_4d5e: Unknown result type (might be due to invalid IL or missing references) //IL_4d64: Unknown result type (might be due to invalid IL or missing references) //IL_4d69: Unknown result type (might be due to invalid IL or missing references) //IL_4d6f: Unknown result type (might be due to invalid IL or missing references) //IL_4d74: Unknown result type (might be due to invalid IL or missing references) //IL_4d80: Unknown result type (might be due to invalid IL or missing references) //IL_6b49: Unknown result type (might be due to invalid IL or missing references) //IL_6b4f: Unknown result type (might be due to invalid IL or missing references) //IL_6b54: Unknown result type (might be due to invalid IL or missing references) //IL_6b5a: Unknown result type (might be due to invalid IL or missing references) //IL_6b64: Unknown result type (might be due to invalid IL or missing references) //IL_6b69: Unknown result type (might be due to invalid IL or missing references) //IL_6b6f: Unknown result type (might be due to invalid IL or missing references) //IL_6b79: Unknown result type (might be due to invalid IL or missing references) //IL_6b7e: Unknown result type (might be due to invalid IL or missing references) //IL_6b84: Unknown result type (might be due to invalid IL or missing references) //IL_6b89: Unknown result type (might be due to invalid IL or missing references) //IL_6b94: Unknown result type (might be due to invalid IL or missing references) //IL_6b9a: Unknown result type (might be due to invalid IL or missing references) //IL_6b9f: Unknown result type (might be due to invalid IL or missing references) //IL_6ba5: Unknown result type (might be due to invalid IL or missing references) //IL_6baf: Unknown result type (might be due to invalid IL or missing references) //IL_6bb4: Unknown result type (might be due to invalid IL or missing references) //IL_6bba: Unknown result type (might be due to invalid IL or missing references) //IL_6bc4: Unknown result type (might be due to invalid IL or missing references) //IL_6bc9: Unknown result type (might be due to invalid IL or missing references) //IL_6bcf: Unknown result type (might be due to invalid IL or missing references) //IL_6bd4: Unknown result type (might be due to invalid IL or missing references) //IL_6be0: Unknown result type (might be due to invalid IL or missing references) //IL_5d48: Unknown result type (might be due to invalid IL or missing references) //IL_5d4e: Unknown result type (might be due to invalid IL or missing references) //IL_5d53: Unknown result type (might be due to invalid IL or missing references) //IL_5d59: Unknown result type (might be due to invalid IL or missing references) //IL_5d63: Unknown result type (might be due to invalid IL or missing references) //IL_5d68: Unknown result type (might be due to invalid IL or missing references) //IL_5d6e: Unknown result type (might be due to invalid IL or missing references) //IL_5d78: Unknown result type (might be due to invalid IL or missing references) //IL_5d7d: Unknown result type (might be due to invalid IL or missing references) //IL_5d83: Unknown result type (might be due to invalid IL or missing references) //IL_5d88: Unknown result type (might be due to invalid IL or missing references) //IL_5d8e: Unknown result type (might be due to invalid IL or missing references) //IL_5d93: Unknown result type (might be due to invalid IL or missing references) //IL_5d9e: Unknown result type (might be due to invalid IL or missing references) //IL_5da4: Unknown result type (might be due to invalid IL or missing references) //IL_5da9: Unknown result type (might be due to invalid IL or missing references) //IL_5daf: Unknown result type (might be due to invalid IL or missing references) //IL_5db9: Unknown result type (might be due to invalid IL or missing references) //IL_5dbe: Unknown result type (might be due to invalid IL or missing references) //IL_5dc4: Unknown result type (might be due to invalid IL or missing references) //IL_5dce: Unknown result type (might be due to invalid IL or missing references) //IL_5dd3: Unknown result type (might be due to invalid IL or missing references) //IL_5dd9: Unknown result type (might be due to invalid IL or missing references) //IL_5de3: Unknown result type (might be due to invalid IL or missing references) //IL_5de8: Unknown result type (might be due to invalid IL or missing references) //IL_5dee: Unknown result type (might be due to invalid IL or missing references) //IL_5df3: Unknown result type (might be due to invalid IL or missing references) //IL_5df9: Unknown result type (might be due to invalid IL or missing references) //IL_5dfe: Unknown result type (might be due to invalid IL or missing references) //IL_5e04: Unknown result type (might be due to invalid IL or missing references) //IL_5e09: Unknown result type (might be due to invalid IL or missing references) //IL_5e15: Unknown result type (might be due to invalid IL or missing references) //IL_5053: Unknown result type (might be due to invalid IL or missing references) //IL_5059: Unknown result type (might be due to invalid IL or missing references) //IL_505e: Unknown result type (might be due to invalid IL or missing references) //IL_5064: Unknown result type (might be due to invalid IL or missing references) //IL_506e: Unknown result type (might be due to invalid IL or missing references) //IL_5073: Unknown result type (might be due to invalid IL or missing references) //IL_5079: Unknown result type (might be due to invalid IL or missing references) //IL_5083: Unknown result type (might be due to invalid IL or missing references) //IL_5088: Unknown result type (might be due to invalid IL or missing references) //IL_508e: Unknown result type (might be due to invalid IL or missing references) //IL_5093: Unknown result type (might be due to invalid IL or missing references) //IL_5099: Unknown result type (might be due to invalid IL or missing references) //IL_509e: Unknown result type (might be due to invalid IL or missing references) //IL_50a4: Unknown result type (might be due to invalid IL or missing references) //IL_50a9: Unknown result type (might be due to invalid IL or missing references) //IL_50af: Unknown result type (might be due to invalid IL or missing references) //IL_50b4: Unknown result type (might be due to invalid IL or missing references) //IL_50ba: Unknown result type (might be due to invalid IL or missing references) //IL_50bf: Unknown result type (might be due to invalid IL or missing references) //IL_50ca: Unknown result type (might be due to invalid IL or missing references) //IL_50d0: Unknown result type (might be due to invalid IL or missing references) //IL_50d5: Unknown result type (might be due to invalid IL or missing references) //IL_50db: Unknown result type (might be due to invalid IL or missing references) //IL_50e5: Unknown result type (might be due to invalid IL or missing references) //IL_50ea: Unknown result type (might be due to invalid IL or missing references) //IL_50f0: Unknown result type (might be due to invalid IL or missing references) //IL_50f5: Unknown result type (might be due to invalid IL or missing references) //IL_50fb: Unknown result type (might be due to invalid IL or missing references) //IL_5100: Unknown result type (might be due to invalid IL or missing references) //IL_5106: Unknown result type (might be due to invalid IL or missing references) //IL_510b: Unknown result type (might be due to invalid IL or missing references) //IL_5117: Unknown result type (might be due to invalid IL or missing references) //IL_52c9: Unknown result type (might be due to invalid IL or missing references) //IL_52cf: Unknown result type (might be due to invalid IL or missing references) //IL_52d4: Unknown result type (might be due to invalid IL or missing references) //IL_52da: Unknown result type (might be due to invalid IL or missing references) //IL_52df: Unknown result type (might be due to invalid IL or missing references) //IL_52e5: Unknown result type (might be due to invalid IL or missing references) //IL_52ef: Unknown result type (might be due to invalid IL or missing references) //IL_52f4: Unknown result type (might be due to invalid IL or missing references) //IL_52fa: Unknown result type (might be due to invalid IL or missing references) //IL_52ff: Unknown result type (might be due to invalid IL or missing references) //IL_5305: Unknown result type (might be due to invalid IL or missing references) //IL_530a: Unknown result type (might be due to invalid IL or missing references) //IL_5314: Unknown result type (might be due to invalid IL or missing references) //IL_5325: Unknown result type (might be due to invalid IL or missing references) //IL_a2a4: Unknown result type (might be due to invalid IL or missing references) //IL_a2a9: Unknown result type (might be due to invalid IL or missing references) //IL_6c8a: Unknown result type (might be due to invalid IL or missing references) //IL_6c90: Unknown result type (might be due to invalid IL or missing references) //IL_6c95: Unknown result type (might be due to invalid IL or missing references) //IL_6c9b: Unknown result type (might be due to invalid IL or missing references) //IL_6ca5: Unknown result type (might be due to invalid IL or missing references) //IL_6caa: Unknown result type (might be due to invalid IL or missing references) //IL_6cb0: Unknown result type (might be due to invalid IL or missing references) //IL_6cba: Unknown result type (might be due to invalid IL or missing references) //IL_6cbf: Unknown result type (might be due to invalid IL or missing references) //IL_6cc5: Unknown result type (might be due to invalid IL or missing references) //IL_6cca: Unknown result type (might be due to invalid IL or missing references) //IL_6cd5: Unknown result type (might be due to invalid IL or missing references) //IL_6cdb: Unknown result type (might be due to invalid IL or missing references) //IL_6ce0: Unknown result type (might be due to invalid IL or missing references) //IL_6ce6: Unknown result type (might be due to invalid IL or missing references) //IL_6cf0: Unknown result type (might be due to invalid IL or missing references) //IL_6cf5: Unknown result type (might be due to invalid IL or missing references) //IL_6cfb: Unknown result type (might be due to invalid IL or missing references) //IL_6d05: Unknown result type (might be due to invalid IL or missing references) //IL_6d0a: Unknown result type (might be due to invalid IL or missing references) //IL_6d10: Unknown result type (might be due to invalid IL or missing references) //IL_6d15: Unknown result type (might be due to invalid IL or missing references) //IL_6d21: Unknown result type (might be due to invalid IL or missing references) //IL_6bfd: Unknown result type (might be due to invalid IL or missing references) //IL_6c02: Unknown result type (might be due to invalid IL or missing references) //IL_6107: Unknown result type (might be due to invalid IL or missing references) //IL_610d: Unknown result type (might be due to invalid IL or missing references) //IL_6112: Unknown result type (might be due to invalid IL or missing references) //IL_6118: Unknown result type (might be due to invalid IL or missing references) //IL_6122: Unknown result type (might be due to invalid IL or missing references) //IL_6127: Unknown result type (might be due to invalid IL or missing references) //IL_612d: Unknown result type (might be due to invalid IL or missing references) //IL_6132: Unknown result type (might be due to invalid IL or missing references) //IL_6138: Unknown result type (might be due to invalid IL or missing references) //IL_613d: Unknown result type (might be due to invalid IL or missing references) //IL_6143: Unknown result type (might be due to invalid IL or missing references) //IL_6148: Unknown result type (might be due to invalid IL or missing references) //IL_6153: Unknown result type (might be due to invalid IL or missing references) //IL_6159: Unknown result type (might be due to invalid IL or missing references) //IL_615e: Unknown result type (might be due to invalid IL or missing references) //IL_6164: Unknown result type (might be due to invalid IL or missing references) //IL_616e: Unknown result type (might be due to invalid IL or missing references) //IL_6173: Unknown result type (might be due to invalid IL or missing references) //IL_6179: Unknown result type (might be due to invalid IL or missing references) //IL_617e: Unknown result type (might be due to invalid IL or missing references) //IL_6184: Unknown result type (might be due to invalid IL or missing references) //IL_618e: Unknown result type (might be due to invalid IL or missing references) //IL_6193: Unknown result type (might be due to invalid IL or missing references) //IL_6199: Unknown result type (might be due to invalid IL or missing references) //IL_619e: Unknown result type (might be due to invalid IL or missing references) //IL_61a4: Unknown result type (might be due to invalid IL or missing references) //IL_61a9: Unknown result type (might be due to invalid IL or missing references) //IL_61af: Unknown result type (might be due to invalid IL or missing references) //IL_61b4: Unknown result type (might be due to invalid IL or missing references) //IL_61c0: Unknown result type (might be due to invalid IL or missing references) //IL_6368: Unknown result type (might be due to invalid IL or missing references) //IL_636e: Unknown result type (might be due to invalid IL or missing references) //IL_6373: Unknown result type (might be due to invalid IL or missing references) //IL_6379: Unknown result type (might be due to invalid IL or missing references) //IL_6383: Unknown result type (might be due to invalid IL or missing references) //IL_6388: Unknown result type (might be due to invalid IL or missing references) //IL_638e: Unknown result type (might be due to invalid IL or missing references) //IL_6398: Unknown result type (might be due to invalid IL or missing references) //IL_639d: Unknown result type (might be due to invalid IL or missing references) //IL_63a3: Unknown result type (might be due to invalid IL or missing references) //IL_63a8: Unknown result type (might be due to invalid IL or missing references) //IL_63ae: Unknown result type (might be due to invalid IL or missing references) //IL_63b3: Unknown result type (might be due to invalid IL or missing references) //IL_63be: Unknown result type (might be due to invalid IL or missing references) //IL_63c4: Unknown result type (might be due to invalid IL or missing references) //IL_63c9: Unknown result type (might be due to invalid IL or missing references) //IL_63cf: Unknown result type (might be due to invalid IL or missing references) //IL_63d9: Unknown result type (might be due to invalid IL or missing references) //IL_63de: Unknown result type (might be due to invalid IL or missing references) //IL_63e4: Unknown result type (might be due to invalid IL or missing references) //IL_63ee: Unknown result type (might be due to invalid IL or missing references) //IL_63f3: Unknown result type (might be due to invalid IL or missing references) //IL_63f9: Unknown result type (might be due to invalid IL or missing references) //IL_6403: Unknown result type (might be due to invalid IL or missing references) //IL_6408: Unknown result type (might be due to invalid IL or missing references) //IL_640e: Unknown result type (might be due to invalid IL or missing references) //IL_6413: Unknown result type (might be due to invalid IL or missing references) //IL_6419: Unknown result type (might be due to invalid IL or missing references) //IL_641e: Unknown result type (might be due to invalid IL or missing references) //IL_6424: Unknown result type (might be due to invalid IL or missing references) //IL_6429: Unknown result type (might be due to invalid IL or missing references) //IL_6435: Unknown result type (might be due to invalid IL or missing references) //IL_53b2: Unknown result type (might be due to invalid IL or missing references) //IL_53b8: Unknown result type (might be due to invalid IL or missing references) //IL_53bd: Unknown result type (might be due to invalid IL or missing references) //IL_53c3: Unknown result type (might be due to invalid IL or missing references) //IL_53c8: Unknown result type (might be due to invalid IL or missing references) //IL_53ce: Unknown result type (might be due to invalid IL or missing references) //IL_53d8: Unknown result type (might be due to invalid IL or missing references) //IL_53dd: Unknown result type (might be due to invalid IL or missing references) //IL_53e3: Unknown result type (might be due to invalid IL or missing references) //IL_53e8: Unknown result type (might be due to invalid IL or missing references) //IL_53ee: Unknown result type (might be due to invalid IL or missing references) //IL_53f3: Unknown result type (might be due to invalid IL or missing references) //IL_53fd: Unknown result type (might be due to invalid IL or missing references) //IL_540e: Unknown result type (might be due to invalid IL or missing references) //IL_5342: Unknown result type (might be due to invalid IL or missing references) //IL_5347: Unknown result type (might be due to invalid IL or missing references) //IL_a2ce: Unknown result type (might be due to invalid IL or missing references) //IL_a2d3: Unknown result type (might be due to invalid IL or missing references) //IL_9fa7: Unknown result type (might be due to invalid IL or missing references) //IL_9fac: Unknown result type (might be due to invalid IL or missing references) //IL_6dcb: Unknown result type (might be due to invalid IL or missing references) //IL_6dd1: Unknown result type (might be due to invalid IL or missing references) //IL_6dd6: Unknown result type (might be due to invalid IL or missing references) //IL_6ddc: Unknown result type (might be due to invalid IL or missing references) //IL_6de6: Unknown result type (might be due to invalid IL or missing references) //IL_6deb: Unknown result type (might be due to invalid IL or missing references) //IL_6df1: Unknown result type (might be due to invalid IL or missing references) //IL_6dfb: Unknown result type (might be due to invalid IL or missing references) //IL_6e00: Unknown result type (might be due to invalid IL or missing references) //IL_6e06: Unknown result type (might be due to invalid IL or missing references) //IL_6e0b: Unknown result type (might be due to invalid IL or missing references) //IL_6e16: Unknown result type (might be due to invalid IL or missing references) //IL_6e1c: Unknown result type (might be due to invalid IL or missing references) //IL_6e21: Unknown result type (might be due to invalid IL or missing references) //IL_6e27: Unknown result type (might be due to invalid IL or missing references) //IL_6e31: Unknown result type (might be due to invalid IL or missing references) //IL_6e36: Unknown result type (might be due to invalid IL or missing references) //IL_6e3c: Unknown result type (might be due to invalid IL or missing references) //IL_6e46: Unknown result type (might be due to invalid IL or missing references) //IL_6e4b: Unknown result type (might be due to invalid IL or missing references) //IL_6e51: Unknown result type (might be due to invalid IL or missing references) //IL_6e56: Unknown result type (might be due to invalid IL or missing references) //IL_6e62: Unknown result type (might be due to invalid IL or missing references) //IL_6d3e: Unknown result type (might be due to invalid IL or missing references) //IL_6d43: Unknown result type (might be due to invalid IL or missing references) //IL_5e87: Unknown result type (might be due to invalid IL or missing references) //IL_5e8d: Unknown result type (might be due to invalid IL or missing references) //IL_5e92: Unknown result type (might be due to invalid IL or missing references) //IL_5e98: Unknown result type (might be due to invalid IL or missing references) //IL_5ea2: Unknown result type (might be due to invalid IL or missing references) //IL_5ea7: Unknown result type (might be due to invalid IL or missing references) //IL_5ead: Unknown result type (might be due to invalid IL or missing references) //IL_5eb7: Unknown result type (might be due to invalid IL or missing references) //IL_5ebc: Unknown result type (might be due to invalid IL or missing references) //IL_5ec2: Unknown result type (might be due to invalid IL or missing references) //IL_5ecc: Unknown result type (might be due to invalid IL or missing references) //IL_5ed1: Unknown result type (might be due to invalid IL or missing references) //IL_5ed7: Unknown result type (might be due to invalid IL or missing references) //IL_5edc: Unknown result type (might be due to invalid IL or missing references) //IL_5ee2: Unknown result type (might be due to invalid IL or missing references) //IL_5ee7: Unknown result type (might be due to invalid IL or missing references) //IL_5eed: Unknown result type (might be due to invalid IL or missing references) //IL_5ef2: Unknown result type (might be due to invalid IL or missing references) //IL_5ef8: Unknown result type (might be due to invalid IL or missing references) //IL_5efd: Unknown result type (might be due to invalid IL or missing references) //IL_5f08: Unknown result type (might be due to invalid IL or missing references) //IL_5f0e: Unknown result type (might be due to invalid IL or missing references) //IL_5f13: Unknown result type (might be due to invalid IL or missing references) //IL_5f19: Unknown result type (might be due to invalid IL or missing references) //IL_5f23: Unknown result type (might be due to invalid IL or missing references) //IL_5f28: Unknown result type (might be due to invalid IL or missing references) //IL_5f2e: Unknown result type (might be due to invalid IL or missing references) //IL_5f38: Unknown result type (might be due to invalid IL or missing references) //IL_5f3d: Unknown result type (might be due to invalid IL or missing references) //IL_5f43: Unknown result type (might be due to invalid IL or missing references) //IL_5f48: Unknown result type (might be due to invalid IL or missing references) //IL_5f4e: Unknown result type (might be due to invalid IL or missing references) //IL_5f53: Unknown result type (might be due to invalid IL or missing references) //IL_5f5f: Unknown result type (might be due to invalid IL or missing references) //IL_5497: Unknown result type (might be due to invalid IL or missing references) //IL_549c: Unknown result type (might be due to invalid IL or missing references) //IL_54a8: Unknown result type (might be due to invalid IL or missing references) //IL_54ad: Unknown result type (might be due to invalid IL or missing references) //IL_54b2: Unknown result type (might be due to invalid IL or missing references) //IL_54b7: Unknown result type (might be due to invalid IL or missing references) //IL_54bc: Unknown result type (might be due to invalid IL or missing references) //IL_542b: Unknown result type (might be due to invalid IL or missing references) //IL_5430: Unknown result type (might be due to invalid IL or missing references) //IL_537c: Unknown result type (might be due to invalid IL or missing references) //IL_5381: Unknown result type (might be due to invalid IL or missing references) //IL_5386: Unknown result type (might be due to invalid IL or missing references) //IL_5392: Unknown result type (might be due to invalid IL or missing references) //IL_5397: Unknown result type (might be due to invalid IL or missing references) //IL_539c: Unknown result type (might be due to invalid IL or missing references) //IL_53a1: Unknown result type (might be due to invalid IL or missing references) //IL_a23b: Unknown result type (might be due to invalid IL or missing references) //IL_a240: Unknown result type (might be due to invalid IL or missing references) //IL_a251: Unknown result type (might be due to invalid IL or missing references) //IL_a265: Unknown result type (might be due to invalid IL or missing references) //IL_a26a: Unknown result type (might be due to invalid IL or missing references) //IL_a27a: Unknown result type (might be due to invalid IL or missing references) //IL_6f0c: Unknown result type (might be due to invalid IL or missing references) //IL_6f12: Unknown result type (might be due to invalid IL or missing references) //IL_6f17: Unknown result type (might be due to invalid IL or missing references) //IL_6f1d: Unknown result type (might be due to invalid IL or missing references) //IL_6f27: Unknown result type (might be due to invalid IL or missing references) //IL_6f2c: Unknown result type (might be due to invalid IL or missing references) //IL_6f32: Unknown result type (might be due to invalid IL or missing references) //IL_6f3c: Unknown result type (might be due to invalid IL or missing references) //IL_6f41: Unknown result type (might be due to invalid IL or missing references) //IL_6f47: Unknown result type (might be due to invalid IL or missing references) //IL_6f4c: Unknown result type (might be due to invalid IL or missing references) //IL_6f57: Unknown result type (might be due to invalid IL or missing references) //IL_6f5d: Unknown result type (might be due to invalid IL or missing references) //IL_6f62: Unknown result type (might be due to invalid IL or missing references) //IL_6f68: Unknown result type (might be due to invalid IL or missing references) //IL_6f72: Unknown result type (might be due to invalid IL or missing references) //IL_6f77: Unknown result type (might be due to invalid IL or missing references) //IL_6f7d: Unknown result type (might be due to invalid IL or missing references) //IL_6f87: Unknown result type (might be due to invalid IL or missing references) //IL_6f8c: Unknown result type (might be due to invalid IL or missing references) //IL_6f92: Unknown result type (might be due to invalid IL or missing references) //IL_6f97: Unknown result type (might be due to invalid IL or missing references) //IL_6fa3: Unknown result type (might be due to invalid IL or missing references) //IL_6e7f: Unknown result type (might be due to invalid IL or missing references) //IL_6e84: Unknown result type (might be due to invalid IL or missing references) //IL_72cf: Unknown result type (might be due to invalid IL or missing references) //IL_72da: Unknown result type (might be due to invalid IL or missing references) //IL_72eb: Unknown result type (might be due to invalid IL or missing references) //IL_72f0: Unknown result type (might be due to invalid IL or missing references) //IL_72f5: Unknown result type (might be due to invalid IL or missing references) //IL_7304: Unknown result type (might be due to invalid IL or missing references) //IL_7309: Unknown result type (might be due to invalid IL or missing references) //IL_732a: Unknown result type (might be due to invalid IL or missing references) //IL_7335: Unknown result type (might be due to invalid IL or missing references) //IL_7346: Unknown result type (might be due to invalid IL or missing references) //IL_734b: Unknown result type (might be due to invalid IL or missing references) //IL_7350: Unknown result type (might be due to invalid IL or missing references) //IL_7359: Unknown result type (might be due to invalid IL or missing references) //IL_7364: Unknown result type (might be due to invalid IL or missing references) //IL_736f: Unknown result type (might be due to invalid IL or missing references) //IL_7380: Unknown result type (might be due to invalid IL or missing references) //IL_7385: Unknown result type (might be due to invalid IL or missing references) //IL_738a: Unknown result type (might be due to invalid IL or missing references) //IL_7399: Unknown result type (might be due to invalid IL or missing references) //IL_739e: Unknown result type (might be due to invalid IL or missing references) //IL_73cb: Unknown result type (might be due to invalid IL or missing references) //IL_73d6: Unknown result type (might be due to invalid IL or missing references) //IL_73e7: Unknown result type (might be due to invalid IL or missing references) //IL_73ec: Unknown result type (might be due to invalid IL or missing references) //IL_73f1: Unknown result type (might be due to invalid IL or missing references) //IL_73fa: Unknown result type (might be due to invalid IL or missing references) //IL_7406: Unknown result type (might be due to invalid IL or missing references) //IL_6232: Unknown result type (might be due to invalid IL or missing references) //IL_6238: Unknown result type (might be due to invalid IL or missing references) //IL_623d: Unknown result type (might be due to invalid IL or missing references) //IL_6243: Unknown result type (might be due to invalid IL or missing references) //IL_624d: Unknown result type (might be due to invalid IL or missing references) //IL_6252: Unknown result type (might be due to invalid IL or missing references) //IL_6258: Unknown result type (might be due to invalid IL or missing references) //IL_6262: Unknown result type (might be due to invalid IL or missing references) //IL_6267: Unknown result type (might be due to invalid IL or missing references) //IL_626d: Unknown result type (might be due to invalid IL or missing references) //IL_6272: Unknown result type (might be due to invalid IL or missing references) //IL_6278: Unknown result type (might be due to invalid IL or missing references) //IL_627d: Unknown result type (might be due to invalid IL or missing references) //IL_6283: Unknown result type (might be due to invalid IL or missing references) //IL_6288: Unknown result type (might be due to invalid IL or missing references) //IL_628e: Unknown result type (might be due to invalid IL or missing references) //IL_6293: Unknown result type (might be due to invalid IL or missing references) //IL_6299: Unknown result type (might be due to invalid IL or missing references) //IL_629e: Unknown result type (might be due to invalid IL or missing references) //IL_62a9: Unknown result type (might be due to invalid IL or missing references) //IL_62af: Unknown result type (might be due to invalid IL or missing references) //IL_62b4: Unknown result type (might be due to invalid IL or missing references) //IL_62ba: Unknown result type (might be due to invalid IL or missing references) //IL_62c4: Unknown result type (might be due to invalid IL or missing references) //IL_62c9: Unknown result type (might be due to invalid IL or missing references) //IL_62cf: Unknown result type (might be due to invalid IL or missing references) //IL_62d4: Unknown result type (might be due to invalid IL or missing references) //IL_62da: Unknown result type (might be due to invalid IL or missing references) //IL_62df: Unknown result type (might be due to invalid IL or missing references) //IL_62e5: Unknown result type (might be due to invalid IL or missing references) //IL_62ea: Unknown result type (might be due to invalid IL or missing references) //IL_62f6: Unknown result type (might be due to invalid IL or missing references) //IL_64a8: Unknown result type (might be due to invalid IL or missing references) //IL_64ae: Unknown result type (might be due to invalid IL or missing references) //IL_64b3: Unknown result type (might be due to invalid IL or missing references) //IL_64b9: Unknown result type (might be due to invalid IL or missing references) //IL_64be: Unknown result type (might be due to invalid IL or missing references) //IL_64c4: Unknown result type (might be due to invalid IL or missing references) //IL_64ce: Unknown result type (might be due to invalid IL or missing references) //IL_64d3: Unknown result type (might be due to invalid IL or missing references) //IL_64d9: Unknown result type (might be due to invalid IL or missing references) //IL_64de: Unknown result type (might be due to invalid IL or missing references) //IL_64e4: Unknown result type (might be due to invalid IL or missing references) //IL_64e9: Unknown result type (might be due to invalid IL or missing references) //IL_64f3: Unknown result type (might be due to invalid IL or missing references) //IL_6504: Unknown result type (might be due to invalid IL or missing references) //IL_54c9: Unknown result type (might be due to invalid IL or missing references) //IL_54d4: Unknown result type (might be due to invalid IL or missing references) //IL_54e9: Unknown result type (might be due to invalid IL or missing references) //IL_54ef: Unknown result type (might be due to invalid IL or missing references) //IL_54f4: Unknown result type (might be due to invalid IL or missing references) //IL_54fa: Unknown result type (might be due to invalid IL or missing references) //IL_54ff: Unknown result type (might be due to invalid IL or missing references) //IL_5505: Unknown result type (might be due to invalid IL or missing references) //IL_550f: Unknown result type (might be due to invalid IL or missing references) //IL_5514: Unknown result type (might be due to invalid IL or missing references) //IL_551a: Unknown result type (might be due to invalid IL or missing references) //IL_5524: Unknown result type (might be due to invalid IL or missing references) //IL_5529: Unknown result type (might be due to invalid IL or missing references) //IL_552f: Unknown result type (might be due to invalid IL or missing references) //IL_5534: Unknown result type (might be due to invalid IL or missing references) //IL_553a: Unknown result type (might be due to invalid IL or missing references) //IL_553f: Unknown result type (might be due to invalid IL or missing references) //IL_5545: Unknown result type (might be due to invalid IL or missing references) //IL_554a: Unknown result type (might be due to invalid IL or missing references) //IL_5555: Unknown result type (might be due to invalid IL or missing references) //IL_555b: Unknown result type (might be due to invalid IL or missing references) //IL_5560: Unknown result type (might be due to invalid IL or missing references) //IL_5566: Unknown result type (might be due to invalid IL or missing references) //IL_556b: Unknown result type (might be due to invalid IL or missing references) //IL_5571: Unknown result type (might be due to invalid IL or missing references) //IL_557b: Unknown result type (might be due to invalid IL or missing references) //IL_5580: Unknown result type (might be due to invalid IL or missing references) //IL_5586: Unknown result type (might be due to invalid IL or missing references) //IL_5590: Unknown result type (might be due to invalid IL or missing references) //IL_5595: Unknown result type (might be due to invalid IL or missing references) //IL_559b: Unknown result type (might be due to invalid IL or missing references) //IL_55a0: Unknown result type (might be due to invalid IL or missing references) //IL_55a6: Unknown result type (might be due to invalid IL or missing references) //IL_55ab: Unknown result type (might be due to invalid IL or missing references) //IL_55b7: Unknown result type (might be due to invalid IL or missing references) //IL_5465: Unknown result type (might be due to invalid IL or missing references) //IL_546a: Unknown result type (might be due to invalid IL or missing references) //IL_546f: Unknown result type (might be due to invalid IL or missing references) //IL_547b: Unknown result type (might be due to invalid IL or missing references) //IL_5480: Unknown result type (might be due to invalid IL or missing references) //IL_5485: Unknown result type (might be due to invalid IL or missing references) //IL_548a: Unknown result type (might be due to invalid IL or missing references) //IL_a30f: Unknown result type (might be due to invalid IL or missing references) //IL_a314: Unknown result type (might be due to invalid IL or missing references) //IL_9f7f: Unknown result type (might be due to invalid IL or missing references) //IL_9f85: Unknown result type (might be due to invalid IL or missing references) //IL_9f8f: Unknown result type (might be due to invalid IL or missing references) //IL_9f94: Unknown result type (might be due to invalid IL or missing references) //IL_9f47: Unknown result type (might be due to invalid IL or missing references) //IL_9f51: Unknown result type (might be due to invalid IL or missing references) //IL_9f56: Unknown result type (might be due to invalid IL or missing references) //IL_704d: Unknown result type (might be due to invalid IL or missing references) //IL_7053: Unknown result type (might be due to invalid IL or missing references) //IL_7058: Unknown result type (might be due to invalid IL or missing references) //IL_705e: Unknown result type (might be due to invalid IL or missing references) //IL_7068: Unknown result type (might be due to invalid IL or missing references) //IL_706d: Unknown result type (might be due to invalid IL or missing references) //IL_7073: Unknown result type (might be due to invalid IL or missing references) //IL_707d: Unknown result type (might be due to invalid IL or missing references) //IL_7082: Unknown result type (might be due to invalid IL or missing references) //IL_7088: Unknown result type (might be due to invalid IL or missing references) //IL_708d: Unknown result type (might be due to invalid IL or missing references) //IL_7098: Unknown result type (might be due to invalid IL or missing references) //IL_709e: Unknown result type (might be due to invalid IL or missing references) //IL_70a3: Unknown result type (might be due to invalid IL or missing references) //IL_70a9: Unknown result type (might be due to invalid IL or missing references) //IL_70b3: Unknown result type (might be due to invalid IL or missing references) //IL_70b8: Unknown result type (might be due to invalid IL or missing references) //IL_70be: Unknown result type (might be due to invalid IL or missing references) //IL_70c8: Unknown result type (might be due to invalid IL or missing references) //IL_70cd: Unknown result type (might be due to invalid IL or missing references) //IL_70d3: Unknown result type (might be due to invalid IL or missing references) //IL_70d8: Unknown result type (might be due to invalid IL or missing references) //IL_70e4: Unknown result type (might be due to invalid IL or missing references) //IL_6fc0: Unknown result type (might be due to invalid IL or missing references) //IL_6fc5: Unknown result type (might be due to invalid IL or missing references) //IL_7424: Unknown result type (might be due to invalid IL or missing references) //IL_742a: Unknown result type (might be due to invalid IL or missing references) //IL_742f: Unknown result type (might be due to invalid IL or missing references) //IL_7435: Unknown result type (might be due to invalid IL or missing references) //IL_743a: Unknown result type (might be due to invalid IL or missing references) //IL_7440: Unknown result type (might be due to invalid IL or missing references) //IL_744a: Unknown result type (might be due to invalid IL or missing references) //IL_744f: Unknown result type (might be due to invalid IL or missing references) //IL_7455: Unknown result type (might be due to invalid IL or missing references) //IL_745a: Unknown result type (might be due to invalid IL or missing references) //IL_7460: Unknown result type (might be due to invalid IL or missing references) //IL_7465: Unknown result type (might be due to invalid IL or missing references) //IL_746f: Unknown result type (might be due to invalid IL or missing references) //IL_7480: Unknown result type (might be due to invalid IL or missing references) //IL_6591: Unknown result type (might be due to invalid IL or missing references) //IL_6597: Unknown result type (might be due to invalid IL or missing references) //IL_659c: Unknown result type (might be due to invalid IL or missing references) //IL_65a2: Unknown result type (might be due to invalid IL or missing references) //IL_65a7: Unknown result type (might be due to invalid IL or missing references) //IL_65ad: Unknown result type (might be due to invalid IL or missing references) //IL_65b7: Unknown result type (might be due to invalid IL or missing references) //IL_65bc: Unknown result type (might be due to invalid IL or missing references) //IL_65c2: Unknown result type (might be due to invalid IL or missing references) //IL_65c7: Unknown result type (might be due to invalid IL or missing references) //IL_65cd: Unknown result type (might be due to invalid IL or missing references) //IL_65d2: Unknown result type (might be due to invalid IL or missing references) //IL_65dc: Unknown result type (might be due to invalid IL or missing references) //IL_65ed: Unknown result type (might be due to invalid IL or missing references) //IL_6521: Unknown result type (might be due to invalid IL or missing references) //IL_6526: Unknown result type (might be due to invalid IL or missing references) //IL_5729: Unknown result type (might be due to invalid IL or missing references) //IL_572f: Unknown result type (might be due to invalid IL or missing references) //IL_5734: Unknown result type (might be due to invalid IL or missing references) //IL_573a: Unknown result type (might be due to invalid IL or missing references) //IL_573f: Unknown result type (might be due to invalid IL or missing references) //IL_5745: Unknown result type (might be due to invalid IL or missing references) //IL_574f: Unknown result type (might be due to invalid IL or missing references) //IL_5754: Unknown result type (might be due to invalid IL or missing references) //IL_575a: Unknown result type (might be due to invalid IL or missing references) //IL_5764: Unknown result type (might be due to invalid IL or missing references) //IL_5769: Unknown result type (might be due to invalid IL or missing references) //IL_576f: Unknown result type (might be due to invalid IL or missing references) //IL_5774: Unknown result type (might be due to invalid IL or missing references) //IL_577a: Unknown result type (might be due to invalid IL or missing references) //IL_577f: Unknown result type (might be due to invalid IL or missing references) //IL_5785: Unknown result type (might be due to invalid IL or missing references) //IL_578a: Unknown result type (might be due to invalid IL or missing references) //IL_5795: Unknown result type (might be due to invalid IL or missing references) //IL_579b: Unknown result type (might be due to invalid IL or missing references) //IL_57a0: Unknown result type (might be due to invalid IL or missing references) //IL_57a6: Unknown result type (might be due to invalid IL or missing references) //IL_57ab: Unknown result type (might be due to invalid IL or missing references) //IL_57b1: Unknown result type (might be due to invalid IL or missing references) //IL_57bb: Unknown result type (might be due to invalid IL or missing references) //IL_57c0: Unknown result type (might be due to invalid IL or missing references) //IL_57c6: Unknown result type (might be due to invalid IL or missing references) //IL_57d0: Unknown result type (might be due to invalid IL or missing references) //IL_57d5: Unknown result type (might be due to invalid IL or missing references) //IL_57db: Unknown result type (might be due to invalid IL or missing references) //IL_57e0: Unknown result type (might be due to invalid IL or missing references) //IL_57e6: Unknown result type (might be due to invalid IL or missing references) //IL_57eb: Unknown result type (might be due to invalid IL or missing references) //IL_57f7: Unknown result type (might be due to invalid IL or missing references) //IL_55d4: Unknown result type (might be due to invalid IL or missing references) //IL_55d9: Unknown result type (might be due to invalid IL or missing references) //IL_a485: Unknown result type (might be due to invalid IL or missing references) //IL_a48b: Unknown result type (might be due to invalid IL or missing references) //IL_a490: Unknown result type (might be due to invalid IL or missing references) //IL_a496: Unknown result type (might be due to invalid IL or missing references) //IL_a49b: Unknown result type (might be due to invalid IL or missing references) //IL_a4a1: Unknown result type (might be due to invalid IL or missing references) //IL_a4ab: Unknown result type (might be due to invalid IL or missing references) //IL_a4b0: Unknown result type (might be due to invalid IL or missing references) //IL_a4b6: Unknown result type (might be due to invalid IL or missing references) //IL_a4bb: Unknown result type (might be due to invalid IL or missing references) //IL_a4c6: Unknown result type (might be due to invalid IL or missing references) //IL_a4cc: Unknown result type (might be due to invalid IL or missing references) //IL_a4d1: Unknown result type (might be due to invalid IL or missing references) //IL_a4d7: Unknown result type (might be due to invalid IL or missing references) //IL_a4e1: Unknown result type (might be due to invalid IL or missing references) //IL_a4e6: Unknown result type (might be due to invalid IL or missing references) //IL_a4ec: Unknown result type (might be due to invalid IL or missing references) //IL_a4f6: Unknown result type (might be due to invalid IL or missing references) //IL_a4fb: Unknown result type (might be due to invalid IL or missing references) //IL_a501: Unknown result type (might be due to invalid IL or missing references) //IL_a506: Unknown result type (might be due to invalid IL or missing references) //IL_a50c: Unknown result type (might be due to invalid IL or missing references) //IL_a511: Unknown result type (might be due to invalid IL or missing references) //IL_a51d: Unknown result type (might be due to invalid IL or missing references) //IL_a1bc: Unknown result type (might be due to invalid IL or missing references) //IL_a1c1: Unknown result type (might be due to invalid IL or missing references) //IL_718e: Unknown result type (might be due to invalid IL or missing references) //IL_7194: Unknown result type (might be due to invalid IL or missing references) //IL_7199: Unknown result type (might be due to invalid IL or missing references) //IL_719f: Unknown result type (might be due to invalid IL or missing references) //IL_71a9: Unknown result type (might be due to invalid IL or missing references) //IL_71ae: Unknown result type (might be due to invalid IL or missing references) //IL_71b4: Unknown result type (might be due to invalid IL or missing references) //IL_71be: Unknown result type (might be due to invalid IL or missing references) //IL_71c3: Unknown result type (might be due to invalid IL or missing references) //IL_71c9: Unknown result type (might be due to invalid IL or missing references) //IL_71ce: Unknown result type (might be due to invalid IL or missing references) //IL_71d9: Unknown result type (might be due to invalid IL or missing references) //IL_71df: Unknown result type (might be due to invalid IL or missing references) //IL_71e4: Unknown result type (might be due to invalid IL or missing references) //IL_71ea: Unknown result type (might be due to invalid IL or missing references) //IL_71f4: Unknown result type (might be due to invalid IL or missing references) //IL_71f9: Unknown result type (might be due to invalid IL or missing references) //IL_71ff: Unknown result type (might be due to invalid IL or missing references) //IL_7209: Unknown result type (might be due to invalid IL or missing references) //IL_720e: Unknown result type (might be due to invalid IL or missing references) //IL_7214: Unknown result type (might be due to invalid IL or missing references) //IL_7219: Unknown result type (might be due to invalid IL or missing references) //IL_7225: Unknown result type (might be due to invalid IL or missing references) //IL_7101: Unknown result type (might be due to invalid IL or missing references) //IL_7106: Unknown result type (might be due to invalid IL or missing references) //IL_750d: Unknown result type (might be due to invalid IL or missing references) //IL_7513: Unknown result type (might be due to invalid IL or missing references) //IL_7518: Unknown result type (might be due to invalid IL or missing references) //IL_751e: Unknown result type (might be due to invalid IL or missing references) //IL_7523: Unknown result type (might be due to invalid IL or missing references) //IL_7529: Unknown result type (might be due to invalid IL or missing references) //IL_7533: Unknown result type (might be due to invalid IL or missing references) //IL_7538: Unknown result type (might be due to invalid IL or missing references) //IL_753e: Unknown result type (might be due to invalid IL or missing references) //IL_7543: Unknown result type (might be due to invalid IL or missing references) //IL_7549: Unknown result type (might be due to invalid IL or missing references) //IL_754e: Unknown result type (might be due to invalid IL or missing references) //IL_7558: Unknown result type (might be due to invalid IL or missing references) //IL_7569: Unknown result type (might be due to invalid IL or missing references) //IL_749d: Unknown result type (might be due to invalid IL or missing references) //IL_74a2: Unknown result type (might be due to invalid IL or missing references) //IL_6676: Unknown result type (might be due to invalid IL or missing references) //IL_667b: Unknown result type (might be due to invalid IL or missing references) //IL_6687: Unknown result type (might be due to invalid IL or missing references) //IL_668c: Unknown result type (might be due to invalid IL or missing references) //IL_6691: Unknown result type (might be due to invalid IL or missing references) //IL_6696: Unknown result type (might be due to invalid IL or missing references) //IL_669b: Unknown result type (might be due to invalid IL or missing references) //IL_660a: Unknown result type (might be due to invalid IL or missing references) //IL_660f: Unknown result type (might be due to invalid IL or missing references) //IL_655b: Unknown result type (might be due to invalid IL or missing references) //IL_6560: Unknown result type (might be due to invalid IL or missing references) //IL_6565: Unknown result type (might be due to invalid IL or missing references) //IL_6571: Unknown result type (might be due to invalid IL or missing references) //IL_6576: Unknown result type (might be due to invalid IL or missing references) //IL_657b: Unknown result type (might be due to invalid IL or missing references) //IL_6580: Unknown result type (might be due to invalid IL or missing references) //IL_5814: Unknown result type (might be due to invalid IL or missing references) //IL_5819: Unknown result type (might be due to invalid IL or missing references) //IL_7242: Unknown result type (might be due to invalid IL or missing references) //IL_7247: Unknown result type (might be due to invalid IL or missing references) //IL_75f2: Unknown result type (might be due to invalid IL or missing references) //IL_75f7: Unknown result type (might be due to invalid IL or missing references) //IL_7603: Unknown result type (might be due to invalid IL or missing references) //IL_7608: Unknown result type (might be due to invalid IL or missing references) //IL_760d: Unknown result type (might be due to invalid IL or missing references) //IL_7612: Unknown result type (might be due to invalid IL or missing references) //IL_7617: Unknown result type (might be due to invalid IL or missing references) //IL_7586: Unknown result type (might be due to invalid IL or missing references) //IL_758b: Unknown result type (might be due to invalid IL or missing references) //IL_74d7: Unknown result type (might be due to invalid IL or missing references) //IL_74dc: Unknown result type (might be due to invalid IL or missing references) //IL_74e1: Unknown result type (might be due to invalid IL or missing references) //IL_74ed: Unknown result type (might be due to invalid IL or missing references) //IL_74f2: Unknown result type (might be due to invalid IL or missing references) //IL_74f7: Unknown result type (might be due to invalid IL or missing references) //IL_74fc: Unknown result type (might be due to invalid IL or missing references) //IL_66a8: Unknown result type (might be due to invalid IL or missing references) //IL_66b3: Unknown result type (might be due to invalid IL or missing references) //IL_66c8: Unknown result type (might be due to invalid IL or missing references) //IL_66ce: Unknown result type (might be due to invalid IL or missing references) //IL_66d3: Unknown result type (might be due to invalid IL or missing references) //IL_66d9: Unknown result type (might be due to invalid IL or missing references) //IL_66de: Unknown result type (might be due to invalid IL or missing references) //IL_66e4: Unknown result type (might be due to invalid IL or missing references) //IL_66ee: Unknown result type (might be due to invalid IL or missing references) //IL_66f3: Unknown result type (might be due to invalid IL or missing references) //IL_66f9: Unknown result type (might be due to invalid IL or missing references) //IL_6703: Unknown result type (might be due to invalid IL or missing references) //IL_6708: Unknown result type (might be due to invalid IL or missing references) //IL_670e: Unknown result type (might be due to invalid IL or missing references) //IL_6713: Unknown result type (might be due to invalid IL or missing references) //IL_6719: Unknown result type (might be due to invalid IL or missing references) //IL_671e: Unknown result type (might be due to invalid IL or missing references) //IL_6724: Unknown result type (might be due to invalid IL or missing references) //IL_6729: Unknown result type (might be due to invalid IL or missing references) //IL_6734: Unknown result type (might be due to invalid IL or missing references) //IL_673a: Unknown result type (might be due to invalid IL or missing references) //IL_673f: Unknown result type (might be due to invalid IL or missing references) //IL_6745: Unknown result type (might be due to invalid IL or missing references) //IL_674a: Unknown result type (might be due to invalid IL or missing references) //IL_6750: Unknown result type (might be due to invalid IL or missing references) //IL_675a: Unknown result type (might be due to invalid IL or missing references) //IL_675f: Unknown result type (might be due to invalid IL or missing references) //IL_6765: Unknown result type (might be due to invalid IL or missing references) //IL_676f: Unknown result type (might be due to invalid IL or missing references) //IL_6774: Unknown result type (might be due to invalid IL or missing references) //IL_677a: Unknown result type (might be due to invalid IL or missing references) //IL_677f: Unknown result type (might be due to invalid IL or missing references) //IL_6785: Unknown result type (might be due to invalid IL or missing references) //IL_678a: Unknown result type (might be due to invalid IL or missing references) //IL_6796: Unknown result type (might be due to invalid IL or missing references) //IL_6644: Unknown result type (might be due to invalid IL or missing references) //IL_6649: Unknown result type (might be due to invalid IL or missing references) //IL_664e: Unknown result type (might be due to invalid IL or missing references) //IL_665a: Unknown result type (might be due to invalid IL or missing references) //IL_665f: Unknown result type (might be due to invalid IL or missing references) //IL_6664: Unknown result type (might be due to invalid IL or missing references) //IL_6669: Unknown result type (might be due to invalid IL or missing references) //IL_5664: Unknown result type (might be due to invalid IL or missing references) //IL_5669: Unknown result type (might be due to invalid IL or missing references) //IL_5678: Unknown result type (might be due to invalid IL or missing references) //IL_567d: Unknown result type (might be due to invalid IL or missing references) //IL_5694: Unknown result type (might be due to invalid IL or missing references) //IL_5699: Unknown result type (might be due to invalid IL or missing references) //IL_56b5: Unknown result type (might be due to invalid IL or missing references) //IL_56ba: Unknown result type (might be due to invalid IL or missing references) //IL_56c9: Unknown result type (might be due to invalid IL or missing references) //IL_56ce: Unknown result type (might be due to invalid IL or missing references) //IL_56df: Unknown result type (might be due to invalid IL or missing references) //IL_56e4: Unknown result type (might be due to invalid IL or missing references) //IL_ad98: Unknown result type (might be due to invalid IL or missing references) //IL_ad9e: Unknown result type (might be due to invalid IL or missing references) //IL_ada3: Unknown result type (might be due to invalid IL or missing references) //IL_ada9: Unknown result type (might be due to invalid IL or missing references) //IL_adae: Unknown result type (might be due to invalid IL or missing references) //IL_adb4: Unknown result type (might be due to invalid IL or missing references) //IL_adbe: Unknown result type (might be due to invalid IL or missing references) //IL_adc3: Unknown result type (might be due to invalid IL or missing references) //IL_adc9: Unknown result type (might be due to invalid IL or missing references) //IL_adce: Unknown result type (might be due to invalid IL or missing references) //IL_add9: Unknown result type (might be due to invalid IL or missing references) //IL_addf: Unknown result type (might be due to invalid IL or missing references) //IL_ade4: Unknown result type (might be due to invalid IL or missing references) //IL_adea: Unknown result type (might be due to invalid IL or missing references) //IL_adf4: Unknown result type (might be due to invalid IL or missing references) //IL_adf9: Unknown result type (might be due to invalid IL or missing references) //IL_adff: Unknown result type (might be due to invalid IL or missing references) //IL_ae09: Unknown result type (might be due to invalid IL or missing references) //IL_ae0e: Unknown result type (might be due to invalid IL or missing references) //IL_ae14: Unknown result type (might be due to invalid IL or missing references) //IL_ae19: Unknown result type (might be due to invalid IL or missing references) //IL_ae1f: Unknown result type (might be due to invalid IL or missing references) //IL_ae24: Unknown result type (might be due to invalid IL or missing references) //IL_ae30: Unknown result type (might be due to invalid IL or missing references) //IL_7624: Unknown result type (might be due to invalid IL or missing references) //IL_762f: Unknown result type (might be due to invalid IL or missing references) //IL_7644: Unknown result type (might be due to invalid IL or missing references) //IL_764a: Unknown result type (might be due to invalid IL or missing references) //IL_764f: Unknown result type (might be due to invalid IL or missing references) //IL_7655: Unknown result type (might be due to invalid IL or missing references) //IL_765a: Unknown result type (might be due to invalid IL or missing references) //IL_7660: Unknown result type (might be due to invalid IL or missing references) //IL_766a: Unknown result type (might be due to invalid IL or missing references) //IL_766f: Unknown result type (might be due to invalid IL or missing references) //IL_7675: Unknown result type (might be due to invalid IL or missing references) //IL_767a: Unknown result type (might be due to invalid IL or missing references) //IL_7680: Unknown result type (might be due to invalid IL or missing references) //IL_7685: Unknown result type (might be due to invalid IL or missing references) //IL_7690: Unknown result type (might be due to invalid IL or missing references) //IL_7696: Unknown result type (might be due to invalid IL or missing references) //IL_769b: Unknown result type (might be due to invalid IL or missing references) //IL_76a1: Unknown result type (might be due to invalid IL or missing references) //IL_76a6: Unknown result type (might be due to invalid IL or missing references) //IL_76ac: Unknown result type (might be due to invalid IL or missing references) //IL_76b6: Unknown result type (might be due to invalid IL or missing references) //IL_76bb: Unknown result type (might be due to invalid IL or missing references) //IL_76c1: Unknown result type (might be due to invalid IL or missing references) //IL_76c6: Unknown result type (might be due to invalid IL or missing references) //IL_76d2: Unknown result type (might be due to invalid IL or missing references) //IL_75c0: Unknown result type (might be due to invalid IL or missing references) //IL_75c5: Unknown result type (might be due to invalid IL or missing references) //IL_75ca: Unknown result type (might be due to invalid IL or missing references) //IL_75d6: Unknown result type (might be due to invalid IL or missing references) //IL_75db: Unknown result type (might be due to invalid IL or missing references) //IL_75e0: Unknown result type (might be due to invalid IL or missing references) //IL_75e5: Unknown result type (might be due to invalid IL or missing references) //IL_6908: Unknown result type (might be due to invalid IL or missing references) //IL_690e: Unknown result type (might be due to invalid IL or missing references) //IL_6913: Unknown result type (might be due to invalid IL or missing references) //IL_6919: Unknown result type (might be due to invalid IL or missing references) //IL_691e: Unknown result type (might be due to invalid IL or missing references) //IL_6924: Unknown result type (might be due to invalid IL or missing references) //IL_692e: Unknown result type (might be due to invalid IL or missing references) //IL_6933: Unknown result type (might be due to invalid IL or missing references) //IL_6939: Unknown result type (might be due to invalid IL or missing references) //IL_6943: Unknown result type (might be due to invalid IL or missing references) //IL_6948: Unknown result type (might be due to invalid IL or missing references) //IL_694e: Unknown result type (might be due to invalid IL or missing references) //IL_6953: Unknown result type (might be due to invalid IL or missing references) //IL_6959: Unknown result type (might be due to invalid IL or missing references) //IL_695e: Unknown result type (might be due to invalid IL or missing references) //IL_6964: Unknown result type (might be due to invalid IL or missing references) //IL_6969: Unknown result type (might be due to invalid IL or missing references) //IL_6974: Unknown result type (might be due to invalid IL or missing references) //IL_697a: Unknown result type (might be due to invalid IL or missing references) //IL_697f: Unknown result type (might be due to invalid IL or missing references) //IL_6985: Unknown result type (might be due to invalid IL or missing references) //IL_698a: Unknown result type (might be due to invalid IL or missing references) //IL_6990: Unknown result type (might be due to invalid IL or missing references) //IL_699a: Unknown result type (might be due to invalid IL or missing references) //IL_699f: Unknown result type (might be due to invalid IL or missing references) //IL_69a5: Unknown result type (might be due to invalid IL or missing references) //IL_69af: Unknown result type (might be due to invalid IL or missing references) //IL_69b4: Unknown result type (might be due to invalid IL or missing references) //IL_69ba: Unknown result type (might be due to invalid IL or missing references) //IL_69bf: Unknown result type (might be due to invalid IL or missing references) //IL_69c5: Unknown result type (might be due to invalid IL or missing references) //IL_69ca: Unknown result type (might be due to invalid IL or missing references) //IL_69d6: Unknown result type (might be due to invalid IL or missing references) //IL_67b3: Unknown result type (might be due to invalid IL or missing references) //IL_67b8: Unknown result type (might be due to invalid IL or missing references) //IL_58a4: Unknown result type (might be due to invalid IL or missing references) //IL_58a9: Unknown result type (might be due to invalid IL or missing references) //IL_58b8: Unknown result type (might be due to invalid IL or missing references) //IL_58bd: Unknown result type (might be due to invalid IL or missing references) //IL_58d4: Unknown result type (might be due to invalid IL or missing references) //IL_58d9: Unknown result type (might be due to invalid IL or missing references) //IL_58f5: Unknown result type (might be due to invalid IL or missing references) //IL_58fa: Unknown result type (might be due to invalid IL or missing references) //IL_5909: Unknown result type (might be due to invalid IL or missing references) //IL_590e: Unknown result type (might be due to invalid IL or missing references) //IL_591f: Unknown result type (might be due to invalid IL or missing references) //IL_5924: Unknown result type (might be due to invalid IL or missing references) //IL_1003d: Unknown result type (might be due to invalid IL or missing references) //IL_10043: Unknown result type (might be due to invalid IL or missing references) //IL_10045: Unknown result type (might be due to invalid IL or missing references) //IL_10009: Unknown result type (might be due to invalid IL or missing references) //IL_1000e: Unknown result type (might be due to invalid IL or missing references) //IL_1001c: Unknown result type (might be due to invalid IL or missing references) //IL_a54e: Unknown result type (might be due to invalid IL or missing references) //IL_a554: Unknown result type (might be due to invalid IL or missing references) //IL_a559: Unknown result type (might be due to invalid IL or missing references) //IL_a55f: Unknown result type (might be due to invalid IL or missing references) //IL_a564: Unknown result type (might be due to invalid IL or missing references) //IL_a56a: Unknown result type (might be due to invalid IL or missing references) //IL_a56f: Unknown result type (might be due to invalid IL or missing references) //IL_a575: Unknown result type (might be due to invalid IL or missing references) //IL_a57f: Unknown result type (might be due to invalid IL or missing references) //IL_a584: Unknown result type (might be due to invalid IL or missing references) //IL_a58a: Unknown result type (might be due to invalid IL or missing references) //IL_a58f: Unknown result type (might be due to invalid IL or missing references) //IL_a59a: Unknown result type (might be due to invalid IL or missing references) //IL_a5a0: Unknown result type (might be due to invalid IL or missing references) //IL_a5a5: Unknown result type (might be due to invalid IL or missing references) //IL_a5ab: Unknown result type (might be due to invalid IL or missing references) //IL_a5b0: Unknown result type (might be due to invalid IL or missing references) //IL_a5b6: Unknown result type (might be due to invalid IL or missing references) //IL_a5bb: Unknown result type (might be due to invalid IL or missing references) //IL_a5c1: Unknown result type (might be due to invalid IL or missing references) //IL_a5cb: Unknown result type (might be due to invalid IL or missing references) //IL_a5d0: Unknown result type (might be due to invalid IL or missing references) //IL_a5d6: Unknown result type (might be due to invalid IL or missing references) //IL_a5db: Unknown result type (might be due to invalid IL or missing references) //IL_a5e1: Unknown result type (might be due to invalid IL or missing references) //IL_a5e6: Unknown result type (might be due to invalid IL or missing references) //IL_a5ec: Unknown result type (might be due to invalid IL or missing references) //IL_a5f1: Unknown result type (might be due to invalid IL or missing references) //IL_a5fd: Unknown result type (might be due to invalid IL or missing references) //IL_76ef: Unknown result type (might be due to invalid IL or missing references) //IL_76f4: Unknown result type (might be due to invalid IL or missing references) //IL_69f3: Unknown result type (might be due to invalid IL or missing references) //IL_69f8: Unknown result type (might be due to invalid IL or missing references) //IL_a6ff: Unknown result type (might be due to invalid IL or missing references) //IL_a705: Unknown result type (might be due to invalid IL or missing references) //IL_a70a: Unknown result type (might be due to invalid IL or missing references) //IL_a710: Unknown result type (might be due to invalid IL or missing references) //IL_a715: Unknown result type (might be due to invalid IL or missing references) //IL_a71b: Unknown result type (might be due to invalid IL or missing references) //IL_a720: Unknown result type (might be due to invalid IL or missing references) //IL_a726: Unknown result type (might be due to invalid IL or missing references) //IL_a730: Unknown result type (might be due to invalid IL or missing references) //IL_a735: Unknown result type (might be due to invalid IL or missing references) //IL_a73b: Unknown result type (might be due to invalid IL or missing references) //IL_a740: Unknown result type (might be due to invalid IL or missing references) //IL_a74b: Unknown result type (might be due to invalid IL or missing references) //IL_a751: Unknown result type (might be due to invalid IL or missing references) //IL_a756: Unknown result type (might be due to invalid IL or missing references) //IL_a75c: Unknown result type (might be due to invalid IL or missing references) //IL_a761: Unknown result type (might be due to invalid IL or missing references) //IL_a767: Unknown result type (might be due to invalid IL or missing references) //IL_a76c: Unknown result type (might be due to invalid IL or missing references) //IL_a772: Unknown result type (might be due to invalid IL or missing references) //IL_a77c: Unknown result type (might be due to invalid IL or missing references) //IL_a781: Unknown result type (might be due to invalid IL or missing references) //IL_a787: Unknown result type (might be due to invalid IL or missing references) //IL_a78c: Unknown result type (might be due to invalid IL or missing references) //IL_a792: Unknown result type (might be due to invalid IL or missing references) //IL_a797: Unknown result type (might be due to invalid IL or missing references) //IL_a79d: Unknown result type (might be due to invalid IL or missing references) //IL_a7a2: Unknown result type (might be due to invalid IL or missing references) //IL_a7ae: Unknown result type (might be due to invalid IL or missing references) //IL_a617: Unknown result type (might be due to invalid IL or missing references) //IL_a61d: Unknown result type (might be due to invalid IL or missing references) //IL_a622: Unknown result type (might be due to invalid IL or missing references) //IL_a628: Unknown result type (might be due to invalid IL or missing references) //IL_a62d: Unknown result type (might be due to invalid IL or missing references) //IL_a633: Unknown result type (might be due to invalid IL or missing references) //IL_a638: Unknown result type (might be due to invalid IL or missing references) //IL_a63e: Unknown result type (might be due to invalid IL or missing references) //IL_a643: Unknown result type (might be due to invalid IL or missing references) //IL_a649: Unknown result type (might be due to invalid IL or missing references) //IL_a653: Unknown result type (might be due to invalid IL or missing references) //IL_a658: Unknown result type (might be due to invalid IL or missing references) //IL_a663: Unknown result type (might be due to invalid IL or missing references) //IL_a669: Unknown result type (might be due to invalid IL or missing references) //IL_a66e: Unknown result type (might be due to invalid IL or missing references) //IL_a674: Unknown result type (might be due to invalid IL or missing references) //IL_a679: Unknown result type (might be due to invalid IL or missing references) //IL_a67f: Unknown result type (might be due to invalid IL or missing references) //IL_a684: Unknown result type (might be due to invalid IL or missing references) //IL_a68a: Unknown result type (might be due to invalid IL or missing references) //IL_a68f: Unknown result type (might be due to invalid IL or missing references) //IL_a695: Unknown result type (might be due to invalid IL or missing references) //IL_a69f: Unknown result type (might be due to invalid IL or missing references) //IL_a6a4: Unknown result type (might be due to invalid IL or missing references) //IL_a6b0: Unknown result type (might be due to invalid IL or missing references) //IL_6843: Unknown result type (might be due to invalid IL or missing references) //IL_6848: Unknown result type (might be due to invalid IL or missing references) //IL_6857: Unknown result type (might be due to invalid IL or missing references) //IL_685c: Unknown result type (might be due to invalid IL or missing references) //IL_6873: Unknown result type (might be due to invalid IL or missing references) //IL_6878: Unknown result type (might be due to invalid IL or missing references) //IL_6894: Unknown result type (might be due to invalid IL or missing references) //IL_6899: Unknown result type (might be due to invalid IL or missing references) //IL_68a8: Unknown result type (might be due to invalid IL or missing references) //IL_68ad: Unknown result type (might be due to invalid IL or missing references) //IL_68be: Unknown result type (might be due to invalid IL or missing references) //IL_68c3: Unknown result type (might be due to invalid IL or missing references) //IL_1009d: Unknown result type (might be due to invalid IL or missing references) //IL_b6bf: Unknown result type (might be due to invalid IL or missing references) //IL_b6c5: Unknown result type (might be due to invalid IL or missing references) //IL_b6ca: Unknown result type (might be due to invalid IL or missing references) //IL_b6d0: Unknown result type (might be due to invalid IL or missing references) //IL_b6d5: Unknown result type (might be due to invalid IL or missing references) //IL_b6db: Unknown result type (might be due to invalid IL or missing references) //IL_b6e5: Unknown result type (might be due to invalid IL or missing references) //IL_b6ea: Unknown result type (might be due to invalid IL or missing references) //IL_b6f0: Unknown result type (might be due to invalid IL or missing references) //IL_b6f5: Unknown result type (might be due to invalid IL or missing references) //IL_b700: Unknown result type (might be due to invalid IL or missing references) //IL_b706: Unknown result type (might be due to invalid IL or missing references) //IL_b70b: Unknown result type (might be due to invalid IL or missing references) //IL_b711: Unknown result type (might be due to invalid IL or missing references) //IL_b71b: Unknown result type (might be due to invalid IL or missing references) //IL_b720: Unknown result type (might be due to invalid IL or missing references) //IL_b726: Unknown result type (might be due to invalid IL or missing references) //IL_b730: Unknown result type (might be due to invalid IL or missing references) //IL_b735: Unknown result type (might be due to invalid IL or missing references) //IL_b73b: Unknown result type (might be due to invalid IL or missing references) //IL_b740: Unknown result type (might be due to invalid IL or missing references) //IL_b746: Unknown result type (might be due to invalid IL or missing references) //IL_b74b: Unknown result type (might be due to invalid IL or missing references) //IL_b757: Unknown result type (might be due to invalid IL or missing references) //IL_ae61: Unknown result type (might be due to invalid IL or missing references) //IL_ae67: Unknown result type (might be due to invalid IL or missing references) //IL_ae6c: Unknown result type (might be due to invalid IL or missing references) //IL_ae72: Unknown result type (might be due to invalid IL or missing references) //IL_ae77: Unknown result type (might be due to invalid IL or missing references) //IL_ae7d: Unknown result type (might be due to invalid IL or missing references) //IL_ae82: Unknown result type (might be due to invalid IL or missing references) //IL_ae88: Unknown result type (might be due to invalid IL or missing references) //IL_ae92: Unknown result type (might be due to invalid IL or missing references) //IL_ae97: Unknown result type (might be due to invalid IL or missing references) //IL_ae9d: Unknown result type (might be due to invalid IL or missing references) //IL_aea2: Unknown result type (might be due to invalid IL or missing references) //IL_aead: Unknown result type (might be due to invalid IL or missing references) //IL_aeb3: Unknown result type (might be due to invalid IL or missing references) //IL_aeb8: Unknown result type (might be due to invalid IL or missing references) //IL_aebe: Unknown result type (might be due to invalid IL or missing references) //IL_aec3: Unknown result type (might be due to invalid IL or missing references) //IL_aec9: Unknown result type (might be due to invalid IL or missing references) //IL_aece: Unknown result type (might be due to invalid IL or missing references) //IL_aed4: Unknown result type (might be due to invalid IL or missing references) //IL_aede: Unknown result type (might be due to invalid IL or missing references) //IL_aee3: Unknown result type (might be due to invalid IL or missing references) //IL_aee9: Unknown result type (might be due to invalid IL or missing references) //IL_aeee: Unknown result type (might be due to invalid IL or missing references) //IL_aef4: Unknown result type (might be due to invalid IL or missing references) //IL_aef9: Unknown result type (might be due to invalid IL or missing references) //IL_aeff: Unknown result type (might be due to invalid IL or missing references) //IL_af04: Unknown result type (might be due to invalid IL or missing references) //IL_af10: Unknown result type (might be due to invalid IL or missing references) //IL_aa40: Unknown result type (might be due to invalid IL or missing references) //IL_aa46: Unknown result type (might be due to invalid IL or missing references) //IL_aa4b: Unknown result type (might be due to invalid IL or missing references) //IL_aa51: Unknown result type (might be due to invalid IL or missing references) //IL_aa56: Unknown result type (might be due to invalid IL or missing references) //IL_aa5c: Unknown result type (might be due to invalid IL or missing references) //IL_aa66: Unknown result type (might be due to invalid IL or missing references) //IL_aa6b: Unknown result type (might be due to invalid IL or missing references) //IL_aa71: Unknown result type (might be due to invalid IL or missing references) //IL_aa7b: Unknown result type (might be due to invalid IL or missing references) //IL_aa80: Unknown result type (might be due to invalid IL or missing references) //IL_aa86: Unknown result type (might be due to invalid IL or missing references) //IL_aa90: Unknown result type (might be due to invalid IL or missing references) //IL_aa95: Unknown result type (might be due to invalid IL or missing references) //IL_aa9b: Unknown result type (might be due to invalid IL or missing references) //IL_aaa5: Unknown result type (might be due to invalid IL or missing references) //IL_aaaa: Unknown result type (might be due to invalid IL or missing references) //IL_aab0: Unknown result type (might be due to invalid IL or missing references) //IL_aab5: Unknown result type (might be due to invalid IL or missing references) //IL_aac0: Unknown result type (might be due to invalid IL or missing references) //IL_aac6: Unknown result type (might be due to invalid IL or missing references) //IL_aacb: Unknown result type (might be due to invalid IL or missing references) //IL_aad1: Unknown result type (might be due to invalid IL or missing references) //IL_aad6: Unknown result type (might be due to invalid IL or missing references) //IL_aadc: Unknown result type (might be due to invalid IL or missing references) //IL_aae1: Unknown result type (might be due to invalid IL or missing references) //IL_aae7: Unknown result type (might be due to invalid IL or missing references) //IL_aaf1: Unknown result type (might be due to invalid IL or missing references) //IL_aaf6: Unknown result type (might be due to invalid IL or missing references) //IL_aafc: Unknown result type (might be due to invalid IL or missing references) //IL_ab06: Unknown result type (might be due to invalid IL or missing references) //IL_ab0b: Unknown result type (might be due to invalid IL or missing references) //IL_ab11: Unknown result type (might be due to invalid IL or missing references) //IL_ab1b: Unknown result type (might be due to invalid IL or missing references) //IL_ab20: Unknown result type (might be due to invalid IL or missing references) //IL_ab26: Unknown result type (might be due to invalid IL or missing references) //IL_ab2b: Unknown result type (might be due to invalid IL or missing references) //IL_ab37: Unknown result type (might be due to invalid IL or missing references) //IL_a7fd: Unknown result type (might be due to invalid IL or missing references) //IL_a803: Unknown result type (might be due to invalid IL or missing references) //IL_a808: Unknown result type (might be due to invalid IL or missing references) //IL_a80e: Unknown result type (might be due to invalid IL or missing references) //IL_a813: Unknown result type (might be due to invalid IL or missing references) //IL_a819: Unknown result type (might be due to invalid IL or missing references) //IL_a81e: Unknown result type (might be due to invalid IL or missing references) //IL_a824: Unknown result type (might be due to invalid IL or missing references) //IL_a82e: Unknown result type (might be due to invalid IL or missing references) //IL_a833: Unknown result type (might be due to invalid IL or missing references) //IL_a839: Unknown result type (might be due to invalid IL or missing references) //IL_a83e: Unknown result type (might be due to invalid IL or missing references) //IL_a849: Unknown result type (might be due to invalid IL or missing references) //IL_a84f: Unknown result type (might be due to invalid IL or missing references) //IL_a854: Unknown result type (might be due to invalid IL or missing references) //IL_a85a: Unknown result type (might be due to invalid IL or missing references) //IL_a85f: Unknown result type (might be due to invalid IL or missing references) //IL_a865: Unknown result type (might be due to invalid IL or missing references) //IL_a86a: Unknown result type (might be due to invalid IL or missing references) //IL_a870: Unknown result type (might be due to invalid IL or missing references) //IL_a87a: Unknown result type (might be due to invalid IL or missing references) //IL_a87f: Unknown result type (might be due to invalid IL or missing references) //IL_a885: Unknown result type (might be due to invalid IL or missing references) //IL_a88a: Unknown result type (might be due to invalid IL or missing references) //IL_a890: Unknown result type (might be due to invalid IL or missing references) //IL_a895: Unknown result type (might be due to invalid IL or missing references) //IL_a89b: Unknown result type (might be due to invalid IL or missing references) //IL_a8a0: Unknown result type (might be due to invalid IL or missing references) //IL_a8ac: Unknown result type (might be due to invalid IL or missing references) //IL_a7ca: Unknown result type (might be due to invalid IL or missing references) //IL_a7cf: Unknown result type (might be due to invalid IL or missing references) //IL_a6cc: Unknown result type (might be due to invalid IL or missing references) //IL_a6d1: Unknown result type (might be due to invalid IL or missing references) //IL_a0e4: Unknown result type (might be due to invalid IL or missing references) //IL_a0e9: Unknown result type (might be due to invalid IL or missing references) //IL_777f: Unknown result type (might be due to invalid IL or missing references) //IL_7784: Unknown result type (might be due to invalid IL or missing references) //IL_7793: Unknown result type (might be due to invalid IL or missing references) //IL_7798: Unknown result type (might be due to invalid IL or missing references) //IL_77af: Unknown result type (might be due to invalid IL or missing references) //IL_77b4: Unknown result type (might be due to invalid IL or missing references) //IL_77d0: Unknown result type (might be due to invalid IL or missing references) //IL_77d5: Unknown result type (might be due to invalid IL or missing references) //IL_77e4: Unknown result type (might be due to invalid IL or missing references) //IL_77e9: Unknown result type (might be due to invalid IL or missing references) //IL_77fa: Unknown result type (might be due to invalid IL or missing references) //IL_77ff: Unknown result type (might be due to invalid IL or missing references) //IL_6a83: Unknown result type (might be due to invalid IL or missing references) //IL_6a88: Unknown result type (might be due to invalid IL or missing references) //IL_6a97: Unknown result type (might be due to invalid IL or missing references) //IL_6a9c: Unknown result type (might be due to invalid IL or missing references) //IL_6ab3: Unknown result type (might be due to invalid IL or missing references) //IL_6ab8: Unknown result type (might be due to invalid IL or missing references) //IL_6ad4: Unknown result type (might be due to invalid IL or missing references) //IL_6ad9: Unknown result type (might be due to invalid IL or missing references) //IL_6ae8: Unknown result type (might be due to invalid IL or missing references) //IL_6aed: Unknown result type (might be due to invalid IL or missing references) //IL_6afe: Unknown result type (might be due to invalid IL or missing references) //IL_6b03: Unknown result type (might be due to invalid IL or missing references) //IL_b84e: Unknown result type (might be due to invalid IL or missing references) //IL_b854: Unknown result type (might be due to invalid IL or missing references) //IL_b859: Unknown result type (might be due to invalid IL or missing references) //IL_b85f: Unknown result type (might be due to invalid IL or missing references) //IL_b864: Unknown result type (might be due to invalid IL or missing references) //IL_b86a: Unknown result type (might be due to invalid IL or missing references) //IL_b874: Unknown result type (might be due to invalid IL or missing references) //IL_b879: Unknown result type (might be due to invalid IL or missing references) //IL_b87f: Unknown result type (might be due to invalid IL or missing references) //IL_b884: Unknown result type (might be due to invalid IL or missing references) //IL_b88f: Unknown result type (might be due to invalid IL or missing references) //IL_b895: Unknown result type (might be due to invalid IL or missing references) //IL_b89a: Unknown result type (might be due to invalid IL or missing references) //IL_b8a0: Unknown result type (might be due to invalid IL or missing references) //IL_b8aa: Unknown result type (might be due to invalid IL or missing references) //IL_b8af: Unknown result type (might be due to invalid IL or missing references) //IL_b8b5: Unknown result type (might be due to invalid IL or missing references) //IL_b8bf: Unknown result type (might be due to invalid IL or missing references) //IL_b8c4: Unknown result type (might be due to invalid IL or missing references) //IL_b8ca: Unknown result type (might be due to invalid IL or missing references) //IL_b8cf: Unknown result type (might be due to invalid IL or missing references) //IL_b8d5: Unknown result type (might be due to invalid IL or missing references) //IL_b8da: Unknown result type (might be due to invalid IL or missing references) //IL_b8e6: Unknown result type (might be due to invalid IL or missing references) //IL_b793: Unknown result type (might be due to invalid IL or missing references) //IL_b799: Unknown result type (might be due to invalid IL or missing references) //IL_b79e: Unknown result type (might be due to invalid IL or missing references) //IL_b7a4: Unknown result type (might be due to invalid IL or missing references) //IL_b7a9: Unknown result type (might be due to invalid IL or missing references) //IL_b7af: Unknown result type (might be due to invalid IL or missing references) //IL_b7b9: Unknown result type (might be due to invalid IL or missing references) //IL_b7be: Unknown result type (might be due to invalid IL or missing references) //IL_b7c4: Unknown result type (might be due to invalid IL or missing references) //IL_b7c9: Unknown result type (might be due to invalid IL or missing references) //IL_b7d4: Unknown result type (might be due to invalid IL or missing references) //IL_b7da: Unknown result type (might be due to invalid IL or missing references) //IL_b7df: Unknown result type (might be due to invalid IL or missing references) //IL_b7e5: Unknown result type (might be due to invalid IL or missing references) //IL_b7ef: Unknown result type (might be due to invalid IL or missing references) //IL_b7f4: Unknown result type (might be due to invalid IL or missing references) //IL_b7fa: Unknown result type (might be due to invalid IL or missing references) //IL_b804: Unknown result type (might be due to invalid IL or missing references) //IL_b809: Unknown result type (might be due to invalid IL or missing references) //IL_b80f: Unknown result type (might be due to invalid IL or missing references) //IL_b814: Unknown result type (might be due to invalid IL or missing references) //IL_b81a: Unknown result type (might be due to invalid IL or missing references) //IL_b81f: Unknown result type (might be due to invalid IL or missing references) //IL_b82b: Unknown result type (might be due to invalid IL or missing references) //IL_b012: Unknown result type (might be due to invalid IL or missing references) //IL_b018: Unknown result type (might be due to invalid IL or missing references) //IL_b01d: Unknown result type (might be due to invalid IL or missing references) //IL_b023: Unknown result type (might be due to invalid IL or missing references) //IL_b028: Unknown result type (might be due to invalid IL or missing references) //IL_b02e: Unknown result type (might be due to invalid IL or missing references) //IL_b033: Unknown result type (might be due to invalid IL or missing references) //IL_b039: Unknown result type (might be due to invalid IL or missing references) //IL_b043: Unknown result type (might be due to invalid IL or missing references) //IL_b048: Unknown result type (might be due to invalid IL or missing references) //IL_b04e: Unknown result type (might be due to invalid IL or missing references) //IL_b053: Unknown result type (might be due to invalid IL or missing references) //IL_b05e: Unknown result type (might be due to invalid IL or missing references) //IL_b064: Unknown result type (might be due to invalid IL or missing references) //IL_b069: Unknown result type (might be due to invalid IL or missing references) //IL_b06f: Unknown result type (might be due to invalid IL or missing references) //IL_b074: Unknown result type (might be due to invalid IL or missing references) //IL_b07a: Unknown result type (might be due to invalid IL or missing references) //IL_b07f: Unknown result type (might be due to invalid IL or missing references) //IL_b085: Unknown result type (might be due to invalid IL or missing references) //IL_b08f: Unknown result type (might be due to invalid IL or missing references) //IL_b094: Unknown result type (might be due to invalid IL or missing references) //IL_b09a: Unknown result type (might be due to invalid IL or missing references) //IL_b09f: Unknown result type (might be due to invalid IL or missing references) //IL_b0a5: Unknown result type (might be due to invalid IL or missing references) //IL_b0aa: Unknown result type (might be due to invalid IL or missing references) //IL_b0b0: Unknown result type (might be due to invalid IL or missing references) //IL_b0b5: Unknown result type (might be due to invalid IL or missing references) //IL_b0c1: Unknown result type (might be due to invalid IL or missing references) //IL_af2a: Unknown result type (might be due to invalid IL or missing references) //IL_af30: Unknown result type (might be due to invalid IL or missing references) //IL_af35: Unknown result type (might be due to invalid IL or missing references) //IL_af3b: Unknown result type (might be due to invalid IL or missing references) //IL_af40: Unknown result type (might be due to invalid IL or missing references) //IL_af46: Unknown result type (might be due to invalid IL or missing references) //IL_af4b: Unknown result type (might be due to invalid IL or missing references) //IL_af51: Unknown result type (might be due to invalid IL or missing references) //IL_af56: Unknown result type (might be due to invalid IL or missing references) //IL_af5c: Unknown result type (might be due to invalid IL or missing references) //IL_af66: Unknown result type (might be due to invalid IL or missing references) //IL_af6b: Unknown result type (might be due to invalid IL or missing references) //IL_af76: Unknown result type (might be due to invalid IL or missing references) //IL_af7c: Unknown result type (might be due to invalid IL or missing references) //IL_af81: Unknown result type (might be due to invalid IL or missing references) //IL_af87: Unknown result type (might be due to invalid IL or missing references) //IL_af8c: Unknown result type (might be due to invalid IL or missing references) //IL_af92: Unknown result type (might be due to invalid IL or missing references) //IL_af97: Unknown result type (might be due to invalid IL or missing references) //IL_af9d: Unknown result type (might be due to invalid IL or missing references) //IL_afa2: Unknown result type (might be due to invalid IL or missing references) //IL_afa8: Unknown result type (might be due to invalid IL or missing references) //IL_afb2: Unknown result type (might be due to invalid IL or missing references) //IL_afb7: Unknown result type (might be due to invalid IL or missing references) //IL_afc3: Unknown result type (might be due to invalid IL or missing references) //IL_ab70: Unknown result type (might be due to invalid IL or missing references) //IL_ab76: Unknown result type (might be due to invalid IL or missing references) //IL_ab7b: Unknown result type (might be due to invalid IL or missing references) //IL_ab81: Unknown result type (might be due to invalid IL or missing references) //IL_ab86: Unknown result type (might be due to invalid IL or missing references) //IL_ab8c: Unknown result type (might be due to invalid IL or missing references) //IL_ab91: Unknown result type (might be due to invalid IL or missing references) //IL_ab97: Unknown result type (might be due to invalid IL or missing references) //IL_aba1: Unknown result type (might be due to invalid IL or missing references) //IL_aba6: Unknown result type (might be due to invalid IL or missing references) //IL_abac: Unknown result type (might be due to invalid IL or missing references) //IL_abb6: Unknown result type (might be due to invalid IL or missing references) //IL_abbb: Unknown result type (might be due to invalid IL or missing references) //IL_abc1: Unknown result type (might be due to invalid IL or missing references) //IL_abc6: Unknown result type (might be due to invalid IL or missing references) //IL_abd1: Unknown result type (might be due to invalid IL or missing references) //IL_abd7: Unknown result type (might be due to invalid IL or missing references) //IL_abdc: Unknown result type (might be due to invalid IL or missing references) //IL_abe2: Unknown result type (might be due to invalid IL or missing references) //IL_abe7: Unknown result type (might be due to invalid IL or missing references) //IL_abed: Unknown result type (might be due to invalid IL or missing references) //IL_abf2: Unknown result type (might be due to invalid IL or missing references) //IL_abf8: Unknown result type (might be due to invalid IL or missing references) //IL_ac02: Unknown result type (might be due to invalid IL or missing references) //IL_ac07: Unknown result type (might be due to invalid IL or missing references) //IL_ac0d: Unknown result type (might be due to invalid IL or missing references) //IL_ac12: Unknown result type (might be due to invalid IL or missing references) //IL_ac18: Unknown result type (might be due to invalid IL or missing references) //IL_ac1d: Unknown result type (might be due to invalid IL or missing references) //IL_ac23: Unknown result type (might be due to invalid IL or missing references) //IL_ac28: Unknown result type (might be due to invalid IL or missing references) //IL_ac34: Unknown result type (might be due to invalid IL or missing references) //IL_ab53: Unknown result type (might be due to invalid IL or missing references) //IL_ab58: Unknown result type (might be due to invalid IL or missing references) //IL_a8fb: Unknown result type (might be due to invalid IL or missing references) //IL_a901: Unknown result type (might be due to invalid IL or missing references) //IL_a906: Unknown result type (might be due to invalid IL or missing references) //IL_a90c: Unknown result type (might be due to invalid IL or missing references) //IL_a911: Unknown result type (might be due to invalid IL or missing references) //IL_a917: Unknown result type (might be due to invalid IL or missing references) //IL_a921: Unknown result type (might be due to invalid IL or missing references) //IL_a926: Unknown result type (might be due to invalid IL or missing references) //IL_a92c: Unknown result type (might be due to invalid IL or missing references) //IL_a936: Unknown result type (might be due to invalid IL or missing references) //IL_a93b: Unknown result type (might be due to invalid IL or missing references) //IL_a941: Unknown result type (might be due to invalid IL or missing references) //IL_a94b: Unknown result type (might be due to invalid IL or missing references) //IL_a950: Unknown result type (might be due to invalid IL or missing references) //IL_a956: Unknown result type (might be due to invalid IL or missing references) //IL_a960: Unknown result type (might be due to invalid IL or missing references) //IL_a965: Unknown result type (might be due to invalid IL or missing references) //IL_a96b: Unknown result type (might be due to invalid IL or missing references) //IL_a970: Unknown result type (might be due to invalid IL or missing references) //IL_a97b: Unknown result type (might be due to invalid IL or missing references) //IL_a981: Unknown result type (might be due to invalid IL or missing references) //IL_a986: Unknown result type (might be due to invalid IL or missing references) //IL_a98c: Unknown result type (might be due to invalid IL or missing references) //IL_a991: Unknown result type (might be due to invalid IL or missing references) //IL_a997: Unknown result type (might be due to invalid IL or missing references) //IL_a99c: Unknown result type (might be due to invalid IL or missing references) //IL_a9a2: Unknown result type (might be due to invalid IL or missing references) //IL_a9ac: Unknown result type (might be due to invalid IL or missing references) //IL_a9b1: Unknown result type (might be due to invalid IL or missing references) //IL_a9b7: Unknown result type (might be due to invalid IL or missing references) //IL_a9c1: Unknown result type (might be due to invalid IL or missing references) //IL_a9c6: Unknown result type (might be due to invalid IL or missing references) //IL_a9cc: Unknown result type (might be due to invalid IL or missing references) //IL_a9d6: Unknown result type (might be due to invalid IL or missing references) //IL_a9db: Unknown result type (might be due to invalid IL or missing references) //IL_a9e1: Unknown result type (might be due to invalid IL or missing references) //IL_a9e6: Unknown result type (might be due to invalid IL or missing references) //IL_a9f2: Unknown result type (might be due to invalid IL or missing references) //IL_a8c8: Unknown result type (might be due to invalid IL or missing references) //IL_a8cd: Unknown result type (might be due to invalid IL or missing references) //IL_a17c: Unknown result type (might be due to invalid IL or missing references) //IL_a181: Unknown result type (might be due to invalid IL or missing references) //IL_10129: Unknown result type (might be due to invalid IL or missing references) //IL_1012e: Unknown result type (might be due to invalid IL or missing references) //IL_1013d: Unknown result type (might be due to invalid IL or missing references) //IL_10142: Unknown result type (might be due to invalid IL or missing references) //IL_1014b: Unknown result type (might be due to invalid IL or missing references) //IL_b9bb: Unknown result type (might be due to invalid IL or missing references) //IL_b9c1: Unknown result type (might be due to invalid IL or missing references) //IL_b9c6: Unknown result type (might be due to invalid IL or missing references) //IL_b9cc: Unknown result type (might be due to invalid IL or missing references) //IL_b9d1: Unknown result type (might be due to invalid IL or missing references) //IL_b9d7: Unknown result type (might be due to invalid IL or missing references) //IL_b9e1: Unknown result type (might be due to invalid IL or missing references) //IL_b9e6: Unknown result type (might be due to invalid IL or missing references) //IL_b9ec: Unknown result type (might be due to invalid IL or missing references) //IL_b9f1: Unknown result type (might be due to invalid IL or missing references) //IL_b9fc: Unknown result type (might be due to invalid IL or missing references) //IL_ba02: Unknown result type (might be due to invalid IL or missing references) //IL_ba07: Unknown result type (might be due to invalid IL or missing references) //IL_ba0d: Unknown result type (might be due to invalid IL or missing references) //IL_ba17: Unknown result type (might be due to invalid IL or missing references) //IL_ba1c: Unknown result type (might be due to invalid IL or missing references) //IL_ba22: Unknown result type (might be due to invalid IL or missing references) //IL_ba2c: Unknown result type (might be due to invalid IL or missing references) //IL_ba31: Unknown result type (might be due to invalid IL or missing references) //IL_ba37: Unknown result type (might be due to invalid IL or missing references) //IL_ba3c: Unknown result type (might be due to invalid IL or missing references) //IL_ba42: Unknown result type (might be due to invalid IL or missing references) //IL_ba47: Unknown result type (might be due to invalid IL or missing references) //IL_ba53: Unknown result type (might be due to invalid IL or missing references) //IL_b900: Unknown result type (might be due to invalid IL or missing references) //IL_b906: Unknown result type (might be due to invalid IL or missing references) //IL_b90b: Unknown result type (might be due to invalid IL or missing references) //IL_b911: Unknown result type (might be due to invalid IL or missing references) //IL_b916: Unknown result type (might be due to invalid IL or missing references) //IL_b91c: Unknown result type (might be due to invalid IL or missing references) //IL_b926: Unknown result type (might be due to invalid IL or missing references) //IL_b92b: Unknown result type (might be due to invalid IL or missing references) //IL_b931: Unknown result type (might be due to invalid IL or missing references) //IL_b936: Unknown result type (might be due to invalid IL or missing references) //IL_b941: Unknown result type (might be due to invalid IL or missing references) //IL_b947: Unknown result type (might be due to invalid IL or missing references) //IL_b94c: Unknown result type (might be due to invalid IL or missing references) //IL_b952: Unknown result type (might be due to invalid IL or missing references) //IL_b95c: Unknown result type (might be due to invalid IL or missing references) //IL_b961: Unknown result type (might be due to invalid IL or missing references) //IL_b967: Unknown result type (might be due to invalid IL or missing references) //IL_b971: Unknown result type (might be due to invalid IL or missing references) //IL_b976: Unknown result type (might be due to invalid IL or missing references) //IL_b97c: Unknown result type (might be due to invalid IL or missing references) //IL_b981: Unknown result type (might be due to invalid IL or missing references) //IL_b987: Unknown result type (might be due to invalid IL or missing references) //IL_b98c: Unknown result type (might be due to invalid IL or missing references) //IL_b998: Unknown result type (might be due to invalid IL or missing references) //IL_b353: Unknown result type (might be due to invalid IL or missing references) //IL_b359: Unknown result type (might be due to invalid IL or missing references) //IL_b35e: Unknown result type (might be due to invalid IL or missing references) //IL_b364: Unknown result type (might be due to invalid IL or missing references) //IL_b369: Unknown result type (might be due to invalid IL or missing references) //IL_b36f: Unknown result type (might be due to invalid IL or missing references) //IL_b379: Unknown result type (might be due to invalid IL or missing references) //IL_b37e: Unknown result type (might be due to invalid IL or missing references) //IL_b384: Unknown result type (might be due to invalid IL or missing references) //IL_b38e: Unknown result type (might be due to invalid IL or missing references) //IL_b393: Unknown result type (might be due to invalid IL or missing references) //IL_b399: Unknown result type (might be due to invalid IL or missing references) //IL_b3a3: Unknown result type (might be due to invalid IL or missing references) //IL_b3a8: Unknown result type (might be due to invalid IL or missing references) //IL_b3ae: Unknown result type (might be due to invalid IL or missing references) //IL_b3b8: Unknown result type (might be due to invalid IL or missing references) //IL_b3bd: Unknown result type (might be due to invalid IL or missing references) //IL_b3c3: Unknown result type (might be due to invalid IL or missing references) //IL_b3c8: Unknown result type (might be due to invalid IL or missing references) //IL_b3d3: Unknown result type (might be due to invalid IL or missing references) //IL_b3d9: Unknown result type (might be due to invalid IL or missing references) //IL_b3de: Unknown result type (might be due to invalid IL or missing references) //IL_b3e4: Unknown result type (might be due to invalid IL or missing references) //IL_b3e9: Unknown result type (might be due to invalid IL or missing references) //IL_b3ef: Unknown result type (might be due to invalid IL or missing references) //IL_b3f4: Unknown result type (might be due to invalid IL or missing references) //IL_b3fa: Unknown result type (might be due to invalid IL or missing references) //IL_b404: Unknown result type (might be due to invalid IL or missing references) //IL_b409: Unknown result type (might be due to invalid IL or missing references) //IL_b40f: Unknown result type (might be due to invalid IL or missing references) //IL_b419: Unknown result type (might be due to invalid IL or missing references) //IL_b41e: Unknown result type (might be due to invalid IL or missing references) //IL_b424: Unknown result type (might be due to invalid IL or missing references) //IL_b42e: Unknown result type (might be due to invalid IL or missing references) //IL_b433: Unknown result type (might be due to invalid IL or missing references) //IL_b439: Unknown result type (might be due to invalid IL or missing references) //IL_b43e: Unknown result type (might be due to invalid IL or missing references) //IL_b44a: Unknown result type (might be due to invalid IL or missing references) //IL_b110: Unknown result type (might be due to invalid IL or missing references) //IL_b116: Unknown result type (might be due to invalid IL or missing references) //IL_b11b: Unknown result type (might be due to invalid IL or missing references) //IL_b121: Unknown result type (might be due to invalid IL or missing references) //IL_b126: Unknown result type (might be due to invalid IL or missing references) //IL_b12c: Unknown result type (might be due to invalid IL or missing references) //IL_b131: Unknown result type (might be due to invalid IL or missing references) //IL_b137: Unknown result type (might be due to invalid IL or missing references) //IL_b141: Unknown result type (might be due to invalid IL or missing references) //IL_b146: Unknown result type (might be due to invalid IL or missing references) //IL_b14c: Unknown result type (might be due to invalid IL or missing references) //IL_b151: Unknown result type (might be due to invalid IL or missing references) //IL_b15c: Unknown result type (might be due to invalid IL or missing references) //IL_b162: Unknown result type (might be due to invalid IL or missing references) //IL_b167: Unknown result type (might be due to invalid IL or missing references) //IL_b16d: Unknown result type (might be due to invalid IL or missing references) //IL_b172: Unknown result type (might be due to invalid IL or missing references) //IL_b178: Unknown result type (might be due to invalid IL or missing references) //IL_b17d: Unknown result type (might be due to invalid IL or missing references) //IL_b183: Unknown result type (might be due to invalid IL or missing references) //IL_b18d: Unknown result type (might be due to invalid IL or missing references) //IL_b192: Unknown result type (might be due to invalid IL or missing references) //IL_b198: Unknown result type (might be due to invalid IL or missing references) //IL_b19d: Unknown result type (might be due to invalid IL or missing references) //IL_b1a3: Unknown result type (might be due to invalid IL or missing references) //IL_b1a8: Unknown result type (might be due to invalid IL or missing references) //IL_b1ae: Unknown result type (might be due to invalid IL or missing references) //IL_b1b3: Unknown result type (might be due to invalid IL or missing references) //IL_b1bf: Unknown result type (might be due to invalid IL or missing references) //IL_b0dd: Unknown result type (might be due to invalid IL or missing references) //IL_b0e2: Unknown result type (might be due to invalid IL or missing references) //IL_afdf: Unknown result type (might be due to invalid IL or missing references) //IL_afe4: Unknown result type (might be due to invalid IL or missing references) //IL_ac82: Unknown result type (might be due to invalid IL or missing references) //IL_ac88: Unknown result type (might be due to invalid IL or missing references) //IL_ac8d: Unknown result type (might be due to invalid IL or missing references) //IL_ac93: Unknown result type (might be due to invalid IL or missing references) //IL_ac98: Unknown result type (might be due to invalid IL or missing references) //IL_ac9e: Unknown result type (might be due to invalid IL or missing references) //IL_aca3: Unknown result type (might be due to invalid IL or missing references) //IL_aca9: Unknown result type (might be due to invalid IL or missing references) //IL_acae: Unknown result type (might be due to invalid IL or missing references) //IL_acb4: Unknown result type (might be due to invalid IL or missing references) //IL_acbe: Unknown result type (might be due to invalid IL or missing references) //IL_acc3: Unknown result type (might be due to invalid IL or missing references) //IL_acc9: Unknown result type (might be due to invalid IL or missing references) //IL_acce: Unknown result type (might be due to invalid IL or missing references) //IL_acd9: Unknown result type (might be due to invalid IL or missing references) //IL_acdf: Unknown result type (might be due to invalid IL or missing references) //IL_ace4: Unknown result type (might be due to invalid IL or missing references) //IL_acea: Unknown result type (might be due to invalid IL or missing references) //IL_acef: Unknown result type (might be due to invalid IL or missing references) //IL_acf5: Unknown result type (might be due to invalid IL or missing references) //IL_acfa: Unknown result type (might be due to invalid IL or missing references) //IL_ad00: Unknown result type (might be due to invalid IL or missing references) //IL_ad05: Unknown result type (might be due to invalid IL or missing references) //IL_ad0b: Unknown result type (might be due to invalid IL or missing references) //IL_ad10: Unknown result type (might be due to invalid IL or missing references) //IL_ad16: Unknown result type (might be due to invalid IL or missing references) //IL_ad1b: Unknown result type (might be due to invalid IL or missing references) //IL_ad21: Unknown result type (might be due to invalid IL or missing references) //IL_ad26: Unknown result type (might be due to invalid IL or missing references) //IL_ad32: Unknown result type (might be due to invalid IL or missing references) //IL_ac50: Unknown result type (might be due to invalid IL or missing references) //IL_ac56: Unknown result type (might be due to invalid IL or missing references) //IL_ac60: Unknown result type (might be due to invalid IL or missing references) //IL_ac65: Unknown result type (might be due to invalid IL or missing references) //IL_ac6a: Unknown result type (might be due to invalid IL or missing references) //IL_aa0e: Unknown result type (might be due to invalid IL or missing references) //IL_aa14: Unknown result type (might be due to invalid IL or missing references) //IL_aa1e: Unknown result type (might be due to invalid IL or missing references) //IL_aa23: Unknown result type (might be due to invalid IL or missing references) //IL_aa28: Unknown result type (might be due to invalid IL or missing references) //IL_101d6: Unknown result type (might be due to invalid IL or missing references) //IL_101db: Unknown result type (might be due to invalid IL or missing references) //IL_10193: Unknown result type (might be due to invalid IL or missing references) //IL_10198: Unknown result type (might be due to invalid IL or missing references) //IL_101a7: Unknown result type (might be due to invalid IL or missing references) //IL_101ac: Unknown result type (might be due to invalid IL or missing references) //IL_101c5: Unknown result type (might be due to invalid IL or missing references) //IL_ba6d: Unknown result type (might be due to invalid IL or missing references) //IL_ba73: Unknown result type (might be due to invalid IL or missing references) //IL_ba78: Unknown result type (might be due to invalid IL or missing references) //IL_ba7e: Unknown result type (might be due to invalid IL or missing references) //IL_ba83: Unknown result type (might be due to invalid IL or missing references) //IL_ba89: Unknown result type (might be due to invalid IL or missing references) //IL_ba93: Unknown result type (might be due to invalid IL or missing references) //IL_ba98: Unknown result type (might be due to invalid IL or missing references) //IL_ba9e: Unknown result type (might be due to invalid IL or missing references) //IL_baa3: Unknown result type (might be due to invalid IL or missing references) //IL_baae: Unknown result type (might be due to invalid IL or missing references) //IL_bab4: Unknown result type (might be due to invalid IL or missing references) //IL_bab9: Unknown result type (might be due to invalid IL or missing references) //IL_babf: Unknown result type (might be due to invalid IL or missing references) //IL_bac9: Unknown result type (might be due to invalid IL or missing references) //IL_bace: Unknown result type (might be due to invalid IL or missing references) //IL_bad4: Unknown result type (might be due to invalid IL or missing references) //IL_bade: Unknown result type (might be due to invalid IL or missing references) //IL_bae3: Unknown result type (might be due to invalid IL or missing references) //IL_bae9: Unknown result type (might be due to invalid IL or missing references) //IL_baee: Unknown result type (might be due to invalid IL or missing references) //IL_baf4: Unknown result type (might be due to invalid IL or missing references) //IL_baf9: Unknown result type (might be due to invalid IL or missing references) //IL_bb05: Unknown result type (might be due to invalid IL or missing references) //IL_b483: Unknown result type (might be due to invalid IL or missing references) //IL_b489: Unknown result type (might be due to invalid IL or missing references) //IL_b48e: Unknown result type (might be due to invalid IL or missing references) //IL_b494: Unknown result type (might be due to invalid IL or missing references) //IL_b499: Unknown result type (might be due to invalid IL or missing references) //IL_b49f: Unknown result type (might be due to invalid IL or missing references) //IL_b4a4: Unknown result type (might be due to invalid IL or missing references) //IL_b4aa: Unknown result type (might be due to invalid IL or missing references) //IL_b4b4: Unknown result type (might be due to invalid IL or missing references) //IL_b4b9: Unknown result type (might be due to invalid IL or missing references) //IL_b4bf: Unknown result type (might be due to invalid IL or missing references) //IL_b4c9: Unknown result type (might be due to invalid IL or missing references) //IL_b4ce: Unknown result type (might be due to invalid IL or missing references) //IL_b4d4: Unknown result type (might be due to invalid IL or missing references) //IL_b4d9: Unknown result type (might be due to invalid IL or missing references) //IL_b4e4: Unknown result type (might be due to invalid IL or missing references) //IL_b4ea: Unknown result type (might be due to invalid IL or missing references) //IL_b4ef: Unknown result type (might be due to invalid IL or missing references) //IL_b4f5: Unknown result type (might be due to invalid IL or missing references) //IL_b4fa: Unknown result type (might be due to invalid IL or missing references) //IL_b500: Unknown result type (might be due to invalid IL or missing references) //IL_b505: Unknown result type (might be due to invalid IL or missing references) //IL_b50b: Unknown result type (might be due to invalid IL or missing references) //IL_b515: Unknown result type (might be due to invalid IL or missing references) //IL_b51a: Unknown result type (might be due to invalid IL or missing references) //IL_b520: Unknown result type (might be due to invalid IL or missing references) //IL_b525: Unknown result type (might be due to invalid IL or missing references) //IL_b52b: Unknown result type (might be due to invalid IL or missing references) //IL_b530: Unknown result type (might be due to invalid IL or missing references) //IL_b536: Unknown result type (might be due to invalid IL or missing references) //IL_b53b: Unknown result type (might be due to invalid IL or missing references) //IL_b547: Unknown result type (might be due to invalid IL or missing references) //IL_b466: Unknown result type (might be due to invalid IL or missing references) //IL_b46b: Unknown result type (might be due to invalid IL or missing references) //IL_b20e: Unknown result type (might be due to invalid IL or missing references) //IL_b214: Unknown result type (might be due to invalid IL or missing references) //IL_b219: Unknown result type (might be due to invalid IL or missing references) //IL_b21f: Unknown result type (might be due to invalid IL or missing references) //IL_b224: Unknown result type (might be due to invalid IL or missing references) //IL_b22a: Unknown result type (might be due to invalid IL or missing references) //IL_b234: Unknown result type (might be due to invalid IL or missing references) //IL_b239: Unknown result type (might be due to invalid IL or missing references) //IL_b23f: Unknown result type (might be due to invalid IL or missing references) //IL_b249: Unknown result type (might be due to invalid IL or missing references) //IL_b24e: Unknown result type (might be due to invalid IL or missing references) //IL_b254: Unknown result type (might be due to invalid IL or missing references) //IL_b25e: Unknown result type (might be due to invalid IL or missing references) //IL_b263: Unknown result type (might be due to invalid IL or missing references) //IL_b269: Unknown result type (might be due to invalid IL or missing references) //IL_b273: Unknown result type (might be due to invalid IL or missing references) //IL_b278: Unknown result type (might be due to invalid IL or missing references) //IL_b27e: Unknown result type (might be due to invalid IL or missing references) //IL_b283: Unknown result type (might be due to invalid IL or missing references) //IL_b28e: Unknown result type (might be due to invalid IL or missing references) //IL_b294: Unknown result type (might be due to invalid IL or missing references) //IL_b299: Unknown result type (might be due to invalid IL or missing references) //IL_b29f: Unknown result type (might be due to invalid IL or missing references) //IL_b2a4: Unknown result type (might be due to invalid IL or missing references) //IL_b2aa: Unknown result type (might be due to invalid IL or missing references) //IL_b2af: Unknown result type (might be due to invalid IL or missing references) //IL_b2b5: Unknown result type (might be due to invalid IL or missing references) //IL_b2bf: Unknown result type (might be due to invalid IL or missing references) //IL_b2c4: Unknown result type (might be due to invalid IL or missing references) //IL_b2ca: Unknown result type (might be due to invalid IL or missing references) //IL_b2d4: Unknown result type (might be due to invalid IL or missing references) //IL_b2d9: Unknown result type (might be due to invalid IL or missing references) //IL_b2df: Unknown result type (might be due to invalid IL or missing references) //IL_b2e9: Unknown result type (might be due to invalid IL or missing references) //IL_b2ee: Unknown result type (might be due to invalid IL or missing references) //IL_b2f4: Unknown result type (might be due to invalid IL or missing references) //IL_b2f9: Unknown result type (might be due to invalid IL or missing references) //IL_b305: Unknown result type (might be due to invalid IL or missing references) //IL_b1db: Unknown result type (might be due to invalid IL or missing references) //IL_b1e0: Unknown result type (might be due to invalid IL or missing references) //IL_ad4e: Unknown result type (might be due to invalid IL or missing references) //IL_ad54: Unknown result type (might be due to invalid IL or missing references) //IL_ad5e: Unknown result type (might be due to invalid IL or missing references) //IL_ad63: Unknown result type (might be due to invalid IL or missing references) //IL_ad68: Unknown result type (might be due to invalid IL or missing references) //IL_1021d: Unknown result type (might be due to invalid IL or missing references) //IL_10222: Unknown result type (might be due to invalid IL or missing references) //IL_101f6: Unknown result type (might be due to invalid IL or missing references) //IL_101fb: Unknown result type (might be due to invalid IL or missing references) //IL_bb33: Unknown result type (might be due to invalid IL or missing references) //IL_bb39: Unknown result type (might be due to invalid IL or missing references) //IL_bb3e: Unknown result type (might be due to invalid IL or missing references) //IL_bb44: Unknown result type (might be due to invalid IL or missing references) //IL_bb49: Unknown result type (might be due to invalid IL or missing references) //IL_bb4f: Unknown result type (might be due to invalid IL or missing references) //IL_bb59: Unknown result type (might be due to invalid IL or missing references) //IL_bb5e: Unknown result type (might be due to invalid IL or missing references) //IL_bb64: Unknown result type (might be due to invalid IL or missing references) //IL_bb69: Unknown result type (might be due to invalid IL or missing references) //IL_bb74: Unknown result type (might be due to invalid IL or missing references) //IL_bb7a: Unknown result type (might be due to invalid IL or missing references) //IL_bb7f: Unknown result type (might be due to invalid IL or missing references) //IL_bb85: Unknown result type (might be due to invalid IL or missing references) //IL_bb8f: Unknown result type (might be due to invalid IL or missing references) //IL_bb94: Unknown result type (might be due to invalid IL or missing references) //IL_bb9a: Unknown result type (might be due to invalid IL or missing references) //IL_bba4: Unknown result type (might be due to invalid IL or missing references) //IL_bba9: Unknown result type (might be due to invalid IL or missing references) //IL_bbaf: Unknown result type (might be due to invalid IL or missing references) //IL_bbb4: Unknown result type (might be due to invalid IL or missing references) //IL_bbba: Unknown result type (might be due to invalid IL or missing references) //IL_bbbf: Unknown result type (might be due to invalid IL or missing references) //IL_bbcb: Unknown result type (might be due to invalid IL or missing references) //IL_b595: Unknown result type (might be due to invalid IL or missing references) //IL_b59b: Unknown result type (might be due to invalid IL or missing references) //IL_b5a0: Unknown result type (might be due to invalid IL or missing references) //IL_b5a6: Unknown result type (might be due to invalid IL or missing references) //IL_b5ab: Unknown result type (might be due to invalid IL or missing references) //IL_b5b1: Unknown result type (might be due to invalid IL or missing references) //IL_b5b6: Unknown result type (might be due to invalid IL or missing references) //IL_b5bc: Unknown result type (might be due to invalid IL or missing references) //IL_b5c1: Unknown result type (might be due to invalid IL or missing references) //IL_b5c7: Unknown result type (might be due to invalid IL or missing references) //IL_b5d1: Unknown result type (might be due to invalid IL or missing references) //IL_b5d6: Unknown result type (might be due to invalid IL or missing references) //IL_b5dc: Unknown result type (might be due to invalid IL or missing references) //IL_b5e1: Unknown result type (might be due to invalid IL or missing references) //IL_b5ec: Unknown result type (might be due to invalid IL or missing references) //IL_b5f2: Unknown result type (might be due to invalid IL or missing references) //IL_b5f7: Unknown result type (might be due to invalid IL or missing references) //IL_b5fd: Unknown result type (might be due to invalid IL or missing references) //IL_b602: Unknown result type (might be due to invalid IL or missing references) //IL_b608: Unknown result type (might be due to invalid IL or missing references) //IL_b60d: Unknown result type (might be due to invalid IL or missing references) //IL_b613: Unknown result type (might be due to invalid IL or missing references) //IL_b618: Unknown result type (might be due to invalid IL or missing references) //IL_b61e: Unknown result type (might be due to invalid IL or missing references) //IL_b623: Unknown result type (might be due to invalid IL or missing references) //IL_b629: Unknown result type (might be due to invalid IL or missing references) //IL_b62e: Unknown result type (might be due to invalid IL or missing references) //IL_b634: Unknown result type (might be due to invalid IL or missing references) //IL_b639: Unknown result type (might be due to invalid IL or missing references) //IL_b645: Unknown result type (might be due to invalid IL or missing references) //IL_b563: Unknown result type (might be due to invalid IL or missing references) //IL_b569: Unknown result type (might be due to invalid IL or missing references) //IL_b573: Unknown result type (might be due to invalid IL or missing references) //IL_b578: Unknown result type (might be due to invalid IL or missing references) //IL_b57d: Unknown result type (might be due to invalid IL or missing references) //IL_b321: Unknown result type (might be due to invalid IL or missing references) //IL_b327: Unknown result type (might be due to invalid IL or missing references) //IL_b331: Unknown result type (might be due to invalid IL or missing references) //IL_b336: Unknown result type (might be due to invalid IL or missing references) //IL_b33b: Unknown result type (might be due to invalid IL or missing references) //IL_bcb0: Unknown result type (might be due to invalid IL or missing references) //IL_bcb6: Unknown result type (might be due to invalid IL or missing references) //IL_bcbb: Unknown result type (might be due to invalid IL or missing references) //IL_bcc1: Unknown result type (might be due to invalid IL or missing references) //IL_bcc6: Unknown result type (might be due to invalid IL or missing references) //IL_bccc: Unknown result type (might be due to invalid IL or missing references) //IL_bcd6: Unknown result type (might be due to invalid IL or missing references) //IL_bcdb: Unknown result type (might be due to invalid IL or missing references) //IL_bce1: Unknown result type (might be due to invalid IL or missing references) //IL_bce6: Unknown result type (might be due to invalid IL or missing references) //IL_bcf1: Unknown result type (might be due to invalid IL or missing references) //IL_bcf7: Unknown result type (might be due to invalid IL or missing references) //IL_bcfc: Unknown result type (might be due to invalid IL or missing references) //IL_bd02: Unknown result type (might be due to invalid IL or missing references) //IL_bd0c: Unknown result type (might be due to invalid IL or missing references) //IL_bd11: Unknown result type (might be due to invalid IL or missing references) //IL_bd17: Unknown result type (might be due to invalid IL or missing references) //IL_bd21: Unknown result type (might be due to invalid IL or missing references) //IL_bd26: Unknown result type (might be due to invalid IL or missing references) //IL_bd2c: Unknown result type (might be due to invalid IL or missing references) //IL_bd31: Unknown result type (might be due to invalid IL or missing references) //IL_bd37: Unknown result type (might be due to invalid IL or missing references) //IL_bd3c: Unknown result type (might be due to invalid IL or missing references) //IL_bd48: Unknown result type (might be due to invalid IL or missing references) //IL_bbe5: Unknown result type (might be due to invalid IL or missing references) //IL_bbeb: Unknown result type (might be due to invalid IL or missing references) //IL_bbf0: Unknown result type (might be due to invalid IL or missing references) //IL_bbf6: Unknown result type (might be due to invalid IL or missing references) //IL_bbfb: Unknown result type (might be due to invalid IL or missing references) //IL_bc01: Unknown result type (might be due to invalid IL or missing references) //IL_bc0b: Unknown result type (might be due to invalid IL or missing references) //IL_bc10: Unknown result type (might be due to invalid IL or missing references) //IL_bc16: Unknown result type (might be due to invalid IL or missing references) //IL_bc1b: Unknown result type (might be due to invalid IL or missing references) //IL_bc26: Unknown result type (might be due to invalid IL or missing references) //IL_bc2c: Unknown result type (might be due to invalid IL or missing references) //IL_bc31: Unknown result type (might be due to invalid IL or missing references) //IL_bc37: Unknown result type (might be due to invalid IL or missing references) //IL_bc41: Unknown result type (might be due to invalid IL or missing references) //IL_bc46: Unknown result type (might be due to invalid IL or missing references) //IL_bc4c: Unknown result type (might be due to invalid IL or missing references) //IL_bc56: Unknown result type (might be due to invalid IL or missing references) //IL_bc5b: Unknown result type (might be due to invalid IL or missing references) //IL_bc61: Unknown result type (might be due to invalid IL or missing references) //IL_bc66: Unknown result type (might be due to invalid IL or missing references) //IL_bc6c: Unknown result type (might be due to invalid IL or missing references) //IL_bc71: Unknown result type (might be due to invalid IL or missing references) //IL_bc7d: Unknown result type (might be due to invalid IL or missing references) //IL_b661: Unknown result type (might be due to invalid IL or missing references) //IL_b667: Unknown result type (might be due to invalid IL or missing references) //IL_b671: Unknown result type (might be due to invalid IL or missing references) //IL_b676: Unknown result type (might be due to invalid IL or missing references) //IL_b67b: Unknown result type (might be due to invalid IL or missing references) //IL_be28: Unknown result type (might be due to invalid IL or missing references) //IL_be2e: Unknown result type (might be due to invalid IL or missing references) //IL_be33: Unknown result type (might be due to invalid IL or missing references) //IL_be39: Unknown result type (might be due to invalid IL or missing references) //IL_be3e: Unknown result type (might be due to invalid IL or missing references) //IL_be44: Unknown result type (might be due to invalid IL or missing references) //IL_be4e: Unknown result type (might be due to invalid IL or missing references) //IL_be53: Unknown result type (might be due to invalid IL or missing references) //IL_be59: Unknown result type (might be due to invalid IL or missing references) //IL_be5e: Unknown result type (might be due to invalid IL or missing references) //IL_be69: Unknown result type (might be due to invalid IL or missing references) //IL_be6f: Unknown result type (might be due to invalid IL or missing references) //IL_be74: Unknown result type (might be due to invalid IL or missing references) //IL_be7a: Unknown result type (might be due to invalid IL or missing references) //IL_be84: Unknown result type (might be due to invalid IL or missing references) //IL_be89: Unknown result type (might be due to invalid IL or missing references) //IL_be8f: Unknown result type (might be due to invalid IL or missing references) //IL_be99: Unknown result type (might be due to invalid IL or missing references) //IL_be9e: Unknown result type (might be due to invalid IL or missing references) //IL_bea4: Unknown result type (might be due to invalid IL or missing references) //IL_bea9: Unknown result type (might be due to invalid IL or missing references) //IL_beaf: Unknown result type (might be due to invalid IL or missing references) //IL_beb4: Unknown result type (might be due to invalid IL or missing references) //IL_bec0: Unknown result type (might be due to invalid IL or missing references) //IL_bd62: Unknown result type (might be due to invalid IL or missing references) //IL_bd68: Unknown result type (might be due to invalid IL or missing references) //IL_bd6d: Unknown result type (might be due to invalid IL or missing references) //IL_bd73: Unknown result type (might be due to invalid IL or missing references) //IL_bd78: Unknown result type (might be due to invalid IL or missing references) //IL_bd7e: Unknown result type (might be due to invalid IL or missing references) //IL_bd88: Unknown result type (might be due to invalid IL or missing references) //IL_bd8d: Unknown result type (might be due to invalid IL or missing references) //IL_bd93: Unknown result type (might be due to invalid IL or missing references) //IL_bd98: Unknown result type (might be due to invalid IL or missing references) //IL_bda3: Unknown result type (might be due to invalid IL or missing references) //IL_bda9: Unknown result type (might be due to invalid IL or missing references) //IL_bdae: Unknown result type (might be due to invalid IL or missing references) //IL_bdb4: Unknown result type (might be due to invalid IL or missing references) //IL_bdbe: Unknown result type (might be due to invalid IL or missing references) //IL_bdc3: Unknown result type (might be due to invalid IL or missing references) //IL_bdc9: Unknown result type (might be due to invalid IL or missing references) //IL_bdd3: Unknown result type (might be due to invalid IL or missing references) //IL_bdd8: Unknown result type (might be due to invalid IL or missing references) //IL_bdde: Unknown result type (might be due to invalid IL or missing references) //IL_bde3: Unknown result type (might be due to invalid IL or missing references) //IL_bde9: Unknown result type (might be due to invalid IL or missing references) //IL_bdee: Unknown result type (might be due to invalid IL or missing references) //IL_bdfa: Unknown result type (might be due to invalid IL or missing references) //IL_bfa5: Unknown result type (might be due to invalid IL or missing references) //IL_bfab: Unknown result type (might be due to invalid IL or missing references) //IL_bfb0: Unknown result type (might be due to invalid IL or missing references) //IL_bfb6: Unknown result type (might be due to invalid IL or missing references) //IL_bfbb: Unknown result type (might be due to invalid IL or missing references) //IL_bfc1: Unknown result type (might be due to invalid IL or missing references) //IL_bfcb: Unknown result type (might be due to invalid IL or missing references) //IL_bfd0: Unknown result type (might be due to invalid IL or missing references) //IL_bfd6: Unknown result type (might be due to invalid IL or missing references) //IL_bfdb: Unknown result type (might be due to invalid IL or missing references) //IL_bfe6: Unknown result type (might be due to invalid IL or missing references) //IL_bfec: Unknown result type (might be due to invalid IL or missing references) //IL_bff1: Unknown result type (might be due to invalid IL or missing references) //IL_bff7: Unknown result type (might be due to invalid IL or missing references) //IL_c001: Unknown result type (might be due to invalid IL or missing references) //IL_c006: Unknown result type (might be due to invalid IL or missing references) //IL_c00c: Unknown result type (might be due to invalid IL or missing references) //IL_c016: Unknown result type (might be due to invalid IL or missing references) //IL_c01b: Unknown result type (might be due to invalid IL or missing references) //IL_c021: Unknown result type (might be due to invalid IL or missing references) //IL_c026: Unknown result type (might be due to invalid IL or missing references) //IL_c02c: Unknown result type (might be due to invalid IL or missing references) //IL_c031: Unknown result type (might be due to invalid IL or missing references) //IL_c03d: Unknown result type (might be due to invalid IL or missing references) //IL_beda: Unknown result type (might be due to invalid IL or missing references) //IL_bee0: Unknown result type (might be due to invalid IL or missing references) //IL_bee5: Unknown result type (might be due to invalid IL or missing references) //IL_beeb: Unknown result type (might be due to invalid IL or missing references) //IL_bef0: Unknown result type (might be due to invalid IL or missing references) //IL_bef6: Unknown result type (might be due to invalid IL or missing references) //IL_bf00: Unknown result type (might be due to invalid IL or missing references) //IL_bf05: Unknown result type (might be due to invalid IL or missing references) //IL_bf0b: Unknown result type (might be due to invalid IL or missing references) //IL_bf10: Unknown result type (might be due to invalid IL or missing references) //IL_bf1b: Unknown result type (might be due to invalid IL or missing references) //IL_bf21: Unknown result type (might be due to invalid IL or missing references) //IL_bf26: Unknown result type (might be due to invalid IL or missing references) //IL_bf2c: Unknown result type (might be due to invalid IL or missing references) //IL_bf36: Unknown result type (might be due to invalid IL or missing references) //IL_bf3b: Unknown result type (might be due to invalid IL or missing references) //IL_bf41: Unknown result type (might be due to invalid IL or missing references) //IL_bf4b: Unknown result type (might be due to invalid IL or missing references) //IL_bf50: Unknown result type (might be due to invalid IL or missing references) //IL_bf56: Unknown result type (might be due to invalid IL or missing references) //IL_bf5b: Unknown result type (might be due to invalid IL or missing references) //IL_bf61: Unknown result type (might be due to invalid IL or missing references) //IL_bf66: Unknown result type (might be due to invalid IL or missing references) //IL_bf72: Unknown result type (might be due to invalid IL or missing references) //IL_10b0b: Unknown result type (might be due to invalid IL or missing references) //IL_10b10: Unknown result type (might be due to invalid IL or missing references) //IL_c11d: Unknown result type (might be due to invalid IL or missing references) //IL_c123: Unknown result type (might be due to invalid IL or missing references) //IL_c128: Unknown result type (might be due to invalid IL or missing references) //IL_c12e: Unknown result type (might be due to invalid IL or missing references) //IL_c133: Unknown result type (might be due to invalid IL or missing references) //IL_c139: Unknown result type (might be due to invalid IL or missing references) //IL_c143: Unknown result type (might be due to invalid IL or missing references) //IL_c148: Unknown result type (might be due to invalid IL or missing references) //IL_c14e: Unknown result type (might be due to invalid IL or missing references) //IL_c153: Unknown result type (might be due to invalid IL or missing references) //IL_c15e: Unknown result type (might be due to invalid IL or missing references) //IL_c164: Unknown result type (might be due to invalid IL or missing references) //IL_c169: Unknown result type (might be due to invalid IL or missing references) //IL_c16f: Unknown result type (might be due to invalid IL or missing references) //IL_c179: Unknown result type (might be due to invalid IL or missing references) //IL_c17e: Unknown result type (might be due to invalid IL or missing references) //IL_c184: Unknown result type (might be due to invalid IL or missing references) //IL_c18e: Unknown result type (might be due to invalid IL or missing references) //IL_c193: Unknown result type (might be due to invalid IL or missing references) //IL_c199: Unknown result type (might be due to invalid IL or missing references) //IL_c19e: Unknown result type (might be due to invalid IL or missing references) //IL_c1a4: Unknown result type (might be due to invalid IL or missing references) //IL_c1a9: Unknown result type (might be due to invalid IL or missing references) //IL_c1b5: Unknown result type (might be due to invalid IL or missing references) //IL_c057: Unknown result type (might be due to invalid IL or missing references) //IL_c05d: Unknown result type (might be due to invalid IL or missing references) //IL_c062: Unknown result type (might be due to invalid IL or missing references) //IL_c068: Unknown result type (might be due to invalid IL or missing references) //IL_c06d: Unknown result type (might be due to invalid IL or missing references) //IL_c073: Unknown result type (might be due to invalid IL or missing references) //IL_c07d: Unknown result type (might be due to invalid IL or missing references) //IL_c082: Unknown result type (might be due to invalid IL or missing references) //IL_c088: Unknown result type (might be due to invalid IL or missing references) //IL_c08d: Unknown result type (might be due to invalid IL or missing references) //IL_c098: Unknown result type (might be due to invalid IL or missing references) //IL_c09e: Unknown result type (might be due to invalid IL or missing references) //IL_c0a3: Unknown result type (might be due to invalid IL or missing references) //IL_c0a9: Unknown result type (might be due to invalid IL or missing references) //IL_c0b3: Unknown result type (might be due to invalid IL or missing references) //IL_c0b8: Unknown result type (might be due to invalid IL or missing references) //IL_c0be: Unknown result type (might be due to invalid IL or missing references) //IL_c0c8: Unknown result type (might be due to invalid IL or missing references) //IL_c0cd: Unknown result type (might be due to invalid IL or missing references) //IL_c0d3: Unknown result type (might be due to invalid IL or missing references) //IL_c0d8: Unknown result type (might be due to invalid IL or missing references) //IL_c0de: Unknown result type (might be due to invalid IL or missing references) //IL_c0e3: Unknown result type (might be due to invalid IL or missing references) //IL_c0ef: Unknown result type (might be due to invalid IL or missing references) //IL_10c75: Unknown result type (might be due to invalid IL or missing references) //IL_10c7a: Unknown result type (might be due to invalid IL or missing references) //IL_c41a: Unknown result type (might be due to invalid IL or missing references) //IL_c420: Unknown result type (might be due to invalid IL or missing references) //IL_c425: Unknown result type (might be due to invalid IL or missing references) //IL_c42b: Unknown result type (might be due to invalid IL or missing references) //IL_c430: Unknown result type (might be due to invalid IL or missing references) //IL_c436: Unknown result type (might be due to invalid IL or missing references) //IL_c440: Unknown result type (might be due to invalid IL or missing references) //IL_c445: Unknown result type (might be due to invalid IL or missing references) //IL_c44b: Unknown result type (might be due to invalid IL or missing references) //IL_c450: Unknown result type (might be due to invalid IL or missing references) //IL_c45b: Unknown result type (might be due to invalid IL or missing references) //IL_c461: Unknown result type (might be due to invalid IL or missing references) //IL_c466: Unknown result type (might be due to invalid IL or missing references) //IL_c46c: Unknown result type (might be due to invalid IL or missing references) //IL_c476: Unknown result type (might be due to invalid IL or missing references) //IL_c47b: Unknown result type (might be due to invalid IL or missing references) //IL_c481: Unknown result type (might be due to invalid IL or missing references) //IL_c48b: Unknown result type (might be due to invalid IL or missing references) //IL_c490: Unknown result type (might be due to invalid IL or missing references) //IL_c496: Unknown result type (might be due to invalid IL or missing references) //IL_c49b: Unknown result type (might be due to invalid IL or missing references) //IL_c4a1: Unknown result type (might be due to invalid IL or missing references) //IL_c4a6: Unknown result type (might be due to invalid IL or missing references) //IL_c4b2: Unknown result type (might be due to invalid IL or missing references) //IL_c2a1: Unknown result type (might be due to invalid IL or missing references) //IL_c2a7: Unknown result type (might be due to invalid IL or missing references) //IL_c2ac: Unknown result type (might be due to invalid IL or missing references) //IL_c2b2: Unknown result type (might be due to invalid IL or missing references) //IL_c2b7: Unknown result type (might be due to invalid IL or missing references) //IL_c2bd: Unknown result type (might be due to invalid IL or missing references) //IL_c2c7: Unknown result type (might be due to invalid IL or missing references) //IL_c2cc: Unknown result type (might be due to invalid IL or missing references) //IL_c2d2: Unknown result type (might be due to invalid IL or missing references) //IL_c2d7: Unknown result type (might be due to invalid IL or missing references) //IL_c2e2: Unknown result type (might be due to invalid IL or missing references) //IL_c2e8: Unknown result type (might be due to invalid IL or missing references) //IL_c2ed: Unknown result type (might be due to invalid IL or missing references) //IL_c2f3: Unknown result type (might be due to invalid IL or missing references) //IL_c2fd: Unknown result type (might be due to invalid IL or missing references) //IL_c302: Unknown result type (might be due to invalid IL or missing references) //IL_c308: Unknown result type (might be due to invalid IL or missing references) //IL_c312: Unknown result type (might be due to invalid IL or missing references) //IL_c317: Unknown result type (might be due to invalid IL or missing references) //IL_c31d: Unknown result type (might be due to invalid IL or missing references) //IL_c322: Unknown result type (might be due to invalid IL or missing references) //IL_c328: Unknown result type (might be due to invalid IL or missing references) //IL_c32d: Unknown result type (might be due to invalid IL or missing references) //IL_c339: Unknown result type (might be due to invalid IL or missing references) //IL_c1cf: Unknown result type (might be due to invalid IL or missing references) //IL_c1d5: Unknown result type (might be due to invalid IL or missing references) //IL_c1da: Unknown result type (might be due to invalid IL or missing references) //IL_c1e0: Unknown result type (might be due to invalid IL or missing references) //IL_c1e5: Unknown result type (might be due to invalid IL or missing references) //IL_c1eb: Unknown result type (might be due to invalid IL or missing references) //IL_c1f5: Unknown result type (might be due to invalid IL or missing references) //IL_c1fa: Unknown result type (might be due to invalid IL or missing references) //IL_c200: Unknown result type (might be due to invalid IL or missing references) //IL_c205: Unknown result type (might be due to invalid IL or missing references) //IL_c210: Unknown result type (might be due to invalid IL or missing references) //IL_c216: Unknown result type (might be due to invalid IL or missing references) //IL_c21b: Unknown result type (might be due to invalid IL or missing references) //IL_c221: Unknown result type (might be due to invalid IL or missing references) //IL_c22b: Unknown result type (might be due to invalid IL or missing references) //IL_c230: Unknown result type (might be due to invalid IL or missing references) //IL_c236: Unknown result type (might be due to invalid IL or missing references) //IL_c240: Unknown result type (might be due to invalid IL or missing references) //IL_c245: Unknown result type (might be due to invalid IL or missing references) //IL_c24b: Unknown result type (might be due to invalid IL or missing references) //IL_c250: Unknown result type (might be due to invalid IL or missing references) //IL_c256: Unknown result type (might be due to invalid IL or missing references) //IL_c25b: Unknown result type (might be due to invalid IL or missing references) //IL_c267: Unknown result type (might be due to invalid IL or missing references) //IL_10a51: Unknown result type (might be due to invalid IL or missing references) //IL_10a56: Unknown result type (might be due to invalid IL or missing references) //IL_c593: Unknown result type (might be due to invalid IL or missing references) //IL_c599: Unknown result type (might be due to invalid IL or missing references) //IL_c59e: Unknown result type (might be due to invalid IL or missing references) //IL_c5a4: Unknown result type (might be due to invalid IL or missing references) //IL_c5a9: Unknown result type (might be due to invalid IL or missing references) //IL_c5af: Unknown result type (might be due to invalid IL or missing references) //IL_c5b9: Unknown result type (might be due to invalid IL or missing references) //IL_c5be: Unknown result type (might be due to invalid IL or missing references) //IL_c5c4: Unknown result type (might be due to invalid IL or missing references) //IL_c5c9: Unknown result type (might be due to invalid IL or missing references) //IL_c5d4: Unknown result type (might be due to invalid IL or missing references) //IL_c5da: Unknown result type (might be due to invalid IL or missing references) //IL_c5df: Unknown result type (might be due to invalid IL or missing references) //IL_c5e5: Unknown result type (might be due to invalid IL or missing references) //IL_c5ef: Unknown result type (might be due to invalid IL or missing references) //IL_c5f4: Unknown result type (might be due to invalid IL or missing references) //IL_c5fa: Unknown result type (might be due to invalid IL or missing references) //IL_c604: Unknown result type (might be due to invalid IL or missing references) //IL_c609: Unknown result type (might be due to invalid IL or missing references) //IL_c60f: Unknown result type (might be due to invalid IL or missing references) //IL_c614: Unknown result type (might be due to invalid IL or missing references) //IL_c61a: Unknown result type (might be due to invalid IL or missing references) //IL_c61f: Unknown result type (might be due to invalid IL or missing references) //IL_c62b: Unknown result type (might be due to invalid IL or missing references) //IL_c4cc: Unknown result type (might be due to invalid IL or missing references) //IL_c4d2: Unknown result type (might be due to invalid IL or missing references) //IL_c4d7: Unknown result type (might be due to invalid IL or missing references) //IL_c4dd: Unknown result type (might be due to invalid IL or missing references) //IL_c4e2: Unknown result type (might be due to invalid IL or missing references) //IL_c4e8: Unknown result type (might be due to invalid IL or missing references) //IL_c4f2: Unknown result type (might be due to invalid IL or missing references) //IL_c4f7: Unknown result type (might be due to invalid IL or missing references) //IL_c4fd: Unknown result type (might be due to invalid IL or missing references) //IL_c502: Unknown result type (might be due to invalid IL or missing references) //IL_c50d: Unknown result type (might be due to invalid IL or missing references) //IL_c513: Unknown result type (might be due to invalid IL or missing references) //IL_c518: Unknown result type (might be due to invalid IL or missing references) //IL_c51e: Unknown result type (might be due to invalid IL or missing references) //IL_c528: Unknown result type (might be due to invalid IL or missing references) //IL_c52d: Unknown result type (might be due to invalid IL or missing references) //IL_c533: Unknown result type (might be due to invalid IL or missing references) //IL_c53d: Unknown result type (might be due to invalid IL or missing references) //IL_c542: Unknown result type (might be due to invalid IL or missing references) //IL_c548: Unknown result type (might be due to invalid IL or missing references) //IL_c54d: Unknown result type (might be due to invalid IL or missing references) //IL_c553: Unknown result type (might be due to invalid IL or missing references) //IL_c558: Unknown result type (might be due to invalid IL or missing references) //IL_c564: Unknown result type (might be due to invalid IL or missing references) //IL_c353: Unknown result type (might be due to invalid IL or missing references) //IL_c359: Unknown result type (might be due to invalid IL or missing references) //IL_c35e: Unknown result type (might be due to invalid IL or missing references) //IL_c364: Unknown result type (might be due to invalid IL or missing references) //IL_c369: Unknown result type (might be due to invalid IL or missing references) //IL_c36f: Unknown result type (might be due to invalid IL or missing references) //IL_c379: Unknown result type (might be due to invalid IL or missing references) //IL_c37e: Unknown result type (might be due to invalid IL or missing references) //IL_c384: Unknown result type (might be due to invalid IL or missing references) //IL_c389: Unknown result type (might be due to invalid IL or missing references) //IL_c394: Unknown result type (might be due to invalid IL or missing references) //IL_c39a: Unknown result type (might be due to invalid IL or missing references) //IL_c39f: Unknown result type (might be due to invalid IL or missing references) //IL_c3a5: Unknown result type (might be due to invalid IL or missing references) //IL_c3af: Unknown result type (might be due to invalid IL or missing references) //IL_c3b4: Unknown result type (might be due to invalid IL or missing references) //IL_c3ba: Unknown result type (might be due to invalid IL or missing references) //IL_c3c4: Unknown result type (might be due to invalid IL or missing references) //IL_c3c9: Unknown result type (might be due to invalid IL or missing references) //IL_c3cf: Unknown result type (might be due to invalid IL or missing references) //IL_c3d4: Unknown result type (might be due to invalid IL or missing references) //IL_c3da: Unknown result type (might be due to invalid IL or missing references) //IL_c3df: Unknown result type (might be due to invalid IL or missing references) //IL_c3eb: Unknown result type (might be due to invalid IL or missing references) //IL_c645: Unknown result type (might be due to invalid IL or missing references) //IL_c64b: Unknown result type (might be due to invalid IL or missing references) //IL_c650: Unknown result type (might be due to invalid IL or missing references) //IL_c656: Unknown result type (might be due to invalid IL or missing references) //IL_c65b: Unknown result type (might be due to invalid IL or missing references) //IL_c661: Unknown result type (might be due to invalid IL or missing references) //IL_c66b: Unknown result type (might be due to invalid IL or missing references) //IL_c670: Unknown result type (might be due to invalid IL or missing references) //IL_c676: Unknown result type (might be due to invalid IL or missing references) //IL_c67b: Unknown result type (might be due to invalid IL or missing references) //IL_c686: Unknown result type (might be due to invalid IL or missing references) //IL_c68c: Unknown result type (might be due to invalid IL or missing references) //IL_c691: Unknown result type (might be due to invalid IL or missing references) //IL_c697: Unknown result type (might be due to invalid IL or missing references) //IL_c6a1: Unknown result type (might be due to invalid IL or missing references) //IL_c6a6: Unknown result type (might be due to invalid IL or missing references) //IL_c6ac: Unknown result type (might be due to invalid IL or missing references) //IL_c6b6: Unknown result type (might be due to invalid IL or missing references) //IL_c6bb: Unknown result type (might be due to invalid IL or missing references) //IL_c6c1: Unknown result type (might be due to invalid IL or missing references) //IL_c6c6: Unknown result type (might be due to invalid IL or missing references) //IL_c6cc: Unknown result type (might be due to invalid IL or missing references) //IL_c6d1: Unknown result type (might be due to invalid IL or missing references) //IL_c6dd: Unknown result type (might be due to invalid IL or missing references) //IL_c79c: Unknown result type (might be due to invalid IL or missing references) //IL_c7a2: Unknown result type (might be due to invalid IL or missing references) //IL_c7a7: Unknown result type (might be due to invalid IL or missing references) //IL_c7ad: Unknown result type (might be due to invalid IL or missing references) //IL_c7b2: Unknown result type (might be due to invalid IL or missing references) //IL_c7b8: Unknown result type (might be due to invalid IL or missing references) //IL_c7c2: Unknown result type (might be due to invalid IL or missing references) //IL_c7c7: Unknown result type (might be due to invalid IL or missing references) //IL_c7cd: Unknown result type (might be due to invalid IL or missing references) //IL_c7d7: Unknown result type (might be due to invalid IL or missing references) //IL_c7dd: Unknown result type (might be due to invalid IL or missing references) //IL_c7e7: Unknown result type (might be due to invalid IL or missing references) //IL_c7ec: Unknown result type (might be due to invalid IL or missing references) //IL_c7fd: Unknown result type (might be due to invalid IL or missing references) //IL_c817: Unknown result type (might be due to invalid IL or missing references) //IL_c81d: Unknown result type (might be due to invalid IL or missing references) //IL_c822: Unknown result type (might be due to invalid IL or missing references) //IL_c828: Unknown result type (might be due to invalid IL or missing references) //IL_c82d: Unknown result type (might be due to invalid IL or missing references) //IL_c833: Unknown result type (might be due to invalid IL or missing references) //IL_c83d: Unknown result type (might be due to invalid IL or missing references) //IL_c842: Unknown result type (might be due to invalid IL or missing references) //IL_c848: Unknown result type (might be due to invalid IL or missing references) //IL_c84e: Unknown result type (might be due to invalid IL or missing references) //IL_c858: Unknown result type (might be due to invalid IL or missing references) //IL_c85d: Unknown result type (might be due to invalid IL or missing references) //IL_c86e: Unknown result type (might be due to invalid IL or missing references) //IL_c89f: Unknown result type (might be due to invalid IL or missing references) //IL_c8a5: Unknown result type (might be due to invalid IL or missing references) //IL_c8aa: Unknown result type (might be due to invalid IL or missing references) //IL_c8b0: Unknown result type (might be due to invalid IL or missing references) //IL_c8b5: Unknown result type (might be due to invalid IL or missing references) //IL_c8bb: Unknown result type (might be due to invalid IL or missing references) //IL_c8c5: Unknown result type (might be due to invalid IL or missing references) //IL_c8ca: Unknown result type (might be due to invalid IL or missing references) //IL_c8d0: Unknown result type (might be due to invalid IL or missing references) //IL_c8da: Unknown result type (might be due to invalid IL or missing references) //IL_c8e0: Unknown result type (might be due to invalid IL or missing references) //IL_c8ea: Unknown result type (might be due to invalid IL or missing references) //IL_c8ef: Unknown result type (might be due to invalid IL or missing references) //IL_c900: Unknown result type (might be due to invalid IL or missing references) //IL_10d40: Unknown result type (might be due to invalid IL or missing references) //IL_10d45: Unknown result type (might be due to invalid IL or missing references) //IL_c91a: Unknown result type (might be due to invalid IL or missing references) //IL_c920: Unknown result type (might be due to invalid IL or missing references) //IL_c925: Unknown result type (might be due to invalid IL or missing references) //IL_c92b: Unknown result type (might be due to invalid IL or missing references) //IL_c930: Unknown result type (might be due to invalid IL or missing references) //IL_c936: Unknown result type (might be due to invalid IL or missing references) //IL_c940: Unknown result type (might be due to invalid IL or missing references) //IL_c945: Unknown result type (might be due to invalid IL or missing references) //IL_c94b: Unknown result type (might be due to invalid IL or missing references) //IL_c951: Unknown result type (might be due to invalid IL or missing references) //IL_c95b: Unknown result type (might be due to invalid IL or missing references) //IL_c960: Unknown result type (might be due to invalid IL or missing references) //IL_c971: Unknown result type (might be due to invalid IL or missing references) //IL_c9a2: Unknown result type (might be due to invalid IL or missing references) //IL_c9a8: Unknown result type (might be due to invalid IL or missing references) //IL_c9ad: Unknown result type (might be due to invalid IL or missing references) //IL_c9b3: Unknown result type (might be due to invalid IL or missing references) //IL_c9b9: Unknown result type (might be due to invalid IL or missing references) //IL_c9be: Unknown result type (might be due to invalid IL or missing references) //IL_c9c8: Unknown result type (might be due to invalid IL or missing references) //IL_c9cd: Unknown result type (might be due to invalid IL or missing references) //IL_c9d3: Unknown result type (might be due to invalid IL or missing references) //IL_c9dd: Unknown result type (might be due to invalid IL or missing references) //IL_c9ee: Unknown result type (might be due to invalid IL or missing references) //IL_ca08: Unknown result type (might be due to invalid IL or missing references) //IL_ca0e: Unknown result type (might be due to invalid IL or missing references) //IL_ca13: Unknown result type (might be due to invalid IL or missing references) //IL_ca19: Unknown result type (might be due to invalid IL or missing references) //IL_ca1f: Unknown result type (might be due to invalid IL or missing references) //IL_ca24: Unknown result type (might be due to invalid IL or missing references) //IL_ca2e: Unknown result type (might be due to invalid IL or missing references) //IL_ca33: Unknown result type (might be due to invalid IL or missing references) //IL_ca39: Unknown result type (might be due to invalid IL or missing references) //IL_ca43: Unknown result type (might be due to invalid IL or missing references) //IL_ca54: Unknown result type (might be due to invalid IL or missing references) //IL_cc6a: Unknown result type (might be due to invalid IL or missing references) //IL_ca6e: Unknown result type (might be due to invalid IL or missing references) //IL_ca74: Unknown result type (might be due to invalid IL or missing references) //IL_ca79: Unknown result type (might be due to invalid IL or missing references) //IL_ca7f: Unknown result type (might be due to invalid IL or missing references) //IL_ca85: Unknown result type (might be due to invalid IL or missing references) //IL_ca8a: Unknown result type (might be due to invalid IL or missing references) //IL_ca94: Unknown result type (might be due to invalid IL or missing references) //IL_ca99: Unknown result type (might be due to invalid IL or missing references) //IL_ca9f: Unknown result type (might be due to invalid IL or missing references) //IL_caa4: Unknown result type (might be due to invalid IL or missing references) //IL_caae: Unknown result type (might be due to invalid IL or missing references) //IL_cabf: Unknown result type (might be due to invalid IL or missing references) //IL_cc8a: Unknown result type (might be due to invalid IL or missing references) //IL_cc90: Unknown result type (might be due to invalid IL or missing references) //IL_cc95: Unknown result type (might be due to invalid IL or missing references) //IL_cc9b: Unknown result type (might be due to invalid IL or missing references) //IL_cca1: Unknown result type (might be due to invalid IL or missing references) //IL_cca6: Unknown result type (might be due to invalid IL or missing references) //IL_ccb0: Unknown result type (might be due to invalid IL or missing references) //IL_ccb5: Unknown result type (might be due to invalid IL or missing references) //IL_ccbb: Unknown result type (might be due to invalid IL or missing references) //IL_ccc5: Unknown result type (might be due to invalid IL or missing references) //IL_ccd6: Unknown result type (might be due to invalid IL or missing references) //IL_cad9: Unknown result type (might be due to invalid IL or missing references) //IL_cadf: Unknown result type (might be due to invalid IL or missing references) //IL_cae4: Unknown result type (might be due to invalid IL or missing references) //IL_caea: Unknown result type (might be due to invalid IL or missing references) //IL_caf0: Unknown result type (might be due to invalid IL or missing references) //IL_caf5: Unknown result type (might be due to invalid IL or missing references) //IL_caff: Unknown result type (might be due to invalid IL or missing references) //IL_cb04: Unknown result type (might be due to invalid IL or missing references) //IL_cb0a: Unknown result type (might be due to invalid IL or missing references) //IL_cb14: Unknown result type (might be due to invalid IL or missing references) //IL_cb1a: Unknown result type (might be due to invalid IL or missing references) //IL_cb24: Unknown result type (might be due to invalid IL or missing references) //IL_cb29: Unknown result type (might be due to invalid IL or missing references) //IL_cb2f: Unknown result type (might be due to invalid IL or missing references) //IL_cb35: Unknown result type (might be due to invalid IL or missing references) //IL_cb3a: Unknown result type (might be due to invalid IL or missing references) //IL_cb3f: Unknown result type (might be due to invalid IL or missing references) //IL_cb50: Unknown result type (might be due to invalid IL or missing references) //IL_cdbb: Unknown result type (might be due to invalid IL or missing references) //IL_cdc1: Unknown result type (might be due to invalid IL or missing references) //IL_cdc6: Unknown result type (might be due to invalid IL or missing references) //IL_cdcc: Unknown result type (might be due to invalid IL or missing references) //IL_cdd2: Unknown result type (might be due to invalid IL or missing references) //IL_cdd7: Unknown result type (might be due to invalid IL or missing references) //IL_cde1: Unknown result type (might be due to invalid IL or missing references) //IL_cde6: Unknown result type (might be due to invalid IL or missing references) //IL_cdec: Unknown result type (might be due to invalid IL or missing references) //IL_cdf1: Unknown result type (might be due to invalid IL or missing references) //IL_cdfb: Unknown result type (might be due to invalid IL or missing references) //IL_ce0c: Unknown result type (might be due to invalid IL or missing references) //IL_ccf0: Unknown result type (might be due to invalid IL or missing references) //IL_ccf6: Unknown result type (might be due to invalid IL or missing references) //IL_ccfb: Unknown result type (might be due to invalid IL or missing references) //IL_cd01: Unknown result type (might be due to invalid IL or missing references) //IL_cd07: Unknown result type (might be due to invalid IL or missing references) //IL_cd0c: Unknown result type (might be due to invalid IL or missing references) //IL_cd16: Unknown result type (might be due to invalid IL or missing references) //IL_cd1b: Unknown result type (might be due to invalid IL or missing references) //IL_cd21: Unknown result type (might be due to invalid IL or missing references) //IL_cd2b: Unknown result type (might be due to invalid IL or missing references) //IL_cd38: Unknown result type (might be due to invalid IL or missing references) //IL_cb6a: Unknown result type (might be due to invalid IL or missing references) //IL_cb70: Unknown result type (might be due to invalid IL or missing references) //IL_cb75: Unknown result type (might be due to invalid IL or missing references) //IL_cb7b: Unknown result type (might be due to invalid IL or missing references) //IL_cb81: Unknown result type (might be due to invalid IL or missing references) //IL_cb86: Unknown result type (might be due to invalid IL or missing references) //IL_cb90: Unknown result type (might be due to invalid IL or missing references) //IL_cb95: Unknown result type (might be due to invalid IL or missing references) //IL_cb9b: Unknown result type (might be due to invalid IL or missing references) //IL_cba5: Unknown result type (might be due to invalid IL or missing references) //IL_cbab: Unknown result type (might be due to invalid IL or missing references) //IL_cbb5: Unknown result type (might be due to invalid IL or missing references) //IL_cbba: Unknown result type (might be due to invalid IL or missing references) //IL_cbc0: Unknown result type (might be due to invalid IL or missing references) //IL_cbc6: Unknown result type (might be due to invalid IL or missing references) //IL_cbcb: Unknown result type (might be due to invalid IL or missing references) //IL_cbd0: Unknown result type (might be due to invalid IL or missing references) //IL_cbe1: Unknown result type (might be due to invalid IL or missing references) //IL_ce26: Unknown result type (might be due to invalid IL or missing references) //IL_ce2c: Unknown result type (might be due to invalid IL or missing references) //IL_ce31: Unknown result type (might be due to invalid IL or missing references) //IL_ce37: Unknown result type (might be due to invalid IL or missing references) //IL_ce3d: Unknown result type (might be due to invalid IL or missing references) //IL_ce42: Unknown result type (might be due to invalid IL or missing references) //IL_ce4c: Unknown result type (might be due to invalid IL or missing references) //IL_ce51: Unknown result type (might be due to invalid IL or missing references) //IL_ce57: Unknown result type (might be due to invalid IL or missing references) //IL_ce61: Unknown result type (might be due to invalid IL or missing references) //IL_ce6e: Unknown result type (might be due to invalid IL or missing references) //IL_cd52: Unknown result type (might be due to invalid IL or missing references) //IL_cd5d: Unknown result type (might be due to invalid IL or missing references) //IL_cd62: Unknown result type (might be due to invalid IL or missing references) //IL_cd6d: Unknown result type (might be due to invalid IL or missing references) //IL_cd7d: Unknown result type (might be due to invalid IL or missing references) //IL_cd84: Unknown result type (might be due to invalid IL or missing references) //IL_cbfb: Unknown result type (might be due to invalid IL or missing references) //IL_cc01: Unknown result type (might be due to invalid IL or missing references) //IL_cc06: Unknown result type (might be due to invalid IL or missing references) //IL_cc0c: Unknown result type (might be due to invalid IL or missing references) //IL_cc12: Unknown result type (might be due to invalid IL or missing references) //IL_cc17: Unknown result type (might be due to invalid IL or missing references) //IL_cc21: Unknown result type (might be due to invalid IL or missing references) //IL_cc26: Unknown result type (might be due to invalid IL or missing references) //IL_cc2c: Unknown result type (might be due to invalid IL or missing references) //IL_cc3d: Unknown result type (might be due to invalid IL or missing references) //IL_cf02: Unknown result type (might be due to invalid IL or missing references) //IL_cf08: Unknown result type (might be due to invalid IL or missing references) //IL_ce88: Unknown result type (might be due to invalid IL or missing references) //IL_ce93: Unknown result type (might be due to invalid IL or missing references) //IL_ce98: Unknown result type (might be due to invalid IL or missing references) //IL_cea3: Unknown result type (might be due to invalid IL or missing references) //IL_ceb3: Unknown result type (might be due to invalid IL or missing references) //IL_ceba: Unknown result type (might be due to invalid IL or missing references) //IL_cf58: Unknown result type (might be due to invalid IL or missing references) //IL_cf5e: Unknown result type (might be due to invalid IL or missing references) //IL_cf63: Unknown result type (might be due to invalid IL or missing references) //IL_cf69: Unknown result type (might be due to invalid IL or missing references) //IL_cf6f: Unknown result type (might be due to invalid IL or missing references) //IL_cf74: Unknown result type (might be due to invalid IL or missing references) //IL_cf7e: Unknown result type (might be due to invalid IL or missing references) //IL_cf83: Unknown result type (might be due to invalid IL or missing references) //IL_cf89: Unknown result type (might be due to invalid IL or missing references) //IL_cf9a: Unknown result type (might be due to invalid IL or missing references) //IL_f979: Unknown result type (might be due to invalid IL or missing references) //IL_f97f: Unknown result type (might be due to invalid IL or missing references) //IL_f984: Unknown result type (might be due to invalid IL or missing references) //IL_f98a: Unknown result type (might be due to invalid IL or missing references) //IL_f994: Unknown result type (might be due to invalid IL or missing references) //IL_f999: Unknown result type (might be due to invalid IL or missing references) //IL_f99f: Unknown result type (might be due to invalid IL or missing references) //IL_f9a9: Unknown result type (might be due to invalid IL or missing references) //IL_f9ae: Unknown result type (might be due to invalid IL or missing references) //IL_f9b4: Unknown result type (might be due to invalid IL or missing references) //IL_f9be: Unknown result type (might be due to invalid IL or missing references) //IL_f9c3: Unknown result type (might be due to invalid IL or missing references) //IL_f9c9: Unknown result type (might be due to invalid IL or missing references) //IL_f9ce: Unknown result type (might be due to invalid IL or missing references) //IL_f9d4: Unknown result type (might be due to invalid IL or missing references) //IL_f9d9: Unknown result type (might be due to invalid IL or missing references) //IL_f9e4: Unknown result type (might be due to invalid IL or missing references) //IL_f9ea: Unknown result type (might be due to invalid IL or missing references) //IL_f9ef: Unknown result type (might be due to invalid IL or missing references) //IL_f9f5: Unknown result type (might be due to invalid IL or missing references) //IL_f9ff: Unknown result type (might be due to invalid IL or missing references) //IL_fa04: Unknown result type (might be due to invalid IL or missing references) //IL_fa0a: Unknown result type (might be due to invalid IL or missing references) //IL_fa0f: Unknown result type (might be due to invalid IL or missing references) //IL_fa15: Unknown result type (might be due to invalid IL or missing references) //IL_fa1f: Unknown result type (might be due to invalid IL or missing references) //IL_fa24: Unknown result type (might be due to invalid IL or missing references) //IL_fa2a: Unknown result type (might be due to invalid IL or missing references) //IL_fa2f: Unknown result type (might be due to invalid IL or missing references) //IL_fa35: Unknown result type (might be due to invalid IL or missing references) //IL_fa3a: Unknown result type (might be due to invalid IL or missing references) //IL_fa46: Unknown result type (might be due to invalid IL or missing references) //IL_d248: Unknown result type (might be due to invalid IL or missing references) //IL_d24e: Unknown result type (might be due to invalid IL or missing references) //IL_d253: Unknown result type (might be due to invalid IL or missing references) //IL_d259: Unknown result type (might be due to invalid IL or missing references) //IL_d25f: Unknown result type (might be due to invalid IL or missing references) //IL_d264: Unknown result type (might be due to invalid IL or missing references) //IL_d26e: Unknown result type (might be due to invalid IL or missing references) //IL_d273: Unknown result type (might be due to invalid IL or missing references) //IL_d279: Unknown result type (might be due to invalid IL or missing references) //IL_d283: Unknown result type (might be due to invalid IL or missing references) //IL_d289: Unknown result type (might be due to invalid IL or missing references) //IL_d293: Unknown result type (might be due to invalid IL or missing references) //IL_d298: Unknown result type (might be due to invalid IL or missing references) //IL_d2a9: Unknown result type (might be due to invalid IL or missing references) //IL_cfb4: Unknown result type (might be due to invalid IL or missing references) //IL_cfba: Unknown result type (might be due to invalid IL or missing references) //IL_cfbf: Unknown result type (might be due to invalid IL or missing references) //IL_cfc5: Unknown result type (might be due to invalid IL or missing references) //IL_cfca: Unknown result type (might be due to invalid IL or missing references) //IL_cfd0: Unknown result type (might be due to invalid IL or missing references) //IL_cfda: Unknown result type (might be due to invalid IL or missing references) //IL_cfdf: Unknown result type (might be due to invalid IL or missing references) //IL_cfe5: Unknown result type (might be due to invalid IL or missing references) //IL_cfeb: Unknown result type (might be due to invalid IL or missing references) //IL_cff5: Unknown result type (might be due to invalid IL or missing references) //IL_cffa: Unknown result type (might be due to invalid IL or missing references) //IL_d00b: Unknown result type (might be due to invalid IL or missing references) //IL_fa60: Unknown result type (might be due to invalid IL or missing references) //IL_fa66: Unknown result type (might be due to invalid IL or missing references) //IL_fa6b: Unknown result type (might be due to invalid IL or missing references) //IL_fa71: Unknown result type (might be due to invalid IL or missing references) //IL_fa7b: Unknown result type (might be due to invalid IL or missing references) //IL_fa80: Unknown result type (might be due to invalid IL or missing references) //IL_fa86: Unknown result type (might be due to invalid IL or missing references) //IL_fa90: Unknown result type (might be due to invalid IL or missing references) //IL_fa95: Unknown result type (might be due to invalid IL or missing references) //IL_fa9b: Unknown result type (might be due to invalid IL or missing references) //IL_faa5: Unknown result type (might be due to invalid IL or missing references) //IL_faaa: Unknown result type (might be due to invalid IL or missing references) //IL_fab0: Unknown result type (might be due to invalid IL or missing references) //IL_fab5: Unknown result type (might be due to invalid IL or missing references) //IL_fabb: Unknown result type (might be due to invalid IL or missing references) //IL_fac0: Unknown result type (might be due to invalid IL or missing references) //IL_facb: Unknown result type (might be due to invalid IL or missing references) //IL_fad1: Unknown result type (might be due to invalid IL or missing references) //IL_fad6: Unknown result type (might be due to invalid IL or missing references) //IL_fadc: Unknown result type (might be due to invalid IL or missing references) //IL_fae1: Unknown result type (might be due to invalid IL or missing references) //IL_fae7: Unknown result type (might be due to invalid IL or missing references) //IL_faf1: Unknown result type (might be due to invalid IL or missing references) //IL_faf6: Unknown result type (might be due to invalid IL or missing references) //IL_fafc: Unknown result type (might be due to invalid IL or missing references) //IL_fb06: Unknown result type (might be due to invalid IL or missing references) //IL_fb0b: Unknown result type (might be due to invalid IL or missing references) //IL_fb11: Unknown result type (might be due to invalid IL or missing references) //IL_fb1b: Unknown result type (might be due to invalid IL or missing references) //IL_fb20: Unknown result type (might be due to invalid IL or missing references) //IL_fb26: Unknown result type (might be due to invalid IL or missing references) //IL_fb2b: Unknown result type (might be due to invalid IL or missing references) //IL_fb37: Unknown result type (might be due to invalid IL or missing references) //IL_f640: Unknown result type (might be due to invalid IL or missing references) //IL_f646: Unknown result type (might be due to invalid IL or missing references) //IL_f64b: Unknown result type (might be due to invalid IL or missing references) //IL_f651: Unknown result type (might be due to invalid IL or missing references) //IL_f656: Unknown result type (might be due to invalid IL or missing references) //IL_f65c: Unknown result type (might be due to invalid IL or missing references) //IL_f666: Unknown result type (might be due to invalid IL or missing references) //IL_f66b: Unknown result type (might be due to invalid IL or missing references) //IL_f671: Unknown result type (might be due to invalid IL or missing references) //IL_f676: Unknown result type (might be due to invalid IL or missing references) //IL_f681: Unknown result type (might be due to invalid IL or missing references) //IL_f687: Unknown result type (might be due to invalid IL or missing references) //IL_f68c: Unknown result type (might be due to invalid IL or missing references) //IL_f692: Unknown result type (might be due to invalid IL or missing references) //IL_f69c: Unknown result type (might be due to invalid IL or missing references) //IL_f6a1: Unknown result type (might be due to invalid IL or missing references) //IL_f6a7: Unknown result type (might be due to invalid IL or missing references) //IL_f6b1: Unknown result type (might be due to invalid IL or missing references) //IL_f6b6: Unknown result type (might be due to invalid IL or missing references) //IL_f6bc: Unknown result type (might be due to invalid IL or missing references) //IL_f6c1: Unknown result type (might be due to invalid IL or missing references) //IL_f6c7: Unknown result type (might be due to invalid IL or missing references) //IL_f6cc: Unknown result type (might be due to invalid IL or missing references) //IL_f6d8: Unknown result type (might be due to invalid IL or missing references) //IL_d2c3: Unknown result type (might be due to invalid IL or missing references) //IL_d2c9: Unknown result type (might be due to invalid IL or missing references) //IL_d2ce: Unknown result type (might be due to invalid IL or missing references) //IL_d2d4: Unknown result type (might be due to invalid IL or missing references) //IL_d2da: Unknown result type (might be due to invalid IL or missing references) //IL_d2df: Unknown result type (might be due to invalid IL or missing references) //IL_d2e9: Unknown result type (might be due to invalid IL or missing references) //IL_d2ee: Unknown result type (might be due to invalid IL or missing references) //IL_d2f4: Unknown result type (might be due to invalid IL or missing references) //IL_d2fe: Unknown result type (might be due to invalid IL or missing references) //IL_d304: Unknown result type (might be due to invalid IL or missing references) //IL_d30e: Unknown result type (might be due to invalid IL or missing references) //IL_d313: Unknown result type (might be due to invalid IL or missing references) //IL_d324: Unknown result type (might be due to invalid IL or missing references) //IL_d025: Unknown result type (might be due to invalid IL or missing references) //IL_d02b: Unknown result type (might be due to invalid IL or missing references) //IL_d030: Unknown result type (might be due to invalid IL or missing references) //IL_d036: Unknown result type (might be due to invalid IL or missing references) //IL_d03b: Unknown result type (might be due to invalid IL or missing references) //IL_d041: Unknown result type (might be due to invalid IL or missing references) //IL_d04b: Unknown result type (might be due to invalid IL or missing references) //IL_d050: Unknown result type (might be due to invalid IL or missing references) //IL_d056: Unknown result type (might be due to invalid IL or missing references) //IL_d05c: Unknown result type (might be due to invalid IL or missing references) //IL_d066: Unknown result type (might be due to invalid IL or missing references) //IL_d06b: Unknown result type (might be due to invalid IL or missing references) //IL_d07c: Unknown result type (might be due to invalid IL or missing references) //IL_fc99: Unknown result type (might be due to invalid IL or missing references) //IL_fc9f: Unknown result type (might be due to invalid IL or missing references) //IL_fca4: Unknown result type (might be due to invalid IL or missing references) //IL_fcaa: Unknown result type (might be due to invalid IL or missing references) //IL_fcb4: Unknown result type (might be due to invalid IL or missing references) //IL_fcb9: Unknown result type (might be due to invalid IL or missing references) //IL_fcbf: Unknown result type (might be due to invalid IL or missing references) //IL_fcc9: Unknown result type (might be due to invalid IL or missing references) //IL_fcce: Unknown result type (might be due to invalid IL or missing references) //IL_fcd4: Unknown result type (might be due to invalid IL or missing references) //IL_fcde: Unknown result type (might be due to invalid IL or missing references) //IL_fce3: Unknown result type (might be due to invalid IL or missing references) //IL_fce9: Unknown result type (might be due to invalid IL or missing references) //IL_fcee: Unknown result type (might be due to invalid IL or missing references) //IL_fcf4: Unknown result type (might be due to invalid IL or missing references) //IL_fcf9: Unknown result type (might be due to invalid IL or missing references) //IL_fd04: Unknown result type (might be due to invalid IL or missing references) //IL_fd0a: Unknown result type (might be due to invalid IL or missing references) //IL_fd0f: Unknown result type (might be due to invalid IL or missing references) //IL_fd15: Unknown result type (might be due to invalid IL or missing references) //IL_fd1f: Unknown result type (might be due to invalid IL or missing references) //IL_fd24: Unknown result type (might be due to invalid IL or missing references) //IL_fd2a: Unknown result type (might be due to invalid IL or missing references) //IL_fd2f: Unknown result type (might be due to invalid IL or missing references) //IL_fd35: Unknown result type (might be due to invalid IL or missing references) //IL_fd3f: Unknown result type (might be due to invalid IL or missing references) //IL_fd44: Unknown result type (might be due to invalid IL or missing references) //IL_fd4a: Unknown result type (might be due to invalid IL or missing references) //IL_fd4f: Unknown result type (might be due to invalid IL or missing references) //IL_fd55: Unknown result type (might be due to invalid IL or missing references) //IL_fd5a: Unknown result type (might be due to invalid IL or missing references) //IL_fd66: Unknown result type (might be due to invalid IL or missing references) //IL_fb51: Unknown result type (might be due to invalid IL or missing references) //IL_fb56: Unknown result type (might be due to invalid IL or missing references) //IL_f7dc: Unknown result type (might be due to invalid IL or missing references) //IL_f7e2: Unknown result type (might be due to invalid IL or missing references) //IL_f7e7: Unknown result type (might be due to invalid IL or missing references) //IL_f7ed: Unknown result type (might be due to invalid IL or missing references) //IL_f7f2: Unknown result type (might be due to invalid IL or missing references) //IL_f7f8: Unknown result type (might be due to invalid IL or missing references) //IL_f802: Unknown result type (might be due to invalid IL or missing references) //IL_f807: Unknown result type (might be due to invalid IL or missing references) //IL_f80d: Unknown result type (might be due to invalid IL or missing references) //IL_f812: Unknown result type (might be due to invalid IL or missing references) //IL_f81d: Unknown result type (might be due to invalid IL or missing references) //IL_f823: Unknown result type (might be due to invalid IL or missing references) //IL_f828: Unknown result type (might be due to invalid IL or missing references) //IL_f82e: Unknown result type (might be due to invalid IL or missing references) //IL_f838: Unknown result type (might be due to invalid IL or missing references) //IL_f83d: Unknown result type (might be due to invalid IL or missing references) //IL_f843: Unknown result type (might be due to invalid IL or missing references) //IL_f84d: Unknown result type (might be due to invalid IL or missing references) //IL_f852: Unknown result type (might be due to invalid IL or missing references) //IL_f858: Unknown result type (might be due to invalid IL or missing references) //IL_f85d: Unknown result type (might be due to invalid IL or missing references) //IL_f863: Unknown result type (might be due to invalid IL or missing references) //IL_f868: Unknown result type (might be due to invalid IL or missing references) //IL_f874: Unknown result type (might be due to invalid IL or missing references) //IL_f6f2: Unknown result type (might be due to invalid IL or missing references) //IL_f6f8: Unknown result type (might be due to invalid IL or missing references) //IL_f6fd: Unknown result type (might be due to invalid IL or missing references) //IL_f703: Unknown result type (might be due to invalid IL or missing references) //IL_f708: Unknown result type (might be due to invalid IL or missing references) //IL_f70e: Unknown result type (might be due to invalid IL or missing references) //IL_f718: Unknown result type (might be due to invalid IL or missing references) //IL_f71d: Unknown result type (might be due to invalid IL or missing references) //IL_f723: Unknown result type (might be due to invalid IL or missing references) //IL_f728: Unknown result type (might be due to invalid IL or missing references) //IL_f733: Unknown result type (might be due to invalid IL or missing references) //IL_f739: Unknown result type (might be due to invalid IL or missing references) //IL_f73e: Unknown result type (might be due to invalid IL or missing references) //IL_f744: Unknown result type (might be due to invalid IL or missing references) //IL_f74e: Unknown result type (might be due to invalid IL or missing references) //IL_f753: Unknown result type (might be due to invalid IL or missing references) //IL_f759: Unknown result type (might be due to invalid IL or missing references) //IL_f763: Unknown result type (might be due to invalid IL or missing references) //IL_f768: Unknown result type (might be due to invalid IL or missing references) //IL_f76e: Unknown result type (might be due to invalid IL or missing references) //IL_f773: Unknown result type (might be due to invalid IL or missing references) //IL_f779: Unknown result type (might be due to invalid IL or missing references) //IL_f77e: Unknown result type (might be due to invalid IL or missing references) //IL_f78a: Unknown result type (might be due to invalid IL or missing references) //IL_d557: Unknown result type (might be due to invalid IL or missing references) //IL_d55d: Unknown result type (might be due to invalid IL or missing references) //IL_d562: Unknown result type (might be due to invalid IL or missing references) //IL_d568: Unknown result type (might be due to invalid IL or missing references) //IL_d56e: Unknown result type (might be due to invalid IL or missing references) //IL_d573: Unknown result type (might be due to invalid IL or missing references) //IL_d57d: Unknown result type (might be due to invalid IL or missing references) //IL_d582: Unknown result type (might be due to invalid IL or missing references) //IL_d588: Unknown result type (might be due to invalid IL or missing references) //IL_d592: Unknown result type (might be due to invalid IL or missing references) //IL_d598: Unknown result type (might be due to invalid IL or missing references) //IL_d5a2: Unknown result type (might be due to invalid IL or missing references) //IL_d5a7: Unknown result type (might be due to invalid IL or missing references) //IL_d5b8: Unknown result type (might be due to invalid IL or missing references) //IL_d33e: Unknown result type (might be due to invalid IL or missing references) //IL_d344: Unknown result type (might be due to invalid IL or missing references) //IL_d349: Unknown result type (might be due to invalid IL or missing references) //IL_d34f: Unknown result type (might be due to invalid IL or missing references) //IL_d355: Unknown result type (might be due to invalid IL or missing references) //IL_d35a: Unknown result type (might be due to invalid IL or missing references) //IL_d364: Unknown result type (might be due to invalid IL or missing references) //IL_d369: Unknown result type (might be due to invalid IL or missing references) //IL_d36f: Unknown result type (might be due to invalid IL or missing references) //IL_d379: Unknown result type (might be due to invalid IL or missing references) //IL_d38a: Unknown result type (might be due to invalid IL or missing references) //IL_d096: Unknown result type (might be due to invalid IL or missing references) //IL_d09c: Unknown result type (might be due to invalid IL or missing references) //IL_d0a1: Unknown result type (might be due to invalid IL or missing references) //IL_d0a7: Unknown result type (might be due to invalid IL or missing references) //IL_d0b1: Unknown result type (might be due to invalid IL or missing references) //IL_d0b6: Unknown result type (might be due to invalid IL or missing references) //IL_d0bc: Unknown result type (might be due to invalid IL or missing references) //IL_d0c6: Unknown result type (might be due to invalid IL or missing references) //IL_d0d7: Unknown result type (might be due to invalid IL or missing references) //IL_f51c: Unknown result type (might be due to invalid IL or missing references) //IL_f522: Unknown result type (might be due to invalid IL or missing references) //IL_fd80: Unknown result type (might be due to invalid IL or missing references) //IL_fd86: Unknown result type (might be due to invalid IL or missing references) //IL_fd8b: Unknown result type (might be due to invalid IL or missing references) //IL_fd91: Unknown result type (might be due to invalid IL or missing references) //IL_fd9b: Unknown result type (might be due to invalid IL or missing references) //IL_fda0: Unknown result type (might be due to invalid IL or missing references) //IL_fda6: Unknown result type (might be due to invalid IL or missing references) //IL_fdb0: Unknown result type (might be due to invalid IL or missing references) //IL_fdb5: Unknown result type (might be due to invalid IL or missing references) //IL_fdbb: Unknown result type (might be due to invalid IL or missing references) //IL_fdc5: Unknown result type (might be due to invalid IL or missing references) //IL_fdca: Unknown result type (might be due to invalid IL or missing references) //IL_fdd0: Unknown result type (might be due to invalid IL or missing references) //IL_fdd5: Unknown result type (might be due to invalid IL or missing references) //IL_fddb: Unknown result type (might be due to invalid IL or missing references) //IL_fde0: Unknown result type (might be due to invalid IL or missing references) //IL_fdeb: Unknown result type (might be due to invalid IL or missing references) //IL_fdf1: Unknown result type (might be due to invalid IL or missing references) //IL_fdf6: Unknown result type (might be due to invalid IL or missing references) //IL_fdfc: Unknown result type (might be due to invalid IL or missing references) //IL_fe01: Unknown result type (might be due to invalid IL or missing references) //IL_fe07: Unknown result type (might be due to invalid IL or missing references) //IL_fe11: Unknown result type (might be due to invalid IL or missing references) //IL_fe16: Unknown result type (might be due to invalid IL or missing references) //IL_fe1c: Unknown result type (might be due to invalid IL or missing references) //IL_fe26: Unknown result type (might be due to invalid IL or missing references) //IL_fe2b: Unknown result type (might be due to invalid IL or missing references) //IL_fe31: Unknown result type (might be due to invalid IL or missing references) //IL_fe3b: Unknown result type (might be due to invalid IL or missing references) //IL_fe40: Unknown result type (might be due to invalid IL or missing references) //IL_fe46: Unknown result type (might be due to invalid IL or missing references) //IL_fe4b: Unknown result type (might be due to invalid IL or missing references) //IL_fe57: Unknown result type (might be due to invalid IL or missing references) //IL_fb8a: Unknown result type (might be due to invalid IL or missing references) //IL_fb90: Unknown result type (might be due to invalid IL or missing references) //IL_fb95: Unknown result type (might be due to invalid IL or missing references) //IL_fb9b: Unknown result type (might be due to invalid IL or missing references) //IL_fba5: Unknown result type (might be due to invalid IL or missing references) //IL_fbaa: Unknown result type (might be due to invalid IL or missing references) //IL_fbb0: Unknown result type (might be due to invalid IL or missing references) //IL_fbba: Unknown result type (might be due to invalid IL or missing references) //IL_fbbf: Unknown result type (might be due to invalid IL or missing references) //IL_fbc5: Unknown result type (might be due to invalid IL or missing references) //IL_fbcf: Unknown result type (might be due to invalid IL or missing references) //IL_fbd4: Unknown result type (might be due to invalid IL or missing references) //IL_fbda: Unknown result type (might be due to invalid IL or missing references) //IL_fbdf: Unknown result type (might be due to invalid IL or missing references) //IL_fbe5: Unknown result type (might be due to invalid IL or missing references) //IL_fbea: Unknown result type (might be due to invalid IL or missing references) //IL_fbf5: Unknown result type (might be due to invalid IL or missing references) //IL_fbfb: Unknown result type (might be due to invalid IL or missing references) //IL_fc00: Unknown result type (might be due to invalid IL or missing references) //IL_fc06: Unknown result type (might be due to invalid IL or missing references) //IL_fc0b: Unknown result type (might be due to invalid IL or missing references) //IL_fc11: Unknown result type (might be due to invalid IL or missing references) //IL_fc1b: Unknown result type (might be due to invalid IL or missing references) //IL_fc20: Unknown result type (might be due to invalid IL or missing references) //IL_fc26: Unknown result type (might be due to invalid IL or missing references) //IL_fc30: Unknown result type (might be due to invalid IL or missing references) //IL_fc35: Unknown result type (might be due to invalid IL or missing references) //IL_fc3b: Unknown result type (might be due to invalid IL or missing references) //IL_fc45: Unknown result type (might be due to invalid IL or missing references) //IL_fc4a: Unknown result type (might be due to invalid IL or missing references) //IL_fc50: Unknown result type (might be due to invalid IL or missing references) //IL_fc55: Unknown result type (might be due to invalid IL or missing references) //IL_fc61: Unknown result type (might be due to invalid IL or missing references) //IL_f88e: Unknown result type (might be due to invalid IL or missing references) //IL_f894: Unknown result type (might be due to invalid IL or missing references) //IL_f899: Unknown result type (might be due to invalid IL or missing references) //IL_f89f: Unknown result type (might be due to invalid IL or missing references) //IL_f8a4: Unknown result type (might be due to invalid IL or missing references) //IL_f8aa: Unknown result type (might be due to invalid IL or missing references) //IL_f8b4: Unknown result type (might be due to invalid IL or missing references) //IL_f8b9: Unknown result type (might be due to invalid IL or missing references) //IL_f8bf: Unknown result type (might be due to invalid IL or missing references) //IL_f8c4: Unknown result type (might be due to invalid IL or missing references) //IL_f8cf: Unknown result type (might be due to invalid IL or missing references) //IL_f8d5: Unknown result type (might be due to invalid IL or missing references) //IL_f8da: Unknown result type (might be due to invalid IL or missing references) //IL_f8e0: Unknown result type (might be due to invalid IL or missing references) //IL_f8ea: Unknown result type (might be due to invalid IL or missing references) //IL_f8ef: Unknown result type (might be due to invalid IL or missing references) //IL_f8f5: Unknown result type (might be due to invalid IL or missing references) //IL_f8ff: Unknown result type (might be due to invalid IL or missing references) //IL_f904: Unknown result type (might be due to invalid IL or missing references) //IL_f90a: Unknown result type (might be due to invalid IL or missing references) //IL_f90f: Unknown result type (might be due to invalid IL or missing references) //IL_f915: Unknown result type (might be due to invalid IL or missing references) //IL_f91a: Unknown result type (might be due to invalid IL or missing references) //IL_f926: Unknown result type (might be due to invalid IL or missing references) //IL_d986: Unknown result type (might be due to invalid IL or missing references) //IL_d98c: Unknown result type (might be due to invalid IL or missing references) //IL_d991: Unknown result type (might be due to invalid IL or missing references) //IL_d997: Unknown result type (might be due to invalid IL or missing references) //IL_d99d: Unknown result type (might be due to invalid IL or missing references) //IL_d9a2: Unknown result type (might be due to invalid IL or missing references) //IL_d9ac: Unknown result type (might be due to invalid IL or missing references) //IL_d9b1: Unknown result type (might be due to invalid IL or missing references) //IL_d9b7: Unknown result type (might be due to invalid IL or missing references) //IL_d9bd: Unknown result type (might be due to invalid IL or missing references) //IL_d9c7: Unknown result type (might be due to invalid IL or missing references) //IL_d9cc: Unknown result type (might be due to invalid IL or missing references) //IL_d9dd: Unknown result type (might be due to invalid IL or missing references) //IL_d774: Unknown result type (might be due to invalid IL or missing references) //IL_d77a: Unknown result type (might be due to invalid IL or missing references) //IL_d77f: Unknown result type (might be due to invalid IL or missing references) //IL_d785: Unknown result type (might be due to invalid IL or missing references) //IL_d78b: Unknown result type (might be due to invalid IL or missing references) //IL_d790: Unknown result type (might be due to invalid IL or missing references) //IL_d79a: Unknown result type (might be due to invalid IL or missing references) //IL_d79f: Unknown result type (might be due to invalid IL or missing references) //IL_d7a5: Unknown result type (might be due to invalid IL or missing references) //IL_d7af: Unknown result type (might be due to invalid IL or missing references) //IL_d7b5: Unknown result type (might be due to invalid IL or missing references) //IL_d7bf: Unknown result type (might be due to invalid IL or missing references) //IL_d7c4: Unknown result type (might be due to invalid IL or missing references) //IL_d7d5: Unknown result type (might be due to invalid IL or missing references) //IL_d5d2: Unknown result type (might be due to invalid IL or missing references) //IL_d5d7: Unknown result type (might be due to invalid IL or missing references) //IL_d3a4: Unknown result type (might be due to invalid IL or missing references) //IL_d3aa: Unknown result type (might be due to invalid IL or missing references) //IL_d3af: Unknown result type (might be due to invalid IL or missing references) //IL_d3ba: Unknown result type (might be due to invalid IL or missing references) //IL_d0f1: Unknown result type (might be due to invalid IL or missing references) //IL_d0f6: Unknown result type (might be due to invalid IL or missing references) //IL_f572: Unknown result type (might be due to invalid IL or missing references) //IL_f577: Unknown result type (might be due to invalid IL or missing references) //IL_fe71: Unknown result type (might be due to invalid IL or missing references) //IL_fe76: Unknown result type (might be due to invalid IL or missing references) //IL_f7b1: Unknown result type (might be due to invalid IL or missing references) //IL_f7bc: Unknown result type (might be due to invalid IL or missing references) //IL_f7c6: Unknown result type (might be due to invalid IL or missing references) //IL_f7cb: Unknown result type (might be due to invalid IL or missing references) //IL_db53: Unknown result type (might be due to invalid IL or missing references) //IL_db59: Unknown result type (might be due to invalid IL or missing references) //IL_db5e: Unknown result type (might be due to invalid IL or missing references) //IL_db64: Unknown result type (might be due to invalid IL or missing references) //IL_db6a: Unknown result type (might be due to invalid IL or missing references) //IL_db6f: Unknown result type (might be due to invalid IL or missing references) //IL_db79: Unknown result type (might be due to invalid IL or missing references) //IL_db7e: Unknown result type (might be due to invalid IL or missing references) //IL_db84: Unknown result type (might be due to invalid IL or missing references) //IL_db8a: Unknown result type (might be due to invalid IL or missing references) //IL_db94: Unknown result type (might be due to invalid IL or missing references) //IL_db99: Unknown result type (might be due to invalid IL or missing references) //IL_dbaa: Unknown result type (might be due to invalid IL or missing references) //IL_d9f7: Unknown result type (might be due to invalid IL or missing references) //IL_d9fd: Unknown result type (might be due to invalid IL or missing references) //IL_da02: Unknown result type (might be due to invalid IL or missing references) //IL_da08: Unknown result type (might be due to invalid IL or missing references) //IL_da0e: Unknown result type (might be due to invalid IL or missing references) //IL_da13: Unknown result type (might be due to invalid IL or missing references) //IL_da1d: Unknown result type (might be due to invalid IL or missing references) //IL_da22: Unknown result type (might be due to invalid IL or missing references) //IL_da28: Unknown result type (might be due to invalid IL or missing references) //IL_da2e: Unknown result type (might be due to invalid IL or missing references) //IL_da38: Unknown result type (might be due to invalid IL or missing references) //IL_da3d: Unknown result type (might be due to invalid IL or missing references) //IL_da4e: Unknown result type (might be due to invalid IL or missing references) //IL_d7ef: Unknown result type (might be due to invalid IL or missing references) //IL_d7f4: Unknown result type (might be due to invalid IL or missing references) //IL_d60b: Unknown result type (might be due to invalid IL or missing references) //IL_d611: Unknown result type (might be due to invalid IL or missing references) //IL_d616: Unknown result type (might be due to invalid IL or missing references) //IL_d61c: Unknown result type (might be due to invalid IL or missing references) //IL_d622: Unknown result type (might be due to invalid IL or missing references) //IL_d627: Unknown result type (might be due to invalid IL or missing references) //IL_d62c: Unknown result type (might be due to invalid IL or missing references) //IL_d632: Unknown result type (might be due to invalid IL or missing references) //IL_d63c: Unknown result type (might be due to invalid IL or missing references) //IL_d642: Unknown result type (might be due to invalid IL or missing references) //IL_d64c: Unknown result type (might be due to invalid IL or missing references) //IL_d651: Unknown result type (might be due to invalid IL or missing references) //IL_d662: Unknown result type (might be due to invalid IL or missing references) //IL_d12a: Unknown result type (might be due to invalid IL or missing references) //IL_d130: Unknown result type (might be due to invalid IL or missing references) //IL_d135: Unknown result type (might be due to invalid IL or missing references) //IL_d13b: Unknown result type (might be due to invalid IL or missing references) //IL_d140: Unknown result type (might be due to invalid IL or missing references) //IL_d146: Unknown result type (might be due to invalid IL or missing references) //IL_d150: Unknown result type (might be due to invalid IL or missing references) //IL_d161: Unknown result type (might be due to invalid IL or missing references) //IL_f5d7: Unknown result type (might be due to invalid IL or missing references) //IL_f5dc: Unknown result type (might be due to invalid IL or missing references) //IL_feaa: Unknown result type (might be due to invalid IL or missing references) //IL_feb0: Unknown result type (might be due to invalid IL or missing references) //IL_feb5: Unknown result type (might be due to invalid IL or missing references) //IL_febb: Unknown result type (might be due to invalid IL or missing references) //IL_fec5: Unknown result type (might be due to invalid IL or missing references) //IL_feca: Unknown result type (might be due to invalid IL or missing references) //IL_fed0: Unknown result type (might be due to invalid IL or missing references) //IL_feda: Unknown result type (might be due to invalid IL or missing references) //IL_fedf: Unknown result type (might be due to invalid IL or missing references) //IL_fee5: Unknown result type (might be due to invalid IL or missing references) //IL_feef: Unknown result type (might be due to invalid IL or missing references) //IL_fef4: Unknown result type (might be due to invalid IL or missing references) //IL_fefa: Unknown result type (might be due to invalid IL or missing references) //IL_feff: Unknown result type (might be due to invalid IL or missing references) //IL_ff05: Unknown result type (might be due to invalid IL or missing references) //IL_ff0a: Unknown result type (might be due to invalid IL or missing references) //IL_ff15: Unknown result type (might be due to invalid IL or missing references) //IL_ff1b: Unknown result type (might be due to invalid IL or missing references) //IL_ff20: Unknown result type (might be due to invalid IL or missing references) //IL_ff26: Unknown result type (might be due to invalid IL or missing references) //IL_ff2b: Unknown result type (might be due to invalid IL or missing references) //IL_ff31: Unknown result type (might be due to invalid IL or missing references) //IL_ff3b: Unknown result type (might be due to invalid IL or missing references) //IL_ff40: Unknown result type (might be due to invalid IL or missing references) //IL_ff46: Unknown result type (might be due to invalid IL or missing references) //IL_ff50: Unknown result type (might be due to invalid IL or missing references) //IL_ff55: Unknown result type (might be due to invalid IL or missing references) //IL_ff5b: Unknown result type (might be due to invalid IL or missing references) //IL_ff65: Unknown result type (might be due to invalid IL or missing references) //IL_ff6a: Unknown result type (might be due to invalid IL or missing references) //IL_ff70: Unknown result type (might be due to invalid IL or missing references) //IL_ff75: Unknown result type (might be due to invalid IL or missing references) //IL_ff81: Unknown result type (might be due to invalid IL or missing references) //IL_f94d: Unknown result type (might be due to invalid IL or missing references) //IL_f958: Unknown result type (might be due to invalid IL or missing references) //IL_f962: Unknown result type (might be due to invalid IL or missing references) //IL_f967: Unknown result type (might be due to invalid IL or missing references) //IL_dbc4: Unknown result type (might be due to invalid IL or missing references) //IL_dbca: Unknown result type (might be due to invalid IL or missing references) //IL_dbcf: Unknown result type (might be due to invalid IL or missing references) //IL_dbd5: Unknown result type (might be due to invalid IL or missing references) //IL_dbdb: Unknown result type (might be due to invalid IL or missing references) //IL_dbe0: Unknown result type (might be due to invalid IL or missing references) //IL_dbea: Unknown result type (might be due to invalid IL or missing references) //IL_dbef: Unknown result type (might be due to invalid IL or missing references) //IL_dbf5: Unknown result type (might be due to invalid IL or missing references) //IL_dbfb: Unknown result type (might be due to invalid IL or missing references) //IL_dc05: Unknown result type (might be due to invalid IL or missing references) //IL_dc0a: Unknown result type (might be due to invalid IL or missing references) //IL_dc1b: Unknown result type (might be due to invalid IL or missing references) //IL_da68: Unknown result type (might be due to invalid IL or missing references) //IL_da6e: Unknown result type (might be due to invalid IL or missing references) //IL_da73: Unknown result type (might be due to invalid IL or missing references) //IL_da79: Unknown result type (might be due to invalid IL or missing references) //IL_da83: Unknown result type (might be due to invalid IL or missing references) //IL_da88: Unknown result type (might be due to invalid IL or missing references) //IL_da93: Unknown result type (might be due to invalid IL or missing references) //IL_da99: Unknown result type (might be due to invalid IL or missing references) //IL_da9e: Unknown result type (might be due to invalid IL or missing references) //IL_daa4: Unknown result type (might be due to invalid IL or missing references) //IL_daae: Unknown result type (might be due to invalid IL or missing references) //IL_dab3: Unknown result type (might be due to invalid IL or missing references) //IL_dab9: Unknown result type (might be due to invalid IL or missing references) //IL_dac3: Unknown result type (might be due to invalid IL or missing references) //IL_dac8: Unknown result type (might be due to invalid IL or missing references) //IL_dad4: Unknown result type (might be due to invalid IL or missing references) //IL_d828: Unknown result type (might be due to invalid IL or missing references) //IL_d82e: Unknown result type (might be due to invalid IL or missing references) //IL_d833: Unknown result type (might be due to invalid IL or missing references) //IL_d839: Unknown result type (might be due to invalid IL or missing references) //IL_d83f: Unknown result type (might be due to invalid IL or missing references) //IL_d844: Unknown result type (might be due to invalid IL or missing references) //IL_d849: Unknown result type (might be due to invalid IL or missing references) //IL_d84f: Unknown result type (might be due to invalid IL or missing references) //IL_d859: Unknown result type (might be due to invalid IL or missing references) //IL_d85f: Unknown result type (might be due to invalid IL or missing references) //IL_d869: Unknown result type (might be due to invalid IL or missing references) //IL_d86e: Unknown result type (might be due to invalid IL or missing references) //IL_d87f: Unknown result type (might be due to invalid IL or missing references) //IL_d69e: Unknown result type (might be due to invalid IL or missing references) //IL_d6a4: Unknown result type (might be due to invalid IL or missing references) //IL_d6a9: Unknown result type (might be due to invalid IL or missing references) //IL_d6af: Unknown result type (might be due to invalid IL or missing references) //IL_d6b5: Unknown result type (might be due to invalid IL or missing references) //IL_d6ba: Unknown result type (might be due to invalid IL or missing references) //IL_d6c4: Unknown result type (might be due to invalid IL or missing references) //IL_d6c9: Unknown result type (might be due to invalid IL or missing references) //IL_d6cf: Unknown result type (might be due to invalid IL or missing references) //IL_d6d9: Unknown result type (might be due to invalid IL or missing references) //IL_d6df: Unknown result type (might be due to invalid IL or missing references) //IL_d6e9: Unknown result type (might be due to invalid IL or missing references) //IL_d6ee: Unknown result type (might be due to invalid IL or missing references) //IL_d6ff: Unknown result type (might be due to invalid IL or missing references) //IL_d67e: Unknown result type (might be due to invalid IL or missing references) //IL_d683: Unknown result type (might be due to invalid IL or missing references) //IL_d688: Unknown result type (might be due to invalid IL or missing references) //IL_d68d: Unknown result type (might be due to invalid IL or missing references) //IL_d3df: Unknown result type (might be due to invalid IL or missing references) //IL_d3e4: Unknown result type (might be due to invalid IL or missing references) //IL_d19d: Unknown result type (might be due to invalid IL or missing references) //IL_d1a3: Unknown result type (might be due to invalid IL or missing references) //IL_d1a8: Unknown result type (might be due to invalid IL or missing references) //IL_d1ae: Unknown result type (might be due to invalid IL or missing references) //IL_d1b8: Unknown result type (might be due to invalid IL or missing references) //IL_d1bd: Unknown result type (might be due to invalid IL or missing references) //IL_d1c3: Unknown result type (might be due to invalid IL or missing references) //IL_d1cd: Unknown result type (might be due to invalid IL or missing references) //IL_d1de: Unknown result type (might be due to invalid IL or missing references) //IL_d17d: Unknown result type (might be due to invalid IL or missing references) //IL_d182: Unknown result type (might be due to invalid IL or missing references) //IL_d187: Unknown result type (might be due to invalid IL or missing references) //IL_d18c: Unknown result type (might be due to invalid IL or missing references) //IL_f5a9: Unknown result type (might be due to invalid IL or missing references) //IL_f5af: Unknown result type (might be due to invalid IL or missing references) //IL_f5c5: Unknown result type (might be due to invalid IL or missing references) //IL_dd01: Unknown result type (might be due to invalid IL or missing references) //IL_dd07: Unknown result type (might be due to invalid IL or missing references) //IL_dd0c: Unknown result type (might be due to invalid IL or missing references) //IL_dd12: Unknown result type (might be due to invalid IL or missing references) //IL_dd1c: Unknown result type (might be due to invalid IL or missing references) //IL_dd21: Unknown result type (might be due to invalid IL or missing references) //IL_dd27: Unknown result type (might be due to invalid IL or missing references) //IL_dd31: Unknown result type (might be due to invalid IL or missing references) //IL_dd36: Unknown result type (might be due to invalid IL or missing references) //IL_dd3c: Unknown result type (might be due to invalid IL or missing references) //IL_dd46: Unknown result type (might be due to invalid IL or missing references) //IL_dd4b: Unknown result type (might be due to invalid IL or missing references) //IL_dd56: Unknown result type (might be due to invalid IL or missing references) //IL_dd5c: Unknown result type (might be due to invalid IL or missing references) //IL_dd61: Unknown result type (might be due to invalid IL or missing references) //IL_dd67: Unknown result type (might be due to invalid IL or missing references) //IL_dd71: Unknown result type (might be due to invalid IL or missing references) //IL_dd76: Unknown result type (might be due to invalid IL or missing references) //IL_dd7c: Unknown result type (might be due to invalid IL or missing references) //IL_dd86: Unknown result type (might be due to invalid IL or missing references) //IL_dd8b: Unknown result type (might be due to invalid IL or missing references) //IL_dd91: Unknown result type (might be due to invalid IL or missing references) //IL_dd9b: Unknown result type (might be due to invalid IL or missing references) //IL_dda0: Unknown result type (might be due to invalid IL or missing references) //IL_ddac: Unknown result type (might be due to invalid IL or missing references) //IL_dc35: Unknown result type (might be due to invalid IL or missing references) //IL_dc3b: Unknown result type (might be due to invalid IL or missing references) //IL_dc40: Unknown result type (might be due to invalid IL or missing references) //IL_dc46: Unknown result type (might be due to invalid IL or missing references) //IL_dc4c: Unknown result type (might be due to invalid IL or missing references) //IL_dc51: Unknown result type (might be due to invalid IL or missing references) //IL_dc5b: Unknown result type (might be due to invalid IL or missing references) //IL_dc60: Unknown result type (might be due to invalid IL or missing references) //IL_dc66: Unknown result type (might be due to invalid IL or missing references) //IL_dc77: Unknown result type (might be due to invalid IL or missing references) //IL_daee: Unknown result type (might be due to invalid IL or missing references) //IL_daf3: Unknown result type (might be due to invalid IL or missing references) //IL_d8bb: Unknown result type (might be due to invalid IL or missing references) //IL_d8c1: Unknown result type (might be due to invalid IL or missing references) //IL_d8c6: Unknown result type (might be due to invalid IL or missing references) //IL_d8cc: Unknown result type (might be due to invalid IL or missing references) //IL_d8d2: Unknown result type (might be due to invalid IL or missing references) //IL_d8d7: Unknown result type (might be due to invalid IL or missing references) //IL_d8e1: Unknown result type (might be due to invalid IL or missing references) //IL_d8e6: Unknown result type (might be due to invalid IL or missing references) //IL_d8ec: Unknown result type (might be due to invalid IL or missing references) //IL_d8f6: Unknown result type (might be due to invalid IL or missing references) //IL_d8fc: Unknown result type (might be due to invalid IL or missing references) //IL_d906: Unknown result type (might be due to invalid IL or missing references) //IL_d90b: Unknown result type (might be due to invalid IL or missing references) //IL_d91c: Unknown result type (might be due to invalid IL or missing references) //IL_d89b: Unknown result type (might be due to invalid IL or missing references) //IL_d8a0: Unknown result type (might be due to invalid IL or missing references) //IL_d8a5: Unknown result type (might be due to invalid IL or missing references) //IL_d8aa: Unknown result type (might be due to invalid IL or missing references) //IL_d73d: Unknown result type (might be due to invalid IL or missing references) //IL_d742: Unknown result type (might be due to invalid IL or missing references) //IL_d747: Unknown result type (might be due to invalid IL or missing references) //IL_d74c: Unknown result type (might be due to invalid IL or missing references) //IL_d71b: Unknown result type (might be due to invalid IL or missing references) //IL_d720: Unknown result type (might be due to invalid IL or missing references) //IL_d725: Unknown result type (might be due to invalid IL or missing references) //IL_d72a: Unknown result type (might be due to invalid IL or missing references) //IL_d418: Unknown result type (might be due to invalid IL or missing references) //IL_d41e: Unknown result type (might be due to invalid IL or missing references) //IL_d423: Unknown result type (might be due to invalid IL or missing references) //IL_d429: Unknown result type (might be due to invalid IL or missing references) //IL_d42f: Unknown result type (might be due to invalid IL or missing references) //IL_d434: Unknown result type (might be due to invalid IL or missing references) //IL_d439: Unknown result type (might be due to invalid IL or missing references) //IL_d43f: Unknown result type (might be due to invalid IL or missing references) //IL_d449: Unknown result type (might be due to invalid IL or missing references) //IL_d45a: Unknown result type (might be due to invalid IL or missing references) //IL_d21c: Unknown result type (might be due to invalid IL or missing references) //IL_d221: Unknown result type (might be due to invalid IL or missing references) //IL_d226: Unknown result type (might be due to invalid IL or missing references) //IL_d22b: Unknown result type (might be due to invalid IL or missing references) //IL_d1fa: Unknown result type (might be due to invalid IL or missing references) //IL_d1ff: Unknown result type (might be due to invalid IL or missing references) //IL_d204: Unknown result type (might be due to invalid IL or missing references) //IL_d209: Unknown result type (might be due to invalid IL or missing references) //IL_df6c: Unknown result type (might be due to invalid IL or missing references) //IL_df72: Unknown result type (might be due to invalid IL or missing references) //IL_df77: Unknown result type (might be due to invalid IL or missing references) //IL_df7d: Unknown result type (might be due to invalid IL or missing references) //IL_df83: Unknown result type (might be due to invalid IL or missing references) //IL_df88: Unknown result type (might be due to invalid IL or missing references) //IL_df92: Unknown result type (might be due to invalid IL or missing references) //IL_df97: Unknown result type (might be due to invalid IL or missing references) //IL_df9d: Unknown result type (might be due to invalid IL or missing references) //IL_dfa3: Unknown result type (might be due to invalid IL or missing references) //IL_dfad: Unknown result type (might be due to invalid IL or missing references) //IL_dfb2: Unknown result type (might be due to invalid IL or missing references) //IL_dfc3: Unknown result type (might be due to invalid IL or missing references) //IL_ddc6: Unknown result type (might be due to invalid IL or missing references) //IL_ddcc: Unknown result type (might be due to invalid IL or missing references) //IL_ddd1: Unknown result type (might be due to invalid IL or missing references) //IL_ddd7: Unknown result type (might be due to invalid IL or missing references) //IL_dddd: Unknown result type (might be due to invalid IL or missing references) //IL_dde2: Unknown result type (might be due to invalid IL or missing references) //IL_ddec: Unknown result type (might be due to invalid IL or missing references) //IL_ddf1: Unknown result type (might be due to invalid IL or missing references) //IL_ddf7: Unknown result type (might be due to invalid IL or missing references) //IL_ddfd: Unknown result type (might be due to invalid IL or missing references) //IL_de07: Unknown result type (might be due to invalid IL or missing references) //IL_de0c: Unknown result type (might be due to invalid IL or missing references) //IL_de1d: Unknown result type (might be due to invalid IL or missing references) //IL_dc91: Unknown result type (might be due to invalid IL or missing references) //IL_dc96: Unknown result type (might be due to invalid IL or missing references) //IL_db28: Unknown result type (might be due to invalid IL or missing references) //IL_db2d: Unknown result type (might be due to invalid IL or missing references) //IL_db32: Unknown result type (might be due to invalid IL or missing references) //IL_db37: Unknown result type (might be due to invalid IL or missing references) //IL_d95a: Unknown result type (might be due to invalid IL or missing references) //IL_d95f: Unknown result type (might be due to invalid IL or missing references) //IL_d964: Unknown result type (might be due to invalid IL or missing references) //IL_d969: Unknown result type (might be due to invalid IL or missing references) //IL_d938: Unknown result type (might be due to invalid IL or missing references) //IL_d93d: Unknown result type (might be due to invalid IL or missing references) //IL_d942: Unknown result type (might be due to invalid IL or missing references) //IL_d947: Unknown result type (might be due to invalid IL or missing references) //IL_d496: Unknown result type (might be due to invalid IL or missing references) //IL_d49c: Unknown result type (might be due to invalid IL or missing references) //IL_d4a1: Unknown result type (might be due to invalid IL or missing references) //IL_d4a7: Unknown result type (might be due to invalid IL or missing references) //IL_d4ad: Unknown result type (might be due to invalid IL or missing references) //IL_d4b2: Unknown result type (might be due to invalid IL or missing references) //IL_d4bc: Unknown result type (might be due to invalid IL or missing references) //IL_d4c1: Unknown result type (might be due to invalid IL or missing references) //IL_d4c7: Unknown result type (might be due to invalid IL or missing references) //IL_d4d1: Unknown result type (might be due to invalid IL or missing references) //IL_d4e2: Unknown result type (might be due to invalid IL or missing references) //IL_d476: Unknown result type (might be due to invalid IL or missing references) //IL_d47b: Unknown result type (might be due to invalid IL or missing references) //IL_d480: Unknown result type (might be due to invalid IL or missing references) //IL_d485: Unknown result type (might be due to invalid IL or missing references) //IL_e13e: Unknown result type (might be due to invalid IL or missing references) //IL_e144: Unknown result type (might be due to invalid IL or missing references) //IL_e149: Unknown result type (might be due to invalid IL or missing references) //IL_e14f: Unknown result type (might be due to invalid IL or missing references) //IL_e159: Unknown result type (might be due to invalid IL or missing references) //IL_e15e: Unknown result type (might be due to invalid IL or missing references) //IL_e164: Unknown result type (might be due to invalid IL or missing references) //IL_e16e: Unknown result type (might be due to invalid IL or missing references) //IL_e173: Unknown result type (might be due to invalid IL or missing references) //IL_e179: Unknown result type (might be due to invalid IL or missing references) //IL_e183: Unknown result type (might be due to invalid IL or missing references) //IL_e188: Unknown result type (might be due to invalid IL or missing references) //IL_e193: Unknown result type (might be due to invalid IL or missing references) //IL_e199: Unknown result type (might be due to invalid IL or missing references) //IL_e19e: Unknown result type (might be due to invalid IL or missing references) //IL_e1a4: Unknown result type (might be due to invalid IL or missing references) //IL_e1ae: Unknown result type (might be due to invalid IL or missing references) //IL_e1b3: Unknown result type (might be due to invalid IL or missing references) //IL_e1b9: Unknown result type (might be due to invalid IL or missing references) //IL_e1c3: Unknown result type (might be due to invalid IL or missing references) //IL_e1c8: Unknown result type (might be due to invalid IL or missing references) //IL_e1ce: Unknown result type (might be due to invalid IL or missing references) //IL_e1d8: Unknown result type (might be due to invalid IL or missing references) //IL_e1dd: Unknown result type (might be due to invalid IL or missing references) //IL_e1e9: Unknown result type (might be due to invalid IL or missing references) //IL_dfdd: Unknown result type (might be due to invalid IL or missing references) //IL_dfe3: Unknown result type (might be due to invalid IL or missing references) //IL_dfe8: Unknown result type (might be due to invalid IL or missing references) //IL_dfee: Unknown result type (might be due to invalid IL or missing references) //IL_dff3: Unknown result type (might be due to invalid IL or missing references) //IL_dff9: Unknown result type (might be due to invalid IL or missing references) //IL_e003: Unknown result type (might be due to invalid IL or missing references) //IL_e008: Unknown result type (might be due to invalid IL or missing references) //IL_e00e: Unknown result type (might be due to invalid IL or missing references) //IL_e014: Unknown result type (might be due to invalid IL or missing references) //IL_e01e: Unknown result type (might be due to invalid IL or missing references) //IL_e023: Unknown result type (might be due to invalid IL or missing references) //IL_e034: Unknown result type (might be due to invalid IL or missing references) //IL_de37: Unknown result type (might be due to invalid IL or missing references) //IL_de3d: Unknown result type (might be due to invalid IL or missing references) //IL_de42: Unknown result type (might be due to invalid IL or missing references) //IL_de48: Unknown result type (might be due to invalid IL or missing references) //IL_de52: Unknown result type (might be due to invalid IL or missing references) //IL_de57: Unknown result type (might be due to invalid IL or missing references) //IL_de5d: Unknown result type (might be due to invalid IL or missing references) //IL_de67: Unknown result type (might be due to invalid IL or missing references) //IL_de6c: Unknown result type (might be due to invalid IL or missing references) //IL_de72: Unknown result type (might be due to invalid IL or missing references) //IL_de7c: Unknown result type (might be due to invalid IL or missing references) //IL_de81: Unknown result type (might be due to invalid IL or missing references) //IL_de8c: Unknown result type (might be due to invalid IL or missing references) //IL_de92: Unknown result type (might be due to invalid IL or missing references) //IL_de97: Unknown result type (might be due to invalid IL or missing references) //IL_de9d: Unknown result type (might be due to invalid IL or missing references) //IL_dea7: Unknown result type (might be due to invalid IL or missing references) //IL_deac: Unknown result type (might be due to invalid IL or missing references) //IL_deb2: Unknown result type (might be due to invalid IL or missing references) //IL_debc: Unknown result type (might be due to invalid IL or missing references) //IL_dec1: Unknown result type (might be due to invalid IL or missing references) //IL_dec7: Unknown result type (might be due to invalid IL or missing references) //IL_ded1: Unknown result type (might be due to invalid IL or missing references) //IL_ded6: Unknown result type (might be due to invalid IL or missing references) //IL_dee2: Unknown result type (might be due to invalid IL or missing references) //IL_dccb: Unknown result type (might be due to invalid IL or missing references) //IL_dcd0: Unknown result type (might be due to invalid IL or missing references) //IL_dcd5: Unknown result type (might be due to invalid IL or missing references) //IL_dcda: Unknown result type (might be due to invalid IL or missing references) //IL_d520: Unknown result type (might be due to invalid IL or missing references) //IL_d525: Unknown result type (might be due to invalid IL or missing references) //IL_d52a: Unknown result type (might be due to invalid IL or missing references) //IL_d52f: Unknown result type (might be due to invalid IL or missing references) //IL_d4fe: Unknown result type (might be due to invalid IL or missing references) //IL_d503: Unknown result type (might be due to invalid IL or missing references) //IL_d508: Unknown result type (might be due to invalid IL or missing references) //IL_d50d: Unknown result type (might be due to invalid IL or missing references) //IL_e3a9: Unknown result type (might be due to invalid IL or missing references) //IL_e3af: Unknown result type (might be due to invalid IL or missing references) //IL_e3b4: Unknown result type (might be due to invalid IL or missing references) //IL_e3ba: Unknown result type (might be due to invalid IL or missing references) //IL_e3c0: Unknown result type (might be due to invalid IL or missing references) //IL_e3c5: Unknown result type (might be due to invalid IL or missing references) //IL_e3cf: Unknown result type (might be due to invalid IL or missing references) //IL_e3d4: Unknown result type (might be due to invalid IL or missing references) //IL_e3da: Unknown result type (might be due to invalid IL or missing references) //IL_e3e0: Unknown result type (might be due to invalid IL or missing references) //IL_e3ea: Unknown result type (might be due to invalid IL or missing references) //IL_e3ef: Unknown result type (might be due to invalid IL or missing references) //IL_e400: Unknown result type (might be due to invalid IL or missing references) //IL_e203: Unknown result type (might be due to invalid IL or missing references) //IL_e209: Unknown result type (might be due to invalid IL or missing references) //IL_e20e: Unknown result type (might be due to invalid IL or missing references) //IL_e214: Unknown result type (might be due to invalid IL or missing references) //IL_e21a: Unknown result type (might be due to invalid IL or missing references) //IL_e21f: Unknown result type (might be due to invalid IL or missing references) //IL_e229: Unknown result type (might be due to invalid IL or missing references) //IL_e22e: Unknown result type (might be due to invalid IL or missing references) //IL_e234: Unknown result type (might be due to invalid IL or missing references) //IL_e23a: Unknown result type (might be due to invalid IL or missing references) //IL_e244: Unknown result type (might be due to invalid IL or missing references) //IL_e249: Unknown result type (might be due to invalid IL or missing references) //IL_e25a: Unknown result type (might be due to invalid IL or missing references) //IL_e04e: Unknown result type (might be due to invalid IL or missing references) //IL_e053: Unknown result type (might be due to invalid IL or missing references) //IL_defc: Unknown result type (might be due to invalid IL or missing references) //IL_df01: Unknown result type (might be due to invalid IL or missing references) //IL_e4fb: Unknown result type (might be due to invalid IL or missing references) //IL_e501: Unknown result type (might be due to invalid IL or missing references) //IL_e506: Unknown result type (might be due to invalid IL or missing references) //IL_e50c: Unknown result type (might be due to invalid IL or missing references) //IL_e516: Unknown result type (might be due to invalid IL or missing references) //IL_e51b: Unknown result type (might be due to invalid IL or missing references) //IL_e521: Unknown result type (might be due to invalid IL or missing references) //IL_e52b: Unknown result type (might be due to invalid IL or missing references) //IL_e530: Unknown result type (might be due to invalid IL or missing references) //IL_e536: Unknown result type (might be due to invalid IL or missing references) //IL_e540: Unknown result type (might be due to invalid IL or missing references) //IL_e545: Unknown result type (might be due to invalid IL or missing references) //IL_e550: Unknown result type (might be due to invalid IL or missing references) //IL_e556: Unknown result type (might be due to invalid IL or missing references) //IL_e55b: Unknown result type (might be due to invalid IL or missing references) //IL_e561: Unknown result type (might be due to invalid IL or missing references) //IL_e56b: Unknown result type (might be due to invalid IL or missing references) //IL_e570: Unknown result type (might be due to invalid IL or missing references) //IL_e576: Unknown result type (might be due to invalid IL or missing references) //IL_e580: Unknown result type (might be due to invalid IL or missing references) //IL_e585: Unknown result type (might be due to invalid IL or missing references) //IL_e58b: Unknown result type (might be due to invalid IL or missing references) //IL_e595: Unknown result type (might be due to invalid IL or missing references) //IL_e59a: Unknown result type (might be due to invalid IL or missing references) //IL_e5a6: Unknown result type (might be due to invalid IL or missing references) //IL_e41a: Unknown result type (might be due to invalid IL or missing references) //IL_e420: Unknown result type (might be due to invalid IL or missing references) //IL_e425: Unknown result type (might be due to invalid IL or missing references) //IL_e42b: Unknown result type (might be due to invalid IL or missing references) //IL_e430: Unknown result type (might be due to invalid IL or missing references) //IL_e436: Unknown result type (might be due to invalid IL or missing references) //IL_e440: Unknown result type (might be due to invalid IL or missing references) //IL_e445: Unknown result type (might be due to invalid IL or missing references) //IL_e44b: Unknown result type (might be due to invalid IL or missing references) //IL_e451: Unknown result type (might be due to invalid IL or missing references) //IL_e45b: Unknown result type (might be due to invalid IL or missing references) //IL_e460: Unknown result type (might be due to invalid IL or missing references) //IL_e471: Unknown result type (might be due to invalid IL or missing references) //IL_e274: Unknown result type (might be due to invalid IL or missing references) //IL_e27a: Unknown result type (might be due to invalid IL or missing references) //IL_e27f: Unknown result type (might be due to invalid IL or missing references) //IL_e285: Unknown result type (might be due to invalid IL or missing references) //IL_e28f: Unknown result type (might be due to invalid IL or missing references) //IL_e294: Unknown result type (might be due to invalid IL or missing references) //IL_e29a: Unknown result type (might be due to invalid IL or missing references) //IL_e2a4: Unknown result type (might be due to invalid IL or missing references) //IL_e2a9: Unknown result type (might be due to invalid IL or missing references) //IL_e2af: Unknown result type (might be due to invalid IL or missing references) //IL_e2b9: Unknown result type (might be due to invalid IL or missing references) //IL_e2be: Unknown result type (might be due to invalid IL or missing references) //IL_e2c9: Unknown result type (might be due to invalid IL or missing references) //IL_e2cf: Unknown result type (might be due to invalid IL or missing references) //IL_e2d4: Unknown result type (might be due to invalid IL or missing references) //IL_e2da: Unknown result type (might be due to invalid IL or missing references) //IL_e2e4: Unknown result type (might be due to invalid IL or missing references) //IL_e2e9: Unknown result type (might be due to invalid IL or missing references) //IL_e2ef: Unknown result type (might be due to invalid IL or missing references) //IL_e2f9: Unknown result type (might be due to invalid IL or missing references) //IL_e2fe: Unknown result type (might be due to invalid IL or missing references) //IL_e304: Unknown result type (might be due to invalid IL or missing references) //IL_e30e: Unknown result type (might be due to invalid IL or missing references) //IL_e313: Unknown result type (might be due to invalid IL or missing references) //IL_e31f: Unknown result type (might be due to invalid IL or missing references) //IL_e087: Unknown result type (might be due to invalid IL or missing references) //IL_e08d: Unknown result type (might be due to invalid IL or missing references) //IL_e092: Unknown result type (might be due to invalid IL or missing references) //IL_e098: Unknown result type (might be due to invalid IL or missing references) //IL_e09d: Unknown result type (might be due to invalid IL or missing references) //IL_e0a3: Unknown result type (might be due to invalid IL or missing references) //IL_e0ad: Unknown result type (might be due to invalid IL or missing references) //IL_e0b2: Unknown result type (might be due to invalid IL or missing references) //IL_e0b8: Unknown result type (might be due to invalid IL or missing references) //IL_e0c9: Unknown result type (might be due to invalid IL or missing references) //IL_df36: Unknown result type (might be due to invalid IL or missing references) //IL_df3b: Unknown result type (might be due to invalid IL or missing references) //IL_df40: Unknown result type (might be due to invalid IL or missing references) //IL_df45: Unknown result type (might be due to invalid IL or missing references) //IL_e7cb: Unknown result type (might be due to invalid IL or missing references) //IL_e7d1: Unknown result type (might be due to invalid IL or missing references) //IL_e7d6: Unknown result type (might be due to invalid IL or missing references) //IL_e7dc: Unknown result type (might be due to invalid IL or missing references) //IL_e7e2: Unknown result type (might be due to invalid IL or missing references) //IL_e7e7: Unknown result type (might be due to invalid IL or missing references) //IL_e7f1: Unknown result type (might be due to invalid IL or missing references) //IL_e7f6: Unknown result type (might be due to invalid IL or missing references) //IL_e7fc: Unknown result type (might be due to invalid IL or missing references) //IL_e80d: Unknown result type (might be due to invalid IL or missing references) //IL_e6f5: Unknown result type (might be due to invalid IL or missing references) //IL_e6fb: Unknown result type (might be due to invalid IL or missing references) //IL_e700: Unknown result type (might be due to invalid IL or missing references) //IL_e706: Unknown result type (might be due to invalid IL or missing references) //IL_e70b: Unknown result type (might be due to invalid IL or missing references) //IL_e711: Unknown result type (might be due to invalid IL or missing references) //IL_e71b: Unknown result type (might be due to invalid IL or missing references) //IL_e720: Unknown result type (might be due to invalid IL or missing references) //IL_e726: Unknown result type (might be due to invalid IL or missing references) //IL_e72c: Unknown result type (might be due to invalid IL or missing references) //IL_e736: Unknown result type (might be due to invalid IL or missing references) //IL_e73b: Unknown result type (might be due to invalid IL or missing references) //IL_e74c: Unknown result type (might be due to invalid IL or missing references) //IL_e5c0: Unknown result type (might be due to invalid IL or missing references) //IL_e5c6: Unknown result type (might be due to invalid IL or missing references) //IL_e5cb: Unknown result type (might be due to invalid IL or missing references) //IL_e5d1: Unknown result type (might be due to invalid IL or missing references) //IL_e5db: Unknown result type (might be due to invalid IL or missing references) //IL_e5e0: Unknown result type (might be due to invalid IL or missing references) //IL_e5e6: Unknown result type (might be due to invalid IL or missing references) //IL_e5f0: Unknown result type (might be due to invalid IL or missing references) //IL_e5f5: Unknown result type (might be due to invalid IL or missing references) //IL_e5fb: Unknown result type (might be due to invalid IL or missing references) //IL_e605: Unknown result type (might be due to invalid IL or missing references) //IL_e60a: Unknown result type (might be due to invalid IL or missing references) //IL_e615: Unknown result type (might be due to invalid IL or missing references) //IL_e61b: Unknown result type (might be due to invalid IL or missing references) //IL_e620: Unknown result type (might be due to invalid IL or missing references) //IL_e626: Unknown result type (might be due to invalid IL or missing references) //IL_e630: Unknown result type (might be due to invalid IL or missing references) //IL_e635: Unknown result type (might be due to invalid IL or missing references) //IL_e63b: Unknown result type (might be due to invalid IL or missing references) //IL_e645: Unknown result type (might be due to invalid IL or missing references) //IL_e64a: Unknown result type (might be due to invalid IL or missing references) //IL_e650: Unknown result type (might be due to invalid IL or missing references) //IL_e65a: Unknown result type (might be due to invalid IL or missing references) //IL_e65f: Unknown result type (might be due to invalid IL or missing references) //IL_e66b: Unknown result type (might be due to invalid IL or missing references) //IL_e48b: Unknown result type (might be due to invalid IL or missing references) //IL_e490: Unknown result type (might be due to invalid IL or missing references) //IL_e339: Unknown result type (might be due to invalid IL or missing references) //IL_e33e: Unknown result type (might be due to invalid IL or missing references) //IL_e107: Unknown result type (might be due to invalid IL or missing references) //IL_e10c: Unknown result type (might be due to invalid IL or missing references) //IL_e111: Unknown result type (might be due to invalid IL or missing references) //IL_e116: Unknown result type (might be due to invalid IL or missing references) //IL_e0e5: Unknown result type (might be due to invalid IL or missing references) //IL_e0ea: Unknown result type (might be due to invalid IL or missing references) //IL_e0ef: Unknown result type (might be due to invalid IL or missing references) //IL_e0f4: Unknown result type (might be due to invalid IL or missing references) //IL_e827: Unknown result type (might be due to invalid IL or missing references) //IL_e82c: Unknown result type (might be due to invalid IL or missing references) //IL_e766: Unknown result type (might be due to invalid IL or missing references) //IL_e76b: Unknown result type (might be due to invalid IL or missing references) //IL_e685: Unknown result type (might be due to invalid IL or missing references) //IL_e68a: Unknown result type (might be due to invalid IL or missing references) //IL_e4c5: Unknown result type (might be due to invalid IL or missing references) //IL_e4ca: Unknown result type (might be due to invalid IL or missing references) //IL_e4cf: Unknown result type (might be due to invalid IL or missing references) //IL_e4d4: Unknown result type (might be due to invalid IL or missing references) //IL_e373: Unknown result type (might be due to invalid IL or missing references) //IL_e378: Unknown result type (might be due to invalid IL or missing references) //IL_e37d: Unknown result type (might be due to invalid IL or missing references) //IL_e382: Unknown result type (might be due to invalid IL or missing references) //IL_e897: Unknown result type (might be due to invalid IL or missing references) //IL_e89d: Unknown result type (might be due to invalid IL or missing references) //IL_e8a2: Unknown result type (might be due to invalid IL or missing references) //IL_e8a8: Unknown result type (might be due to invalid IL or missing references) //IL_e8ae: Unknown result type (might be due to invalid IL or missing references) //IL_e8b3: Unknown result type (might be due to invalid IL or missing references) //IL_e8bd: Unknown result type (might be due to invalid IL or missing references) //IL_e8c2: Unknown result type (might be due to invalid IL or missing references) //IL_e8c8: Unknown result type (might be due to invalid IL or missing references) //IL_e8ce: Unknown result type (might be due to invalid IL or missing references) //IL_e8d8: Unknown result type (might be due to invalid IL or missing references) //IL_e8dd: Unknown result type (might be due to invalid IL or missing references) //IL_e8ee: Unknown result type (might be due to invalid IL or missing references) //IL_e861: Unknown result type (might be due to invalid IL or missing references) //IL_e866: Unknown result type (might be due to invalid IL or missing references) //IL_e86b: Unknown result type (might be due to invalid IL or missing references) //IL_e870: Unknown result type (might be due to invalid IL or missing references) //IL_e7a0: Unknown result type (might be due to invalid IL or missing references) //IL_e7a5: Unknown result type (might be due to invalid IL or missing references) //IL_e7aa: Unknown result type (might be due to invalid IL or missing references) //IL_e7af: Unknown result type (might be due to invalid IL or missing references) //IL_e6bf: Unknown result type (might be due to invalid IL or missing references) //IL_e6c4: Unknown result type (might be due to invalid IL or missing references) //IL_e6c9: Unknown result type (might be due to invalid IL or missing references) //IL_e6ce: Unknown result type (might be due to invalid IL or missing references) //IL_e9e9: Unknown result type (might be due to invalid IL or missing references) //IL_e9ef: Unknown result type (might be due to invalid IL or missing references) //IL_e9f4: Unknown result type (might be due to invalid IL or missing references) //IL_e9fa: Unknown result type (might be due to invalid IL or missing references) //IL_ea00: Unknown result type (might be due to invalid IL or missing references) //IL_ea05: Unknown result type (might be due to invalid IL or missing references) //IL_ea0f: Unknown result type (might be due to invalid IL or missing references) //IL_ea14: Unknown result type (might be due to invalid IL or missing references) //IL_ea1a: Unknown result type (might be due to invalid IL or missing references) //IL_ea20: Unknown result type (might be due to invalid IL or missing references) //IL_ea2a: Unknown result type (might be due to invalid IL or missing references) //IL_ea2f: Unknown result type (might be due to invalid IL or missing references) //IL_ea40: Unknown result type (might be due to invalid IL or missing references) //IL_e908: Unknown result type (might be due to invalid IL or missing references) //IL_e90e: Unknown result type (might be due to invalid IL or missing references) //IL_e913: Unknown result type (might be due to invalid IL or missing references) //IL_e919: Unknown result type (might be due to invalid IL or missing references) //IL_e91f: Unknown result type (might be due to invalid IL or missing references) //IL_e924: Unknown result type (might be due to invalid IL or missing references) //IL_e92e: Unknown result type (might be due to invalid IL or missing references) //IL_e933: Unknown result type (might be due to invalid IL or missing references) //IL_e939: Unknown result type (might be due to invalid IL or missing references) //IL_e93f: Unknown result type (might be due to invalid IL or missing references) //IL_e949: Unknown result type (might be due to invalid IL or missing references) //IL_e94e: Unknown result type (might be due to invalid IL or missing references) //IL_e95f: Unknown result type (might be due to invalid IL or missing references) //IL_eb3b: Unknown result type (might be due to invalid IL or missing references) //IL_eb41: Unknown result type (might be due to invalid IL or missing references) //IL_eb46: Unknown result type (might be due to invalid IL or missing references) //IL_eb4c: Unknown result type (might be due to invalid IL or missing references) //IL_eb52: Unknown result type (might be due to invalid IL or missing references) //IL_eb57: Unknown result type (might be due to invalid IL or missing references) //IL_eb61: Unknown result type (might be due to invalid IL or missing references) //IL_eb66: Unknown result type (might be due to invalid IL or missing references) //IL_eb6c: Unknown result type (might be due to invalid IL or missing references) //IL_eb72: Unknown result type (might be due to invalid IL or missing references) //IL_eb7c: Unknown result type (might be due to invalid IL or missing references) //IL_eb81: Unknown result type (might be due to invalid IL or missing references) //IL_eb92: Unknown result type (might be due to invalid IL or missing references) //IL_ea5a: Unknown result type (might be due to invalid IL or missing references) //IL_ea60: Unknown result type (might be due to invalid IL or missing references) //IL_ea65: Unknown result type (might be due to invalid IL or missing references) //IL_ea6b: Unknown result type (might be due to invalid IL or missing references) //IL_ea71: Unknown result type (might be due to invalid IL or missing references) //IL_ea76: Unknown result type (might be due to invalid IL or missing references) //IL_ea80: Unknown result type (might be due to invalid IL or missing references) //IL_ea85: Unknown result type (might be due to invalid IL or missing references) //IL_ea8b: Unknown result type (might be due to invalid IL or missing references) //IL_ea91: Unknown result type (might be due to invalid IL or missing references) //IL_ea9b: Unknown result type (might be due to invalid IL or missing references) //IL_eaa0: Unknown result type (might be due to invalid IL or missing references) //IL_eab1: Unknown result type (might be due to invalid IL or missing references) //IL_e979: Unknown result type (might be due to invalid IL or missing references) //IL_e97e: Unknown result type (might be due to invalid IL or missing references) //IL_ebac: Unknown result type (might be due to invalid IL or missing references) //IL_ebb1: Unknown result type (might be due to invalid IL or missing references) //IL_eacb: Unknown result type (might be due to invalid IL or missing references) //IL_ead0: Unknown result type (might be due to invalid IL or missing references) //IL_e9b3: Unknown result type (might be due to invalid IL or missing references) //IL_e9b8: Unknown result type (might be due to invalid IL or missing references) //IL_e9bd: Unknown result type (might be due to invalid IL or missing references) //IL_e9c2: Unknown result type (might be due to invalid IL or missing references) //IL_ee53: Unknown result type (might be due to invalid IL or missing references) //IL_ee59: Unknown result type (might be due to invalid IL or missing references) //IL_ee5e: Unknown result type (might be due to invalid IL or missing references) //IL_ee64: Unknown result type (might be due to invalid IL or missing references) //IL_ee6e: Unknown result type (might be due to invalid IL or missing references) //IL_ee73: Unknown result type (might be due to invalid IL or missing references) //IL_ee79: Unknown result type (might be due to invalid IL or missing references) //IL_ee83: Unknown result type (might be due to invalid IL or missing references) //IL_ee88: Unknown result type (might be due to invalid IL or missing references) //IL_ee8e: Unknown result type (might be due to invalid IL or missing references) //IL_ee98: Unknown result type (might be due to invalid IL or missing references) //IL_ee9d: Unknown result type (might be due to invalid IL or missing references) //IL_eea8: Unknown result type (might be due to invalid IL or missing references) //IL_eeae: Unknown result type (might be due to invalid IL or missing references) //IL_eeb3: Unknown result type (might be due to invalid IL or missing references) //IL_eeb9: Unknown result type (might be due to invalid IL or missing references) //IL_eec3: Unknown result type (might be due to invalid IL or missing references) //IL_eec8: Unknown result type (might be due to invalid IL or missing references) //IL_eece: Unknown result type (might be due to invalid IL or missing references) //IL_eed8: Unknown result type (might be due to invalid IL or missing references) //IL_eedd: Unknown result type (might be due to invalid IL or missing references) //IL_eee3: Unknown result type (might be due to invalid IL or missing references) //IL_eeed: Unknown result type (might be due to invalid IL or missing references) //IL_eef2: Unknown result type (might be due to invalid IL or missing references) //IL_eefe: Unknown result type (might be due to invalid IL or missing references) //IL_ec27: Unknown result type (might be due to invalid IL or missing references) //IL_ec2d: Unknown result type (might be due to invalid IL or missing references) //IL_ec32: Unknown result type (might be due to invalid IL or missing references) //IL_ec38: Unknown result type (might be due to invalid IL or missing references) //IL_ec3e: Unknown result type (might be due to invalid IL or missing references) //IL_ec43: Unknown result type (might be due to invalid IL or missing references) //IL_ec4d: Unknown result type (might be due to invalid IL or missing references) //IL_ec52: Unknown result type (might be due to invalid IL or missing references) //IL_ec58: Unknown result type (might be due to invalid IL or missing references) //IL_ec62: Unknown result type (might be due to invalid IL or missing references) //IL_ec68: Unknown result type (might be due to invalid IL or missing references) //IL_ec72: Unknown result type (might be due to invalid IL or missing references) //IL_ec77: Unknown result type (might be due to invalid IL or missing references) //IL_ec7d: Unknown result type (might be due to invalid IL or missing references) //IL_ec83: Unknown result type (might be due to invalid IL or missing references) //IL_ec88: Unknown result type (might be due to invalid IL or missing references) //IL_ec92: Unknown result type (might be due to invalid IL or missing references) //IL_ec97: Unknown result type (might be due to invalid IL or missing references) //IL_eca8: Unknown result type (might be due to invalid IL or missing references) //IL_ebe6: Unknown result type (might be due to invalid IL or missing references) //IL_ebeb: Unknown result type (might be due to invalid IL or missing references) //IL_ebf0: Unknown result type (might be due to invalid IL or missing references) //IL_ebf5: Unknown result type (might be due to invalid IL or missing references) //IL_eb05: Unknown result type (might be due to invalid IL or missing references) //IL_eb0a: Unknown result type (might be due to invalid IL or missing references) //IL_eb0f: Unknown result type (might be due to invalid IL or missing references) //IL_eb14: Unknown result type (might be due to invalid IL or missing references) //IL_ef7d: Unknown result type (might be due to invalid IL or missing references) //IL_ef83: Unknown result type (might be due to invalid IL or missing references) //IL_ef88: Unknown result type (might be due to invalid IL or missing references) //IL_ef8e: Unknown result type (might be due to invalid IL or missing references) //IL_ef98: Unknown result type (might be due to invalid IL or missing references) //IL_ef9d: Unknown result type (might be due to invalid IL or missing references) //IL_efa3: Unknown result type (might be due to invalid IL or missing references) //IL_efad: Unknown result type (might be due to invalid IL or missing references) //IL_efb2: Unknown result type (might be due to invalid IL or missing references) //IL_efb8: Unknown result type (might be due to invalid IL or missing references) //IL_efc2: Unknown result type (might be due to invalid IL or missing references) //IL_efc7: Unknown result type (might be due to invalid IL or missing references) //IL_efd2: Unknown result type (might be due to invalid IL or missing references) //IL_efd8: Unknown result type (might be due to invalid IL or missing references) //IL_efdd: Unknown result type (might be due to invalid IL or missing references) //IL_efe3: Unknown result type (might be due to invalid IL or missing references) //IL_efed: Unknown result type (might be due to invalid IL or missing references) //IL_eff2: Unknown result type (might be due to invalid IL or missing references) //IL_eff8: Unknown result type (might be due to invalid IL or missing references) //IL_f002: Unknown result type (might be due to invalid IL or missing references) //IL_f007: Unknown result type (might be due to invalid IL or missing references) //IL_f00d: Unknown result type (might be due to invalid IL or missing references) //IL_f017: Unknown result type (might be due to invalid IL or missing references) //IL_f01c: Unknown result type (might be due to invalid IL or missing references) //IL_f028: Unknown result type (might be due to invalid IL or missing references) //IL_ef18: Unknown result type (might be due to invalid IL or missing references) //IL_ef1d: Unknown result type (might be due to invalid IL or missing references) //IL_ed48: Unknown result type (might be due to invalid IL or missing references) //IL_ed4e: Unknown result type (might be due to invalid IL or missing references) //IL_ed53: Unknown result type (might be due to invalid IL or missing references) //IL_ed59: Unknown result type (might be due to invalid IL or missing references) //IL_ed5f: Unknown result type (might be due to invalid IL or missing references) //IL_ed64: Unknown result type (might be due to invalid IL or missing references) //IL_ed6e: Unknown result type (might be due to invalid IL or missing references) //IL_ed73: Unknown result type (might be due to invalid IL or missing references) //IL_ed79: Unknown result type (might be due to invalid IL or missing references) //IL_ed83: Unknown result type (might be due to invalid IL or missing references) //IL_ed89: Unknown result type (might be due to invalid IL or missing references) //IL_ed93: Unknown result type (might be due to invalid IL or missing references) //IL_ed98: Unknown result type (might be due to invalid IL or missing references) //IL_ed9e: Unknown result type (might be due to invalid IL or missing references) //IL_eda4: Unknown result type (might be due to invalid IL or missing references) //IL_eda9: Unknown result type (might be due to invalid IL or missing references) //IL_edb3: Unknown result type (might be due to invalid IL or missing references) //IL_edb8: Unknown result type (might be due to invalid IL or missing references) //IL_edc9: Unknown result type (might be due to invalid IL or missing references) //IL_f0a7: Unknown result type (might be due to invalid IL or missing references) //IL_f0ad: Unknown result type (might be due to invalid IL or missing references) //IL_f0b2: Unknown result type (might be due to invalid IL or missing references) //IL_f0b8: Unknown result type (might be due to invalid IL or missing references) //IL_f0c2: Unknown result type (might be due to invalid IL or missing references) //IL_f0c7: Unknown result type (might be due to invalid IL or missing references) //IL_f0cd: Unknown result type (might be due to invalid IL or missing references) //IL_f0d7: Unknown result type (might be due to invalid IL or missing references) //IL_f0dc: Unknown result type (might be due to invalid IL or missing references) //IL_f0e2: Unknown result type (might be due to invalid IL or missing references) //IL_f0ec: Unknown result type (might be due to invalid IL or missing references) //IL_f0f1: Unknown result type (might be due to invalid IL or missing references) //IL_f0fc: Unknown result type (might be due to invalid IL or missing references) //IL_f102: Unknown result type (might be due to invalid IL or missing references) //IL_f107: Unknown result type (might be due to invalid IL or missing references) //IL_f10d: Unknown result type (might be due to invalid IL or missing references) //IL_f117: Unknown result type (might be due to invalid IL or missing references) //IL_f11c: Unknown result type (might be due to invalid IL or missing references) //IL_f122: Unknown result type (might be due to invalid IL or missing references) //IL_f12c: Unknown result type (might be due to invalid IL or missing references) //IL_f131: Unknown result type (might be due to invalid IL or missing references) //IL_f137: Unknown result type (might be due to invalid IL or missing references) //IL_f141: Unknown result type (might be due to invalid IL or missing references) //IL_f146: Unknown result type (might be due to invalid IL or missing references) //IL_f152: Unknown result type (might be due to invalid IL or missing references) //IL_f042: Unknown result type (might be due to invalid IL or missing references) //IL_f047: Unknown result type (might be due to invalid IL or missing references) //IL_ef52: Unknown result type (might be due to invalid IL or missing references) //IL_ef57: Unknown result type (might be due to invalid IL or missing references) //IL_ef5c: Unknown result type (might be due to invalid IL or missing references) //IL_ef61: Unknown result type (might be due to invalid IL or missing references) //IL_eccd: Unknown result type (might be due to invalid IL or missing references) //IL_ecd2: Unknown result type (might be due to invalid IL or missing references) //IL_f1d1: Unknown result type (might be due to invalid IL or missing references) //IL_f1d7: Unknown result type (might be due to invalid IL or missing references) //IL_f1dc: Unknown result type (might be due to invalid IL or missing references) //IL_f1e2: Unknown result type (might be due to invalid IL or missing references) //IL_f1ec: Unknown result type (might be due to invalid IL or missing references) //IL_f1f1: Unknown result type (might be due to invalid IL or missing references) //IL_f1f7: Unknown result type (might be due to invalid IL or missing references) //IL_f201: Unknown result type (might be due to invalid IL or missing references) //IL_f206: Unknown result type (might be due to invalid IL or missing references) //IL_f20c: Unknown result type (might be due to invalid IL or missing references) //IL_f216: Unknown result type (might be due to invalid IL or missing references) //IL_f21b: Unknown result type (might be due to invalid IL or missing references) //IL_f226: Unknown result type (might be due to invalid IL or missing references) //IL_f22c: Unknown result type (might be due to invalid IL or missing references) //IL_f231: Unknown result type (might be due to invalid IL or missing references) //IL_f237: Unknown result type (might be due to invalid IL or missing references) //IL_f241: Unknown result type (might be due to invalid IL or missing references) //IL_f246: Unknown result type (might be due to invalid IL or missing references) //IL_f24c: Unknown result type (might be due to invalid IL or missing references) //IL_f256: Unknown result type (might be due to invalid IL or missing references) //IL_f25b: Unknown result type (might be due to invalid IL or missing references) //IL_f261: Unknown result type (might be due to invalid IL or missing references) //IL_f26b: Unknown result type (might be due to invalid IL or missing references) //IL_f270: Unknown result type (might be due to invalid IL or missing references) //IL_f27c: Unknown result type (might be due to invalid IL or missing references) //IL_f16c: Unknown result type (might be due to invalid IL or missing references) //IL_f171: Unknown result type (might be due to invalid IL or missing references) //IL_f07c: Unknown result type (might be due to invalid IL or missing references) //IL_f081: Unknown result type (might be due to invalid IL or missing references) //IL_f086: Unknown result type (might be due to invalid IL or missing references) //IL_f08b: Unknown result type (might be due to invalid IL or missing references) //IL_edee: Unknown result type (might be due to invalid IL or missing references) //IL_edf3: Unknown result type (might be due to invalid IL or missing references) //IL_ed07: Unknown result type (might be due to invalid IL or missing references) //IL_ed0c: Unknown result type (might be due to invalid IL or missing references) //IL_ed11: Unknown result type (might be due to invalid IL or missing references) //IL_ed16: Unknown result type (might be due to invalid IL or missing references) //IL_f296: Unknown result type (might be due to invalid IL or missing references) //IL_f29b: Unknown result type (might be due to invalid IL or missing references) //IL_f1a6: Unknown result type (might be due to invalid IL or missing references) //IL_f1ab: Unknown result type (might be due to invalid IL or missing references) //IL_f1b0: Unknown result type (might be due to invalid IL or missing references) //IL_f1b5: Unknown result type (might be due to invalid IL or missing references) //IL_ee28: Unknown result type (might be due to invalid IL or missing references) //IL_ee2d: Unknown result type (might be due to invalid IL or missing references) //IL_ee32: Unknown result type (might be due to invalid IL or missing references) //IL_ee37: Unknown result type (might be due to invalid IL or missing references) //IL_f2d0: Unknown result type (might be due to invalid IL or missing references) //IL_f2d5: Unknown result type (might be due to invalid IL or missing references) //IL_f2da: Unknown result type (might be due to invalid IL or missing references) //IL_f2df: Unknown result type (might be due to invalid IL or missing references) noCollisionTimer += 1f; if (inheritScale) { height2 = ((Component)this).transform.localScale.y; width2 = ((Component)this).transform.localScale.x; length2 = ((Component)this).transform.localScale.z; } onLedgeHeight2 = onLedgeHeight + 0.06f; height2 = overallScaleOfDetectors.height; length2 = overallScaleOfDetectors.length * 0.77f; width2 = overallScaleOfDetectors.width * 0.77f; posChange1 = ((Component)this).transform.up * overallPositionOfDetectors.upDistance + ((Component)this).transform.forward * overallPositionOfDetectors.forwardDistance + ((Component)this).transform.right * overallPositionOfDetectors.sideDistance; posChange2 = ((Component)this).transform.up * overallPositionOfDetectors.upDistance - ((Component)this).transform.up * onLedgeHeight2 / 10f + ((Component)this).transform.forward * overallPositionOfDetectors.forwardDistance + ((Component)this).transform.right * overallPositionOfDetectors.sideDistance; midSidePosChange = heightOfMidSideDetectors2 * (height2 + (height2 - 1f) * 0.25f); upHeight = ((Component)this).transform.up * height2; forwardLength = ((Component)this).transform.forward * length2; rightWidth = ((Component)this).transform.right * width2; ledgeSwitchHeight = upHeight * (wallInFrontDetectorHeight2 + 1f); ledgeSwitchSurfaceLength = forwardLength * (surfaceDetectorLength2 + 1f); ledgeSwitchFirstNoSurfaceLength = forwardLength * (surfaceDetectorLength2 + firstNoSurfaceDetectorLength2 + 1f); ledgeSwitchSecondNoSurfaceLength = forwardLength * (surfaceDetectorLength2 + secondNoSurfaceDetectorLength2 + 1f); ledgeSwitchThirdNoSurfaceLength = forwardLength * (surfaceDetectorLength2 + thirdNoSurfaceDetectorLength2 + 1f); ledgeSwitchFirstWidthBack = (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2 + 1f) / (2f + (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2)); ledgeSwitchFirstWidthForward = (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2 + 1f) / (2f + (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2)); ledgeSwitchSecondWidthForward = (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2 + 1f) / (2f + (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2)); ledgeSwitchSecondWidthBack = (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2 + 1f) / (2f + (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2)); ledgeSwitchThirdWidthForward = (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2 + 1f) / (2f + (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2)); ledgeSwitchThirdWidthBack = (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2 + 1f) / (2f + (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2)); jumpLandingEffect2 = walkingOffLedgeDetectors.jumpLandingEffect; hit = default(RaycastHit); if (((climbable || climbPossible) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight, new Vector3(((Component)this).transform.position.x, playerPosY + onLedgeHeight2 / 10f, ((Component)this).transform.position.z) + posChange1 - upHeight / 3f + minDistFromGroundHeight2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2, new Vector3(((Component)this).transform.position.x, playerPosY + onLedgeHeight2 / 10f, ((Component)this).transform.position.z) + posChange1 - upHeight / 3f + minDistFromGroundHeight2 - rightWidth / 4f - minDistFromGroundWidth2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2, new Vector3(((Component)this).transform.position.x, playerPosY + onLedgeHeight2 / 10f, ((Component)this).transform.position.z) + posChange1 - upHeight / 3f + minDistFromGroundHeight2 + rightWidth / 4f + minDistFromGroundWidth2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10)) || grabbedOn) { currentStatesOfVariables.ledgeGrabPossible = true; } else { currentStatesOfVariables.ledgeGrabPossible = false; canGrabBackOn = true; } if (climbable && climbableL && climbableR && !Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight, ((Component)this).transform.position + posChange2 + upHeight * 2.5f + spaceAboveHeadNeededToClimbUp2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10)) { currentStatesOfVariables.climbUpPossible = true; } else { currentStatesOfVariables.climbUpPossible = false; } if (!left || !leftMovable) { if (angledLeft || leftBlocked || sL || stuckToLeft) { currentStatesOfVariables.leftMovementPossible = false; } else { currentStatesOfVariables.leftMovementPossible = true; } } else { currentStatesOfVariables.leftMovementPossible = true; } if (!right || !rightMovable) { if (angledRight || rightBlocked || sR || stuckToRight) { currentStatesOfVariables.rightMovementPossible = false; } else { currentStatesOfVariables.rightMovementPossible = true; } } else { currentStatesOfVariables.rightMovementPossible = true; } currentStatesOfVariables.currentlyOnLedge = grabbedOn; if (grabbedOn || turnBack || back2) { canGrabBackOn = false; } if (pullingUp) { canGrabBackOn = true; } if (Physics.Raycast(((Component)this).transform.position + midSidePosChange + midSidePosChange + posChange2 + upHeight * 2.5f + forwardLength / 1.75f, -upHeight * 0.9f, ref hit, 5f, LayerMask.op_Implicit(collisionLayers))) { angle = Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f; } else { angle = 90f; } if (!Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + forwardLength / 1.75f + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + forwardLength / 1.75f + maxSurfaceLevelHeight2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && !Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 2.2f + maxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + forwardLength / 1.75f + maxSurfaceLevelHeight2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && !Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 1.5f + forwardLength / 1.7f + underPlatformMaxSurfaceLevelHeight2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && !Physics.Linecast(((Component)this).transform.position + posChange2 - forwardLength / 20f, ((Component)this).transform.position + posChange2 - forwardLength / 20f + upHeight * 1.5f + spaceAboveHeadNeededToGrabOn2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 2.2f + forwardLength / 1.75f + maxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f + forwardLength / 1.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit) { if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f <= 89f || Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 91f) { if (angle <= ledgeAngleLimit) { climbPossible = true; playerPosY = ((RaycastHit)(ref hit)).point.y - height2 * 1.25f; if (grabbedOn && playerPosY + onLedgeHeight2 / 10f != 0f) { ((Component)this).transform.position = new Vector3(((Component)this).transform.position.x, playerPosY + onLedgeHeight2 / 10f, ((Component)this).transform.position.z); } } } else { climbPossible = false; } } else if (!Physics.Linecast(((Component)this).transform.position + posChange2 - forwardLength / 20f, ((Component)this).transform.position + posChange2 - forwardLength / 20f + upHeight * 1.5f + spaceAboveHeadNeededToGrabOn2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && !Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 1.5f + forwardLength / 1.7f + underPlatformMaxSurfaceLevelHeight2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + forwardLength / 1.7f + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f + forwardLength / 1.7f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit) { if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f <= 89f || Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 91f) { if (angle <= ledgeAngleLimit) { climbPossible = true; playerPosY = ((RaycastHit)(ref hit)).point.y - height2 * 1.25f; if (grabbedOn && playerPosY + onLedgeHeight2 / 10f != 0f) { ((Component)this).transform.position = new Vector3(((Component)this).transform.position.x, playerPosY + onLedgeHeight2 / 10f, ((Component)this).transform.position.z); } } } else { climbPossible = false; } } else { climbPossible = false; if (!grabbedOn && !pullingUp && !turnBack && !back2) { if (Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight / 2f + forwardLength / 1.52f + upHeight * 0.9f + (ledgeDetectorHeight2 * (0.65f - topOfLedgeSurfaceDetectorHeight2 * 0.59f) + ledgeDetectorForward2 * (0.65f - topOfLedgeSurfaceDetectorHeight2 * 0.59f) + rodHoldingLedgeDetectorHeight2 + rodHoldingLedgeDetectorForward2 + ((Component)this).transform.forward * (topOfLedgeSurfaceDetectorHeight2 * length2) * 0.14f + ((Component)this).transform.up * (topOfLedgeSurfaceDetectorHeight2 * height2)), ((Component)this).transform.position + posChange2 + upHeight * 0.8f + forwardLength / 1.75f + (ledgeDetectorHeight2 + ledgeDetectorForward2 + rodHoldingLedgeDetectorHeight2 + rodHoldingLedgeDetectorForward2), ref hit, LayerMask.op_Implicit(collisionLayers)) && angle <= ledgeAngleLimit) { playerPosY = ((RaycastHit)(ref hit)).point.y - height2 * 1.25f; } else { playerPosY = ((Component)this).transform.position.y - 1f * height2; } } } if (!Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + forwardLength / 1.75f + underPlatformMaxSurfaceLevelHeight2 - rightWidth / 10f, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + forwardLength / 1.75f + maxSurfaceLevelHeight2 - rightWidth / 10f, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && !Physics.Linecast(((Component)this).transform.position + posChange2 - forwardLength / 20f - rightWidth / 10f, ((Component)this).transform.position + posChange2 - forwardLength / 20f + upHeight * 1.5f + spaceAboveHeadNeededToGrabOn2 - rightWidth / 10f, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 2.2f + forwardLength / 1.75f + maxSurfaceLevelHeight2 - rightWidth / 10f, ((Component)this).transform.position + posChange2 + upHeight * 0.8f + forwardLength / 1.75f - rightWidth / 10f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit) { if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f <= 89f || Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 91f) { climbPossibleL = true; } } else if (!Physics.Linecast(((Component)this).transform.position + posChange2 - forwardLength / 20f - rightWidth / 10f, ((Component)this).transform.position + posChange2 - forwardLength / 20f + upHeight * 1.5f + spaceAboveHeadNeededToGrabOn2 - rightWidth / 10f, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + forwardLength / 1.7f + underPlatformMaxSurfaceLevelHeight2 - rightWidth / 10f, ((Component)this).transform.position + posChange2 + upHeight * 0.8f + forwardLength / 1.7f - rightWidth / 10f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit) { if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f <= 89f || Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 91f) { climbPossibleL = true; } } else { climbPossibleL = false; } if (!Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + forwardLength / 1.75f + underPlatformMaxSurfaceLevelHeight2 + rightWidth / 10f, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + forwardLength / 1.75f + maxSurfaceLevelHeight2 + rightWidth / 10f, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && !Physics.Linecast(((Component)this).transform.position + posChange2 - forwardLength / 20f + rightWidth / 10f, ((Component)this).transform.position + posChange2 - forwardLength / 20f + upHeight * 1.5f + spaceAboveHeadNeededToGrabOn2 + rightWidth / 10f, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 2.2f + forwardLength / 1.75f + maxSurfaceLevelHeight2 + rightWidth / 10f, ((Component)this).transform.position + posChange2 + upHeight * 0.8f + forwardLength / 1.75f + rightWidth / 10f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit) { if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f <= 89f || Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 91f) { climbPossibleR = true; } } else if (!Physics.Linecast(((Component)this).transform.position + posChange2 - forwardLength / 20f + rightWidth / 10f, ((Component)this).transform.position + posChange2 - forwardLength / 20f + upHeight * 1.5f + spaceAboveHeadNeededToGrabOn2 + rightWidth / 10f, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + forwardLength / 1.7f + underPlatformMaxSurfaceLevelHeight2 + rightWidth / 10f, ((Component)this).transform.position + posChange2 + upHeight * 0.8f + forwardLength / 1.7f + rightWidth / 10f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit) { if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f <= 89f || Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 91f) { climbPossibleR = true; } } else { climbPossibleR = false; } if (Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight - rightWidth / 10f, ((Component)this).transform.position + posChange2 + upHeight * 2f + forwardLength / 1.7f - rightWidth / 4f + midSideWallDetectorsForward2 - midSideWallDetectorsWidth2, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight - rightWidth / 10f, ((Component)this).transform.position + posChange2 + upHeight * 2f - rightWidth - sideWallDetectorsWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { if (Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f - rightWidth / 4f + frontSideBlockageDetectorsHeight2 - frontSideBlockageDetectorsWidth2, ((Component)this).transform.position + posChange2 + upHeight * 1.5f + forwardLength * 1.2f - rightWidth / 4f + frontSideBlockageDetectorsForward2 + frontSideBlockageDetectorsHeight2 - frontSideBlockageDetectorsWidth2, ref hit, LayerMask.op_Implicit(collisionLayers)) || !Physics.Raycast(((Component)this).transform.position + midSidePosChange + midSidePosChange + posChange2 + upHeight * 1.5f + forwardLength / 1.6f - rightWidth / 4f, upHeight, ref hit, 2f, LayerMask.op_Implicit(collisionLayers) | 0x10) || !Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + forwardLength / 1.6f - rightWidth / 4f + frontSideBlockageDetectorsHeight2 - frontSideBlockageDetectorsWidth2 + aboveHeadPlatformDetectorsForward2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + forwardLength / 1.25f - rightWidth / 4f + frontSideBlockageDetectorsHeight2 - frontSideBlockageDetectorsWidth2 + aboveHeadPlatformDetectorsForward2 + aboveHeadPlatformDetectorsHeight2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10)) { leftMovable = false; } else { leftMovable = true; } } else { leftMovable = true; } if (Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight + rightWidth / 10f, ((Component)this).transform.position + posChange2 + upHeight * 2f + forwardLength / 1.7f + rightWidth / 4f + midSideWallDetectorsForward2 + midSideWallDetectorsWidth2, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight + rightWidth / 10f, ((Component)this).transform.position + posChange2 + upHeight * 2f + rightWidth + sideWallDetectorsWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { if (Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + rightWidth / 4f + frontSideBlockageDetectorsHeight2 + frontSideBlockageDetectorsWidth2, ((Component)this).transform.position + posChange2 + upHeight * 1.5f + forwardLength * 1.2f + rightWidth / 4f + frontSideBlockageDetectorsForward2 + frontSideBlockageDetectorsHeight2 + frontSideBlockageDetectorsWidth2, ref hit, LayerMask.op_Implicit(collisionLayers)) || !Physics.Raycast(((Component)this).transform.position + midSidePosChange + midSidePosChange + posChange2 + upHeight * 1.5f + forwardLength / 1.6f + rightWidth / 4f, upHeight, ref hit, 2f, LayerMask.op_Implicit(collisionLayers) | 0x10) || !Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + forwardLength / 1.6f + rightWidth / 4f + frontSideBlockageDetectorsHeight2 + frontSideBlockageDetectorsWidth2 + aboveHeadPlatformDetectorsForward2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + forwardLength / 1.25f + rightWidth / 4f + frontSideBlockageDetectorsHeight2 + frontSideBlockageDetectorsWidth2 + aboveHeadPlatformDetectorsForward2 + aboveHeadPlatformDetectorsHeight2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10)) { rightMovable = false; } else { rightMovable = true; } } else { rightMovable = true; } if (grabbedOn && (!switching || !ledgeSwitchingDetectors.allowLedgeSwitching) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight - rightWidth / 10f + preventRotatingToSideWallHeight2, ((Component)this).transform.position + posChange2 + upHeight - rightWidth * 1.35f + preventRotatingToSideWallHeight2 - preventRotatingToSideWallWidth2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.25f - rightWidth / 10f + preventRotatingToSideWallHeight2, ((Component)this).transform.position + posChange2 + upHeight * 1.25f - rightWidth * 1.35f + preventRotatingToSideWallHeight2 - preventRotatingToSideWallWidth2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f - rightWidth / 10f + preventRotatingToSideWallHeight2, ((Component)this).transform.position + posChange2 + upHeight * 1.5f - rightWidth * 1.35f + preventRotatingToSideWallHeight2 - preventRotatingToSideWallWidth2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.75f - rightWidth / 10f + preventRotatingToSideWallHeight2, ((Component)this).transform.position + posChange2 + upHeight * 1.75f - rightWidth * 1.35f + preventRotatingToSideWallHeight2 - preventRotatingToSideWallWidth2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.75f - rightWidth + preventRotatingToSideWallHeight2 - preventRotatingToSideWallWidth2 - secondAllowRotatingIfLedgeHitWidth2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f - rightWidth + preventRotatingToSideWallHeight2 - preventRotatingToSideWallWidth2 - secondAllowRotatingIfLedgeHitWidth2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && !Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.75f - rightWidth / 1.5f + preventRotatingToSideWallHeight2 - preventRotatingToSideWallWidth2 - firstAllowRotatingIfLedgeHitWidth2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f - rightWidth / 1.5f + preventRotatingToSideWallHeight2 - preventRotatingToSideWallWidth2 - firstAllowRotatingIfLedgeHitWidth2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10)) { leftBlocked = true; } else if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit) { leftBlocked = false; } if (grabbedOn && (!switching || !ledgeSwitchingDetectors.allowLedgeSwitching) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight + rightWidth / 10f + preventRotatingToSideWallHeight2, ((Component)this).transform.position + posChange2 + upHeight + rightWidth * 1.35f + preventRotatingToSideWallHeight2 + preventRotatingToSideWallWidth2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.25f + rightWidth / 10f + preventRotatingToSideWallHeight2, ((Component)this).transform.position + posChange2 + upHeight * 1.25f + rightWidth * 1.35f + preventRotatingToSideWallHeight2 + preventRotatingToSideWallWidth2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + rightWidth / 10f + preventRotatingToSideWallHeight2, ((Component)this).transform.position + posChange2 + upHeight * 1.5f + rightWidth * 1.35f + preventRotatingToSideWallHeight2 + preventRotatingToSideWallWidth2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.75f + rightWidth / 10f + preventRotatingToSideWallHeight2, ((Component)this).transform.position + posChange2 + upHeight * 1.75f + rightWidth * 1.35f + preventRotatingToSideWallHeight2 + preventRotatingToSideWallWidth2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.75f + rightWidth + preventRotatingToSideWallHeight2 + preventRotatingToSideWallWidth2 + secondAllowRotatingIfLedgeHitWidth2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f + rightWidth + preventRotatingToSideWallHeight2 + preventRotatingToSideWallWidth2 + secondAllowRotatingIfLedgeHitWidth2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && !Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.75f + rightWidth / 1.5f + preventRotatingToSideWallHeight2 + preventRotatingToSideWallWidth2 + firstAllowRotatingIfLedgeHitWidth2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f + rightWidth / 1.5f + preventRotatingToSideWallHeight2 + preventRotatingToSideWallWidth2 + firstAllowRotatingIfLedgeHitWidth2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10)) { rightBlocked = true; } else if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit) { rightBlocked = false; } if (!Physics.Linecast(((Component)this).transform.position + posChange1 + (((Component)this).transform.up + nonLedgeSurfaceDetectorsHeight2) * height2 * 0.3f, ((Component)this).transform.position + posChange1 + (((Component)this).transform.up + nonLedgeSurfaceDetectorsHeight2) * height2 * 0.1f + forwardLength + nonLedgeSurfaceDetectorsForward2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) || Physics.Linecast(((Component)this).transform.position + posChange1 + (((Component)this).transform.up + nonLedgeSurfaceDetectorsHeight2) * height2 * 0.6f, ((Component)this).transform.position + posChange1 + (((Component)this).transform.up + nonLedgeSurfaceDetectorsHeight2) * height2 * 0.6f + forwardLength / 2.5f + nonLedgeSurfaceDetectorsForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(((Component)this).transform.position + posChange1 + (((Component)this).transform.up + nonLedgeSurfaceDetectorsHeight2) * height2 * 0.8f, ((Component)this).transform.position + posChange1 + (((Component)this).transform.up + nonLedgeSurfaceDetectorsHeight2) * height2 * 0.8f + forwardLength / 2.3f + nonLedgeSurfaceDetectorsForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) || grabbedOn) { if (Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight, ((Component)this).transform.position + posChange2 + upHeight + forwardLength / 1.25f + upHeight * 1.5f + (rodHoldingLedgeDetectorHeight2 + rodHoldingLedgeDetectorForward2), ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight + forwardLength / 1.25f + upHeight * 1.5f + (rodHoldingLedgeDetectorHeight2 + rodHoldingLedgeDetectorForward2), ((Component)this).transform.position + posChange2 + upHeight + forwardLength + upHeight * 1.25f + (rodHoldingLedgeDetectorHeight2 + rodHoldingLedgeDetectorForward2), ref hit, LayerMask.op_Implicit(collisionLayers))) { climbable = false; } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight / 2f + forwardLength / 1.52f + upHeight * 0.9f + (ledgeDetectorHeight2 * (0.65f - topOfLedgeSurfaceDetectorHeight2 * 0.59f) + ledgeDetectorForward2 * (0.65f - topOfLedgeSurfaceDetectorHeight2 * 0.59f) + rodHoldingLedgeDetectorHeight2 + rodHoldingLedgeDetectorForward2 + ((Component)this).transform.forward * (topOfLedgeSurfaceDetectorHeight2 * length2) * 0.14f + ((Component)this).transform.up * (topOfLedgeSurfaceDetectorHeight2 * height2)), ((Component)this).transform.position + posChange2 + upHeight * 0.8f + forwardLength / 1.75f + (ledgeDetectorHeight2 + ledgeDetectorForward2 + rodHoldingLedgeDetectorHeight2 + rodHoldingLedgeDetectorForward2), ref hit, LayerMask.op_Implicit(collisionLayers)) && angle <= ledgeAngleLimit) { climbable = true; hitPoint = ((RaycastHit)(ref hit)).point; } else { climbable = false; } if (Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight - rightWidth / 4f, ((Component)this).transform.position + posChange2 + upHeight + forwardLength / 1.25f + upHeight * 1.5f + (rodHoldingLedgeDetectorHeight2 + rodHoldingLedgeDetectorForward2) - rightWidth / 4f, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight + forwardLength / 1.25f + upHeight * 1.5f + (rodHoldingLedgeDetectorHeight2 + rodHoldingLedgeDetectorForward2) - rightWidth / 4f, ((Component)this).transform.position + posChange2 + upHeight + forwardLength + upHeight * 1.25f + (rodHoldingLedgeDetectorHeight2 + rodHoldingLedgeDetectorForward2) - rightWidth / 4f, ref hit, LayerMask.op_Implicit(collisionLayers))) { climbableL = false; } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight / 2f + forwardLength / 1.52f + upHeight * 0.9f + (ledgeDetectorHeight2 * (0.65f - topOfLedgeSurfaceDetectorHeight2 * 0.59f) + ledgeDetectorForward2 * (0.65f - topOfLedgeSurfaceDetectorHeight2 * 0.59f) + rodHoldingLedgeDetectorHeight2 + rodHoldingLedgeDetectorForward2 + ((Component)this).transform.forward * (topOfLedgeSurfaceDetectorHeight2 * length2) * 0.14f + ((Component)this).transform.up * (topOfLedgeSurfaceDetectorHeight2 * height2)) - rightWidth / 4f, ((Component)this).transform.position + posChange2 + upHeight * 0.8f + forwardLength / 1.75f + (ledgeDetectorHeight2 + ledgeDetectorForward2 + rodHoldingLedgeDetectorHeight2 + rodHoldingLedgeDetectorForward2) - rightWidth / 4f, ref hit, LayerMask.op_Implicit(collisionLayers)) && angle <= ledgeAngleLimit) { climbableL = true; } else { climbableL = false; } if (Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight + rightWidth / 4f, ((Component)this).transform.position + posChange2 + upHeight + forwardLength / 1.25f + upHeight * 1.5f + (rodHoldingLedgeDetectorHeight2 + rodHoldingLedgeDetectorForward2) + rightWidth / 4f, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight + forwardLength / 1.25f + upHeight * 1.5f + (rodHoldingLedgeDetectorHeight2 + rodHoldingLedgeDetectorForward2) + rightWidth / 4f, ((Component)this).transform.position + posChange2 + upHeight + forwardLength + upHeight * 1.25f + (rodHoldingLedgeDetectorHeight2 + rodHoldingLedgeDetectorForward2) + rightWidth / 4f, ref hit, LayerMask.op_Implicit(collisionLayers))) { climbableR = false; } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight / 2f + forwardLength / 1.52f + upHeight * 0.9f + (ledgeDetectorHeight2 * (0.65f - topOfLedgeSurfaceDetectorHeight2 * 0.59f) + ledgeDetectorForward2 * (0.65f - topOfLedgeSurfaceDetectorHeight2 * 0.59f) + rodHoldingLedgeDetectorHeight2 + rodHoldingLedgeDetectorForward2 + ((Component)this).transform.forward * (topOfLedgeSurfaceDetectorHeight2 * length2) * 0.14f + ((Component)this).transform.up * (topOfLedgeSurfaceDetectorHeight2 * height2)) + rightWidth / 4f, ((Component)this).transform.position + posChange2 + upHeight * 0.8f + forwardLength / 1.75f + (ledgeDetectorHeight2 + ledgeDetectorForward2 + rodHoldingLedgeDetectorHeight2 + rodHoldingLedgeDetectorForward2) + rightWidth / 4f, ref hit, LayerMask.op_Implicit(collisionLayers)) && angle <= ledgeAngleLimit) { climbableR = true; } else { climbableR = false; } } else { climbable = false; climbableL = false; climbableR = false; } if (climbPossibleL && climbPossibleR && (!switching || !ledgeSwitchingDetectors.allowLedgeSwitching)) { if (Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + forwardLength / 1.7f + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f + forwardLength / 1.7f, ref hit, LayerMask.op_Implicit(collisionLayers))) { if (hasNotMovedOnLedgeAsideFromLedgeSwitchingYet) { ledgeAngle = Vector3.Angle(((Component)this).transform.right, ((RaycastHit)(ref hit)).normal) - 90f; } else { ledgeAngle = Mathf.Lerp(ledgeAngle, Vector3.Angle(((Component)this).transform.right, ((RaycastHit)(ref hit)).normal) - 90f, 6f * Time.deltaTime); } } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 2.2f + forwardLength / 1.75f + maxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f + forwardLength / 1.75f, ref hit, LayerMask.op_Implicit(collisionLayers))) { if (hasNotMovedOnLedgeAsideFromLedgeSwitchingYet) { ledgeAngle = Vector3.Angle(((Component)this).transform.right, ((RaycastHit)(ref hit)).normal) - 90f; } else { ledgeAngle = Mathf.Lerp(ledgeAngle, Vector3.Angle(((Component)this).transform.right, ((RaycastHit)(ref hit)).normal) - 90f, 6f * Time.deltaTime); } } } Vector3 position = ((Component)this).transform.position; Bounds bounds = ((Component)this).GetComponent().bounds; position.y = ((Bounds)(ref bounds)).min.y + 0.1f; if (Physics.Raycast(position, Vector3.down, maxGroundedDistance, LayerMask.op_Implicit(collisionLayers)) || Physics.Raycast(position - ((Component)this).transform.forward / 10f, Vector3.down, maxGroundedDistance, LayerMask.op_Implicit(collisionLayers)) || Physics.Raycast(position + ((Component)this).transform.forward / 10f, Vector3.down, maxGroundedDistance, LayerMask.op_Implicit(collisionLayers)) || Physics.Raycast(position - ((Component)this).transform.right / 10f, Vector3.down, maxGroundedDistance, LayerMask.op_Implicit(collisionLayers)) || Physics.Raycast(position + ((Component)this).transform.right / 10f, Vector3.down, maxGroundedDistance, LayerMask.op_Implicit(collisionLayers))) { currentStatesOfVariables.grounded = true; } else { currentStatesOfVariables.grounded = false; } directionVector = new Vector3(Input.GetAxis("Horizontal"), 0f, Input.GetAxis("Vertical")); if (directionVector != Vector3.zero) { float magnitude = ((Vector3)(ref directionVector)).magnitude; directionVector /= magnitude; magnitude = Mathf.Min(1f, magnitude); magnitude *= magnitude; directionVector *= magnitude; } if (!grabbedOn && !pullingUp && !turnBack && !back2) { axisBeforeGrab = ((Vector3)(ref directionVector)).magnitude; } if (!turnBack) { ledgeJumpPossible = true; if (Input.GetAxisRaw("Horizontal") != 0f || Input.GetAxisRaw("Vertical") != 0f) { if (currentStatesOfVariables.grounded && !climbable && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight * 0.5f, ((Component)this).transform.position + posChange1 + forwardLength / 1.5f + upHeight * 0.5f + spaceInFrontNeededToGrabBackOn2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && !back2 && !grabbedOn && !pullingUp && ((!Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 4f + upHeight * 0.5f + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 + forwardLength / 4f - upHeight * 1.5f - spaceBelowNeededToGrabBackOnHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && !Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 1.5f + upHeight * 0.5f + spaceInFrontNeededToGrabBackOn2, ((Component)this).transform.position + posChange1 + forwardLength / 1.5f - upHeight * 1.5f + spaceInFrontNeededToGrabBackOn2 - spaceBelowNeededToGrabBackOnHeight2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10)) || (canJumpOffLedge && walkingOffLedgeDetectors.allowJumpingOffLedges))) { if (!Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 4f + upHeight * 0.5f + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 + forwardLength / 4f - upHeight * 1.5f - spaceBelowNeededToGrabBackOnHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && !Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 1.5f + upHeight * 0.5f + spaceInFrontNeededToGrabBackOn2, ((Component)this).transform.position + posChange1 + forwardLength / 1.5f - upHeight * 1.5f + spaceInFrontNeededToGrabBackOn2 - spaceBelowNeededToGrabBackOnHeight2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10)) { nonJumpTurnAround = true; } else { nonJumpTurnAround = false; } if (((Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 4f - upHeight * 0.1f + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 + forwardLength / 2f - upHeight * 0.1f - rightWidth / 4f + sideLedgeDetectorsLength2 + firstSideLedgeDetectorsHeight2 - sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && (!Object.op_Implicit((Object)(object)((Component)this).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Component)((RaycastHit)(ref hit)).transform).tag != ((Component)this).GetComponent().climbableTag2 && !((Component)this).GetComponent().fifthTest)) && Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 2f - upHeight * 0.1f - rightWidth / 4f + sideLedgeDetectorsLength2 + firstSideLedgeDetectorsHeight2 - sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 + forwardLength / 4f - upHeight * 0.1f + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && (!Object.op_Implicit((Object)(object)((Component)this).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Component)((RaycastHit)(ref hit)).transform).tag != ((Component)this).GetComponent().climbableTag2 && !((Component)this).GetComponent().fifthTest))) || (Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 4f - upHeight * 0.5f + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 + forwardLength / 2f - upHeight * 0.5f - rightWidth / 4f + sideLedgeDetectorsLength2 + secondSideLedgeDetectorsHeight2 - sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && (!Object.op_Implicit((Object)(object)((Component)this).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Component)((RaycastHit)(ref hit)).transform).tag != ((Component)this).GetComponent().climbableTag2 && !((Component)this).GetComponent().fifthTest)) && Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 3f - upHeight * 0.5f + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 - forwardLength / 4f - upHeight * 0.5f + rightWidth / 4f - sideLedgeDetectorsLength2 + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && (!Object.op_Implicit((Object)(object)((Component)this).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Component)((RaycastHit)(ref hit)).transform).tag != ((Component)this).GetComponent().climbableTag2 && !((Component)this).GetComponent().fifthTest)) && Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 2f - upHeight * 0.5f - rightWidth / 4f + sideLedgeDetectorsLength2 + secondSideLedgeDetectorsHeight2 - sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 + forwardLength / 4f - upHeight * 0.5f + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && (!Object.op_Implicit((Object)(object)((Component)this).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Component)((RaycastHit)(ref hit)).transform).tag != ((Component)this).GetComponent().climbableTag2 && !((Component)this).GetComponent().fifthTest))) || (Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 4f - upHeight + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 + forwardLength / 2f - rightWidth / 4f + sideLedgeDetectorsLength2 - upHeight + thirdSideLedgeDetectorsHeight2 - sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && (!Object.op_Implicit((Object)(object)((Component)this).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Component)((RaycastHit)(ref hit)).transform).tag != ((Component)this).GetComponent().climbableTag2 && !((Component)this).GetComponent().fifthTest)) && Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 3f - upHeight + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 - forwardLength / 4f - upHeight + rightWidth / 4f - sideLedgeDetectorsLength2 + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && (!Object.op_Implicit((Object)(object)((Component)this).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Component)((RaycastHit)(ref hit)).transform).tag != ((Component)this).GetComponent().climbableTag2 && !((Component)this).GetComponent().fifthTest)) && Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 2f - rightWidth / 4f + sideLedgeDetectorsLength2 - upHeight + thirdSideLedgeDetectorsHeight2 - sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 + forwardLength / 4f - upHeight + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && (!Object.op_Implicit((Object)(object)((Component)this).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Component)((RaycastHit)(ref hit)).transform).tag != ((Component)this).GetComponent().climbableTag2 && !((Component)this).GetComponent().fifthTest)))) && Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 3f - upHeight * 0.1f + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 - forwardLength / 4f - upHeight * 0.1f + rightWidth / 4f - sideLedgeDetectorsLength2 + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && (!Object.op_Implicit((Object)(object)((Component)this).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Component)((RaycastHit)(ref hit)).transform).tag != ((Component)this).GetComponent().climbableTag2 && !((Component)this).GetComponent().fifthTest))) { if (Physics.Raycast(((Component)this).transform.position + midSidePosChange + posChange1 - upHeight / 9f + forwardLength, -forwardLength / 4f, ref hit, 3f, LayerMask.op_Implicit(collisionLayers) | 0x10) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { backHit = -((RaycastHit)(ref hit)).normal; backRotation = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); } else if (Physics.Raycast(((Component)this).transform.position + midSidePosChange + posChange1 - upHeight / 20f + forwardLength, -forwardLength / 4f, ref hit, 3f, LayerMask.op_Implicit(collisionLayers) | 0x10) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { backHit = -((RaycastHit)(ref hit)).normal; backRotation = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); } else { backHit = Vector3.zero; backRotation = Quaternion.LookRotation(-((Component)this).transform.forward, Vector3.up); } angleBetweenPlayerAndTurnBackWall = Vector3.Angle(((Component)this).transform.right, ((RaycastHit)(ref hit)).normal); if (Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - forwardLength / 3f + rightWidth * 0.4f + grabBackOnLocationForward2 + grabBackOnLocationWidth2 + grabBackOnLocationHeight2, ((Component)this).transform.position + posChange1 - upHeight - forwardLength / 3f + rightWidth * 0.4f + grabBackOnLocationForward2 + grabBackOnLocationWidth2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit && (!Object.op_Implicit((Object)(object)((Component)this).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Component)((RaycastHit)(ref hit)).transform).tag != ((Component)this).GetComponent().climbableTag2 && !((Component)this).GetComponent().fifthTest))) { backPoint = new Vector3(((RaycastHit)(ref hit)).point.x + ((Component)this).transform.forward.x * length2, ((RaycastHit)(ref hit)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z + ((Component)this).transform.forward.z * length2); playerPosY = backPoint.y; turnBackRight = true; turnBackLeft = false; turnBackMiddle = false; turnBack = true; canGrabBackOn = false; } else if (Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - forwardLength / 2f + rightWidth * 0.4f + grabBackOnLocationForward2 + grabBackOnLocationWidth2 + grabBackOnLocationHeight2, ((Component)this).transform.position + posChange1 - upHeight - forwardLength / 2f + rightWidth * 0.4f + grabBackOnLocationForward2 + grabBackOnLocationWidth2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit && (!Object.op_Implicit((Object)(object)((Component)this).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Component)((RaycastHit)(ref hit)).transform).tag != ((Component)this).GetComponent().climbableTag2 && !((Component)this).GetComponent().fifthTest))) { backPoint = new Vector3(((RaycastHit)(ref hit)).point.x + ((Component)this).transform.forward.x * length2, ((RaycastHit)(ref hit)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z + ((Component)this).transform.forward.z * length2); playerPosY = backPoint.y; turnBackRight = true; turnBackLeft = false; turnBackMiddle = false; turnBack = true; canGrabBackOn = false; } } else if (((Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 4f - upHeight * 0.1f + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 + forwardLength / 2f - upHeight * 0.1f + rightWidth / 4f + sideLedgeDetectorsLength2 + firstSideLedgeDetectorsHeight2 + sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && (!Object.op_Implicit((Object)(object)((Component)this).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Component)((RaycastHit)(ref hit)).transform).tag != ((Component)this).GetComponent().climbableTag2 && !((Component)this).GetComponent().fifthTest)) && Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 2f - upHeight * 0.1f + rightWidth / 4f + sideLedgeDetectorsLength2 + firstSideLedgeDetectorsHeight2 + sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 + forwardLength / 4f - upHeight * 0.1f + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && (!Object.op_Implicit((Object)(object)((Component)this).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Component)((RaycastHit)(ref hit)).transform).tag != ((Component)this).GetComponent().climbableTag2 && !((Component)this).GetComponent().fifthTest))) || (Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 4f - upHeight * 0.5f + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 + forwardLength / 2f - upHeight * 0.5f + rightWidth / 4f + sideLedgeDetectorsLength2 + secondSideLedgeDetectorsHeight2 + sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && (!Object.op_Implicit((Object)(object)((Component)this).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Component)((RaycastHit)(ref hit)).transform).tag != ((Component)this).GetComponent().climbableTag2 && !((Component)this).GetComponent().fifthTest)) && Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 3f - upHeight * 0.5f + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 - forwardLength / 4f - upHeight * 0.5f - rightWidth / 4f - sideLedgeDetectorsLength2 + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && (!Object.op_Implicit((Object)(object)((Component)this).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Component)((RaycastHit)(ref hit)).transform).tag != ((Component)this).GetComponent().climbableTag2 && !((Component)this).GetComponent().fifthTest)) && Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 2f - upHeight * 0.5f + rightWidth / 4f + sideLedgeDetectorsLength2 + secondSideLedgeDetectorsHeight2 + sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 + forwardLength / 4f - upHeight * 0.5f + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && (!Object.op_Implicit((Object)(object)((Component)this).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Component)((RaycastHit)(ref hit)).transform).tag != ((Component)this).GetComponent().climbableTag2 && !((Component)this).GetComponent().fifthTest))) || (Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 4f - upHeight + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 + forwardLength / 2f + rightWidth / 4f + sideLedgeDetectorsLength2 - upHeight + thirdSideLedgeDetectorsHeight2 + sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && (!Object.op_Implicit((Object)(object)((Component)this).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Component)((RaycastHit)(ref hit)).transform).tag != ((Component)this).GetComponent().climbableTag2 && !((Component)this).GetComponent().fifthTest)) && Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 3f - upHeight + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 - forwardLength / 4f - upHeight - rightWidth / 4f - sideLedgeDetectorsLength2 + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && (!Object.op_Implicit((Object)(object)((Component)this).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Component)((RaycastHit)(ref hit)).transform).tag != ((Component)this).GetComponent().climbableTag2 && !((Component)this).GetComponent().fifthTest)) && Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 2f + rightWidth / 4f + sideLedgeDetectorsLength2 - upHeight + thirdSideLedgeDetectorsHeight2 + sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 + forwardLength / 4f - upHeight + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && (!Object.op_Implicit((Object)(object)((Component)this).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Component)((RaycastHit)(ref hit)).transform).tag != ((Component)this).GetComponent().climbableTag2 && !((Component)this).GetComponent().fifthTest)))) && Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 3f - upHeight * 0.1f + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 - forwardLength / 4f - upHeight * 0.1f - rightWidth / 4f - sideLedgeDetectorsLength2 + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && (!Object.op_Implicit((Object)(object)((Component)this).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Component)((RaycastHit)(ref hit)).transform).tag != ((Component)this).GetComponent().climbableTag2 && !((Component)this).GetComponent().fifthTest))) { if (Physics.Raycast(((Component)this).transform.position + midSidePosChange + posChange1 - upHeight / 9f + forwardLength, -forwardLength / 4f, ref hit, 3f, LayerMask.op_Implicit(collisionLayers) | 0x10) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { backHit = -((RaycastHit)(ref hit)).normal; backRotation = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); } else if (Physics.Raycast(((Component)this).transform.position + midSidePosChange + posChange1 - upHeight / 20f + forwardLength, -forwardLength / 4f, ref hit, 3f, LayerMask.op_Implicit(collisionLayers) | 0x10) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { backHit = -((RaycastHit)(ref hit)).normal; backRotation = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); } else { backHit = Vector3.zero; backRotation = Quaternion.LookRotation(-((Component)this).transform.forward, Vector3.up); } angleBetweenPlayerAndTurnBackWall = Vector3.Angle(((Component)this).transform.right, ((RaycastHit)(ref hit)).normal); if (Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - forwardLength / 3f - rightWidth * 0.4f + grabBackOnLocationForward2 - grabBackOnLocationWidth2 + grabBackOnLocationHeight2, ((Component)this).transform.position + posChange1 - upHeight - forwardLength / 3f - rightWidth * 0.4f + grabBackOnLocationForward2 - grabBackOnLocationWidth2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit && (!Object.op_Implicit((Object)(object)((Component)this).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Component)((RaycastHit)(ref hit)).transform).tag != ((Component)this).GetComponent().climbableTag2 && !((Component)this).GetComponent().fifthTest))) { backPoint = new Vector3(((RaycastHit)(ref hit)).point.x + ((Component)this).transform.forward.x * length2, ((RaycastHit)(ref hit)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z + ((Component)this).transform.forward.z * length2); playerPosY = backPoint.y; turnBackLeft = true; turnBackRight = false; turnBackMiddle = false; turnBack = true; canGrabBackOn = false; } else if (Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - forwardLength / 2f - rightWidth * 0.4f + grabBackOnLocationForward2 - grabBackOnLocationWidth2 + grabBackOnLocationHeight2, ((Component)this).transform.position + posChange1 - upHeight - forwardLength / 2f - rightWidth * 0.4f + grabBackOnLocationForward2 - grabBackOnLocationWidth2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit && (!Object.op_Implicit((Object)(object)((Component)this).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Component)((RaycastHit)(ref hit)).transform).tag != ((Component)this).GetComponent().climbableTag2 && !((Component)this).GetComponent().fifthTest))) { backPoint = new Vector3(((RaycastHit)(ref hit)).point.x + ((Component)this).transform.forward.x * length2, ((RaycastHit)(ref hit)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z + ((Component)this).transform.forward.z * length2); playerPosY = backPoint.y; turnBackLeft = true; turnBackRight = false; turnBackMiddle = false; turnBack = true; canGrabBackOn = false; } } else if (((Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 3.5f - upHeight * 0.05f + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 - forwardLength * 0.25f - upHeight * 0.05f + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f && (!Object.op_Implicit((Object)(object)((Component)this).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Component)((RaycastHit)(ref hit)).transform).tag != ((Component)this).GetComponent().climbableTag2 && !((Component)this).GetComponent().fifthTest))) || (Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 3.5f - upHeight * 0.15f + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 - forwardLength * 0.25f - upHeight * 0.15f + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f && (!Object.op_Implicit((Object)(object)((Component)this).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Component)((RaycastHit)(ref hit)).transform).tag != ((Component)this).GetComponent().climbableTag2 && !((Component)this).GetComponent().fifthTest))) || (Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 3.5f - upHeight * 0.25f + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 - forwardLength * 0.25f - upHeight * 0.25f + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f && (!Object.op_Implicit((Object)(object)((Component)this).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Component)((RaycastHit)(ref hit)).transform).tag != ((Component)this).GetComponent().climbableTag2 && !((Component)this).GetComponent().fifthTest))) || (Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 3.5f - upHeight * 0.05f + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 - forwardLength * 0.5f - upHeight * 0.05f + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f && (!Object.op_Implicit((Object)(object)((Component)this).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Component)((RaycastHit)(ref hit)).transform).tag != ((Component)this).GetComponent().climbableTag2 && !((Component)this).GetComponent().fifthTest))) || (Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 3.5f - upHeight * 0.15f + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 - forwardLength * 0.5f - upHeight * 0.15f + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f && (!Object.op_Implicit((Object)(object)((Component)this).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Component)((RaycastHit)(ref hit)).transform).tag != ((Component)this).GetComponent().climbableTag2 && !((Component)this).GetComponent().fifthTest))) || (Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 3.5f - upHeight * 0.25f + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 - forwardLength * 0.5f - upHeight * 0.25f + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f && (!Object.op_Implicit((Object)(object)((Component)this).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Component)((RaycastHit)(ref hit)).transform).tag != ((Component)this).GetComponent().climbableTag2 && !((Component)this).GetComponent().fifthTest)))) && !Physics.Linecast(new Vector3((((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / (3.5f / length2)).x, ((Component)this).transform.position.y + upHeight.y * 0.5f, (((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / (3.5f / length2)).z), new Vector3((((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / (3.5f / length2)).x, ((Component)this).transform.position.y - upHeight.y * 1.5f - spaceBelowNeededToGrabBackOnHeight2.y, (((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / (3.5f / length2)).z), ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10)) { if (Physics.Raycast(((Component)this).transform.position + midSidePosChange + posChange1 - upHeight / 9f + forwardLength, -forwardLength / 4f, ref hit, 3f, LayerMask.op_Implicit(collisionLayers) | 0x10) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { backHit = -((RaycastHit)(ref hit)).normal; backRotation = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); } else if (Physics.Raycast(((Component)this).transform.position + midSidePosChange + posChange1 - upHeight / 20f + forwardLength, -forwardLength / 4f, ref hit, 3f, LayerMask.op_Implicit(collisionLayers) | 0x10) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { backHit = -((RaycastHit)(ref hit)).normal; backRotation = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); } else { backHit = Vector3.zero; backRotation = Quaternion.LookRotation(-((Component)this).transform.forward, Vector3.up); } angleBetweenPlayerAndTurnBackWall = Vector3.Angle(((Component)this).transform.right, ((RaycastHit)(ref hit)).normal); if (Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - forwardLength / 2f + grabBackOnLocationForward2 + grabBackOnLocationHeight2, ((Component)this).transform.position + posChange1 - upHeight - forwardLength / 2f + grabBackOnLocationForward2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit && (!Object.op_Implicit((Object)(object)((Component)this).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Component)((RaycastHit)(ref hit)).transform).tag != ((Component)this).GetComponent().climbableTag2 && !((Component)this).GetComponent().fifthTest))) { backPoint = new Vector3(((RaycastHit)(ref hit)).point.x + ((Component)this).transform.forward.x * length2, ((RaycastHit)(ref hit)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z + ((Component)this).transform.forward.z * length2); playerPosY = backPoint.y; turnBackMiddle = true; turnBackLeft = false; turnBackRight = false; turnBack = true; canGrabBackOn = false; } } else { turnBackMiddle = false; turnBackLeft = false; turnBackRight = false; turnBack = false; } if (canJumpOffLedge && walkingOffLedgeDetectors.allowJumpingOffLedges) { turnBack = true; canGrabBackOn = false; } } if (turnBackMiddle) { if (Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 3.5f - upHeight * 0.05f + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 - forwardLength * 0.25f - upHeight * 0.05f + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f) { turnBackPoint = ((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / (3.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 3.5f - upHeight * 0.15f + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 - forwardLength * 0.25f - upHeight * 0.15f + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f) { turnBackPoint = ((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / (3.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 3.5f - upHeight * 0.25f + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 - forwardLength * 0.25f - upHeight * 0.25f + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f) { turnBackPoint = ((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / (3.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 3.5f - upHeight * 0.05f + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 - forwardLength * 0.5f - upHeight * 0.05f + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f) { turnBackPoint = ((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / (3.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 3.5f - upHeight * 0.15f + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 - forwardLength * 0.5f - upHeight * 0.15f + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f) { turnBackPoint = ((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / (3.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 3.5f - upHeight * 0.25f + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 - forwardLength * 0.5f - upHeight * 0.25f + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f) { turnBackPoint = ((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / (3.5f / length2); } else { turnBackPoint = new Vector3(backPoint.x - ((Component)this).transform.forward.x * length2 / 15f, playerPosY + onLedgeHeight2 / 10f, backPoint.z - ((Component)this).transform.forward.z * length2 / 15f); } } else if (turnBackLeft) { if (Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 3.5f - upHeight * 0.05f + spaceBelowNeededToGrabBackOnForward2 - rightWidth * 0.4f, ((Component)this).transform.position + posChange1 - forwardLength * 0.25f - upHeight * 0.05f + spaceBelowNeededToGrabBackOnForward2 - rightWidth * 0.4f, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f) { turnBackPoint = ((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / (3.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 3.5f - upHeight * 0.15f + spaceBelowNeededToGrabBackOnForward2 - rightWidth * 0.4f, ((Component)this).transform.position + posChange1 - forwardLength * 0.25f - upHeight * 0.15f + spaceBelowNeededToGrabBackOnForward2 - rightWidth * 0.4f, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f) { turnBackPoint = ((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / (3.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 3.5f - upHeight * 0.25f + spaceBelowNeededToGrabBackOnForward2 - rightWidth * 0.4f, ((Component)this).transform.position + posChange1 - forwardLength * 0.25f - upHeight * 0.25f + spaceBelowNeededToGrabBackOnForward2 - rightWidth * 0.4f, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f) { turnBackPoint = ((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / (3.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 3.5f - upHeight * 0.05f + spaceBelowNeededToGrabBackOnForward2 - rightWidth * 0.4f, ((Component)this).transform.position + posChange1 - forwardLength * 0.5f - upHeight * 0.05f + spaceBelowNeededToGrabBackOnForward2 - rightWidth * 0.4f, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f) { turnBackPoint = ((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / (3.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 3.5f - upHeight * 0.15f + spaceBelowNeededToGrabBackOnForward2 - rightWidth * 0.4f, ((Component)this).transform.position + posChange1 - forwardLength * 0.5f - upHeight * 0.15f + spaceBelowNeededToGrabBackOnForward2 - rightWidth * 0.4f, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f) { turnBackPoint = ((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / (3.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 3.5f - upHeight * 0.25f + spaceBelowNeededToGrabBackOnForward2 - rightWidth * 0.4f, ((Component)this).transform.position + posChange1 - forwardLength * 0.5f - upHeight * 0.25f + spaceBelowNeededToGrabBackOnForward2 - rightWidth * 0.4f, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f) { turnBackPoint = ((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / (3.5f / length2); } else { turnBackPoint = new Vector3(backPoint.x - ((Component)this).transform.forward.x * length2 / 15f, playerPosY + onLedgeHeight2 / 10f, backPoint.z - ((Component)this).transform.forward.z * length2 / 15f); } } else if (turnBackRight) { if (Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 3.5f - upHeight * 0.05f + spaceBelowNeededToGrabBackOnForward2 + rightWidth * 0.4f, ((Component)this).transform.position + posChange1 - forwardLength * 0.25f - upHeight * 0.05f + spaceBelowNeededToGrabBackOnForward2 + rightWidth * 0.4f, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f) { turnBackPoint = ((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / (3.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 3.5f - upHeight * 0.15f + spaceBelowNeededToGrabBackOnForward2 + rightWidth * 0.4f, ((Component)this).transform.position + posChange1 - forwardLength * 0.25f - upHeight * 0.15f + spaceBelowNeededToGrabBackOnForward2 + rightWidth * 0.4f, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f) { turnBackPoint = ((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / (3.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 3.5f - upHeight * 0.25f + spaceBelowNeededToGrabBackOnForward2 + rightWidth * 0.4f, ((Component)this).transform.position + posChange1 - forwardLength * 0.25f - upHeight * 0.25f + spaceBelowNeededToGrabBackOnForward2 + rightWidth * 0.4f, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f) { turnBackPoint = ((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / (3.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 3.5f - upHeight * 0.05f + spaceBelowNeededToGrabBackOnForward2 + rightWidth * 0.4f, ((Component)this).transform.position + posChange1 - forwardLength * 0.5f - upHeight * 0.05f + spaceBelowNeededToGrabBackOnForward2 + rightWidth * 0.4f, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f) { turnBackPoint = ((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / (3.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 3.5f - upHeight * 0.15f + spaceBelowNeededToGrabBackOnForward2 + rightWidth * 0.4f, ((Component)this).transform.position + posChange1 - forwardLength * 0.5f - upHeight * 0.15f + spaceBelowNeededToGrabBackOnForward2 + rightWidth * 0.4f, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f) { turnBackPoint = ((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / (3.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 3.5f - upHeight * 0.25f + spaceBelowNeededToGrabBackOnForward2 + rightWidth * 0.4f, ((Component)this).transform.position + posChange1 - forwardLength * 0.5f - upHeight * 0.25f + spaceBelowNeededToGrabBackOnForward2 + rightWidth * 0.4f, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f) { turnBackPoint = ((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / (3.5f / length2); } else { turnBackPoint = new Vector3(backPoint.x - ((Component)this).transform.forward.x * length2 / 15f, playerPosY + onLedgeHeight2 / 10f, backPoint.z - ((Component)this).transform.forward.z * length2 / 15f); } } } } if (turnBack) { if ((Object)(object)((Component)this).transform.parent != (Object)null) { if (!onPlatform) { originalPlatformPosition = ((Component)this).transform.parent.position; originalTurnBackPoint = turnBackPoint; originalPlayerPosY = playerPosY; originalPlatformRotation = ((Component)this).transform.parent.rotation; originalBackRotation = backRotation; onPlatform = true; } if (onPlatform) { turnBackPoint = originalTurnBackPoint + (((Component)this).transform.parent.position - originalPlatformPosition); if (!climbable || !climbPossible) { playerPosY = originalPlayerPosY + (((Component)this).transform.parent.position - originalPlatformPosition).y; } backRotation = originalBackRotation * (((Component)this).transform.parent.rotation * Quaternion.Inverse(originalPlatformRotation)); } } else { onPlatform = false; } if (walkingOffLedgeDetectors.allowJumpingOffLedges && ((Vector3)(ref directionVector)).magnitude >= walkingOffLedgeDetectors.inputPercentageNeededToJump / 100f && ledgeJumpPossible) { back2 = false; grabbedOn = false; pullingUp = false; getOn = false; getOn2 = false; jumpDir = ((Component)this).transform.forward * walkingOffLedgeDetectors.jumpDistance + ((Component)this).transform.up * walkingOffLedgeDetectors.jumpHeight; turnBack = false; } else if (walkingOffLedgeDetectors.allowGrabbingBackOnToLedges && nonJumpTurnAround && (turnBackMiddle || turnBackLeft || turnBackRight)) { jumpDir = Vector3.zero; ledgeJumpPossible = false; if (!stayUpright) { turnBackTimer = 0f; if (Vector3.Distance(((Component)this).transform.position, new Vector3(turnBackPoint.x, playerPosY + onLedgeHeight2 / 10f, turnBackPoint.z)) > 0.3f || Quaternion.Angle(((Component)this).transform.rotation, backRotation) > 0.1f) { back2 = false; grabbedOn = false; pullingUp = false; getOn = false; getOn2 = false; if (Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled) { ((Component)this).transform.position = Vector3.Lerp(((Component)this).transform.position, new Vector3(turnBackPoint.x, playerPosY + onLedgeHeight2 / 10f, turnBackPoint.z), 10f * Time.deltaTime); } else if (Object.op_Implicit((Object)(object)rigidBody)) { ((Component)this).transform.position = Vector3.Slerp(((Component)this).transform.position, new Vector3(turnBackPoint.x, playerPosY + onLedgeHeight2 / 10f, turnBackPoint.z), 10f * Time.deltaTime); } ((Component)this).transform.rotation = Quaternion.Slerp(((Component)this).transform.rotation, backRotation, 12f * Time.deltaTime); playerPosXZ = ((Component)this).transform.position + posChange2; } else { back2 = true; canGrabBackOn = false; turnBack = false; } } else if ((Vector3.Distance(((Component)this).transform.position, new Vector3(turnBackPoint.x, playerPosY + onLedgeHeight2 / 10f, turnBackPoint.z)) > 0.3f && turnBackTimer < 0.5f) || (Quaternion.Angle(((Component)this).transform.rotation, backRotation) > 0.1f && turnBackTimer < 0.5f)) { turnBackTimer += 0.02f; back2 = false; grabbedOn = false; pullingUp = false; getOn = false; getOn2 = false; if (Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled) { ((Component)this).transform.position = Vector3.Lerp(((Component)this).transform.position, new Vector3(turnBackPoint.x, playerPosY + onLedgeHeight2 / 10f, turnBackPoint.z), 10f * Time.deltaTime); } else if (Object.op_Implicit((Object)(object)rigidBody)) { ((Component)this).transform.position = Vector3.Slerp(((Component)this).transform.position, new Vector3(turnBackPoint.x, playerPosY + onLedgeHeight2 / 10f, turnBackPoint.z), 10f * Time.deltaTime); } ((Component)this).transform.rotation = Quaternion.Slerp(((Component)this).transform.rotation, backRotation, 12f * Time.deltaTime); playerPosXZ = ((Component)this).transform.position + posChange2; } else { turnBackTimer = 0f; back2 = true; canGrabBackOn = false; turnBack = false; } } else { back2 = false; turnBack = false; } } else { onPlatform = false; } if (walkingOffLedgeDetectors.allowGrabbingBackOnToLedges) { if (back2) { turnBack = false; if (!grabbedOn) { if (onPlatform) { playerPosXZ = ((Component)this).transform.position + posChange2; } ((Component)this).transform.position = new Vector3(playerPosXZ.x, playerPosY + onLedgeHeight2 / 10f, playerPosXZ.z); grabbedOn = true; canGrabBackOn = false; } } if (turnBack || back2) { movementSpeed = 0f; if (Input.GetButtonDown("Jump")) { if (scriptsToDisableOnGrab != null) { string[] array = scriptsToDisableOnGrab; foreach (string text in array) { ref MonoBehaviour reference = ref scriptToDisable; Component component = ((Component)this).GetComponent(text); reference = (MonoBehaviour)(object)((component is MonoBehaviour) ? component : null); if ((Object)(object)scriptToDisable != (Object)null) { ((Behaviour)scriptToDisable).enabled = true; } else if (!currentlyEnablingAndDisablingScripts || turnBack) { scriptWarning = true; } } } if (scriptsToEnableOnGrab != null) { string[] array2 = scriptsToEnableOnGrab; foreach (string text2 in array2) { ref MonoBehaviour reference2 = ref scriptToEnable; Component component2 = ((Component)this).GetComponent(text2); reference2 = (MonoBehaviour)(object)((component2 is MonoBehaviour) ? component2 : null); if ((Object)(object)scriptToEnable != (Object)null) { ((Behaviour)scriptToEnable).enabled = false; } else if (!currentlyEnablingAndDisablingScripts || turnBack) { scriptWarning = true; } } } currentlyEnablingAndDisablingScripts = true; jumpedOffTimer = 0f; jumpedOffDirection = -((Component)this).transform.forward * distanceToPushOffOfLedgeAfterLettingGo; if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { ((Component)this).GetComponent().speed = 1f; } getOn = false; getOn2 = false; pullingUp = false; grabbedOn = false; turnBack = false; } else { if (scriptsToDisableOnGrab != null) { string[] array3 = scriptsToDisableOnGrab; foreach (string text3 in array3) { ref MonoBehaviour reference3 = ref scriptToDisable; Component component3 = ((Component)this).GetComponent(text3); reference3 = (MonoBehaviour)(object)((component3 is MonoBehaviour) ? component3 : null); if ((Object)(object)scriptToDisable != (Object)null) { ((Behaviour)scriptToDisable).enabled = false; } else if (!currentlyEnablingAndDisablingScripts) { scriptWarning = true; } } } if (scriptsToEnableOnGrab != null) { string[] array4 = scriptsToEnableOnGrab; foreach (string text4 in array4) { ref MonoBehaviour reference4 = ref scriptToEnable; Component component4 = ((Component)this).GetComponent(text4); reference4 = (MonoBehaviour)(object)((component4 is MonoBehaviour) ? component4 : null); if ((Object)(object)scriptToEnable != (Object)null) { ((Behaviour)scriptToEnable).enabled = true; } else if (!currentlyEnablingAndDisablingScripts) { scriptWarning = true; } } } currentlyEnablingAndDisablingScripts = true; } } } if ((inAirFromJumpingOffLedge && noCollisionTimer >= 2f) || (inAirFromJumpingOffLedge && !currentStatesOfVariables.grounded && !walkingOffLedgeDetectors.disableScriptsWhileJumping)) { inAirFromJumpingOffLedgeNoCollision = true; } if ((inAirFromJumpingOffLedgeNoCollision && noCollisionTimer < 2f) || jumpDir == Vector3.zero) { inAirFromJumpingOffLedgeNoCollision = false; } yPosDiff = ((Component)this).transform.position.y - lastYPos; lastYPos = ((Component)this).transform.position.y; if (Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled) { vel = characterController.velocity; } else if (Object.op_Implicit((Object)(object)rigidBody)) { vel = rigidBody.velocity; } if (((Physics.Raycast(position, Vector3.down, ref hit, 1f, LayerMask.op_Implicit(collisionLayers)) && noCollisionTimer < 5f && currentStatesOfVariables.grounded) || (((Physics.Raycast(position, Vector3.down, ref hit, 1f, LayerMask.op_Implicit(collisionLayers)) && noCollisionTimer < 5f) || currentStatesOfVariables.grounded) && Object.op_Implicit((Object)(object)rigidBody))) && inAirFromJumpingOffLedge && !walkingOffLedgeDetectors.disableScriptsWhileJumping) { inAirFromJumpingOffLedge = false; jumpDir = Vector3.zero; } if ((Vector3.Distance(jumpDir, Vector3.zero) > 0.1f && yPosDiff * 5f < 1f * (walkingOffLedgeDetectors.jumpHeight / 7f)) || (inAirFromJumpingOffLedgeNoCollision && yPosDiff * 5f < 1f * (walkingOffLedgeDetectors.jumpHeight / 7f))) { turnBack = false; if (!currentStatesOfVariables.grounded) { jumpDust = true; inAirFromJumpingOffLedge = true; } if (inAirFromJumpingOffLedge) { if (walkingOffLedgeDetectors.disableScriptsWhileJumping && vel.y != 0f) { if (scriptsToDisableOnGrab != null) { string[] array5 = scriptsToDisableOnGrab; foreach (string text5 in array5) { ref MonoBehaviour reference5 = ref scriptToDisable; Component component5 = ((Component)this).GetComponent(text5); reference5 = (MonoBehaviour)(object)((component5 is MonoBehaviour) ? component5 : null); if ((Object)(object)scriptToDisable != (Object)null) { ((Behaviour)scriptToDisable).enabled = false; } else if (!currentlyEnablingAndDisablingScripts) { scriptWarning = true; } } } if (scriptsToEnableOnGrab != null) { string[] array6 = scriptsToEnableOnGrab; foreach (string text6 in array6) { ref MonoBehaviour reference6 = ref scriptToEnable; Component component6 = ((Component)this).GetComponent(text6); reference6 = (MonoBehaviour)(object)((component6 is MonoBehaviour) ? component6 : null); if ((Object)(object)scriptToEnable != (Object)null) { ((Behaviour)scriptToEnable).enabled = true; } else if (!currentlyEnablingAndDisablingScripts) { scriptWarning = true; } } } currentlyEnablingAndDisablingScripts = true; } if (!climbable || !climbPossible) { jumpDir.x = Mathf.Lerp(jumpDir.x, 0f, walkingOffLedgeDetectors.jumpDecelerationRate * Time.deltaTime); jumpDir.z = Mathf.Lerp(jumpDir.z, 0f, walkingOffLedgeDetectors.jumpDecelerationRate * Time.deltaTime); if (walkingOffLedgeDetectors.useGravity) { ref Vector3 reference7 = ref jumpDir; reference7.y -= walkingOffLedgeDetectors.gravity * Time.deltaTime; } if (Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled) { characterController.Move(jumpDir * Time.deltaTime); } else if (Object.op_Implicit((Object)(object)rigidBody)) { rigidBody.MovePosition(((Component)this).transform.position + jumpDir * Time.deltaTime); } } else { jumpDir = Vector3.zero; } } else { inAirFromJumpingOffLedge = false; } if ((currentStatesOfVariables.grounded || (!currentStatesOfVariables.grounded && !inAirFromJumpingOffLedge && !grabbedOn) || (!currentStatesOfVariables.grounded && climbable && climbPossible && !grabbedOn) || !inAirFromJumpingOffLedgeNoCollision) && !canJumpOffLedge && inAirFromJumpingOffLedge && (noCollisionTimer > 5f || !Object.op_Implicit((Object)(object)rigidBody))) { if (walkingOffLedgeDetectors.disableScriptsWhileJumping) { if (scriptsToDisableOnGrab != null) { string[] array7 = scriptsToDisableOnGrab; foreach (string text7 in array7) { ref MonoBehaviour reference8 = ref scriptToDisable; Component component7 = ((Component)this).GetComponent(text7); reference8 = (MonoBehaviour)(object)((component7 is MonoBehaviour) ? component7 : null); if ((Object)(object)scriptToDisable != (Object)null) { ((Behaviour)scriptToDisable).enabled = true; } else if (!currentlyEnablingAndDisablingScripts || jumpDir != Vector3.zero) { scriptWarning = true; } } } if (scriptsToEnableOnGrab != null) { string[] array8 = scriptsToEnableOnGrab; foreach (string text8 in array8) { ref MonoBehaviour reference9 = ref scriptToEnable; Component component8 = ((Component)this).GetComponent(text8); reference9 = (MonoBehaviour)(object)((component8 is MonoBehaviour) ? component8 : null); if ((Object)(object)scriptToEnable != (Object)null) { ((Behaviour)scriptToEnable).enabled = false; } else if (!currentlyEnablingAndDisablingScripts || jumpDir != Vector3.zero) { scriptWarning = true; } } } currentlyEnablingAndDisablingScripts = true; } inAirFromJumpingOffLedge = false; jumpDir = Vector3.zero; } } else if (noCollisionTimer > 5f || !Object.op_Implicit((Object)(object)rigidBody)) { inAirFromJumpingOffLedge = false; jumpDir = Vector3.zero; } if (!inAirFromJumpingOffLedge && jumpDust && (Object)(object)jumpLandingEffect2 != (Object)null && currentStatesOfVariables.grounded) { jumpDir = Vector3.zero; Object.Instantiate(jumpLandingEffect2, ((Component)this).transform.position + new Vector3(0f, 0.05f, 0f), jumpLandingEffect2.transform.rotation); jumpDust = false; } if (Object.op_Implicit((Object)(object)rigidBody)) { if ((((Component)this).transform.position.y <= rbPosY && !pullingUp) || (rigidBody.velocity.y <= 0f && !pullingUp)) { rbPosYIncreasing = false; } else { rbPosYIncreasing = true; } rbPosY = ((Component)this).transform.position.y; if (rigidBody.useGravity && !grabbedOn && !pullingUp && !turnBack && !back2) { rbUsesGravity = true; } if (grabbedOn || pullingUp || turnBack || back2) { canChangeRbGravity = true; rigidBody.useGravity = false; } else if (rbUsesGravity && canChangeRbGravity) { rigidBody.useGravity = true; canChangeRbGravity = false; } if (!rigidBody.useGravity && !grabbedOn && !pullingUp && !turnBack && !back2) { rbUsesGravity = false; } } if (turnBack || switching || !grabbedOn) { hasNotMovedOnLedgeYet = true; if (!switching || !ledgeSwitchingDetectors.allowLedgeSwitching) { hasNotMovedOnLedgeAsideFromLedgeSwitchingYet = true; } } if (grabbedOn) { back2 = false; if (!Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2, ((Component)this).transform.position + posChange1 - upHeight / 4f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { if (!leftBlocked && leftMovable && !Physics.Linecast(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight - forwardLength / 3f + firstBackWallDetectorsForward2, ((Component)this).transform.position + midSidePosChange + posChange2 + upHeight - forwardLength / 3f - rightWidth + firstBackWallDetectorsForward2 + firstBackWallDetectorsWidth2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight - forwardLength - rightWidth / 2f, ((Component)this).transform.position + midSidePosChange + posChange2 + upHeight + forwardLength - rightWidth / 2f, ref hit, LayerMask.op_Implicit(collisionLayers))) { lSide = ((RaycastHit)(ref hit)).point; left = true; } else if (!leftBlocked && leftMovable && Physics.Linecast(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight - forwardLength / 3f + firstBackWallDetectorsForward2, ((Component)this).transform.position + midSidePosChange + posChange2 + upHeight - forwardLength / 3f - rightWidth + firstBackWallDetectorsForward2 + firstBackWallDetectorsWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { lSide = ((RaycastHit)(ref hit)).point; left = true; } else if (!leftBlocked && leftMovable && Physics.Linecast(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight - forwardLength / 2f + secondBackWallDetectorsForward2, ((Component)this).transform.position + midSidePosChange + posChange2 + upHeight - forwardLength / 2f - rightWidth + secondBackWallDetectorsForward2 + secondBackWallDetectorsWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { lSide = ((RaycastHit)(ref hit)).point; left = true; } else if (!leftBlocked && leftMovable && Physics.Linecast(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight * 1.2f - forwardLength / 1.75f + upHeight * 1.5f - rightWidth / 2f + backTopOfLedgeSurfaceDetectorsForward2, ((Component)this).transform.position + midSidePosChange + posChange2 + upHeight - forwardLength / 2f - upHeight / 2f - rightWidth / 2f + backTopOfLedgeSurfaceDetectorsForward2, ref hit, LayerMask.op_Implicit(collisionLayers))) { lSide = ((RaycastHit)(ref hit)).point + rightWidth / 3f; left = true; } else if (Physics.Linecast(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight * 1.2f + forwardLength / 1.25f + upHeight * 1.5f - rightWidth / 2f + frontTopOfLedgeSurfaceDetectorsForward2, ((Component)this).transform.position + midSidePosChange + posChange2 + upHeight + forwardLength / 1.75f - upHeight / 2f - rightWidth / 2f + frontTopOfLedgeSurfaceDetectorsForward2, ref hit, LayerMask.op_Implicit(collisionLayers))) { lSide = ((RaycastHit)(ref hit)).point; left = true; } else if (Physics.Linecast(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight + forwardLength / 2f - rightWidth / 2f + firstFrontWallDetectorsForward2, ((Component)this).transform.position + midSidePosChange + posChange2 + upHeight + forwardLength / 2f + rightWidth + firstFrontWallDetectorsForward2 + firstFrontWallDetectorsWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { lSide = ((RaycastHit)(ref hit)).point - rightWidth / 3f; left = true; } else if (Physics.Linecast(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight + forwardLength - rightWidth / 2f + secondFrontWallDetectorsForward2, ((Component)this).transform.position + midSidePosChange + posChange2 + upHeight + forwardLength + rightWidth + secondFrontWallDetectorsForward2 + secondFrontWallDetectorsWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { lSide = ((RaycastHit)(ref hit)).point - rightWidth / 3f; left = true; } else { left = false; } } else { left = false; } if (!Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2, ((Component)this).transform.position + posChange1 - upHeight / 4f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { if (!rightBlocked && rightMovable && !Physics.Linecast(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight - forwardLength / 3f + firstBackWallDetectorsForward2, ((Component)this).transform.position + midSidePosChange + posChange2 + upHeight - forwardLength / 3f + rightWidth + firstBackWallDetectorsForward2 - firstBackWallDetectorsWidth2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight - forwardLength + rightWidth / 2f, ((Component)this).transform.position + midSidePosChange + posChange2 + upHeight + forwardLength + rightWidth / 2f, ref hit, LayerMask.op_Implicit(collisionLayers))) { rSide = ((RaycastHit)(ref hit)).point; right = true; } else if (!rightBlocked && rightMovable && Physics.Linecast(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight - forwardLength / 3f + firstBackWallDetectorsForward2, ((Component)this).transform.position + midSidePosChange + posChange2 + upHeight - forwardLength / 3f + rightWidth + firstBackWallDetectorsForward2 - firstBackWallDetectorsWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { rSide = ((RaycastHit)(ref hit)).point; right = true; } else if (!rightBlocked && rightMovable && Physics.Linecast(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight - forwardLength / 2f + secondBackWallDetectorsForward2, ((Component)this).transform.position + midSidePosChange + posChange2 + upHeight - forwardLength / 2f + rightWidth + secondBackWallDetectorsForward2 - secondBackWallDetectorsWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { rSide = ((RaycastHit)(ref hit)).point; right = true; } else if (!rightBlocked && rightMovable && Physics.Linecast(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight * 1.2f - forwardLength / 1.75f + upHeight * 1.5f + rightWidth / 2f + backTopOfLedgeSurfaceDetectorsForward2, ((Component)this).transform.position + midSidePosChange + posChange2 + upHeight - forwardLength / 2f - upHeight / 2f + rightWidth / 2f + backTopOfLedgeSurfaceDetectorsForward2, ref hit, LayerMask.op_Implicit(collisionLayers))) { rSide = ((RaycastHit)(ref hit)).point - rightWidth / 3f; right = true; } else if (Physics.Linecast(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight * 1.2f + forwardLength / 1.25f + upHeight * 1.5f + rightWidth / 2f + frontTopOfLedgeSurfaceDetectorsForward2, ((Component)this).transform.position + midSidePosChange + posChange2 + upHeight + forwardLength / 1.75f - upHeight / 2f + rightWidth / 2f + frontTopOfLedgeSurfaceDetectorsForward2, ref hit, LayerMask.op_Implicit(collisionLayers))) { rSide = ((RaycastHit)(ref hit)).point; right = true; } else if (Physics.Linecast(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight + forwardLength / 2f + rightWidth / 2f + firstFrontWallDetectorsForward2, ((Component)this).transform.position + midSidePosChange + posChange2 + upHeight + forwardLength / 2f - rightWidth + firstFrontWallDetectorsForward2 - firstFrontWallDetectorsWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { rSide = ((RaycastHit)(ref hit)).point + rightWidth / 3f; right = true; } else if (Physics.Linecast(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight + forwardLength + rightWidth / 2f + secondFrontWallDetectorsForward2, ((Component)this).transform.position + midSidePosChange + posChange2 + upHeight + forwardLength - rightWidth + secondFrontWallDetectorsForward2 - secondFrontWallDetectorsWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { rSide = ((RaycastHit)(ref hit)).point + rightWidth / 3f; right = true; } else { right = false; } } else { right = false; } if (Input.GetAxisRaw("Horizontal") > 0f && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2, ((Component)this).transform.position + posChange1 - upHeight / 3f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { movingRight = true; } else if (Input.GetAxisRaw("Horizontal") < 0f && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2, ((Component)this).transform.position + posChange1 - upHeight / 3f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { movingRight = false; } if (!Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2, ((Component)this).transform.position + posChange1 - upHeight / 3f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2, ((Component)this).transform.position + posChange1 - upHeight / 3f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { sL = false; } if (!Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2, ((Component)this).transform.position + posChange1 - upHeight / 3f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2, ((Component)this).transform.position + posChange1 - upHeight / 3f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { sR = false; } if (movingRight && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2, ((Component)this).transform.position + posChange1 - upHeight / 4f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2, ((Component)this).transform.position + posChange1 - upHeight / 3f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { sR = true; } else if (!movingRight && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2, ((Component)this).transform.position + posChange1 - upHeight / 4f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2, ((Component)this).transform.position + posChange1 - upHeight / 3f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { sR = false; } if (!movingRight && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2, ((Component)this).transform.position + posChange1 - upHeight / 4f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2, ((Component)this).transform.position + posChange1 - upHeight / 3f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { sL = true; } else if (movingRight && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2, ((Component)this).transform.position + posChange1 - upHeight / 4f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2, ((Component)this).transform.position + posChange1 - upHeight / 3f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { sL = false; } if (sR && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2, ((Component)this).transform.position + posChange1 - upHeight / 4f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2, ((Component)this).transform.position + posChange1 - upHeight / 3f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { left = true; right = false; } else if (sL && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2, ((Component)this).transform.position + posChange1 - upHeight / 4f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2, ((Component)this).transform.position + posChange1 - upHeight / 3f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { left = false; right = true; } else if (!Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2, ((Component)this).transform.position + posChange1 - upHeight / 3f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2, ((Component)this).transform.position + posChange1 - upHeight / 3f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { left = true; right = true; } else if (!Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2, ((Component)this).transform.position + posChange1 - upHeight / 3f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2, ((Component)this).transform.position + posChange1 - upHeight / 3f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { left = true; right = true; } else { left = false; right = false; } if ((!switching && !switchJumping) || !ledgeSwitchingDetectors.allowLedgeSwitching) { if (!leftMovable && (!climbPossibleL || !climbPossible)) { left = false; } if (!rightMovable && (!climbPossibleR || !climbPossible)) { right = false; } } if (!Physics.Raycast(((Component)this).transform.position + posChange2 + upHeight + midSidePosChange * 0.5f, forwardLength / 4f + rightWidth / 2f, ref hit, 0.7f, LayerMask.op_Implicit(collisionLayers)) && Physics.Raycast(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight * 1.1f, forwardLength + rightWidth / 2f, ref hit, 1f, LayerMask.op_Implicit(collisionLayers))) { upright = true; } else { upright = false; } if (!Physics.Raycast(((Component)this).transform.position + posChange2 + upHeight + midSidePosChange * 0.5f, forwardLength / 4f - rightWidth / 2f, ref hit, 0.7f, LayerMask.op_Implicit(collisionLayers)) && Physics.Raycast(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight * 1.1f, forwardLength - rightWidth / 2f, ref hit, 1f, LayerMask.op_Implicit(collisionLayers))) { upleft = true; } else { upleft = false; } if (!Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 0.5f, forwardLength / 4f, ref hit, 1f, LayerMask.op_Implicit(collisionLayers)) && !Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 0.5f, rightWidth / 4f, ref hit, 1f, LayerMask.op_Implicit(collisionLayers)) && !Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 0.5f, -rightWidth / 4f, ref hit, 1f, LayerMask.op_Implicit(collisionLayers)) && !Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 0.5f, forwardLength / 4f + rightWidth / 4f - (upHeight + midSidePosChange), ref hit, 1.5f, LayerMask.op_Implicit(collisionLayers)) && !Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 0.5f, forwardLength / 4f - rightWidth / 4f - (upHeight + midSidePosChange), ref hit, 1.5f, LayerMask.op_Implicit(collisionLayers)) && Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 1.1f, forwardLength, ref hit, 5f, LayerMask.op_Implicit(collisionLayers))) { upfront = true; } else { upfront = false; } RaycastHit val = default(RaycastHit); if (Input.GetAxisRaw("Horizontal") > 0f && Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 1.1f, rightWidth / 2f, ref hit, 5f, LayerMask.op_Implicit(collisionLayers)) && Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 0.5f, forwardLength / 4f, ref val, 5f, LayerMask.op_Implicit(collisionLayers)) && Vector3.Distance(((Component)this).transform.position + ((Component)this).transform.up, ((RaycastHit)(ref hit)).point) < Vector3.Distance(((Component)this).transform.position, ((RaycastHit)(ref val)).point)) { movingToSide = true; } else if (Input.GetAxisRaw("Horizontal") < 0f && Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 1.1f, -rightWidth / 2f, ref hit, 5f, LayerMask.op_Implicit(collisionLayers)) && Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 0.5f, forwardLength / 4f, ref val, 5f, LayerMask.op_Implicit(collisionLayers)) && Vector3.Distance(((Component)this).transform.position + ((Component)this).transform.up, ((RaycastHit)(ref hit)).point) < Vector3.Distance(((Component)this).transform.position, ((RaycastHit)(ref val)).point)) { movingToSide = true; } else { movingToSide = false; } if (!switching || !ledgeSwitchingDetectors.allowLedgeSwitching) { if (((((Component)this).transform.rotation == lastRot3 || axisChanged) && (movementSpeed > 0f || Input.GetAxis("Horizontal") != 0f)) || hasNotMovedOnLedgeYet) { if (!Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 1.1f, forwardLength, ref hit, 1f, LayerMask.op_Implicit(collisionLayers)) && !Physics.Raycast(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight * 1.1f, forwardLength + rightWidth / 2f, ref hit, 1f, LayerMask.op_Implicit(collisionLayers)) && !Physics.Raycast(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight * 1.1f, forwardLength - rightWidth / 2f, ref hit, 1f, LayerMask.op_Implicit(collisionLayers)) && Physics.Raycast(((Component)this).transform.position + posChange2 + midSidePosChange * 0.5f, forwardLength / 4f, ref hit, 1f, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { if (Physics.Raycast(((Component)this).transform.position + posChange2 + midSidePosChange, forwardLength / 4f, ref hit, 1f, LayerMask.op_Implicit(collisionLayers))) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); } else if (Physics.Raycast(((Component)this).transform.position + posChange2 + midSidePosChange * 0.8f, forwardLength / 4f, ref hit, 1f, LayerMask.op_Implicit(collisionLayers))) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); } else { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); } rotationState = 1f; } else if (!Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 0.5f, forwardLength / 4f + rightWidth / 2f, ref hit, 5f, LayerMask.op_Implicit(collisionLayers)) && !Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 0.5f, forwardLength / 4f - rightWidth / 2f, ref hit, 5f, LayerMask.op_Implicit(collisionLayers)) && Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 0.5f, forwardLength / 4f, ref hit, 5f, LayerMask.op_Implicit(collisionLayers)) && Vector3.Distance(((Component)this).transform.position + posChange2, ((RaycastHit)(ref hit)).point) <= 1f && !movingToSide && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { if (Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange), forwardLength / 4f, ref hit, 5f, LayerMask.op_Implicit(collisionLayers))) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); } else if (Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 0.8f, forwardLength / 4f, ref hit, 5f, LayerMask.op_Implicit(collisionLayers))) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); } else { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); } rotationState = 2f; } else if (!rightBlocked && Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 0.5f, forwardLength / 4f + rightWidth / 2f, ref hit, 0.7f, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { if (Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange), forwardLength / 4f + rightWidth / 2f, ref hit, 0.7f, LayerMask.op_Implicit(collisionLayers))) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); } else if (Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 0.8f, forwardLength / 4f + rightWidth / 2f, ref hit, 0.7f, LayerMask.op_Implicit(collisionLayers))) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); } else { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); } rotationState = 3f; } else if (!leftBlocked && Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 0.5f, forwardLength / 4f - rightWidth / 2f, ref hit, 0.7f, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { if (Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange), forwardLength / 4f - rightWidth / 2f, ref hit, 0.7f, LayerMask.op_Implicit(collisionLayers))) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); } else if (Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 0.8f, forwardLength / 4f - rightWidth / 2f, ref hit, 0.7f, LayerMask.op_Implicit(collisionLayers))) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); } else { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); } rotationState = 4f; } else if (!Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 1.1f, forwardLength + rightWidth / 2f, ref hit, 5f, LayerMask.op_Implicit(collisionLayers)) && !Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 1.1f, forwardLength - rightWidth / 2f, ref hit, 2f, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight * 1.2f, ((Component)this).transform.position + posChange1 + upHeight * 1.2f + forwardLength / 3f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 5f; } else if (!Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 1.1f, forwardLength + rightWidth / 2f, ref hit, 5f, LayerMask.op_Implicit(collisionLayers)) && !Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 1.1f, forwardLength - rightWidth / 2f, ref hit, 2f, LayerMask.op_Implicit(collisionLayers)) && Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 1.1f, forwardLength, ref hit, 2f, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 6f; } else if (!rightBlocked && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight * 1.2f + forwardLength / 1.5f - rightWidth / 5f, ((Component)this).transform.position + posChange1 + upHeight * 1.2f + forwardLength / 3f + rightWidth / 5f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 1.1f, forwardLength - rightWidth / 2f, ref hit, 0.5f, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight * 1.2f + forwardLength / 1.5f + rightWidth / 5f, ((Component)this).transform.position + posChange1 + upHeight * 1.2f + forwardLength / 3f - rightWidth / 5f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 7f; } else if (!rightBlocked && !Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 1.1f, forwardLength - rightWidth / 2f, ref hit, 0.5f, LayerMask.op_Implicit(collisionLayers)) && Physics.Raycast(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight * 1.1f, forwardLength + rightWidth / 2f, ref hit, 1f, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { if (Physics.Raycast(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight * 1.1f, forwardLength, ref hit, 1f, LayerMask.op_Implicit(collisionLayers))) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); } else { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); } rotationState = 8f; } else if (!rightBlocked && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight * 1.2f + forwardLength / 1.5f - rightWidth / 5f, ((Component)this).transform.position + posChange1 + upHeight * 1.2f + forwardLength / 3f + rightWidth / 5f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 1.1f, forwardLength - rightWidth / 2f, ref hit, 2f, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight * 1.2f + forwardLength / 1.5f + rightWidth / 5f, ((Component)this).transform.position + posChange1 + upHeight * 1.2f + forwardLength / 3f - rightWidth / 5f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 9f; } else if (!rightBlocked && !Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 1.1f, forwardLength - rightWidth / 2f, ref hit, 2f, LayerMask.op_Implicit(collisionLayers)) && Physics.Raycast(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight * 1.1f, forwardLength + rightWidth / 2f, ref hit, 1f, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 10f; } else if (!leftBlocked && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight * 1.2f + forwardLength / 1.5f - rightWidth / 5f, ((Component)this).transform.position + posChange1 + upHeight * 1.2f + forwardLength / 3f + rightWidth / 5f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight * 1.2f + forwardLength / 1.5f - rightWidth / 5f, ((Component)this).transform.position + posChange1 + upHeight * 1.2f + forwardLength / 3f + rightWidth / 5f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 11f; } else if (!leftBlocked && Physics.Raycast(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight * 1.1f, forwardLength - rightWidth / 2f, ref hit, 1f, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 12f; } else if (Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 1.1f, forwardLength, ref hit, 1f, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 13f; } else if (!rightBlocked && !Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 1.1f, forwardLength - rightWidth / 2f, ref hit, 0.5f, LayerMask.op_Implicit(collisionLayers)) && Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 1.1f, forwardLength + rightWidth / 2f, ref hit, 1f, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 14f; } else if (!rightBlocked && !Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 1.1f, forwardLength - rightWidth / 2f, ref hit, 2f, LayerMask.op_Implicit(collisionLayers)) && Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 1.1f, forwardLength + rightWidth / 2f, ref hit, 1f, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 15f; } else if (!leftBlocked && Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 1.1f, forwardLength - rightWidth / 2f, ref hit, 1f, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 16f; } else if (!upfront && !rightBlocked && Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 0.5f, forwardLength / 4f + rightWidth / 2f + (upHeight + midSidePosChange) * 0.5f, ref hit, 0.7f, LayerMask.op_Implicit(collisionLayers)) && !upright && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 17f; } else if (!upfront && !leftBlocked && Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 0.5f, forwardLength / 4f - rightWidth / 2f + (upHeight + midSidePosChange) * 0.5f, ref hit, 0.7f, LayerMask.op_Implicit(collisionLayers)) && !upleft && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 18f; } else if (Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight * 1.2f + forwardLength / 3f + rightWidth / 5f, ((Component)this).transform.position + posChange1 + upHeight * 1.2f + forwardLength / 3f - rightWidth / 5f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 19f; } else if (Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight * 1.2f + forwardLength / 3f - rightWidth / 5f, ((Component)this).transform.position + posChange1 + upHeight * 1.2f + forwardLength / 3f + rightWidth / 5f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 20f; } else if (Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight * 1.2f + forwardLength / 1.5f + rightWidth / 5f, ((Component)this).transform.position + posChange1 + upHeight * 1.2f + forwardLength / 1.5f - rightWidth / 5f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 21f; } else if (Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight * 1.2f + forwardLength / 1.5f - rightWidth / 5f, ((Component)this).transform.position + posChange1 + upHeight * 1.2f + forwardLength / 1.5f + rightWidth / 5f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 22f; } else if (!left && !right) { rotationState = 23f; if (scriptsToDisableOnGrab != null) { string[] array9 = scriptsToDisableOnGrab; foreach (string text9 in array9) { ref MonoBehaviour reference10 = ref scriptToDisable; Component component9 = ((Component)this).GetComponent(text9); reference10 = (MonoBehaviour)(object)((component9 is MonoBehaviour) ? component9 : null); if ((Object)(object)scriptToDisable != (Object)null) { ((Behaviour)scriptToDisable).enabled = true; } else if (!currentlyEnablingAndDisablingScripts || grabbedOn) { scriptWarning = true; } } } if (scriptsToEnableOnGrab != null) { string[] array10 = scriptsToEnableOnGrab; foreach (string text10 in array10) { ref MonoBehaviour reference11 = ref scriptToEnable; Component component10 = ((Component)this).GetComponent(text10); reference11 = (MonoBehaviour)(object)((component10 is MonoBehaviour) ? component10 : null); if ((Object)(object)scriptToEnable != (Object)null) { ((Behaviour)scriptToEnable).enabled = false; } else if (!currentlyEnablingAndDisablingScripts || grabbedOn) { scriptWarning = true; } } } currentlyEnablingAndDisablingScripts = true; if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { ((Component)this).GetComponent().speed = 1f; } getOn = false; getOn2 = false; pullingUp = false; grabbedOn = false; } else { rotationState = 0f; } if (movementSpeed > 0f || Input.GetAxis("Horizontal") != 0f) { hasNotMovedOnLedgeYet = false; hasNotMovedOnLedgeAsideFromLedgeSwitchingYet = false; } } if ((Input.GetAxis("Horizontal") > 0f && horizontalAxis <= 0f) || (Input.GetAxis("Horizontal") < 0f && horizontalAxis >= 0f)) { axisChanged = true; } else if (((Component)this).transform.rotation == lastRot3 && climbPossible && climbPossibleL && climbPossibleR) { axisChanged = false; } horizontalAxis = Input.GetAxis("Horizontal"); lastRot3 = ((Component)this).transform.rotation; if (rotationState != 23f && rotationState != 0f) { ((Component)this).transform.rotation = Quaternion.Slerp(((Component)this).transform.rotation, rotationNormal, movingDetectors.rotationSpeed * Time.deltaTime); } wallInFrontAngle = Vector3.Angle(((RaycastHit)(ref hit)).normal, Vector3.up); if (wallInFrontAngle < 90f) { leaningForward = true; } else { leaningForward = false; } } if (grabbedOn && (!switching || !ledgeSwitchingDetectors.allowLedgeSwitching)) { if (!Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2, ((Component)this).transform.position + posChange1 - upHeight / 4f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2, ((Component)this).transform.position + posChange1 - upHeight / 4f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !sL) { Transform transform = ((Component)this).transform; transform.position += ((Component)this).transform.right / 10f; } if (!Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2, ((Component)this).transform.position + posChange1 - upHeight / 4f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2, ((Component)this).transform.position + posChange1 - upHeight / 4f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !sR) { Transform transform2 = ((Component)this).transform; transform2.position -= ((Component)this).transform.right / 10f; } } if (!Physics.Linecast(((Component)this).transform.position + posChange2 + forwardLength / 2f + upHeight * 1.5f - rightWidth / 2f + ledgeAngleDetectorsHeight2 - ledgeAngleDetectorsWidth2, ((Component)this).transform.position + posChange2 + upHeight * 1.5f + forwardLength - rightWidth / 2f + ledgeAngleDetectorsHeight2 - ledgeAngleDetectorsWidth2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + forwardLength / 2f + upHeight * 1.5f - rightWidth / 2f + ledgeAngleDetectorsHeight2 - ledgeAngleDetectorsWidth2, ((Component)this).transform.position + posChange2 + upHeight + forwardLength / 2f - upHeight / 2f - rightWidth / 2f - ledgeAngleDetectorsWidth2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > ledgeAngleLimit && Physics.Linecast(((Component)this).transform.position + posChange2 + forwardLength / 2f + upHeight * 1.5f - rightWidth / 1.85f + ledgeAngleDetectorsHeight2 - ledgeAngleDetectorsWidth2, ((Component)this).transform.position + posChange2 + upHeight + forwardLength / 2f - upHeight / 2f - rightWidth / 1.85f - ledgeAngleDetectorsWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { left = false; angledLeft = true; } else { angledLeft = false; } if (!Physics.Linecast(((Component)this).transform.position + posChange2 + forwardLength / 2f + upHeight * 1.5f + rightWidth / 2f + ledgeAngleDetectorsHeight2 + ledgeAngleDetectorsWidth2, ((Component)this).transform.position + posChange2 + upHeight * 1.5f + forwardLength + rightWidth / 2f + ledgeAngleDetectorsHeight2 + ledgeAngleDetectorsWidth2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + forwardLength / 2f + upHeight * 1.5f + rightWidth / 2f + ledgeAngleDetectorsHeight2 + ledgeAngleDetectorsWidth2, ((Component)this).transform.position + posChange2 + upHeight + forwardLength / 2f - upHeight / 2f + rightWidth / 2f + ledgeAngleDetectorsWidth2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > ledgeAngleLimit && Physics.Linecast(((Component)this).transform.position + posChange2 + forwardLength / 2f + upHeight * 1.5f + rightWidth / 1.85f + ledgeAngleDetectorsHeight2 + ledgeAngleDetectorsWidth2, ((Component)this).transform.position + posChange2 + upHeight + forwardLength / 2f - upHeight / 2f + rightWidth / 1.85f + ledgeAngleDetectorsWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { right = false; angledRight = true; } else { angledRight = false; } } if ((grabbedOn || pullingUp || turnBack || back2) && stayUpright && !leaningForward) { ((Component)this).transform.eulerAngles = new Vector3(0f, ((Component)this).transform.eulerAngles.y, 0f); } LedgeGrabbingAxisDetection(); DropOffLedge(); PushOffLedge(); switchHitPoint = default(RaycastHit); GetLedgeSwitchInfo(); if (grabbedOn) { EnableAndDisableScripts(); if (getOn) { ((Component)this).transform.position = new Vector3(playerPosXZ.x, playerPosY + onLedgeHeight2 / 10f, playerPosXZ.z); getOn = false; } LeftMovement(); RightMovement(); if (Input.GetAxis("Horizontal") == 0f) { movementSpeed = 0f; } if (movingDetectors.sideScrolling.lockMovementOnXAxis) { movementSpeed = 0f; movementVector.x = 0f; ((Component)this).transform.position = new Vector3(movingDetectors.sideScrolling.xValue, ((Component)this).transform.position.y, ((Component)this).transform.position.z); } if (movingDetectors.sideScrolling.lockMovementOnZAxis) { movementSpeed = 0f; movementVector.z = 0f; ((Component)this).transform.position = new Vector3(((Component)this).transform.position.x, ((Component)this).transform.position.y, movingDetectors.sideScrolling.zValue); } if (((Component)this).transform.eulerAngles.y > 180f) { yRotationValue = ((Component)this).transform.eulerAngles.y - 360f; } else { yRotationValue = ((Component)this).transform.eulerAngles.y; } if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { if (((Component)this).GetComponent().movement.sideScrolling.lockMovementOnXAxis && !((Component)this).GetComponent().movement.sideScrolling.lockMovementOnZAxis) { if (yRotationValue >= 90f) { ((Component)this).GetComponent().horizontalValue = -1f; ((Component)this).GetComponent().bodyRotation = 180f; } else { ((Component)this).GetComponent().horizontalValue = 1f; ((Component)this).GetComponent().bodyRotation = 0f; } } else if (((Component)this).GetComponent().movement.sideScrolling.lockMovementOnZAxis && !((Component)this).GetComponent().movement.sideScrolling.lockMovementOnXAxis) { if (yRotationValue >= 0f) { ((Component)this).GetComponent().horizontalValue = 1f; ((Component)this).GetComponent().bodyRotation = 90f; } else { ((Component)this).GetComponent().horizontalValue = -1f; ((Component)this).GetComponent().bodyRotation = -90f; } } } } ClimbingOverLedge(); ScriptWarning(); CheckIfStuck(); if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { animator = ((Component)this).GetComponent(); if (turnBack && !turnedBackToLedge && walkingOffLedgeDetectors.allowGrabbingBackOnToLedges && nonJumpTurnAround) { if (angleBetweenPlayerAndTurnBackWall < 90f) { animator.SetFloat("ledgeState", 1f); } else { animator.SetFloat("ledgeState", 2f); } animator.CrossFade("LedgeMovement", 0f, -1, 0f); turnedBackToLedge = true; } else if (!turnBack && !back2 && turnedBackToLedge && Input.GetAxis("Horizontal") != 0f) { turnedBackToLedge = false; } if (switching) { animator.speed = ledgeSwitchingDetectors.switchJumpSpeed / switchPointDist * 3f / 4f; } if (grabbedOn && !turnedBackToLedge) { if (!animator.GetBool("onLedge") && !movingDetectors.sideScrolling.lockMovementOnXAxis && !movingDetectors.sideScrolling.lockMovementOnZAxis) { animator.SetBool("onLedge", true); } if (!switchJumping) { animator.SetFloat("ledgeAngle", ledgeAngle); if (Input.GetAxis("Horizontal") > 0f && movingDetectors.moveSpeed > 0f && !movingDetectors.sideScrolling.lockMovementOnXAxis && !movingDetectors.sideScrolling.lockMovementOnZAxis) { animator.speed = movingDetectors.moveSpeed / 3f / movingDetectors.burstLength / (movingDetectors.moveSpeed * 2f / (3f + movingDetectors.moveSpeed)); if (!switching) { if (right && !stuckToRight) { if (animator.GetFloat("ledgeSpeed") != 1f || movementSpeed < 0.1f) { animator.CrossFade("LedgeMovement", 0f, -1, 0f); animator.SetFloat("ledgeSpeed", 1f); } } else { animator.speed = 1f; if (animator.GetFloat("ledgeSpeed") == 1f) { movementSpeed = 0f; } animator.SetFloat("ledgeSpeed", Mathf.Lerp(animator.GetFloat("ledgeSpeed"), 0f, movingDetectors.moveSpeed / 3f / movingDetectors.burstLength / (movingDetectors.moveSpeed * 2f / (3f + movingDetectors.moveSpeed)) * 12f * Time.deltaTime)); } } else if (animator.GetFloat("ledgeSpeed") != 2f && !switchJumping) { animator.speed = ledgeSwitchingDetectors.switchJumpSpeed / switchPointDist * 3f / 4f; animator.CrossFade("LedgeMovement", 0f, -1, 0f); animator.SetFloat("ledgeSpeed", 2f); } } else if (Input.GetAxis("Horizontal") < 0f && movingDetectors.moveSpeed > 0f && !movingDetectors.sideScrolling.lockMovementOnXAxis && !movingDetectors.sideScrolling.lockMovementOnZAxis) { animator.speed = movingDetectors.moveSpeed / 3f / movingDetectors.burstLength / (movingDetectors.moveSpeed * 2f / (3f + movingDetectors.moveSpeed)); if (!switching) { if (left && !stuckToLeft) { if (animator.GetFloat("ledgeSpeed") != -1f || movementSpeed < 0.1f) { animator.CrossFade("LedgeMovement", 0f, -1, 0f); animator.SetFloat("ledgeSpeed", -1f); } } else { animator.speed = 1f; if (animator.GetFloat("ledgeSpeed") == -1f) { movementSpeed = 0f; } animator.SetFloat("ledgeSpeed", Mathf.Lerp(animator.GetFloat("ledgeSpeed"), 0f, movingDetectors.moveSpeed / 3f / movingDetectors.burstLength / (movingDetectors.moveSpeed * 2f / (3f + movingDetectors.moveSpeed)) * 12f * Time.deltaTime)); } } else if (animator.GetFloat("ledgeSpeed") != -2f && !switchJumping) { animator.speed = ledgeSwitchingDetectors.switchJumpSpeed / switchPointDist * 3f / 4f; animator.CrossFade("LedgeMovement", 0f, -1, 0f); animator.SetFloat("ledgeSpeed", -2f); } } else { animator.speed = 1f; if (!switching) { animator.SetFloat("ledgeSpeed", 0f); } } } if (grabbedOn && !pullingUp && !turnBack) { AnimatorStateInfo currentAnimatorStateInfo = animator.GetCurrentAnimatorStateInfo(0); if (!((AnimatorStateInfo)(ref currentAnimatorStateInfo)).IsName("LedgeMovement")) { animator.SetFloat("ledgeSpeed", 0f); animator.CrossFade("LedgeMovement", 0f, -1, 0f); } } } else { animator.SetBool("onLedge", false); } if (!turnBack && !grabbedOn && !pullingUp) { turnedBackToLedge = false; } if (pullingUp) { if (animator.GetFloat("ledgeState") == 3f) { AnimatorStateInfo currentAnimatorStateInfo2 = animator.GetCurrentAnimatorStateInfo(0); if (((AnimatorStateInfo)(ref currentAnimatorStateInfo2)).IsName("LedgeMovement")) { goto IL_10bf7; } } if (!animatePullingUp) { if (grabbedOnLastUpdate) { animator.speed = Mathf.Abs(climbingDetectors.pullUpSpeed / 4f * (onLedgeHeight2 / 19f + 1f)); } else { animator.speed = climbingDetectors.pullUpSpeed / 4f; } animator.SetFloat("ledgeState", 3f); animator.CrossFade("LedgeMovement", 0f, -1, 0f); animatePullingUp = true; } } else if (animatePullingUp) { animator.speed = 1f; animatePullingUp = false; } goto IL_10bf7; } goto IL_10dae; IL_10bf7: if (grabbedOn && !pullingUp && animator.GetFloat("ledgeState") == 3f) { animator.SetFloat("ledgeState", 0f); animator.SetFloat("ledgeSpeed", 0f); animator.CrossFade("LedgeMovement", 0f, -1, 0f); } AnimatorStateInfo currentAnimatorStateInfo3 = animator.GetCurrentAnimatorStateInfo(0); if (!((AnimatorStateInfo)(ref currentAnimatorStateInfo3)).IsName("LedgeJump") && inAirFromJumpingOffLedge && animateLedgeJump) { animator.CrossFade("LedgeJump", 0f, -1, 0f); animateLedgeJump = false; } if (!inAirFromJumpingOffLedge || currentStatesOfVariables.grounded) { animateLedgeJump = true; } if (!pullingUp && !turnBack && !back2) { if (animator.GetBool("onLedge")) { animator.SetFloat("ledgeState", 0f); } AnimatorStateInfo currentAnimatorStateInfo4 = animator.GetCurrentAnimatorStateInfo(0); if (((AnimatorStateInfo)(ref currentAnimatorStateInfo4)).IsName("LedgeMovement") && animator.GetFloat("ledgeState") != 3f && !grabbedOn) { animator.SetBool("onLedge", false); animator.CrossFade(entryAnimation, 0f, -1, 0f); } } goto IL_10dae; IL_10dae: if (grabbedOn) { grabbedOnLastUpdate = true; } else if (!pullingUp) { grabbedOnLastUpdate = false; } SwitchingLedges(); } private void Update() { if (Input.GetKeyDown((KeyCode)99)) { ((Behaviour)varGameObject.GetComponent()).enabled = true; } if (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Collider)((Component)this).GetComponent()).enabled) { characterController = ((Component)this).GetComponent(); rigidBody = null; } else if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { rigidBody = ((Component)this).GetComponent(); characterController = null; } DetachingFromMovingPlatform(); } private void LedgeGrabbingAxisDetection() { //IL_067d: Unknown result type (might be due to invalid IL or missing references) //IL_0683: Unknown result type (might be due to invalid IL or missing references) //IL_0688: Unknown result type (might be due to invalid IL or missing references) //IL_068e: Unknown result type (might be due to invalid IL or missing references) //IL_0698: Unknown result type (might be due to invalid IL or missing references) //IL_069d: Unknown result type (might be due to invalid IL or missing references) //IL_06a3: Unknown result type (might be due to invalid IL or missing references) //IL_06ad: Unknown result type (might be due to invalid IL or missing references) //IL_06b2: Unknown result type (might be due to invalid IL or missing references) //IL_06b8: Unknown result type (might be due to invalid IL or missing references) //IL_06bd: Unknown result type (might be due to invalid IL or missing references) //IL_06c8: Unknown result type (might be due to invalid IL or missing references) //IL_06ce: Unknown result type (might be due to invalid IL or missing references) //IL_06d3: Unknown result type (might be due to invalid IL or missing references) //IL_06d9: Unknown result type (might be due to invalid IL or missing references) //IL_06e3: Unknown result type (might be due to invalid IL or missing references) //IL_06e8: Unknown result type (might be due to invalid IL or missing references) //IL_06ee: Unknown result type (might be due to invalid IL or missing references) //IL_06f8: Unknown result type (might be due to invalid IL or missing references) //IL_06fd: Unknown result type (might be due to invalid IL or missing references) //IL_0703: Unknown result type (might be due to invalid IL or missing references) //IL_0708: Unknown result type (might be due to invalid IL or missing references) //IL_070e: Unknown result type (might be due to invalid IL or missing references) //IL_0713: Unknown result type (might be due to invalid IL or missing references) //IL_071f: Unknown result type (might be due to invalid IL or missing references) //IL_0081: Unknown result type (might be due to invalid IL or missing references) //IL_0087: Unknown result type (might be due to invalid IL or missing references) //IL_008c: Unknown result type (might be due to invalid IL or missing references) //IL_0092: Unknown result type (might be due to invalid IL or missing references) //IL_0097: Unknown result type (might be due to invalid IL or missing references) //IL_00a2: Unknown result type (might be due to invalid IL or missing references) //IL_00a7: Unknown result type (might be due to invalid IL or missing references) //IL_00c8: Unknown result type (might be due to invalid IL or missing references) //IL_00cd: Unknown result type (might be due to invalid IL or missing references) //IL_00d5: Unknown result type (might be due to invalid IL or missing references) //IL_00db: Unknown result type (might be due to invalid IL or missing references) //IL_00e0: Unknown result type (might be due to invalid IL or missing references) //IL_00e6: Unknown result type (might be due to invalid IL or missing references) //IL_00f0: Unknown result type (might be due to invalid IL or missing references) //IL_00f5: Unknown result type (might be due to invalid IL or missing references) //IL_00fb: Unknown result type (might be due to invalid IL or missing references) //IL_0100: Unknown result type (might be due to invalid IL or missing references) //IL_010c: Unknown result type (might be due to invalid IL or missing references) //IL_0739: Unknown result type (might be due to invalid IL or missing references) //IL_073f: Unknown result type (might be due to invalid IL or missing references) //IL_0744: Unknown result type (might be due to invalid IL or missing references) //IL_074a: Unknown result type (might be due to invalid IL or missing references) //IL_0754: Unknown result type (might be due to invalid IL or missing references) //IL_0759: Unknown result type (might be due to invalid IL or missing references) //IL_075f: Unknown result type (might be due to invalid IL or missing references) //IL_0769: Unknown result type (might be due to invalid IL or missing references) //IL_076e: Unknown result type (might be due to invalid IL or missing references) //IL_0774: Unknown result type (might be due to invalid IL or missing references) //IL_0779: Unknown result type (might be due to invalid IL or missing references) //IL_0784: Unknown result type (might be due to invalid IL or missing references) //IL_078a: Unknown result type (might be due to invalid IL or missing references) //IL_078f: Unknown result type (might be due to invalid IL or missing references) //IL_0795: Unknown result type (might be due to invalid IL or missing references) //IL_079f: Unknown result type (might be due to invalid IL or missing references) //IL_07a4: Unknown result type (might be due to invalid IL or missing references) //IL_07aa: Unknown result type (might be due to invalid IL or missing references) //IL_07b4: Unknown result type (might be due to invalid IL or missing references) //IL_07b9: Unknown result type (might be due to invalid IL or missing references) //IL_07bf: Unknown result type (might be due to invalid IL or missing references) //IL_07c4: Unknown result type (might be due to invalid IL or missing references) //IL_07ca: Unknown result type (might be due to invalid IL or missing references) //IL_07cf: Unknown result type (might be due to invalid IL or missing references) //IL_07db: Unknown result type (might be due to invalid IL or missing references) //IL_0129: Unknown result type (might be due to invalid IL or missing references) //IL_012f: Unknown result type (might be due to invalid IL or missing references) //IL_0134: Unknown result type (might be due to invalid IL or missing references) //IL_013a: Unknown result type (might be due to invalid IL or missing references) //IL_013f: Unknown result type (might be due to invalid IL or missing references) //IL_0145: Unknown result type (might be due to invalid IL or missing references) //IL_014f: Unknown result type (might be due to invalid IL or missing references) //IL_0154: Unknown result type (might be due to invalid IL or missing references) //IL_015a: Unknown result type (might be due to invalid IL or missing references) //IL_015f: Unknown result type (might be due to invalid IL or missing references) //IL_016a: Unknown result type (might be due to invalid IL or missing references) //IL_016f: Unknown result type (might be due to invalid IL or missing references) //IL_0190: Unknown result type (might be due to invalid IL or missing references) //IL_0195: Unknown result type (might be due to invalid IL or missing references) //IL_019d: Unknown result type (might be due to invalid IL or missing references) //IL_01a3: Unknown result type (might be due to invalid IL or missing references) //IL_01a8: Unknown result type (might be due to invalid IL or missing references) //IL_01ae: Unknown result type (might be due to invalid IL or missing references) //IL_01b8: Unknown result type (might be due to invalid IL or missing references) //IL_01bd: Unknown result type (might be due to invalid IL or missing references) //IL_01c3: Unknown result type (might be due to invalid IL or missing references) //IL_01c8: Unknown result type (might be due to invalid IL or missing references) //IL_01ce: Unknown result type (might be due to invalid IL or missing references) //IL_01d8: Unknown result type (might be due to invalid IL or missing references) //IL_01dd: Unknown result type (might be due to invalid IL or missing references) //IL_01e3: Unknown result type (might be due to invalid IL or missing references) //IL_01e8: Unknown result type (might be due to invalid IL or missing references) //IL_01f4: Unknown result type (might be due to invalid IL or missing references) //IL_0211: Unknown result type (might be due to invalid IL or missing references) //IL_0217: Unknown result type (might be due to invalid IL or missing references) //IL_021c: Unknown result type (might be due to invalid IL or missing references) //IL_0222: Unknown result type (might be due to invalid IL or missing references) //IL_0227: Unknown result type (might be due to invalid IL or missing references) //IL_022d: Unknown result type (might be due to invalid IL or missing references) //IL_0237: Unknown result type (might be due to invalid IL or missing references) //IL_023c: Unknown result type (might be due to invalid IL or missing references) //IL_0242: Unknown result type (might be due to invalid IL or missing references) //IL_0247: Unknown result type (might be due to invalid IL or missing references) //IL_0252: Unknown result type (might be due to invalid IL or missing references) //IL_0257: Unknown result type (might be due to invalid IL or missing references) //IL_0279: Unknown result type (might be due to invalid IL or missing references) //IL_027e: Unknown result type (might be due to invalid IL or missing references) //IL_0287: Unknown result type (might be due to invalid IL or missing references) //IL_028d: Unknown result type (might be due to invalid IL or missing references) //IL_0292: Unknown result type (might be due to invalid IL or missing references) //IL_0298: Unknown result type (might be due to invalid IL or missing references) //IL_02a2: Unknown result type (might be due to invalid IL or missing references) //IL_02a7: Unknown result type (might be due to invalid IL or missing references) //IL_02ad: Unknown result type (might be due to invalid IL or missing references) //IL_02b2: Unknown result type (might be due to invalid IL or missing references) //IL_02b8: Unknown result type (might be due to invalid IL or missing references) //IL_02c2: Unknown result type (might be due to invalid IL or missing references) //IL_02c7: Unknown result type (might be due to invalid IL or missing references) //IL_02cd: Unknown result type (might be due to invalid IL or missing references) //IL_02d2: Unknown result type (might be due to invalid IL or missing references) //IL_02de: Unknown result type (might be due to invalid IL or missing references) //IL_088a: Unknown result type (might be due to invalid IL or missing references) //IL_0890: Unknown result type (might be due to invalid IL or missing references) //IL_0895: Unknown result type (might be due to invalid IL or missing references) //IL_089b: Unknown result type (might be due to invalid IL or missing references) //IL_08a0: Unknown result type (might be due to invalid IL or missing references) //IL_08ab: Unknown result type (might be due to invalid IL or missing references) //IL_08b1: Unknown result type (might be due to invalid IL or missing references) //IL_08b6: Unknown result type (might be due to invalid IL or missing references) //IL_08bc: Unknown result type (might be due to invalid IL or missing references) //IL_08c6: Unknown result type (might be due to invalid IL or missing references) //IL_08cb: Unknown result type (might be due to invalid IL or missing references) //IL_08d1: Unknown result type (might be due to invalid IL or missing references) //IL_08d6: Unknown result type (might be due to invalid IL or missing references) //IL_08e2: Unknown result type (might be due to invalid IL or missing references) //IL_031c: Unknown result type (might be due to invalid IL or missing references) //IL_0321: Unknown result type (might be due to invalid IL or missing references) //IL_037a: Unknown result type (might be due to invalid IL or missing references) //IL_0380: Unknown result type (might be due to invalid IL or missing references) //IL_0385: Unknown result type (might be due to invalid IL or missing references) //IL_038a: Unknown result type (might be due to invalid IL or missing references) //IL_03da: Unknown result type (might be due to invalid IL or missing references) //IL_03e0: Unknown result type (might be due to invalid IL or missing references) //IL_03e5: Unknown result type (might be due to invalid IL or missing references) //IL_03eb: Unknown result type (might be due to invalid IL or missing references) //IL_03f0: Unknown result type (might be due to invalid IL or missing references) //IL_03f6: Unknown result type (might be due to invalid IL or missing references) //IL_0400: Unknown result type (might be due to invalid IL or missing references) //IL_0405: Unknown result type (might be due to invalid IL or missing references) //IL_040b: Unknown result type (might be due to invalid IL or missing references) //IL_0415: Unknown result type (might be due to invalid IL or missing references) //IL_041a: Unknown result type (might be due to invalid IL or missing references) //IL_0420: Unknown result type (might be due to invalid IL or missing references) //IL_042a: Unknown result type (might be due to invalid IL or missing references) //IL_042f: Unknown result type (might be due to invalid IL or missing references) //IL_0435: Unknown result type (might be due to invalid IL or missing references) //IL_043f: Unknown result type (might be due to invalid IL or missing references) //IL_0444: Unknown result type (might be due to invalid IL or missing references) //IL_044a: Unknown result type (might be due to invalid IL or missing references) //IL_044f: Unknown result type (might be due to invalid IL or missing references) //IL_045a: Unknown result type (might be due to invalid IL or missing references) //IL_0460: Unknown result type (might be due to invalid IL or missing references) //IL_0465: Unknown result type (might be due to invalid IL or missing references) //IL_046b: Unknown result type (might be due to invalid IL or missing references) //IL_0470: Unknown result type (might be due to invalid IL or missing references) //IL_0476: Unknown result type (might be due to invalid IL or missing references) //IL_047b: Unknown result type (might be due to invalid IL or missing references) //IL_0481: Unknown result type (might be due to invalid IL or missing references) //IL_048b: Unknown result type (might be due to invalid IL or missing references) //IL_0490: Unknown result type (might be due to invalid IL or missing references) //IL_0496: Unknown result type (might be due to invalid IL or missing references) //IL_04a0: Unknown result type (might be due to invalid IL or missing references) //IL_04a5: Unknown result type (might be due to invalid IL or missing references) //IL_04ab: Unknown result type (might be due to invalid IL or missing references) //IL_04b5: Unknown result type (might be due to invalid IL or missing references) //IL_04ba: Unknown result type (might be due to invalid IL or missing references) //IL_04c0: Unknown result type (might be due to invalid IL or missing references) //IL_04c5: Unknown result type (might be due to invalid IL or missing references) //IL_04d1: Unknown result type (might be due to invalid IL or missing references) //IL_04eb: Unknown result type (might be due to invalid IL or missing references) //IL_04f1: Unknown result type (might be due to invalid IL or missing references) //IL_04f6: Unknown result type (might be due to invalid IL or missing references) //IL_04fc: Unknown result type (might be due to invalid IL or missing references) //IL_0501: Unknown result type (might be due to invalid IL or missing references) //IL_0507: Unknown result type (might be due to invalid IL or missing references) //IL_0511: Unknown result type (might be due to invalid IL or missing references) //IL_0516: Unknown result type (might be due to invalid IL or missing references) //IL_051c: Unknown result type (might be due to invalid IL or missing references) //IL_0526: Unknown result type (might be due to invalid IL or missing references) //IL_052b: Unknown result type (might be due to invalid IL or missing references) //IL_0531: Unknown result type (might be due to invalid IL or missing references) //IL_053b: Unknown result type (might be due to invalid IL or missing references) //IL_0540: Unknown result type (might be due to invalid IL or missing references) //IL_0546: Unknown result type (might be due to invalid IL or missing references) //IL_0550: Unknown result type (might be due to invalid IL or missing references) //IL_0555: Unknown result type (might be due to invalid IL or missing references) //IL_055b: Unknown result type (might be due to invalid IL or missing references) //IL_0560: Unknown result type (might be due to invalid IL or missing references) //IL_056b: Unknown result type (might be due to invalid IL or missing references) //IL_0571: Unknown result type (might be due to invalid IL or missing references) //IL_0576: Unknown result type (might be due to invalid IL or missing references) //IL_057c: Unknown result type (might be due to invalid IL or missing references) //IL_0581: Unknown result type (might be due to invalid IL or missing references) //IL_0587: Unknown result type (might be due to invalid IL or missing references) //IL_058c: Unknown result type (might be due to invalid IL or missing references) //IL_0592: Unknown result type (might be due to invalid IL or missing references) //IL_059c: Unknown result type (might be due to invalid IL or missing references) //IL_05a1: Unknown result type (might be due to invalid IL or missing references) //IL_05a7: Unknown result type (might be due to invalid IL or missing references) //IL_05b1: Unknown result type (might be due to invalid IL or missing references) //IL_05b6: Unknown result type (might be due to invalid IL or missing references) //IL_05bc: Unknown result type (might be due to invalid IL or missing references) //IL_05c6: Unknown result type (might be due to invalid IL or missing references) //IL_05cb: Unknown result type (might be due to invalid IL or missing references) //IL_05d1: Unknown result type (might be due to invalid IL or missing references) //IL_05d6: Unknown result type (might be due to invalid IL or missing references) //IL_05e2: Unknown result type (might be due to invalid IL or missing references) //IL_060a: Unknown result type (might be due to invalid IL or missing references) //IL_0610: Unknown result type (might be due to invalid IL or missing references) //IL_0615: Unknown result type (might be due to invalid IL or missing references) //IL_061a: Unknown result type (might be due to invalid IL or missing references) if (Input.GetAxisRaw("Horizontal") != 0f || Input.GetAxisRaw("Vertical") != 0f) { if (!currentStatesOfVariables.grounded && canGrabBackOn && !turnBack && !back2 && (!Object.op_Implicit((Object)(object)((Component)this).GetComponent()) || !((Component)this).GetComponent().climbableWallInFront) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight, new Vector3(((Component)this).transform.position.x, playerPosY + onLedgeHeight2 / 10f, ((Component)this).transform.position.z) + posChange1 - upHeight / 3f + minDistFromGroundHeight2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2, new Vector3(((Component)this).transform.position.x, playerPosY + onLedgeHeight2 / 10f, ((Component)this).transform.position.z) + posChange1 - upHeight / 3f + minDistFromGroundHeight2 - rightWidth / 4f - minDistFromGroundWidth2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2, new Vector3(((Component)this).transform.position.x, playerPosY + onLedgeHeight2 / 10f, ((Component)this).transform.position.z) + posChange1 - upHeight / 3f + minDistFromGroundHeight2 + rightWidth / 4f + minDistFromGroundWidth2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && ((Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled && characterController.velocity.y <= 0f) || (Object.op_Implicit((Object)(object)rigidBody) && !rbPosYIncreasing))) { if (climbable || climbPossible) { if (!getOn) { playerPosXZ = ((Component)this).transform.position + posChange2; getOn = true; } } else if (Object.op_Implicit((Object)(object)rigidBody) && grabbedOn && (!switching || !ledgeSwitchingDetectors.allowLedgeSwitching) && (Physics.Linecast(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight * 1.2f + forwardLength / 1.25f + upHeight * 1.5f + rightWidth / 2f + frontTopOfLedgeSurfaceDetectorsForward2, ((Component)this).transform.position + midSidePosChange + posChange2 + upHeight + forwardLength / 1.75f - upHeight / 2f + rightWidth / 2f + frontTopOfLedgeSurfaceDetectorsForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight * 1.2f + forwardLength / 1.25f + upHeight * 1.5f - rightWidth / 2f + frontTopOfLedgeSurfaceDetectorsForward2, ((Component)this).transform.position + midSidePosChange + posChange2 + upHeight + forwardLength / 1.75f - upHeight / 2f - rightWidth / 2f + frontTopOfLedgeSurfaceDetectorsForward2, ref hit, LayerMask.op_Implicit(collisionLayers))) && !getOn) { playerPosXZ = ((Component)this).transform.position + posChange2; getOn = true; } } if (currentStatesOfVariables.grounded && walkingOffLedgeDetectors.allowJumpingOffLedges && ((Vector3)(ref directionVector)).magnitude >= walkingOffLedgeDetectors.inputPercentageNeededToJump / 100f && ledgeJumpPossible && !Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 3.8f + upHeight * 0.5f + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + posChange1 + forwardLength / 3.8f - upHeight * 0.5f - spaceBelowNeededToJump2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + forwardLength / 1.48f + upHeight * 0.5f + spaceInFrontNeededToGrabBackOn2, ((Component)this).transform.position + posChange1 + forwardLength / 1.48f - upHeight * 0.5f + spaceInFrontNeededToGrabBackOn2 - spaceBelowNeededToJump2, ref hit, LayerMask.op_Implicit(collisionLayers))) { canJumpOffLedge = true; } else { canJumpOffLedge = false; } if (!axisInUse || (climbingDetectors.automaticallyClimbOverGroundLedgeIfColliding && !grabbedOn && currentStatesOfVariables.grounded && climbingDetectors.allowClimbingOverLedgesIfOnGround)) { if (climbable && climbableL && climbableR && !turnBack && !back2 && !Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight, ((Component)this).transform.position + posChange2 + upHeight * 2.5f + spaceAboveHeadNeededToClimbUp2, ref hit, LayerMask.op_Implicit(collisionLayers) | 0x10) && ((!grabbedOn && climbingDetectors.allowClimbingOverLedgesIfOnGround) || (grabbedOn && Input.GetAxisRaw("Vertical") >= 0.5f && climbingDetectors.allowClimbingOverLedgesIfInAir))) { getOn2 = true; } axisInUse = true; } } else { axisInUse = false; } if (Mathf.Abs(Input.GetAxis("Horizontal")) < 0.25f && (climbingDetectors.climbOverLedgesWithoutLettingGoOfJoystickFirst || ((Vector3)(ref directionVector)).magnitude < Mathf.Abs(axisBeforeGrab) - 0.2f || (Mathf.Abs(axisBeforeGrab) <= 0.2f && Input.GetAxis("Vertical") < 0.5f))) { axisInUse = false; } else { axisInUse = true; } } private void DropOffLedge() { //IL_0022: Unknown result type (might be due to invalid IL or missing references) //IL_0028: Unknown result type (might be due to invalid IL or missing references) //IL_002d: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_003d: Unknown result type (might be due to invalid IL or missing references) //IL_0042: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_0052: Unknown result type (might be due to invalid IL or missing references) //IL_0063: Unknown result type (might be due to invalid IL or missing references) //IL_007d: Unknown result type (might be due to invalid IL or missing references) //IL_0083: Unknown result type (might be due to invalid IL or missing references) //IL_0088: Unknown result type (might be due to invalid IL or missing references) //IL_008e: Unknown result type (might be due to invalid IL or missing references) //IL_0094: Unknown result type (might be due to invalid IL or missing references) //IL_0099: Unknown result type (might be due to invalid IL or missing references) //IL_00a3: Unknown result type (might be due to invalid IL or missing references) //IL_00a8: Unknown result type (might be due to invalid IL or missing references) //IL_00ae: Unknown result type (might be due to invalid IL or missing references) //IL_00b8: Unknown result type (might be due to invalid IL or missing references) //IL_00c9: Unknown result type (might be due to invalid IL or missing references) //IL_00e3: Unknown result type (might be due to invalid IL or missing references) //IL_00e9: Unknown result type (might be due to invalid IL or missing references) //IL_00ee: Unknown result type (might be due to invalid IL or missing references) //IL_00f4: Unknown result type (might be due to invalid IL or missing references) //IL_00fa: Unknown result type (might be due to invalid IL or missing references) //IL_00ff: Unknown result type (might be due to invalid IL or missing references) //IL_0109: Unknown result type (might be due to invalid IL or missing references) //IL_010e: Unknown result type (might be due to invalid IL or missing references) //IL_0114: Unknown result type (might be due to invalid IL or missing references) //IL_0125: Unknown result type (might be due to invalid IL or missing references) //IL_013f: Unknown result type (might be due to invalid IL or missing references) //IL_0145: Unknown result type (might be due to invalid IL or missing references) //IL_014a: Unknown result type (might be due to invalid IL or missing references) //IL_0150: Unknown result type (might be due to invalid IL or missing references) //IL_0155: Unknown result type (might be due to invalid IL or missing references) //IL_015b: Unknown result type (might be due to invalid IL or missing references) //IL_0165: Unknown result type (might be due to invalid IL or missing references) //IL_016a: Unknown result type (might be due to invalid IL or missing references) //IL_0170: Unknown result type (might be due to invalid IL or missing references) //IL_0176: Unknown result type (might be due to invalid IL or missing references) //IL_0180: Unknown result type (might be due to invalid IL or missing references) //IL_0185: Unknown result type (might be due to invalid IL or missing references) //IL_0196: Unknown result type (might be due to invalid IL or missing references) //IL_01b0: Unknown result type (might be due to invalid IL or missing references) //IL_01b6: Unknown result type (might be due to invalid IL or missing references) //IL_01bb: Unknown result type (might be due to invalid IL or missing references) //IL_01c1: Unknown result type (might be due to invalid IL or missing references) //IL_01c6: Unknown result type (might be due to invalid IL or missing references) //IL_01cc: Unknown result type (might be due to invalid IL or missing references) //IL_01d6: Unknown result type (might be due to invalid IL or missing references) //IL_01db: Unknown result type (might be due to invalid IL or missing references) //IL_01e1: Unknown result type (might be due to invalid IL or missing references) //IL_01e7: Unknown result type (might be due to invalid IL or missing references) //IL_01f1: Unknown result type (might be due to invalid IL or missing references) //IL_01f6: Unknown result type (might be due to invalid IL or missing references) //IL_0207: Unknown result type (might be due to invalid IL or missing references) //IL_0221: Unknown result type (might be due to invalid IL or missing references) //IL_0227: Unknown result type (might be due to invalid IL or missing references) //IL_022c: Unknown result type (might be due to invalid IL or missing references) //IL_0232: Unknown result type (might be due to invalid IL or missing references) //IL_0238: Unknown result type (might be due to invalid IL or missing references) //IL_023d: Unknown result type (might be due to invalid IL or missing references) //IL_0247: Unknown result type (might be due to invalid IL or missing references) //IL_024c: Unknown result type (might be due to invalid IL or missing references) //IL_0252: Unknown result type (might be due to invalid IL or missing references) //IL_025c: Unknown result type (might be due to invalid IL or missing references) //IL_0262: Unknown result type (might be due to invalid IL or missing references) //IL_026c: Unknown result type (might be due to invalid IL or missing references) //IL_0271: Unknown result type (might be due to invalid IL or missing references) //IL_0282: Unknown result type (might be due to invalid IL or missing references) //IL_096e: Unknown result type (might be due to invalid IL or missing references) //IL_0973: Unknown result type (might be due to invalid IL or missing references) //IL_097e: Unknown result type (might be due to invalid IL or missing references) //IL_0983: Unknown result type (might be due to invalid IL or missing references) //IL_029c: Unknown result type (might be due to invalid IL or missing references) //IL_02a2: Unknown result type (might be due to invalid IL or missing references) //IL_02a7: Unknown result type (might be due to invalid IL or missing references) //IL_02ad: Unknown result type (might be due to invalid IL or missing references) //IL_02b3: Unknown result type (might be due to invalid IL or missing references) //IL_02b8: Unknown result type (might be due to invalid IL or missing references) //IL_02c2: Unknown result type (might be due to invalid IL or missing references) //IL_02c7: Unknown result type (might be due to invalid IL or missing references) //IL_02cd: Unknown result type (might be due to invalid IL or missing references) //IL_02d7: Unknown result type (might be due to invalid IL or missing references) //IL_02dd: Unknown result type (might be due to invalid IL or missing references) //IL_02e7: Unknown result type (might be due to invalid IL or missing references) //IL_02ec: Unknown result type (might be due to invalid IL or missing references) //IL_02fd: Unknown result type (might be due to invalid IL or missing references) //IL_0761: Unknown result type (might be due to invalid IL or missing references) //IL_0767: Unknown result type (might be due to invalid IL or missing references) //IL_076c: Unknown result type (might be due to invalid IL or missing references) //IL_0772: Unknown result type (might be due to invalid IL or missing references) //IL_0777: Unknown result type (might be due to invalid IL or missing references) //IL_0782: Unknown result type (might be due to invalid IL or missing references) //IL_0787: Unknown result type (might be due to invalid IL or missing references) //IL_07a8: Unknown result type (might be due to invalid IL or missing references) //IL_07ad: Unknown result type (might be due to invalid IL or missing references) //IL_07b5: Unknown result type (might be due to invalid IL or missing references) //IL_07bb: Unknown result type (might be due to invalid IL or missing references) //IL_07c0: Unknown result type (might be due to invalid IL or missing references) //IL_07c6: Unknown result type (might be due to invalid IL or missing references) //IL_07d0: Unknown result type (might be due to invalid IL or missing references) //IL_07d5: Unknown result type (might be due to invalid IL or missing references) //IL_07db: Unknown result type (might be due to invalid IL or missing references) //IL_07e0: Unknown result type (might be due to invalid IL or missing references) //IL_07ec: Unknown result type (might be due to invalid IL or missing references) //IL_06dc: Unknown result type (might be due to invalid IL or missing references) //IL_06e7: Unknown result type (might be due to invalid IL or missing references) //IL_0317: Unknown result type (might be due to invalid IL or missing references) //IL_031d: Unknown result type (might be due to invalid IL or missing references) //IL_0322: Unknown result type (might be due to invalid IL or missing references) //IL_0328: Unknown result type (might be due to invalid IL or missing references) //IL_032d: Unknown result type (might be due to invalid IL or missing references) //IL_0333: Unknown result type (might be due to invalid IL or missing references) //IL_033d: Unknown result type (might be due to invalid IL or missing references) //IL_0342: Unknown result type (might be due to invalid IL or missing references) //IL_0348: Unknown result type (might be due to invalid IL or missing references) //IL_034e: Unknown result type (might be due to invalid IL or missing references) //IL_0358: Unknown result type (might be due to invalid IL or missing references) //IL_035d: Unknown result type (might be due to invalid IL or missing references) //IL_036e: Unknown result type (might be due to invalid IL or missing references) //IL_0388: Unknown result type (might be due to invalid IL or missing references) //IL_038e: Unknown result type (might be due to invalid IL or missing references) //IL_0393: Unknown result type (might be due to invalid IL or missing references) //IL_0399: Unknown result type (might be due to invalid IL or missing references) //IL_039e: Unknown result type (might be due to invalid IL or missing references) //IL_03a4: Unknown result type (might be due to invalid IL or missing references) //IL_03ae: Unknown result type (might be due to invalid IL or missing references) //IL_03b3: Unknown result type (might be due to invalid IL or missing references) //IL_03b9: Unknown result type (might be due to invalid IL or missing references) //IL_03bf: Unknown result type (might be due to invalid IL or missing references) //IL_03c9: Unknown result type (might be due to invalid IL or missing references) //IL_03ce: Unknown result type (might be due to invalid IL or missing references) //IL_03df: Unknown result type (might be due to invalid IL or missing references) //IL_03f9: Unknown result type (might be due to invalid IL or missing references) //IL_03ff: Unknown result type (might be due to invalid IL or missing references) //IL_0404: Unknown result type (might be due to invalid IL or missing references) //IL_040a: Unknown result type (might be due to invalid IL or missing references) //IL_0410: Unknown result type (might be due to invalid IL or missing references) //IL_0415: Unknown result type (might be due to invalid IL or missing references) //IL_041f: Unknown result type (might be due to invalid IL or missing references) //IL_0424: Unknown result type (might be due to invalid IL or missing references) //IL_042a: Unknown result type (might be due to invalid IL or missing references) //IL_043b: Unknown result type (might be due to invalid IL or missing references) //IL_0455: Unknown result type (might be due to invalid IL or missing references) //IL_045b: Unknown result type (might be due to invalid IL or missing references) //IL_0460: Unknown result type (might be due to invalid IL or missing references) //IL_0466: Unknown result type (might be due to invalid IL or missing references) //IL_046c: Unknown result type (might be due to invalid IL or missing references) //IL_0471: Unknown result type (might be due to invalid IL or missing references) //IL_047b: Unknown result type (might be due to invalid IL or missing references) //IL_0480: Unknown result type (might be due to invalid IL or missing references) //IL_0486: Unknown result type (might be due to invalid IL or missing references) //IL_048c: Unknown result type (might be due to invalid IL or missing references) //IL_0496: Unknown result type (might be due to invalid IL or missing references) //IL_049b: Unknown result type (might be due to invalid IL or missing references) //IL_04ac: Unknown result type (might be due to invalid IL or missing references) //IL_04c6: Unknown result type (might be due to invalid IL or missing references) //IL_04cc: Unknown result type (might be due to invalid IL or missing references) //IL_04d1: Unknown result type (might be due to invalid IL or missing references) //IL_04d7: Unknown result type (might be due to invalid IL or missing references) //IL_04dd: Unknown result type (might be due to invalid IL or missing references) //IL_04e2: Unknown result type (might be due to invalid IL or missing references) //IL_04ec: Unknown result type (might be due to invalid IL or missing references) //IL_04f1: Unknown result type (might be due to invalid IL or missing references) //IL_04f7: Unknown result type (might be due to invalid IL or missing references) //IL_04fd: Unknown result type (might be due to invalid IL or missing references) //IL_0507: Unknown result type (might be due to invalid IL or missing references) //IL_050c: Unknown result type (might be due to invalid IL or missing references) //IL_051d: Unknown result type (might be due to invalid IL or missing references) //IL_0537: Unknown result type (might be due to invalid IL or missing references) //IL_053d: Unknown result type (might be due to invalid IL or missing references) //IL_0542: Unknown result type (might be due to invalid IL or missing references) //IL_0548: Unknown result type (might be due to invalid IL or missing references) //IL_054e: Unknown result type (might be due to invalid IL or missing references) //IL_0553: Unknown result type (might be due to invalid IL or missing references) //IL_055d: Unknown result type (might be due to invalid IL or missing references) //IL_0562: Unknown result type (might be due to invalid IL or missing references) //IL_0568: Unknown result type (might be due to invalid IL or missing references) //IL_0572: Unknown result type (might be due to invalid IL or missing references) //IL_0578: Unknown result type (might be due to invalid IL or missing references) //IL_0582: Unknown result type (might be due to invalid IL or missing references) //IL_0587: Unknown result type (might be due to invalid IL or missing references) //IL_058d: Unknown result type (might be due to invalid IL or missing references) //IL_0593: Unknown result type (might be due to invalid IL or missing references) //IL_0598: Unknown result type (might be due to invalid IL or missing references) //IL_05a2: Unknown result type (might be due to invalid IL or missing references) //IL_05a7: Unknown result type (might be due to invalid IL or missing references) //IL_05b8: Unknown result type (might be due to invalid IL or missing references) //IL_05d2: Unknown result type (might be due to invalid IL or missing references) //IL_05d8: Unknown result type (might be due to invalid IL or missing references) //IL_05dd: Unknown result type (might be due to invalid IL or missing references) //IL_05e3: Unknown result type (might be due to invalid IL or missing references) //IL_05e9: Unknown result type (might be due to invalid IL or missing references) //IL_05ee: Unknown result type (might be due to invalid IL or missing references) //IL_05f8: Unknown result type (might be due to invalid IL or missing references) //IL_05fd: Unknown result type (might be due to invalid IL or missing references) //IL_0603: Unknown result type (might be due to invalid IL or missing references) //IL_060d: Unknown result type (might be due to invalid IL or missing references) //IL_0613: Unknown result type (might be due to invalid IL or missing references) //IL_061d: Unknown result type (might be due to invalid IL or missing references) //IL_0622: Unknown result type (might be due to invalid IL or missing references) //IL_0628: Unknown result type (might be due to invalid IL or missing references) //IL_062e: Unknown result type (might be due to invalid IL or missing references) //IL_0633: Unknown result type (might be due to invalid IL or missing references) //IL_063d: Unknown result type (might be due to invalid IL or missing references) //IL_0642: Unknown result type (might be due to invalid IL or missing references) //IL_0653: Unknown result type (might be due to invalid IL or missing references) if (grabbedOn && rotationState == 0f && !Physics.Raycast(((Component)this).transform.position + posChange2 + midSidePosChange * 0.5f, forwardLength / 4f, ref hit, 1f, LayerMask.op_Implicit(collisionLayers)) && !Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 0.5f, forwardLength / 4f, ref hit, 1f, LayerMask.op_Implicit(collisionLayers)) && !Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 1.1f, forwardLength, ref hit, 1f, LayerMask.op_Implicit(collisionLayers)) && !Physics.Raycast(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight * 1.1f, forwardLength + rightWidth / 2f, ref hit, 1f, LayerMask.op_Implicit(collisionLayers)) && !Physics.Raycast(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight * 1.1f, forwardLength - rightWidth / 2f, ref hit, 1f, LayerMask.op_Implicit(collisionLayers)) && !Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 0.5f, forwardLength / 4f + rightWidth / 2f, ref hit, 1f, LayerMask.op_Implicit(collisionLayers)) && !Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 0.5f, forwardLength / 4f - rightWidth / 2f, ref hit, 1f, LayerMask.op_Implicit(collisionLayers)) && !Physics.Raycast(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight * 1.1f, forwardLength + rightWidth / 2f, ref hit, 1f, LayerMask.op_Implicit(collisionLayers)) && !Physics.Raycast(((Component)this).transform.position + midSidePosChange + posChange2 + upHeight * 1.1f, forwardLength - rightWidth / 2f, ref hit, 1f, LayerMask.op_Implicit(collisionLayers)) && !Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 1.1f, forwardLength, ref hit, 1f, LayerMask.op_Implicit(collisionLayers)) && !Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 1.1f, forwardLength + rightWidth / 2f, ref hit, 1f, LayerMask.op_Implicit(collisionLayers)) && !Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 1.1f, forwardLength - rightWidth / 2f, ref hit, 1f, LayerMask.op_Implicit(collisionLayers)) && !Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 0.5f, forwardLength / 4f + rightWidth / 2f + (upHeight + midSidePosChange) * 0.5f, ref hit, 0.7f, LayerMask.op_Implicit(collisionLayers)) && !Physics.Raycast(((Component)this).transform.position + posChange2 + (upHeight + midSidePosChange) * 0.5f, forwardLength / 4f - rightWidth / 2f + (upHeight + midSidePosChange) * 0.5f, ref hit, 0.7f, LayerMask.op_Implicit(collisionLayers))) { inMidAir = true; } else { inMidAir = false; } if ((climbPossible || climbable || left || right || !grabbedOn || ((switching || switchJumping) && ledgeSwitchingDetectors.allowLedgeSwitching) || !(Quaternion.Angle(lastRot, ((Component)this).transform.rotation) <= 0.1f)) && (!Input.GetButtonDown("Jump") || !grabbedOn) && (!Input.GetButtonDown("Jump") || !pullingUp) && ((!inMidAir && (!grabbedOn || turnBack || back2 || !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight, new Vector3(((Component)this).transform.position.x, playerPosY + onLedgeHeight2 / 10f, ((Component)this).transform.position.z) + posChange1 - upHeight / 4.01f + minDistFromGroundHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)))) || (switching && ledgeSwitchingDetectors.allowLedgeSwitching))) { return; } if (scriptsToDisableOnGrab != null) { string[] array = scriptsToDisableOnGrab; foreach (string text in array) { ref MonoBehaviour reference = ref scriptToDisable; Component component = ((Component)this).GetComponent(text); reference = (MonoBehaviour)(object)((component is MonoBehaviour) ? component : null); if ((Object)(object)scriptToDisable != (Object)null) { ((Behaviour)scriptToDisable).enabled = true; } else if (!currentlyEnablingAndDisablingScripts || grabbedOn || pullingUp) { scriptWarning = true; } } } if (scriptsToEnableOnGrab != null) { string[] array2 = scriptsToEnableOnGrab; foreach (string text2 in array2) { ref MonoBehaviour reference2 = ref scriptToEnable; Component component2 = ((Component)this).GetComponent(text2); reference2 = (MonoBehaviour)(object)((component2 is MonoBehaviour) ? component2 : null); if ((Object)(object)scriptToEnable != (Object)null) { ((Behaviour)scriptToEnable).enabled = false; } else if (!currentlyEnablingAndDisablingScripts || grabbedOn || pullingUp) { scriptWarning = true; } } } currentlyEnablingAndDisablingScripts = true; if (!inMidAir) { jumpedOffTimer = 0f; jumpedOffDirection = -((Component)this).transform.forward * distanceToPushOffOfLedgeAfterLettingGo; } if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { ((Component)this).GetComponent().speed = 1f; } getOn = false; getOn2 = false; pullingUp = false; grabbedOn = false; turnBack = false; } private void PushOffLedge() { //IL_0026: Unknown result type (might be due to invalid IL or missing references) //IL_002b: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0040: Unknown result type (might be due to invalid IL or missing references) //IL_00a5: Unknown result type (might be due to invalid IL or missing references) //IL_00ab: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) //IL_00ba: Unknown result type (might be due to invalid IL or missing references) //IL_006d: Unknown result type (might be due to invalid IL or missing references) //IL_0077: Unknown result type (might be due to invalid IL or missing references) //IL_007c: Unknown result type (might be due to invalid IL or missing references) jumpedOffTimer += 0.02f; if (jumpedOffTimer < 0.3f) { jumpedOffDirection = Vector3.Slerp(jumpedOffDirection, Vector3.zero, 8f * Time.deltaTime); if (Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled) { characterController.Move(jumpedOffDirection * Time.deltaTime); } else if (Object.op_Implicit((Object)(object)rigidBody)) { rigidBody.MovePosition(((Component)this).transform.position + jumpedOffDirection * Time.deltaTime); } } } private void GetLedgeSwitchInfo() { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0049: Unknown result type (might be due to invalid IL or missing references) //IL_004e: Unknown result type (might be due to invalid IL or missing references) if (lastRot == ((Component)this).transform.rotation) { rotTimer += 0.01f; } else { rotTimer = 0f; } lastRot = ((Component)this).transform.rotation; ActivateLedgeSwitchClearDetectors(); ActivateLedgeSwitchHitPointDetectors(); } private void ActivateLedgeSwitchClearDetectors() { LedgeSwitchingClearSecondFrontLeft(); LedgeSwitchingClearFirstFrontLeft(); LedgeSwitchingClearMiddleLeft(); LedgeSwitchingClearFirstBackLeft(); LedgeSwitchingClearSecondBackLeft(); LedgeSwitchingClearSecondFrontRight(); LedgeSwitchingClearFirstFrontRight(); LedgeSwitchingClearMiddleRight(); LedgeSwitchingClearFirstBackRight(); LedgeSwitchingClearSecondBackRight(); } private void ActivateLedgeSwitchHitPointDetectors() { LedgeSwitchHitPointsSecondFrontLeft(); LedgeSwitchHitPointsFirstFrontLeft(); LedgeSwitchHitPointsMiddleLeft(); LedgeSwitchHitPointsFirstBackLeft(); LedgeSwitchHitPointsSecondBackLeft(); LedgeSwitchHitPointsThirdBackLeft(); LedgeSwitchHitPointsSecondFrontRight(); LedgeSwitchHitPointsFirstFrontRight(); LedgeSwitchHitPointsMiddleRight(); LedgeSwitchHitPointsFirstBackRight(); LedgeSwitchHitPointsSecondBackRight(); LedgeSwitchHitPointsThirdBackRight(); } private void EnableAndDisableScripts() { if (scriptsToDisableOnGrab != null) { string[] array = scriptsToDisableOnGrab; foreach (string text in array) { ref MonoBehaviour reference = ref scriptToDisable; Component component = ((Component)this).GetComponent(text); reference = (MonoBehaviour)(object)((component is MonoBehaviour) ? component : null); if ((Object)(object)scriptToDisable != (Object)null) { ((Behaviour)scriptToDisable).enabled = false; } else if (!currentlyEnablingAndDisablingScripts) { scriptWarning = true; } } } if (scriptsToEnableOnGrab != null) { string[] array2 = scriptsToEnableOnGrab; foreach (string text2 in array2) { ref MonoBehaviour reference2 = ref scriptToEnable; Component component2 = ((Component)this).GetComponent(text2); reference2 = (MonoBehaviour)(object)((component2 is MonoBehaviour) ? component2 : null); if ((Object)(object)scriptToEnable != (Object)null) { ((Behaviour)scriptToEnable).enabled = true; } else if (!currentlyEnablingAndDisablingScripts) { scriptWarning = true; } } } currentlyEnablingAndDisablingScripts = true; } private void ScriptWarning() { //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003e: Unknown result type (might be due to invalid IL or missing references) if (!pullingUp && !turnBack && !back2 && !grabbedOn && !inAirFromJumpingOffLedge && jumpDir == Vector3.zero) { currentlyEnablingAndDisablingScripts = false; } if (!scriptWarning) { return; } if (scriptsToDisableOnGrab != null) { string[] array = scriptsToDisableOnGrab; foreach (string text in array) { ref MonoBehaviour reference = ref scriptToDisable; Component component = ((Component)this).GetComponent(text); reference = (MonoBehaviour)(object)((component is MonoBehaviour) ? component : null); if ((Object)(object)scriptToDisable == (Object)null) { Debug.Log((object)("The script to disable on grab named: \"" + text + "\" was not found on the player")); } } } if (scriptsToEnableOnGrab != null) { string[] array2 = scriptsToEnableOnGrab; foreach (string text2 in array2) { ref MonoBehaviour reference2 = ref scriptToEnable; Component component2 = ((Component)this).GetComponent(text2); reference2 = (MonoBehaviour)(object)((component2 is MonoBehaviour) ? component2 : null); if ((Object)(object)scriptToEnable == (Object)null) { Debug.Log((object)("The script to enable on grab named: \"" + text2 + "\" was not found on the player")); } } } scriptWarning = false; } private void LeftMovement() { //IL_0022: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Unknown result type (might be due to invalid IL or missing references) //IL_033b: Unknown result type (might be due to invalid IL or missing references) //IL_0346: Unknown result type (might be due to invalid IL or missing references) //IL_034b: Unknown result type (might be due to invalid IL or missing references) //IL_01a2: Unknown result type (might be due to invalid IL or missing references) //IL_01a7: Unknown result type (might be due to invalid IL or missing references) //IL_01db: Unknown result type (might be due to invalid IL or missing references) //IL_01e0: Unknown result type (might be due to invalid IL or missing references) //IL_01f0: Unknown result type (might be due to invalid IL or missing references) //IL_01fb: Unknown result type (might be due to invalid IL or missing references) //IL_0200: Unknown result type (might be due to invalid IL or missing references) //IL_0206: Unknown result type (might be due to invalid IL or missing references) //IL_020b: Unknown result type (might be due to invalid IL or missing references) //IL_0210: Unknown result type (might be due to invalid IL or missing references) //IL_0213: Unknown result type (might be due to invalid IL or missing references) //IL_022a: Unknown result type (might be due to invalid IL or missing references) //IL_022f: Unknown result type (might be due to invalid IL or missing references) //IL_02c0: Unknown result type (might be due to invalid IL or missing references) //IL_02c5: Unknown result type (might be due to invalid IL or missing references) //IL_02e6: Unknown result type (might be due to invalid IL or missing references) //IL_02eb: Unknown result type (might be due to invalid IL or missing references) //IL_02f4: Unknown result type (might be due to invalid IL or missing references) //IL_0294: Unknown result type (might be due to invalid IL or missing references) //IL_029a: Unknown result type (might be due to invalid IL or missing references) //IL_02a4: Unknown result type (might be due to invalid IL or missing references) //IL_02a9: Unknown result type (might be due to invalid IL or missing references) //IL_025c: Unknown result type (might be due to invalid IL or missing references) //IL_0266: Unknown result type (might be due to invalid IL or missing references) //IL_026b: Unknown result type (might be due to invalid IL or missing references) if (!left) { return; } if (Input.GetAxis("Horizontal") < 0f && lSide != Vector3.zero && !stuckToLeft) { if (!leftBlocked) { LeftSwitchPointDetecting(); } if (!switching || !ledgeSwitchingDetectors.allowLedgeSwitching) { if (movingDetectors.moveInBursts) { if (startingLeft) { movementSpeed = Mathf.Lerp(movementSpeed, movingDetectors.moveSpeed, (2f + movingDetectors.moveSpeed) * (movementSpeed / 2f + 1f) / movingDetectors.burstLength * Time.deltaTime); } else { movementSpeed = Mathf.Lerp(movementSpeed, 0f, (2f + movingDetectors.moveSpeed) * (movementSpeed / 2f + 1f) / movingDetectors.burstLength * Time.deltaTime); } if (movingDetectors.moveSpeed - movementSpeed < 0.1f) { startingLeft = false; } else if (movementSpeed < 0.1f) { startingLeft = true; } } else { movementSpeed = movingDetectors.moveSpeed; } Vector3 val = new Vector3(lSide.x - ((Component)this).transform.forward.x * colliderLengthFromCenter, playerPosY + onLedgeHeight2 / 10f, lSide.z - ((Component)this).transform.forward.z * colliderLengthFromCenter) - ((Component)this).transform.position + posChange2; movementVector = ((Vector3)(ref val)).normalized * (movementSpeed * ((Vector3)(ref directionVector)).magnitude); if (Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled) { characterController.Move(movementVector * Time.deltaTime); } else if (Object.op_Implicit((Object)(object)rigidBody)) { rigidBody.MovePosition(((Component)this).transform.position + movementVector * Time.deltaTime); } ((Component)this).transform.position = new Vector3(((Component)this).transform.position.x, playerPosY + onLedgeHeight2 / 10f, ((Component)this).transform.position.z); } } else if (Object.op_Implicit((Object)(object)rigidBody) && (Input.GetAxis("Horizontal") == 0f || stuckToLeft)) { rigidBody.velocity = Vector3.zero; movementVector = Vector3.zero; } if (Input.GetAxis("Horizontal") >= 0f) { startingLeft = true; } } private void LeftSwitchPointDetecting() { //IL_05ac: Unknown result type (might be due to invalid IL or missing references) //IL_05b2: Unknown result type (might be due to invalid IL or missing references) //IL_05b7: Unknown result type (might be due to invalid IL or missing references) //IL_05bc: Unknown result type (might be due to invalid IL or missing references) //IL_05c3: Unknown result type (might be due to invalid IL or missing references) //IL_05c8: Unknown result type (might be due to invalid IL or missing references) //IL_05d4: Unknown result type (might be due to invalid IL or missing references) //IL_05da: Unknown result type (might be due to invalid IL or missing references) //IL_05f0: Unknown result type (might be due to invalid IL or missing references) //IL_05f6: Unknown result type (might be due to invalid IL or missing references) //IL_05fb: Unknown result type (might be due to invalid IL or missing references) //IL_0605: Unknown result type (might be due to invalid IL or missing references) //IL_060b: Unknown result type (might be due to invalid IL or missing references) //IL_0621: Unknown result type (might be due to invalid IL or missing references) //IL_0644: Unknown result type (might be due to invalid IL or missing references) //IL_0649: Unknown result type (might be due to invalid IL or missing references) //IL_064e: Unknown result type (might be due to invalid IL or missing references) //IL_04a9: Unknown result type (might be due to invalid IL or missing references) //IL_04af: Unknown result type (might be due to invalid IL or missing references) //IL_04b4: Unknown result type (might be due to invalid IL or missing references) //IL_04b9: Unknown result type (might be due to invalid IL or missing references) //IL_04c0: Unknown result type (might be due to invalid IL or missing references) //IL_04c5: Unknown result type (might be due to invalid IL or missing references) //IL_04d1: Unknown result type (might be due to invalid IL or missing references) //IL_04d7: Unknown result type (might be due to invalid IL or missing references) //IL_04ed: Unknown result type (might be due to invalid IL or missing references) //IL_04f3: Unknown result type (might be due to invalid IL or missing references) //IL_04f8: Unknown result type (might be due to invalid IL or missing references) //IL_0502: Unknown result type (might be due to invalid IL or missing references) //IL_0508: Unknown result type (might be due to invalid IL or missing references) //IL_051e: Unknown result type (might be due to invalid IL or missing references) //IL_0541: Unknown result type (might be due to invalid IL or missing references) //IL_0546: Unknown result type (might be due to invalid IL or missing references) //IL_054b: Unknown result type (might be due to invalid IL or missing references) //IL_0390: Unknown result type (might be due to invalid IL or missing references) //IL_0396: Unknown result type (might be due to invalid IL or missing references) //IL_039b: Unknown result type (might be due to invalid IL or missing references) //IL_03a0: Unknown result type (might be due to invalid IL or missing references) //IL_03a7: Unknown result type (might be due to invalid IL or missing references) //IL_03ac: Unknown result type (might be due to invalid IL or missing references) //IL_03b8: Unknown result type (might be due to invalid IL or missing references) //IL_03be: Unknown result type (might be due to invalid IL or missing references) //IL_03d4: Unknown result type (might be due to invalid IL or missing references) //IL_03da: Unknown result type (might be due to invalid IL or missing references) //IL_03df: Unknown result type (might be due to invalid IL or missing references) //IL_03e9: Unknown result type (might be due to invalid IL or missing references) //IL_03ef: Unknown result type (might be due to invalid IL or missing references) //IL_0405: Unknown result type (might be due to invalid IL or missing references) //IL_0428: Unknown result type (might be due to invalid IL or missing references) //IL_042d: Unknown result type (might be due to invalid IL or missing references) //IL_0432: Unknown result type (might be due to invalid IL or missing references) //IL_0261: Unknown result type (might be due to invalid IL or missing references) //IL_0267: Unknown result type (might be due to invalid IL or missing references) //IL_026c: Unknown result type (might be due to invalid IL or missing references) //IL_0271: Unknown result type (might be due to invalid IL or missing references) //IL_0278: Unknown result type (might be due to invalid IL or missing references) //IL_027d: Unknown result type (might be due to invalid IL or missing references) //IL_0289: Unknown result type (might be due to invalid IL or missing references) //IL_028f: Unknown result type (might be due to invalid IL or missing references) //IL_02a5: Unknown result type (might be due to invalid IL or missing references) //IL_02ab: Unknown result type (might be due to invalid IL or missing references) //IL_02b0: Unknown result type (might be due to invalid IL or missing references) //IL_02ba: Unknown result type (might be due to invalid IL or missing references) //IL_02c0: Unknown result type (might be due to invalid IL or missing references) //IL_02d6: Unknown result type (might be due to invalid IL or missing references) //IL_02f9: Unknown result type (might be due to invalid IL or missing references) //IL_02fe: Unknown result type (might be due to invalid IL or missing references) //IL_0303: Unknown result type (might be due to invalid IL or missing references) //IL_011c: Unknown result type (might be due to invalid IL or missing references) //IL_0122: Unknown result type (might be due to invalid IL or missing references) //IL_0127: Unknown result type (might be due to invalid IL or missing references) //IL_012c: Unknown result type (might be due to invalid IL or missing references) //IL_0133: Unknown result type (might be due to invalid IL or missing references) //IL_0138: Unknown result type (might be due to invalid IL or missing references) //IL_0144: Unknown result type (might be due to invalid IL or missing references) //IL_014a: Unknown result type (might be due to invalid IL or missing references) //IL_0160: Unknown result type (might be due to invalid IL or missing references) //IL_0166: Unknown result type (might be due to invalid IL or missing references) //IL_016b: Unknown result type (might be due to invalid IL or missing references) //IL_0175: Unknown result type (might be due to invalid IL or missing references) //IL_017b: Unknown result type (might be due to invalid IL or missing references) //IL_0191: Unknown result type (might be due to invalid IL or missing references) //IL_01b4: Unknown result type (might be due to invalid IL or missing references) //IL_01b9: Unknown result type (might be due to invalid IL or missing references) //IL_01be: Unknown result type (might be due to invalid IL or missing references) //IL_0b8c: Unknown result type (might be due to invalid IL or missing references) //IL_0b92: Unknown result type (might be due to invalid IL or missing references) //IL_0b97: Unknown result type (might be due to invalid IL or missing references) //IL_0b9c: Unknown result type (might be due to invalid IL or missing references) //IL_0ba3: Unknown result type (might be due to invalid IL or missing references) //IL_0ba8: Unknown result type (might be due to invalid IL or missing references) //IL_0bb4: Unknown result type (might be due to invalid IL or missing references) //IL_0bba: Unknown result type (might be due to invalid IL or missing references) //IL_0bd0: Unknown result type (might be due to invalid IL or missing references) //IL_0bd6: Unknown result type (might be due to invalid IL or missing references) //IL_0bdb: Unknown result type (might be due to invalid IL or missing references) //IL_0be5: Unknown result type (might be due to invalid IL or missing references) //IL_0beb: Unknown result type (might be due to invalid IL or missing references) //IL_0c01: Unknown result type (might be due to invalid IL or missing references) //IL_0c24: Unknown result type (might be due to invalid IL or missing references) //IL_0c29: Unknown result type (might be due to invalid IL or missing references) //IL_0c2e: Unknown result type (might be due to invalid IL or missing references) //IL_0a89: Unknown result type (might be due to invalid IL or missing references) //IL_0a8f: Unknown result type (might be due to invalid IL or missing references) //IL_0a94: Unknown result type (might be due to invalid IL or missing references) //IL_0a99: Unknown result type (might be due to invalid IL or missing references) //IL_0aa0: Unknown result type (might be due to invalid IL or missing references) //IL_0aa5: Unknown result type (might be due to invalid IL or missing references) //IL_0ab1: Unknown result type (might be due to invalid IL or missing references) //IL_0ab7: Unknown result type (might be due to invalid IL or missing references) //IL_0acd: Unknown result type (might be due to invalid IL or missing references) //IL_0ad3: Unknown result type (might be due to invalid IL or missing references) //IL_0ad8: Unknown result type (might be due to invalid IL or missing references) //IL_0ae2: Unknown result type (might be due to invalid IL or missing references) //IL_0ae8: Unknown result type (might be due to invalid IL or missing references) //IL_0afe: Unknown result type (might be due to invalid IL or missing references) //IL_0b21: Unknown result type (might be due to invalid IL or missing references) //IL_0b26: Unknown result type (might be due to invalid IL or missing references) //IL_0b2b: Unknown result type (might be due to invalid IL or missing references) //IL_0970: Unknown result type (might be due to invalid IL or missing references) //IL_0976: Unknown result type (might be due to invalid IL or missing references) //IL_097b: Unknown result type (might be due to invalid IL or missing references) //IL_0980: Unknown result type (might be due to invalid IL or missing references) //IL_0987: Unknown result type (might be due to invalid IL or missing references) //IL_098c: Unknown result type (might be due to invalid IL or missing references) //IL_0998: Unknown result type (might be due to invalid IL or missing references) //IL_099e: Unknown result type (might be due to invalid IL or missing references) //IL_09b4: Unknown result type (might be due to invalid IL or missing references) //IL_09ba: Unknown result type (might be due to invalid IL or missing references) //IL_09bf: Unknown result type (might be due to invalid IL or missing references) //IL_09c9: Unknown result type (might be due to invalid IL or missing references) //IL_09cf: Unknown result type (might be due to invalid IL or missing references) //IL_09e5: Unknown result type (might be due to invalid IL or missing references) //IL_0a08: Unknown result type (might be due to invalid IL or missing references) //IL_0a0d: Unknown result type (might be due to invalid IL or missing references) //IL_0a12: Unknown result type (might be due to invalid IL or missing references) //IL_0841: Unknown result type (might be due to invalid IL or missing references) //IL_0847: Unknown result type (might be due to invalid IL or missing references) //IL_084c: Unknown result type (might be due to invalid IL or missing references) //IL_0851: Unknown result type (might be due to invalid IL or missing references) //IL_0858: Unknown result type (might be due to invalid IL or missing references) //IL_085d: Unknown result type (might be due to invalid IL or missing references) //IL_0869: Unknown result type (might be due to invalid IL or missing references) //IL_086f: Unknown result type (might be due to invalid IL or missing references) //IL_0885: Unknown result type (might be due to invalid IL or missing references) //IL_088b: Unknown result type (might be due to invalid IL or missing references) //IL_0890: Unknown result type (might be due to invalid IL or missing references) //IL_089a: Unknown result type (might be due to invalid IL or missing references) //IL_08a0: Unknown result type (might be due to invalid IL or missing references) //IL_08b6: Unknown result type (might be due to invalid IL or missing references) //IL_08d9: Unknown result type (might be due to invalid IL or missing references) //IL_08de: Unknown result type (might be due to invalid IL or missing references) //IL_08e3: Unknown result type (might be due to invalid IL or missing references) //IL_06fc: Unknown result type (might be due to invalid IL or missing references) //IL_0702: Unknown result type (might be due to invalid IL or missing references) //IL_0707: Unknown result type (might be due to invalid IL or missing references) //IL_070c: Unknown result type (might be due to invalid IL or missing references) //IL_0713: Unknown result type (might be due to invalid IL or missing references) //IL_0718: Unknown result type (might be due to invalid IL or missing references) //IL_0724: Unknown result type (might be due to invalid IL or missing references) //IL_072a: Unknown result type (might be due to invalid IL or missing references) //IL_0740: Unknown result type (might be due to invalid IL or missing references) //IL_0746: Unknown result type (might be due to invalid IL or missing references) //IL_074b: Unknown result type (might be due to invalid IL or missing references) //IL_0755: Unknown result type (might be due to invalid IL or missing references) //IL_075b: Unknown result type (might be due to invalid IL or missing references) //IL_0771: Unknown result type (might be due to invalid IL or missing references) //IL_0794: Unknown result type (might be due to invalid IL or missing references) //IL_0799: Unknown result type (might be due to invalid IL or missing references) //IL_079e: Unknown result type (might be due to invalid IL or missing references) //IL_116c: Unknown result type (might be due to invalid IL or missing references) //IL_1172: Unknown result type (might be due to invalid IL or missing references) //IL_1177: Unknown result type (might be due to invalid IL or missing references) //IL_117c: Unknown result type (might be due to invalid IL or missing references) //IL_1183: Unknown result type (might be due to invalid IL or missing references) //IL_1188: Unknown result type (might be due to invalid IL or missing references) //IL_1194: Unknown result type (might be due to invalid IL or missing references) //IL_119a: Unknown result type (might be due to invalid IL or missing references) //IL_11b0: Unknown result type (might be due to invalid IL or missing references) //IL_11b6: Unknown result type (might be due to invalid IL or missing references) //IL_11bb: Unknown result type (might be due to invalid IL or missing references) //IL_11c5: Unknown result type (might be due to invalid IL or missing references) //IL_11cb: Unknown result type (might be due to invalid IL or missing references) //IL_11e1: Unknown result type (might be due to invalid IL or missing references) //IL_1204: Unknown result type (might be due to invalid IL or missing references) //IL_1209: Unknown result type (might be due to invalid IL or missing references) //IL_120e: Unknown result type (might be due to invalid IL or missing references) //IL_1069: Unknown result type (might be due to invalid IL or missing references) //IL_106f: Unknown result type (might be due to invalid IL or missing references) //IL_1074: Unknown result type (might be due to invalid IL or missing references) //IL_1079: Unknown result type (might be due to invalid IL or missing references) //IL_1080: Unknown result type (might be due to invalid IL or missing references) //IL_1085: Unknown result type (might be due to invalid IL or missing references) //IL_1091: Unknown result type (might be due to invalid IL or missing references) //IL_1097: Unknown result type (might be due to invalid IL or missing references) //IL_10ad: Unknown result type (might be due to invalid IL or missing references) //IL_10b3: Unknown result type (might be due to invalid IL or missing references) //IL_10b8: Unknown result type (might be due to invalid IL or missing references) //IL_10c2: Unknown result type (might be due to invalid IL or missing references) //IL_10c8: Unknown result type (might be due to invalid IL or missing references) //IL_10de: Unknown result type (might be due to invalid IL or missing references) //IL_1101: Unknown result type (might be due to invalid IL or missing references) //IL_1106: Unknown result type (might be due to invalid IL or missing references) //IL_110b: Unknown result type (might be due to invalid IL or missing references) //IL_0f50: Unknown result type (might be due to invalid IL or missing references) //IL_0f56: Unknown result type (might be due to invalid IL or missing references) //IL_0f5b: Unknown result type (might be due to invalid IL or missing references) //IL_0f60: Unknown result type (might be due to invalid IL or missing references) //IL_0f67: Unknown result type (might be due to invalid IL or missing references) //IL_0f6c: Unknown result type (might be due to invalid IL or missing references) //IL_0f78: Unknown result type (might be due to invalid IL or missing references) //IL_0f7e: Unknown result type (might be due to invalid IL or missing references) //IL_0f94: Unknown result type (might be due to invalid IL or missing references) //IL_0f9a: Unknown result type (might be due to invalid IL or missing references) //IL_0f9f: Unknown result type (might be due to invalid IL or missing references) //IL_0fa9: Unknown result type (might be due to invalid IL or missing references) //IL_0faf: Unknown result type (might be due to invalid IL or missing references) //IL_0fc5: Unknown result type (might be due to invalid IL or missing references) //IL_0fe8: Unknown result type (might be due to invalid IL or missing references) //IL_0fed: Unknown result type (might be due to invalid IL or missing references) //IL_0ff2: Unknown result type (might be due to invalid IL or missing references) //IL_0e21: Unknown result type (might be due to invalid IL or missing references) //IL_0e27: Unknown result type (might be due to invalid IL or missing references) //IL_0e2c: Unknown result type (might be due to invalid IL or missing references) //IL_0e31: Unknown result type (might be due to invalid IL or missing references) //IL_0e38: Unknown result type (might be due to invalid IL or missing references) //IL_0e3d: Unknown result type (might be due to invalid IL or missing references) //IL_0e49: Unknown result type (might be due to invalid IL or missing references) //IL_0e4f: Unknown result type (might be due to invalid IL or missing references) //IL_0e65: Unknown result type (might be due to invalid IL or missing references) //IL_0e6b: Unknown result type (might be due to invalid IL or missing references) //IL_0e70: Unknown result type (might be due to invalid IL or missing references) //IL_0e7a: Unknown result type (might be due to invalid IL or missing references) //IL_0e80: Unknown result type (might be due to invalid IL or missing references) //IL_0e96: Unknown result type (might be due to invalid IL or missing references) //IL_0eb9: Unknown result type (might be due to invalid IL or missing references) //IL_0ebe: Unknown result type (might be due to invalid IL or missing references) //IL_0ec3: Unknown result type (might be due to invalid IL or missing references) //IL_0cdc: Unknown result type (might be due to invalid IL or missing references) //IL_0ce2: Unknown result type (might be due to invalid IL or missing references) //IL_0ce7: Unknown result type (might be due to invalid IL or missing references) //IL_0cec: Unknown result type (might be due to invalid IL or missing references) //IL_0cf3: Unknown result type (might be due to invalid IL or missing references) //IL_0cf8: Unknown result type (might be due to invalid IL or missing references) //IL_0d04: Unknown result type (might be due to invalid IL or missing references) //IL_0d0a: Unknown result type (might be due to invalid IL or missing references) //IL_0d20: Unknown result type (might be due to invalid IL or missing references) //IL_0d26: Unknown result type (might be due to invalid IL or missing references) //IL_0d2b: Unknown result type (might be due to invalid IL or missing references) //IL_0d35: Unknown result type (might be due to invalid IL or missing references) //IL_0d3b: Unknown result type (might be due to invalid IL or missing references) //IL_0d51: Unknown result type (might be due to invalid IL or missing references) //IL_0d74: Unknown result type (might be due to invalid IL or missing references) //IL_0d79: Unknown result type (might be due to invalid IL or missing references) //IL_0d7e: Unknown result type (might be due to invalid IL or missing references) if ((!switching || !ledgeSwitchingDetectors.allowLedgeSwitching) && grabbedOn && !turnBack && !back2 && Input.GetAxis("Horizontal") <= (0f - ledgeSwitchingDetectors.inputPercentageNeededToSwitch) / 100f && ((Vector3)(ref directionVector)).magnitude >= ledgeSwitchingDetectors.inputPercentageNeededToSwitch / 100f) { if (l1SecondForwardHit && l1SecondForwardClear && !l1FirstForwardHit && !l1MiddleHit && !l1FirstBackHit && !l1SecondBackHit && !l1ThirdBackHit && !l1FirstForwardSurfaceDetectorsHit && !l1MiddleSurfaceDetectorsHit && !l1FirstBackSurfaceDetectorsHit && !l1SecondBackSurfaceDetectorsHit && !l1ThirdBackSurfaceDetectorsHit) { ledgeSwitchPoint = new Vector3(0f, onLedgeHeight2 / 10f, 0f) + l1SecondForwardHitPoint; currentLedgeSwitchPoint = ledgeSwitchPoint; switchPointDist = Vector3.Distance(((Component)this).transform.position, ledgeSwitchPoint); midSwitchPoint = (((Component)this).transform.position + ledgeSwitchPoint) / 2f + upHeight * (ledgeSwitchingDetectors.switchJumpHeight / 5f) * (ledgeSwitchingDetectors.switchJumpSpeed / switchPointDist * 3f / 6f); switching = true; } else if (l1FirstForwardHit && l1FirstForwardSurfaceDetectorsHit && l1FirstForwardClear && !l1MiddleHit && !l1FirstBackHit && !l1SecondBackHit && !l1ThirdBackHit && !l1MiddleSurfaceDetectorsHit && !l1FirstBackSurfaceDetectorsHit && !l1SecondBackSurfaceDetectorsHit && !l1ThirdBackSurfaceDetectorsHit) { ledgeSwitchPoint = new Vector3(0f, onLedgeHeight2 / 10f, 0f) + l1FirstForwardHitPoint; currentLedgeSwitchPoint = ledgeSwitchPoint; switchPointDist = Vector3.Distance(((Component)this).transform.position, ledgeSwitchPoint); midSwitchPoint = (((Component)this).transform.position + ledgeSwitchPoint) / 2f + upHeight * (ledgeSwitchingDetectors.switchJumpHeight / 5f) * (ledgeSwitchingDetectors.switchJumpSpeed / switchPointDist * 3f / 6f); switching = true; } else if (l1MiddleHit && l1MiddleSurfaceDetectorsHit && l1MiddleClear && !l1FirstBackHit && !l1SecondBackHit && !l1ThirdBackHit && !l1FirstBackSurfaceDetectorsHit && !l1SecondBackSurfaceDetectorsHit && !l1ThirdBackSurfaceDetectorsHit) { ledgeSwitchPoint = new Vector3(0f, onLedgeHeight2 / 10f, 0f) + l1MiddleHitPoint; currentLedgeSwitchPoint = ledgeSwitchPoint; switchPointDist = Vector3.Distance(((Component)this).transform.position, ledgeSwitchPoint); midSwitchPoint = (((Component)this).transform.position + ledgeSwitchPoint) / 2f + upHeight * (ledgeSwitchingDetectors.switchJumpHeight / 5f) * (ledgeSwitchingDetectors.switchJumpSpeed / switchPointDist * 3f / 6f); switching = true; } else if (l1FirstBackHit && l1FirstBackSurfaceDetectorsHit && l1FirstBackClear && !l1SecondBackHit && !l1ThirdBackHit && !l1SecondBackSurfaceDetectorsHit && !l1ThirdBackSurfaceDetectorsHit) { ledgeSwitchPoint = new Vector3(0f, onLedgeHeight2 / 10f, 0f) + l1FirstBackHitPoint; currentLedgeSwitchPoint = ledgeSwitchPoint; switchPointDist = Vector3.Distance(((Component)this).transform.position, ledgeSwitchPoint); midSwitchPoint = (((Component)this).transform.position + ledgeSwitchPoint) / 2f + upHeight * (ledgeSwitchingDetectors.switchJumpHeight / 5f) * (ledgeSwitchingDetectors.switchJumpSpeed / switchPointDist * 3f / 6f); switching = true; } else if (l1SecondBackHit && l1SecondBackSurfaceDetectorsHit && l1SecondBackClear && !l1ThirdBackHit && !l1ThirdBackSurfaceDetectorsHit) { ledgeSwitchPoint = new Vector3(0f, onLedgeHeight2 / 10f, 0f) + l1SecondBackHitPoint; currentLedgeSwitchPoint = ledgeSwitchPoint; switchPointDist = Vector3.Distance(((Component)this).transform.position, ledgeSwitchPoint); midSwitchPoint = (((Component)this).transform.position + ledgeSwitchPoint) / 2f + upHeight * (ledgeSwitchingDetectors.switchJumpHeight / 5f) * (ledgeSwitchingDetectors.switchJumpSpeed / switchPointDist * 3f / 6f); switching = true; } else if (l2SecondForwardHit && l2SecondForwardClear && !l2FirstForwardHit && !l2MiddleHit && !l2FirstBackHit && !l2SecondBackHit && !l2ThirdBackHit && !l2FirstForwardSurfaceDetectorsHit && !l2MiddleSurfaceDetectorsHit && !l2FirstBackSurfaceDetectorsHit && !l2SecondBackSurfaceDetectorsHit && !l2ThirdBackSurfaceDetectorsHit) { ledgeSwitchPoint = new Vector3(0f, onLedgeHeight2 / 10f, 0f) + l2SecondForwardHitPoint; currentLedgeSwitchPoint = ledgeSwitchPoint; switchPointDist = Vector3.Distance(((Component)this).transform.position, ledgeSwitchPoint); midSwitchPoint = (((Component)this).transform.position + ledgeSwitchPoint) / 2f + upHeight * (ledgeSwitchingDetectors.switchJumpHeight / 5f) * (ledgeSwitchingDetectors.switchJumpSpeed / switchPointDist * 3f / 6f); switching = true; } else if (l2FirstForwardHit && l2FirstForwardSurfaceDetectorsHit && l2FirstForwardClear && !l2MiddleHit && !l2FirstBackHit && !l2SecondBackHit && !l2ThirdBackHit && !l2MiddleSurfaceDetectorsHit && !l2FirstBackSurfaceDetectorsHit && !l2SecondBackSurfaceDetectorsHit && !l2ThirdBackSurfaceDetectorsHit) { ledgeSwitchPoint = new Vector3(0f, onLedgeHeight2 / 10f, 0f) + l2FirstForwardHitPoint; currentLedgeSwitchPoint = ledgeSwitchPoint; switchPointDist = Vector3.Distance(((Component)this).transform.position, ledgeSwitchPoint); midSwitchPoint = (((Component)this).transform.position + ledgeSwitchPoint) / 2f + upHeight * (ledgeSwitchingDetectors.switchJumpHeight / 5f) * (ledgeSwitchingDetectors.switchJumpSpeed / switchPointDist * 3f / 6f); switching = true; } else if (l2MiddleHit && l2MiddleSurfaceDetectorsHit && l2MiddleClear && !l2FirstBackHit && !l2SecondBackHit && !l2ThirdBackHit && !l2FirstBackSurfaceDetectorsHit && !l2SecondBackSurfaceDetectorsHit && !l2ThirdBackSurfaceDetectorsHit) { ledgeSwitchPoint = new Vector3(0f, onLedgeHeight2 / 10f, 0f) + l2MiddleHitPoint; currentLedgeSwitchPoint = ledgeSwitchPoint; switchPointDist = Vector3.Distance(((Component)this).transform.position, ledgeSwitchPoint); midSwitchPoint = (((Component)this).transform.position + ledgeSwitchPoint) / 2f + upHeight * (ledgeSwitchingDetectors.switchJumpHeight / 5f) * (ledgeSwitchingDetectors.switchJumpSpeed / switchPointDist * 3f / 6f); switching = true; } else if (l2FirstBackHit && l2FirstBackSurfaceDetectorsHit && l2FirstBackClear && !l2SecondBackHit && !l2ThirdBackHit && !l2SecondBackSurfaceDetectorsHit && !l2ThirdBackSurfaceDetectorsHit) { ledgeSwitchPoint = new Vector3(0f, onLedgeHeight2 / 10f, 0f) + l2FirstBackHitPoint; currentLedgeSwitchPoint = ledgeSwitchPoint; switchPointDist = Vector3.Distance(((Component)this).transform.position, ledgeSwitchPoint); midSwitchPoint = (((Component)this).transform.position + ledgeSwitchPoint) / 2f + upHeight * (ledgeSwitchingDetectors.switchJumpHeight / 5f) * (ledgeSwitchingDetectors.switchJumpSpeed / switchPointDist * 3f / 6f); switching = true; } else if (l2SecondBackHit && l2SecondBackSurfaceDetectorsHit && l2SecondBackClear && !l2ThirdBackHit && !l2ThirdBackSurfaceDetectorsHit) { ledgeSwitchPoint = new Vector3(0f, onLedgeHeight2 / 10f, 0f) + l2SecondBackHitPoint; currentLedgeSwitchPoint = ledgeSwitchPoint; switchPointDist = Vector3.Distance(((Component)this).transform.position, ledgeSwitchPoint); midSwitchPoint = (((Component)this).transform.position + ledgeSwitchPoint) / 2f + upHeight * (ledgeSwitchingDetectors.switchJumpHeight / 5f) * (ledgeSwitchingDetectors.switchJumpSpeed / switchPointDist * 3f / 6f); switching = true; } else if (l3SecondForwardHit && l3SecondForwardClear && !l3FirstForwardHit && !l3MiddleHit && !l3FirstBackHit && !l3SecondBackHit && !l3ThirdBackHit && !l3FirstForwardSurfaceDetectorsHit && !l3MiddleSurfaceDetectorsHit && !l3FirstBackSurfaceDetectorsHit && !l3SecondBackSurfaceDetectorsHit && !l3ThirdBackSurfaceDetectorsHit) { ledgeSwitchPoint = new Vector3(0f, onLedgeHeight2 / 10f, 0f) + l3SecondForwardHitPoint; currentLedgeSwitchPoint = ledgeSwitchPoint; switchPointDist = Vector3.Distance(((Component)this).transform.position, ledgeSwitchPoint); midSwitchPoint = (((Component)this).transform.position + ledgeSwitchPoint) / 2f + upHeight * (ledgeSwitchingDetectors.switchJumpHeight / 5f) * (ledgeSwitchingDetectors.switchJumpSpeed / switchPointDist * 3f / 6f); switching = true; } else if (l3FirstForwardHit && l3FirstForwardSurfaceDetectorsHit && l3FirstForwardClear && !l3MiddleHit && !l3FirstBackHit && !l3SecondBackHit && !l3ThirdBackHit && !l3MiddleSurfaceDetectorsHit && !l3FirstBackSurfaceDetectorsHit && !l3SecondBackSurfaceDetectorsHit && !l3ThirdBackSurfaceDetectorsHit) { ledgeSwitchPoint = new Vector3(0f, onLedgeHeight2 / 10f, 0f) + l3FirstForwardHitPoint; currentLedgeSwitchPoint = ledgeSwitchPoint; switchPointDist = Vector3.Distance(((Component)this).transform.position, ledgeSwitchPoint); midSwitchPoint = (((Component)this).transform.position + ledgeSwitchPoint) / 2f + upHeight * (ledgeSwitchingDetectors.switchJumpHeight / 5f) * (ledgeSwitchingDetectors.switchJumpSpeed / switchPointDist * 3f / 6f); switching = true; } else if (l3MiddleHit && l3MiddleSurfaceDetectorsHit && l3MiddleClear && !l3FirstBackHit && !l3SecondBackHit && !l3ThirdBackHit && !l3FirstBackSurfaceDetectorsHit && !l3SecondBackSurfaceDetectorsHit && !l3ThirdBackSurfaceDetectorsHit) { ledgeSwitchPoint = new Vector3(0f, onLedgeHeight2 / 10f, 0f) + l3MiddleHitPoint; currentLedgeSwitchPoint = ledgeSwitchPoint; switchPointDist = Vector3.Distance(((Component)this).transform.position, ledgeSwitchPoint); midSwitchPoint = (((Component)this).transform.position + ledgeSwitchPoint) / 2f + upHeight * (ledgeSwitchingDetectors.switchJumpHeight / 5f) * (ledgeSwitchingDetectors.switchJumpSpeed / switchPointDist * 3f / 6f); switching = true; } else if (l3FirstBackHit && l3FirstBackSurfaceDetectorsHit && l3FirstBackClear && !l3SecondBackHit && !l3ThirdBackHit && !l3SecondBackSurfaceDetectorsHit && !l3ThirdBackSurfaceDetectorsHit) { ledgeSwitchPoint = new Vector3(0f, onLedgeHeight2 / 10f, 0f) + l3FirstBackHitPoint; currentLedgeSwitchPoint = ledgeSwitchPoint; switchPointDist = Vector3.Distance(((Component)this).transform.position, ledgeSwitchPoint); midSwitchPoint = (((Component)this).transform.position + ledgeSwitchPoint) / 2f + upHeight * (ledgeSwitchingDetectors.switchJumpHeight / 5f) * (ledgeSwitchingDetectors.switchJumpSpeed / switchPointDist * 3f / 6f); switching = true; } else if (l3SecondBackHit && l3SecondBackSurfaceDetectorsHit && l3SecondBackClear && !l3ThirdBackHit && !l3ThirdBackSurfaceDetectorsHit) { ledgeSwitchPoint = new Vector3(0f, onLedgeHeight2 / 10f, 0f) + l3SecondBackHitPoint; currentLedgeSwitchPoint = ledgeSwitchPoint; switchPointDist = Vector3.Distance(((Component)this).transform.position, ledgeSwitchPoint); midSwitchPoint = (((Component)this).transform.position + ledgeSwitchPoint) / 2f + upHeight * (ledgeSwitchingDetectors.switchJumpHeight / 5f) * (ledgeSwitchingDetectors.switchJumpSpeed / switchPointDist * 3f / 6f); switching = true; } } } private void RightMovement() { //IL_0022: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Unknown result type (might be due to invalid IL or missing references) //IL_033b: Unknown result type (might be due to invalid IL or missing references) //IL_0346: Unknown result type (might be due to invalid IL or missing references) //IL_034b: Unknown result type (might be due to invalid IL or missing references) //IL_01a2: Unknown result type (might be due to invalid IL or missing references) //IL_01a7: Unknown result type (might be due to invalid IL or missing references) //IL_01db: Unknown result type (might be due to invalid IL or missing references) //IL_01e0: Unknown result type (might be due to invalid IL or missing references) //IL_01f0: Unknown result type (might be due to invalid IL or missing references) //IL_01fb: Unknown result type (might be due to invalid IL or missing references) //IL_0200: Unknown result type (might be due to invalid IL or missing references) //IL_0206: Unknown result type (might be due to invalid IL or missing references) //IL_020b: Unknown result type (might be due to invalid IL or missing references) //IL_0210: Unknown result type (might be due to invalid IL or missing references) //IL_0213: Unknown result type (might be due to invalid IL or missing references) //IL_022a: Unknown result type (might be due to invalid IL or missing references) //IL_022f: Unknown result type (might be due to invalid IL or missing references) //IL_02c0: Unknown result type (might be due to invalid IL or missing references) //IL_02c5: Unknown result type (might be due to invalid IL or missing references) //IL_02e6: Unknown result type (might be due to invalid IL or missing references) //IL_02eb: Unknown result type (might be due to invalid IL or missing references) //IL_02f4: Unknown result type (might be due to invalid IL or missing references) //IL_0294: Unknown result type (might be due to invalid IL or missing references) //IL_029a: Unknown result type (might be due to invalid IL or missing references) //IL_02a4: Unknown result type (might be due to invalid IL or missing references) //IL_02a9: Unknown result type (might be due to invalid IL or missing references) //IL_025c: Unknown result type (might be due to invalid IL or missing references) //IL_0266: Unknown result type (might be due to invalid IL or missing references) //IL_026b: Unknown result type (might be due to invalid IL or missing references) if (!right) { return; } if (Input.GetAxis("Horizontal") > 0f && rSide != Vector3.zero && !stuckToRight) { if (!rightBlocked) { RightSwitchPointDetecting(); } if (!switching || !ledgeSwitchingDetectors.allowLedgeSwitching) { if (movingDetectors.moveInBursts) { if (startingRight) { movementSpeed = Mathf.Lerp(movementSpeed, movingDetectors.moveSpeed, (2f + movingDetectors.moveSpeed) * (movementSpeed / 2f + 1f) / movingDetectors.burstLength * Time.deltaTime); } else { movementSpeed = Mathf.Lerp(movementSpeed, 0f, (2f + movingDetectors.moveSpeed) * (movementSpeed / 2f + 1f) / movingDetectors.burstLength * Time.deltaTime); } if (movingDetectors.moveSpeed - movementSpeed < 0.1f) { startingRight = false; } else if (movementSpeed < 0.1f) { startingRight = true; } } else { movementSpeed = movingDetectors.moveSpeed; } Vector3 val = new Vector3(rSide.x - ((Component)this).transform.forward.x * colliderLengthFromCenter, playerPosY + onLedgeHeight2 / 10f, rSide.z - ((Component)this).transform.forward.z * colliderLengthFromCenter) - ((Component)this).transform.position + posChange2; movementVector = ((Vector3)(ref val)).normalized * (movementSpeed * ((Vector3)(ref directionVector)).magnitude); if (Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled) { characterController.Move(movementVector * Time.deltaTime); } else if (Object.op_Implicit((Object)(object)rigidBody)) { rigidBody.MovePosition(((Component)this).transform.position + movementVector * Time.deltaTime); } ((Component)this).transform.position = new Vector3(((Component)this).transform.position.x, playerPosY + onLedgeHeight2 / 10f, ((Component)this).transform.position.z); } } else if (Object.op_Implicit((Object)(object)rigidBody) && (Input.GetAxis("Horizontal") == 0f || stuckToRight)) { rigidBody.velocity = Vector3.zero; movementVector = Vector3.zero; } if (Input.GetAxis("Horizontal") <= 0f) { startingRight = true; } } private void RightSwitchPointDetecting() { //IL_05ab: Unknown result type (might be due to invalid IL or missing references) //IL_05b1: Unknown result type (might be due to invalid IL or missing references) //IL_05b6: Unknown result type (might be due to invalid IL or missing references) //IL_05bb: Unknown result type (might be due to invalid IL or missing references) //IL_05c2: Unknown result type (might be due to invalid IL or missing references) //IL_05c7: Unknown result type (might be due to invalid IL or missing references) //IL_05d3: Unknown result type (might be due to invalid IL or missing references) //IL_05d9: Unknown result type (might be due to invalid IL or missing references) //IL_05ef: Unknown result type (might be due to invalid IL or missing references) //IL_05f5: Unknown result type (might be due to invalid IL or missing references) //IL_05fa: Unknown result type (might be due to invalid IL or missing references) //IL_0604: Unknown result type (might be due to invalid IL or missing references) //IL_060a: Unknown result type (might be due to invalid IL or missing references) //IL_0620: Unknown result type (might be due to invalid IL or missing references) //IL_0643: Unknown result type (might be due to invalid IL or missing references) //IL_0648: Unknown result type (might be due to invalid IL or missing references) //IL_064d: Unknown result type (might be due to invalid IL or missing references) //IL_04a8: Unknown result type (might be due to invalid IL or missing references) //IL_04ae: Unknown result type (might be due to invalid IL or missing references) //IL_04b3: Unknown result type (might be due to invalid IL or missing references) //IL_04b8: Unknown result type (might be due to invalid IL or missing references) //IL_04bf: Unknown result type (might be due to invalid IL or missing references) //IL_04c4: Unknown result type (might be due to invalid IL or missing references) //IL_04d0: Unknown result type (might be due to invalid IL or missing references) //IL_04d6: Unknown result type (might be due to invalid IL or missing references) //IL_04ec: Unknown result type (might be due to invalid IL or missing references) //IL_04f2: Unknown result type (might be due to invalid IL or missing references) //IL_04f7: Unknown result type (might be due to invalid IL or missing references) //IL_0501: Unknown result type (might be due to invalid IL or missing references) //IL_0507: Unknown result type (might be due to invalid IL or missing references) //IL_051d: Unknown result type (might be due to invalid IL or missing references) //IL_0540: Unknown result type (might be due to invalid IL or missing references) //IL_0545: Unknown result type (might be due to invalid IL or missing references) //IL_054a: Unknown result type (might be due to invalid IL or missing references) //IL_038f: Unknown result type (might be due to invalid IL or missing references) //IL_0395: Unknown result type (might be due to invalid IL or missing references) //IL_039a: Unknown result type (might be due to invalid IL or missing references) //IL_039f: Unknown result type (might be due to invalid IL or missing references) //IL_03a6: Unknown result type (might be due to invalid IL or missing references) //IL_03ab: Unknown result type (might be due to invalid IL or missing references) //IL_03b7: Unknown result type (might be due to invalid IL or missing references) //IL_03bd: Unknown result type (might be due to invalid IL or missing references) //IL_03d3: Unknown result type (might be due to invalid IL or missing references) //IL_03d9: Unknown result type (might be due to invalid IL or missing references) //IL_03de: Unknown result type (might be due to invalid IL or missing references) //IL_03e8: Unknown result type (might be due to invalid IL or missing references) //IL_03ee: Unknown result type (might be due to invalid IL or missing references) //IL_0404: Unknown result type (might be due to invalid IL or missing references) //IL_0427: Unknown result type (might be due to invalid IL or missing references) //IL_042c: Unknown result type (might be due to invalid IL or missing references) //IL_0431: Unknown result type (might be due to invalid IL or missing references) //IL_0260: Unknown result type (might be due to invalid IL or missing references) //IL_0266: Unknown result type (might be due to invalid IL or missing references) //IL_026b: Unknown result type (might be due to invalid IL or missing references) //IL_0270: Unknown result type (might be due to invalid IL or missing references) //IL_0277: Unknown result type (might be due to invalid IL or missing references) //IL_027c: Unknown result type (might be due to invalid IL or missing references) //IL_0288: Unknown result type (might be due to invalid IL or missing references) //IL_028e: Unknown result type (might be due to invalid IL or missing references) //IL_02a4: Unknown result type (might be due to invalid IL or missing references) //IL_02aa: Unknown result type (might be due to invalid IL or missing references) //IL_02af: Unknown result type (might be due to invalid IL or missing references) //IL_02b9: Unknown result type (might be due to invalid IL or missing references) //IL_02bf: Unknown result type (might be due to invalid IL or missing references) //IL_02d5: Unknown result type (might be due to invalid IL or missing references) //IL_02f8: Unknown result type (might be due to invalid IL or missing references) //IL_02fd: Unknown result type (might be due to invalid IL or missing references) //IL_0302: Unknown result type (might be due to invalid IL or missing references) //IL_011b: Unknown result type (might be due to invalid IL or missing references) //IL_0121: Unknown result type (might be due to invalid IL or missing references) //IL_0126: Unknown result type (might be due to invalid IL or missing references) //IL_012b: Unknown result type (might be due to invalid IL or missing references) //IL_0132: Unknown result type (might be due to invalid IL or missing references) //IL_0137: Unknown result type (might be due to invalid IL or missing references) //IL_0143: Unknown result type (might be due to invalid IL or missing references) //IL_0149: Unknown result type (might be due to invalid IL or missing references) //IL_015f: Unknown result type (might be due to invalid IL or missing references) //IL_0165: Unknown result type (might be due to invalid IL or missing references) //IL_016a: Unknown result type (might be due to invalid IL or missing references) //IL_0174: Unknown result type (might be due to invalid IL or missing references) //IL_017a: Unknown result type (might be due to invalid IL or missing references) //IL_0190: Unknown result type (might be due to invalid IL or missing references) //IL_01b3: Unknown result type (might be due to invalid IL or missing references) //IL_01b8: Unknown result type (might be due to invalid IL or missing references) //IL_01bd: Unknown result type (might be due to invalid IL or missing references) //IL_0b8b: Unknown result type (might be due to invalid IL or missing references) //IL_0b91: Unknown result type (might be due to invalid IL or missing references) //IL_0b96: Unknown result type (might be due to invalid IL or missing references) //IL_0b9b: Unknown result type (might be due to invalid IL or missing references) //IL_0ba2: Unknown result type (might be due to invalid IL or missing references) //IL_0ba7: Unknown result type (might be due to invalid IL or missing references) //IL_0bb3: Unknown result type (might be due to invalid IL or missing references) //IL_0bb9: Unknown result type (might be due to invalid IL or missing references) //IL_0bcf: Unknown result type (might be due to invalid IL or missing references) //IL_0bd5: Unknown result type (might be due to invalid IL or missing references) //IL_0bda: Unknown result type (might be due to invalid IL or missing references) //IL_0be4: Unknown result type (might be due to invalid IL or missing references) //IL_0bea: Unknown result type (might be due to invalid IL or missing references) //IL_0c00: Unknown result type (might be due to invalid IL or missing references) //IL_0c23: Unknown result type (might be due to invalid IL or missing references) //IL_0c28: Unknown result type (might be due to invalid IL or missing references) //IL_0c2d: Unknown result type (might be due to invalid IL or missing references) //IL_0a88: Unknown result type (might be due to invalid IL or missing references) //IL_0a8e: Unknown result type (might be due to invalid IL or missing references) //IL_0a93: Unknown result type (might be due to invalid IL or missing references) //IL_0a98: Unknown result type (might be due to invalid IL or missing references) //IL_0a9f: Unknown result type (might be due to invalid IL or missing references) //IL_0aa4: Unknown result type (might be due to invalid IL or missing references) //IL_0ab0: Unknown result type (might be due to invalid IL or missing references) //IL_0ab6: Unknown result type (might be due to invalid IL or missing references) //IL_0acc: Unknown result type (might be due to invalid IL or missing references) //IL_0ad2: Unknown result type (might be due to invalid IL or missing references) //IL_0ad7: Unknown result type (might be due to invalid IL or missing references) //IL_0ae1: Unknown result type (might be due to invalid IL or missing references) //IL_0ae7: Unknown result type (might be due to invalid IL or missing references) //IL_0afd: Unknown result type (might be due to invalid IL or missing references) //IL_0b20: Unknown result type (might be due to invalid IL or missing references) //IL_0b25: Unknown result type (might be due to invalid IL or missing references) //IL_0b2a: Unknown result type (might be due to invalid IL or missing references) //IL_096f: Unknown result type (might be due to invalid IL or missing references) //IL_0975: Unknown result type (might be due to invalid IL or missing references) //IL_097a: Unknown result type (might be due to invalid IL or missing references) //IL_097f: Unknown result type (might be due to invalid IL or missing references) //IL_0986: Unknown result type (might be due to invalid IL or missing references) //IL_098b: Unknown result type (might be due to invalid IL or missing references) //IL_0997: Unknown result type (might be due to invalid IL or missing references) //IL_099d: Unknown result type (might be due to invalid IL or missing references) //IL_09b3: Unknown result type (might be due to invalid IL or missing references) //IL_09b9: Unknown result type (might be due to invalid IL or missing references) //IL_09be: Unknown result type (might be due to invalid IL or missing references) //IL_09c8: Unknown result type (might be due to invalid IL or missing references) //IL_09ce: Unknown result type (might be due to invalid IL or missing references) //IL_09e4: Unknown result type (might be due to invalid IL or missing references) //IL_0a07: Unknown result type (might be due to invalid IL or missing references) //IL_0a0c: Unknown result type (might be due to invalid IL or missing references) //IL_0a11: Unknown result type (might be due to invalid IL or missing references) //IL_0840: Unknown result type (might be due to invalid IL or missing references) //IL_0846: Unknown result type (might be due to invalid IL or missing references) //IL_084b: Unknown result type (might be due to invalid IL or missing references) //IL_0850: Unknown result type (might be due to invalid IL or missing references) //IL_0857: Unknown result type (might be due to invalid IL or missing references) //IL_085c: Unknown result type (might be due to invalid IL or missing references) //IL_0868: Unknown result type (might be due to invalid IL or missing references) //IL_086e: Unknown result type (might be due to invalid IL or missing references) //IL_0884: Unknown result type (might be due to invalid IL or missing references) //IL_088a: Unknown result type (might be due to invalid IL or missing references) //IL_088f: Unknown result type (might be due to invalid IL or missing references) //IL_0899: Unknown result type (might be due to invalid IL or missing references) //IL_089f: Unknown result type (might be due to invalid IL or missing references) //IL_08b5: Unknown result type (might be due to invalid IL or missing references) //IL_08d8: Unknown result type (might be due to invalid IL or missing references) //IL_08dd: Unknown result type (might be due to invalid IL or missing references) //IL_08e2: Unknown result type (might be due to invalid IL or missing references) //IL_06fb: Unknown result type (might be due to invalid IL or missing references) //IL_0701: Unknown result type (might be due to invalid IL or missing references) //IL_0706: Unknown result type (might be due to invalid IL or missing references) //IL_070b: Unknown result type (might be due to invalid IL or missing references) //IL_0712: Unknown result type (might be due to invalid IL or missing references) //IL_0717: Unknown result type (might be due to invalid IL or missing references) //IL_0723: Unknown result type (might be due to invalid IL or missing references) //IL_0729: Unknown result type (might be due to invalid IL or missing references) //IL_073f: Unknown result type (might be due to invalid IL or missing references) //IL_0745: Unknown result type (might be due to invalid IL or missing references) //IL_074a: Unknown result type (might be due to invalid IL or missing references) //IL_0754: Unknown result type (might be due to invalid IL or missing references) //IL_075a: Unknown result type (might be due to invalid IL or missing references) //IL_0770: Unknown result type (might be due to invalid IL or missing references) //IL_0793: Unknown result type (might be due to invalid IL or missing references) //IL_0798: Unknown result type (might be due to invalid IL or missing references) //IL_079d: Unknown result type (might be due to invalid IL or missing references) //IL_116b: Unknown result type (might be due to invalid IL or missing references) //IL_1171: Unknown result type (might be due to invalid IL or missing references) //IL_1176: Unknown result type (might be due to invalid IL or missing references) //IL_117b: Unknown result type (might be due to invalid IL or missing references) //IL_1182: Unknown result type (might be due to invalid IL or missing references) //IL_1187: Unknown result type (might be due to invalid IL or missing references) //IL_1193: Unknown result type (might be due to invalid IL or missing references) //IL_1199: Unknown result type (might be due to invalid IL or missing references) //IL_11af: Unknown result type (might be due to invalid IL or missing references) //IL_11b5: Unknown result type (might be due to invalid IL or missing references) //IL_11ba: Unknown result type (might be due to invalid IL or missing references) //IL_11c4: Unknown result type (might be due to invalid IL or missing references) //IL_11ca: Unknown result type (might be due to invalid IL or missing references) //IL_11e0: Unknown result type (might be due to invalid IL or missing references) //IL_1203: Unknown result type (might be due to invalid IL or missing references) //IL_1208: Unknown result type (might be due to invalid IL or missing references) //IL_120d: Unknown result type (might be due to invalid IL or missing references) //IL_1068: Unknown result type (might be due to invalid IL or missing references) //IL_106e: Unknown result type (might be due to invalid IL or missing references) //IL_1073: Unknown result type (might be due to invalid IL or missing references) //IL_1078: Unknown result type (might be due to invalid IL or missing references) //IL_107f: Unknown result type (might be due to invalid IL or missing references) //IL_1084: Unknown result type (might be due to invalid IL or missing references) //IL_1090: Unknown result type (might be due to invalid IL or missing references) //IL_1096: Unknown result type (might be due to invalid IL or missing references) //IL_10ac: Unknown result type (might be due to invalid IL or missing references) //IL_10b2: Unknown result type (might be due to invalid IL or missing references) //IL_10b7: Unknown result type (might be due to invalid IL or missing references) //IL_10c1: Unknown result type (might be due to invalid IL or missing references) //IL_10c7: Unknown result type (might be due to invalid IL or missing references) //IL_10dd: Unknown result type (might be due to invalid IL or missing references) //IL_1100: Unknown result type (might be due to invalid IL or missing references) //IL_1105: Unknown result type (might be due to invalid IL or missing references) //IL_110a: Unknown result type (might be due to invalid IL or missing references) //IL_0f4f: Unknown result type (might be due to invalid IL or missing references) //IL_0f55: Unknown result type (might be due to invalid IL or missing references) //IL_0f5a: Unknown result type (might be due to invalid IL or missing references) //IL_0f5f: Unknown result type (might be due to invalid IL or missing references) //IL_0f66: Unknown result type (might be due to invalid IL or missing references) //IL_0f6b: Unknown result type (might be due to invalid IL or missing references) //IL_0f77: Unknown result type (might be due to invalid IL or missing references) //IL_0f7d: Unknown result type (might be due to invalid IL or missing references) //IL_0f93: Unknown result type (might be due to invalid IL or missing references) //IL_0f99: Unknown result type (might be due to invalid IL or missing references) //IL_0f9e: Unknown result type (might be due to invalid IL or missing references) //IL_0fa8: Unknown result type (might be due to invalid IL or missing references) //IL_0fae: Unknown result type (might be due to invalid IL or missing references) //IL_0fc4: Unknown result type (might be due to invalid IL or missing references) //IL_0fe7: Unknown result type (might be due to invalid IL or missing references) //IL_0fec: Unknown result type (might be due to invalid IL or missing references) //IL_0ff1: Unknown result type (might be due to invalid IL or missing references) //IL_0e20: Unknown result type (might be due to invalid IL or missing references) //IL_0e26: Unknown result type (might be due to invalid IL or missing references) //IL_0e2b: Unknown result type (might be due to invalid IL or missing references) //IL_0e30: Unknown result type (might be due to invalid IL or missing references) //IL_0e37: Unknown result type (might be due to invalid IL or missing references) //IL_0e3c: Unknown result type (might be due to invalid IL or missing references) //IL_0e48: Unknown result type (might be due to invalid IL or missing references) //IL_0e4e: Unknown result type (might be due to invalid IL or missing references) //IL_0e64: Unknown result type (might be due to invalid IL or missing references) //IL_0e6a: Unknown result type (might be due to invalid IL or missing references) //IL_0e6f: Unknown result type (might be due to invalid IL or missing references) //IL_0e79: Unknown result type (might be due to invalid IL or missing references) //IL_0e7f: Unknown result type (might be due to invalid IL or missing references) //IL_0e95: Unknown result type (might be due to invalid IL or missing references) //IL_0eb8: Unknown result type (might be due to invalid IL or missing references) //IL_0ebd: Unknown result type (might be due to invalid IL or missing references) //IL_0ec2: Unknown result type (might be due to invalid IL or missing references) //IL_0cdb: Unknown result type (might be due to invalid IL or missing references) //IL_0ce1: Unknown result type (might be due to invalid IL or missing references) //IL_0ce6: Unknown result type (might be due to invalid IL or missing references) //IL_0ceb: Unknown result type (might be due to invalid IL or missing references) //IL_0cf2: Unknown result type (might be due to invalid IL or missing references) //IL_0cf7: Unknown result type (might be due to invalid IL or missing references) //IL_0d03: Unknown result type (might be due to invalid IL or missing references) //IL_0d09: Unknown result type (might be due to invalid IL or missing references) //IL_0d1f: Unknown result type (might be due to invalid IL or missing references) //IL_0d25: Unknown result type (might be due to invalid IL or missing references) //IL_0d2a: Unknown result type (might be due to invalid IL or missing references) //IL_0d34: Unknown result type (might be due to invalid IL or missing references) //IL_0d3a: Unknown result type (might be due to invalid IL or missing references) //IL_0d50: Unknown result type (might be due to invalid IL or missing references) //IL_0d73: Unknown result type (might be due to invalid IL or missing references) //IL_0d78: Unknown result type (might be due to invalid IL or missing references) //IL_0d7d: Unknown result type (might be due to invalid IL or missing references) if ((!switching || !ledgeSwitchingDetectors.allowLedgeSwitching) && grabbedOn && !turnBack && !back2 && Input.GetAxis("Horizontal") >= ledgeSwitchingDetectors.inputPercentageNeededToSwitch / 100f && ((Vector3)(ref directionVector)).magnitude >= ledgeSwitchingDetectors.inputPercentageNeededToSwitch / 100f) { if (r1SecondForwardHit && r1SecondForwardClear && !r1FirstForwardHit && !r1MiddleHit && !r1FirstBackHit && !r1SecondBackHit && !r1ThirdBackHit && !r1FirstForwardSurfaceDetectorsHit && !r1MiddleSurfaceDetectorsHit && !r1FirstBackSurfaceDetectorsHit && !r1SecondBackSurfaceDetectorsHit && !r1ThirdBackSurfaceDetectorsHit) { ledgeSwitchPoint = new Vector3(0f, onLedgeHeight2 / 10f, 0f) + r1SecondForwardHitPoint; currentLedgeSwitchPoint = ledgeSwitchPoint; switchPointDist = Vector3.Distance(((Component)this).transform.position, ledgeSwitchPoint); midSwitchPoint = (((Component)this).transform.position + ledgeSwitchPoint) / 2f + upHeight * (ledgeSwitchingDetectors.switchJumpHeight / 5f) * (ledgeSwitchingDetectors.switchJumpSpeed / switchPointDist * 3f / 6f); switching = true; } else if (r1FirstForwardHit && r1FirstForwardSurfaceDetectorsHit && r1FirstForwardClear && !r1MiddleHit && !r1FirstBackHit && !r1SecondBackHit && !r1ThirdBackHit && !r1MiddleSurfaceDetectorsHit && !r1FirstBackSurfaceDetectorsHit && !r1SecondBackSurfaceDetectorsHit && !r1ThirdBackSurfaceDetectorsHit) { ledgeSwitchPoint = new Vector3(0f, onLedgeHeight2 / 10f, 0f) + r1FirstForwardHitPoint; currentLedgeSwitchPoint = ledgeSwitchPoint; switchPointDist = Vector3.Distance(((Component)this).transform.position, ledgeSwitchPoint); midSwitchPoint = (((Component)this).transform.position + ledgeSwitchPoint) / 2f + upHeight * (ledgeSwitchingDetectors.switchJumpHeight / 5f) * (ledgeSwitchingDetectors.switchJumpSpeed / switchPointDist * 3f / 6f); switching = true; } else if (r1MiddleHit && r1MiddleSurfaceDetectorsHit && r1MiddleClear && !r1FirstBackHit && !r1SecondBackHit && !r1ThirdBackHit && !r1FirstBackSurfaceDetectorsHit && !r1SecondBackSurfaceDetectorsHit && !r1ThirdBackSurfaceDetectorsHit) { ledgeSwitchPoint = new Vector3(0f, onLedgeHeight2 / 10f, 0f) + r1MiddleHitPoint; currentLedgeSwitchPoint = ledgeSwitchPoint; switchPointDist = Vector3.Distance(((Component)this).transform.position, ledgeSwitchPoint); midSwitchPoint = (((Component)this).transform.position + ledgeSwitchPoint) / 2f + upHeight * (ledgeSwitchingDetectors.switchJumpHeight / 5f) * (ledgeSwitchingDetectors.switchJumpSpeed / switchPointDist * 3f / 6f); switching = true; } else if (r1FirstBackHit && r1FirstBackSurfaceDetectorsHit && r1FirstBackClear && !r1SecondBackHit && !r1ThirdBackHit && !r1SecondBackSurfaceDetectorsHit && !r1ThirdBackSurfaceDetectorsHit) { ledgeSwitchPoint = new Vector3(0f, onLedgeHeight2 / 10f, 0f) + r1FirstBackHitPoint; currentLedgeSwitchPoint = ledgeSwitchPoint; switchPointDist = Vector3.Distance(((Component)this).transform.position, ledgeSwitchPoint); midSwitchPoint = (((Component)this).transform.position + ledgeSwitchPoint) / 2f + upHeight * (ledgeSwitchingDetectors.switchJumpHeight / 5f) * (ledgeSwitchingDetectors.switchJumpSpeed / switchPointDist * 3f / 6f); switching = true; } else if (r1SecondBackHit && r1SecondBackSurfaceDetectorsHit && r1SecondBackClear && !r1ThirdBackHit && !r1ThirdBackSurfaceDetectorsHit) { ledgeSwitchPoint = new Vector3(0f, onLedgeHeight2 / 10f, 0f) + r1SecondBackHitPoint; currentLedgeSwitchPoint = ledgeSwitchPoint; switchPointDist = Vector3.Distance(((Component)this).transform.position, ledgeSwitchPoint); midSwitchPoint = (((Component)this).transform.position + ledgeSwitchPoint) / 2f + upHeight * (ledgeSwitchingDetectors.switchJumpHeight / 5f) * (ledgeSwitchingDetectors.switchJumpSpeed / switchPointDist * 3f / 6f); switching = true; } else if (r2SecondForwardHit && r2SecondForwardClear && !r2FirstForwardHit && !r2MiddleHit && !r2FirstBackHit && !r2SecondBackHit && !r2ThirdBackHit && !r2FirstForwardSurfaceDetectorsHit && !r2MiddleSurfaceDetectorsHit && !r2FirstBackSurfaceDetectorsHit && !r2SecondBackSurfaceDetectorsHit && !r2ThirdBackSurfaceDetectorsHit) { ledgeSwitchPoint = new Vector3(0f, onLedgeHeight2 / 10f, 0f) + r2SecondForwardHitPoint; currentLedgeSwitchPoint = ledgeSwitchPoint; switchPointDist = Vector3.Distance(((Component)this).transform.position, ledgeSwitchPoint); midSwitchPoint = (((Component)this).transform.position + ledgeSwitchPoint) / 2f + upHeight * (ledgeSwitchingDetectors.switchJumpHeight / 5f) * (ledgeSwitchingDetectors.switchJumpSpeed / switchPointDist * 3f / 6f); switching = true; } else if (r2FirstForwardHit && r2FirstForwardSurfaceDetectorsHit && r2FirstForwardClear && !r2MiddleHit && !r2FirstBackHit && !r2SecondBackHit && !r2ThirdBackHit && !r2MiddleSurfaceDetectorsHit && !r2FirstBackSurfaceDetectorsHit && !r2SecondBackSurfaceDetectorsHit && !r2ThirdBackSurfaceDetectorsHit) { ledgeSwitchPoint = new Vector3(0f, onLedgeHeight2 / 10f, 0f) + r2FirstForwardHitPoint; currentLedgeSwitchPoint = ledgeSwitchPoint; switchPointDist = Vector3.Distance(((Component)this).transform.position, ledgeSwitchPoint); midSwitchPoint = (((Component)this).transform.position + ledgeSwitchPoint) / 2f + upHeight * (ledgeSwitchingDetectors.switchJumpHeight / 5f) * (ledgeSwitchingDetectors.switchJumpSpeed / switchPointDist * 3f / 6f); switching = true; } else if (r2MiddleHit && r2MiddleSurfaceDetectorsHit && r2MiddleClear && !r2FirstBackHit && !r2SecondBackHit && !r2ThirdBackHit && !r2FirstBackSurfaceDetectorsHit && !r2SecondBackSurfaceDetectorsHit && !r2ThirdBackSurfaceDetectorsHit) { ledgeSwitchPoint = new Vector3(0f, onLedgeHeight2 / 10f, 0f) + r2MiddleHitPoint; currentLedgeSwitchPoint = ledgeSwitchPoint; switchPointDist = Vector3.Distance(((Component)this).transform.position, ledgeSwitchPoint); midSwitchPoint = (((Component)this).transform.position + ledgeSwitchPoint) / 2f + upHeight * (ledgeSwitchingDetectors.switchJumpHeight / 5f) * (ledgeSwitchingDetectors.switchJumpSpeed / switchPointDist * 3f / 6f); switching = true; } else if (r2FirstBackHit && r2FirstBackSurfaceDetectorsHit && r2FirstBackClear && !r2SecondBackHit && !r2ThirdBackHit && !r2SecondBackSurfaceDetectorsHit && !r2ThirdBackSurfaceDetectorsHit) { ledgeSwitchPoint = new Vector3(0f, onLedgeHeight2 / 10f, 0f) + r2FirstBackHitPoint; currentLedgeSwitchPoint = ledgeSwitchPoint; switchPointDist = Vector3.Distance(((Component)this).transform.position, ledgeSwitchPoint); midSwitchPoint = (((Component)this).transform.position + ledgeSwitchPoint) / 2f + upHeight * (ledgeSwitchingDetectors.switchJumpHeight / 5f) * (ledgeSwitchingDetectors.switchJumpSpeed / switchPointDist * 3f / 6f); switching = true; } else if (r2SecondBackHit && r2SecondBackSurfaceDetectorsHit && r2SecondBackClear && !r2ThirdBackHit && !r2ThirdBackSurfaceDetectorsHit) { ledgeSwitchPoint = new Vector3(0f, onLedgeHeight2 / 10f, 0f) + r2SecondBackHitPoint; currentLedgeSwitchPoint = ledgeSwitchPoint; switchPointDist = Vector3.Distance(((Component)this).transform.position, ledgeSwitchPoint); midSwitchPoint = (((Component)this).transform.position + ledgeSwitchPoint) / 2f + upHeight * (ledgeSwitchingDetectors.switchJumpHeight / 5f) * (ledgeSwitchingDetectors.switchJumpSpeed / switchPointDist * 3f / 6f); switching = true; } else if (r3SecondForwardHit && r3SecondForwardClear && !r3FirstForwardHit && !r3MiddleHit && !r3FirstBackHit && !r3SecondBackHit && !r3ThirdBackHit && !r3FirstForwardSurfaceDetectorsHit && !r3MiddleSurfaceDetectorsHit && !r3FirstBackSurfaceDetectorsHit && !r3SecondBackSurfaceDetectorsHit && !r3ThirdBackSurfaceDetectorsHit) { ledgeSwitchPoint = new Vector3(0f, onLedgeHeight2 / 10f, 0f) + r3SecondForwardHitPoint; currentLedgeSwitchPoint = ledgeSwitchPoint; switchPointDist = Vector3.Distance(((Component)this).transform.position, ledgeSwitchPoint); midSwitchPoint = (((Component)this).transform.position + ledgeSwitchPoint) / 2f + upHeight * (ledgeSwitchingDetectors.switchJumpHeight / 5f) * (ledgeSwitchingDetectors.switchJumpSpeed / switchPointDist * 3f / 6f); switching = true; } else if (r3FirstForwardHit && r3FirstForwardSurfaceDetectorsHit && r3FirstForwardClear && !r3MiddleHit && !r3FirstBackHit && !r3SecondBackHit && !r3ThirdBackHit && !r3MiddleSurfaceDetectorsHit && !r3FirstBackSurfaceDetectorsHit && !r3SecondBackSurfaceDetectorsHit && !r3ThirdBackSurfaceDetectorsHit) { ledgeSwitchPoint = new Vector3(0f, onLedgeHeight2 / 10f, 0f) + r3FirstForwardHitPoint; currentLedgeSwitchPoint = ledgeSwitchPoint; switchPointDist = Vector3.Distance(((Component)this).transform.position, ledgeSwitchPoint); midSwitchPoint = (((Component)this).transform.position + ledgeSwitchPoint) / 2f + upHeight * (ledgeSwitchingDetectors.switchJumpHeight / 5f) * (ledgeSwitchingDetectors.switchJumpSpeed / switchPointDist * 3f / 6f); switching = true; } else if (r3MiddleHit && r3MiddleSurfaceDetectorsHit && r3MiddleClear && !r3FirstBackHit && !r3SecondBackHit && !r3ThirdBackHit && !r3FirstBackSurfaceDetectorsHit && !r3SecondBackSurfaceDetectorsHit && !r3ThirdBackSurfaceDetectorsHit) { ledgeSwitchPoint = new Vector3(0f, onLedgeHeight2 / 10f, 0f) + r3MiddleHitPoint; currentLedgeSwitchPoint = ledgeSwitchPoint; switchPointDist = Vector3.Distance(((Component)this).transform.position, ledgeSwitchPoint); midSwitchPoint = (((Component)this).transform.position + ledgeSwitchPoint) / 2f + upHeight * (ledgeSwitchingDetectors.switchJumpHeight / 5f) * (ledgeSwitchingDetectors.switchJumpSpeed / switchPointDist * 3f / 6f); switching = true; } else if (r3FirstBackHit && r3FirstBackSurfaceDetectorsHit && r3FirstBackClear && !r3SecondBackHit && !r3ThirdBackHit && !r3SecondBackSurfaceDetectorsHit && !r3ThirdBackSurfaceDetectorsHit) { ledgeSwitchPoint = new Vector3(0f, onLedgeHeight2 / 10f, 0f) + r3FirstBackHitPoint; currentLedgeSwitchPoint = ledgeSwitchPoint; switchPointDist = Vector3.Distance(((Component)this).transform.position, ledgeSwitchPoint); midSwitchPoint = (((Component)this).transform.position + ledgeSwitchPoint) / 2f + upHeight * (ledgeSwitchingDetectors.switchJumpHeight / 5f) * (ledgeSwitchingDetectors.switchJumpSpeed / switchPointDist * 3f / 6f); switching = true; } else if (r3SecondBackHit && r3SecondBackSurfaceDetectorsHit && r3SecondBackClear && !r3ThirdBackHit && !r3ThirdBackSurfaceDetectorsHit) { ledgeSwitchPoint = new Vector3(0f, onLedgeHeight2 / 10f, 0f) + r3SecondBackHitPoint; currentLedgeSwitchPoint = ledgeSwitchPoint; switchPointDist = Vector3.Distance(((Component)this).transform.position, ledgeSwitchPoint); midSwitchPoint = (((Component)this).transform.position + ledgeSwitchPoint) / 2f + upHeight * (ledgeSwitchingDetectors.switchJumpHeight / 5f) * (ledgeSwitchingDetectors.switchJumpSpeed / switchPointDist * 3f / 6f); switching = true; } } } private void ClimbingOverLedge() { //IL_0146: Unknown result type (might be due to invalid IL or missing references) //IL_014c: Unknown result type (might be due to invalid IL or missing references) //IL_0151: Unknown result type (might be due to invalid IL or missing references) //IL_0157: Unknown result type (might be due to invalid IL or missing references) //IL_015c: Unknown result type (might be due to invalid IL or missing references) //IL_0162: Unknown result type (might be due to invalid IL or missing references) //IL_016c: Unknown result type (might be due to invalid IL or missing references) //IL_0171: Unknown result type (might be due to invalid IL or missing references) //IL_0177: Unknown result type (might be due to invalid IL or missing references) //IL_0181: Unknown result type (might be due to invalid IL or missing references) //IL_0186: Unknown result type (might be due to invalid IL or missing references) //IL_018c: Unknown result type (might be due to invalid IL or missing references) //IL_0192: Unknown result type (might be due to invalid IL or missing references) //IL_0197: Unknown result type (might be due to invalid IL or missing references) //IL_019c: Unknown result type (might be due to invalid IL or missing references) //IL_01a7: Unknown result type (might be due to invalid IL or missing references) //IL_01ad: Unknown result type (might be due to invalid IL or missing references) //IL_01b2: Unknown result type (might be due to invalid IL or missing references) //IL_01b8: Unknown result type (might be due to invalid IL or missing references) //IL_01c2: Unknown result type (might be due to invalid IL or missing references) //IL_01c7: Unknown result type (might be due to invalid IL or missing references) //IL_01cd: Unknown result type (might be due to invalid IL or missing references) //IL_01d7: Unknown result type (might be due to invalid IL or missing references) //IL_01dc: Unknown result type (might be due to invalid IL or missing references) //IL_01e2: Unknown result type (might be due to invalid IL or missing references) //IL_01e8: Unknown result type (might be due to invalid IL or missing references) //IL_01ed: Unknown result type (might be due to invalid IL or missing references) //IL_01f3: Unknown result type (might be due to invalid IL or missing references) //IL_01f8: Unknown result type (might be due to invalid IL or missing references) //IL_01fe: Unknown result type (might be due to invalid IL or missing references) //IL_0203: Unknown result type (might be due to invalid IL or missing references) //IL_0208: Unknown result type (might be due to invalid IL or missing references) //IL_0214: Unknown result type (might be due to invalid IL or missing references) //IL_0230: Unknown result type (might be due to invalid IL or missing references) //IL_0235: Unknown result type (might be due to invalid IL or missing references) //IL_0272: Unknown result type (might be due to invalid IL or missing references) //IL_0277: Unknown result type (might be due to invalid IL or missing references) //IL_027e: Unknown result type (might be due to invalid IL or missing references) //IL_0283: Unknown result type (might be due to invalid IL or missing references) //IL_03fa: Unknown result type (might be due to invalid IL or missing references) //IL_0405: Unknown result type (might be due to invalid IL or missing references) //IL_040a: Unknown result type (might be due to invalid IL or missing references) //IL_0436: Unknown result type (might be due to invalid IL or missing references) //IL_043b: Unknown result type (might be due to invalid IL or missing references) //IL_0444: Unknown result type (might be due to invalid IL or missing references) //IL_02eb: Unknown result type (might be due to invalid IL or missing references) //IL_02f0: Unknown result type (might be due to invalid IL or missing references) //IL_031c: Unknown result type (might be due to invalid IL or missing references) //IL_0321: Unknown result type (might be due to invalid IL or missing references) //IL_032a: Unknown result type (might be due to invalid IL or missing references) //IL_0335: Unknown result type (might be due to invalid IL or missing references) //IL_033a: Unknown result type (might be due to invalid IL or missing references) //IL_0340: Unknown result type (might be due to invalid IL or missing references) //IL_0345: Unknown result type (might be due to invalid IL or missing references) //IL_034a: Unknown result type (might be due to invalid IL or missing references) //IL_034e: Unknown result type (might be due to invalid IL or missing references) //IL_035e: Unknown result type (might be due to invalid IL or missing references) //IL_0369: Unknown result type (might be due to invalid IL or missing references) //IL_036e: Unknown result type (might be due to invalid IL or missing references) //IL_029e: Unknown result type (might be due to invalid IL or missing references) //IL_02ae: Unknown result type (might be due to invalid IL or missing references) //IL_02b4: Unknown result type (might be due to invalid IL or missing references) //IL_02b9: Unknown result type (might be due to invalid IL or missing references) //IL_02be: Unknown result type (might be due to invalid IL or missing references) //IL_02c3: Unknown result type (might be due to invalid IL or missing references) //IL_03d3: Unknown result type (might be due to invalid IL or missing references) //IL_03d9: Unknown result type (might be due to invalid IL or missing references) //IL_03e3: Unknown result type (might be due to invalid IL or missing references) //IL_03e8: Unknown result type (might be due to invalid IL or missing references) //IL_039b: Unknown result type (might be due to invalid IL or missing references) //IL_03a5: Unknown result type (might be due to invalid IL or missing references) //IL_03aa: Unknown result type (might be due to invalid IL or missing references) //IL_05cc: Unknown result type (might be due to invalid IL or missing references) //IL_05d2: Unknown result type (might be due to invalid IL or missing references) //IL_05d7: Unknown result type (might be due to invalid IL or missing references) //IL_05dd: Unknown result type (might be due to invalid IL or missing references) //IL_05e3: Unknown result type (might be due to invalid IL or missing references) //IL_05ed: Unknown result type (might be due to invalid IL or missing references) //IL_05f2: Unknown result type (might be due to invalid IL or missing references) //IL_04c8: Unknown result type (might be due to invalid IL or missing references) //IL_04cd: Unknown result type (might be due to invalid IL or missing references) //IL_04db: Unknown result type (might be due to invalid IL or missing references) //IL_04e7: Unknown result type (might be due to invalid IL or missing references) //IL_04ed: Unknown result type (might be due to invalid IL or missing references) //IL_04f7: Unknown result type (might be due to invalid IL or missing references) //IL_04fc: Unknown result type (might be due to invalid IL or missing references) //IL_0507: Unknown result type (might be due to invalid IL or missing references) //IL_050c: Unknown result type (might be due to invalid IL or missing references) //IL_0512: Unknown result type (might be due to invalid IL or missing references) //IL_0517: Unknown result type (might be due to invalid IL or missing references) //IL_051c: Unknown result type (might be due to invalid IL or missing references) //IL_0520: Unknown result type (might be due to invalid IL or missing references) //IL_0530: Unknown result type (might be due to invalid IL or missing references) //IL_053b: Unknown result type (might be due to invalid IL or missing references) //IL_0540: Unknown result type (might be due to invalid IL or missing references) //IL_05a5: Unknown result type (might be due to invalid IL or missing references) //IL_05ab: Unknown result type (might be due to invalid IL or missing references) //IL_05b5: Unknown result type (might be due to invalid IL or missing references) //IL_05ba: Unknown result type (might be due to invalid IL or missing references) //IL_056d: Unknown result type (might be due to invalid IL or missing references) //IL_0577: Unknown result type (might be due to invalid IL or missing references) //IL_057c: Unknown result type (might be due to invalid IL or missing references) //IL_0784: Unknown result type (might be due to invalid IL or missing references) //IL_0798: Unknown result type (might be due to invalid IL or missing references) //IL_079d: Unknown result type (might be due to invalid IL or missing references) //IL_07ad: Unknown result type (might be due to invalid IL or missing references) if (getOn2) { pullingUp = true; } if (pullingUp) { pullingUpTimer += 0.02f; if (scriptsToDisableOnGrab != null) { string[] array = scriptsToDisableOnGrab; foreach (string text in array) { ref MonoBehaviour reference = ref scriptToDisable; Component component = ((Component)this).GetComponent(text); reference = (MonoBehaviour)(object)((component is MonoBehaviour) ? component : null); if ((Object)(object)scriptToDisable != (Object)null) { ((Behaviour)scriptToDisable).enabled = false; } else if (!currentlyEnablingAndDisablingScripts) { scriptWarning = true; } } } if (scriptsToEnableOnGrab != null) { string[] array2 = scriptsToEnableOnGrab; foreach (string text2 in array2) { ref MonoBehaviour reference2 = ref scriptToEnable; Component component2 = ((Component)this).GetComponent(text2); reference2 = (MonoBehaviour)(object)((component2 is MonoBehaviour) ? component2 : null); if ((Object)(object)scriptToEnable != (Object)null) { ((Behaviour)scriptToEnable).enabled = true; } else if (!currentlyEnablingAndDisablingScripts) { scriptWarning = true; } } } currentlyEnablingAndDisablingScripts = true; if (grabbedOn) { if (Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight + forwardLength / 1.25f + upHeight * 1.5f + (rodHoldingLedgeDetectorHeight2 + rodHoldingLedgeDetectorForward2), ((Component)this).transform.position + posChange2 + upHeight * 0.8f + forwardLength / 1.75f + (ledgeDetectorHeight2 + ledgeDetectorForward2 + rodHoldingLedgeDetectorHeight2 + rodHoldingLedgeDetectorForward2), ref hit, LayerMask.op_Implicit(collisionLayers))) { hitPoint = ((RaycastHit)(ref hit)).point; } grabbedOn = false; } if ((Object)(object)((Component)this).transform.parent != (Object)null) { if (!pullingUpOnToPlatform) { originalPlatformPosition = ((Component)this).transform.parent.position; originalPullUpPoint = hitPoint; pullingUpOnToPlatform = true; } if (pullingUpOnToPlatform) { hitPoint = originalPullUpPoint + (((Component)this).transform.parent.position - originalPlatformPosition); } } else { pullingUpOnToPlatform = false; } if (getOn2) { Vector3 val = new Vector3(((Component)this).transform.position.x, hitPoint.y + upHeight.y / 10f, ((Component)this).transform.position.z) - ((Component)this).transform.position + posChange1; movementVector = ((Vector3)(ref val)).normalized * climbingDetectors.pullUpSpeed * height2; if (Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled) { characterController.Move(movementVector * Time.deltaTime); } else if (Object.op_Implicit((Object)(object)rigidBody)) { rigidBody.MovePosition(((Component)this).transform.position + movementVector * Time.deltaTime); } } if (Vector3.Distance(((Component)this).transform.position, new Vector3(((Component)this).transform.position.x, hitPoint.y + upHeight.y / 10f, ((Component)this).transform.position.z)) <= 0.2f * height2 || pullingUpTimer > Mathf.Abs(climbingDetectors.pullUpSpeed / 4f * ((0f - onLedgeHeight2) / 19f + 1f))) { getOn = false; grabbedOn = false; getOn2 = false; } if (!getOn2) { ((Component)this).transform.eulerAngles = new Vector3(0f, ((Component)this).transform.eulerAngles.y, 0f); Vector3 val2 = hitPoint + forwardLength / 10f - ((Component)this).transform.position + posChange1; movementVector = ((Vector3)(ref val2)).normalized * climbingDetectors.pullUpSpeed * height2; if (Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled) { characterController.Move(movementVector * Time.deltaTime); } else if (Object.op_Implicit((Object)(object)rigidBody)) { rigidBody.MovePosition(((Component)this).transform.position + movementVector * Time.deltaTime); } } if (!(Vector3.Distance(((Component)this).transform.position + posChange1, hitPoint + forwardLength / 10f) <= 0.2f * height2) && !(pullingUpTimer > Mathf.Abs(climbingDetectors.pullUpSpeed / 4f * ((0f - onLedgeHeight2) / 19f + 1f)))) { return; } if (scriptsToDisableOnGrab != null) { string[] array3 = scriptsToDisableOnGrab; foreach (string text3 in array3) { ref MonoBehaviour reference3 = ref scriptToDisable; Component component3 = ((Component)this).GetComponent(text3); reference3 = (MonoBehaviour)(object)((component3 is MonoBehaviour) ? component3 : null); if ((Object)(object)scriptToDisable != (Object)null) { ((Behaviour)scriptToDisable).enabled = true; } else if (!currentlyEnablingAndDisablingScripts || pullingUp) { scriptWarning = true; } } } if (scriptsToEnableOnGrab != null) { string[] array4 = scriptsToEnableOnGrab; foreach (string text4 in array4) { ref MonoBehaviour reference4 = ref scriptToEnable; Component component4 = ((Component)this).GetComponent(text4); reference4 = (MonoBehaviour)(object)((component4 is MonoBehaviour) ? component4 : null); if ((Object)(object)scriptToEnable != (Object)null) { ((Behaviour)scriptToEnable).enabled = false; } else if (!currentlyEnablingAndDisablingScripts || pullingUp) { scriptWarning = true; } } } currentlyEnablingAndDisablingScripts = true; if ((Object)(object)dustEffect != (Object)null) { Object.Instantiate(dustEffect, ((Component)this).transform.position + new Vector3(0f, 0.05f, 0f), dustEffect.transform.rotation); } getOn2 = false; pullingUp = false; } else { pullingUpOnToPlatform = false; pullingUpTimer = 0f; } } private void CheckIfStuck() { //IL_0dae: Unknown result type (might be due to invalid IL or missing references) //IL_0db3: Unknown result type (might be due to invalid IL or missing references) //IL_0dbf: Unknown result type (might be due to invalid IL or missing references) //IL_0dc4: Unknown result type (might be due to invalid IL or missing references) //IL_0188: Unknown result type (might be due to invalid IL or missing references) //IL_018e: Unknown result type (might be due to invalid IL or missing references) //IL_0656: Unknown result type (might be due to invalid IL or missing references) //IL_065c: Unknown result type (might be due to invalid IL or missing references) //IL_01a8: Unknown result type (might be due to invalid IL or missing references) //IL_01ae: Unknown result type (might be due to invalid IL or missing references) //IL_08c2: Unknown result type (might be due to invalid IL or missing references) //IL_08c8: Unknown result type (might be due to invalid IL or missing references) //IL_01c8: Unknown result type (might be due to invalid IL or missing references) //IL_01cd: Unknown result type (might be due to invalid IL or missing references) //IL_08dd: Unknown result type (might be due to invalid IL or missing references) //IL_08e2: Unknown result type (might be due to invalid IL or missing references) //IL_0682: Unknown result type (might be due to invalid IL or missing references) //IL_0688: Unknown result type (might be due to invalid IL or missing references) //IL_068d: Unknown result type (might be due to invalid IL or missing references) //IL_0693: Unknown result type (might be due to invalid IL or missing references) //IL_0698: Unknown result type (might be due to invalid IL or missing references) //IL_06a3: Unknown result type (might be due to invalid IL or missing references) //IL_06a9: Unknown result type (might be due to invalid IL or missing references) //IL_06ae: Unknown result type (might be due to invalid IL or missing references) //IL_06b4: Unknown result type (might be due to invalid IL or missing references) //IL_06be: Unknown result type (might be due to invalid IL or missing references) //IL_06c3: Unknown result type (might be due to invalid IL or missing references) //IL_06c9: Unknown result type (might be due to invalid IL or missing references) //IL_06ce: Unknown result type (might be due to invalid IL or missing references) //IL_06da: Unknown result type (might be due to invalid IL or missing references) //IL_0802: Unknown result type (might be due to invalid IL or missing references) //IL_0807: Unknown result type (might be due to invalid IL or missing references) //IL_081a: Unknown result type (might be due to invalid IL or missing references) //IL_081f: Unknown result type (might be due to invalid IL or missing references) //IL_0828: Unknown result type (might be due to invalid IL or missing references) //IL_0833: Unknown result type (might be due to invalid IL or missing references) //IL_0838: Unknown result type (might be due to invalid IL or missing references) //IL_084c: Unknown result type (might be due to invalid IL or missing references) //IL_0851: Unknown result type (might be due to invalid IL or missing references) //IL_085a: Unknown result type (might be due to invalid IL or missing references) //IL_06f4: Unknown result type (might be due to invalid IL or missing references) //IL_06fa: Unknown result type (might be due to invalid IL or missing references) //IL_06ff: Unknown result type (might be due to invalid IL or missing references) //IL_0705: Unknown result type (might be due to invalid IL or missing references) //IL_070f: Unknown result type (might be due to invalid IL or missing references) //IL_0714: Unknown result type (might be due to invalid IL or missing references) //IL_071f: Unknown result type (might be due to invalid IL or missing references) //IL_0725: Unknown result type (might be due to invalid IL or missing references) //IL_072a: Unknown result type (might be due to invalid IL or missing references) //IL_0730: Unknown result type (might be due to invalid IL or missing references) //IL_073a: Unknown result type (might be due to invalid IL or missing references) //IL_073f: Unknown result type (might be due to invalid IL or missing references) //IL_0745: Unknown result type (might be due to invalid IL or missing references) //IL_074f: Unknown result type (might be due to invalid IL or missing references) //IL_0754: Unknown result type (might be due to invalid IL or missing references) //IL_0760: Unknown result type (might be due to invalid IL or missing references) //IL_077a: Unknown result type (might be due to invalid IL or missing references) //IL_0780: Unknown result type (might be due to invalid IL or missing references) //IL_0785: Unknown result type (might be due to invalid IL or missing references) //IL_078b: Unknown result type (might be due to invalid IL or missing references) //IL_0795: Unknown result type (might be due to invalid IL or missing references) //IL_079a: Unknown result type (might be due to invalid IL or missing references) //IL_07a5: Unknown result type (might be due to invalid IL or missing references) //IL_07ab: Unknown result type (might be due to invalid IL or missing references) //IL_07b0: Unknown result type (might be due to invalid IL or missing references) //IL_07b6: Unknown result type (might be due to invalid IL or missing references) //IL_07c0: Unknown result type (might be due to invalid IL or missing references) //IL_07c5: Unknown result type (might be due to invalid IL or missing references) //IL_07cb: Unknown result type (might be due to invalid IL or missing references) //IL_07d5: Unknown result type (might be due to invalid IL or missing references) //IL_07da: Unknown result type (might be due to invalid IL or missing references) //IL_07e6: Unknown result type (might be due to invalid IL or missing references) //IL_0242: Unknown result type (might be due to invalid IL or missing references) //IL_0248: Unknown result type (might be due to invalid IL or missing references) //IL_024d: Unknown result type (might be due to invalid IL or missing references) //IL_0253: Unknown result type (might be due to invalid IL or missing references) //IL_025d: Unknown result type (might be due to invalid IL or missing references) //IL_0262: Unknown result type (might be due to invalid IL or missing references) //IL_0268: Unknown result type (might be due to invalid IL or missing references) //IL_0272: Unknown result type (might be due to invalid IL or missing references) //IL_0277: Unknown result type (might be due to invalid IL or missing references) //IL_027d: Unknown result type (might be due to invalid IL or missing references) //IL_0287: Unknown result type (might be due to invalid IL or missing references) //IL_028c: Unknown result type (might be due to invalid IL or missing references) //IL_0292: Unknown result type (might be due to invalid IL or missing references) //IL_02a9: Unknown result type (might be due to invalid IL or missing references) //IL_02af: Unknown result type (might be due to invalid IL or missing references) //IL_02c6: Unknown result type (might be due to invalid IL or missing references) //IL_02cb: Unknown result type (might be due to invalid IL or missing references) //IL_02d1: Unknown result type (might be due to invalid IL or missing references) //IL_02d6: Unknown result type (might be due to invalid IL or missing references) //IL_02dc: Unknown result type (might be due to invalid IL or missing references) //IL_02e1: Unknown result type (might be due to invalid IL or missing references) //IL_02ec: Unknown result type (might be due to invalid IL or missing references) //IL_02fe: Unknown result type (might be due to invalid IL or missing references) //IL_0308: Unknown result type (might be due to invalid IL or missing references) //IL_030d: Unknown result type (might be due to invalid IL or missing references) //IL_0318: Unknown result type (might be due to invalid IL or missing references) //IL_032a: Unknown result type (might be due to invalid IL or missing references) //IL_032f: Unknown result type (might be due to invalid IL or missing references) //IL_0334: Unknown result type (might be due to invalid IL or missing references) //IL_033a: Unknown result type (might be due to invalid IL or missing references) //IL_0344: Unknown result type (might be due to invalid IL or missing references) //IL_0349: Unknown result type (might be due to invalid IL or missing references) //IL_0354: Unknown result type (might be due to invalid IL or missing references) //IL_035a: Unknown result type (might be due to invalid IL or missing references) //IL_035f: Unknown result type (might be due to invalid IL or missing references) //IL_0365: Unknown result type (might be due to invalid IL or missing references) //IL_036f: Unknown result type (might be due to invalid IL or missing references) //IL_0374: Unknown result type (might be due to invalid IL or missing references) //IL_037a: Unknown result type (might be due to invalid IL or missing references) //IL_0384: Unknown result type (might be due to invalid IL or missing references) //IL_0389: Unknown result type (might be due to invalid IL or missing references) //IL_038f: Unknown result type (might be due to invalid IL or missing references) //IL_0395: Unknown result type (might be due to invalid IL or missing references) //IL_039a: Unknown result type (might be due to invalid IL or missing references) //IL_03a0: Unknown result type (might be due to invalid IL or missing references) //IL_03a5: Unknown result type (might be due to invalid IL or missing references) //IL_03ab: Unknown result type (might be due to invalid IL or missing references) //IL_03b0: Unknown result type (might be due to invalid IL or missing references) //IL_03b5: Unknown result type (might be due to invalid IL or missing references) //IL_03bb: Unknown result type (might be due to invalid IL or missing references) //IL_03c5: Unknown result type (might be due to invalid IL or missing references) //IL_03ca: Unknown result type (might be due to invalid IL or missing references) //IL_03d6: Unknown result type (might be due to invalid IL or missing references) //IL_0d1d: Unknown result type (might be due to invalid IL or missing references) //IL_0d23: Unknown result type (might be due to invalid IL or missing references) //IL_0c8e: Unknown result type (might be due to invalid IL or missing references) //IL_0c94: Unknown result type (might be due to invalid IL or missing references) //IL_0466: Unknown result type (might be due to invalid IL or missing references) //IL_046c: Unknown result type (might be due to invalid IL or missing references) //IL_0471: Unknown result type (might be due to invalid IL or missing references) //IL_0477: Unknown result type (might be due to invalid IL or missing references) //IL_0481: Unknown result type (might be due to invalid IL or missing references) //IL_0486: Unknown result type (might be due to invalid IL or missing references) //IL_048c: Unknown result type (might be due to invalid IL or missing references) //IL_0496: Unknown result type (might be due to invalid IL or missing references) //IL_049b: Unknown result type (might be due to invalid IL or missing references) //IL_04a1: Unknown result type (might be due to invalid IL or missing references) //IL_04ab: Unknown result type (might be due to invalid IL or missing references) //IL_04b0: Unknown result type (might be due to invalid IL or missing references) //IL_04b6: Unknown result type (might be due to invalid IL or missing references) //IL_04cd: Unknown result type (might be due to invalid IL or missing references) //IL_04d3: Unknown result type (might be due to invalid IL or missing references) //IL_04ea: Unknown result type (might be due to invalid IL or missing references) //IL_04ef: Unknown result type (might be due to invalid IL or missing references) //IL_04f5: Unknown result type (might be due to invalid IL or missing references) //IL_04fa: Unknown result type (might be due to invalid IL or missing references) //IL_0500: Unknown result type (might be due to invalid IL or missing references) //IL_0505: Unknown result type (might be due to invalid IL or missing references) //IL_0510: Unknown result type (might be due to invalid IL or missing references) //IL_0522: Unknown result type (might be due to invalid IL or missing references) //IL_052c: Unknown result type (might be due to invalid IL or missing references) //IL_0531: Unknown result type (might be due to invalid IL or missing references) //IL_053c: Unknown result type (might be due to invalid IL or missing references) //IL_054e: Unknown result type (might be due to invalid IL or missing references) //IL_0553: Unknown result type (might be due to invalid IL or missing references) //IL_0558: Unknown result type (might be due to invalid IL or missing references) //IL_055e: Unknown result type (might be due to invalid IL or missing references) //IL_0568: Unknown result type (might be due to invalid IL or missing references) //IL_056d: Unknown result type (might be due to invalid IL or missing references) //IL_0578: Unknown result type (might be due to invalid IL or missing references) //IL_057e: Unknown result type (might be due to invalid IL or missing references) //IL_0583: Unknown result type (might be due to invalid IL or missing references) //IL_0589: Unknown result type (might be due to invalid IL or missing references) //IL_0593: Unknown result type (might be due to invalid IL or missing references) //IL_0598: Unknown result type (might be due to invalid IL or missing references) //IL_059e: Unknown result type (might be due to invalid IL or missing references) //IL_05a8: Unknown result type (might be due to invalid IL or missing references) //IL_05ad: Unknown result type (might be due to invalid IL or missing references) //IL_05b3: Unknown result type (might be due to invalid IL or missing references) //IL_05b9: Unknown result type (might be due to invalid IL or missing references) //IL_05be: Unknown result type (might be due to invalid IL or missing references) //IL_05c4: Unknown result type (might be due to invalid IL or missing references) //IL_05c9: Unknown result type (might be due to invalid IL or missing references) //IL_05cf: Unknown result type (might be due to invalid IL or missing references) //IL_05d4: Unknown result type (might be due to invalid IL or missing references) //IL_05d9: Unknown result type (might be due to invalid IL or missing references) //IL_05df: Unknown result type (might be due to invalid IL or missing references) //IL_05e9: Unknown result type (might be due to invalid IL or missing references) //IL_05ee: Unknown result type (might be due to invalid IL or missing references) //IL_05fa: Unknown result type (might be due to invalid IL or missing references) //IL_03f0: Unknown result type (might be due to invalid IL or missing references) //IL_03f5: Unknown result type (might be due to invalid IL or missing references) //IL_0d55: Unknown result type (might be due to invalid IL or missing references) //IL_0d60: Unknown result type (might be due to invalid IL or missing references) //IL_0d6a: Unknown result type (might be due to invalid IL or missing references) //IL_0d6f: Unknown result type (might be due to invalid IL or missing references) //IL_0d80: Unknown result type (might be due to invalid IL or missing references) //IL_0d8b: Unknown result type (might be due to invalid IL or missing references) //IL_0d95: Unknown result type (might be due to invalid IL or missing references) //IL_0d9a: Unknown result type (might be due to invalid IL or missing references) //IL_0ca9: Unknown result type (might be due to invalid IL or missing references) //IL_0caf: Unknown result type (might be due to invalid IL or missing references) //IL_0614: Unknown result type (might be due to invalid IL or missing references) //IL_0619: Unknown result type (might be due to invalid IL or missing references) //IL_0cd6: Unknown result type (might be due to invalid IL or missing references) //IL_0ce1: Unknown result type (might be due to invalid IL or missing references) //IL_0ceb: Unknown result type (might be due to invalid IL or missing references) //IL_0cf0: Unknown result type (might be due to invalid IL or missing references) //IL_0990: Unknown result type (might be due to invalid IL or missing references) //IL_0996: Unknown result type (might be due to invalid IL or missing references) //IL_099b: Unknown result type (might be due to invalid IL or missing references) //IL_09a1: Unknown result type (might be due to invalid IL or missing references) //IL_09a6: Unknown result type (might be due to invalid IL or missing references) //IL_09b1: Unknown result type (might be due to invalid IL or missing references) //IL_09b7: Unknown result type (might be due to invalid IL or missing references) //IL_09bc: Unknown result type (might be due to invalid IL or missing references) //IL_09c2: Unknown result type (might be due to invalid IL or missing references) //IL_09cc: Unknown result type (might be due to invalid IL or missing references) //IL_09d1: Unknown result type (might be due to invalid IL or missing references) //IL_09d7: Unknown result type (might be due to invalid IL or missing references) //IL_09dc: Unknown result type (might be due to invalid IL or missing references) //IL_09e8: Unknown result type (might be due to invalid IL or missing references) //IL_0a02: Unknown result type (might be due to invalid IL or missing references) //IL_0a08: Unknown result type (might be due to invalid IL or missing references) //IL_0a0d: Unknown result type (might be due to invalid IL or missing references) //IL_0a13: Unknown result type (might be due to invalid IL or missing references) //IL_0a1d: Unknown result type (might be due to invalid IL or missing references) //IL_0a22: Unknown result type (might be due to invalid IL or missing references) //IL_0a2d: Unknown result type (might be due to invalid IL or missing references) //IL_0a33: Unknown result type (might be due to invalid IL or missing references) //IL_0a38: Unknown result type (might be due to invalid IL or missing references) //IL_0a3e: Unknown result type (might be due to invalid IL or missing references) //IL_0a48: Unknown result type (might be due to invalid IL or missing references) //IL_0a4d: Unknown result type (might be due to invalid IL or missing references) //IL_0a53: Unknown result type (might be due to invalid IL or missing references) //IL_0a5d: Unknown result type (might be due to invalid IL or missing references) //IL_0a62: Unknown result type (might be due to invalid IL or missing references) //IL_0a6e: Unknown result type (might be due to invalid IL or missing references) //IL_0bf7: Unknown result type (might be due to invalid IL or missing references) //IL_0c02: Unknown result type (might be due to invalid IL or missing references) //IL_0c0c: Unknown result type (might be due to invalid IL or missing references) //IL_0c17: Unknown result type (might be due to invalid IL or missing references) //IL_0c1c: Unknown result type (might be due to invalid IL or missing references) //IL_0c21: Unknown result type (might be due to invalid IL or missing references) //IL_0c30: Unknown result type (might be due to invalid IL or missing references) //IL_0c35: Unknown result type (might be due to invalid IL or missing references) //IL_0c44: Unknown result type (might be due to invalid IL or missing references) //IL_0c4f: Unknown result type (might be due to invalid IL or missing references) //IL_0c59: Unknown result type (might be due to invalid IL or missing references) //IL_0c64: Unknown result type (might be due to invalid IL or missing references) //IL_0c69: Unknown result type (might be due to invalid IL or missing references) //IL_0c6e: Unknown result type (might be due to invalid IL or missing references) //IL_0c77: Unknown result type (might be due to invalid IL or missing references) //IL_0b26: Unknown result type (might be due to invalid IL or missing references) //IL_0b31: Unknown result type (might be due to invalid IL or missing references) //IL_0b4f: Unknown result type (might be due to invalid IL or missing references) //IL_0b60: Unknown result type (might be due to invalid IL or missing references) //IL_0b65: Unknown result type (might be due to invalid IL or missing references) //IL_0b6a: Unknown result type (might be due to invalid IL or missing references) //IL_0b79: Unknown result type (might be due to invalid IL or missing references) //IL_0b7e: Unknown result type (might be due to invalid IL or missing references) //IL_0b8d: Unknown result type (might be due to invalid IL or missing references) //IL_0b98: Unknown result type (might be due to invalid IL or missing references) //IL_0bb6: Unknown result type (might be due to invalid IL or missing references) //IL_0bc7: Unknown result type (might be due to invalid IL or missing references) //IL_0bcc: Unknown result type (might be due to invalid IL or missing references) //IL_0bd1: Unknown result type (might be due to invalid IL or missing references) //IL_0bda: Unknown result type (might be due to invalid IL or missing references) //IL_0a88: Unknown result type (might be due to invalid IL or missing references) //IL_0a8e: Unknown result type (might be due to invalid IL or missing references) //IL_0a93: Unknown result type (might be due to invalid IL or missing references) //IL_0a99: Unknown result type (might be due to invalid IL or missing references) //IL_0aa3: Unknown result type (might be due to invalid IL or missing references) //IL_0aa8: Unknown result type (might be due to invalid IL or missing references) //IL_0ab3: Unknown result type (might be due to invalid IL or missing references) //IL_0ab9: Unknown result type (might be due to invalid IL or missing references) //IL_0abe: Unknown result type (might be due to invalid IL or missing references) //IL_0ac4: Unknown result type (might be due to invalid IL or missing references) //IL_0ace: Unknown result type (might be due to invalid IL or missing references) //IL_0ad3: Unknown result type (might be due to invalid IL or missing references) //IL_0ad9: Unknown result type (might be due to invalid IL or missing references) //IL_0ae3: Unknown result type (might be due to invalid IL or missing references) //IL_0ae8: Unknown result type (might be due to invalid IL or missing references) //IL_0af4: Unknown result type (might be due to invalid IL or missing references) if (rightMovable || (Input.GetAxisRaw("Horizontal") < 0f && currentStatesOfVariables.leftMovementPossible)) { stuckToRight = false; } if (leftMovable || (Input.GetAxisRaw("Horizontal") > 0f && currentStatesOfVariables.rightMovementPossible)) { stuckToLeft = false; } if (!stuckInSamePos || pullingUp) { stuckInSamePosNoCol = false; } else if (noCollisionTimer > 25f) { stuckInSamePosNoCol = true; } if ((grabbedOn && (!switching || !ledgeSwitchingDetectors.allowLedgeSwitching) && movementSpeed > 0f && ((Input.GetAxisRaw("Horizontal") > 0f && currentStatesOfVariables.rightMovementPossible) || (Input.GetAxisRaw("Horizontal") < 0f && currentStatesOfVariables.leftMovementPossible) || Input.GetAxisRaw("Horizontal") == 0f)) || pullingUp) { if (climbable && climbableL && climbableR) { stuckToRight = false; stuckToLeft = false; } else if (Vector3.Distance(((Component)this).transform.position, lastPos) > 0.0001f && Vector3.Distance(((Component)this).transform.position, lastPos) < 0.01f && ((Component)this).transform.position.y == lastPos.y && (!climbable || !climbableL || !climbableR)) { if (Input.GetAxisRaw("Horizontal") >= 0f && !rightMovable && climbPossible && climbPossibleR && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight / 2f + forwardLength / 1.52f + upHeight * 0.9f + (ledgeDetectorHeight2 * (0.65f - topOfLedgeSurfaceDetectorHeight2 * 0.59f) + ledgeDetectorForward2 * (0.65f - topOfLedgeSurfaceDetectorHeight2 * 0.59f) + rodHoldingLedgeDetectorHeight2 + rodHoldingLedgeDetectorForward2 + ((Component)this).transform.forward * (topOfLedgeSurfaceDetectorHeight2 * length2) * 0.14f + ((Component)this).transform.up * (topOfLedgeSurfaceDetectorHeight2 * height2)) + rightWidth / 4f, ((Component)this).transform.position + posChange2 + upHeight * 0.8f + forwardLength / 1.75f + (ledgeDetectorHeight2 + ledgeDetectorForward2 + rodHoldingLedgeDetectorHeight2 + rodHoldingLedgeDetectorForward2) + rightWidth / 4f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit) { stuckToRight = true; } if (Input.GetAxisRaw("Horizontal") <= 0f && !leftMovable && climbPossible && climbPossibleL && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight / 2f + forwardLength / 1.52f + upHeight * 0.9f + (ledgeDetectorHeight2 * (0.65f - topOfLedgeSurfaceDetectorHeight2 * 0.59f) + ledgeDetectorForward2 * (0.65f - topOfLedgeSurfaceDetectorHeight2 * 0.59f) + rodHoldingLedgeDetectorHeight2 + rodHoldingLedgeDetectorForward2 + ((Component)this).transform.forward * (topOfLedgeSurfaceDetectorHeight2 * length2) * 0.14f + ((Component)this).transform.up * (topOfLedgeSurfaceDetectorHeight2 * height2)) - rightWidth / 4f, ((Component)this).transform.position + posChange2 + upHeight * 0.8f + forwardLength / 1.75f + (ledgeDetectorHeight2 + ledgeDetectorForward2 + rodHoldingLedgeDetectorHeight2 + rodHoldingLedgeDetectorForward2) - rightWidth / 4f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit) { stuckToLeft = true; } } if (((Component)this).transform.position == lastPos) { if (noCollisionTimer < 5f && (Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight, ((Component)this).transform.position + posChange1 + forwardLength / 2f + upHeight, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight * 1.1f, ((Component)this).transform.position + posChange1 + forwardLength / 2f + upHeight * 1.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight * 1.2f, ((Component)this).transform.position + posChange1 + forwardLength / 2f + upHeight * 1.2f, ref hit, LayerMask.op_Implicit(collisionLayers)))) { distFromWall = Vector3.Distance(new Vector3(((RaycastHit)(ref hit)).point.x, 0f, ((RaycastHit)(ref hit)).point.z), new Vector3(((Component)this).transform.position.x, 0f, ((Component)this).transform.position.z)); } if ((Input.GetAxisRaw("Horizontal") > 0.1f && currentStatesOfVariables.rightMovementPossible) || (Input.GetAxisRaw("Horizontal") < -0.1f && currentStatesOfVariables.leftMovementPossible)) { stuckInSamePos = true; } } if (((Component)this).transform.rotation != lastRot2 || Mathf.Abs(((Component)this).transform.position.y - lastPos.y) > 0.001f || (stuckInSamePosNoCol && noCollisionTimer < 2f)) { stuckInSamePos = false; stuckInSamePosNoCol = false; } if (Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled) { if (!pullingUp && stuckInSamePos) { if (climbPossible && climbPossibleL && climbPossibleR && (Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight, ((Component)this).transform.position + posChange1 + forwardLength / 2f + upHeight, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight * 1.1f, ((Component)this).transform.position + posChange1 + forwardLength / 2f + upHeight * 1.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight * 1.2f, ((Component)this).transform.position + posChange1 + forwardLength / 2f + upHeight * 1.2f, ref hit, LayerMask.op_Implicit(collisionLayers)))) { if (distFromWall != 0f) { ((Component)this).transform.position = new Vector3((((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / (distFromWall / (0.07f * (distFromWall / 0.2601f))) * (distFromWall / 0.2601f)).x, ((Component)this).transform.position.y, (((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / (distFromWall / (0.07f * (distFromWall / 0.2601f))) * (distFromWall / 0.2601f)).z); } else { ((Component)this).transform.position = new Vector3((((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / 3.5f * length2).x, ((Component)this).transform.position.y, (((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / 3.5f * length2).z); } } else if ((((Component)this).transform.position == lastPos && ((Component)this).transform.rotation == lastRot2) || noCollisionTimer < 2f) { Transform transform = ((Component)this).transform; transform.position -= ((Component)this).transform.forward / 100f; } } if (pullingUp && noCollisionTimer < 5f && (((Component)this).transform.position == lastPos || (wallInFrontAngle > 95f && getOn2))) { Transform transform2 = ((Component)this).transform; transform2.position -= ((Component)this).transform.forward / 25f; Transform transform3 = ((Component)this).transform; transform3.position += ((Component)this).transform.up / 15f; } } } lastPos = ((Component)this).transform.position; lastRot2 = ((Component)this).transform.rotation; } private void SwitchingLedges() { //IL_005c: Unknown result type (might be due to invalid IL or missing references) //IL_0061: Unknown result type (might be due to invalid IL or missing references) //IL_0081: Unknown result type (might be due to invalid IL or missing references) //IL_0086: Unknown result type (might be due to invalid IL or missing references) //IL_00ac: Unknown result type (might be due to invalid IL or missing references) //IL_00b1: Unknown result type (might be due to invalid IL or missing references) //IL_00ee: Unknown result type (might be due to invalid IL or missing references) //IL_00f3: Unknown result type (might be due to invalid IL or missing references) //IL_0130: Unknown result type (might be due to invalid IL or missing references) //IL_0135: Unknown result type (might be due to invalid IL or missing references) //IL_016c: Unknown result type (might be due to invalid IL or missing references) //IL_0490: Unknown result type (might be due to invalid IL or missing references) //IL_0496: Unknown result type (might be due to invalid IL or missing references) //IL_02c7: Unknown result type (might be due to invalid IL or missing references) //IL_02cc: Unknown result type (might be due to invalid IL or missing references) //IL_0340: Unknown result type (might be due to invalid IL or missing references) //IL_0345: Unknown result type (might be due to invalid IL or missing references) //IL_0381: Unknown result type (might be due to invalid IL or missing references) //IL_0386: Unknown result type (might be due to invalid IL or missing references) //IL_03a0: Unknown result type (might be due to invalid IL or missing references) //IL_03a5: Unknown result type (might be due to invalid IL or missing references) //IL_03ae: Unknown result type (might be due to invalid IL or missing references) if (switching && ledgeSwitchingDetectors.allowLedgeSwitching && grabbedOn) { movementSpeed = 0f; playerPosY = ledgeSwitchPoint.y - upHeight.y * 0.1f; float num = Mathf.Abs(((Component)this).transform.position.x - midSwitchPoint.x); float num2 = Mathf.Abs(((Component)this).transform.position.z - midSwitchPoint.z); ((Component)this).transform.position = new Vector3(Mathf.Lerp(((Component)this).transform.position.x, currentLedgeSwitchPoint.x, ledgeSwitchingDetectors.switchJumpSpeed / switchPointDist * 3f * Time.deltaTime), Mathf.Lerp(((Component)this).transform.position.y, currentLedgeSwitchPoint.y, ledgeSwitchingDetectors.switchJumpSpeed / switchPointDist * 3f * Time.deltaTime), Mathf.Lerp(((Component)this).transform.position.z, currentLedgeSwitchPoint.z, ledgeSwitchingDetectors.switchJumpSpeed / switchPointDist * 3f * Time.deltaTime)); if (num < 0.3f && num2 < 0.3f) { atMidPoint = true; } if (!switchJumping && !atMidPoint && ((ledgeSwitchingDetectors.switchJumpHeight / 5f * (ledgeSwitchingDetectors.switchJumpSpeed / switchPointDist * 3f / 6f) >= 0f && currentLedgeSwitchPoint.y >= ledgeSwitchPoint.y) || (ledgeSwitchingDetectors.switchJumpHeight / 5f * (ledgeSwitchingDetectors.switchJumpSpeed / switchPointDist * 3f / 6f) < 0f && currentLedgeSwitchPoint.y <= ledgeSwitchPoint.y))) { switchJumping = true; } if (switchJumping) { if ((ledgeSwitchingDetectors.switchJumpHeight / 5f * (ledgeSwitchingDetectors.switchJumpSpeed / switchPointDist * 3f / 6f) >= 0f && currentLedgeSwitchPoint.y <= ledgeSwitchPoint.y && ((Component)this).transform.position.y <= ledgeSwitchPoint.y) || (ledgeSwitchingDetectors.switchJumpHeight / 5f * (ledgeSwitchingDetectors.switchJumpSpeed / switchPointDist * 3f / 6f) < 0f && currentLedgeSwitchPoint.y >= ledgeSwitchPoint.y && ((Component)this).transform.position.y >= ledgeSwitchPoint.y)) { currentLedgeSwitchPoint.y = ledgeSwitchPoint.y; ((Component)this).transform.position = new Vector3(((Component)this).transform.position.x, ledgeSwitchPoint.y, ((Component)this).transform.position.z); switchJumping = false; } if (!atMidPoint) { ref Vector3 reference = ref currentLedgeSwitchPoint; reference.y += ledgeSwitchingDetectors.switchJumpHeight / 5f * (ledgeSwitchingDetectors.switchJumpSpeed / switchPointDist * 3f / 6f) * (num + num2) / 2f; } else { ref Vector3 reference2 = ref currentLedgeSwitchPoint; reference2.y -= ledgeSwitchingDetectors.switchJumpHeight / 5f * (ledgeSwitchingDetectors.switchJumpSpeed / switchPointDist * 3f / 6f) * (num + num2) / 2f; } } else { currentLedgeSwitchPoint.y = ledgeSwitchPoint.y; } if (Vector3.Distance(((Component)this).transform.position, ledgeSwitchPoint) < 0.3f) { atMidPoint = false; if ((Object)(object)animator != (Object)null) { animator.SetFloat("ledgeSpeed", 0f); } switching = false; } } else { atMidPoint = false; switchJumping = false; switching = false; } } private void DetachingFromMovingPlatform() { //IL_0190: Unknown result type (might be due to invalid IL or missing references) //IL_0196: Unknown result type (might be due to invalid IL or missing references) //IL_019b: Unknown result type (might be due to invalid IL or missing references) //IL_01a1: Unknown result type (might be due to invalid IL or missing references) //IL_01ab: Unknown result type (might be due to invalid IL or missing references) //IL_01b0: Unknown result type (might be due to invalid IL or missing references) //IL_01b6: Unknown result type (might be due to invalid IL or missing references) //IL_01c0: Unknown result type (might be due to invalid IL or missing references) //IL_01c5: Unknown result type (might be due to invalid IL or missing references) //IL_01cb: Unknown result type (might be due to invalid IL or missing references) //IL_01d5: Unknown result type (might be due to invalid IL or missing references) //IL_01da: Unknown result type (might be due to invalid IL or missing references) //IL_01e0: Unknown result type (might be due to invalid IL or missing references) //IL_01f7: Unknown result type (might be due to invalid IL or missing references) //IL_01fd: Unknown result type (might be due to invalid IL or missing references) //IL_0214: Unknown result type (might be due to invalid IL or missing references) //IL_0219: Unknown result type (might be due to invalid IL or missing references) //IL_021f: Unknown result type (might be due to invalid IL or missing references) //IL_0224: Unknown result type (might be due to invalid IL or missing references) //IL_022a: Unknown result type (might be due to invalid IL or missing references) //IL_022f: Unknown result type (might be due to invalid IL or missing references) //IL_023a: Unknown result type (might be due to invalid IL or missing references) //IL_024c: Unknown result type (might be due to invalid IL or missing references) //IL_0256: Unknown result type (might be due to invalid IL or missing references) //IL_025b: Unknown result type (might be due to invalid IL or missing references) //IL_0266: Unknown result type (might be due to invalid IL or missing references) //IL_0278: Unknown result type (might be due to invalid IL or missing references) //IL_027d: Unknown result type (might be due to invalid IL or missing references) //IL_0282: Unknown result type (might be due to invalid IL or missing references) //IL_028d: Unknown result type (might be due to invalid IL or missing references) //IL_0293: Unknown result type (might be due to invalid IL or missing references) //IL_0298: Unknown result type (might be due to invalid IL or missing references) //IL_029e: Unknown result type (might be due to invalid IL or missing references) //IL_02a8: Unknown result type (might be due to invalid IL or missing references) //IL_02ad: Unknown result type (might be due to invalid IL or missing references) //IL_02b3: Unknown result type (might be due to invalid IL or missing references) //IL_02bd: Unknown result type (might be due to invalid IL or missing references) //IL_02c2: Unknown result type (might be due to invalid IL or missing references) //IL_02c8: Unknown result type (might be due to invalid IL or missing references) //IL_02ce: Unknown result type (might be due to invalid IL or missing references) //IL_02d3: Unknown result type (might be due to invalid IL or missing references) //IL_02d9: Unknown result type (might be due to invalid IL or missing references) //IL_02de: Unknown result type (might be due to invalid IL or missing references) //IL_02e4: Unknown result type (might be due to invalid IL or missing references) //IL_02e9: Unknown result type (might be due to invalid IL or missing references) //IL_02ee: Unknown result type (might be due to invalid IL or missing references) //IL_02fa: Unknown result type (might be due to invalid IL or missing references) //IL_033e: Unknown result type (might be due to invalid IL or missing references) //IL_0344: Unknown result type (might be due to invalid IL or missing references) //IL_0349: Unknown result type (might be due to invalid IL or missing references) //IL_034f: Unknown result type (might be due to invalid IL or missing references) //IL_0359: Unknown result type (might be due to invalid IL or missing references) //IL_035e: Unknown result type (might be due to invalid IL or missing references) //IL_0364: Unknown result type (might be due to invalid IL or missing references) //IL_036e: Unknown result type (might be due to invalid IL or missing references) //IL_0373: Unknown result type (might be due to invalid IL or missing references) //IL_0379: Unknown result type (might be due to invalid IL or missing references) //IL_037e: Unknown result type (might be due to invalid IL or missing references) //IL_0389: Unknown result type (might be due to invalid IL or missing references) //IL_038f: Unknown result type (might be due to invalid IL or missing references) //IL_0394: Unknown result type (might be due to invalid IL or missing references) //IL_039a: Unknown result type (might be due to invalid IL or missing references) //IL_03a4: Unknown result type (might be due to invalid IL or missing references) //IL_03a9: Unknown result type (might be due to invalid IL or missing references) //IL_03af: Unknown result type (might be due to invalid IL or missing references) //IL_03b9: Unknown result type (might be due to invalid IL or missing references) //IL_03be: Unknown result type (might be due to invalid IL or missing references) //IL_03ca: Unknown result type (might be due to invalid IL or missing references) //IL_0521: Unknown result type (might be due to invalid IL or missing references) //IL_0547: Unknown result type (might be due to invalid IL or missing references) //IL_0552: Unknown result type (might be due to invalid IL or missing references) //IL_055c: Unknown result type (might be due to invalid IL or missing references) //IL_0561: Unknown result type (might be due to invalid IL or missing references) //IL_056d: Unknown result type (might be due to invalid IL or missing references) //IL_05ba: Unknown result type (might be due to invalid IL or missing references) //IL_05f8: Unknown result type (might be due to invalid IL or missing references) //IL_0603: Unknown result type (might be due to invalid IL or missing references) //IL_060d: Unknown result type (might be due to invalid IL or missing references) //IL_0612: Unknown result type (might be due to invalid IL or missing references) //IL_061e: Unknown result type (might be due to invalid IL or missing references) //IL_0e12: Unknown result type (might be due to invalid IL or missing references) //IL_0e17: Unknown result type (might be due to invalid IL or missing references) //IL_0e22: Unknown result type (might be due to invalid IL or missing references) //IL_0e27: Unknown result type (might be due to invalid IL or missing references) //IL_0665: Unknown result type (might be due to invalid IL or missing references) //IL_069d: Unknown result type (might be due to invalid IL or missing references) //IL_06a8: Unknown result type (might be due to invalid IL or missing references) //IL_06b2: Unknown result type (might be due to invalid IL or missing references) //IL_06b7: Unknown result type (might be due to invalid IL or missing references) //IL_06c3: Unknown result type (might be due to invalid IL or missing references) //IL_0b86: Unknown result type (might be due to invalid IL or missing references) //IL_0b8b: Unknown result type (might be due to invalid IL or missing references) //IL_0b96: Unknown result type (might be due to invalid IL or missing references) //IL_0b9b: Unknown result type (might be due to invalid IL or missing references) //IL_0710: Unknown result type (might be due to invalid IL or missing references) //IL_074e: Unknown result type (might be due to invalid IL or missing references) //IL_0759: Unknown result type (might be due to invalid IL or missing references) //IL_0763: Unknown result type (might be due to invalid IL or missing references) //IL_0768: Unknown result type (might be due to invalid IL or missing references) //IL_0774: Unknown result type (might be due to invalid IL or missing references) //IL_0789: Unknown result type (might be due to invalid IL or missing references) //IL_078f: Unknown result type (might be due to invalid IL or missing references) //IL_079a: Unknown result type (might be due to invalid IL or missing references) //IL_07a4: Unknown result type (might be due to invalid IL or missing references) //IL_07a9: Unknown result type (might be due to invalid IL or missing references) //IL_07b5: Unknown result type (might be due to invalid IL or missing references) //IL_0802: Unknown result type (might be due to invalid IL or missing references) //IL_0840: Unknown result type (might be due to invalid IL or missing references) //IL_084b: Unknown result type (might be due to invalid IL or missing references) //IL_0855: Unknown result type (might be due to invalid IL or missing references) //IL_085a: Unknown result type (might be due to invalid IL or missing references) //IL_0866: Unknown result type (might be due to invalid IL or missing references) //IL_08ad: Unknown result type (might be due to invalid IL or missing references) //IL_08e5: Unknown result type (might be due to invalid IL or missing references) //IL_08f0: Unknown result type (might be due to invalid IL or missing references) //IL_08fa: Unknown result type (might be due to invalid IL or missing references) //IL_08ff: Unknown result type (might be due to invalid IL or missing references) //IL_090b: Unknown result type (might be due to invalid IL or missing references) //IL_0958: Unknown result type (might be due to invalid IL or missing references) //IL_0996: Unknown result type (might be due to invalid IL or missing references) //IL_09a1: Unknown result type (might be due to invalid IL or missing references) //IL_09ab: Unknown result type (might be due to invalid IL or missing references) //IL_09b0: Unknown result type (might be due to invalid IL or missing references) //IL_09bc: Unknown result type (might be due to invalid IL or missing references) //IL_09f1: Unknown result type (might be due to invalid IL or missing references) //IL_0a17: Unknown result type (might be due to invalid IL or missing references) //IL_0a22: Unknown result type (might be due to invalid IL or missing references) //IL_0a2c: Unknown result type (might be due to invalid IL or missing references) //IL_0a31: Unknown result type (might be due to invalid IL or missing references) //IL_0a3d: Unknown result type (might be due to invalid IL or missing references) GetColliderBounds(); if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { if ((Object)(object)((Component)this).GetComponent().emptyObject != (Object)null) { emptyObject = ((Component)this).GetComponent().emptyObject; } else { emptyObject = null; } if ((Object)(object)((Component)this).GetComponent().oldParent != (Object)null) { oldParent = ((Component)this).GetComponent().oldParent; } else { oldParent = null; } } else if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { if ((Object)(object)((Component)this).GetComponent().emptyObject != (Object)null) { emptyObject = ((Component)this).GetComponent().emptyObject; } else { emptyObject = null; } if ((Object)(object)((Component)this).GetComponent().oldParent != (Object)null) { oldParent = ((Component)this).GetComponent().oldParent; } else { oldParent = null; } } if ((Object.op_Implicit((Object)(object)((Component)this).GetComponent()) || Object.op_Implicit((Object)(object)((Component)this).GetComponent())) && (Object)(object)emptyObject != (Object)null && (Object)(object)((Component)this).transform.parent == (Object)(object)emptyObject.transform) { if (((grabbedOn || turnBack || back2 || pullingUp) && ((Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight / 2f + forwardLength / 1.52f + upHeight * 0.9f + (ledgeDetectorHeight2 * (0.65f - topOfLedgeSurfaceDetectorHeight2 * 0.59f) + ledgeDetectorForward2 * (0.65f - topOfLedgeSurfaceDetectorHeight2 * 0.59f) + rodHoldingLedgeDetectorHeight2 + rodHoldingLedgeDetectorForward2 + ((Component)this).transform.forward * (topOfLedgeSurfaceDetectorHeight2 * length2) * 0.14f + ((Component)this).transform.up * (topOfLedgeSurfaceDetectorHeight2 * height2)), ((Component)this).transform.position + posChange2 + upHeight * 0.8f + forwardLength / 1.75f + (ledgeDetectorHeight2 + ledgeDetectorForward2 + rodHoldingLedgeDetectorHeight2 + rodHoldingLedgeDetectorForward2), ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag != ((Component)this).GetComponent().movingPlatforms.movingPlatformTag) || (Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 2.2f + forwardLength / 1.75f + maxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f + forwardLength / 1.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag != ((Component)this).GetComponent().movingPlatforms.movingPlatformTag))) || switching) { ((Component)this).transform.parent = null; if ((Object)(object)((Component)this).transform.parent != (Object)(object)emptyObject.transform) { ((Component)this).transform.parent = null; Object.Destroy((Object)(object)emptyObject); } if ((Object)(object)oldParent != (Object)null) { ((Component)this).transform.parent = oldParent.transform; } else { ((Component)this).transform.parent = null; } } platformParentLastUpdate = true; if (!platformParentLastUpdate || switching || !grabbedOn || ((climbable || climbableL || climbableR || climbPossible || climbPossibleL || climbPossibleR) && !Physics.Linecast(new Vector3(colliderCenter.x, colliderBottom.y, colliderCenter.z), new Vector3(colliderBack.x, colliderBottom.y, colliderBack.z) - ((Component)this).transform.forward / 3f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(new Vector3(colliderCenter.x, (colliderBottom.y * 3f + colliderCenter.y) / 4f, colliderCenter.z), new Vector3(colliderBack.x, (colliderBottom.y * 3f + colliderBack.y) / 4f, colliderBack.z) - ((Component)this).transform.forward / 3f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(new Vector3(colliderCenter.x, (colliderBottom.y + colliderCenter.y) / 2f, colliderCenter.z), new Vector3(colliderBack.x, (colliderBottom.y + colliderBack.y) / 2f, colliderBack.z) - ((Component)this).transform.forward / 3f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(new Vector3(colliderCenter.x, (colliderBottom.y + colliderCenter.y * 3f) / 4f, colliderCenter.z), new Vector3(colliderBack.x, (colliderBottom.y + colliderBack.y * 3f) / 4f, colliderBack.z) - ((Component)this).transform.forward / 3f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(colliderCenter, colliderBack - ((Component)this).transform.forward / 3f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(new Vector3(colliderCenter.x, (colliderTop.y + colliderCenter.y * 3f) / 4f, colliderCenter.z), new Vector3(colliderBack.x, (colliderTop.y + colliderBack.y * 3f) / 4f, colliderBack.z) - ((Component)this).transform.forward / 3f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(new Vector3(colliderCenter.x, (colliderTop.y + colliderCenter.y) / 2f, colliderCenter.z), new Vector3(colliderBack.x, (colliderTop.y + colliderBack.y) / 2f, colliderBack.z) - ((Component)this).transform.forward / 3f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(new Vector3(colliderCenter.x, (colliderTop.y * 3f + colliderCenter.y) / 4f, colliderCenter.z), new Vector3(colliderBack.x, (colliderTop.y * 3f + colliderBack.y) / 4f, colliderBack.z) - ((Component)this).transform.forward / 3f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(new Vector3(colliderCenter.x, colliderTop.y, colliderCenter.z), new Vector3(colliderBack.x, colliderTop.y, colliderBack.z) - ((Component)this).transform.forward / 3f, ref hit, LayerMask.op_Implicit(collisionLayers)))) { return; } movementSpeed = 0f; if (scriptsToDisableOnGrab != null) { string[] array = scriptsToDisableOnGrab; foreach (string text in array) { ref MonoBehaviour reference = ref scriptToDisable; Component component = ((Component)this).GetComponent(text); reference = (MonoBehaviour)(object)((component is MonoBehaviour) ? component : null); if ((Object)(object)scriptToDisable != (Object)null) { ((Behaviour)scriptToDisable).enabled = true; } else if (!currentlyEnablingAndDisablingScripts || turnBack) { scriptWarning = true; } } } if (scriptsToEnableOnGrab != null) { string[] array2 = scriptsToEnableOnGrab; foreach (string text2 in array2) { ref MonoBehaviour reference2 = ref scriptToEnable; Component component2 = ((Component)this).GetComponent(text2); reference2 = (MonoBehaviour)(object)((component2 is MonoBehaviour) ? component2 : null); if ((Object)(object)scriptToEnable != (Object)null) { ((Behaviour)scriptToEnable).enabled = false; } else if (!currentlyEnablingAndDisablingScripts || turnBack) { scriptWarning = true; } } } currentlyEnablingAndDisablingScripts = true; jumpedOffTimer = 0f; jumpedOffDirection = -((Component)this).transform.forward * distanceToPushOffOfLedgeAfterLettingGo; if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { ((Component)this).GetComponent().speed = 1f; } getOn = false; getOn2 = false; pullingUp = false; grabbedOn = false; turnBack = false; ((Component)this).transform.parent = null; if ((Object)(object)((Component)this).transform.parent != (Object)(object)emptyObject.transform) { ((Component)this).transform.parent = null; Object.Destroy((Object)(object)emptyObject); } if ((Object)(object)oldParent != (Object)null) { ((Component)this).transform.parent = oldParent.transform; } else { ((Component)this).transform.parent = null; } return; } if (platformParentLastUpdate && !switching && grabbedOn && !climbable && !climbableL && !climbableR && !climbPossible && !climbPossibleL && !climbPossibleR) { movementSpeed = 0f; if (scriptsToDisableOnGrab != null) { string[] array3 = scriptsToDisableOnGrab; foreach (string text3 in array3) { ref MonoBehaviour reference3 = ref scriptToDisable; Component component3 = ((Component)this).GetComponent(text3); reference3 = (MonoBehaviour)(object)((component3 is MonoBehaviour) ? component3 : null); if ((Object)(object)scriptToDisable != (Object)null) { ((Behaviour)scriptToDisable).enabled = true; } else if (!currentlyEnablingAndDisablingScripts || turnBack) { scriptWarning = true; } } } if (scriptsToEnableOnGrab != null) { string[] array4 = scriptsToEnableOnGrab; foreach (string text4 in array4) { ref MonoBehaviour reference4 = ref scriptToEnable; Component component4 = ((Component)this).GetComponent(text4); reference4 = (MonoBehaviour)(object)((component4 is MonoBehaviour) ? component4 : null); if ((Object)(object)scriptToEnable != (Object)null) { ((Behaviour)scriptToEnable).enabled = false; } else if (!currentlyEnablingAndDisablingScripts || turnBack) { scriptWarning = true; } } } currentlyEnablingAndDisablingScripts = true; jumpedOffTimer = 0f; jumpedOffDirection = -((Component)this).transform.forward * distanceToPushOffOfLedgeAfterLettingGo; if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { ((Component)this).GetComponent().speed = 1f; } getOn = false; getOn2 = false; pullingUp = false; grabbedOn = false; turnBack = false; } platformParentLastUpdate = false; } private void GetColliderBounds() { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_002b: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0043: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_044c: Unknown result type (might be due to invalid IL or missing references) //IL_0452: Unknown result type (might be due to invalid IL or missing references) //IL_016e: Unknown result type (might be due to invalid IL or missing references) //IL_0173: Unknown result type (might be due to invalid IL or missing references) //IL_0177: Unknown result type (might be due to invalid IL or missing references) //IL_017c: Unknown result type (might be due to invalid IL or missing references) //IL_0071: Unknown result type (might be due to invalid IL or missing references) //IL_0076: Unknown result type (might be due to invalid IL or missing references) //IL_007a: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_008b: Unknown result type (might be due to invalid IL or missing references) //IL_0090: Unknown result type (might be due to invalid IL or missing references) //IL_0094: Unknown result type (might be due to invalid IL or missing references) //IL_00a4: Unknown result type (might be due to invalid IL or missing references) //IL_00a5: Unknown result type (might be due to invalid IL or missing references) //IL_00aa: Unknown result type (might be due to invalid IL or missing references) //IL_00af: Unknown result type (might be due to invalid IL or missing references) //IL_00bb: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00c4: Unknown result type (might be due to invalid IL or missing references) //IL_00d4: Unknown result type (might be due to invalid IL or missing references) //IL_00d5: Unknown result type (might be due to invalid IL or missing references) //IL_00da: Unknown result type (might be due to invalid IL or missing references) //IL_00df: Unknown result type (might be due to invalid IL or missing references) //IL_00eb: Unknown result type (might be due to invalid IL or missing references) //IL_00f0: Unknown result type (might be due to invalid IL or missing references) //IL_00f4: Unknown result type (might be due to invalid IL or missing references) //IL_010a: Unknown result type (might be due to invalid IL or missing references) //IL_010b: Unknown result type (might be due to invalid IL or missing references) //IL_0110: Unknown result type (might be due to invalid IL or missing references) //IL_0115: Unknown result type (might be due to invalid IL or missing references) //IL_0121: Unknown result type (might be due to invalid IL or missing references) //IL_0126: Unknown result type (might be due to invalid IL or missing references) //IL_012a: Unknown result type (might be due to invalid IL or missing references) //IL_0140: Unknown result type (might be due to invalid IL or missing references) //IL_0141: Unknown result type (might be due to invalid IL or missing references) //IL_0146: Unknown result type (might be due to invalid IL or missing references) //IL_014b: Unknown result type (might be due to invalid IL or missing references) //IL_0199: Unknown result type (might be due to invalid IL or missing references) //IL_019e: Unknown result type (might be due to invalid IL or missing references) //IL_01a2: Unknown result type (might be due to invalid IL or missing references) //IL_01b2: Unknown result type (might be due to invalid IL or missing references) //IL_01b3: Unknown result type (might be due to invalid IL or missing references) //IL_01b8: Unknown result type (might be due to invalid IL or missing references) //IL_01bd: Unknown result type (might be due to invalid IL or missing references) //IL_01c9: Unknown result type (might be due to invalid IL or missing references) //IL_01ce: Unknown result type (might be due to invalid IL or missing references) //IL_01d2: Unknown result type (might be due to invalid IL or missing references) //IL_01e2: Unknown result type (might be due to invalid IL or missing references) //IL_01e3: Unknown result type (might be due to invalid IL or missing references) //IL_01e8: Unknown result type (might be due to invalid IL or missing references) //IL_01ed: Unknown result type (might be due to invalid IL or missing references) //IL_01f9: Unknown result type (might be due to invalid IL or missing references) //IL_01fe: Unknown result type (might be due to invalid IL or missing references) //IL_0202: Unknown result type (might be due to invalid IL or missing references) //IL_0218: Unknown result type (might be due to invalid IL or missing references) //IL_0219: Unknown result type (might be due to invalid IL or missing references) //IL_021e: Unknown result type (might be due to invalid IL or missing references) //IL_0223: Unknown result type (might be due to invalid IL or missing references) //IL_022f: Unknown result type (might be due to invalid IL or missing references) //IL_0234: Unknown result type (might be due to invalid IL or missing references) //IL_0238: Unknown result type (might be due to invalid IL or missing references) //IL_024e: Unknown result type (might be due to invalid IL or missing references) //IL_024f: Unknown result type (might be due to invalid IL or missing references) //IL_0254: Unknown result type (might be due to invalid IL or missing references) //IL_0259: Unknown result type (might be due to invalid IL or missing references) //IL_027c: Unknown result type (might be due to invalid IL or missing references) //IL_0281: Unknown result type (might be due to invalid IL or missing references) //IL_0285: Unknown result type (might be due to invalid IL or missing references) //IL_0295: Unknown result type (might be due to invalid IL or missing references) //IL_0296: Unknown result type (might be due to invalid IL or missing references) //IL_029b: Unknown result type (might be due to invalid IL or missing references) //IL_02a0: Unknown result type (might be due to invalid IL or missing references) //IL_02ac: Unknown result type (might be due to invalid IL or missing references) //IL_02b1: Unknown result type (might be due to invalid IL or missing references) //IL_02b5: Unknown result type (might be due to invalid IL or missing references) //IL_02c5: Unknown result type (might be due to invalid IL or missing references) //IL_02c6: Unknown result type (might be due to invalid IL or missing references) //IL_02cb: Unknown result type (might be due to invalid IL or missing references) //IL_02d0: Unknown result type (might be due to invalid IL or missing references) //IL_02dc: Unknown result type (might be due to invalid IL or missing references) //IL_02e1: Unknown result type (might be due to invalid IL or missing references) //IL_02e5: Unknown result type (might be due to invalid IL or missing references) //IL_02f5: Unknown result type (might be due to invalid IL or missing references) //IL_02f6: Unknown result type (might be due to invalid IL or missing references) //IL_02fb: Unknown result type (might be due to invalid IL or missing references) //IL_0300: Unknown result type (might be due to invalid IL or missing references) //IL_030c: Unknown result type (might be due to invalid IL or missing references) //IL_0311: Unknown result type (might be due to invalid IL or missing references) //IL_0315: Unknown result type (might be due to invalid IL or missing references) //IL_0325: Unknown result type (might be due to invalid IL or missing references) //IL_0326: Unknown result type (might be due to invalid IL or missing references) //IL_032b: Unknown result type (might be due to invalid IL or missing references) //IL_0330: Unknown result type (might be due to invalid IL or missing references) //IL_0353: Unknown result type (might be due to invalid IL or missing references) //IL_0358: Unknown result type (might be due to invalid IL or missing references) //IL_035c: Unknown result type (might be due to invalid IL or missing references) //IL_0367: Unknown result type (might be due to invalid IL or missing references) //IL_036c: Unknown result type (might be due to invalid IL or missing references) //IL_037b: Unknown result type (might be due to invalid IL or missing references) //IL_037c: Unknown result type (might be due to invalid IL or missing references) //IL_0381: Unknown result type (might be due to invalid IL or missing references) //IL_0386: Unknown result type (might be due to invalid IL or missing references) //IL_0392: Unknown result type (might be due to invalid IL or missing references) //IL_0397: Unknown result type (might be due to invalid IL or missing references) //IL_039b: Unknown result type (might be due to invalid IL or missing references) //IL_03a6: Unknown result type (might be due to invalid IL or missing references) //IL_03ab: Unknown result type (might be due to invalid IL or missing references) //IL_03ba: Unknown result type (might be due to invalid IL or missing references) //IL_03bb: Unknown result type (might be due to invalid IL or missing references) //IL_03c0: Unknown result type (might be due to invalid IL or missing references) //IL_03c5: Unknown result type (might be due to invalid IL or missing references) //IL_03d1: Unknown result type (might be due to invalid IL or missing references) //IL_03d6: Unknown result type (might be due to invalid IL or missing references) //IL_03da: Unknown result type (might be due to invalid IL or missing references) //IL_03e5: Unknown result type (might be due to invalid IL or missing references) //IL_03ea: Unknown result type (might be due to invalid IL or missing references) //IL_03f9: Unknown result type (might be due to invalid IL or missing references) //IL_03fa: Unknown result type (might be due to invalid IL or missing references) //IL_03ff: Unknown result type (might be due to invalid IL or missing references) //IL_0404: Unknown result type (might be due to invalid IL or missing references) //IL_0410: Unknown result type (might be due to invalid IL or missing references) //IL_0415: Unknown result type (might be due to invalid IL or missing references) //IL_0419: Unknown result type (might be due to invalid IL or missing references) //IL_0424: Unknown result type (might be due to invalid IL or missing references) //IL_0429: Unknown result type (might be due to invalid IL or missing references) //IL_0438: Unknown result type (might be due to invalid IL or missing references) //IL_0439: Unknown result type (might be due to invalid IL or missing references) //IL_043e: Unknown result type (might be due to invalid IL or missing references) //IL_0443: Unknown result type (might be due to invalid IL or missing references) Vector3 val = ((Component)this).transform.forward * ((Component)this).transform.localScale.z; Vector3 val2 = ((Component)this).transform.up * ((Component)this).transform.localScale.y; if (Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled) { Bounds bounds = ((Collider)characterController).bounds; colliderCenter = ((Bounds)(ref bounds)).center; Bounds bounds2 = ((Collider)characterController).bounds; colliderBack = ((Bounds)(ref bounds2)).center - characterController.radius * val; Bounds bounds3 = ((Collider)characterController).bounds; colliderFront = ((Bounds)(ref bounds3)).center + characterController.radius * val; Bounds bounds4 = ((Collider)characterController).bounds; colliderBottom = ((Bounds)(ref bounds4)).center - characterController.height * 0.5f * val2; Bounds bounds5 = ((Collider)characterController).bounds; colliderTop = ((Bounds)(ref bounds5)).center + characterController.height * 0.5f * val2; } else if (Object.op_Implicit((Object)(object)rigidBody)) { Bounds bounds6 = ((Component)this).GetComponent().bounds; colliderCenter = ((Bounds)(ref bounds6)).center; if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { Bounds bounds7 = ((Component)this).GetComponent().bounds; colliderBack = ((Bounds)(ref bounds7)).center - ((Component)this).GetComponent().radius * val; Bounds bounds8 = ((Component)this).GetComponent().bounds; colliderFront = ((Bounds)(ref bounds8)).center + ((Component)this).GetComponent().radius * val; Bounds bounds9 = ((Component)this).GetComponent().bounds; colliderBottom = ((Bounds)(ref bounds9)).center - ((Component)this).GetComponent().height * 0.5f * val2; Bounds bounds10 = ((Component)this).GetComponent().bounds; colliderTop = ((Bounds)(ref bounds10)).center + ((Component)this).GetComponent().height * 0.5f * val2; } else if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { Bounds bounds11 = ((Component)this).GetComponent().bounds; colliderBack = ((Bounds)(ref bounds11)).center - ((Component)this).GetComponent().radius * val; Bounds bounds12 = ((Component)this).GetComponent().bounds; colliderFront = ((Bounds)(ref bounds12)).center + ((Component)this).GetComponent().radius * val; Bounds bounds13 = ((Component)this).GetComponent().bounds; colliderBottom = ((Bounds)(ref bounds13)).center - ((Component)this).GetComponent().radius * val2; Bounds bounds14 = ((Component)this).GetComponent().bounds; colliderTop = ((Bounds)(ref bounds14)).center + ((Component)this).GetComponent().radius * val2; } else if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { Bounds bounds15 = ((Component)this).GetComponent().bounds; colliderBack = ((Bounds)(ref bounds15)).center - ((Component)this).GetComponent().size.z * 0.5f * val; Bounds bounds16 = ((Component)this).GetComponent().bounds; colliderFront = ((Bounds)(ref bounds16)).center + ((Component)this).GetComponent().size.z * 0.5f * val; Bounds bounds17 = ((Component)this).GetComponent().bounds; colliderBottom = ((Bounds)(ref bounds17)).center - ((Component)this).GetComponent().size.y * 0.5f * val2; Bounds bounds18 = ((Component)this).GetComponent().bounds; colliderTop = ((Bounds)(ref bounds18)).center + ((Component)this).GetComponent().size.y * 0.5f * val2; } } colliderLengthFromCenter = Vector3.Distance(colliderCenter, colliderFront); } private void LedgeSwitchingClearSecondFrontLeft() { //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_0054: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0069: Unknown result type (might be due to invalid IL or missing references) //IL_006e: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_0084: Unknown result type (might be due to invalid IL or missing references) //IL_008f: Unknown result type (might be due to invalid IL or missing references) //IL_0095: Unknown result type (might be due to invalid IL or missing references) //IL_009a: Unknown result type (might be due to invalid IL or missing references) //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_00aa: Unknown result type (might be due to invalid IL or missing references) //IL_00af: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) //IL_00ba: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00ca: Unknown result type (might be due to invalid IL or missing references) //IL_00cf: Unknown result type (might be due to invalid IL or missing references) //IL_00d5: Unknown result type (might be due to invalid IL or missing references) //IL_00df: Unknown result type (might be due to invalid IL or missing references) //IL_00e4: Unknown result type (might be due to invalid IL or missing references) //IL_00ea: Unknown result type (might be due to invalid IL or missing references) //IL_00ef: Unknown result type (might be due to invalid IL or missing references) //IL_00f5: Unknown result type (might be due to invalid IL or missing references) //IL_00fa: Unknown result type (might be due to invalid IL or missing references) //IL_0106: Unknown result type (might be due to invalid IL or missing references) //IL_0120: Unknown result type (might be due to invalid IL or missing references) //IL_0126: Unknown result type (might be due to invalid IL or missing references) //IL_012b: Unknown result type (might be due to invalid IL or missing references) //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_0136: Unknown result type (might be due to invalid IL or missing references) //IL_013c: Unknown result type (might be due to invalid IL or missing references) //IL_0146: Unknown result type (might be due to invalid IL or missing references) //IL_014b: Unknown result type (might be due to invalid IL or missing references) //IL_0151: Unknown result type (might be due to invalid IL or missing references) //IL_0156: Unknown result type (might be due to invalid IL or missing references) //IL_015c: Unknown result type (might be due to invalid IL or missing references) //IL_0166: Unknown result type (might be due to invalid IL or missing references) //IL_016b: Unknown result type (might be due to invalid IL or missing references) //IL_0171: Unknown result type (might be due to invalid IL or missing references) //IL_017b: Unknown result type (might be due to invalid IL or missing references) //IL_0180: Unknown result type (might be due to invalid IL or missing references) //IL_0186: Unknown result type (might be due to invalid IL or missing references) //IL_018b: Unknown result type (might be due to invalid IL or missing references) //IL_0191: Unknown result type (might be due to invalid IL or missing references) //IL_0196: Unknown result type (might be due to invalid IL or missing references) //IL_01a1: Unknown result type (might be due to invalid IL or missing references) //IL_01a7: Unknown result type (might be due to invalid IL or missing references) //IL_01ac: Unknown result type (might be due to invalid IL or missing references) //IL_01b2: Unknown result type (might be due to invalid IL or missing references) //IL_01bc: Unknown result type (might be due to invalid IL or missing references) //IL_01c1: Unknown result type (might be due to invalid IL or missing references) //IL_01c7: Unknown result type (might be due to invalid IL or missing references) //IL_01d1: Unknown result type (might be due to invalid IL or missing references) //IL_01d6: Unknown result type (might be due to invalid IL or missing references) //IL_01dc: Unknown result type (might be due to invalid IL or missing references) //IL_01e1: Unknown result type (might be due to invalid IL or missing references) //IL_01e7: Unknown result type (might be due to invalid IL or missing references) //IL_01ec: Unknown result type (might be due to invalid IL or missing references) //IL_01f2: Unknown result type (might be due to invalid IL or missing references) //IL_01fc: Unknown result type (might be due to invalid IL or missing references) //IL_0201: Unknown result type (might be due to invalid IL or missing references) //IL_0207: Unknown result type (might be due to invalid IL or missing references) //IL_0211: Unknown result type (might be due to invalid IL or missing references) //IL_0216: Unknown result type (might be due to invalid IL or missing references) //IL_021c: Unknown result type (might be due to invalid IL or missing references) //IL_0221: Unknown result type (might be due to invalid IL or missing references) //IL_0227: Unknown result type (might be due to invalid IL or missing references) //IL_022c: Unknown result type (might be due to invalid IL or missing references) //IL_0238: Unknown result type (might be due to invalid IL or missing references) //IL_179f: Unknown result type (might be due to invalid IL or missing references) //IL_17a5: Unknown result type (might be due to invalid IL or missing references) //IL_17aa: Unknown result type (might be due to invalid IL or missing references) //IL_17b0: Unknown result type (might be due to invalid IL or missing references) //IL_17b5: Unknown result type (might be due to invalid IL or missing references) //IL_17bb: Unknown result type (might be due to invalid IL or missing references) //IL_17c5: Unknown result type (might be due to invalid IL or missing references) //IL_17ca: Unknown result type (might be due to invalid IL or missing references) //IL_17d0: Unknown result type (might be due to invalid IL or missing references) //IL_17da: Unknown result type (might be due to invalid IL or missing references) //IL_17df: Unknown result type (might be due to invalid IL or missing references) //IL_17e5: Unknown result type (might be due to invalid IL or missing references) //IL_17ea: Unknown result type (might be due to invalid IL or missing references) //IL_17f0: Unknown result type (might be due to invalid IL or missing references) //IL_17f5: Unknown result type (might be due to invalid IL or missing references) //IL_1800: Unknown result type (might be due to invalid IL or missing references) //IL_1806: Unknown result type (might be due to invalid IL or missing references) //IL_180b: Unknown result type (might be due to invalid IL or missing references) //IL_1811: Unknown result type (might be due to invalid IL or missing references) //IL_181b: Unknown result type (might be due to invalid IL or missing references) //IL_1820: Unknown result type (might be due to invalid IL or missing references) //IL_1826: Unknown result type (might be due to invalid IL or missing references) //IL_182b: Unknown result type (might be due to invalid IL or missing references) //IL_1831: Unknown result type (might be due to invalid IL or missing references) //IL_183b: Unknown result type (might be due to invalid IL or missing references) //IL_1840: Unknown result type (might be due to invalid IL or missing references) //IL_1846: Unknown result type (might be due to invalid IL or missing references) //IL_1850: Unknown result type (might be due to invalid IL or missing references) //IL_1855: Unknown result type (might be due to invalid IL or missing references) //IL_185b: Unknown result type (might be due to invalid IL or missing references) //IL_1860: Unknown result type (might be due to invalid IL or missing references) //IL_1866: Unknown result type (might be due to invalid IL or missing references) //IL_186b: Unknown result type (might be due to invalid IL or missing references) //IL_1877: Unknown result type (might be due to invalid IL or missing references) //IL_0252: Unknown result type (might be due to invalid IL or missing references) //IL_0258: Unknown result type (might be due to invalid IL or missing references) //IL_025d: Unknown result type (might be due to invalid IL or missing references) //IL_0263: Unknown result type (might be due to invalid IL or missing references) //IL_0268: Unknown result type (might be due to invalid IL or missing references) //IL_026e: Unknown result type (might be due to invalid IL or missing references) //IL_0278: Unknown result type (might be due to invalid IL or missing references) //IL_027d: Unknown result type (might be due to invalid IL or missing references) //IL_0283: Unknown result type (might be due to invalid IL or missing references) //IL_0288: Unknown result type (might be due to invalid IL or missing references) //IL_028e: Unknown result type (might be due to invalid IL or missing references) //IL_0298: Unknown result type (might be due to invalid IL or missing references) //IL_029d: Unknown result type (might be due to invalid IL or missing references) //IL_02a3: Unknown result type (might be due to invalid IL or missing references) //IL_02ad: Unknown result type (might be due to invalid IL or missing references) //IL_02b2: Unknown result type (might be due to invalid IL or missing references) //IL_02b8: Unknown result type (might be due to invalid IL or missing references) //IL_02bd: Unknown result type (might be due to invalid IL or missing references) //IL_02c3: Unknown result type (might be due to invalid IL or missing references) //IL_02c8: Unknown result type (might be due to invalid IL or missing references) //IL_02d3: Unknown result type (might be due to invalid IL or missing references) //IL_02d9: Unknown result type (might be due to invalid IL or missing references) //IL_02de: Unknown result type (might be due to invalid IL or missing references) //IL_02e4: Unknown result type (might be due to invalid IL or missing references) //IL_02ee: Unknown result type (might be due to invalid IL or missing references) //IL_02f3: Unknown result type (might be due to invalid IL or missing references) //IL_02f9: Unknown result type (might be due to invalid IL or missing references) //IL_0303: Unknown result type (might be due to invalid IL or missing references) //IL_0308: Unknown result type (might be due to invalid IL or missing references) //IL_030e: Unknown result type (might be due to invalid IL or missing references) //IL_0313: Unknown result type (might be due to invalid IL or missing references) //IL_0319: Unknown result type (might be due to invalid IL or missing references) //IL_031e: Unknown result type (might be due to invalid IL or missing references) //IL_0324: Unknown result type (might be due to invalid IL or missing references) //IL_032e: Unknown result type (might be due to invalid IL or missing references) //IL_0333: Unknown result type (might be due to invalid IL or missing references) //IL_0339: Unknown result type (might be due to invalid IL or missing references) //IL_0343: Unknown result type (might be due to invalid IL or missing references) //IL_0348: Unknown result type (might be due to invalid IL or missing references) //IL_034e: Unknown result type (might be due to invalid IL or missing references) //IL_0353: Unknown result type (might be due to invalid IL or missing references) //IL_0359: Unknown result type (might be due to invalid IL or missing references) //IL_035e: Unknown result type (might be due to invalid IL or missing references) //IL_036a: Unknown result type (might be due to invalid IL or missing references) //IL_1891: Unknown result type (might be due to invalid IL or missing references) //IL_1897: Unknown result type (might be due to invalid IL or missing references) //IL_189c: Unknown result type (might be due to invalid IL or missing references) //IL_18a2: Unknown result type (might be due to invalid IL or missing references) //IL_18a7: Unknown result type (might be due to invalid IL or missing references) //IL_18ad: Unknown result type (might be due to invalid IL or missing references) //IL_18b7: Unknown result type (might be due to invalid IL or missing references) //IL_18bc: Unknown result type (might be due to invalid IL or missing references) //IL_18c2: Unknown result type (might be due to invalid IL or missing references) //IL_18c7: Unknown result type (might be due to invalid IL or missing references) //IL_18cd: Unknown result type (might be due to invalid IL or missing references) //IL_18d7: Unknown result type (might be due to invalid IL or missing references) //IL_18dc: Unknown result type (might be due to invalid IL or missing references) //IL_18e2: Unknown result type (might be due to invalid IL or missing references) //IL_18ec: Unknown result type (might be due to invalid IL or missing references) //IL_18f1: Unknown result type (might be due to invalid IL or missing references) //IL_18f7: Unknown result type (might be due to invalid IL or missing references) //IL_18fc: Unknown result type (might be due to invalid IL or missing references) //IL_1902: Unknown result type (might be due to invalid IL or missing references) //IL_1907: Unknown result type (might be due to invalid IL or missing references) //IL_1912: Unknown result type (might be due to invalid IL or missing references) //IL_1918: Unknown result type (might be due to invalid IL or missing references) //IL_191d: Unknown result type (might be due to invalid IL or missing references) //IL_1923: Unknown result type (might be due to invalid IL or missing references) //IL_192d: Unknown result type (might be due to invalid IL or missing references) //IL_1932: Unknown result type (might be due to invalid IL or missing references) //IL_1938: Unknown result type (might be due to invalid IL or missing references) //IL_1942: Unknown result type (might be due to invalid IL or missing references) //IL_1947: Unknown result type (might be due to invalid IL or missing references) //IL_194d: Unknown result type (might be due to invalid IL or missing references) //IL_1952: Unknown result type (might be due to invalid IL or missing references) //IL_1958: Unknown result type (might be due to invalid IL or missing references) //IL_195d: Unknown result type (might be due to invalid IL or missing references) //IL_1963: Unknown result type (might be due to invalid IL or missing references) //IL_196d: Unknown result type (might be due to invalid IL or missing references) //IL_1972: Unknown result type (might be due to invalid IL or missing references) //IL_1978: Unknown result type (might be due to invalid IL or missing references) //IL_1982: Unknown result type (might be due to invalid IL or missing references) //IL_1987: Unknown result type (might be due to invalid IL or missing references) //IL_198d: Unknown result type (might be due to invalid IL or missing references) //IL_1992: Unknown result type (might be due to invalid IL or missing references) //IL_1998: Unknown result type (might be due to invalid IL or missing references) //IL_199d: Unknown result type (might be due to invalid IL or missing references) //IL_19a9: Unknown result type (might be due to invalid IL or missing references) //IL_0384: Unknown result type (might be due to invalid IL or missing references) //IL_038a: Unknown result type (might be due to invalid IL or missing references) //IL_038f: Unknown result type (might be due to invalid IL or missing references) //IL_039a: Unknown result type (might be due to invalid IL or missing references) //IL_03a0: Unknown result type (might be due to invalid IL or missing references) //IL_03a5: Unknown result type (might be due to invalid IL or missing references) //IL_03ab: Unknown result type (might be due to invalid IL or missing references) //IL_03b5: Unknown result type (might be due to invalid IL or missing references) //IL_03ba: Unknown result type (might be due to invalid IL or missing references) //IL_03c0: Unknown result type (might be due to invalid IL or missing references) //IL_03ca: Unknown result type (might be due to invalid IL or missing references) //IL_03cf: Unknown result type (might be due to invalid IL or missing references) //IL_03d5: Unknown result type (might be due to invalid IL or missing references) //IL_03da: Unknown result type (might be due to invalid IL or missing references) //IL_03e0: Unknown result type (might be due to invalid IL or missing references) //IL_03e5: Unknown result type (might be due to invalid IL or missing references) //IL_03fd: Unknown result type (might be due to invalid IL or missing references) //IL_0402: Unknown result type (might be due to invalid IL or missing references) //IL_041a: Unknown result type (might be due to invalid IL or missing references) //IL_0420: Unknown result type (might be due to invalid IL or missing references) //IL_042a: Unknown result type (might be due to invalid IL or missing references) //IL_042f: Unknown result type (might be due to invalid IL or missing references) //IL_0435: Unknown result type (might be due to invalid IL or missing references) //IL_043a: Unknown result type (might be due to invalid IL or missing references) //IL_0445: Unknown result type (might be due to invalid IL or missing references) //IL_044b: Unknown result type (might be due to invalid IL or missing references) //IL_0450: Unknown result type (might be due to invalid IL or missing references) //IL_045b: Unknown result type (might be due to invalid IL or missing references) //IL_0461: Unknown result type (might be due to invalid IL or missing references) //IL_0466: Unknown result type (might be due to invalid IL or missing references) //IL_046c: Unknown result type (might be due to invalid IL or missing references) //IL_0476: Unknown result type (might be due to invalid IL or missing references) //IL_047b: Unknown result type (might be due to invalid IL or missing references) //IL_0481: Unknown result type (might be due to invalid IL or missing references) //IL_048b: Unknown result type (might be due to invalid IL or missing references) //IL_0490: Unknown result type (might be due to invalid IL or missing references) //IL_0496: Unknown result type (might be due to invalid IL or missing references) //IL_049b: Unknown result type (might be due to invalid IL or missing references) //IL_04a1: Unknown result type (might be due to invalid IL or missing references) //IL_04a6: Unknown result type (might be due to invalid IL or missing references) //IL_04be: Unknown result type (might be due to invalid IL or missing references) //IL_04c3: Unknown result type (might be due to invalid IL or missing references) //IL_04db: Unknown result type (might be due to invalid IL or missing references) //IL_04e1: Unknown result type (might be due to invalid IL or missing references) //IL_04eb: Unknown result type (might be due to invalid IL or missing references) //IL_04f0: Unknown result type (might be due to invalid IL or missing references) //IL_04f6: Unknown result type (might be due to invalid IL or missing references) //IL_04fb: Unknown result type (might be due to invalid IL or missing references) //IL_0507: Unknown result type (might be due to invalid IL or missing references) //IL_2f10: Unknown result type (might be due to invalid IL or missing references) //IL_2f16: Unknown result type (might be due to invalid IL or missing references) //IL_2f1b: Unknown result type (might be due to invalid IL or missing references) //IL_2f21: Unknown result type (might be due to invalid IL or missing references) //IL_2f26: Unknown result type (might be due to invalid IL or missing references) //IL_2f2c: Unknown result type (might be due to invalid IL or missing references) //IL_2f36: Unknown result type (might be due to invalid IL or missing references) //IL_2f3b: Unknown result type (might be due to invalid IL or missing references) //IL_2f41: Unknown result type (might be due to invalid IL or missing references) //IL_2f4b: Unknown result type (might be due to invalid IL or missing references) //IL_2f50: Unknown result type (might be due to invalid IL or missing references) //IL_2f56: Unknown result type (might be due to invalid IL or missing references) //IL_2f5b: Unknown result type (might be due to invalid IL or missing references) //IL_2f61: Unknown result type (might be due to invalid IL or missing references) //IL_2f66: Unknown result type (might be due to invalid IL or missing references) //IL_2f71: Unknown result type (might be due to invalid IL or missing references) //IL_2f77: Unknown result type (might be due to invalid IL or missing references) //IL_2f7c: Unknown result type (might be due to invalid IL or missing references) //IL_2f82: Unknown result type (might be due to invalid IL or missing references) //IL_2f8c: Unknown result type (might be due to invalid IL or missing references) //IL_2f91: Unknown result type (might be due to invalid IL or missing references) //IL_2f97: Unknown result type (might be due to invalid IL or missing references) //IL_2f9c: Unknown result type (might be due to invalid IL or missing references) //IL_2fa2: Unknown result type (might be due to invalid IL or missing references) //IL_2fac: Unknown result type (might be due to invalid IL or missing references) //IL_2fb1: Unknown result type (might be due to invalid IL or missing references) //IL_2fb7: Unknown result type (might be due to invalid IL or missing references) //IL_2fc1: Unknown result type (might be due to invalid IL or missing references) //IL_2fc6: Unknown result type (might be due to invalid IL or missing references) //IL_2fcc: Unknown result type (might be due to invalid IL or missing references) //IL_2fd1: Unknown result type (might be due to invalid IL or missing references) //IL_2fd7: Unknown result type (might be due to invalid IL or missing references) //IL_2fdc: Unknown result type (might be due to invalid IL or missing references) //IL_2fe8: Unknown result type (might be due to invalid IL or missing references) //IL_19c3: Unknown result type (might be due to invalid IL or missing references) //IL_19c9: Unknown result type (might be due to invalid IL or missing references) //IL_19ce: Unknown result type (might be due to invalid IL or missing references) //IL_19d4: Unknown result type (might be due to invalid IL or missing references) //IL_19d9: Unknown result type (might be due to invalid IL or missing references) //IL_19df: Unknown result type (might be due to invalid IL or missing references) //IL_19e9: Unknown result type (might be due to invalid IL or missing references) //IL_19ee: Unknown result type (might be due to invalid IL or missing references) //IL_19f4: Unknown result type (might be due to invalid IL or missing references) //IL_19f9: Unknown result type (might be due to invalid IL or missing references) //IL_19ff: Unknown result type (might be due to invalid IL or missing references) //IL_1a09: Unknown result type (might be due to invalid IL or missing references) //IL_1a0e: Unknown result type (might be due to invalid IL or missing references) //IL_1a14: Unknown result type (might be due to invalid IL or missing references) //IL_1a1e: Unknown result type (might be due to invalid IL or missing references) //IL_1a23: Unknown result type (might be due to invalid IL or missing references) //IL_1a29: Unknown result type (might be due to invalid IL or missing references) //IL_1a2e: Unknown result type (might be due to invalid IL or missing references) //IL_1a34: Unknown result type (might be due to invalid IL or missing references) //IL_1a39: Unknown result type (might be due to invalid IL or missing references) //IL_1a44: Unknown result type (might be due to invalid IL or missing references) //IL_1a4a: Unknown result type (might be due to invalid IL or missing references) //IL_1a4f: Unknown result type (might be due to invalid IL or missing references) //IL_1a55: Unknown result type (might be due to invalid IL or missing references) //IL_1a5f: Unknown result type (might be due to invalid IL or missing references) //IL_1a64: Unknown result type (might be due to invalid IL or missing references) //IL_1a6a: Unknown result type (might be due to invalid IL or missing references) //IL_1a74: Unknown result type (might be due to invalid IL or missing references) //IL_1a79: Unknown result type (might be due to invalid IL or missing references) //IL_1a7f: Unknown result type (might be due to invalid IL or missing references) //IL_1a84: Unknown result type (might be due to invalid IL or missing references) //IL_1a8a: Unknown result type (might be due to invalid IL or missing references) //IL_1a8f: Unknown result type (might be due to invalid IL or missing references) //IL_1a95: Unknown result type (might be due to invalid IL or missing references) //IL_1a9f: Unknown result type (might be due to invalid IL or missing references) //IL_1aa4: Unknown result type (might be due to invalid IL or missing references) //IL_1aaa: Unknown result type (might be due to invalid IL or missing references) //IL_1ab4: Unknown result type (might be due to invalid IL or missing references) //IL_1ab9: Unknown result type (might be due to invalid IL or missing references) //IL_1abf: Unknown result type (might be due to invalid IL or missing references) //IL_1ac4: Unknown result type (might be due to invalid IL or missing references) //IL_1aca: Unknown result type (might be due to invalid IL or missing references) //IL_1acf: Unknown result type (might be due to invalid IL or missing references) //IL_1adb: Unknown result type (might be due to invalid IL or missing references) //IL_0521: Unknown result type (might be due to invalid IL or missing references) //IL_0527: Unknown result type (might be due to invalid IL or missing references) //IL_052c: Unknown result type (might be due to invalid IL or missing references) //IL_0537: Unknown result type (might be due to invalid IL or missing references) //IL_053d: Unknown result type (might be due to invalid IL or missing references) //IL_0542: Unknown result type (might be due to invalid IL or missing references) //IL_0548: Unknown result type (might be due to invalid IL or missing references) //IL_0552: Unknown result type (might be due to invalid IL or missing references) //IL_0557: Unknown result type (might be due to invalid IL or missing references) //IL_055d: Unknown result type (might be due to invalid IL or missing references) //IL_0567: Unknown result type (might be due to invalid IL or missing references) //IL_056c: Unknown result type (might be due to invalid IL or missing references) //IL_0572: Unknown result type (might be due to invalid IL or missing references) //IL_0577: Unknown result type (might be due to invalid IL or missing references) //IL_057d: Unknown result type (might be due to invalid IL or missing references) //IL_0582: Unknown result type (might be due to invalid IL or missing references) //IL_059a: Unknown result type (might be due to invalid IL or missing references) //IL_059f: Unknown result type (might be due to invalid IL or missing references) //IL_05b7: Unknown result type (might be due to invalid IL or missing references) //IL_05bd: Unknown result type (might be due to invalid IL or missing references) //IL_05c7: Unknown result type (might be due to invalid IL or missing references) //IL_05cc: Unknown result type (might be due to invalid IL or missing references) //IL_05d2: Unknown result type (might be due to invalid IL or missing references) //IL_05d7: Unknown result type (might be due to invalid IL or missing references) //IL_05e2: Unknown result type (might be due to invalid IL or missing references) //IL_05e8: Unknown result type (might be due to invalid IL or missing references) //IL_05ed: Unknown result type (might be due to invalid IL or missing references) //IL_05f8: Unknown result type (might be due to invalid IL or missing references) //IL_05fe: Unknown result type (might be due to invalid IL or missing references) //IL_0603: Unknown result type (might be due to invalid IL or missing references) //IL_0609: Unknown result type (might be due to invalid IL or missing references) //IL_0613: Unknown result type (might be due to invalid IL or missing references) //IL_0618: Unknown result type (might be due to invalid IL or missing references) //IL_061e: Unknown result type (might be due to invalid IL or missing references) //IL_0628: Unknown result type (might be due to invalid IL or missing references) //IL_062d: Unknown result type (might be due to invalid IL or missing references) //IL_0633: Unknown result type (might be due to invalid IL or missing references) //IL_0638: Unknown result type (might be due to invalid IL or missing references) //IL_063e: Unknown result type (might be due to invalid IL or missing references) //IL_0643: Unknown result type (might be due to invalid IL or missing references) //IL_065b: Unknown result type (might be due to invalid IL or missing references) //IL_0660: Unknown result type (might be due to invalid IL or missing references) //IL_0678: Unknown result type (might be due to invalid IL or missing references) //IL_067e: Unknown result type (might be due to invalid IL or missing references) //IL_0688: Unknown result type (might be due to invalid IL or missing references) //IL_068d: Unknown result type (might be due to invalid IL or missing references) //IL_0693: Unknown result type (might be due to invalid IL or missing references) //IL_0698: Unknown result type (might be due to invalid IL or missing references) //IL_06a4: Unknown result type (might be due to invalid IL or missing references) //IL_3002: Unknown result type (might be due to invalid IL or missing references) //IL_3008: Unknown result type (might be due to invalid IL or missing references) //IL_300d: Unknown result type (might be due to invalid IL or missing references) //IL_3013: Unknown result type (might be due to invalid IL or missing references) //IL_3018: Unknown result type (might be due to invalid IL or missing references) //IL_301e: Unknown result type (might be due to invalid IL or missing references) //IL_3028: Unknown result type (might be due to invalid IL or missing references) //IL_302d: Unknown result type (might be due to invalid IL or missing references) //IL_3033: Unknown result type (might be due to invalid IL or missing references) //IL_3038: Unknown result type (might be due to invalid IL or missing references) //IL_303e: Unknown result type (might be due to invalid IL or missing references) //IL_3048: Unknown result type (might be due to invalid IL or missing references) //IL_304d: Unknown result type (might be due to invalid IL or missing references) //IL_3053: Unknown result type (might be due to invalid IL or missing references) //IL_305d: Unknown result type (might be due to invalid IL or missing references) //IL_3062: Unknown result type (might be due to invalid IL or missing references) //IL_3068: Unknown result type (might be due to invalid IL or missing references) //IL_306d: Unknown result type (might be due to invalid IL or missing references) //IL_3073: Unknown result type (might be due to invalid IL or missing references) //IL_3078: Unknown result type (might be due to invalid IL or missing references) //IL_3083: Unknown result type (might be due to invalid IL or missing references) //IL_3089: Unknown result type (might be due to invalid IL or missing references) //IL_308e: Unknown result type (might be due to invalid IL or missing references) //IL_3094: Unknown result type (might be due to invalid IL or missing references) //IL_309e: Unknown result type (might be due to invalid IL or missing references) //IL_30a3: Unknown result type (might be due to invalid IL or missing references) //IL_30a9: Unknown result type (might be due to invalid IL or missing references) //IL_30b3: Unknown result type (might be due to invalid IL or missing references) //IL_30b8: Unknown result type (might be due to invalid IL or missing references) //IL_30be: Unknown result type (might be due to invalid IL or missing references) //IL_30c3: Unknown result type (might be due to invalid IL or missing references) //IL_30c9: Unknown result type (might be due to invalid IL or missing references) //IL_30ce: Unknown result type (might be due to invalid IL or missing references) //IL_30d4: Unknown result type (might be due to invalid IL or missing references) //IL_30de: Unknown result type (might be due to invalid IL or missing references) //IL_30e3: Unknown result type (might be due to invalid IL or missing references) //IL_30e9: Unknown result type (might be due to invalid IL or missing references) //IL_30f3: Unknown result type (might be due to invalid IL or missing references) //IL_30f8: Unknown result type (might be due to invalid IL or missing references) //IL_30fe: Unknown result type (might be due to invalid IL or missing references) //IL_3103: Unknown result type (might be due to invalid IL or missing references) //IL_3109: Unknown result type (might be due to invalid IL or missing references) //IL_310e: Unknown result type (might be due to invalid IL or missing references) //IL_311a: Unknown result type (might be due to invalid IL or missing references) //IL_1af5: Unknown result type (might be due to invalid IL or missing references) //IL_1afb: Unknown result type (might be due to invalid IL or missing references) //IL_1b00: Unknown result type (might be due to invalid IL or missing references) //IL_1b0b: Unknown result type (might be due to invalid IL or missing references) //IL_1b11: Unknown result type (might be due to invalid IL or missing references) //IL_1b16: Unknown result type (might be due to invalid IL or missing references) //IL_1b1c: Unknown result type (might be due to invalid IL or missing references) //IL_1b26: Unknown result type (might be due to invalid IL or missing references) //IL_1b2b: Unknown result type (might be due to invalid IL or missing references) //IL_1b31: Unknown result type (might be due to invalid IL or missing references) //IL_1b3b: Unknown result type (might be due to invalid IL or missing references) //IL_1b40: Unknown result type (might be due to invalid IL or missing references) //IL_1b46: Unknown result type (might be due to invalid IL or missing references) //IL_1b4b: Unknown result type (might be due to invalid IL or missing references) //IL_1b51: Unknown result type (might be due to invalid IL or missing references) //IL_1b56: Unknown result type (might be due to invalid IL or missing references) //IL_1b6e: Unknown result type (might be due to invalid IL or missing references) //IL_1b73: Unknown result type (might be due to invalid IL or missing references) //IL_1b8b: Unknown result type (might be due to invalid IL or missing references) //IL_1b91: Unknown result type (might be due to invalid IL or missing references) //IL_1b9b: Unknown result type (might be due to invalid IL or missing references) //IL_1ba0: Unknown result type (might be due to invalid IL or missing references) //IL_1ba6: Unknown result type (might be due to invalid IL or missing references) //IL_1bab: Unknown result type (might be due to invalid IL or missing references) //IL_1bb6: Unknown result type (might be due to invalid IL or missing references) //IL_1bbc: Unknown result type (might be due to invalid IL or missing references) //IL_1bc1: Unknown result type (might be due to invalid IL or missing references) //IL_1bcc: Unknown result type (might be due to invalid IL or missing references) //IL_1bd2: Unknown result type (might be due to invalid IL or missing references) //IL_1bd7: Unknown result type (might be due to invalid IL or missing references) //IL_1bdd: Unknown result type (might be due to invalid IL or missing references) //IL_1be7: Unknown result type (might be due to invalid IL or missing references) //IL_1bec: Unknown result type (might be due to invalid IL or missing references) //IL_1bf2: Unknown result type (might be due to invalid IL or missing references) //IL_1bfc: Unknown result type (might be due to invalid IL or missing references) //IL_1c01: Unknown result type (might be due to invalid IL or missing references) //IL_1c07: Unknown result type (might be due to invalid IL or missing references) //IL_1c0c: Unknown result type (might be due to invalid IL or missing references) //IL_1c12: Unknown result type (might be due to invalid IL or missing references) //IL_1c17: Unknown result type (might be due to invalid IL or missing references) //IL_1c2f: Unknown result type (might be due to invalid IL or missing references) //IL_1c34: Unknown result type (might be due to invalid IL or missing references) //IL_1c4c: Unknown result type (might be due to invalid IL or missing references) //IL_1c52: Unknown result type (might be due to invalid IL or missing references) //IL_1c5c: Unknown result type (might be due to invalid IL or missing references) //IL_1c61: Unknown result type (might be due to invalid IL or missing references) //IL_1c67: Unknown result type (might be due to invalid IL or missing references) //IL_1c6c: Unknown result type (might be due to invalid IL or missing references) //IL_1c78: Unknown result type (might be due to invalid IL or missing references) //IL_06be: Unknown result type (might be due to invalid IL or missing references) //IL_06c4: Unknown result type (might be due to invalid IL or missing references) //IL_06c9: Unknown result type (might be due to invalid IL or missing references) //IL_06cf: Unknown result type (might be due to invalid IL or missing references) //IL_06d9: Unknown result type (might be due to invalid IL or missing references) //IL_06de: Unknown result type (might be due to invalid IL or missing references) //IL_06e4: Unknown result type (might be due to invalid IL or missing references) //IL_06e9: Unknown result type (might be due to invalid IL or missing references) //IL_06ef: Unknown result type (might be due to invalid IL or missing references) //IL_06f9: Unknown result type (might be due to invalid IL or missing references) //IL_06fe: Unknown result type (might be due to invalid IL or missing references) //IL_0704: Unknown result type (might be due to invalid IL or missing references) //IL_0709: Unknown result type (might be due to invalid IL or missing references) //IL_0714: Unknown result type (might be due to invalid IL or missing references) //IL_071a: Unknown result type (might be due to invalid IL or missing references) //IL_071f: Unknown result type (might be due to invalid IL or missing references) //IL_0725: Unknown result type (might be due to invalid IL or missing references) //IL_072f: Unknown result type (might be due to invalid IL or missing references) //IL_0734: Unknown result type (might be due to invalid IL or missing references) //IL_073a: Unknown result type (might be due to invalid IL or missing references) //IL_073f: Unknown result type (might be due to invalid IL or missing references) //IL_0745: Unknown result type (might be due to invalid IL or missing references) //IL_074f: Unknown result type (might be due to invalid IL or missing references) //IL_0754: Unknown result type (might be due to invalid IL or missing references) //IL_075a: Unknown result type (might be due to invalid IL or missing references) //IL_075f: Unknown result type (might be due to invalid IL or missing references) //IL_076b: Unknown result type (might be due to invalid IL or missing references) //IL_3134: Unknown result type (might be due to invalid IL or missing references) //IL_313a: Unknown result type (might be due to invalid IL or missing references) //IL_313f: Unknown result type (might be due to invalid IL or missing references) //IL_3145: Unknown result type (might be due to invalid IL or missing references) //IL_314a: Unknown result type (might be due to invalid IL or missing references) //IL_3150: Unknown result type (might be due to invalid IL or missing references) //IL_315a: Unknown result type (might be due to invalid IL or missing references) //IL_315f: Unknown result type (might be due to invalid IL or missing references) //IL_3165: Unknown result type (might be due to invalid IL or missing references) //IL_316a: Unknown result type (might be due to invalid IL or missing references) //IL_3170: Unknown result type (might be due to invalid IL or missing references) //IL_317a: Unknown result type (might be due to invalid IL or missing references) //IL_317f: Unknown result type (might be due to invalid IL or missing references) //IL_3185: Unknown result type (might be due to invalid IL or missing references) //IL_318f: Unknown result type (might be due to invalid IL or missing references) //IL_3194: Unknown result type (might be due to invalid IL or missing references) //IL_319a: Unknown result type (might be due to invalid IL or missing references) //IL_319f: Unknown result type (might be due to invalid IL or missing references) //IL_31a5: Unknown result type (might be due to invalid IL or missing references) //IL_31aa: Unknown result type (might be due to invalid IL or missing references) //IL_31b5: Unknown result type (might be due to invalid IL or missing references) //IL_31bb: Unknown result type (might be due to invalid IL or missing references) //IL_31c0: Unknown result type (might be due to invalid IL or missing references) //IL_31c6: Unknown result type (might be due to invalid IL or missing references) //IL_31d0: Unknown result type (might be due to invalid IL or missing references) //IL_31d5: Unknown result type (might be due to invalid IL or missing references) //IL_31db: Unknown result type (might be due to invalid IL or missing references) //IL_31e5: Unknown result type (might be due to invalid IL or missing references) //IL_31ea: Unknown result type (might be due to invalid IL or missing references) //IL_31f0: Unknown result type (might be due to invalid IL or missing references) //IL_31f5: Unknown result type (might be due to invalid IL or missing references) //IL_31fb: Unknown result type (might be due to invalid IL or missing references) //IL_3200: Unknown result type (might be due to invalid IL or missing references) //IL_3206: Unknown result type (might be due to invalid IL or missing references) //IL_3210: Unknown result type (might be due to invalid IL or missing references) //IL_3215: Unknown result type (might be due to invalid IL or missing references) //IL_321b: Unknown result type (might be due to invalid IL or missing references) //IL_3225: Unknown result type (might be due to invalid IL or missing references) //IL_322a: Unknown result type (might be due to invalid IL or missing references) //IL_3230: Unknown result type (might be due to invalid IL or missing references) //IL_3235: Unknown result type (might be due to invalid IL or missing references) //IL_323b: Unknown result type (might be due to invalid IL or missing references) //IL_3240: Unknown result type (might be due to invalid IL or missing references) //IL_324c: Unknown result type (might be due to invalid IL or missing references) //IL_1c92: Unknown result type (might be due to invalid IL or missing references) //IL_1c98: Unknown result type (might be due to invalid IL or missing references) //IL_1c9d: Unknown result type (might be due to invalid IL or missing references) //IL_1ca8: Unknown result type (might be due to invalid IL or missing references) //IL_1cae: Unknown result type (might be due to invalid IL or missing references) //IL_1cb3: Unknown result type (might be due to invalid IL or missing references) //IL_1cb9: Unknown result type (might be due to invalid IL or missing references) //IL_1cc3: Unknown result type (might be due to invalid IL or missing references) //IL_1cc8: Unknown result type (might be due to invalid IL or missing references) //IL_1cce: Unknown result type (might be due to invalid IL or missing references) //IL_1cd8: Unknown result type (might be due to invalid IL or missing references) //IL_1cdd: Unknown result type (might be due to invalid IL or missing references) //IL_1ce3: Unknown result type (might be due to invalid IL or missing references) //IL_1ce8: Unknown result type (might be due to invalid IL or missing references) //IL_1cee: Unknown result type (might be due to invalid IL or missing references) //IL_1cf3: Unknown result type (might be due to invalid IL or missing references) //IL_1d0b: Unknown result type (might be due to invalid IL or missing references) //IL_1d10: Unknown result type (might be due to invalid IL or missing references) //IL_1d28: Unknown result type (might be due to invalid IL or missing references) //IL_1d2e: Unknown result type (might be due to invalid IL or missing references) //IL_1d38: Unknown result type (might be due to invalid IL or missing references) //IL_1d3d: Unknown result type (might be due to invalid IL or missing references) //IL_1d43: Unknown result type (might be due to invalid IL or missing references) //IL_1d48: Unknown result type (might be due to invalid IL or missing references) //IL_1d53: Unknown result type (might be due to invalid IL or missing references) //IL_1d59: Unknown result type (might be due to invalid IL or missing references) //IL_1d5e: Unknown result type (might be due to invalid IL or missing references) //IL_1d69: Unknown result type (might be due to invalid IL or missing references) //IL_1d6f: Unknown result type (might be due to invalid IL or missing references) //IL_1d74: Unknown result type (might be due to invalid IL or missing references) //IL_1d7a: Unknown result type (might be due to invalid IL or missing references) //IL_1d84: Unknown result type (might be due to invalid IL or missing references) //IL_1d89: Unknown result type (might be due to invalid IL or missing references) //IL_1d8f: Unknown result type (might be due to invalid IL or missing references) //IL_1d99: Unknown result type (might be due to invalid IL or missing references) //IL_1d9e: Unknown result type (might be due to invalid IL or missing references) //IL_1da4: Unknown result type (might be due to invalid IL or missing references) //IL_1da9: Unknown result type (might be due to invalid IL or missing references) //IL_1daf: Unknown result type (might be due to invalid IL or missing references) //IL_1db4: Unknown result type (might be due to invalid IL or missing references) //IL_1dcc: Unknown result type (might be due to invalid IL or missing references) //IL_1dd1: Unknown result type (might be due to invalid IL or missing references) //IL_1de9: Unknown result type (might be due to invalid IL or missing references) //IL_1def: Unknown result type (might be due to invalid IL or missing references) //IL_1df9: Unknown result type (might be due to invalid IL or missing references) //IL_1dfe: Unknown result type (might be due to invalid IL or missing references) //IL_1e04: Unknown result type (might be due to invalid IL or missing references) //IL_1e09: Unknown result type (might be due to invalid IL or missing references) //IL_1e15: Unknown result type (might be due to invalid IL or missing references) //IL_0785: Unknown result type (might be due to invalid IL or missing references) //IL_078b: Unknown result type (might be due to invalid IL or missing references) //IL_0790: Unknown result type (might be due to invalid IL or missing references) //IL_0796: Unknown result type (might be due to invalid IL or missing references) //IL_07a0: Unknown result type (might be due to invalid IL or missing references) //IL_07a5: Unknown result type (might be due to invalid IL or missing references) //IL_07ab: Unknown result type (might be due to invalid IL or missing references) //IL_07b0: Unknown result type (might be due to invalid IL or missing references) //IL_07b6: Unknown result type (might be due to invalid IL or missing references) //IL_07c0: Unknown result type (might be due to invalid IL or missing references) //IL_07c5: Unknown result type (might be due to invalid IL or missing references) //IL_07cb: Unknown result type (might be due to invalid IL or missing references) //IL_07d0: Unknown result type (might be due to invalid IL or missing references) //IL_07db: Unknown result type (might be due to invalid IL or missing references) //IL_07e1: Unknown result type (might be due to invalid IL or missing references) //IL_07e6: Unknown result type (might be due to invalid IL or missing references) //IL_07ec: Unknown result type (might be due to invalid IL or missing references) //IL_07f6: Unknown result type (might be due to invalid IL or missing references) //IL_07fb: Unknown result type (might be due to invalid IL or missing references) //IL_0801: Unknown result type (might be due to invalid IL or missing references) //IL_0806: Unknown result type (might be due to invalid IL or missing references) //IL_080c: Unknown result type (might be due to invalid IL or missing references) //IL_0816: Unknown result type (might be due to invalid IL or missing references) //IL_081b: Unknown result type (might be due to invalid IL or missing references) //IL_0821: Unknown result type (might be due to invalid IL or missing references) //IL_0826: Unknown result type (might be due to invalid IL or missing references) //IL_0832: Unknown result type (might be due to invalid IL or missing references) //IL_3266: Unknown result type (might be due to invalid IL or missing references) //IL_326c: Unknown result type (might be due to invalid IL or missing references) //IL_3271: Unknown result type (might be due to invalid IL or missing references) //IL_327c: Unknown result type (might be due to invalid IL or missing references) //IL_3282: Unknown result type (might be due to invalid IL or missing references) //IL_3287: Unknown result type (might be due to invalid IL or missing references) //IL_328d: Unknown result type (might be due to invalid IL or missing references) //IL_3297: Unknown result type (might be due to invalid IL or missing references) //IL_329c: Unknown result type (might be due to invalid IL or missing references) //IL_32a2: Unknown result type (might be due to invalid IL or missing references) //IL_32ac: Unknown result type (might be due to invalid IL or missing references) //IL_32b1: Unknown result type (might be due to invalid IL or missing references) //IL_32b7: Unknown result type (might be due to invalid IL or missing references) //IL_32bc: Unknown result type (might be due to invalid IL or missing references) //IL_32c2: Unknown result type (might be due to invalid IL or missing references) //IL_32c7: Unknown result type (might be due to invalid IL or missing references) //IL_32df: Unknown result type (might be due to invalid IL or missing references) //IL_32e4: Unknown result type (might be due to invalid IL or missing references) //IL_32fc: Unknown result type (might be due to invalid IL or missing references) //IL_3302: Unknown result type (might be due to invalid IL or missing references) //IL_330c: Unknown result type (might be due to invalid IL or missing references) //IL_3311: Unknown result type (might be due to invalid IL or missing references) //IL_3317: Unknown result type (might be due to invalid IL or missing references) //IL_331c: Unknown result type (might be due to invalid IL or missing references) //IL_3327: Unknown result type (might be due to invalid IL or missing references) //IL_332d: Unknown result type (might be due to invalid IL or missing references) //IL_3332: Unknown result type (might be due to invalid IL or missing references) //IL_333d: Unknown result type (might be due to invalid IL or missing references) //IL_3343: Unknown result type (might be due to invalid IL or missing references) //IL_3348: Unknown result type (might be due to invalid IL or missing references) //IL_334e: Unknown result type (might be due to invalid IL or missing references) //IL_3358: Unknown result type (might be due to invalid IL or missing references) //IL_335d: Unknown result type (might be due to invalid IL or missing references) //IL_3363: Unknown result type (might be due to invalid IL or missing references) //IL_336d: Unknown result type (might be due to invalid IL or missing references) //IL_3372: Unknown result type (might be due to invalid IL or missing references) //IL_3378: Unknown result type (might be due to invalid IL or missing references) //IL_337d: Unknown result type (might be due to invalid IL or missing references) //IL_3383: Unknown result type (might be due to invalid IL or missing references) //IL_3388: Unknown result type (might be due to invalid IL or missing references) //IL_33a0: Unknown result type (might be due to invalid IL or missing references) //IL_33a5: Unknown result type (might be due to invalid IL or missing references) //IL_33bd: Unknown result type (might be due to invalid IL or missing references) //IL_33c3: Unknown result type (might be due to invalid IL or missing references) //IL_33cd: Unknown result type (might be due to invalid IL or missing references) //IL_33d2: Unknown result type (might be due to invalid IL or missing references) //IL_33d8: Unknown result type (might be due to invalid IL or missing references) //IL_33dd: Unknown result type (might be due to invalid IL or missing references) //IL_33e9: Unknown result type (might be due to invalid IL or missing references) //IL_1e2f: Unknown result type (might be due to invalid IL or missing references) //IL_1e35: Unknown result type (might be due to invalid IL or missing references) //IL_1e3a: Unknown result type (might be due to invalid IL or missing references) //IL_1e40: Unknown result type (might be due to invalid IL or missing references) //IL_1e4a: Unknown result type (might be due to invalid IL or missing references) //IL_1e4f: Unknown result type (might be due to invalid IL or missing references) //IL_1e55: Unknown result type (might be due to invalid IL or missing references) //IL_1e5a: Unknown result type (might be due to invalid IL or missing references) //IL_1e60: Unknown result type (might be due to invalid IL or missing references) //IL_1e6a: Unknown result type (might be due to invalid IL or missing references) //IL_1e6f: Unknown result type (might be due to invalid IL or missing references) //IL_1e75: Unknown result type (might be due to invalid IL or missing references) //IL_1e7a: Unknown result type (might be due to invalid IL or missing references) //IL_1e85: Unknown result type (might be due to invalid IL or missing references) //IL_1e8b: Unknown result type (might be due to invalid IL or missing references) //IL_1e90: Unknown result type (might be due to invalid IL or missing references) //IL_1e96: Unknown result type (might be due to invalid IL or missing references) //IL_1ea0: Unknown result type (might be due to invalid IL or missing references) //IL_1ea5: Unknown result type (might be due to invalid IL or missing references) //IL_1eab: Unknown result type (might be due to invalid IL or missing references) //IL_1eb0: Unknown result type (might be due to invalid IL or missing references) //IL_1eb6: Unknown result type (might be due to invalid IL or missing references) //IL_1ec0: Unknown result type (might be due to invalid IL or missing references) //IL_1ec5: Unknown result type (might be due to invalid IL or missing references) //IL_1ecb: Unknown result type (might be due to invalid IL or missing references) //IL_1ed0: Unknown result type (might be due to invalid IL or missing references) //IL_1edc: Unknown result type (might be due to invalid IL or missing references) //IL_0847: Unknown result type (might be due to invalid IL or missing references) //IL_0852: Unknown result type (might be due to invalid IL or missing references) //IL_0858: Unknown result type (might be due to invalid IL or missing references) //IL_085d: Unknown result type (might be due to invalid IL or missing references) //IL_0863: Unknown result type (might be due to invalid IL or missing references) //IL_0868: Unknown result type (might be due to invalid IL or missing references) //IL_086e: Unknown result type (might be due to invalid IL or missing references) //IL_0873: Unknown result type (might be due to invalid IL or missing references) //IL_0879: Unknown result type (might be due to invalid IL or missing references) //IL_0883: Unknown result type (might be due to invalid IL or missing references) //IL_0888: Unknown result type (might be due to invalid IL or missing references) //IL_088e: Unknown result type (might be due to invalid IL or missing references) //IL_0898: Unknown result type (might be due to invalid IL or missing references) //IL_089d: Unknown result type (might be due to invalid IL or missing references) //IL_08a3: Unknown result type (might be due to invalid IL or missing references) //IL_08a8: Unknown result type (might be due to invalid IL or missing references) //IL_08ae: Unknown result type (might be due to invalid IL or missing references) //IL_08b3: Unknown result type (might be due to invalid IL or missing references) //IL_08bf: Unknown result type (might be due to invalid IL or missing references) //IL_3403: Unknown result type (might be due to invalid IL or missing references) //IL_3409: Unknown result type (might be due to invalid IL or missing references) //IL_340e: Unknown result type (might be due to invalid IL or missing references) //IL_3419: Unknown result type (might be due to invalid IL or missing references) //IL_341f: Unknown result type (might be due to invalid IL or missing references) //IL_3424: Unknown result type (might be due to invalid IL or missing references) //IL_342a: Unknown result type (might be due to invalid IL or missing references) //IL_3434: Unknown result type (might be due to invalid IL or missing references) //IL_3439: Unknown result type (might be due to invalid IL or missing references) //IL_343f: Unknown result type (might be due to invalid IL or missing references) //IL_3449: Unknown result type (might be due to invalid IL or missing references) //IL_344e: Unknown result type (might be due to invalid IL or missing references) //IL_3454: Unknown result type (might be due to invalid IL or missing references) //IL_3459: Unknown result type (might be due to invalid IL or missing references) //IL_345f: Unknown result type (might be due to invalid IL or missing references) //IL_3464: Unknown result type (might be due to invalid IL or missing references) //IL_347c: Unknown result type (might be due to invalid IL or missing references) //IL_3481: Unknown result type (might be due to invalid IL or missing references) //IL_3499: Unknown result type (might be due to invalid IL or missing references) //IL_349f: Unknown result type (might be due to invalid IL or missing references) //IL_34a9: Unknown result type (might be due to invalid IL or missing references) //IL_34ae: Unknown result type (might be due to invalid IL or missing references) //IL_34b4: Unknown result type (might be due to invalid IL or missing references) //IL_34b9: Unknown result type (might be due to invalid IL or missing references) //IL_34c4: Unknown result type (might be due to invalid IL or missing references) //IL_34ca: Unknown result type (might be due to invalid IL or missing references) //IL_34cf: Unknown result type (might be due to invalid IL or missing references) //IL_34da: Unknown result type (might be due to invalid IL or missing references) //IL_34e0: Unknown result type (might be due to invalid IL or missing references) //IL_34e5: Unknown result type (might be due to invalid IL or missing references) //IL_34eb: Unknown result type (might be due to invalid IL or missing references) //IL_34f5: Unknown result type (might be due to invalid IL or missing references) //IL_34fa: Unknown result type (might be due to invalid IL or missing references) //IL_3500: Unknown result type (might be due to invalid IL or missing references) //IL_350a: Unknown result type (might be due to invalid IL or missing references) //IL_350f: Unknown result type (might be due to invalid IL or missing references) //IL_3515: Unknown result type (might be due to invalid IL or missing references) //IL_351a: Unknown result type (might be due to invalid IL or missing references) //IL_3520: Unknown result type (might be due to invalid IL or missing references) //IL_3525: Unknown result type (might be due to invalid IL or missing references) //IL_353d: Unknown result type (might be due to invalid IL or missing references) //IL_3542: Unknown result type (might be due to invalid IL or missing references) //IL_355a: Unknown result type (might be due to invalid IL or missing references) //IL_3560: Unknown result type (might be due to invalid IL or missing references) //IL_356a: Unknown result type (might be due to invalid IL or missing references) //IL_356f: Unknown result type (might be due to invalid IL or missing references) //IL_3575: Unknown result type (might be due to invalid IL or missing references) //IL_357a: Unknown result type (might be due to invalid IL or missing references) //IL_3586: Unknown result type (might be due to invalid IL or missing references) //IL_1ef6: Unknown result type (might be due to invalid IL or missing references) //IL_1efc: Unknown result type (might be due to invalid IL or missing references) //IL_1f01: Unknown result type (might be due to invalid IL or missing references) //IL_1f07: Unknown result type (might be due to invalid IL or missing references) //IL_1f11: Unknown result type (might be due to invalid IL or missing references) //IL_1f16: Unknown result type (might be due to invalid IL or missing references) //IL_1f1c: Unknown result type (might be due to invalid IL or missing references) //IL_1f21: Unknown result type (might be due to invalid IL or missing references) //IL_1f27: Unknown result type (might be due to invalid IL or missing references) //IL_1f31: Unknown result type (might be due to invalid IL or missing references) //IL_1f36: Unknown result type (might be due to invalid IL or missing references) //IL_1f3c: Unknown result type (might be due to invalid IL or missing references) //IL_1f41: Unknown result type (might be due to invalid IL or missing references) //IL_1f4c: Unknown result type (might be due to invalid IL or missing references) //IL_1f52: Unknown result type (might be due to invalid IL or missing references) //IL_1f57: Unknown result type (might be due to invalid IL or missing references) //IL_1f5d: Unknown result type (might be due to invalid IL or missing references) //IL_1f67: Unknown result type (might be due to invalid IL or missing references) //IL_1f6c: Unknown result type (might be due to invalid IL or missing references) //IL_1f72: Unknown result type (might be due to invalid IL or missing references) //IL_1f77: Unknown result type (might be due to invalid IL or missing references) //IL_1f7d: Unknown result type (might be due to invalid IL or missing references) //IL_1f87: Unknown result type (might be due to invalid IL or missing references) //IL_1f8c: Unknown result type (might be due to invalid IL or missing references) //IL_1f92: Unknown result type (might be due to invalid IL or missing references) //IL_1f97: Unknown result type (might be due to invalid IL or missing references) //IL_1fa3: Unknown result type (might be due to invalid IL or missing references) //IL_08d4: Unknown result type (might be due to invalid IL or missing references) //IL_08da: Unknown result type (might be due to invalid IL or missing references) //IL_08e4: Unknown result type (might be due to invalid IL or missing references) //IL_08e9: Unknown result type (might be due to invalid IL or missing references) //IL_08f4: Unknown result type (might be due to invalid IL or missing references) //IL_08fa: Unknown result type (might be due to invalid IL or missing references) //IL_08ff: Unknown result type (might be due to invalid IL or missing references) //IL_0905: Unknown result type (might be due to invalid IL or missing references) //IL_090a: Unknown result type (might be due to invalid IL or missing references) //IL_0910: Unknown result type (might be due to invalid IL or missing references) //IL_0915: Unknown result type (might be due to invalid IL or missing references) //IL_091b: Unknown result type (might be due to invalid IL or missing references) //IL_0925: Unknown result type (might be due to invalid IL or missing references) //IL_092a: Unknown result type (might be due to invalid IL or missing references) //IL_0930: Unknown result type (might be due to invalid IL or missing references) //IL_093a: Unknown result type (might be due to invalid IL or missing references) //IL_093f: Unknown result type (might be due to invalid IL or missing references) //IL_0945: Unknown result type (might be due to invalid IL or missing references) //IL_094a: Unknown result type (might be due to invalid IL or missing references) //IL_0950: Unknown result type (might be due to invalid IL or missing references) //IL_095a: Unknown result type (might be due to invalid IL or missing references) //IL_095f: Unknown result type (might be due to invalid IL or missing references) //IL_0965: Unknown result type (might be due to invalid IL or missing references) //IL_096a: Unknown result type (might be due to invalid IL or missing references) //IL_0976: Unknown result type (might be due to invalid IL or missing references) //IL_35a0: Unknown result type (might be due to invalid IL or missing references) //IL_35a6: Unknown result type (might be due to invalid IL or missing references) //IL_35ab: Unknown result type (might be due to invalid IL or missing references) //IL_35b1: Unknown result type (might be due to invalid IL or missing references) //IL_35bb: Unknown result type (might be due to invalid IL or missing references) //IL_35c0: Unknown result type (might be due to invalid IL or missing references) //IL_35c6: Unknown result type (might be due to invalid IL or missing references) //IL_35cb: Unknown result type (might be due to invalid IL or missing references) //IL_35d1: Unknown result type (might be due to invalid IL or missing references) //IL_35db: Unknown result type (might be due to invalid IL or missing references) //IL_35e0: Unknown result type (might be due to invalid IL or missing references) //IL_35e6: Unknown result type (might be due to invalid IL or missing references) //IL_35eb: Unknown result type (might be due to invalid IL or missing references) //IL_35f6: Unknown result type (might be due to invalid IL or missing references) //IL_35fc: Unknown result type (might be due to invalid IL or missing references) //IL_3601: Unknown result type (might be due to invalid IL or missing references) //IL_3607: Unknown result type (might be due to invalid IL or missing references) //IL_3611: Unknown result type (might be due to invalid IL or missing references) //IL_3616: Unknown result type (might be due to invalid IL or missing references) //IL_361c: Unknown result type (might be due to invalid IL or missing references) //IL_3621: Unknown result type (might be due to invalid IL or missing references) //IL_3627: Unknown result type (might be due to invalid IL or missing references) //IL_3631: Unknown result type (might be due to invalid IL or missing references) //IL_3636: Unknown result type (might be due to invalid IL or missing references) //IL_363c: Unknown result type (might be due to invalid IL or missing references) //IL_3641: Unknown result type (might be due to invalid IL or missing references) //IL_364d: Unknown result type (might be due to invalid IL or missing references) //IL_1fb8: Unknown result type (might be due to invalid IL or missing references) //IL_1fc3: Unknown result type (might be due to invalid IL or missing references) //IL_1fc9: Unknown result type (might be due to invalid IL or missing references) //IL_1fce: Unknown result type (might be due to invalid IL or missing references) //IL_1fd4: Unknown result type (might be due to invalid IL or missing references) //IL_1fd9: Unknown result type (might be due to invalid IL or missing references) //IL_1fdf: Unknown result type (might be due to invalid IL or missing references) //IL_1fe4: Unknown result type (might be due to invalid IL or missing references) //IL_1fea: Unknown result type (might be due to invalid IL or missing references) //IL_1ff4: Unknown result type (might be due to invalid IL or missing references) //IL_1ff9: Unknown result type (might be due to invalid IL or missing references) //IL_1fff: Unknown result type (might be due to invalid IL or missing references) //IL_2009: Unknown result type (might be due to invalid IL or missing references) //IL_200e: Unknown result type (might be due to invalid IL or missing references) //IL_2014: Unknown result type (might be due to invalid IL or missing references) //IL_2019: Unknown result type (might be due to invalid IL or missing references) //IL_201f: Unknown result type (might be due to invalid IL or missing references) //IL_2024: Unknown result type (might be due to invalid IL or missing references) //IL_2030: Unknown result type (might be due to invalid IL or missing references) //IL_098b: Unknown result type (might be due to invalid IL or missing references) //IL_0991: Unknown result type (might be due to invalid IL or missing references) //IL_099b: Unknown result type (might be due to invalid IL or missing references) //IL_09a0: Unknown result type (might be due to invalid IL or missing references) //IL_09ab: Unknown result type (might be due to invalid IL or missing references) //IL_09b1: Unknown result type (might be due to invalid IL or missing references) //IL_09b6: Unknown result type (might be due to invalid IL or missing references) //IL_09bc: Unknown result type (might be due to invalid IL or missing references) //IL_09c1: Unknown result type (might be due to invalid IL or missing references) //IL_09c7: Unknown result type (might be due to invalid IL or missing references) //IL_09cc: Unknown result type (might be due to invalid IL or missing references) //IL_09d2: Unknown result type (might be due to invalid IL or missing references) //IL_09dc: Unknown result type (might be due to invalid IL or missing references) //IL_09e1: Unknown result type (might be due to invalid IL or missing references) //IL_09e7: Unknown result type (might be due to invalid IL or missing references) //IL_09f1: Unknown result type (might be due to invalid IL or missing references) //IL_09f6: Unknown result type (might be due to invalid IL or missing references) //IL_09fc: Unknown result type (might be due to invalid IL or missing references) //IL_0a01: Unknown result type (might be due to invalid IL or missing references) //IL_0a07: Unknown result type (might be due to invalid IL or missing references) //IL_0a11: Unknown result type (might be due to invalid IL or missing references) //IL_0a16: Unknown result type (might be due to invalid IL or missing references) //IL_0a1c: Unknown result type (might be due to invalid IL or missing references) //IL_0a21: Unknown result type (might be due to invalid IL or missing references) //IL_0a2d: Unknown result type (might be due to invalid IL or missing references) //IL_3667: Unknown result type (might be due to invalid IL or missing references) //IL_366d: Unknown result type (might be due to invalid IL or missing references) //IL_3672: Unknown result type (might be due to invalid IL or missing references) //IL_3678: Unknown result type (might be due to invalid IL or missing references) //IL_3682: Unknown result type (might be due to invalid IL or missing references) //IL_3687: Unknown result type (might be due to invalid IL or missing references) //IL_368d: Unknown result type (might be due to invalid IL or missing references) //IL_3692: Unknown result type (might be due to invalid IL or missing references) //IL_3698: Unknown result type (might be due to invalid IL or missing references) //IL_36a2: Unknown result type (might be due to invalid IL or missing references) //IL_36a7: Unknown result type (might be due to invalid IL or missing references) //IL_36ad: Unknown result type (might be due to invalid IL or missing references) //IL_36b2: Unknown result type (might be due to invalid IL or missing references) //IL_36bd: Unknown result type (might be due to invalid IL or missing references) //IL_36c3: Unknown result type (might be due to invalid IL or missing references) //IL_36c8: Unknown result type (might be due to invalid IL or missing references) //IL_36ce: Unknown result type (might be due to invalid IL or missing references) //IL_36d8: Unknown result type (might be due to invalid IL or missing references) //IL_36dd: Unknown result type (might be due to invalid IL or missing references) //IL_36e3: Unknown result type (might be due to invalid IL or missing references) //IL_36e8: Unknown result type (might be due to invalid IL or missing references) //IL_36ee: Unknown result type (might be due to invalid IL or missing references) //IL_36f8: Unknown result type (might be due to invalid IL or missing references) //IL_36fd: Unknown result type (might be due to invalid IL or missing references) //IL_3703: Unknown result type (might be due to invalid IL or missing references) //IL_3708: Unknown result type (might be due to invalid IL or missing references) //IL_3714: Unknown result type (might be due to invalid IL or missing references) //IL_2045: Unknown result type (might be due to invalid IL or missing references) //IL_204b: Unknown result type (might be due to invalid IL or missing references) //IL_2055: Unknown result type (might be due to invalid IL or missing references) //IL_205a: Unknown result type (might be due to invalid IL or missing references) //IL_2065: Unknown result type (might be due to invalid IL or missing references) //IL_206b: Unknown result type (might be due to invalid IL or missing references) //IL_2070: Unknown result type (might be due to invalid IL or missing references) //IL_2076: Unknown result type (might be due to invalid IL or missing references) //IL_207b: Unknown result type (might be due to invalid IL or missing references) //IL_2081: Unknown result type (might be due to invalid IL or missing references) //IL_2086: Unknown result type (might be due to invalid IL or missing references) //IL_208c: Unknown result type (might be due to invalid IL or missing references) //IL_2096: Unknown result type (might be due to invalid IL or missing references) //IL_209b: Unknown result type (might be due to invalid IL or missing references) //IL_20a1: Unknown result type (might be due to invalid IL or missing references) //IL_20ab: Unknown result type (might be due to invalid IL or missing references) //IL_20b0: Unknown result type (might be due to invalid IL or missing references) //IL_20b6: Unknown result type (might be due to invalid IL or missing references) //IL_20bb: Unknown result type (might be due to invalid IL or missing references) //IL_20c1: Unknown result type (might be due to invalid IL or missing references) //IL_20cb: Unknown result type (might be due to invalid IL or missing references) //IL_20d0: Unknown result type (might be due to invalid IL or missing references) //IL_20d6: Unknown result type (might be due to invalid IL or missing references) //IL_20db: Unknown result type (might be due to invalid IL or missing references) //IL_20e7: Unknown result type (might be due to invalid IL or missing references) //IL_0a42: Unknown result type (might be due to invalid IL or missing references) //IL_0a48: Unknown result type (might be due to invalid IL or missing references) //IL_0a52: Unknown result type (might be due to invalid IL or missing references) //IL_0a57: Unknown result type (might be due to invalid IL or missing references) //IL_0a62: Unknown result type (might be due to invalid IL or missing references) //IL_0a68: Unknown result type (might be due to invalid IL or missing references) //IL_0a6d: Unknown result type (might be due to invalid IL or missing references) //IL_0a73: Unknown result type (might be due to invalid IL or missing references) //IL_0a78: Unknown result type (might be due to invalid IL or missing references) //IL_0a7e: Unknown result type (might be due to invalid IL or missing references) //IL_0a83: Unknown result type (might be due to invalid IL or missing references) //IL_0a89: Unknown result type (might be due to invalid IL or missing references) //IL_0a93: Unknown result type (might be due to invalid IL or missing references) //IL_0a98: Unknown result type (might be due to invalid IL or missing references) //IL_0a9e: Unknown result type (might be due to invalid IL or missing references) //IL_0aa8: Unknown result type (might be due to invalid IL or missing references) //IL_0aad: Unknown result type (might be due to invalid IL or missing references) //IL_0ab3: Unknown result type (might be due to invalid IL or missing references) //IL_0ab8: Unknown result type (might be due to invalid IL or missing references) //IL_0abe: Unknown result type (might be due to invalid IL or missing references) //IL_0ac8: Unknown result type (might be due to invalid IL or missing references) //IL_0acd: Unknown result type (might be due to invalid IL or missing references) //IL_0ad3: Unknown result type (might be due to invalid IL or missing references) //IL_0ad8: Unknown result type (might be due to invalid IL or missing references) //IL_0ae4: Unknown result type (might be due to invalid IL or missing references) //IL_3729: Unknown result type (might be due to invalid IL or missing references) //IL_3734: Unknown result type (might be due to invalid IL or missing references) //IL_373a: Unknown result type (might be due to invalid IL or missing references) //IL_373f: Unknown result type (might be due to invalid IL or missing references) //IL_3745: Unknown result type (might be due to invalid IL or missing references) //IL_374a: Unknown result type (might be due to invalid IL or missing references) //IL_3750: Unknown result type (might be due to invalid IL or missing references) //IL_3755: Unknown result type (might be due to invalid IL or missing references) //IL_375b: Unknown result type (might be due to invalid IL or missing references) //IL_3765: Unknown result type (might be due to invalid IL or missing references) //IL_376a: Unknown result type (might be due to invalid IL or missing references) //IL_3770: Unknown result type (might be due to invalid IL or missing references) //IL_377a: Unknown result type (might be due to invalid IL or missing references) //IL_377f: Unknown result type (might be due to invalid IL or missing references) //IL_3785: Unknown result type (might be due to invalid IL or missing references) //IL_378a: Unknown result type (might be due to invalid IL or missing references) //IL_3790: Unknown result type (might be due to invalid IL or missing references) //IL_3795: Unknown result type (might be due to invalid IL or missing references) //IL_37a1: Unknown result type (might be due to invalid IL or missing references) //IL_20fc: Unknown result type (might be due to invalid IL or missing references) //IL_2102: Unknown result type (might be due to invalid IL or missing references) //IL_210c: Unknown result type (might be due to invalid IL or missing references) //IL_2111: Unknown result type (might be due to invalid IL or missing references) //IL_211c: Unknown result type (might be due to invalid IL or missing references) //IL_2122: Unknown result type (might be due to invalid IL or missing references) //IL_2127: Unknown result type (might be due to invalid IL or missing references) //IL_212d: Unknown result type (might be due to invalid IL or missing references) //IL_2132: Unknown result type (might be due to invalid IL or missing references) //IL_2138: Unknown result type (might be due to invalid IL or missing references) //IL_213d: Unknown result type (might be due to invalid IL or missing references) //IL_2143: Unknown result type (might be due to invalid IL or missing references) //IL_214d: Unknown result type (might be due to invalid IL or missing references) //IL_2152: Unknown result type (might be due to invalid IL or missing references) //IL_2158: Unknown result type (might be due to invalid IL or missing references) //IL_2162: Unknown result type (might be due to invalid IL or missing references) //IL_2167: Unknown result type (might be due to invalid IL or missing references) //IL_216d: Unknown result type (might be due to invalid IL or missing references) //IL_2172: Unknown result type (might be due to invalid IL or missing references) //IL_2178: Unknown result type (might be due to invalid IL or missing references) //IL_2182: Unknown result type (might be due to invalid IL or missing references) //IL_2187: Unknown result type (might be due to invalid IL or missing references) //IL_218d: Unknown result type (might be due to invalid IL or missing references) //IL_2192: Unknown result type (might be due to invalid IL or missing references) //IL_219e: Unknown result type (might be due to invalid IL or missing references) //IL_0afe: Unknown result type (might be due to invalid IL or missing references) //IL_0b04: Unknown result type (might be due to invalid IL or missing references) //IL_0b09: Unknown result type (might be due to invalid IL or missing references) //IL_0b0f: Unknown result type (might be due to invalid IL or missing references) //IL_0b14: Unknown result type (might be due to invalid IL or missing references) //IL_0b1a: Unknown result type (might be due to invalid IL or missing references) //IL_0b24: Unknown result type (might be due to invalid IL or missing references) //IL_0b29: Unknown result type (might be due to invalid IL or missing references) //IL_0b2f: Unknown result type (might be due to invalid IL or missing references) //IL_0b34: Unknown result type (might be due to invalid IL or missing references) //IL_0b3f: Unknown result type (might be due to invalid IL or missing references) //IL_0b45: Unknown result type (might be due to invalid IL or missing references) //IL_0b4a: Unknown result type (might be due to invalid IL or missing references) //IL_0b50: Unknown result type (might be due to invalid IL or missing references) //IL_0b55: Unknown result type (might be due to invalid IL or missing references) //IL_0b5b: Unknown result type (might be due to invalid IL or missing references) //IL_0b65: Unknown result type (might be due to invalid IL or missing references) //IL_0b6a: Unknown result type (might be due to invalid IL or missing references) //IL_0b70: Unknown result type (might be due to invalid IL or missing references) //IL_0b75: Unknown result type (might be due to invalid IL or missing references) //IL_0b81: Unknown result type (might be due to invalid IL or missing references) //IL_37b6: Unknown result type (might be due to invalid IL or missing references) //IL_37bc: Unknown result type (might be due to invalid IL or missing references) //IL_37c6: Unknown result type (might be due to invalid IL or missing references) //IL_37cb: Unknown result type (might be due to invalid IL or missing references) //IL_37d6: Unknown result type (might be due to invalid IL or missing references) //IL_37dc: Unknown result type (might be due to invalid IL or missing references) //IL_37e1: Unknown result type (might be due to invalid IL or missing references) //IL_37e7: Unknown result type (might be due to invalid IL or missing references) //IL_37ec: Unknown result type (might be due to invalid IL or missing references) //IL_37f2: Unknown result type (might be due to invalid IL or missing references) //IL_37f7: Unknown result type (might be due to invalid IL or missing references) //IL_37fd: Unknown result type (might be due to invalid IL or missing references) //IL_3807: Unknown result type (might be due to invalid IL or missing references) //IL_380c: Unknown result type (might be due to invalid IL or missing references) //IL_3812: Unknown result type (might be due to invalid IL or missing references) //IL_381c: Unknown result type (might be due to invalid IL or missing references) //IL_3821: Unknown result type (might be due to invalid IL or missing references) //IL_3827: Unknown result type (might be due to invalid IL or missing references) //IL_382c: Unknown result type (might be due to invalid IL or missing references) //IL_3832: Unknown result type (might be due to invalid IL or missing references) //IL_383c: Unknown result type (might be due to invalid IL or missing references) //IL_3841: Unknown result type (might be due to invalid IL or missing references) //IL_3847: Unknown result type (might be due to invalid IL or missing references) //IL_384c: Unknown result type (might be due to invalid IL or missing references) //IL_3858: Unknown result type (might be due to invalid IL or missing references) //IL_21b3: Unknown result type (might be due to invalid IL or missing references) //IL_21b9: Unknown result type (might be due to invalid IL or missing references) //IL_21c3: Unknown result type (might be due to invalid IL or missing references) //IL_21c8: Unknown result type (might be due to invalid IL or missing references) //IL_21d3: Unknown result type (might be due to invalid IL or missing references) //IL_21d9: Unknown result type (might be due to invalid IL or missing references) //IL_21de: Unknown result type (might be due to invalid IL or missing references) //IL_21e4: Unknown result type (might be due to invalid IL or missing references) //IL_21e9: Unknown result type (might be due to invalid IL or missing references) //IL_21ef: Unknown result type (might be due to invalid IL or missing references) //IL_21f4: Unknown result type (might be due to invalid IL or missing references) //IL_21fa: Unknown result type (might be due to invalid IL or missing references) //IL_2204: Unknown result type (might be due to invalid IL or missing references) //IL_2209: Unknown result type (might be due to invalid IL or missing references) //IL_220f: Unknown result type (might be due to invalid IL or missing references) //IL_2219: Unknown result type (might be due to invalid IL or missing references) //IL_221e: Unknown result type (might be due to invalid IL or missing references) //IL_2224: Unknown result type (might be due to invalid IL or missing references) //IL_2229: Unknown result type (might be due to invalid IL or missing references) //IL_222f: Unknown result type (might be due to invalid IL or missing references) //IL_2239: Unknown result type (might be due to invalid IL or missing references) //IL_223e: Unknown result type (might be due to invalid IL or missing references) //IL_2244: Unknown result type (might be due to invalid IL or missing references) //IL_2249: Unknown result type (might be due to invalid IL or missing references) //IL_2255: Unknown result type (might be due to invalid IL or missing references) //IL_0b9b: Unknown result type (might be due to invalid IL or missing references) //IL_0ba1: Unknown result type (might be due to invalid IL or missing references) //IL_0ba6: Unknown result type (might be due to invalid IL or missing references) //IL_0bac: Unknown result type (might be due to invalid IL or missing references) //IL_0bb1: Unknown result type (might be due to invalid IL or missing references) //IL_0bb7: Unknown result type (might be due to invalid IL or missing references) //IL_0bc1: Unknown result type (might be due to invalid IL or missing references) //IL_0bc6: Unknown result type (might be due to invalid IL or missing references) //IL_0bcc: Unknown result type (might be due to invalid IL or missing references) //IL_0bd1: Unknown result type (might be due to invalid IL or missing references) //IL_0bd7: Unknown result type (might be due to invalid IL or missing references) //IL_0be1: Unknown result type (might be due to invalid IL or missing references) //IL_0be6: Unknown result type (might be due to invalid IL or missing references) //IL_0bf1: Unknown result type (might be due to invalid IL or missing references) //IL_0bf7: Unknown result type (might be due to invalid IL or missing references) //IL_0bfc: Unknown result type (might be due to invalid IL or missing references) //IL_0c02: Unknown result type (might be due to invalid IL or missing references) //IL_0c07: Unknown result type (might be due to invalid IL or missing references) //IL_0c0d: Unknown result type (might be due to invalid IL or missing references) //IL_0c17: Unknown result type (might be due to invalid IL or missing references) //IL_0c1c: Unknown result type (might be due to invalid IL or missing references) //IL_0c22: Unknown result type (might be due to invalid IL or missing references) //IL_0c27: Unknown result type (might be due to invalid IL or missing references) //IL_0c2d: Unknown result type (might be due to invalid IL or missing references) //IL_0c37: Unknown result type (might be due to invalid IL or missing references) //IL_0c3c: Unknown result type (might be due to invalid IL or missing references) //IL_0c48: Unknown result type (might be due to invalid IL or missing references) //IL_386d: Unknown result type (might be due to invalid IL or missing references) //IL_3873: Unknown result type (might be due to invalid IL or missing references) //IL_387d: Unknown result type (might be due to invalid IL or missing references) //IL_3882: Unknown result type (might be due to invalid IL or missing references) //IL_388d: Unknown result type (might be due to invalid IL or missing references) //IL_3893: Unknown result type (might be due to invalid IL or missing references) //IL_3898: Unknown result type (might be due to invalid IL or missing references) //IL_389e: Unknown result type (might be due to invalid IL or missing references) //IL_38a3: Unknown result type (might be due to invalid IL or missing references) //IL_38a9: Unknown result type (might be due to invalid IL or missing references) //IL_38ae: Unknown result type (might be due to invalid IL or missing references) //IL_38b4: Unknown result type (might be due to invalid IL or missing references) //IL_38be: Unknown result type (might be due to invalid IL or missing references) //IL_38c3: Unknown result type (might be due to invalid IL or missing references) //IL_38c9: Unknown result type (might be due to invalid IL or missing references) //IL_38d3: Unknown result type (might be due to invalid IL or missing references) //IL_38d8: Unknown result type (might be due to invalid IL or missing references) //IL_38de: Unknown result type (might be due to invalid IL or missing references) //IL_38e3: Unknown result type (might be due to invalid IL or missing references) //IL_38e9: Unknown result type (might be due to invalid IL or missing references) //IL_38f3: Unknown result type (might be due to invalid IL or missing references) //IL_38f8: Unknown result type (might be due to invalid IL or missing references) //IL_38fe: Unknown result type (might be due to invalid IL or missing references) //IL_3903: Unknown result type (might be due to invalid IL or missing references) //IL_390f: Unknown result type (might be due to invalid IL or missing references) //IL_226f: Unknown result type (might be due to invalid IL or missing references) //IL_2275: Unknown result type (might be due to invalid IL or missing references) //IL_227a: Unknown result type (might be due to invalid IL or missing references) //IL_2280: Unknown result type (might be due to invalid IL or missing references) //IL_2285: Unknown result type (might be due to invalid IL or missing references) //IL_228b: Unknown result type (might be due to invalid IL or missing references) //IL_2295: Unknown result type (might be due to invalid IL or missing references) //IL_229a: Unknown result type (might be due to invalid IL or missing references) //IL_22a0: Unknown result type (might be due to invalid IL or missing references) //IL_22a5: Unknown result type (might be due to invalid IL or missing references) //IL_22b0: Unknown result type (might be due to invalid IL or missing references) //IL_22b6: Unknown result type (might be due to invalid IL or missing references) //IL_22bb: Unknown result type (might be due to invalid IL or missing references) //IL_22c1: Unknown result type (might be due to invalid IL or missing references) //IL_22c6: Unknown result type (might be due to invalid IL or missing references) //IL_22cc: Unknown result type (might be due to invalid IL or missing references) //IL_22d6: Unknown result type (might be due to invalid IL or missing references) //IL_22db: Unknown result type (might be due to invalid IL or missing references) //IL_22e1: Unknown result type (might be due to invalid IL or missing references) //IL_22e6: Unknown result type (might be due to invalid IL or missing references) //IL_22f2: Unknown result type (might be due to invalid IL or missing references) //IL_0c62: Unknown result type (might be due to invalid IL or missing references) //IL_0c68: Unknown result type (might be due to invalid IL or missing references) //IL_0c6d: Unknown result type (might be due to invalid IL or missing references) //IL_0c73: Unknown result type (might be due to invalid IL or missing references) //IL_0c78: Unknown result type (might be due to invalid IL or missing references) //IL_0c7e: Unknown result type (might be due to invalid IL or missing references) //IL_0c88: Unknown result type (might be due to invalid IL or missing references) //IL_0c8d: Unknown result type (might be due to invalid IL or missing references) //IL_0c93: Unknown result type (might be due to invalid IL or missing references) //IL_0c98: Unknown result type (might be due to invalid IL or missing references) //IL_0c9e: Unknown result type (might be due to invalid IL or missing references) //IL_0ca8: Unknown result type (might be due to invalid IL or missing references) //IL_0cad: Unknown result type (might be due to invalid IL or missing references) //IL_0cb8: Unknown result type (might be due to invalid IL or missing references) //IL_0cbe: Unknown result type (might be due to invalid IL or missing references) //IL_0cc3: Unknown result type (might be due to invalid IL or missing references) //IL_0cc9: Unknown result type (might be due to invalid IL or missing references) //IL_0cce: Unknown result type (might be due to invalid IL or missing references) //IL_0cd4: Unknown result type (might be due to invalid IL or missing references) //IL_0cde: Unknown result type (might be due to invalid IL or missing references) //IL_0ce3: Unknown result type (might be due to invalid IL or missing references) //IL_0ce9: Unknown result type (might be due to invalid IL or missing references) //IL_0cee: Unknown result type (might be due to invalid IL or missing references) //IL_0cf4: Unknown result type (might be due to invalid IL or missing references) //IL_0cfe: Unknown result type (might be due to invalid IL or missing references) //IL_0d03: Unknown result type (might be due to invalid IL or missing references) //IL_0d0f: Unknown result type (might be due to invalid IL or missing references) //IL_3924: Unknown result type (might be due to invalid IL or missing references) //IL_392a: Unknown result type (might be due to invalid IL or missing references) //IL_3934: Unknown result type (might be due to invalid IL or missing references) //IL_3939: Unknown result type (might be due to invalid IL or missing references) //IL_3944: Unknown result type (might be due to invalid IL or missing references) //IL_394a: Unknown result type (might be due to invalid IL or missing references) //IL_394f: Unknown result type (might be due to invalid IL or missing references) //IL_3955: Unknown result type (might be due to invalid IL or missing references) //IL_395a: Unknown result type (might be due to invalid IL or missing references) //IL_3960: Unknown result type (might be due to invalid IL or missing references) //IL_3965: Unknown result type (might be due to invalid IL or missing references) //IL_396b: Unknown result type (might be due to invalid IL or missing references) //IL_3975: Unknown result type (might be due to invalid IL or missing references) //IL_397a: Unknown result type (might be due to invalid IL or missing references) //IL_3980: Unknown result type (might be due to invalid IL or missing references) //IL_398a: Unknown result type (might be due to invalid IL or missing references) //IL_398f: Unknown result type (might be due to invalid IL or missing references) //IL_3995: Unknown result type (might be due to invalid IL or missing references) //IL_399a: Unknown result type (might be due to invalid IL or missing references) //IL_39a0: Unknown result type (might be due to invalid IL or missing references) //IL_39aa: Unknown result type (might be due to invalid IL or missing references) //IL_39af: Unknown result type (might be due to invalid IL or missing references) //IL_39b5: Unknown result type (might be due to invalid IL or missing references) //IL_39ba: Unknown result type (might be due to invalid IL or missing references) //IL_39c6: Unknown result type (might be due to invalid IL or missing references) //IL_230c: Unknown result type (might be due to invalid IL or missing references) //IL_2312: Unknown result type (might be due to invalid IL or missing references) //IL_2317: Unknown result type (might be due to invalid IL or missing references) //IL_231d: Unknown result type (might be due to invalid IL or missing references) //IL_2322: Unknown result type (might be due to invalid IL or missing references) //IL_2328: Unknown result type (might be due to invalid IL or missing references) //IL_2332: Unknown result type (might be due to invalid IL or missing references) //IL_2337: Unknown result type (might be due to invalid IL or missing references) //IL_233d: Unknown result type (might be due to invalid IL or missing references) //IL_2342: Unknown result type (might be due to invalid IL or missing references) //IL_2348: Unknown result type (might be due to invalid IL or missing references) //IL_2352: Unknown result type (might be due to invalid IL or missing references) //IL_2357: Unknown result type (might be due to invalid IL or missing references) //IL_2362: Unknown result type (might be due to invalid IL or missing references) //IL_2368: Unknown result type (might be due to invalid IL or missing references) //IL_236d: Unknown result type (might be due to invalid IL or missing references) //IL_2373: Unknown result type (might be due to invalid IL or missing references) //IL_2378: Unknown result type (might be due to invalid IL or missing references) //IL_237e: Unknown result type (might be due to invalid IL or missing references) //IL_2388: Unknown result type (might be due to invalid IL or missing references) //IL_238d: Unknown result type (might be due to invalid IL or missing references) //IL_2393: Unknown result type (might be due to invalid IL or missing references) //IL_2398: Unknown result type (might be due to invalid IL or missing references) //IL_239e: Unknown result type (might be due to invalid IL or missing references) //IL_23a8: Unknown result type (might be due to invalid IL or missing references) //IL_23ad: Unknown result type (might be due to invalid IL or missing references) //IL_23b9: Unknown result type (might be due to invalid IL or missing references) //IL_0d29: Unknown result type (might be due to invalid IL or missing references) //IL_0d2f: Unknown result type (might be due to invalid IL or missing references) //IL_0d34: Unknown result type (might be due to invalid IL or missing references) //IL_0d3a: Unknown result type (might be due to invalid IL or missing references) //IL_0d3f: Unknown result type (might be due to invalid IL or missing references) //IL_0d45: Unknown result type (might be due to invalid IL or missing references) //IL_0d4f: Unknown result type (might be due to invalid IL or missing references) //IL_0d54: Unknown result type (might be due to invalid IL or missing references) //IL_0d5a: Unknown result type (might be due to invalid IL or missing references) //IL_0d5f: Unknown result type (might be due to invalid IL or missing references) //IL_0d65: Unknown result type (might be due to invalid IL or missing references) //IL_0d6f: Unknown result type (might be due to invalid IL or missing references) //IL_0d74: Unknown result type (might be due to invalid IL or missing references) //IL_0d7f: Unknown result type (might be due to invalid IL or missing references) //IL_0d85: Unknown result type (might be due to invalid IL or missing references) //IL_0d8a: Unknown result type (might be due to invalid IL or missing references) //IL_0d90: Unknown result type (might be due to invalid IL or missing references) //IL_0d95: Unknown result type (might be due to invalid IL or missing references) //IL_0d9b: Unknown result type (might be due to invalid IL or missing references) //IL_0da5: Unknown result type (might be due to invalid IL or missing references) //IL_0daa: Unknown result type (might be due to invalid IL or missing references) //IL_0db0: Unknown result type (might be due to invalid IL or missing references) //IL_0db5: Unknown result type (might be due to invalid IL or missing references) //IL_0dbb: Unknown result type (might be due to invalid IL or missing references) //IL_0dc5: Unknown result type (might be due to invalid IL or missing references) //IL_0dca: Unknown result type (might be due to invalid IL or missing references) //IL_0dd6: Unknown result type (might be due to invalid IL or missing references) //IL_39e0: Unknown result type (might be due to invalid IL or missing references) //IL_39e6: Unknown result type (might be due to invalid IL or missing references) //IL_39eb: Unknown result type (might be due to invalid IL or missing references) //IL_39f1: Unknown result type (might be due to invalid IL or missing references) //IL_39f6: Unknown result type (might be due to invalid IL or missing references) //IL_39fc: Unknown result type (might be due to invalid IL or missing references) //IL_3a06: Unknown result type (might be due to invalid IL or missing references) //IL_3a0b: Unknown result type (might be due to invalid IL or missing references) //IL_3a11: Unknown result type (might be due to invalid IL or missing references) //IL_3a16: Unknown result type (might be due to invalid IL or missing references) //IL_3a21: Unknown result type (might be due to invalid IL or missing references) //IL_3a27: Unknown result type (might be due to invalid IL or missing references) //IL_3a2c: Unknown result type (might be due to invalid IL or missing references) //IL_3a32: Unknown result type (might be due to invalid IL or missing references) //IL_3a37: Unknown result type (might be due to invalid IL or missing references) //IL_3a3d: Unknown result type (might be due to invalid IL or missing references) //IL_3a47: Unknown result type (might be due to invalid IL or missing references) //IL_3a4c: Unknown result type (might be due to invalid IL or missing references) //IL_3a52: Unknown result type (might be due to invalid IL or missing references) //IL_3a57: Unknown result type (might be due to invalid IL or missing references) //IL_3a63: Unknown result type (might be due to invalid IL or missing references) //IL_23d3: Unknown result type (might be due to invalid IL or missing references) //IL_23d9: Unknown result type (might be due to invalid IL or missing references) //IL_23de: Unknown result type (might be due to invalid IL or missing references) //IL_23e4: Unknown result type (might be due to invalid IL or missing references) //IL_23e9: Unknown result type (might be due to invalid IL or missing references) //IL_23ef: Unknown result type (might be due to invalid IL or missing references) //IL_23f9: Unknown result type (might be due to invalid IL or missing references) //IL_23fe: Unknown result type (might be due to invalid IL or missing references) //IL_2404: Unknown result type (might be due to invalid IL or missing references) //IL_2409: Unknown result type (might be due to invalid IL or missing references) //IL_240f: Unknown result type (might be due to invalid IL or missing references) //IL_2419: Unknown result type (might be due to invalid IL or missing references) //IL_241e: Unknown result type (might be due to invalid IL or missing references) //IL_2429: Unknown result type (might be due to invalid IL or missing references) //IL_242f: Unknown result type (might be due to invalid IL or missing references) //IL_2434: Unknown result type (might be due to invalid IL or missing references) //IL_243a: Unknown result type (might be due to invalid IL or missing references) //IL_243f: Unknown result type (might be due to invalid IL or missing references) //IL_2445: Unknown result type (might be due to invalid IL or missing references) //IL_244f: Unknown result type (might be due to invalid IL or missing references) //IL_2454: Unknown result type (might be due to invalid IL or missing references) //IL_245a: Unknown result type (might be due to invalid IL or missing references) //IL_245f: Unknown result type (might be due to invalid IL or missing references) //IL_2465: Unknown result type (might be due to invalid IL or missing references) //IL_246f: Unknown result type (might be due to invalid IL or missing references) //IL_2474: Unknown result type (might be due to invalid IL or missing references) //IL_2480: Unknown result type (might be due to invalid IL or missing references) //IL_0df0: Unknown result type (might be due to invalid IL or missing references) //IL_0df6: Unknown result type (might be due to invalid IL or missing references) //IL_0dfb: Unknown result type (might be due to invalid IL or missing references) //IL_0e01: Unknown result type (might be due to invalid IL or missing references) //IL_0e06: Unknown result type (might be due to invalid IL or missing references) //IL_0e0c: Unknown result type (might be due to invalid IL or missing references) //IL_0e16: Unknown result type (might be due to invalid IL or missing references) //IL_0e1b: Unknown result type (might be due to invalid IL or missing references) //IL_0e21: Unknown result type (might be due to invalid IL or missing references) //IL_0e26: Unknown result type (might be due to invalid IL or missing references) //IL_0e2c: Unknown result type (might be due to invalid IL or missing references) //IL_0e36: Unknown result type (might be due to invalid IL or missing references) //IL_0e3b: Unknown result type (might be due to invalid IL or missing references) //IL_0e46: Unknown result type (might be due to invalid IL or missing references) //IL_0e4c: Unknown result type (might be due to invalid IL or missing references) //IL_0e51: Unknown result type (might be due to invalid IL or missing references) //IL_0e57: Unknown result type (might be due to invalid IL or missing references) //IL_0e5c: Unknown result type (might be due to invalid IL or missing references) //IL_0e62: Unknown result type (might be due to invalid IL or missing references) //IL_0e6c: Unknown result type (might be due to invalid IL or missing references) //IL_0e71: Unknown result type (might be due to invalid IL or missing references) //IL_0e77: Unknown result type (might be due to invalid IL or missing references) //IL_0e7c: Unknown result type (might be due to invalid IL or missing references) //IL_0e82: Unknown result type (might be due to invalid IL or missing references) //IL_0e8c: Unknown result type (might be due to invalid IL or missing references) //IL_0e91: Unknown result type (might be due to invalid IL or missing references) //IL_0e9d: Unknown result type (might be due to invalid IL or missing references) //IL_3a7d: Unknown result type (might be due to invalid IL or missing references) //IL_3a83: Unknown result type (might be due to invalid IL or missing references) //IL_3a88: Unknown result type (might be due to invalid IL or missing references) //IL_3a8e: Unknown result type (might be due to invalid IL or missing references) //IL_3a93: Unknown result type (might be due to invalid IL or missing references) //IL_3a99: Unknown result type (might be due to invalid IL or missing references) //IL_3aa3: Unknown result type (might be due to invalid IL or missing references) //IL_3aa8: Unknown result type (might be due to invalid IL or missing references) //IL_3aae: Unknown result type (might be due to invalid IL or missing references) //IL_3ab3: Unknown result type (might be due to invalid IL or missing references) //IL_3ab9: Unknown result type (might be due to invalid IL or missing references) //IL_3ac3: Unknown result type (might be due to invalid IL or missing references) //IL_3ac8: Unknown result type (might be due to invalid IL or missing references) //IL_3ad3: Unknown result type (might be due to invalid IL or missing references) //IL_3ad9: Unknown result type (might be due to invalid IL or missing references) //IL_3ade: Unknown result type (might be due to invalid IL or missing references) //IL_3ae4: Unknown result type (might be due to invalid IL or missing references) //IL_3ae9: Unknown result type (might be due to invalid IL or missing references) //IL_3aef: Unknown result type (might be due to invalid IL or missing references) //IL_3af9: Unknown result type (might be due to invalid IL or missing references) //IL_3afe: Unknown result type (might be due to invalid IL or missing references) //IL_3b04: Unknown result type (might be due to invalid IL or missing references) //IL_3b09: Unknown result type (might be due to invalid IL or missing references) //IL_3b0f: Unknown result type (might be due to invalid IL or missing references) //IL_3b19: Unknown result type (might be due to invalid IL or missing references) //IL_3b1e: Unknown result type (might be due to invalid IL or missing references) //IL_3b2a: Unknown result type (might be due to invalid IL or missing references) //IL_249a: Unknown result type (might be due to invalid IL or missing references) //IL_24a0: Unknown result type (might be due to invalid IL or missing references) //IL_24a5: Unknown result type (might be due to invalid IL or missing references) //IL_24ab: Unknown result type (might be due to invalid IL or missing references) //IL_24b0: Unknown result type (might be due to invalid IL or missing references) //IL_24b6: Unknown result type (might be due to invalid IL or missing references) //IL_24c0: Unknown result type (might be due to invalid IL or missing references) //IL_24c5: Unknown result type (might be due to invalid IL or missing references) //IL_24cb: Unknown result type (might be due to invalid IL or missing references) //IL_24d0: Unknown result type (might be due to invalid IL or missing references) //IL_24d6: Unknown result type (might be due to invalid IL or missing references) //IL_24e0: Unknown result type (might be due to invalid IL or missing references) //IL_24e5: Unknown result type (might be due to invalid IL or missing references) //IL_24f0: Unknown result type (might be due to invalid IL or missing references) //IL_24f6: Unknown result type (might be due to invalid IL or missing references) //IL_24fb: Unknown result type (might be due to invalid IL or missing references) //IL_2501: Unknown result type (might be due to invalid IL or missing references) //IL_2506: Unknown result type (might be due to invalid IL or missing references) //IL_250c: Unknown result type (might be due to invalid IL or missing references) //IL_2516: Unknown result type (might be due to invalid IL or missing references) //IL_251b: Unknown result type (might be due to invalid IL or missing references) //IL_2521: Unknown result type (might be due to invalid IL or missing references) //IL_2526: Unknown result type (might be due to invalid IL or missing references) //IL_252c: Unknown result type (might be due to invalid IL or missing references) //IL_2536: Unknown result type (might be due to invalid IL or missing references) //IL_253b: Unknown result type (might be due to invalid IL or missing references) //IL_2547: Unknown result type (might be due to invalid IL or missing references) //IL_0eb7: Unknown result type (might be due to invalid IL or missing references) //IL_0ebd: Unknown result type (might be due to invalid IL or missing references) //IL_0ec2: Unknown result type (might be due to invalid IL or missing references) //IL_0ec8: Unknown result type (might be due to invalid IL or missing references) //IL_0ecd: Unknown result type (might be due to invalid IL or missing references) //IL_0ed3: Unknown result type (might be due to invalid IL or missing references) //IL_0edd: Unknown result type (might be due to invalid IL or missing references) //IL_0ee2: Unknown result type (might be due to invalid IL or missing references) //IL_0ee8: Unknown result type (might be due to invalid IL or missing references) //IL_0eed: Unknown result type (might be due to invalid IL or missing references) //IL_0ef3: Unknown result type (might be due to invalid IL or missing references) //IL_0efd: Unknown result type (might be due to invalid IL or missing references) //IL_0f02: Unknown result type (might be due to invalid IL or missing references) //IL_0f0d: Unknown result type (might be due to invalid IL or missing references) //IL_0f13: Unknown result type (might be due to invalid IL or missing references) //IL_0f18: Unknown result type (might be due to invalid IL or missing references) //IL_0f1e: Unknown result type (might be due to invalid IL or missing references) //IL_0f23: Unknown result type (might be due to invalid IL or missing references) //IL_0f29: Unknown result type (might be due to invalid IL or missing references) //IL_0f33: Unknown result type (might be due to invalid IL or missing references) //IL_0f38: Unknown result type (might be due to invalid IL or missing references) //IL_0f3e: Unknown result type (might be due to invalid IL or missing references) //IL_0f43: Unknown result type (might be due to invalid IL or missing references) //IL_0f49: Unknown result type (might be due to invalid IL or missing references) //IL_0f53: Unknown result type (might be due to invalid IL or missing references) //IL_0f58: Unknown result type (might be due to invalid IL or missing references) //IL_0f64: Unknown result type (might be due to invalid IL or missing references) //IL_3b44: Unknown result type (might be due to invalid IL or missing references) //IL_3b4a: Unknown result type (might be due to invalid IL or missing references) //IL_3b4f: Unknown result type (might be due to invalid IL or missing references) //IL_3b55: Unknown result type (might be due to invalid IL or missing references) //IL_3b5a: Unknown result type (might be due to invalid IL or missing references) //IL_3b60: Unknown result type (might be due to invalid IL or missing references) //IL_3b6a: Unknown result type (might be due to invalid IL or missing references) //IL_3b6f: Unknown result type (might be due to invalid IL or missing references) //IL_3b75: Unknown result type (might be due to invalid IL or missing references) //IL_3b7a: Unknown result type (might be due to invalid IL or missing references) //IL_3b80: Unknown result type (might be due to invalid IL or missing references) //IL_3b8a: Unknown result type (might be due to invalid IL or missing references) //IL_3b8f: Unknown result type (might be due to invalid IL or missing references) //IL_3b9a: Unknown result type (might be due to invalid IL or missing references) //IL_3ba0: Unknown result type (might be due to invalid IL or missing references) //IL_3ba5: Unknown result type (might be due to invalid IL or missing references) //IL_3bab: Unknown result type (might be due to invalid IL or missing references) //IL_3bb0: Unknown result type (might be due to invalid IL or missing references) //IL_3bb6: Unknown result type (might be due to invalid IL or missing references) //IL_3bc0: Unknown result type (might be due to invalid IL or missing references) //IL_3bc5: Unknown result type (might be due to invalid IL or missing references) //IL_3bcb: Unknown result type (might be due to invalid IL or missing references) //IL_3bd0: Unknown result type (might be due to invalid IL or missing references) //IL_3bd6: Unknown result type (might be due to invalid IL or missing references) //IL_3be0: Unknown result type (might be due to invalid IL or missing references) //IL_3be5: Unknown result type (might be due to invalid IL or missing references) //IL_3bf1: Unknown result type (might be due to invalid IL or missing references) //IL_2561: Unknown result type (might be due to invalid IL or missing references) //IL_2567: Unknown result type (might be due to invalid IL or missing references) //IL_256c: Unknown result type (might be due to invalid IL or missing references) //IL_2572: Unknown result type (might be due to invalid IL or missing references) //IL_2577: Unknown result type (might be due to invalid IL or missing references) //IL_257d: Unknown result type (might be due to invalid IL or missing references) //IL_2587: Unknown result type (might be due to invalid IL or missing references) //IL_258c: Unknown result type (might be due to invalid IL or missing references) //IL_2592: Unknown result type (might be due to invalid IL or missing references) //IL_2597: Unknown result type (might be due to invalid IL or missing references) //IL_259d: Unknown result type (might be due to invalid IL or missing references) //IL_25a7: Unknown result type (might be due to invalid IL or missing references) //IL_25ac: Unknown result type (might be due to invalid IL or missing references) //IL_25b7: Unknown result type (might be due to invalid IL or missing references) //IL_25bd: Unknown result type (might be due to invalid IL or missing references) //IL_25c2: Unknown result type (might be due to invalid IL or missing references) //IL_25c8: Unknown result type (might be due to invalid IL or missing references) //IL_25cd: Unknown result type (might be due to invalid IL or missing references) //IL_25d3: Unknown result type (might be due to invalid IL or missing references) //IL_25dd: Unknown result type (might be due to invalid IL or missing references) //IL_25e2: Unknown result type (might be due to invalid IL or missing references) //IL_25e8: Unknown result type (might be due to invalid IL or missing references) //IL_25ed: Unknown result type (might be due to invalid IL or missing references) //IL_25f3: Unknown result type (might be due to invalid IL or missing references) //IL_25fd: Unknown result type (might be due to invalid IL or missing references) //IL_2602: Unknown result type (might be due to invalid IL or missing references) //IL_260e: Unknown result type (might be due to invalid IL or missing references) //IL_0f7e: Unknown result type (might be due to invalid IL or missing references) //IL_0f84: Unknown result type (might be due to invalid IL or missing references) //IL_0f89: Unknown result type (might be due to invalid IL or missing references) //IL_0f8f: Unknown result type (might be due to invalid IL or missing references) //IL_0f94: Unknown result type (might be due to invalid IL or missing references) //IL_0f9a: Unknown result type (might be due to invalid IL or missing references) //IL_0fa4: Unknown result type (might be due to invalid IL or missing references) //IL_0fa9: Unknown result type (might be due to invalid IL or missing references) //IL_0faf: Unknown result type (might be due to invalid IL or missing references) //IL_0fb4: Unknown result type (might be due to invalid IL or missing references) //IL_0fba: Unknown result type (might be due to invalid IL or missing references) //IL_0fc4: Unknown result type (might be due to invalid IL or missing references) //IL_0fc9: Unknown result type (might be due to invalid IL or missing references) //IL_0fd4: Unknown result type (might be due to invalid IL or missing references) //IL_0fda: Unknown result type (might be due to invalid IL or missing references) //IL_0fdf: Unknown result type (might be due to invalid IL or missing references) //IL_0fe5: Unknown result type (might be due to invalid IL or missing references) //IL_0fea: Unknown result type (might be due to invalid IL or missing references) //IL_0ff0: Unknown result type (might be due to invalid IL or missing references) //IL_0ffa: Unknown result type (might be due to invalid IL or missing references) //IL_0fff: Unknown result type (might be due to invalid IL or missing references) //IL_1005: Unknown result type (might be due to invalid IL or missing references) //IL_100a: Unknown result type (might be due to invalid IL or missing references) //IL_1010: Unknown result type (might be due to invalid IL or missing references) //IL_101a: Unknown result type (might be due to invalid IL or missing references) //IL_101f: Unknown result type (might be due to invalid IL or missing references) //IL_102b: Unknown result type (might be due to invalid IL or missing references) //IL_3c0b: Unknown result type (might be due to invalid IL or missing references) //IL_3c11: Unknown result type (might be due to invalid IL or missing references) //IL_3c16: Unknown result type (might be due to invalid IL or missing references) //IL_3c1c: Unknown result type (might be due to invalid IL or missing references) //IL_3c21: Unknown result type (might be due to invalid IL or missing references) //IL_3c27: Unknown result type (might be due to invalid IL or missing references) //IL_3c31: Unknown result type (might be due to invalid IL or missing references) //IL_3c36: Unknown result type (might be due to invalid IL or missing references) //IL_3c3c: Unknown result type (might be due to invalid IL or missing references) //IL_3c41: Unknown result type (might be due to invalid IL or missing references) //IL_3c47: Unknown result type (might be due to invalid IL or missing references) //IL_3c51: Unknown result type (might be due to invalid IL or missing references) //IL_3c56: Unknown result type (might be due to invalid IL or missing references) //IL_3c61: Unknown result type (might be due to invalid IL or missing references) //IL_3c67: Unknown result type (might be due to invalid IL or missing references) //IL_3c6c: Unknown result type (might be due to invalid IL or missing references) //IL_3c72: Unknown result type (might be due to invalid IL or missing references) //IL_3c77: Unknown result type (might be due to invalid IL or missing references) //IL_3c7d: Unknown result type (might be due to invalid IL or missing references) //IL_3c87: Unknown result type (might be due to invalid IL or missing references) //IL_3c8c: Unknown result type (might be due to invalid IL or missing references) //IL_3c92: Unknown result type (might be due to invalid IL or missing references) //IL_3c97: Unknown result type (might be due to invalid IL or missing references) //IL_3c9d: Unknown result type (might be due to invalid IL or missing references) //IL_3ca7: Unknown result type (might be due to invalid IL or missing references) //IL_3cac: Unknown result type (might be due to invalid IL or missing references) //IL_3cb8: Unknown result type (might be due to invalid IL or missing references) //IL_2628: Unknown result type (might be due to invalid IL or missing references) //IL_262e: Unknown result type (might be due to invalid IL or missing references) //IL_2633: Unknown result type (might be due to invalid IL or missing references) //IL_2639: Unknown result type (might be due to invalid IL or missing references) //IL_263e: Unknown result type (might be due to invalid IL or missing references) //IL_2644: Unknown result type (might be due to invalid IL or missing references) //IL_264e: Unknown result type (might be due to invalid IL or missing references) //IL_2653: Unknown result type (might be due to invalid IL or missing references) //IL_2659: Unknown result type (might be due to invalid IL or missing references) //IL_265e: Unknown result type (might be due to invalid IL or missing references) //IL_2664: Unknown result type (might be due to invalid IL or missing references) //IL_266e: Unknown result type (might be due to invalid IL or missing references) //IL_2673: Unknown result type (might be due to invalid IL or missing references) //IL_267e: Unknown result type (might be due to invalid IL or missing references) //IL_2684: Unknown result type (might be due to invalid IL or missing references) //IL_2689: Unknown result type (might be due to invalid IL or missing references) //IL_268f: Unknown result type (might be due to invalid IL or missing references) //IL_2694: Unknown result type (might be due to invalid IL or missing references) //IL_269a: Unknown result type (might be due to invalid IL or missing references) //IL_26a4: Unknown result type (might be due to invalid IL or missing references) //IL_26a9: Unknown result type (might be due to invalid IL or missing references) //IL_26af: Unknown result type (might be due to invalid IL or missing references) //IL_26b4: Unknown result type (might be due to invalid IL or missing references) //IL_26ba: Unknown result type (might be due to invalid IL or missing references) //IL_26c4: Unknown result type (might be due to invalid IL or missing references) //IL_26c9: Unknown result type (might be due to invalid IL or missing references) //IL_26d5: Unknown result type (might be due to invalid IL or missing references) //IL_1045: Unknown result type (might be due to invalid IL or missing references) //IL_104b: Unknown result type (might be due to invalid IL or missing references) //IL_1050: Unknown result type (might be due to invalid IL or missing references) //IL_1056: Unknown result type (might be due to invalid IL or missing references) //IL_105b: Unknown result type (might be due to invalid IL or missing references) //IL_1061: Unknown result type (might be due to invalid IL or missing references) //IL_106b: Unknown result type (might be due to invalid IL or missing references) //IL_1070: Unknown result type (might be due to invalid IL or missing references) //IL_1076: Unknown result type (might be due to invalid IL or missing references) //IL_107b: Unknown result type (might be due to invalid IL or missing references) //IL_1081: Unknown result type (might be due to invalid IL or missing references) //IL_108b: Unknown result type (might be due to invalid IL or missing references) //IL_1090: Unknown result type (might be due to invalid IL or missing references) //IL_109b: Unknown result type (might be due to invalid IL or missing references) //IL_10a1: Unknown result type (might be due to invalid IL or missing references) //IL_10a6: Unknown result type (might be due to invalid IL or missing references) //IL_10ac: Unknown result type (might be due to invalid IL or missing references) //IL_10b1: Unknown result type (might be due to invalid IL or missing references) //IL_10b7: Unknown result type (might be due to invalid IL or missing references) //IL_10c1: Unknown result type (might be due to invalid IL or missing references) //IL_10c6: Unknown result type (might be due to invalid IL or missing references) //IL_10cc: Unknown result type (might be due to invalid IL or missing references) //IL_10d1: Unknown result type (might be due to invalid IL or missing references) //IL_10d7: Unknown result type (might be due to invalid IL or missing references) //IL_10e1: Unknown result type (might be due to invalid IL or missing references) //IL_10e6: Unknown result type (might be due to invalid IL or missing references) //IL_10f2: Unknown result type (might be due to invalid IL or missing references) //IL_3cd2: Unknown result type (might be due to invalid IL or missing references) //IL_3cd8: Unknown result type (might be due to invalid IL or missing references) //IL_3cdd: Unknown result type (might be due to invalid IL or missing references) //IL_3ce3: Unknown result type (might be due to invalid IL or missing references) //IL_3ce8: Unknown result type (might be due to invalid IL or missing references) //IL_3cee: Unknown result type (might be due to invalid IL or missing references) //IL_3cf8: Unknown result type (might be due to invalid IL or missing references) //IL_3cfd: Unknown result type (might be due to invalid IL or missing references) //IL_3d03: Unknown result type (might be due to invalid IL or missing references) //IL_3d08: Unknown result type (might be due to invalid IL or missing references) //IL_3d0e: Unknown result type (might be due to invalid IL or missing references) //IL_3d18: Unknown result type (might be due to invalid IL or missing references) //IL_3d1d: Unknown result type (might be due to invalid IL or missing references) //IL_3d28: Unknown result type (might be due to invalid IL or missing references) //IL_3d2e: Unknown result type (might be due to invalid IL or missing references) //IL_3d33: Unknown result type (might be due to invalid IL or missing references) //IL_3d39: Unknown result type (might be due to invalid IL or missing references) //IL_3d3e: Unknown result type (might be due to invalid IL or missing references) //IL_3d44: Unknown result type (might be due to invalid IL or missing references) //IL_3d4e: Unknown result type (might be due to invalid IL or missing references) //IL_3d53: Unknown result type (might be due to invalid IL or missing references) //IL_3d59: Unknown result type (might be due to invalid IL or missing references) //IL_3d5e: Unknown result type (might be due to invalid IL or missing references) //IL_3d64: Unknown result type (might be due to invalid IL or missing references) //IL_3d6e: Unknown result type (might be due to invalid IL or missing references) //IL_3d73: Unknown result type (might be due to invalid IL or missing references) //IL_3d7f: Unknown result type (might be due to invalid IL or missing references) //IL_26ef: Unknown result type (might be due to invalid IL or missing references) //IL_26f5: Unknown result type (might be due to invalid IL or missing references) //IL_26fa: Unknown result type (might be due to invalid IL or missing references) //IL_2700: Unknown result type (might be due to invalid IL or missing references) //IL_2705: Unknown result type (might be due to invalid IL or missing references) //IL_270b: Unknown result type (might be due to invalid IL or missing references) //IL_2715: Unknown result type (might be due to invalid IL or missing references) //IL_271a: Unknown result type (might be due to invalid IL or missing references) //IL_2720: Unknown result type (might be due to invalid IL or missing references) //IL_2725: Unknown result type (might be due to invalid IL or missing references) //IL_272b: Unknown result type (might be due to invalid IL or missing references) //IL_2735: Unknown result type (might be due to invalid IL or missing references) //IL_273a: Unknown result type (might be due to invalid IL or missing references) //IL_2745: Unknown result type (might be due to invalid IL or missing references) //IL_274b: Unknown result type (might be due to invalid IL or missing references) //IL_2750: Unknown result type (might be due to invalid IL or missing references) //IL_2756: Unknown result type (might be due to invalid IL or missing references) //IL_275b: Unknown result type (might be due to invalid IL or missing references) //IL_2761: Unknown result type (might be due to invalid IL or missing references) //IL_276b: Unknown result type (might be due to invalid IL or missing references) //IL_2770: Unknown result type (might be due to invalid IL or missing references) //IL_2776: Unknown result type (might be due to invalid IL or missing references) //IL_277b: Unknown result type (might be due to invalid IL or missing references) //IL_2781: Unknown result type (might be due to invalid IL or missing references) //IL_278b: Unknown result type (might be due to invalid IL or missing references) //IL_2790: Unknown result type (might be due to invalid IL or missing references) //IL_279c: Unknown result type (might be due to invalid IL or missing references) //IL_110c: Unknown result type (might be due to invalid IL or missing references) //IL_1112: Unknown result type (might be due to invalid IL or missing references) //IL_1117: Unknown result type (might be due to invalid IL or missing references) //IL_111d: Unknown result type (might be due to invalid IL or missing references) //IL_1122: Unknown result type (might be due to invalid IL or missing references) //IL_1128: Unknown result type (might be due to invalid IL or missing references) //IL_1132: Unknown result type (might be due to invalid IL or missing references) //IL_1137: Unknown result type (might be due to invalid IL or missing references) //IL_113d: Unknown result type (might be due to invalid IL or missing references) //IL_1142: Unknown result type (might be due to invalid IL or missing references) //IL_114d: Unknown result type (might be due to invalid IL or missing references) //IL_1153: Unknown result type (might be due to invalid IL or missing references) //IL_1158: Unknown result type (might be due to invalid IL or missing references) //IL_115e: Unknown result type (might be due to invalid IL or missing references) //IL_1163: Unknown result type (might be due to invalid IL or missing references) //IL_1169: Unknown result type (might be due to invalid IL or missing references) //IL_1173: Unknown result type (might be due to invalid IL or missing references) //IL_1178: Unknown result type (might be due to invalid IL or missing references) //IL_117e: Unknown result type (might be due to invalid IL or missing references) //IL_1183: Unknown result type (might be due to invalid IL or missing references) //IL_118f: Unknown result type (might be due to invalid IL or missing references) //IL_3d99: Unknown result type (might be due to invalid IL or missing references) //IL_3d9f: Unknown result type (might be due to invalid IL or missing references) //IL_3da4: Unknown result type (might be due to invalid IL or missing references) //IL_3daa: Unknown result type (might be due to invalid IL or missing references) //IL_3daf: Unknown result type (might be due to invalid IL or missing references) //IL_3db5: Unknown result type (might be due to invalid IL or missing references) //IL_3dbf: Unknown result type (might be due to invalid IL or missing references) //IL_3dc4: Unknown result type (might be due to invalid IL or missing references) //IL_3dca: Unknown result type (might be due to invalid IL or missing references) //IL_3dcf: Unknown result type (might be due to invalid IL or missing references) //IL_3dd5: Unknown result type (might be due to invalid IL or missing references) //IL_3ddf: Unknown result type (might be due to invalid IL or missing references) //IL_3de4: Unknown result type (might be due to invalid IL or missing references) //IL_3def: Unknown result type (might be due to invalid IL or missing references) //IL_3df5: Unknown result type (might be due to invalid IL or missing references) //IL_3dfa: Unknown result type (might be due to invalid IL or missing references) //IL_3e00: Unknown result type (might be due to invalid IL or missing references) //IL_3e05: Unknown result type (might be due to invalid IL or missing references) //IL_3e0b: Unknown result type (might be due to invalid IL or missing references) //IL_3e15: Unknown result type (might be due to invalid IL or missing references) //IL_3e1a: Unknown result type (might be due to invalid IL or missing references) //IL_3e20: Unknown result type (might be due to invalid IL or missing references) //IL_3e25: Unknown result type (might be due to invalid IL or missing references) //IL_3e2b: Unknown result type (might be due to invalid IL or missing references) //IL_3e35: Unknown result type (might be due to invalid IL or missing references) //IL_3e3a: Unknown result type (might be due to invalid IL or missing references) //IL_3e46: Unknown result type (might be due to invalid IL or missing references) //IL_27b6: Unknown result type (might be due to invalid IL or missing references) //IL_27bc: Unknown result type (might be due to invalid IL or missing references) //IL_27c1: Unknown result type (might be due to invalid IL or missing references) //IL_27c7: Unknown result type (might be due to invalid IL or missing references) //IL_27cc: Unknown result type (might be due to invalid IL or missing references) //IL_27d2: Unknown result type (might be due to invalid IL or missing references) //IL_27dc: Unknown result type (might be due to invalid IL or missing references) //IL_27e1: Unknown result type (might be due to invalid IL or missing references) //IL_27e7: Unknown result type (might be due to invalid IL or missing references) //IL_27ec: Unknown result type (might be due to invalid IL or missing references) //IL_27f2: Unknown result type (might be due to invalid IL or missing references) //IL_27fc: Unknown result type (might be due to invalid IL or missing references) //IL_2801: Unknown result type (might be due to invalid IL or missing references) //IL_280c: Unknown result type (might be due to invalid IL or missing references) //IL_2812: Unknown result type (might be due to invalid IL or missing references) //IL_2817: Unknown result type (might be due to invalid IL or missing references) //IL_281d: Unknown result type (might be due to invalid IL or missing references) //IL_2822: Unknown result type (might be due to invalid IL or missing references) //IL_2828: Unknown result type (might be due to invalid IL or missing references) //IL_2832: Unknown result type (might be due to invalid IL or missing references) //IL_2837: Unknown result type (might be due to invalid IL or missing references) //IL_283d: Unknown result type (might be due to invalid IL or missing references) //IL_2842: Unknown result type (might be due to invalid IL or missing references) //IL_2848: Unknown result type (might be due to invalid IL or missing references) //IL_2852: Unknown result type (might be due to invalid IL or missing references) //IL_2857: Unknown result type (might be due to invalid IL or missing references) //IL_2863: Unknown result type (might be due to invalid IL or missing references) //IL_11a9: Unknown result type (might be due to invalid IL or missing references) //IL_11af: Unknown result type (might be due to invalid IL or missing references) //IL_11b4: Unknown result type (might be due to invalid IL or missing references) //IL_11ba: Unknown result type (might be due to invalid IL or missing references) //IL_11bf: Unknown result type (might be due to invalid IL or missing references) //IL_11c5: Unknown result type (might be due to invalid IL or missing references) //IL_11cf: Unknown result type (might be due to invalid IL or missing references) //IL_11d4: Unknown result type (might be due to invalid IL or missing references) //IL_11da: Unknown result type (might be due to invalid IL or missing references) //IL_11df: Unknown result type (might be due to invalid IL or missing references) //IL_11e5: Unknown result type (might be due to invalid IL or missing references) //IL_11ef: Unknown result type (might be due to invalid IL or missing references) //IL_11f4: Unknown result type (might be due to invalid IL or missing references) //IL_11ff: Unknown result type (might be due to invalid IL or missing references) //IL_1205: Unknown result type (might be due to invalid IL or missing references) //IL_120a: Unknown result type (might be due to invalid IL or missing references) //IL_1210: Unknown result type (might be due to invalid IL or missing references) //IL_1215: Unknown result type (might be due to invalid IL or missing references) //IL_121b: Unknown result type (might be due to invalid IL or missing references) //IL_1225: Unknown result type (might be due to invalid IL or missing references) //IL_122a: Unknown result type (might be due to invalid IL or missing references) //IL_1230: Unknown result type (might be due to invalid IL or missing references) //IL_1235: Unknown result type (might be due to invalid IL or missing references) //IL_123b: Unknown result type (might be due to invalid IL or missing references) //IL_1245: Unknown result type (might be due to invalid IL or missing references) //IL_124a: Unknown result type (might be due to invalid IL or missing references) //IL_1256: Unknown result type (might be due to invalid IL or missing references) //IL_3e60: Unknown result type (might be due to invalid IL or missing references) //IL_3e66: Unknown result type (might be due to invalid IL or missing references) //IL_3e6b: Unknown result type (might be due to invalid IL or missing references) //IL_3e71: Unknown result type (might be due to invalid IL or missing references) //IL_3e76: Unknown result type (might be due to invalid IL or missing references) //IL_3e7c: Unknown result type (might be due to invalid IL or missing references) //IL_3e86: Unknown result type (might be due to invalid IL or missing references) //IL_3e8b: Unknown result type (might be due to invalid IL or missing references) //IL_3e91: Unknown result type (might be due to invalid IL or missing references) //IL_3e96: Unknown result type (might be due to invalid IL or missing references) //IL_3e9c: Unknown result type (might be due to invalid IL or missing references) //IL_3ea6: Unknown result type (might be due to invalid IL or missing references) //IL_3eab: Unknown result type (might be due to invalid IL or missing references) //IL_3eb6: Unknown result type (might be due to invalid IL or missing references) //IL_3ebc: Unknown result type (might be due to invalid IL or missing references) //IL_3ec1: Unknown result type (might be due to invalid IL or missing references) //IL_3ec7: Unknown result type (might be due to invalid IL or missing references) //IL_3ecc: Unknown result type (might be due to invalid IL or missing references) //IL_3ed2: Unknown result type (might be due to invalid IL or missing references) //IL_3edc: Unknown result type (might be due to invalid IL or missing references) //IL_3ee1: Unknown result type (might be due to invalid IL or missing references) //IL_3ee7: Unknown result type (might be due to invalid IL or missing references) //IL_3eec: Unknown result type (might be due to invalid IL or missing references) //IL_3ef2: Unknown result type (might be due to invalid IL or missing references) //IL_3efc: Unknown result type (might be due to invalid IL or missing references) //IL_3f01: Unknown result type (might be due to invalid IL or missing references) //IL_3f0d: Unknown result type (might be due to invalid IL or missing references) //IL_287d: Unknown result type (might be due to invalid IL or missing references) //IL_2883: Unknown result type (might be due to invalid IL or missing references) //IL_2888: Unknown result type (might be due to invalid IL or missing references) //IL_288e: Unknown result type (might be due to invalid IL or missing references) //IL_2893: Unknown result type (might be due to invalid IL or missing references) //IL_2899: Unknown result type (might be due to invalid IL or missing references) //IL_28a3: Unknown result type (might be due to invalid IL or missing references) //IL_28a8: Unknown result type (might be due to invalid IL or missing references) //IL_28ae: Unknown result type (might be due to invalid IL or missing references) //IL_28b3: Unknown result type (might be due to invalid IL or missing references) //IL_28be: Unknown result type (might be due to invalid IL or missing references) //IL_28c4: Unknown result type (might be due to invalid IL or missing references) //IL_28c9: Unknown result type (might be due to invalid IL or missing references) //IL_28cf: Unknown result type (might be due to invalid IL or missing references) //IL_28d4: Unknown result type (might be due to invalid IL or missing references) //IL_28da: Unknown result type (might be due to invalid IL or missing references) //IL_28e4: Unknown result type (might be due to invalid IL or missing references) //IL_28e9: Unknown result type (might be due to invalid IL or missing references) //IL_28ef: Unknown result type (might be due to invalid IL or missing references) //IL_28f4: Unknown result type (might be due to invalid IL or missing references) //IL_2900: Unknown result type (might be due to invalid IL or missing references) //IL_1270: Unknown result type (might be due to invalid IL or missing references) //IL_1276: Unknown result type (might be due to invalid IL or missing references) //IL_127b: Unknown result type (might be due to invalid IL or missing references) //IL_1281: Unknown result type (might be due to invalid IL or missing references) //IL_1286: Unknown result type (might be due to invalid IL or missing references) //IL_128c: Unknown result type (might be due to invalid IL or missing references) //IL_1296: Unknown result type (might be due to invalid IL or missing references) //IL_129b: Unknown result type (might be due to invalid IL or missing references) //IL_12a1: Unknown result type (might be due to invalid IL or missing references) //IL_12a6: Unknown result type (might be due to invalid IL or missing references) //IL_12ac: Unknown result type (might be due to invalid IL or missing references) //IL_12b6: Unknown result type (might be due to invalid IL or missing references) //IL_12bb: Unknown result type (might be due to invalid IL or missing references) //IL_12c6: Unknown result type (might be due to invalid IL or missing references) //IL_12cc: Unknown result type (might be due to invalid IL or missing references) //IL_12d1: Unknown result type (might be due to invalid IL or missing references) //IL_12d7: Unknown result type (might be due to invalid IL or missing references) //IL_12dc: Unknown result type (might be due to invalid IL or missing references) //IL_12e2: Unknown result type (might be due to invalid IL or missing references) //IL_12ec: Unknown result type (might be due to invalid IL or missing references) //IL_12f1: Unknown result type (might be due to invalid IL or missing references) //IL_12f7: Unknown result type (might be due to invalid IL or missing references) //IL_12fc: Unknown result type (might be due to invalid IL or missing references) //IL_1302: Unknown result type (might be due to invalid IL or missing references) //IL_130c: Unknown result type (might be due to invalid IL or missing references) //IL_1311: Unknown result type (might be due to invalid IL or missing references) //IL_131d: Unknown result type (might be due to invalid IL or missing references) //IL_3f27: Unknown result type (might be due to invalid IL or missing references) //IL_3f2d: Unknown result type (might be due to invalid IL or missing references) //IL_3f32: Unknown result type (might be due to invalid IL or missing references) //IL_3f38: Unknown result type (might be due to invalid IL or missing references) //IL_3f3d: Unknown result type (might be due to invalid IL or missing references) //IL_3f43: Unknown result type (might be due to invalid IL or missing references) //IL_3f4d: Unknown result type (might be due to invalid IL or missing references) //IL_3f52: Unknown result type (might be due to invalid IL or missing references) //IL_3f58: Unknown result type (might be due to invalid IL or missing references) //IL_3f5d: Unknown result type (might be due to invalid IL or missing references) //IL_3f63: Unknown result type (might be due to invalid IL or missing references) //IL_3f6d: Unknown result type (might be due to invalid IL or missing references) //IL_3f72: Unknown result type (might be due to invalid IL or missing references) //IL_3f7d: Unknown result type (might be due to invalid IL or missing references) //IL_3f83: Unknown result type (might be due to invalid IL or missing references) //IL_3f88: Unknown result type (might be due to invalid IL or missing references) //IL_3f8e: Unknown result type (might be due to invalid IL or missing references) //IL_3f93: Unknown result type (might be due to invalid IL or missing references) //IL_3f99: Unknown result type (might be due to invalid IL or missing references) //IL_3fa3: Unknown result type (might be due to invalid IL or missing references) //IL_3fa8: Unknown result type (might be due to invalid IL or missing references) //IL_3fae: Unknown result type (might be due to invalid IL or missing references) //IL_3fb3: Unknown result type (might be due to invalid IL or missing references) //IL_3fb9: Unknown result type (might be due to invalid IL or missing references) //IL_3fc3: Unknown result type (might be due to invalid IL or missing references) //IL_3fc8: Unknown result type (might be due to invalid IL or missing references) //IL_3fd4: Unknown result type (might be due to invalid IL or missing references) //IL_291a: Unknown result type (might be due to invalid IL or missing references) //IL_2920: Unknown result type (might be due to invalid IL or missing references) //IL_2925: Unknown result type (might be due to invalid IL or missing references) //IL_292b: Unknown result type (might be due to invalid IL or missing references) //IL_2930: Unknown result type (might be due to invalid IL or missing references) //IL_2936: Unknown result type (might be due to invalid IL or missing references) //IL_2940: Unknown result type (might be due to invalid IL or missing references) //IL_2945: Unknown result type (might be due to invalid IL or missing references) //IL_294b: Unknown result type (might be due to invalid IL or missing references) //IL_2950: Unknown result type (might be due to invalid IL or missing references) //IL_2956: Unknown result type (might be due to invalid IL or missing references) //IL_2960: Unknown result type (might be due to invalid IL or missing references) //IL_2965: Unknown result type (might be due to invalid IL or missing references) //IL_2970: Unknown result type (might be due to invalid IL or missing references) //IL_2976: Unknown result type (might be due to invalid IL or missing references) //IL_297b: Unknown result type (might be due to invalid IL or missing references) //IL_2981: Unknown result type (might be due to invalid IL or missing references) //IL_2986: Unknown result type (might be due to invalid IL or missing references) //IL_298c: Unknown result type (might be due to invalid IL or missing references) //IL_2996: Unknown result type (might be due to invalid IL or missing references) //IL_299b: Unknown result type (might be due to invalid IL or missing references) //IL_29a1: Unknown result type (might be due to invalid IL or missing references) //IL_29a6: Unknown result type (might be due to invalid IL or missing references) //IL_29ac: Unknown result type (might be due to invalid IL or missing references) //IL_29b6: Unknown result type (might be due to invalid IL or missing references) //IL_29bb: Unknown result type (might be due to invalid IL or missing references) //IL_29c7: Unknown result type (might be due to invalid IL or missing references) //IL_1337: Unknown result type (might be due to invalid IL or missing references) //IL_133d: Unknown result type (might be due to invalid IL or missing references) //IL_1342: Unknown result type (might be due to invalid IL or missing references) //IL_1348: Unknown result type (might be due to invalid IL or missing references) //IL_134d: Unknown result type (might be due to invalid IL or missing references) //IL_1353: Unknown result type (might be due to invalid IL or missing references) //IL_135d: Unknown result type (might be due to invalid IL or missing references) //IL_1362: Unknown result type (might be due to invalid IL or missing references) //IL_1368: Unknown result type (might be due to invalid IL or missing references) //IL_136d: Unknown result type (might be due to invalid IL or missing references) //IL_1373: Unknown result type (might be due to invalid IL or missing references) //IL_137d: Unknown result type (might be due to invalid IL or missing references) //IL_1382: Unknown result type (might be due to invalid IL or missing references) //IL_138d: Unknown result type (might be due to invalid IL or missing references) //IL_1393: Unknown result type (might be due to invalid IL or missing references) //IL_1398: Unknown result type (might be due to invalid IL or missing references) //IL_139e: Unknown result type (might be due to invalid IL or missing references) //IL_13a3: Unknown result type (might be due to invalid IL or missing references) //IL_13a9: Unknown result type (might be due to invalid IL or missing references) //IL_13b3: Unknown result type (might be due to invalid IL or missing references) //IL_13b8: Unknown result type (might be due to invalid IL or missing references) //IL_13be: Unknown result type (might be due to invalid IL or missing references) //IL_13c3: Unknown result type (might be due to invalid IL or missing references) //IL_13c9: Unknown result type (might be due to invalid IL or missing references) //IL_13d3: Unknown result type (might be due to invalid IL or missing references) //IL_13d8: Unknown result type (might be due to invalid IL or missing references) //IL_13e4: Unknown result type (might be due to invalid IL or missing references) //IL_3fee: Unknown result type (might be due to invalid IL or missing references) //IL_3ff4: Unknown result type (might be due to invalid IL or missing references) //IL_3ff9: Unknown result type (might be due to invalid IL or missing references) //IL_3fff: Unknown result type (might be due to invalid IL or missing references) //IL_4004: Unknown result type (might be due to invalid IL or missing references) //IL_400a: Unknown result type (might be due to invalid IL or missing references) //IL_4014: Unknown result type (might be due to invalid IL or missing references) //IL_4019: Unknown result type (might be due to invalid IL or missing references) //IL_401f: Unknown result type (might be due to invalid IL or missing references) //IL_4024: Unknown result type (might be due to invalid IL or missing references) //IL_402f: Unknown result type (might be due to invalid IL or missing references) //IL_4035: Unknown result type (might be due to invalid IL or missing references) //IL_403a: Unknown result type (might be due to invalid IL or missing references) //IL_4040: Unknown result type (might be due to invalid IL or missing references) //IL_4045: Unknown result type (might be due to invalid IL or missing references) //IL_404b: Unknown result type (might be due to invalid IL or missing references) //IL_4055: Unknown result type (might be due to invalid IL or missing references) //IL_405a: Unknown result type (might be due to invalid IL or missing references) //IL_4060: Unknown result type (might be due to invalid IL or missing references) //IL_4065: Unknown result type (might be due to invalid IL or missing references) //IL_4071: Unknown result type (might be due to invalid IL or missing references) //IL_29e1: Unknown result type (might be due to invalid IL or missing references) //IL_29e7: Unknown result type (might be due to invalid IL or missing references) //IL_29ec: Unknown result type (might be due to invalid IL or missing references) //IL_29f2: Unknown result type (might be due to invalid IL or missing references) //IL_29f7: Unknown result type (might be due to invalid IL or missing references) //IL_29fd: Unknown result type (might be due to invalid IL or missing references) //IL_2a07: Unknown result type (might be due to invalid IL or missing references) //IL_2a0c: Unknown result type (might be due to invalid IL or missing references) //IL_2a12: Unknown result type (might be due to invalid IL or missing references) //IL_2a17: Unknown result type (might be due to invalid IL or missing references) //IL_2a1d: Unknown result type (might be due to invalid IL or missing references) //IL_2a27: Unknown result type (might be due to invalid IL or missing references) //IL_2a2c: Unknown result type (might be due to invalid IL or missing references) //IL_2a37: Unknown result type (might be due to invalid IL or missing references) //IL_2a3d: Unknown result type (might be due to invalid IL or missing references) //IL_2a42: Unknown result type (might be due to invalid IL or missing references) //IL_2a48: Unknown result type (might be due to invalid IL or missing references) //IL_2a4d: Unknown result type (might be due to invalid IL or missing references) //IL_2a53: Unknown result type (might be due to invalid IL or missing references) //IL_2a5d: Unknown result type (might be due to invalid IL or missing references) //IL_2a62: Unknown result type (might be due to invalid IL or missing references) //IL_2a68: Unknown result type (might be due to invalid IL or missing references) //IL_2a6d: Unknown result type (might be due to invalid IL or missing references) //IL_2a73: Unknown result type (might be due to invalid IL or missing references) //IL_2a7d: Unknown result type (might be due to invalid IL or missing references) //IL_2a82: Unknown result type (might be due to invalid IL or missing references) //IL_2a8e: Unknown result type (might be due to invalid IL or missing references) //IL_13fe: Unknown result type (might be due to invalid IL or missing references) //IL_1404: Unknown result type (might be due to invalid IL or missing references) //IL_1409: Unknown result type (might be due to invalid IL or missing references) //IL_140f: Unknown result type (might be due to invalid IL or missing references) //IL_1414: Unknown result type (might be due to invalid IL or missing references) //IL_141a: Unknown result type (might be due to invalid IL or missing references) //IL_1424: Unknown result type (might be due to invalid IL or missing references) //IL_1429: Unknown result type (might be due to invalid IL or missing references) //IL_142f: Unknown result type (might be due to invalid IL or missing references) //IL_1434: Unknown result type (might be due to invalid IL or missing references) //IL_143a: Unknown result type (might be due to invalid IL or missing references) //IL_1444: Unknown result type (might be due to invalid IL or missing references) //IL_1449: Unknown result type (might be due to invalid IL or missing references) //IL_1454: Unknown result type (might be due to invalid IL or missing references) //IL_145a: Unknown result type (might be due to invalid IL or missing references) //IL_145f: Unknown result type (might be due to invalid IL or missing references) //IL_1465: Unknown result type (might be due to invalid IL or missing references) //IL_146a: Unknown result type (might be due to invalid IL or missing references) //IL_1470: Unknown result type (might be due to invalid IL or missing references) //IL_147a: Unknown result type (might be due to invalid IL or missing references) //IL_147f: Unknown result type (might be due to invalid IL or missing references) //IL_1485: Unknown result type (might be due to invalid IL or missing references) //IL_148a: Unknown result type (might be due to invalid IL or missing references) //IL_1490: Unknown result type (might be due to invalid IL or missing references) //IL_149a: Unknown result type (might be due to invalid IL or missing references) //IL_149f: Unknown result type (might be due to invalid IL or missing references) //IL_14ab: Unknown result type (might be due to invalid IL or missing references) //IL_408b: Unknown result type (might be due to invalid IL or missing references) //IL_4091: Unknown result type (might be due to invalid IL or missing references) //IL_4096: Unknown result type (might be due to invalid IL or missing references) //IL_409c: Unknown result type (might be due to invalid IL or missing references) //IL_40a1: Unknown result type (might be due to invalid IL or missing references) //IL_40a7: Unknown result type (might be due to invalid IL or missing references) //IL_40b1: Unknown result type (might be due to invalid IL or missing references) //IL_40b6: Unknown result type (might be due to invalid IL or missing references) //IL_40bc: Unknown result type (might be due to invalid IL or missing references) //IL_40c1: Unknown result type (might be due to invalid IL or missing references) //IL_40c7: Unknown result type (might be due to invalid IL or missing references) //IL_40d1: Unknown result type (might be due to invalid IL or missing references) //IL_40d6: Unknown result type (might be due to invalid IL or missing references) //IL_40e1: Unknown result type (might be due to invalid IL or missing references) //IL_40e7: Unknown result type (might be due to invalid IL or missing references) //IL_40ec: Unknown result type (might be due to invalid IL or missing references) //IL_40f2: Unknown result type (might be due to invalid IL or missing references) //IL_40f7: Unknown result type (might be due to invalid IL or missing references) //IL_40fd: Unknown result type (might be due to invalid IL or missing references) //IL_4107: Unknown result type (might be due to invalid IL or missing references) //IL_410c: Unknown result type (might be due to invalid IL or missing references) //IL_4112: Unknown result type (might be due to invalid IL or missing references) //IL_4117: Unknown result type (might be due to invalid IL or missing references) //IL_411d: Unknown result type (might be due to invalid IL or missing references) //IL_4127: Unknown result type (might be due to invalid IL or missing references) //IL_412c: Unknown result type (might be due to invalid IL or missing references) //IL_4138: Unknown result type (might be due to invalid IL or missing references) //IL_2aa8: Unknown result type (might be due to invalid IL or missing references) //IL_2aae: Unknown result type (might be due to invalid IL or missing references) //IL_2ab3: Unknown result type (might be due to invalid IL or missing references) //IL_2ab9: Unknown result type (might be due to invalid IL or missing references) //IL_2abe: Unknown result type (might be due to invalid IL or missing references) //IL_2ac4: Unknown result type (might be due to invalid IL or missing references) //IL_2ace: Unknown result type (might be due to invalid IL or missing references) //IL_2ad3: Unknown result type (might be due to invalid IL or missing references) //IL_2ad9: Unknown result type (might be due to invalid IL or missing references) //IL_2ade: Unknown result type (might be due to invalid IL or missing references) //IL_2ae4: Unknown result type (might be due to invalid IL or missing references) //IL_2aee: Unknown result type (might be due to invalid IL or missing references) //IL_2af3: Unknown result type (might be due to invalid IL or missing references) //IL_2afe: Unknown result type (might be due to invalid IL or missing references) //IL_2b04: Unknown result type (might be due to invalid IL or missing references) //IL_2b09: Unknown result type (might be due to invalid IL or missing references) //IL_2b0f: Unknown result type (might be due to invalid IL or missing references) //IL_2b14: Unknown result type (might be due to invalid IL or missing references) //IL_2b1a: Unknown result type (might be due to invalid IL or missing references) //IL_2b24: Unknown result type (might be due to invalid IL or missing references) //IL_2b29: Unknown result type (might be due to invalid IL or missing references) //IL_2b2f: Unknown result type (might be due to invalid IL or missing references) //IL_2b34: Unknown result type (might be due to invalid IL or missing references) //IL_2b3a: Unknown result type (might be due to invalid IL or missing references) //IL_2b44: Unknown result type (might be due to invalid IL or missing references) //IL_2b49: Unknown result type (might be due to invalid IL or missing references) //IL_2b55: Unknown result type (might be due to invalid IL or missing references) //IL_14c5: Unknown result type (might be due to invalid IL or missing references) //IL_14cb: Unknown result type (might be due to invalid IL or missing references) //IL_14d0: Unknown result type (might be due to invalid IL or missing references) //IL_14d6: Unknown result type (might be due to invalid IL or missing references) //IL_14db: Unknown result type (might be due to invalid IL or missing references) //IL_14e1: Unknown result type (might be due to invalid IL or missing references) //IL_14eb: Unknown result type (might be due to invalid IL or missing references) //IL_14f0: Unknown result type (might be due to invalid IL or missing references) //IL_14f6: Unknown result type (might be due to invalid IL or missing references) //IL_14fb: Unknown result type (might be due to invalid IL or missing references) //IL_1501: Unknown result type (might be due to invalid IL or missing references) //IL_150b: Unknown result type (might be due to invalid IL or missing references) //IL_1510: Unknown result type (might be due to invalid IL or missing references) //IL_151b: Unknown result type (might be due to invalid IL or missing references) //IL_1521: Unknown result type (might be due to invalid IL or missing references) //IL_1526: Unknown result type (might be due to invalid IL or missing references) //IL_152c: Unknown result type (might be due to invalid IL or missing references) //IL_1531: Unknown result type (might be due to invalid IL or missing references) //IL_1537: Unknown result type (might be due to invalid IL or missing references) //IL_1541: Unknown result type (might be due to invalid IL or missing references) //IL_1546: Unknown result type (might be due to invalid IL or missing references) //IL_154c: Unknown result type (might be due to invalid IL or missing references) //IL_1551: Unknown result type (might be due to invalid IL or missing references) //IL_1557: Unknown result type (might be due to invalid IL or missing references) //IL_1561: Unknown result type (might be due to invalid IL or missing references) //IL_1566: Unknown result type (might be due to invalid IL or missing references) //IL_1572: Unknown result type (might be due to invalid IL or missing references) //IL_4152: Unknown result type (might be due to invalid IL or missing references) //IL_4158: Unknown result type (might be due to invalid IL or missing references) //IL_415d: Unknown result type (might be due to invalid IL or missing references) //IL_4163: Unknown result type (might be due to invalid IL or missing references) //IL_4168: Unknown result type (might be due to invalid IL or missing references) //IL_416e: Unknown result type (might be due to invalid IL or missing references) //IL_4178: Unknown result type (might be due to invalid IL or missing references) //IL_417d: Unknown result type (might be due to invalid IL or missing references) //IL_4183: Unknown result type (might be due to invalid IL or missing references) //IL_4188: Unknown result type (might be due to invalid IL or missing references) //IL_418e: Unknown result type (might be due to invalid IL or missing references) //IL_4198: Unknown result type (might be due to invalid IL or missing references) //IL_419d: Unknown result type (might be due to invalid IL or missing references) //IL_41a8: Unknown result type (might be due to invalid IL or missing references) //IL_41ae: Unknown result type (might be due to invalid IL or missing references) //IL_41b3: Unknown result type (might be due to invalid IL or missing references) //IL_41b9: Unknown result type (might be due to invalid IL or missing references) //IL_41be: Unknown result type (might be due to invalid IL or missing references) //IL_41c4: Unknown result type (might be due to invalid IL or missing references) //IL_41ce: Unknown result type (might be due to invalid IL or missing references) //IL_41d3: Unknown result type (might be due to invalid IL or missing references) //IL_41d9: Unknown result type (might be due to invalid IL or missing references) //IL_41de: Unknown result type (might be due to invalid IL or missing references) //IL_41e4: Unknown result type (might be due to invalid IL or missing references) //IL_41ee: Unknown result type (might be due to invalid IL or missing references) //IL_41f3: Unknown result type (might be due to invalid IL or missing references) //IL_41ff: Unknown result type (might be due to invalid IL or missing references) //IL_2b6f: Unknown result type (might be due to invalid IL or missing references) //IL_2b75: Unknown result type (might be due to invalid IL or missing references) //IL_2b7a: Unknown result type (might be due to invalid IL or missing references) //IL_2b80: Unknown result type (might be due to invalid IL or missing references) //IL_2b85: Unknown result type (might be due to invalid IL or missing references) //IL_2b8b: Unknown result type (might be due to invalid IL or missing references) //IL_2b95: Unknown result type (might be due to invalid IL or missing references) //IL_2b9a: Unknown result type (might be due to invalid IL or missing references) //IL_2ba0: Unknown result type (might be due to invalid IL or missing references) //IL_2ba5: Unknown result type (might be due to invalid IL or missing references) //IL_2bab: Unknown result type (might be due to invalid IL or missing references) //IL_2bb5: Unknown result type (might be due to invalid IL or missing references) //IL_2bba: Unknown result type (might be due to invalid IL or missing references) //IL_2bc5: Unknown result type (might be due to invalid IL or missing references) //IL_2bcb: Unknown result type (might be due to invalid IL or missing references) //IL_2bd0: Unknown result type (might be due to invalid IL or missing references) //IL_2bd6: Unknown result type (might be due to invalid IL or missing references) //IL_2bdb: Unknown result type (might be due to invalid IL or missing references) //IL_2be1: Unknown result type (might be due to invalid IL or missing references) //IL_2beb: Unknown result type (might be due to invalid IL or missing references) //IL_2bf0: Unknown result type (might be due to invalid IL or missing references) //IL_2bf6: Unknown result type (might be due to invalid IL or missing references) //IL_2bfb: Unknown result type (might be due to invalid IL or missing references) //IL_2c01: Unknown result type (might be due to invalid IL or missing references) //IL_2c0b: Unknown result type (might be due to invalid IL or missing references) //IL_2c10: Unknown result type (might be due to invalid IL or missing references) //IL_2c1c: Unknown result type (might be due to invalid IL or missing references) //IL_158c: Unknown result type (might be due to invalid IL or missing references) //IL_1592: Unknown result type (might be due to invalid IL or missing references) //IL_1597: Unknown result type (might be due to invalid IL or missing references) //IL_159d: Unknown result type (might be due to invalid IL or missing references) //IL_15a2: Unknown result type (might be due to invalid IL or missing references) //IL_15a8: Unknown result type (might be due to invalid IL or missing references) //IL_15b2: Unknown result type (might be due to invalid IL or missing references) //IL_15b7: Unknown result type (might be due to invalid IL or missing references) //IL_15bd: Unknown result type (might be due to invalid IL or missing references) //IL_15c2: Unknown result type (might be due to invalid IL or missing references) //IL_15c8: Unknown result type (might be due to invalid IL or missing references) //IL_15d2: Unknown result type (might be due to invalid IL or missing references) //IL_15d7: Unknown result type (might be due to invalid IL or missing references) //IL_15e2: Unknown result type (might be due to invalid IL or missing references) //IL_15e8: Unknown result type (might be due to invalid IL or missing references) //IL_15ed: Unknown result type (might be due to invalid IL or missing references) //IL_15f3: Unknown result type (might be due to invalid IL or missing references) //IL_15f8: Unknown result type (might be due to invalid IL or missing references) //IL_15fe: Unknown result type (might be due to invalid IL or missing references) //IL_1608: Unknown result type (might be due to invalid IL or missing references) //IL_160d: Unknown result type (might be due to invalid IL or missing references) //IL_1613: Unknown result type (might be due to invalid IL or missing references) //IL_1618: Unknown result type (might be due to invalid IL or missing references) //IL_161e: Unknown result type (might be due to invalid IL or missing references) //IL_1628: Unknown result type (might be due to invalid IL or missing references) //IL_162d: Unknown result type (might be due to invalid IL or missing references) //IL_1639: Unknown result type (might be due to invalid IL or missing references) //IL_4219: Unknown result type (might be due to invalid IL or missing references) //IL_421f: Unknown result type (might be due to invalid IL or missing references) //IL_4224: Unknown result type (might be due to invalid IL or missing references) //IL_422a: Unknown result type (might be due to invalid IL or missing references) //IL_422f: Unknown result type (might be due to invalid IL or missing references) //IL_4235: Unknown result type (might be due to invalid IL or missing references) //IL_423f: Unknown result type (might be due to invalid IL or missing references) //IL_4244: Unknown result type (might be due to invalid IL or missing references) //IL_424a: Unknown result type (might be due to invalid IL or missing references) //IL_424f: Unknown result type (might be due to invalid IL or missing references) //IL_4255: Unknown result type (might be due to invalid IL or missing references) //IL_425f: Unknown result type (might be due to invalid IL or missing references) //IL_4264: Unknown result type (might be due to invalid IL or missing references) //IL_426f: Unknown result type (might be due to invalid IL or missing references) //IL_4275: Unknown result type (might be due to invalid IL or missing references) //IL_427a: Unknown result type (might be due to invalid IL or missing references) //IL_4280: Unknown result type (might be due to invalid IL or missing references) //IL_4285: Unknown result type (might be due to invalid IL or missing references) //IL_428b: Unknown result type (might be due to invalid IL or missing references) //IL_4295: Unknown result type (might be due to invalid IL or missing references) //IL_429a: Unknown result type (might be due to invalid IL or missing references) //IL_42a0: Unknown result type (might be due to invalid IL or missing references) //IL_42a5: Unknown result type (might be due to invalid IL or missing references) //IL_42ab: Unknown result type (might be due to invalid IL or missing references) //IL_42b5: Unknown result type (might be due to invalid IL or missing references) //IL_42ba: Unknown result type (might be due to invalid IL or missing references) //IL_42c6: Unknown result type (might be due to invalid IL or missing references) //IL_2c36: Unknown result type (might be due to invalid IL or missing references) //IL_2c3c: Unknown result type (might be due to invalid IL or missing references) //IL_2c41: Unknown result type (might be due to invalid IL or missing references) //IL_2c47: Unknown result type (might be due to invalid IL or missing references) //IL_2c4c: Unknown result type (might be due to invalid IL or missing references) //IL_2c52: Unknown result type (might be due to invalid IL or missing references) //IL_2c5c: Unknown result type (might be due to invalid IL or missing references) //IL_2c61: Unknown result type (might be due to invalid IL or missing references) //IL_2c67: Unknown result type (might be due to invalid IL or missing references) //IL_2c6c: Unknown result type (might be due to invalid IL or missing references) //IL_2c72: Unknown result type (might be due to invalid IL or missing references) //IL_2c7c: Unknown result type (might be due to invalid IL or missing references) //IL_2c81: Unknown result type (might be due to invalid IL or missing references) //IL_2c8c: Unknown result type (might be due to invalid IL or missing references) //IL_2c92: Unknown result type (might be due to invalid IL or missing references) //IL_2c97: Unknown result type (might be due to invalid IL or missing references) //IL_2c9d: Unknown result type (might be due to invalid IL or missing references) //IL_2ca2: Unknown result type (might be due to invalid IL or missing references) //IL_2ca8: Unknown result type (might be due to invalid IL or missing references) //IL_2cb2: Unknown result type (might be due to invalid IL or missing references) //IL_2cb7: Unknown result type (might be due to invalid IL or missing references) //IL_2cbd: Unknown result type (might be due to invalid IL or missing references) //IL_2cc2: Unknown result type (might be due to invalid IL or missing references) //IL_2cc8: Unknown result type (might be due to invalid IL or missing references) //IL_2cd2: Unknown result type (might be due to invalid IL or missing references) //IL_2cd7: Unknown result type (might be due to invalid IL or missing references) //IL_2ce3: Unknown result type (might be due to invalid IL or missing references) //IL_1653: Unknown result type (might be due to invalid IL or missing references) //IL_1659: Unknown result type (might be due to invalid IL or missing references) //IL_165e: Unknown result type (might be due to invalid IL or missing references) //IL_1664: Unknown result type (might be due to invalid IL or missing references) //IL_1669: Unknown result type (might be due to invalid IL or missing references) //IL_166f: Unknown result type (might be due to invalid IL or missing references) //IL_1679: Unknown result type (might be due to invalid IL or missing references) //IL_167e: Unknown result type (might be due to invalid IL or missing references) //IL_1684: Unknown result type (might be due to invalid IL or missing references) //IL_1689: Unknown result type (might be due to invalid IL or missing references) //IL_168f: Unknown result type (might be due to invalid IL or missing references) //IL_1699: Unknown result type (might be due to invalid IL or missing references) //IL_169e: Unknown result type (might be due to invalid IL or missing references) //IL_16a9: Unknown result type (might be due to invalid IL or missing references) //IL_16af: Unknown result type (might be due to invalid IL or missing references) //IL_16b4: Unknown result type (might be due to invalid IL or missing references) //IL_16ba: Unknown result type (might be due to invalid IL or missing references) //IL_16bf: Unknown result type (might be due to invalid IL or missing references) //IL_16c5: Unknown result type (might be due to invalid IL or missing references) //IL_16cf: Unknown result type (might be due to invalid IL or missing references) //IL_16d4: Unknown result type (might be due to invalid IL or missing references) //IL_16da: Unknown result type (might be due to invalid IL or missing references) //IL_16df: Unknown result type (might be due to invalid IL or missing references) //IL_16e5: Unknown result type (might be due to invalid IL or missing references) //IL_16ef: Unknown result type (might be due to invalid IL or missing references) //IL_16f4: Unknown result type (might be due to invalid IL or missing references) //IL_1700: Unknown result type (might be due to invalid IL or missing references) //IL_42e0: Unknown result type (might be due to invalid IL or missing references) //IL_42e6: Unknown result type (might be due to invalid IL or missing references) //IL_42eb: Unknown result type (might be due to invalid IL or missing references) //IL_42f1: Unknown result type (might be due to invalid IL or missing references) //IL_42f6: Unknown result type (might be due to invalid IL or missing references) //IL_42fc: Unknown result type (might be due to invalid IL or missing references) //IL_4306: Unknown result type (might be due to invalid IL or missing references) //IL_430b: Unknown result type (might be due to invalid IL or missing references) //IL_4311: Unknown result type (might be due to invalid IL or missing references) //IL_4316: Unknown result type (might be due to invalid IL or missing references) //IL_431c: Unknown result type (might be due to invalid IL or missing references) //IL_4326: Unknown result type (might be due to invalid IL or missing references) //IL_432b: Unknown result type (might be due to invalid IL or missing references) //IL_4336: Unknown result type (might be due to invalid IL or missing references) //IL_433c: Unknown result type (might be due to invalid IL or missing references) //IL_4341: Unknown result type (might be due to invalid IL or missing references) //IL_4347: Unknown result type (might be due to invalid IL or missing references) //IL_434c: Unknown result type (might be due to invalid IL or missing references) //IL_4352: Unknown result type (might be due to invalid IL or missing references) //IL_435c: Unknown result type (might be due to invalid IL or missing references) //IL_4361: Unknown result type (might be due to invalid IL or missing references) //IL_4367: Unknown result type (might be due to invalid IL or missing references) //IL_436c: Unknown result type (might be due to invalid IL or missing references) //IL_4372: Unknown result type (might be due to invalid IL or missing references) //IL_437c: Unknown result type (might be due to invalid IL or missing references) //IL_4381: Unknown result type (might be due to invalid IL or missing references) //IL_438d: Unknown result type (might be due to invalid IL or missing references) //IL_2cfd: Unknown result type (might be due to invalid IL or missing references) //IL_2d03: Unknown result type (might be due to invalid IL or missing references) //IL_2d08: Unknown result type (might be due to invalid IL or missing references) //IL_2d0e: Unknown result type (might be due to invalid IL or missing references) //IL_2d13: Unknown result type (might be due to invalid IL or missing references) //IL_2d19: Unknown result type (might be due to invalid IL or missing references) //IL_2d23: Unknown result type (might be due to invalid IL or missing references) //IL_2d28: Unknown result type (might be due to invalid IL or missing references) //IL_2d2e: Unknown result type (might be due to invalid IL or missing references) //IL_2d33: Unknown result type (might be due to invalid IL or missing references) //IL_2d39: Unknown result type (might be due to invalid IL or missing references) //IL_2d43: Unknown result type (might be due to invalid IL or missing references) //IL_2d48: Unknown result type (might be due to invalid IL or missing references) //IL_2d53: Unknown result type (might be due to invalid IL or missing references) //IL_2d59: Unknown result type (might be due to invalid IL or missing references) //IL_2d5e: Unknown result type (might be due to invalid IL or missing references) //IL_2d64: Unknown result type (might be due to invalid IL or missing references) //IL_2d69: Unknown result type (might be due to invalid IL or missing references) //IL_2d6f: Unknown result type (might be due to invalid IL or missing references) //IL_2d79: Unknown result type (might be due to invalid IL or missing references) //IL_2d7e: Unknown result type (might be due to invalid IL or missing references) //IL_2d84: Unknown result type (might be due to invalid IL or missing references) //IL_2d89: Unknown result type (might be due to invalid IL or missing references) //IL_2d8f: Unknown result type (might be due to invalid IL or missing references) //IL_2d99: Unknown result type (might be due to invalid IL or missing references) //IL_2d9e: Unknown result type (might be due to invalid IL or missing references) //IL_2daa: Unknown result type (might be due to invalid IL or missing references) //IL_43a7: Unknown result type (might be due to invalid IL or missing references) //IL_43ad: Unknown result type (might be due to invalid IL or missing references) //IL_43b2: Unknown result type (might be due to invalid IL or missing references) //IL_43b8: Unknown result type (might be due to invalid IL or missing references) //IL_43bd: Unknown result type (might be due to invalid IL or missing references) //IL_43c3: Unknown result type (might be due to invalid IL or missing references) //IL_43cd: Unknown result type (might be due to invalid IL or missing references) //IL_43d2: Unknown result type (might be due to invalid IL or missing references) //IL_43d8: Unknown result type (might be due to invalid IL or missing references) //IL_43dd: Unknown result type (might be due to invalid IL or missing references) //IL_43e3: Unknown result type (might be due to invalid IL or missing references) //IL_43ed: Unknown result type (might be due to invalid IL or missing references) //IL_43f2: Unknown result type (might be due to invalid IL or missing references) //IL_43fd: Unknown result type (might be due to invalid IL or missing references) //IL_4403: Unknown result type (might be due to invalid IL or missing references) //IL_4408: Unknown result type (might be due to invalid IL or missing references) //IL_440e: Unknown result type (might be due to invalid IL or missing references) //IL_4413: Unknown result type (might be due to invalid IL or missing references) //IL_4419: Unknown result type (might be due to invalid IL or missing references) //IL_4423: Unknown result type (might be due to invalid IL or missing references) //IL_4428: Unknown result type (might be due to invalid IL or missing references) //IL_442e: Unknown result type (might be due to invalid IL or missing references) //IL_4433: Unknown result type (might be due to invalid IL or missing references) //IL_4439: Unknown result type (might be due to invalid IL or missing references) //IL_4443: Unknown result type (might be due to invalid IL or missing references) //IL_4448: Unknown result type (might be due to invalid IL or missing references) //IL_4454: Unknown result type (might be due to invalid IL or missing references) //IL_2dc4: Unknown result type (might be due to invalid IL or missing references) //IL_2dca: Unknown result type (might be due to invalid IL or missing references) //IL_2dcf: Unknown result type (might be due to invalid IL or missing references) //IL_2dd5: Unknown result type (might be due to invalid IL or missing references) //IL_2dda: Unknown result type (might be due to invalid IL or missing references) //IL_2de0: Unknown result type (might be due to invalid IL or missing references) //IL_2dea: Unknown result type (might be due to invalid IL or missing references) //IL_2def: Unknown result type (might be due to invalid IL or missing references) //IL_2df5: Unknown result type (might be due to invalid IL or missing references) //IL_2dfa: Unknown result type (might be due to invalid IL or missing references) //IL_2e00: Unknown result type (might be due to invalid IL or missing references) //IL_2e0a: Unknown result type (might be due to invalid IL or missing references) //IL_2e0f: Unknown result type (might be due to invalid IL or missing references) //IL_2e1a: Unknown result type (might be due to invalid IL or missing references) //IL_2e20: Unknown result type (might be due to invalid IL or missing references) //IL_2e25: Unknown result type (might be due to invalid IL or missing references) //IL_2e2b: Unknown result type (might be due to invalid IL or missing references) //IL_2e30: Unknown result type (might be due to invalid IL or missing references) //IL_2e36: Unknown result type (might be due to invalid IL or missing references) //IL_2e40: Unknown result type (might be due to invalid IL or missing references) //IL_2e45: Unknown result type (might be due to invalid IL or missing references) //IL_2e4b: Unknown result type (might be due to invalid IL or missing references) //IL_2e50: Unknown result type (might be due to invalid IL or missing references) //IL_2e56: Unknown result type (might be due to invalid IL or missing references) //IL_2e60: Unknown result type (might be due to invalid IL or missing references) //IL_2e65: Unknown result type (might be due to invalid IL or missing references) //IL_2e71: Unknown result type (might be due to invalid IL or missing references) //IL_446e: Unknown result type (might be due to invalid IL or missing references) //IL_4474: Unknown result type (might be due to invalid IL or missing references) //IL_4479: Unknown result type (might be due to invalid IL or missing references) //IL_447f: Unknown result type (might be due to invalid IL or missing references) //IL_4484: Unknown result type (might be due to invalid IL or missing references) //IL_448a: Unknown result type (might be due to invalid IL or missing references) //IL_4494: Unknown result type (might be due to invalid IL or missing references) //IL_4499: Unknown result type (might be due to invalid IL or missing references) //IL_449f: Unknown result type (might be due to invalid IL or missing references) //IL_44a4: Unknown result type (might be due to invalid IL or missing references) //IL_44aa: Unknown result type (might be due to invalid IL or missing references) //IL_44b4: Unknown result type (might be due to invalid IL or missing references) //IL_44b9: Unknown result type (might be due to invalid IL or missing references) //IL_44c4: Unknown result type (might be due to invalid IL or missing references) //IL_44ca: Unknown result type (might be due to invalid IL or missing references) //IL_44cf: Unknown result type (might be due to invalid IL or missing references) //IL_44d5: Unknown result type (might be due to invalid IL or missing references) //IL_44da: Unknown result type (might be due to invalid IL or missing references) //IL_44e0: Unknown result type (might be due to invalid IL or missing references) //IL_44ea: Unknown result type (might be due to invalid IL or missing references) //IL_44ef: Unknown result type (might be due to invalid IL or missing references) //IL_44f5: Unknown result type (might be due to invalid IL or missing references) //IL_44fa: Unknown result type (might be due to invalid IL or missing references) //IL_4500: Unknown result type (might be due to invalid IL or missing references) //IL_450a: Unknown result type (might be due to invalid IL or missing references) //IL_450f: Unknown result type (might be due to invalid IL or missing references) //IL_451b: Unknown result type (might be due to invalid IL or missing references) //IL_4535: Unknown result type (might be due to invalid IL or missing references) //IL_453b: Unknown result type (might be due to invalid IL or missing references) //IL_4540: Unknown result type (might be due to invalid IL or missing references) //IL_4546: Unknown result type (might be due to invalid IL or missing references) //IL_454b: Unknown result type (might be due to invalid IL or missing references) //IL_4551: Unknown result type (might be due to invalid IL or missing references) //IL_455b: Unknown result type (might be due to invalid IL or missing references) //IL_4560: Unknown result type (might be due to invalid IL or missing references) //IL_4566: Unknown result type (might be due to invalid IL or missing references) //IL_456b: Unknown result type (might be due to invalid IL or missing references) //IL_4571: Unknown result type (might be due to invalid IL or missing references) //IL_457b: Unknown result type (might be due to invalid IL or missing references) //IL_4580: Unknown result type (might be due to invalid IL or missing references) //IL_458b: Unknown result type (might be due to invalid IL or missing references) //IL_4591: Unknown result type (might be due to invalid IL or missing references) //IL_4596: Unknown result type (might be due to invalid IL or missing references) //IL_459c: Unknown result type (might be due to invalid IL or missing references) //IL_45a1: Unknown result type (might be due to invalid IL or missing references) //IL_45a7: Unknown result type (might be due to invalid IL or missing references) //IL_45b1: Unknown result type (might be due to invalid IL or missing references) //IL_45b6: Unknown result type (might be due to invalid IL or missing references) //IL_45bc: Unknown result type (might be due to invalid IL or missing references) //IL_45c1: Unknown result type (might be due to invalid IL or missing references) //IL_45c7: Unknown result type (might be due to invalid IL or missing references) //IL_45d1: Unknown result type (might be due to invalid IL or missing references) //IL_45d6: Unknown result type (might be due to invalid IL or missing references) //IL_45e2: Unknown result type (might be due to invalid IL or missing references) if (switching || !ledgeSwitchingDetectors.allowLedgeSwitching || !grabbedOn) { return; } if (!Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + minDistFromGroundHeight2 + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.585f - rightWidth * 1.33f - firstSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.585f - rightWidth * 1.33f - firstSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.585f - rightWidth * 1.33f - firstSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.585f - rightWidth * 1.33f - firstSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.585f - ledgeSwitchFirstWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.585f - ledgeSwitchFirstWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.585f - ledgeSwitchFirstWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.585f - ledgeSwitchFirstWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 0.375f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 0.75f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 1.125f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f - ledgeSwitchFirstWidthBack, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f - ledgeSwitchFirstWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !l1FirstForwardSurfaceDetectorsHit && !l1FirstForwardHit && l1SecondForwardHit) { l1SecondForwardTimer += 0.01f; if (l1SecondForwardTimer > 0.1f || rotTimer > 0f) { l1SecondForwardClear = true; } else { l1SecondForwardClear = false; } } else { l1SecondForwardTimer = 0f; l1SecondForwardClear = false; } if (!Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + minDistFromGroundHeight2 + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.585f - rightWidth * 1.33f - secondSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.585f - rightWidth * 1.33f - secondSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.585f - rightWidth * 1.33f - secondSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.585f - rightWidth * 1.33f - secondSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.585f - ledgeSwitchSecondWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.585f - ledgeSwitchSecondWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.585f - ledgeSwitchSecondWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.585f - ledgeSwitchSecondWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 0.375f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 0.75f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 1.125f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f - ledgeSwitchSecondWidthBack, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f - ledgeSwitchSecondWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !l2FirstForwardSurfaceDetectorsHit && !l2FirstForwardHit && l2SecondForwardHit) { l2SecondForwardTimer += 0.01f; if (l2SecondForwardTimer > 0.1f || rotTimer > 0f) { l2SecondForwardClear = true; } else { l2SecondForwardClear = false; } } else { l2SecondForwardTimer = 0f; l2SecondForwardClear = false; } if (!Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + minDistFromGroundHeight2 + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.585f - rightWidth * 1.33f - thirdSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.585f - rightWidth * 1.33f - thirdSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.585f - rightWidth * 1.33f - thirdSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.585f - rightWidth * 1.33f - thirdSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.585f - ledgeSwitchThirdWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.585f - ledgeSwitchThirdWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.585f - ledgeSwitchThirdWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.585f - ledgeSwitchThirdWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 0.375f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 0.75f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 1.125f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.585f - ledgeSwitchThirdWidthBack, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.585f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.585f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.585f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.585f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.585f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.585f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.585f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.585f - ledgeSwitchThirdWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.585f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.585f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.585f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.585f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.585f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.585f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.585f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !l3FirstForwardSurfaceDetectorsHit && !l3FirstForwardHit && l3SecondForwardHit) { l3SecondForwardTimer += 0.01f; if (l3SecondForwardTimer > 0.1f || rotTimer > 0f) { l3SecondForwardClear = true; } else { l3SecondForwardClear = false; } } else { l3SecondForwardTimer = 0f; l3SecondForwardClear = false; } } private void LedgeSwitchingClearFirstFrontLeft() { //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_0054: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0069: Unknown result type (might be due to invalid IL or missing references) //IL_006e: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_0084: Unknown result type (might be due to invalid IL or missing references) //IL_008f: Unknown result type (might be due to invalid IL or missing references) //IL_0095: Unknown result type (might be due to invalid IL or missing references) //IL_009a: Unknown result type (might be due to invalid IL or missing references) //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_00aa: Unknown result type (might be due to invalid IL or missing references) //IL_00af: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) //IL_00ba: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00ca: Unknown result type (might be due to invalid IL or missing references) //IL_00cf: Unknown result type (might be due to invalid IL or missing references) //IL_00d5: Unknown result type (might be due to invalid IL or missing references) //IL_00df: Unknown result type (might be due to invalid IL or missing references) //IL_00e4: Unknown result type (might be due to invalid IL or missing references) //IL_00ea: Unknown result type (might be due to invalid IL or missing references) //IL_00ef: Unknown result type (might be due to invalid IL or missing references) //IL_00f5: Unknown result type (might be due to invalid IL or missing references) //IL_00fa: Unknown result type (might be due to invalid IL or missing references) //IL_0106: Unknown result type (might be due to invalid IL or missing references) //IL_0120: Unknown result type (might be due to invalid IL or missing references) //IL_0126: Unknown result type (might be due to invalid IL or missing references) //IL_012b: Unknown result type (might be due to invalid IL or missing references) //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_0136: Unknown result type (might be due to invalid IL or missing references) //IL_013c: Unknown result type (might be due to invalid IL or missing references) //IL_0146: Unknown result type (might be due to invalid IL or missing references) //IL_014b: Unknown result type (might be due to invalid IL or missing references) //IL_0151: Unknown result type (might be due to invalid IL or missing references) //IL_0156: Unknown result type (might be due to invalid IL or missing references) //IL_015c: Unknown result type (might be due to invalid IL or missing references) //IL_0166: Unknown result type (might be due to invalid IL or missing references) //IL_016b: Unknown result type (might be due to invalid IL or missing references) //IL_0171: Unknown result type (might be due to invalid IL or missing references) //IL_017b: Unknown result type (might be due to invalid IL or missing references) //IL_0180: Unknown result type (might be due to invalid IL or missing references) //IL_0186: Unknown result type (might be due to invalid IL or missing references) //IL_018b: Unknown result type (might be due to invalid IL or missing references) //IL_0191: Unknown result type (might be due to invalid IL or missing references) //IL_0196: Unknown result type (might be due to invalid IL or missing references) //IL_01a1: Unknown result type (might be due to invalid IL or missing references) //IL_01a7: Unknown result type (might be due to invalid IL or missing references) //IL_01ac: Unknown result type (might be due to invalid IL or missing references) //IL_01b2: Unknown result type (might be due to invalid IL or missing references) //IL_01bc: Unknown result type (might be due to invalid IL or missing references) //IL_01c1: Unknown result type (might be due to invalid IL or missing references) //IL_01c7: Unknown result type (might be due to invalid IL or missing references) //IL_01d1: Unknown result type (might be due to invalid IL or missing references) //IL_01d6: Unknown result type (might be due to invalid IL or missing references) //IL_01dc: Unknown result type (might be due to invalid IL or missing references) //IL_01e1: Unknown result type (might be due to invalid IL or missing references) //IL_01e7: Unknown result type (might be due to invalid IL or missing references) //IL_01ec: Unknown result type (might be due to invalid IL or missing references) //IL_01f2: Unknown result type (might be due to invalid IL or missing references) //IL_01fc: Unknown result type (might be due to invalid IL or missing references) //IL_0201: Unknown result type (might be due to invalid IL or missing references) //IL_0207: Unknown result type (might be due to invalid IL or missing references) //IL_0211: Unknown result type (might be due to invalid IL or missing references) //IL_0216: Unknown result type (might be due to invalid IL or missing references) //IL_021c: Unknown result type (might be due to invalid IL or missing references) //IL_0221: Unknown result type (might be due to invalid IL or missing references) //IL_0227: Unknown result type (might be due to invalid IL or missing references) //IL_022c: Unknown result type (might be due to invalid IL or missing references) //IL_0238: Unknown result type (might be due to invalid IL or missing references) //IL_165a: Unknown result type (might be due to invalid IL or missing references) //IL_1660: Unknown result type (might be due to invalid IL or missing references) //IL_1665: Unknown result type (might be due to invalid IL or missing references) //IL_166b: Unknown result type (might be due to invalid IL or missing references) //IL_1670: Unknown result type (might be due to invalid IL or missing references) //IL_1676: Unknown result type (might be due to invalid IL or missing references) //IL_1680: Unknown result type (might be due to invalid IL or missing references) //IL_1685: Unknown result type (might be due to invalid IL or missing references) //IL_168b: Unknown result type (might be due to invalid IL or missing references) //IL_1695: Unknown result type (might be due to invalid IL or missing references) //IL_169a: Unknown result type (might be due to invalid IL or missing references) //IL_16a0: Unknown result type (might be due to invalid IL or missing references) //IL_16a5: Unknown result type (might be due to invalid IL or missing references) //IL_16ab: Unknown result type (might be due to invalid IL or missing references) //IL_16b0: Unknown result type (might be due to invalid IL or missing references) //IL_16bb: Unknown result type (might be due to invalid IL or missing references) //IL_16c1: Unknown result type (might be due to invalid IL or missing references) //IL_16c6: Unknown result type (might be due to invalid IL or missing references) //IL_16cc: Unknown result type (might be due to invalid IL or missing references) //IL_16d6: Unknown result type (might be due to invalid IL or missing references) //IL_16db: Unknown result type (might be due to invalid IL or missing references) //IL_16e1: Unknown result type (might be due to invalid IL or missing references) //IL_16e6: Unknown result type (might be due to invalid IL or missing references) //IL_16ec: Unknown result type (might be due to invalid IL or missing references) //IL_16f6: Unknown result type (might be due to invalid IL or missing references) //IL_16fb: Unknown result type (might be due to invalid IL or missing references) //IL_1701: Unknown result type (might be due to invalid IL or missing references) //IL_170b: Unknown result type (might be due to invalid IL or missing references) //IL_1710: Unknown result type (might be due to invalid IL or missing references) //IL_1716: Unknown result type (might be due to invalid IL or missing references) //IL_171b: Unknown result type (might be due to invalid IL or missing references) //IL_1721: Unknown result type (might be due to invalid IL or missing references) //IL_1726: Unknown result type (might be due to invalid IL or missing references) //IL_1732: Unknown result type (might be due to invalid IL or missing references) //IL_0252: Unknown result type (might be due to invalid IL or missing references) //IL_0258: Unknown result type (might be due to invalid IL or missing references) //IL_025d: Unknown result type (might be due to invalid IL or missing references) //IL_0263: Unknown result type (might be due to invalid IL or missing references) //IL_0268: Unknown result type (might be due to invalid IL or missing references) //IL_026e: Unknown result type (might be due to invalid IL or missing references) //IL_0278: Unknown result type (might be due to invalid IL or missing references) //IL_027d: Unknown result type (might be due to invalid IL or missing references) //IL_0283: Unknown result type (might be due to invalid IL or missing references) //IL_0288: Unknown result type (might be due to invalid IL or missing references) //IL_028e: Unknown result type (might be due to invalid IL or missing references) //IL_0298: Unknown result type (might be due to invalid IL or missing references) //IL_029d: Unknown result type (might be due to invalid IL or missing references) //IL_02a3: Unknown result type (might be due to invalid IL or missing references) //IL_02ad: Unknown result type (might be due to invalid IL or missing references) //IL_02b2: Unknown result type (might be due to invalid IL or missing references) //IL_02b8: Unknown result type (might be due to invalid IL or missing references) //IL_02bd: Unknown result type (might be due to invalid IL or missing references) //IL_02c3: Unknown result type (might be due to invalid IL or missing references) //IL_02c8: Unknown result type (might be due to invalid IL or missing references) //IL_02d3: Unknown result type (might be due to invalid IL or missing references) //IL_02d9: Unknown result type (might be due to invalid IL or missing references) //IL_02de: Unknown result type (might be due to invalid IL or missing references) //IL_02e4: Unknown result type (might be due to invalid IL or missing references) //IL_02ee: Unknown result type (might be due to invalid IL or missing references) //IL_02f3: Unknown result type (might be due to invalid IL or missing references) //IL_02f9: Unknown result type (might be due to invalid IL or missing references) //IL_0303: Unknown result type (might be due to invalid IL or missing references) //IL_0308: Unknown result type (might be due to invalid IL or missing references) //IL_030e: Unknown result type (might be due to invalid IL or missing references) //IL_0313: Unknown result type (might be due to invalid IL or missing references) //IL_0319: Unknown result type (might be due to invalid IL or missing references) //IL_031e: Unknown result type (might be due to invalid IL or missing references) //IL_0324: Unknown result type (might be due to invalid IL or missing references) //IL_032e: Unknown result type (might be due to invalid IL or missing references) //IL_0333: Unknown result type (might be due to invalid IL or missing references) //IL_0339: Unknown result type (might be due to invalid IL or missing references) //IL_0343: Unknown result type (might be due to invalid IL or missing references) //IL_0348: Unknown result type (might be due to invalid IL or missing references) //IL_034e: Unknown result type (might be due to invalid IL or missing references) //IL_0353: Unknown result type (might be due to invalid IL or missing references) //IL_0359: Unknown result type (might be due to invalid IL or missing references) //IL_035e: Unknown result type (might be due to invalid IL or missing references) //IL_036a: Unknown result type (might be due to invalid IL or missing references) //IL_174c: Unknown result type (might be due to invalid IL or missing references) //IL_1752: Unknown result type (might be due to invalid IL or missing references) //IL_1757: Unknown result type (might be due to invalid IL or missing references) //IL_175d: Unknown result type (might be due to invalid IL or missing references) //IL_1762: Unknown result type (might be due to invalid IL or missing references) //IL_1768: Unknown result type (might be due to invalid IL or missing references) //IL_1772: Unknown result type (might be due to invalid IL or missing references) //IL_1777: Unknown result type (might be due to invalid IL or missing references) //IL_177d: Unknown result type (might be due to invalid IL or missing references) //IL_1782: Unknown result type (might be due to invalid IL or missing references) //IL_1788: Unknown result type (might be due to invalid IL or missing references) //IL_1792: Unknown result type (might be due to invalid IL or missing references) //IL_1797: Unknown result type (might be due to invalid IL or missing references) //IL_179d: Unknown result type (might be due to invalid IL or missing references) //IL_17a7: Unknown result type (might be due to invalid IL or missing references) //IL_17ac: Unknown result type (might be due to invalid IL or missing references) //IL_17b2: Unknown result type (might be due to invalid IL or missing references) //IL_17b7: Unknown result type (might be due to invalid IL or missing references) //IL_17bd: Unknown result type (might be due to invalid IL or missing references) //IL_17c2: Unknown result type (might be due to invalid IL or missing references) //IL_17cd: Unknown result type (might be due to invalid IL or missing references) //IL_17d3: Unknown result type (might be due to invalid IL or missing references) //IL_17d8: Unknown result type (might be due to invalid IL or missing references) //IL_17de: Unknown result type (might be due to invalid IL or missing references) //IL_17e8: Unknown result type (might be due to invalid IL or missing references) //IL_17ed: Unknown result type (might be due to invalid IL or missing references) //IL_17f3: Unknown result type (might be due to invalid IL or missing references) //IL_17fd: Unknown result type (might be due to invalid IL or missing references) //IL_1802: Unknown result type (might be due to invalid IL or missing references) //IL_1808: Unknown result type (might be due to invalid IL or missing references) //IL_180d: Unknown result type (might be due to invalid IL or missing references) //IL_1813: Unknown result type (might be due to invalid IL or missing references) //IL_1818: Unknown result type (might be due to invalid IL or missing references) //IL_181e: Unknown result type (might be due to invalid IL or missing references) //IL_1828: Unknown result type (might be due to invalid IL or missing references) //IL_182d: Unknown result type (might be due to invalid IL or missing references) //IL_1833: Unknown result type (might be due to invalid IL or missing references) //IL_183d: Unknown result type (might be due to invalid IL or missing references) //IL_1842: Unknown result type (might be due to invalid IL or missing references) //IL_1848: Unknown result type (might be due to invalid IL or missing references) //IL_184d: Unknown result type (might be due to invalid IL or missing references) //IL_1853: Unknown result type (might be due to invalid IL or missing references) //IL_1858: Unknown result type (might be due to invalid IL or missing references) //IL_1864: Unknown result type (might be due to invalid IL or missing references) //IL_0384: Unknown result type (might be due to invalid IL or missing references) //IL_038a: Unknown result type (might be due to invalid IL or missing references) //IL_038f: Unknown result type (might be due to invalid IL or missing references) //IL_039a: Unknown result type (might be due to invalid IL or missing references) //IL_03a0: Unknown result type (might be due to invalid IL or missing references) //IL_03a5: Unknown result type (might be due to invalid IL or missing references) //IL_03ab: Unknown result type (might be due to invalid IL or missing references) //IL_03b5: Unknown result type (might be due to invalid IL or missing references) //IL_03ba: Unknown result type (might be due to invalid IL or missing references) //IL_03c0: Unknown result type (might be due to invalid IL or missing references) //IL_03ca: Unknown result type (might be due to invalid IL or missing references) //IL_03cf: Unknown result type (might be due to invalid IL or missing references) //IL_03d5: Unknown result type (might be due to invalid IL or missing references) //IL_03da: Unknown result type (might be due to invalid IL or missing references) //IL_03e0: Unknown result type (might be due to invalid IL or missing references) //IL_03e5: Unknown result type (might be due to invalid IL or missing references) //IL_03fd: Unknown result type (might be due to invalid IL or missing references) //IL_0402: Unknown result type (might be due to invalid IL or missing references) //IL_041a: Unknown result type (might be due to invalid IL or missing references) //IL_0420: Unknown result type (might be due to invalid IL or missing references) //IL_042a: Unknown result type (might be due to invalid IL or missing references) //IL_042f: Unknown result type (might be due to invalid IL or missing references) //IL_0435: Unknown result type (might be due to invalid IL or missing references) //IL_043a: Unknown result type (might be due to invalid IL or missing references) //IL_0445: Unknown result type (might be due to invalid IL or missing references) //IL_044b: Unknown result type (might be due to invalid IL or missing references) //IL_0450: Unknown result type (might be due to invalid IL or missing references) //IL_045b: Unknown result type (might be due to invalid IL or missing references) //IL_0461: Unknown result type (might be due to invalid IL or missing references) //IL_0466: Unknown result type (might be due to invalid IL or missing references) //IL_046c: Unknown result type (might be due to invalid IL or missing references) //IL_0476: Unknown result type (might be due to invalid IL or missing references) //IL_047b: Unknown result type (might be due to invalid IL or missing references) //IL_0481: Unknown result type (might be due to invalid IL or missing references) //IL_048b: Unknown result type (might be due to invalid IL or missing references) //IL_0490: Unknown result type (might be due to invalid IL or missing references) //IL_0496: Unknown result type (might be due to invalid IL or missing references) //IL_049b: Unknown result type (might be due to invalid IL or missing references) //IL_04a1: Unknown result type (might be due to invalid IL or missing references) //IL_04a6: Unknown result type (might be due to invalid IL or missing references) //IL_04be: Unknown result type (might be due to invalid IL or missing references) //IL_04c3: Unknown result type (might be due to invalid IL or missing references) //IL_04db: Unknown result type (might be due to invalid IL or missing references) //IL_04e1: Unknown result type (might be due to invalid IL or missing references) //IL_04eb: Unknown result type (might be due to invalid IL or missing references) //IL_04f0: Unknown result type (might be due to invalid IL or missing references) //IL_04f6: Unknown result type (might be due to invalid IL or missing references) //IL_04fb: Unknown result type (might be due to invalid IL or missing references) //IL_0507: Unknown result type (might be due to invalid IL or missing references) //IL_2c86: Unknown result type (might be due to invalid IL or missing references) //IL_2c8c: Unknown result type (might be due to invalid IL or missing references) //IL_2c91: Unknown result type (might be due to invalid IL or missing references) //IL_2c97: Unknown result type (might be due to invalid IL or missing references) //IL_2c9c: Unknown result type (might be due to invalid IL or missing references) //IL_2ca2: Unknown result type (might be due to invalid IL or missing references) //IL_2cac: Unknown result type (might be due to invalid IL or missing references) //IL_2cb1: Unknown result type (might be due to invalid IL or missing references) //IL_2cb7: Unknown result type (might be due to invalid IL or missing references) //IL_2cc1: Unknown result type (might be due to invalid IL or missing references) //IL_2cc6: Unknown result type (might be due to invalid IL or missing references) //IL_2ccc: Unknown result type (might be due to invalid IL or missing references) //IL_2cd1: Unknown result type (might be due to invalid IL or missing references) //IL_2cd7: Unknown result type (might be due to invalid IL or missing references) //IL_2cdc: Unknown result type (might be due to invalid IL or missing references) //IL_2ce7: Unknown result type (might be due to invalid IL or missing references) //IL_2ced: Unknown result type (might be due to invalid IL or missing references) //IL_2cf2: Unknown result type (might be due to invalid IL or missing references) //IL_2cf8: Unknown result type (might be due to invalid IL or missing references) //IL_2d02: Unknown result type (might be due to invalid IL or missing references) //IL_2d07: Unknown result type (might be due to invalid IL or missing references) //IL_2d0d: Unknown result type (might be due to invalid IL or missing references) //IL_2d12: Unknown result type (might be due to invalid IL or missing references) //IL_2d18: Unknown result type (might be due to invalid IL or missing references) //IL_2d22: Unknown result type (might be due to invalid IL or missing references) //IL_2d27: Unknown result type (might be due to invalid IL or missing references) //IL_2d2d: Unknown result type (might be due to invalid IL or missing references) //IL_2d37: Unknown result type (might be due to invalid IL or missing references) //IL_2d3c: Unknown result type (might be due to invalid IL or missing references) //IL_2d42: Unknown result type (might be due to invalid IL or missing references) //IL_2d47: Unknown result type (might be due to invalid IL or missing references) //IL_2d4d: Unknown result type (might be due to invalid IL or missing references) //IL_2d52: Unknown result type (might be due to invalid IL or missing references) //IL_2d5e: Unknown result type (might be due to invalid IL or missing references) //IL_187e: Unknown result type (might be due to invalid IL or missing references) //IL_1884: Unknown result type (might be due to invalid IL or missing references) //IL_1889: Unknown result type (might be due to invalid IL or missing references) //IL_188f: Unknown result type (might be due to invalid IL or missing references) //IL_1894: Unknown result type (might be due to invalid IL or missing references) //IL_189a: Unknown result type (might be due to invalid IL or missing references) //IL_18a4: Unknown result type (might be due to invalid IL or missing references) //IL_18a9: Unknown result type (might be due to invalid IL or missing references) //IL_18af: Unknown result type (might be due to invalid IL or missing references) //IL_18b4: Unknown result type (might be due to invalid IL or missing references) //IL_18ba: Unknown result type (might be due to invalid IL or missing references) //IL_18c4: Unknown result type (might be due to invalid IL or missing references) //IL_18c9: Unknown result type (might be due to invalid IL or missing references) //IL_18cf: Unknown result type (might be due to invalid IL or missing references) //IL_18d9: Unknown result type (might be due to invalid IL or missing references) //IL_18de: Unknown result type (might be due to invalid IL or missing references) //IL_18e4: Unknown result type (might be due to invalid IL or missing references) //IL_18e9: Unknown result type (might be due to invalid IL or missing references) //IL_18ef: Unknown result type (might be due to invalid IL or missing references) //IL_18f4: Unknown result type (might be due to invalid IL or missing references) //IL_18ff: Unknown result type (might be due to invalid IL or missing references) //IL_1905: Unknown result type (might be due to invalid IL or missing references) //IL_190a: Unknown result type (might be due to invalid IL or missing references) //IL_1910: Unknown result type (might be due to invalid IL or missing references) //IL_191a: Unknown result type (might be due to invalid IL or missing references) //IL_191f: Unknown result type (might be due to invalid IL or missing references) //IL_1925: Unknown result type (might be due to invalid IL or missing references) //IL_192f: Unknown result type (might be due to invalid IL or missing references) //IL_1934: Unknown result type (might be due to invalid IL or missing references) //IL_193a: Unknown result type (might be due to invalid IL or missing references) //IL_193f: Unknown result type (might be due to invalid IL or missing references) //IL_1945: Unknown result type (might be due to invalid IL or missing references) //IL_194a: Unknown result type (might be due to invalid IL or missing references) //IL_1950: Unknown result type (might be due to invalid IL or missing references) //IL_195a: Unknown result type (might be due to invalid IL or missing references) //IL_195f: Unknown result type (might be due to invalid IL or missing references) //IL_1965: Unknown result type (might be due to invalid IL or missing references) //IL_196f: Unknown result type (might be due to invalid IL or missing references) //IL_1974: Unknown result type (might be due to invalid IL or missing references) //IL_197a: Unknown result type (might be due to invalid IL or missing references) //IL_197f: Unknown result type (might be due to invalid IL or missing references) //IL_1985: Unknown result type (might be due to invalid IL or missing references) //IL_198a: Unknown result type (might be due to invalid IL or missing references) //IL_1996: Unknown result type (might be due to invalid IL or missing references) //IL_0521: Unknown result type (might be due to invalid IL or missing references) //IL_0527: Unknown result type (might be due to invalid IL or missing references) //IL_052c: Unknown result type (might be due to invalid IL or missing references) //IL_0537: Unknown result type (might be due to invalid IL or missing references) //IL_053d: Unknown result type (might be due to invalid IL or missing references) //IL_0542: Unknown result type (might be due to invalid IL or missing references) //IL_0548: Unknown result type (might be due to invalid IL or missing references) //IL_0552: Unknown result type (might be due to invalid IL or missing references) //IL_0557: Unknown result type (might be due to invalid IL or missing references) //IL_055d: Unknown result type (might be due to invalid IL or missing references) //IL_0567: Unknown result type (might be due to invalid IL or missing references) //IL_056c: Unknown result type (might be due to invalid IL or missing references) //IL_0572: Unknown result type (might be due to invalid IL or missing references) //IL_0577: Unknown result type (might be due to invalid IL or missing references) //IL_057d: Unknown result type (might be due to invalid IL or missing references) //IL_0582: Unknown result type (might be due to invalid IL or missing references) //IL_059a: Unknown result type (might be due to invalid IL or missing references) //IL_059f: Unknown result type (might be due to invalid IL or missing references) //IL_05b7: Unknown result type (might be due to invalid IL or missing references) //IL_05bd: Unknown result type (might be due to invalid IL or missing references) //IL_05c7: Unknown result type (might be due to invalid IL or missing references) //IL_05cc: Unknown result type (might be due to invalid IL or missing references) //IL_05d2: Unknown result type (might be due to invalid IL or missing references) //IL_05d7: Unknown result type (might be due to invalid IL or missing references) //IL_05e2: Unknown result type (might be due to invalid IL or missing references) //IL_05e8: Unknown result type (might be due to invalid IL or missing references) //IL_05ed: Unknown result type (might be due to invalid IL or missing references) //IL_05f8: Unknown result type (might be due to invalid IL or missing references) //IL_05fe: Unknown result type (might be due to invalid IL or missing references) //IL_0603: Unknown result type (might be due to invalid IL or missing references) //IL_0609: Unknown result type (might be due to invalid IL or missing references) //IL_0613: Unknown result type (might be due to invalid IL or missing references) //IL_0618: Unknown result type (might be due to invalid IL or missing references) //IL_061e: Unknown result type (might be due to invalid IL or missing references) //IL_0628: Unknown result type (might be due to invalid IL or missing references) //IL_062d: Unknown result type (might be due to invalid IL or missing references) //IL_0633: Unknown result type (might be due to invalid IL or missing references) //IL_0638: Unknown result type (might be due to invalid IL or missing references) //IL_063e: Unknown result type (might be due to invalid IL or missing references) //IL_0643: Unknown result type (might be due to invalid IL or missing references) //IL_065b: Unknown result type (might be due to invalid IL or missing references) //IL_0660: Unknown result type (might be due to invalid IL or missing references) //IL_0678: Unknown result type (might be due to invalid IL or missing references) //IL_067e: Unknown result type (might be due to invalid IL or missing references) //IL_0688: Unknown result type (might be due to invalid IL or missing references) //IL_068d: Unknown result type (might be due to invalid IL or missing references) //IL_0693: Unknown result type (might be due to invalid IL or missing references) //IL_0698: Unknown result type (might be due to invalid IL or missing references) //IL_06a4: Unknown result type (might be due to invalid IL or missing references) //IL_2d78: Unknown result type (might be due to invalid IL or missing references) //IL_2d7e: Unknown result type (might be due to invalid IL or missing references) //IL_2d83: Unknown result type (might be due to invalid IL or missing references) //IL_2d89: Unknown result type (might be due to invalid IL or missing references) //IL_2d8e: Unknown result type (might be due to invalid IL or missing references) //IL_2d94: Unknown result type (might be due to invalid IL or missing references) //IL_2d9e: Unknown result type (might be due to invalid IL or missing references) //IL_2da3: Unknown result type (might be due to invalid IL or missing references) //IL_2da9: Unknown result type (might be due to invalid IL or missing references) //IL_2dae: Unknown result type (might be due to invalid IL or missing references) //IL_2db4: Unknown result type (might be due to invalid IL or missing references) //IL_2dbe: Unknown result type (might be due to invalid IL or missing references) //IL_2dc3: Unknown result type (might be due to invalid IL or missing references) //IL_2dc9: Unknown result type (might be due to invalid IL or missing references) //IL_2dd3: Unknown result type (might be due to invalid IL or missing references) //IL_2dd8: Unknown result type (might be due to invalid IL or missing references) //IL_2dde: Unknown result type (might be due to invalid IL or missing references) //IL_2de3: Unknown result type (might be due to invalid IL or missing references) //IL_2de9: Unknown result type (might be due to invalid IL or missing references) //IL_2dee: Unknown result type (might be due to invalid IL or missing references) //IL_2df9: Unknown result type (might be due to invalid IL or missing references) //IL_2dff: Unknown result type (might be due to invalid IL or missing references) //IL_2e04: Unknown result type (might be due to invalid IL or missing references) //IL_2e0a: Unknown result type (might be due to invalid IL or missing references) //IL_2e14: Unknown result type (might be due to invalid IL or missing references) //IL_2e19: Unknown result type (might be due to invalid IL or missing references) //IL_2e1f: Unknown result type (might be due to invalid IL or missing references) //IL_2e29: Unknown result type (might be due to invalid IL or missing references) //IL_2e2e: Unknown result type (might be due to invalid IL or missing references) //IL_2e34: Unknown result type (might be due to invalid IL or missing references) //IL_2e39: Unknown result type (might be due to invalid IL or missing references) //IL_2e3f: Unknown result type (might be due to invalid IL or missing references) //IL_2e44: Unknown result type (might be due to invalid IL or missing references) //IL_2e4a: Unknown result type (might be due to invalid IL or missing references) //IL_2e54: Unknown result type (might be due to invalid IL or missing references) //IL_2e59: Unknown result type (might be due to invalid IL or missing references) //IL_2e5f: Unknown result type (might be due to invalid IL or missing references) //IL_2e69: Unknown result type (might be due to invalid IL or missing references) //IL_2e6e: Unknown result type (might be due to invalid IL or missing references) //IL_2e74: Unknown result type (might be due to invalid IL or missing references) //IL_2e79: Unknown result type (might be due to invalid IL or missing references) //IL_2e7f: Unknown result type (might be due to invalid IL or missing references) //IL_2e84: Unknown result type (might be due to invalid IL or missing references) //IL_2e90: Unknown result type (might be due to invalid IL or missing references) //IL_19b0: Unknown result type (might be due to invalid IL or missing references) //IL_19b6: Unknown result type (might be due to invalid IL or missing references) //IL_19bb: Unknown result type (might be due to invalid IL or missing references) //IL_19c6: Unknown result type (might be due to invalid IL or missing references) //IL_19cc: Unknown result type (might be due to invalid IL or missing references) //IL_19d1: Unknown result type (might be due to invalid IL or missing references) //IL_19d7: Unknown result type (might be due to invalid IL or missing references) //IL_19e1: Unknown result type (might be due to invalid IL or missing references) //IL_19e6: Unknown result type (might be due to invalid IL or missing references) //IL_19ec: Unknown result type (might be due to invalid IL or missing references) //IL_19f6: Unknown result type (might be due to invalid IL or missing references) //IL_19fb: Unknown result type (might be due to invalid IL or missing references) //IL_1a01: Unknown result type (might be due to invalid IL or missing references) //IL_1a06: Unknown result type (might be due to invalid IL or missing references) //IL_1a0c: Unknown result type (might be due to invalid IL or missing references) //IL_1a11: Unknown result type (might be due to invalid IL or missing references) //IL_1a29: Unknown result type (might be due to invalid IL or missing references) //IL_1a2e: Unknown result type (might be due to invalid IL or missing references) //IL_1a46: Unknown result type (might be due to invalid IL or missing references) //IL_1a4c: Unknown result type (might be due to invalid IL or missing references) //IL_1a56: Unknown result type (might be due to invalid IL or missing references) //IL_1a5b: Unknown result type (might be due to invalid IL or missing references) //IL_1a61: Unknown result type (might be due to invalid IL or missing references) //IL_1a66: Unknown result type (might be due to invalid IL or missing references) //IL_1a71: Unknown result type (might be due to invalid IL or missing references) //IL_1a77: Unknown result type (might be due to invalid IL or missing references) //IL_1a7c: Unknown result type (might be due to invalid IL or missing references) //IL_1a87: Unknown result type (might be due to invalid IL or missing references) //IL_1a8d: Unknown result type (might be due to invalid IL or missing references) //IL_1a92: Unknown result type (might be due to invalid IL or missing references) //IL_1a98: Unknown result type (might be due to invalid IL or missing references) //IL_1aa2: Unknown result type (might be due to invalid IL or missing references) //IL_1aa7: Unknown result type (might be due to invalid IL or missing references) //IL_1aad: Unknown result type (might be due to invalid IL or missing references) //IL_1ab7: Unknown result type (might be due to invalid IL or missing references) //IL_1abc: Unknown result type (might be due to invalid IL or missing references) //IL_1ac2: Unknown result type (might be due to invalid IL or missing references) //IL_1ac7: Unknown result type (might be due to invalid IL or missing references) //IL_1acd: Unknown result type (might be due to invalid IL or missing references) //IL_1ad2: Unknown result type (might be due to invalid IL or missing references) //IL_1aea: Unknown result type (might be due to invalid IL or missing references) //IL_1aef: Unknown result type (might be due to invalid IL or missing references) //IL_1b07: Unknown result type (might be due to invalid IL or missing references) //IL_1b0d: Unknown result type (might be due to invalid IL or missing references) //IL_1b17: Unknown result type (might be due to invalid IL or missing references) //IL_1b1c: Unknown result type (might be due to invalid IL or missing references) //IL_1b22: Unknown result type (might be due to invalid IL or missing references) //IL_1b27: Unknown result type (might be due to invalid IL or missing references) //IL_1b33: Unknown result type (might be due to invalid IL or missing references) //IL_06be: Unknown result type (might be due to invalid IL or missing references) //IL_06c4: Unknown result type (might be due to invalid IL or missing references) //IL_06c9: Unknown result type (might be due to invalid IL or missing references) //IL_06cf: Unknown result type (might be due to invalid IL or missing references) //IL_06d9: Unknown result type (might be due to invalid IL or missing references) //IL_06de: Unknown result type (might be due to invalid IL or missing references) //IL_06e4: Unknown result type (might be due to invalid IL or missing references) //IL_06e9: Unknown result type (might be due to invalid IL or missing references) //IL_06ef: Unknown result type (might be due to invalid IL or missing references) //IL_06f9: Unknown result type (might be due to invalid IL or missing references) //IL_06fe: Unknown result type (might be due to invalid IL or missing references) //IL_0704: Unknown result type (might be due to invalid IL or missing references) //IL_0709: Unknown result type (might be due to invalid IL or missing references) //IL_0714: Unknown result type (might be due to invalid IL or missing references) //IL_071a: Unknown result type (might be due to invalid IL or missing references) //IL_071f: Unknown result type (might be due to invalid IL or missing references) //IL_0725: Unknown result type (might be due to invalid IL or missing references) //IL_072f: Unknown result type (might be due to invalid IL or missing references) //IL_0734: Unknown result type (might be due to invalid IL or missing references) //IL_073a: Unknown result type (might be due to invalid IL or missing references) //IL_073f: Unknown result type (might be due to invalid IL or missing references) //IL_0745: Unknown result type (might be due to invalid IL or missing references) //IL_074f: Unknown result type (might be due to invalid IL or missing references) //IL_0754: Unknown result type (might be due to invalid IL or missing references) //IL_075a: Unknown result type (might be due to invalid IL or missing references) //IL_075f: Unknown result type (might be due to invalid IL or missing references) //IL_076b: Unknown result type (might be due to invalid IL or missing references) //IL_2eaa: Unknown result type (might be due to invalid IL or missing references) //IL_2eb0: Unknown result type (might be due to invalid IL or missing references) //IL_2eb5: Unknown result type (might be due to invalid IL or missing references) //IL_2ebb: Unknown result type (might be due to invalid IL or missing references) //IL_2ec0: Unknown result type (might be due to invalid IL or missing references) //IL_2ec6: Unknown result type (might be due to invalid IL or missing references) //IL_2ed0: Unknown result type (might be due to invalid IL or missing references) //IL_2ed5: Unknown result type (might be due to invalid IL or missing references) //IL_2edb: Unknown result type (might be due to invalid IL or missing references) //IL_2ee0: Unknown result type (might be due to invalid IL or missing references) //IL_2ee6: Unknown result type (might be due to invalid IL or missing references) //IL_2ef0: Unknown result type (might be due to invalid IL or missing references) //IL_2ef5: Unknown result type (might be due to invalid IL or missing references) //IL_2efb: Unknown result type (might be due to invalid IL or missing references) //IL_2f05: Unknown result type (might be due to invalid IL or missing references) //IL_2f0a: Unknown result type (might be due to invalid IL or missing references) //IL_2f10: Unknown result type (might be due to invalid IL or missing references) //IL_2f15: Unknown result type (might be due to invalid IL or missing references) //IL_2f1b: Unknown result type (might be due to invalid IL or missing references) //IL_2f20: Unknown result type (might be due to invalid IL or missing references) //IL_2f2b: Unknown result type (might be due to invalid IL or missing references) //IL_2f31: Unknown result type (might be due to invalid IL or missing references) //IL_2f36: Unknown result type (might be due to invalid IL or missing references) //IL_2f3c: Unknown result type (might be due to invalid IL or missing references) //IL_2f46: Unknown result type (might be due to invalid IL or missing references) //IL_2f4b: Unknown result type (might be due to invalid IL or missing references) //IL_2f51: Unknown result type (might be due to invalid IL or missing references) //IL_2f5b: Unknown result type (might be due to invalid IL or missing references) //IL_2f60: Unknown result type (might be due to invalid IL or missing references) //IL_2f66: Unknown result type (might be due to invalid IL or missing references) //IL_2f6b: Unknown result type (might be due to invalid IL or missing references) //IL_2f71: Unknown result type (might be due to invalid IL or missing references) //IL_2f76: Unknown result type (might be due to invalid IL or missing references) //IL_2f7c: Unknown result type (might be due to invalid IL or missing references) //IL_2f86: Unknown result type (might be due to invalid IL or missing references) //IL_2f8b: Unknown result type (might be due to invalid IL or missing references) //IL_2f91: Unknown result type (might be due to invalid IL or missing references) //IL_2f9b: Unknown result type (might be due to invalid IL or missing references) //IL_2fa0: Unknown result type (might be due to invalid IL or missing references) //IL_2fa6: Unknown result type (might be due to invalid IL or missing references) //IL_2fab: Unknown result type (might be due to invalid IL or missing references) //IL_2fb1: Unknown result type (might be due to invalid IL or missing references) //IL_2fb6: Unknown result type (might be due to invalid IL or missing references) //IL_2fc2: Unknown result type (might be due to invalid IL or missing references) //IL_1b4d: Unknown result type (might be due to invalid IL or missing references) //IL_1b53: Unknown result type (might be due to invalid IL or missing references) //IL_1b58: Unknown result type (might be due to invalid IL or missing references) //IL_1b63: Unknown result type (might be due to invalid IL or missing references) //IL_1b69: Unknown result type (might be due to invalid IL or missing references) //IL_1b6e: Unknown result type (might be due to invalid IL or missing references) //IL_1b74: Unknown result type (might be due to invalid IL or missing references) //IL_1b7e: Unknown result type (might be due to invalid IL or missing references) //IL_1b83: Unknown result type (might be due to invalid IL or missing references) //IL_1b89: Unknown result type (might be due to invalid IL or missing references) //IL_1b93: Unknown result type (might be due to invalid IL or missing references) //IL_1b98: Unknown result type (might be due to invalid IL or missing references) //IL_1b9e: Unknown result type (might be due to invalid IL or missing references) //IL_1ba3: Unknown result type (might be due to invalid IL or missing references) //IL_1ba9: Unknown result type (might be due to invalid IL or missing references) //IL_1bae: Unknown result type (might be due to invalid IL or missing references) //IL_1bc6: Unknown result type (might be due to invalid IL or missing references) //IL_1bcb: Unknown result type (might be due to invalid IL or missing references) //IL_1be3: Unknown result type (might be due to invalid IL or missing references) //IL_1be9: Unknown result type (might be due to invalid IL or missing references) //IL_1bf3: Unknown result type (might be due to invalid IL or missing references) //IL_1bf8: Unknown result type (might be due to invalid IL or missing references) //IL_1bfe: Unknown result type (might be due to invalid IL or missing references) //IL_1c03: Unknown result type (might be due to invalid IL or missing references) //IL_1c0e: Unknown result type (might be due to invalid IL or missing references) //IL_1c14: Unknown result type (might be due to invalid IL or missing references) //IL_1c19: Unknown result type (might be due to invalid IL or missing references) //IL_1c24: Unknown result type (might be due to invalid IL or missing references) //IL_1c2a: Unknown result type (might be due to invalid IL or missing references) //IL_1c2f: Unknown result type (might be due to invalid IL or missing references) //IL_1c35: Unknown result type (might be due to invalid IL or missing references) //IL_1c3f: Unknown result type (might be due to invalid IL or missing references) //IL_1c44: Unknown result type (might be due to invalid IL or missing references) //IL_1c4a: Unknown result type (might be due to invalid IL or missing references) //IL_1c54: Unknown result type (might be due to invalid IL or missing references) //IL_1c59: Unknown result type (might be due to invalid IL or missing references) //IL_1c5f: Unknown result type (might be due to invalid IL or missing references) //IL_1c64: Unknown result type (might be due to invalid IL or missing references) //IL_1c6a: Unknown result type (might be due to invalid IL or missing references) //IL_1c6f: Unknown result type (might be due to invalid IL or missing references) //IL_1c87: Unknown result type (might be due to invalid IL or missing references) //IL_1c8c: Unknown result type (might be due to invalid IL or missing references) //IL_1ca4: Unknown result type (might be due to invalid IL or missing references) //IL_1caa: Unknown result type (might be due to invalid IL or missing references) //IL_1cb4: Unknown result type (might be due to invalid IL or missing references) //IL_1cb9: Unknown result type (might be due to invalid IL or missing references) //IL_1cbf: Unknown result type (might be due to invalid IL or missing references) //IL_1cc4: Unknown result type (might be due to invalid IL or missing references) //IL_1cd0: Unknown result type (might be due to invalid IL or missing references) //IL_0785: Unknown result type (might be due to invalid IL or missing references) //IL_078b: Unknown result type (might be due to invalid IL or missing references) //IL_0790: Unknown result type (might be due to invalid IL or missing references) //IL_0796: Unknown result type (might be due to invalid IL or missing references) //IL_07a0: Unknown result type (might be due to invalid IL or missing references) //IL_07a5: Unknown result type (might be due to invalid IL or missing references) //IL_07ab: Unknown result type (might be due to invalid IL or missing references) //IL_07b0: Unknown result type (might be due to invalid IL or missing references) //IL_07b6: Unknown result type (might be due to invalid IL or missing references) //IL_07c0: Unknown result type (might be due to invalid IL or missing references) //IL_07c5: Unknown result type (might be due to invalid IL or missing references) //IL_07cb: Unknown result type (might be due to invalid IL or missing references) //IL_07d0: Unknown result type (might be due to invalid IL or missing references) //IL_07db: Unknown result type (might be due to invalid IL or missing references) //IL_07e1: Unknown result type (might be due to invalid IL or missing references) //IL_07e6: Unknown result type (might be due to invalid IL or missing references) //IL_07ec: Unknown result type (might be due to invalid IL or missing references) //IL_07f6: Unknown result type (might be due to invalid IL or missing references) //IL_07fb: Unknown result type (might be due to invalid IL or missing references) //IL_0801: Unknown result type (might be due to invalid IL or missing references) //IL_0806: Unknown result type (might be due to invalid IL or missing references) //IL_080c: Unknown result type (might be due to invalid IL or missing references) //IL_0816: Unknown result type (might be due to invalid IL or missing references) //IL_081b: Unknown result type (might be due to invalid IL or missing references) //IL_0821: Unknown result type (might be due to invalid IL or missing references) //IL_0826: Unknown result type (might be due to invalid IL or missing references) //IL_0832: Unknown result type (might be due to invalid IL or missing references) //IL_2fdc: Unknown result type (might be due to invalid IL or missing references) //IL_2fe2: Unknown result type (might be due to invalid IL or missing references) //IL_2fe7: Unknown result type (might be due to invalid IL or missing references) //IL_2ff2: Unknown result type (might be due to invalid IL or missing references) //IL_2ff8: Unknown result type (might be due to invalid IL or missing references) //IL_2ffd: Unknown result type (might be due to invalid IL or missing references) //IL_3003: Unknown result type (might be due to invalid IL or missing references) //IL_300d: Unknown result type (might be due to invalid IL or missing references) //IL_3012: Unknown result type (might be due to invalid IL or missing references) //IL_3018: Unknown result type (might be due to invalid IL or missing references) //IL_3022: Unknown result type (might be due to invalid IL or missing references) //IL_3027: Unknown result type (might be due to invalid IL or missing references) //IL_302d: Unknown result type (might be due to invalid IL or missing references) //IL_3032: Unknown result type (might be due to invalid IL or missing references) //IL_3038: Unknown result type (might be due to invalid IL or missing references) //IL_303d: Unknown result type (might be due to invalid IL or missing references) //IL_3055: Unknown result type (might be due to invalid IL or missing references) //IL_305a: Unknown result type (might be due to invalid IL or missing references) //IL_3072: Unknown result type (might be due to invalid IL or missing references) //IL_3078: Unknown result type (might be due to invalid IL or missing references) //IL_3082: Unknown result type (might be due to invalid IL or missing references) //IL_3087: Unknown result type (might be due to invalid IL or missing references) //IL_308d: Unknown result type (might be due to invalid IL or missing references) //IL_3092: Unknown result type (might be due to invalid IL or missing references) //IL_309d: Unknown result type (might be due to invalid IL or missing references) //IL_30a3: Unknown result type (might be due to invalid IL or missing references) //IL_30a8: Unknown result type (might be due to invalid IL or missing references) //IL_30b3: Unknown result type (might be due to invalid IL or missing references) //IL_30b9: Unknown result type (might be due to invalid IL or missing references) //IL_30be: Unknown result type (might be due to invalid IL or missing references) //IL_30c4: Unknown result type (might be due to invalid IL or missing references) //IL_30ce: Unknown result type (might be due to invalid IL or missing references) //IL_30d3: Unknown result type (might be due to invalid IL or missing references) //IL_30d9: Unknown result type (might be due to invalid IL or missing references) //IL_30e3: Unknown result type (might be due to invalid IL or missing references) //IL_30e8: Unknown result type (might be due to invalid IL or missing references) //IL_30ee: Unknown result type (might be due to invalid IL or missing references) //IL_30f3: Unknown result type (might be due to invalid IL or missing references) //IL_30f9: Unknown result type (might be due to invalid IL or missing references) //IL_30fe: Unknown result type (might be due to invalid IL or missing references) //IL_3116: Unknown result type (might be due to invalid IL or missing references) //IL_311b: Unknown result type (might be due to invalid IL or missing references) //IL_3133: Unknown result type (might be due to invalid IL or missing references) //IL_3139: Unknown result type (might be due to invalid IL or missing references) //IL_3143: Unknown result type (might be due to invalid IL or missing references) //IL_3148: Unknown result type (might be due to invalid IL or missing references) //IL_314e: Unknown result type (might be due to invalid IL or missing references) //IL_3153: Unknown result type (might be due to invalid IL or missing references) //IL_315f: Unknown result type (might be due to invalid IL or missing references) //IL_1cea: Unknown result type (might be due to invalid IL or missing references) //IL_1cf0: Unknown result type (might be due to invalid IL or missing references) //IL_1cf5: Unknown result type (might be due to invalid IL or missing references) //IL_1cfb: Unknown result type (might be due to invalid IL or missing references) //IL_1d05: Unknown result type (might be due to invalid IL or missing references) //IL_1d0a: Unknown result type (might be due to invalid IL or missing references) //IL_1d10: Unknown result type (might be due to invalid IL or missing references) //IL_1d15: Unknown result type (might be due to invalid IL or missing references) //IL_1d1b: Unknown result type (might be due to invalid IL or missing references) //IL_1d25: Unknown result type (might be due to invalid IL or missing references) //IL_1d2a: Unknown result type (might be due to invalid IL or missing references) //IL_1d30: Unknown result type (might be due to invalid IL or missing references) //IL_1d35: Unknown result type (might be due to invalid IL or missing references) //IL_1d40: Unknown result type (might be due to invalid IL or missing references) //IL_1d46: Unknown result type (might be due to invalid IL or missing references) //IL_1d4b: Unknown result type (might be due to invalid IL or missing references) //IL_1d51: Unknown result type (might be due to invalid IL or missing references) //IL_1d5b: Unknown result type (might be due to invalid IL or missing references) //IL_1d60: Unknown result type (might be due to invalid IL or missing references) //IL_1d66: Unknown result type (might be due to invalid IL or missing references) //IL_1d6b: Unknown result type (might be due to invalid IL or missing references) //IL_1d71: Unknown result type (might be due to invalid IL or missing references) //IL_1d7b: Unknown result type (might be due to invalid IL or missing references) //IL_1d80: Unknown result type (might be due to invalid IL or missing references) //IL_1d86: Unknown result type (might be due to invalid IL or missing references) //IL_1d8b: Unknown result type (might be due to invalid IL or missing references) //IL_1d97: Unknown result type (might be due to invalid IL or missing references) //IL_0847: Unknown result type (might be due to invalid IL or missing references) //IL_0852: Unknown result type (might be due to invalid IL or missing references) //IL_0858: Unknown result type (might be due to invalid IL or missing references) //IL_085d: Unknown result type (might be due to invalid IL or missing references) //IL_0863: Unknown result type (might be due to invalid IL or missing references) //IL_0868: Unknown result type (might be due to invalid IL or missing references) //IL_086e: Unknown result type (might be due to invalid IL or missing references) //IL_0873: Unknown result type (might be due to invalid IL or missing references) //IL_0879: Unknown result type (might be due to invalid IL or missing references) //IL_0883: Unknown result type (might be due to invalid IL or missing references) //IL_0888: Unknown result type (might be due to invalid IL or missing references) //IL_088e: Unknown result type (might be due to invalid IL or missing references) //IL_0898: Unknown result type (might be due to invalid IL or missing references) //IL_089d: Unknown result type (might be due to invalid IL or missing references) //IL_08a3: Unknown result type (might be due to invalid IL or missing references) //IL_08a8: Unknown result type (might be due to invalid IL or missing references) //IL_08ae: Unknown result type (might be due to invalid IL or missing references) //IL_08b3: Unknown result type (might be due to invalid IL or missing references) //IL_08bf: Unknown result type (might be due to invalid IL or missing references) //IL_3179: Unknown result type (might be due to invalid IL or missing references) //IL_317f: Unknown result type (might be due to invalid IL or missing references) //IL_3184: Unknown result type (might be due to invalid IL or missing references) //IL_318f: Unknown result type (might be due to invalid IL or missing references) //IL_3195: Unknown result type (might be due to invalid IL or missing references) //IL_319a: Unknown result type (might be due to invalid IL or missing references) //IL_31a0: Unknown result type (might be due to invalid IL or missing references) //IL_31aa: Unknown result type (might be due to invalid IL or missing references) //IL_31af: Unknown result type (might be due to invalid IL or missing references) //IL_31b5: Unknown result type (might be due to invalid IL or missing references) //IL_31bf: Unknown result type (might be due to invalid IL or missing references) //IL_31c4: Unknown result type (might be due to invalid IL or missing references) //IL_31ca: Unknown result type (might be due to invalid IL or missing references) //IL_31cf: Unknown result type (might be due to invalid IL or missing references) //IL_31d5: Unknown result type (might be due to invalid IL or missing references) //IL_31da: Unknown result type (might be due to invalid IL or missing references) //IL_31f2: Unknown result type (might be due to invalid IL or missing references) //IL_31f7: Unknown result type (might be due to invalid IL or missing references) //IL_320f: Unknown result type (might be due to invalid IL or missing references) //IL_3215: Unknown result type (might be due to invalid IL or missing references) //IL_321f: Unknown result type (might be due to invalid IL or missing references) //IL_3224: Unknown result type (might be due to invalid IL or missing references) //IL_322a: Unknown result type (might be due to invalid IL or missing references) //IL_322f: Unknown result type (might be due to invalid IL or missing references) //IL_323a: Unknown result type (might be due to invalid IL or missing references) //IL_3240: Unknown result type (might be due to invalid IL or missing references) //IL_3245: Unknown result type (might be due to invalid IL or missing references) //IL_3250: Unknown result type (might be due to invalid IL or missing references) //IL_3256: Unknown result type (might be due to invalid IL or missing references) //IL_325b: Unknown result type (might be due to invalid IL or missing references) //IL_3261: Unknown result type (might be due to invalid IL or missing references) //IL_326b: Unknown result type (might be due to invalid IL or missing references) //IL_3270: Unknown result type (might be due to invalid IL or missing references) //IL_3276: Unknown result type (might be due to invalid IL or missing references) //IL_3280: Unknown result type (might be due to invalid IL or missing references) //IL_3285: Unknown result type (might be due to invalid IL or missing references) //IL_328b: Unknown result type (might be due to invalid IL or missing references) //IL_3290: Unknown result type (might be due to invalid IL or missing references) //IL_3296: Unknown result type (might be due to invalid IL or missing references) //IL_329b: Unknown result type (might be due to invalid IL or missing references) //IL_32b3: Unknown result type (might be due to invalid IL or missing references) //IL_32b8: Unknown result type (might be due to invalid IL or missing references) //IL_32d0: Unknown result type (might be due to invalid IL or missing references) //IL_32d6: Unknown result type (might be due to invalid IL or missing references) //IL_32e0: Unknown result type (might be due to invalid IL or missing references) //IL_32e5: Unknown result type (might be due to invalid IL or missing references) //IL_32eb: Unknown result type (might be due to invalid IL or missing references) //IL_32f0: Unknown result type (might be due to invalid IL or missing references) //IL_32fc: Unknown result type (might be due to invalid IL or missing references) //IL_1db1: Unknown result type (might be due to invalid IL or missing references) //IL_1db7: Unknown result type (might be due to invalid IL or missing references) //IL_1dbc: Unknown result type (might be due to invalid IL or missing references) //IL_1dc2: Unknown result type (might be due to invalid IL or missing references) //IL_1dcc: Unknown result type (might be due to invalid IL or missing references) //IL_1dd1: Unknown result type (might be due to invalid IL or missing references) //IL_1dd7: Unknown result type (might be due to invalid IL or missing references) //IL_1ddc: Unknown result type (might be due to invalid IL or missing references) //IL_1de2: Unknown result type (might be due to invalid IL or missing references) //IL_1dec: Unknown result type (might be due to invalid IL or missing references) //IL_1df1: Unknown result type (might be due to invalid IL or missing references) //IL_1df7: Unknown result type (might be due to invalid IL or missing references) //IL_1dfc: Unknown result type (might be due to invalid IL or missing references) //IL_1e07: Unknown result type (might be due to invalid IL or missing references) //IL_1e0d: Unknown result type (might be due to invalid IL or missing references) //IL_1e12: Unknown result type (might be due to invalid IL or missing references) //IL_1e18: Unknown result type (might be due to invalid IL or missing references) //IL_1e22: Unknown result type (might be due to invalid IL or missing references) //IL_1e27: Unknown result type (might be due to invalid IL or missing references) //IL_1e2d: Unknown result type (might be due to invalid IL or missing references) //IL_1e32: Unknown result type (might be due to invalid IL or missing references) //IL_1e38: Unknown result type (might be due to invalid IL or missing references) //IL_1e42: Unknown result type (might be due to invalid IL or missing references) //IL_1e47: Unknown result type (might be due to invalid IL or missing references) //IL_1e4d: Unknown result type (might be due to invalid IL or missing references) //IL_1e52: Unknown result type (might be due to invalid IL or missing references) //IL_1e5e: Unknown result type (might be due to invalid IL or missing references) //IL_08d4: Unknown result type (might be due to invalid IL or missing references) //IL_08da: Unknown result type (might be due to invalid IL or missing references) //IL_08e4: Unknown result type (might be due to invalid IL or missing references) //IL_08e9: Unknown result type (might be due to invalid IL or missing references) //IL_08f4: Unknown result type (might be due to invalid IL or missing references) //IL_08fa: Unknown result type (might be due to invalid IL or missing references) //IL_08ff: Unknown result type (might be due to invalid IL or missing references) //IL_0905: Unknown result type (might be due to invalid IL or missing references) //IL_090a: Unknown result type (might be due to invalid IL or missing references) //IL_0910: Unknown result type (might be due to invalid IL or missing references) //IL_0915: Unknown result type (might be due to invalid IL or missing references) //IL_091b: Unknown result type (might be due to invalid IL or missing references) //IL_0925: Unknown result type (might be due to invalid IL or missing references) //IL_092a: Unknown result type (might be due to invalid IL or missing references) //IL_0930: Unknown result type (might be due to invalid IL or missing references) //IL_093a: Unknown result type (might be due to invalid IL or missing references) //IL_093f: Unknown result type (might be due to invalid IL or missing references) //IL_0945: Unknown result type (might be due to invalid IL or missing references) //IL_094a: Unknown result type (might be due to invalid IL or missing references) //IL_0950: Unknown result type (might be due to invalid IL or missing references) //IL_095a: Unknown result type (might be due to invalid IL or missing references) //IL_095f: Unknown result type (might be due to invalid IL or missing references) //IL_0965: Unknown result type (might be due to invalid IL or missing references) //IL_096a: Unknown result type (might be due to invalid IL or missing references) //IL_0976: Unknown result type (might be due to invalid IL or missing references) //IL_3316: Unknown result type (might be due to invalid IL or missing references) //IL_331c: Unknown result type (might be due to invalid IL or missing references) //IL_3321: Unknown result type (might be due to invalid IL or missing references) //IL_3327: Unknown result type (might be due to invalid IL or missing references) //IL_3331: Unknown result type (might be due to invalid IL or missing references) //IL_3336: Unknown result type (might be due to invalid IL or missing references) //IL_333c: Unknown result type (might be due to invalid IL or missing references) //IL_3341: Unknown result type (might be due to invalid IL or missing references) //IL_3347: Unknown result type (might be due to invalid IL or missing references) //IL_3351: Unknown result type (might be due to invalid IL or missing references) //IL_3356: Unknown result type (might be due to invalid IL or missing references) //IL_335c: Unknown result type (might be due to invalid IL or missing references) //IL_3361: Unknown result type (might be due to invalid IL or missing references) //IL_336c: Unknown result type (might be due to invalid IL or missing references) //IL_3372: Unknown result type (might be due to invalid IL or missing references) //IL_3377: Unknown result type (might be due to invalid IL or missing references) //IL_337d: Unknown result type (might be due to invalid IL or missing references) //IL_3387: Unknown result type (might be due to invalid IL or missing references) //IL_338c: Unknown result type (might be due to invalid IL or missing references) //IL_3392: Unknown result type (might be due to invalid IL or missing references) //IL_3397: Unknown result type (might be due to invalid IL or missing references) //IL_339d: Unknown result type (might be due to invalid IL or missing references) //IL_33a7: Unknown result type (might be due to invalid IL or missing references) //IL_33ac: Unknown result type (might be due to invalid IL or missing references) //IL_33b2: Unknown result type (might be due to invalid IL or missing references) //IL_33b7: Unknown result type (might be due to invalid IL or missing references) //IL_33c3: Unknown result type (might be due to invalid IL or missing references) //IL_1e73: Unknown result type (might be due to invalid IL or missing references) //IL_1e7e: Unknown result type (might be due to invalid IL or missing references) //IL_1e84: Unknown result type (might be due to invalid IL or missing references) //IL_1e89: Unknown result type (might be due to invalid IL or missing references) //IL_1e8f: Unknown result type (might be due to invalid IL or missing references) //IL_1e94: Unknown result type (might be due to invalid IL or missing references) //IL_1e9a: Unknown result type (might be due to invalid IL or missing references) //IL_1e9f: Unknown result type (might be due to invalid IL or missing references) //IL_1ea5: Unknown result type (might be due to invalid IL or missing references) //IL_1eaf: Unknown result type (might be due to invalid IL or missing references) //IL_1eb4: Unknown result type (might be due to invalid IL or missing references) //IL_1eba: Unknown result type (might be due to invalid IL or missing references) //IL_1ec4: Unknown result type (might be due to invalid IL or missing references) //IL_1ec9: Unknown result type (might be due to invalid IL or missing references) //IL_1ecf: Unknown result type (might be due to invalid IL or missing references) //IL_1ed4: Unknown result type (might be due to invalid IL or missing references) //IL_1eda: Unknown result type (might be due to invalid IL or missing references) //IL_1edf: Unknown result type (might be due to invalid IL or missing references) //IL_1eeb: Unknown result type (might be due to invalid IL or missing references) //IL_098b: Unknown result type (might be due to invalid IL or missing references) //IL_0991: Unknown result type (might be due to invalid IL or missing references) //IL_099b: Unknown result type (might be due to invalid IL or missing references) //IL_09a0: Unknown result type (might be due to invalid IL or missing references) //IL_09ab: Unknown result type (might be due to invalid IL or missing references) //IL_09b1: Unknown result type (might be due to invalid IL or missing references) //IL_09b6: Unknown result type (might be due to invalid IL or missing references) //IL_09bc: Unknown result type (might be due to invalid IL or missing references) //IL_09c1: Unknown result type (might be due to invalid IL or missing references) //IL_09c7: Unknown result type (might be due to invalid IL or missing references) //IL_09cc: Unknown result type (might be due to invalid IL or missing references) //IL_09d2: Unknown result type (might be due to invalid IL or missing references) //IL_09dc: Unknown result type (might be due to invalid IL or missing references) //IL_09e1: Unknown result type (might be due to invalid IL or missing references) //IL_09e7: Unknown result type (might be due to invalid IL or missing references) //IL_09f1: Unknown result type (might be due to invalid IL or missing references) //IL_09f6: Unknown result type (might be due to invalid IL or missing references) //IL_09fc: Unknown result type (might be due to invalid IL or missing references) //IL_0a01: Unknown result type (might be due to invalid IL or missing references) //IL_0a07: Unknown result type (might be due to invalid IL or missing references) //IL_0a11: Unknown result type (might be due to invalid IL or missing references) //IL_0a16: Unknown result type (might be due to invalid IL or missing references) //IL_0a1c: Unknown result type (might be due to invalid IL or missing references) //IL_0a21: Unknown result type (might be due to invalid IL or missing references) //IL_0a2d: Unknown result type (might be due to invalid IL or missing references) //IL_33dd: Unknown result type (might be due to invalid IL or missing references) //IL_33e3: Unknown result type (might be due to invalid IL or missing references) //IL_33e8: Unknown result type (might be due to invalid IL or missing references) //IL_33ee: Unknown result type (might be due to invalid IL or missing references) //IL_33f8: Unknown result type (might be due to invalid IL or missing references) //IL_33fd: Unknown result type (might be due to invalid IL or missing references) //IL_3403: Unknown result type (might be due to invalid IL or missing references) //IL_3408: Unknown result type (might be due to invalid IL or missing references) //IL_340e: Unknown result type (might be due to invalid IL or missing references) //IL_3418: Unknown result type (might be due to invalid IL or missing references) //IL_341d: Unknown result type (might be due to invalid IL or missing references) //IL_3423: Unknown result type (might be due to invalid IL or missing references) //IL_3428: Unknown result type (might be due to invalid IL or missing references) //IL_3433: Unknown result type (might be due to invalid IL or missing references) //IL_3439: Unknown result type (might be due to invalid IL or missing references) //IL_343e: Unknown result type (might be due to invalid IL or missing references) //IL_3444: Unknown result type (might be due to invalid IL or missing references) //IL_344e: Unknown result type (might be due to invalid IL or missing references) //IL_3453: Unknown result type (might be due to invalid IL or missing references) //IL_3459: Unknown result type (might be due to invalid IL or missing references) //IL_345e: Unknown result type (might be due to invalid IL or missing references) //IL_3464: Unknown result type (might be due to invalid IL or missing references) //IL_346e: Unknown result type (might be due to invalid IL or missing references) //IL_3473: Unknown result type (might be due to invalid IL or missing references) //IL_3479: Unknown result type (might be due to invalid IL or missing references) //IL_347e: Unknown result type (might be due to invalid IL or missing references) //IL_348a: Unknown result type (might be due to invalid IL or missing references) //IL_1f00: Unknown result type (might be due to invalid IL or missing references) //IL_1f06: Unknown result type (might be due to invalid IL or missing references) //IL_1f10: Unknown result type (might be due to invalid IL or missing references) //IL_1f15: Unknown result type (might be due to invalid IL or missing references) //IL_1f20: Unknown result type (might be due to invalid IL or missing references) //IL_1f26: Unknown result type (might be due to invalid IL or missing references) //IL_1f2b: Unknown result type (might be due to invalid IL or missing references) //IL_1f31: Unknown result type (might be due to invalid IL or missing references) //IL_1f36: Unknown result type (might be due to invalid IL or missing references) //IL_1f3c: Unknown result type (might be due to invalid IL or missing references) //IL_1f41: Unknown result type (might be due to invalid IL or missing references) //IL_1f47: Unknown result type (might be due to invalid IL or missing references) //IL_1f51: Unknown result type (might be due to invalid IL or missing references) //IL_1f56: Unknown result type (might be due to invalid IL or missing references) //IL_1f5c: Unknown result type (might be due to invalid IL or missing references) //IL_1f66: Unknown result type (might be due to invalid IL or missing references) //IL_1f6b: Unknown result type (might be due to invalid IL or missing references) //IL_1f71: Unknown result type (might be due to invalid IL or missing references) //IL_1f76: Unknown result type (might be due to invalid IL or missing references) //IL_1f7c: Unknown result type (might be due to invalid IL or missing references) //IL_1f86: Unknown result type (might be due to invalid IL or missing references) //IL_1f8b: Unknown result type (might be due to invalid IL or missing references) //IL_1f91: Unknown result type (might be due to invalid IL or missing references) //IL_1f96: Unknown result type (might be due to invalid IL or missing references) //IL_1fa2: Unknown result type (might be due to invalid IL or missing references) //IL_0a42: Unknown result type (might be due to invalid IL or missing references) //IL_0a48: Unknown result type (might be due to invalid IL or missing references) //IL_0a52: Unknown result type (might be due to invalid IL or missing references) //IL_0a57: Unknown result type (might be due to invalid IL or missing references) //IL_0a62: Unknown result type (might be due to invalid IL or missing references) //IL_0a68: Unknown result type (might be due to invalid IL or missing references) //IL_0a6d: Unknown result type (might be due to invalid IL or missing references) //IL_0a73: Unknown result type (might be due to invalid IL or missing references) //IL_0a78: Unknown result type (might be due to invalid IL or missing references) //IL_0a7e: Unknown result type (might be due to invalid IL or missing references) //IL_0a83: Unknown result type (might be due to invalid IL or missing references) //IL_0a89: Unknown result type (might be due to invalid IL or missing references) //IL_0a93: Unknown result type (might be due to invalid IL or missing references) //IL_0a98: Unknown result type (might be due to invalid IL or missing references) //IL_0a9e: Unknown result type (might be due to invalid IL or missing references) //IL_0aa8: Unknown result type (might be due to invalid IL or missing references) //IL_0aad: Unknown result type (might be due to invalid IL or missing references) //IL_0ab3: Unknown result type (might be due to invalid IL or missing references) //IL_0ab8: Unknown result type (might be due to invalid IL or missing references) //IL_0abe: Unknown result type (might be due to invalid IL or missing references) //IL_0ac8: Unknown result type (might be due to invalid IL or missing references) //IL_0acd: Unknown result type (might be due to invalid IL or missing references) //IL_0ad3: Unknown result type (might be due to invalid IL or missing references) //IL_0ad8: Unknown result type (might be due to invalid IL or missing references) //IL_0ae4: Unknown result type (might be due to invalid IL or missing references) //IL_349f: Unknown result type (might be due to invalid IL or missing references) //IL_34aa: Unknown result type (might be due to invalid IL or missing references) //IL_34b0: Unknown result type (might be due to invalid IL or missing references) //IL_34b5: Unknown result type (might be due to invalid IL or missing references) //IL_34bb: Unknown result type (might be due to invalid IL or missing references) //IL_34c0: Unknown result type (might be due to invalid IL or missing references) //IL_34c6: Unknown result type (might be due to invalid IL or missing references) //IL_34cb: Unknown result type (might be due to invalid IL or missing references) //IL_34d1: Unknown result type (might be due to invalid IL or missing references) //IL_34db: Unknown result type (might be due to invalid IL or missing references) //IL_34e0: Unknown result type (might be due to invalid IL or missing references) //IL_34e6: Unknown result type (might be due to invalid IL or missing references) //IL_34f0: Unknown result type (might be due to invalid IL or missing references) //IL_34f5: Unknown result type (might be due to invalid IL or missing references) //IL_34fb: Unknown result type (might be due to invalid IL or missing references) //IL_3500: Unknown result type (might be due to invalid IL or missing references) //IL_3506: Unknown result type (might be due to invalid IL or missing references) //IL_350b: Unknown result type (might be due to invalid IL or missing references) //IL_3517: Unknown result type (might be due to invalid IL or missing references) //IL_1fb7: Unknown result type (might be due to invalid IL or missing references) //IL_1fbd: Unknown result type (might be due to invalid IL or missing references) //IL_1fc7: Unknown result type (might be due to invalid IL or missing references) //IL_1fcc: Unknown result type (might be due to invalid IL or missing references) //IL_1fd7: Unknown result type (might be due to invalid IL or missing references) //IL_1fdd: Unknown result type (might be due to invalid IL or missing references) //IL_1fe2: Unknown result type (might be due to invalid IL or missing references) //IL_1fe8: Unknown result type (might be due to invalid IL or missing references) //IL_1fed: Unknown result type (might be due to invalid IL or missing references) //IL_1ff3: Unknown result type (might be due to invalid IL or missing references) //IL_1ff8: Unknown result type (might be due to invalid IL or missing references) //IL_1ffe: Unknown result type (might be due to invalid IL or missing references) //IL_2008: Unknown result type (might be due to invalid IL or missing references) //IL_200d: Unknown result type (might be due to invalid IL or missing references) //IL_2013: Unknown result type (might be due to invalid IL or missing references) //IL_201d: Unknown result type (might be due to invalid IL or missing references) //IL_2022: Unknown result type (might be due to invalid IL or missing references) //IL_2028: Unknown result type (might be due to invalid IL or missing references) //IL_202d: Unknown result type (might be due to invalid IL or missing references) //IL_2033: Unknown result type (might be due to invalid IL or missing references) //IL_203d: Unknown result type (might be due to invalid IL or missing references) //IL_2042: Unknown result type (might be due to invalid IL or missing references) //IL_2048: Unknown result type (might be due to invalid IL or missing references) //IL_204d: Unknown result type (might be due to invalid IL or missing references) //IL_2059: Unknown result type (might be due to invalid IL or missing references) //IL_0afe: Unknown result type (might be due to invalid IL or missing references) //IL_0b04: Unknown result type (might be due to invalid IL or missing references) //IL_0b09: Unknown result type (might be due to invalid IL or missing references) //IL_0b0f: Unknown result type (might be due to invalid IL or missing references) //IL_0b14: Unknown result type (might be due to invalid IL or missing references) //IL_0b1a: Unknown result type (might be due to invalid IL or missing references) //IL_0b1f: Unknown result type (might be due to invalid IL or missing references) //IL_0b2a: Unknown result type (might be due to invalid IL or missing references) //IL_0b30: Unknown result type (might be due to invalid IL or missing references) //IL_0b35: Unknown result type (might be due to invalid IL or missing references) //IL_0b3b: Unknown result type (might be due to invalid IL or missing references) //IL_0b40: Unknown result type (might be due to invalid IL or missing references) //IL_0b46: Unknown result type (might be due to invalid IL or missing references) //IL_0b50: Unknown result type (might be due to invalid IL or missing references) //IL_0b55: Unknown result type (might be due to invalid IL or missing references) //IL_0b5b: Unknown result type (might be due to invalid IL or missing references) //IL_0b60: Unknown result type (might be due to invalid IL or missing references) //IL_0b6c: Unknown result type (might be due to invalid IL or missing references) //IL_352c: Unknown result type (might be due to invalid IL or missing references) //IL_3532: Unknown result type (might be due to invalid IL or missing references) //IL_353c: Unknown result type (might be due to invalid IL or missing references) //IL_3541: Unknown result type (might be due to invalid IL or missing references) //IL_354c: Unknown result type (might be due to invalid IL or missing references) //IL_3552: Unknown result type (might be due to invalid IL or missing references) //IL_3557: Unknown result type (might be due to invalid IL or missing references) //IL_355d: Unknown result type (might be due to invalid IL or missing references) //IL_3562: Unknown result type (might be due to invalid IL or missing references) //IL_3568: Unknown result type (might be due to invalid IL or missing references) //IL_356d: Unknown result type (might be due to invalid IL or missing references) //IL_3573: Unknown result type (might be due to invalid IL or missing references) //IL_357d: Unknown result type (might be due to invalid IL or missing references) //IL_3582: Unknown result type (might be due to invalid IL or missing references) //IL_3588: Unknown result type (might be due to invalid IL or missing references) //IL_3592: Unknown result type (might be due to invalid IL or missing references) //IL_3597: Unknown result type (might be due to invalid IL or missing references) //IL_359d: Unknown result type (might be due to invalid IL or missing references) //IL_35a2: Unknown result type (might be due to invalid IL or missing references) //IL_35a8: Unknown result type (might be due to invalid IL or missing references) //IL_35b2: Unknown result type (might be due to invalid IL or missing references) //IL_35b7: Unknown result type (might be due to invalid IL or missing references) //IL_35bd: Unknown result type (might be due to invalid IL or missing references) //IL_35c2: Unknown result type (might be due to invalid IL or missing references) //IL_35ce: Unknown result type (might be due to invalid IL or missing references) //IL_206e: Unknown result type (might be due to invalid IL or missing references) //IL_2074: Unknown result type (might be due to invalid IL or missing references) //IL_207e: Unknown result type (might be due to invalid IL or missing references) //IL_2083: Unknown result type (might be due to invalid IL or missing references) //IL_208e: Unknown result type (might be due to invalid IL or missing references) //IL_2094: Unknown result type (might be due to invalid IL or missing references) //IL_2099: Unknown result type (might be due to invalid IL or missing references) //IL_209f: Unknown result type (might be due to invalid IL or missing references) //IL_20a4: Unknown result type (might be due to invalid IL or missing references) //IL_20aa: Unknown result type (might be due to invalid IL or missing references) //IL_20af: Unknown result type (might be due to invalid IL or missing references) //IL_20b5: Unknown result type (might be due to invalid IL or missing references) //IL_20bf: Unknown result type (might be due to invalid IL or missing references) //IL_20c4: Unknown result type (might be due to invalid IL or missing references) //IL_20ca: Unknown result type (might be due to invalid IL or missing references) //IL_20d4: Unknown result type (might be due to invalid IL or missing references) //IL_20d9: Unknown result type (might be due to invalid IL or missing references) //IL_20df: Unknown result type (might be due to invalid IL or missing references) //IL_20e4: Unknown result type (might be due to invalid IL or missing references) //IL_20ea: Unknown result type (might be due to invalid IL or missing references) //IL_20f4: Unknown result type (might be due to invalid IL or missing references) //IL_20f9: Unknown result type (might be due to invalid IL or missing references) //IL_20ff: Unknown result type (might be due to invalid IL or missing references) //IL_2104: Unknown result type (might be due to invalid IL or missing references) //IL_2110: Unknown result type (might be due to invalid IL or missing references) //IL_0b86: Unknown result type (might be due to invalid IL or missing references) //IL_0b8c: Unknown result type (might be due to invalid IL or missing references) //IL_0b91: Unknown result type (might be due to invalid IL or missing references) //IL_0b97: Unknown result type (might be due to invalid IL or missing references) //IL_0b9c: Unknown result type (might be due to invalid IL or missing references) //IL_0ba2: Unknown result type (might be due to invalid IL or missing references) //IL_0ba7: Unknown result type (might be due to invalid IL or missing references) //IL_0bad: Unknown result type (might be due to invalid IL or missing references) //IL_0bb7: Unknown result type (might be due to invalid IL or missing references) //IL_0bbc: Unknown result type (might be due to invalid IL or missing references) //IL_0bc7: Unknown result type (might be due to invalid IL or missing references) //IL_0bcd: Unknown result type (might be due to invalid IL or missing references) //IL_0bd2: Unknown result type (might be due to invalid IL or missing references) //IL_0bd8: Unknown result type (might be due to invalid IL or missing references) //IL_0bdd: Unknown result type (might be due to invalid IL or missing references) //IL_0be3: Unknown result type (might be due to invalid IL or missing references) //IL_0bed: Unknown result type (might be due to invalid IL or missing references) //IL_0bf2: Unknown result type (might be due to invalid IL or missing references) //IL_0bf8: Unknown result type (might be due to invalid IL or missing references) //IL_0bfd: Unknown result type (might be due to invalid IL or missing references) //IL_0c03: Unknown result type (might be due to invalid IL or missing references) //IL_0c0d: Unknown result type (might be due to invalid IL or missing references) //IL_0c12: Unknown result type (might be due to invalid IL or missing references) //IL_0c1e: Unknown result type (might be due to invalid IL or missing references) //IL_35e3: Unknown result type (might be due to invalid IL or missing references) //IL_35e9: Unknown result type (might be due to invalid IL or missing references) //IL_35f3: Unknown result type (might be due to invalid IL or missing references) //IL_35f8: Unknown result type (might be due to invalid IL or missing references) //IL_3603: Unknown result type (might be due to invalid IL or missing references) //IL_3609: Unknown result type (might be due to invalid IL or missing references) //IL_360e: Unknown result type (might be due to invalid IL or missing references) //IL_3614: Unknown result type (might be due to invalid IL or missing references) //IL_3619: Unknown result type (might be due to invalid IL or missing references) //IL_361f: Unknown result type (might be due to invalid IL or missing references) //IL_3624: Unknown result type (might be due to invalid IL or missing references) //IL_362a: Unknown result type (might be due to invalid IL or missing references) //IL_3634: Unknown result type (might be due to invalid IL or missing references) //IL_3639: Unknown result type (might be due to invalid IL or missing references) //IL_363f: Unknown result type (might be due to invalid IL or missing references) //IL_3649: Unknown result type (might be due to invalid IL or missing references) //IL_364e: Unknown result type (might be due to invalid IL or missing references) //IL_3654: Unknown result type (might be due to invalid IL or missing references) //IL_3659: Unknown result type (might be due to invalid IL or missing references) //IL_365f: Unknown result type (might be due to invalid IL or missing references) //IL_3669: Unknown result type (might be due to invalid IL or missing references) //IL_366e: Unknown result type (might be due to invalid IL or missing references) //IL_3674: Unknown result type (might be due to invalid IL or missing references) //IL_3679: Unknown result type (might be due to invalid IL or missing references) //IL_3685: Unknown result type (might be due to invalid IL or missing references) //IL_212a: Unknown result type (might be due to invalid IL or missing references) //IL_2130: Unknown result type (might be due to invalid IL or missing references) //IL_2135: Unknown result type (might be due to invalid IL or missing references) //IL_213b: Unknown result type (might be due to invalid IL or missing references) //IL_2140: Unknown result type (might be due to invalid IL or missing references) //IL_2146: Unknown result type (might be due to invalid IL or missing references) //IL_214b: Unknown result type (might be due to invalid IL or missing references) //IL_2156: Unknown result type (might be due to invalid IL or missing references) //IL_215c: Unknown result type (might be due to invalid IL or missing references) //IL_2161: Unknown result type (might be due to invalid IL or missing references) //IL_2167: Unknown result type (might be due to invalid IL or missing references) //IL_216c: Unknown result type (might be due to invalid IL or missing references) //IL_2172: Unknown result type (might be due to invalid IL or missing references) //IL_217c: Unknown result type (might be due to invalid IL or missing references) //IL_2181: Unknown result type (might be due to invalid IL or missing references) //IL_2187: Unknown result type (might be due to invalid IL or missing references) //IL_218c: Unknown result type (might be due to invalid IL or missing references) //IL_2198: Unknown result type (might be due to invalid IL or missing references) //IL_0c38: Unknown result type (might be due to invalid IL or missing references) //IL_0c3e: Unknown result type (might be due to invalid IL or missing references) //IL_0c43: Unknown result type (might be due to invalid IL or missing references) //IL_0c49: Unknown result type (might be due to invalid IL or missing references) //IL_0c4e: Unknown result type (might be due to invalid IL or missing references) //IL_0c54: Unknown result type (might be due to invalid IL or missing references) //IL_0c59: Unknown result type (might be due to invalid IL or missing references) //IL_0c5f: Unknown result type (might be due to invalid IL or missing references) //IL_0c69: Unknown result type (might be due to invalid IL or missing references) //IL_0c6e: Unknown result type (might be due to invalid IL or missing references) //IL_0c79: Unknown result type (might be due to invalid IL or missing references) //IL_0c7f: Unknown result type (might be due to invalid IL or missing references) //IL_0c84: Unknown result type (might be due to invalid IL or missing references) //IL_0c8a: Unknown result type (might be due to invalid IL or missing references) //IL_0c8f: Unknown result type (might be due to invalid IL or missing references) //IL_0c95: Unknown result type (might be due to invalid IL or missing references) //IL_0c9f: Unknown result type (might be due to invalid IL or missing references) //IL_0ca4: Unknown result type (might be due to invalid IL or missing references) //IL_0caa: Unknown result type (might be due to invalid IL or missing references) //IL_0caf: Unknown result type (might be due to invalid IL or missing references) //IL_0cb5: Unknown result type (might be due to invalid IL or missing references) //IL_0cbf: Unknown result type (might be due to invalid IL or missing references) //IL_0cc4: Unknown result type (might be due to invalid IL or missing references) //IL_0cd0: Unknown result type (might be due to invalid IL or missing references) //IL_369a: Unknown result type (might be due to invalid IL or missing references) //IL_36a0: Unknown result type (might be due to invalid IL or missing references) //IL_36aa: Unknown result type (might be due to invalid IL or missing references) //IL_36af: Unknown result type (might be due to invalid IL or missing references) //IL_36ba: Unknown result type (might be due to invalid IL or missing references) //IL_36c0: Unknown result type (might be due to invalid IL or missing references) //IL_36c5: Unknown result type (might be due to invalid IL or missing references) //IL_36cb: Unknown result type (might be due to invalid IL or missing references) //IL_36d0: Unknown result type (might be due to invalid IL or missing references) //IL_36d6: Unknown result type (might be due to invalid IL or missing references) //IL_36db: Unknown result type (might be due to invalid IL or missing references) //IL_36e1: Unknown result type (might be due to invalid IL or missing references) //IL_36eb: Unknown result type (might be due to invalid IL or missing references) //IL_36f0: Unknown result type (might be due to invalid IL or missing references) //IL_36f6: Unknown result type (might be due to invalid IL or missing references) //IL_3700: Unknown result type (might be due to invalid IL or missing references) //IL_3705: Unknown result type (might be due to invalid IL or missing references) //IL_370b: Unknown result type (might be due to invalid IL or missing references) //IL_3710: Unknown result type (might be due to invalid IL or missing references) //IL_3716: Unknown result type (might be due to invalid IL or missing references) //IL_3720: Unknown result type (might be due to invalid IL or missing references) //IL_3725: Unknown result type (might be due to invalid IL or missing references) //IL_372b: Unknown result type (might be due to invalid IL or missing references) //IL_3730: Unknown result type (might be due to invalid IL or missing references) //IL_373c: Unknown result type (might be due to invalid IL or missing references) //IL_21b2: Unknown result type (might be due to invalid IL or missing references) //IL_21b8: Unknown result type (might be due to invalid IL or missing references) //IL_21bd: Unknown result type (might be due to invalid IL or missing references) //IL_21c3: Unknown result type (might be due to invalid IL or missing references) //IL_21c8: Unknown result type (might be due to invalid IL or missing references) //IL_21ce: Unknown result type (might be due to invalid IL or missing references) //IL_21d3: Unknown result type (might be due to invalid IL or missing references) //IL_21d9: Unknown result type (might be due to invalid IL or missing references) //IL_21e3: Unknown result type (might be due to invalid IL or missing references) //IL_21e8: Unknown result type (might be due to invalid IL or missing references) //IL_21f3: Unknown result type (might be due to invalid IL or missing references) //IL_21f9: Unknown result type (might be due to invalid IL or missing references) //IL_21fe: Unknown result type (might be due to invalid IL or missing references) //IL_2204: Unknown result type (might be due to invalid IL or missing references) //IL_2209: Unknown result type (might be due to invalid IL or missing references) //IL_220f: Unknown result type (might be due to invalid IL or missing references) //IL_2219: Unknown result type (might be due to invalid IL or missing references) //IL_221e: Unknown result type (might be due to invalid IL or missing references) //IL_2224: Unknown result type (might be due to invalid IL or missing references) //IL_2229: Unknown result type (might be due to invalid IL or missing references) //IL_222f: Unknown result type (might be due to invalid IL or missing references) //IL_2239: Unknown result type (might be due to invalid IL or missing references) //IL_223e: Unknown result type (might be due to invalid IL or missing references) //IL_224a: Unknown result type (might be due to invalid IL or missing references) //IL_0cea: Unknown result type (might be due to invalid IL or missing references) //IL_0cf0: Unknown result type (might be due to invalid IL or missing references) //IL_0cf5: Unknown result type (might be due to invalid IL or missing references) //IL_0cfb: Unknown result type (might be due to invalid IL or missing references) //IL_0d00: Unknown result type (might be due to invalid IL or missing references) //IL_0d06: Unknown result type (might be due to invalid IL or missing references) //IL_0d0b: Unknown result type (might be due to invalid IL or missing references) //IL_0d11: Unknown result type (might be due to invalid IL or missing references) //IL_0d1b: Unknown result type (might be due to invalid IL or missing references) //IL_0d20: Unknown result type (might be due to invalid IL or missing references) //IL_0d2b: Unknown result type (might be due to invalid IL or missing references) //IL_0d31: Unknown result type (might be due to invalid IL or missing references) //IL_0d36: Unknown result type (might be due to invalid IL or missing references) //IL_0d3c: Unknown result type (might be due to invalid IL or missing references) //IL_0d41: Unknown result type (might be due to invalid IL or missing references) //IL_0d47: Unknown result type (might be due to invalid IL or missing references) //IL_0d51: Unknown result type (might be due to invalid IL or missing references) //IL_0d56: Unknown result type (might be due to invalid IL or missing references) //IL_0d5c: Unknown result type (might be due to invalid IL or missing references) //IL_0d61: Unknown result type (might be due to invalid IL or missing references) //IL_0d67: Unknown result type (might be due to invalid IL or missing references) //IL_0d71: Unknown result type (might be due to invalid IL or missing references) //IL_0d76: Unknown result type (might be due to invalid IL or missing references) //IL_0d82: Unknown result type (might be due to invalid IL or missing references) //IL_3756: Unknown result type (might be due to invalid IL or missing references) //IL_375c: Unknown result type (might be due to invalid IL or missing references) //IL_3761: Unknown result type (might be due to invalid IL or missing references) //IL_3767: Unknown result type (might be due to invalid IL or missing references) //IL_376c: Unknown result type (might be due to invalid IL or missing references) //IL_3772: Unknown result type (might be due to invalid IL or missing references) //IL_3777: Unknown result type (might be due to invalid IL or missing references) //IL_3782: Unknown result type (might be due to invalid IL or missing references) //IL_3788: Unknown result type (might be due to invalid IL or missing references) //IL_378d: Unknown result type (might be due to invalid IL or missing references) //IL_3793: Unknown result type (might be due to invalid IL or missing references) //IL_3798: Unknown result type (might be due to invalid IL or missing references) //IL_379e: Unknown result type (might be due to invalid IL or missing references) //IL_37a8: Unknown result type (might be due to invalid IL or missing references) //IL_37ad: Unknown result type (might be due to invalid IL or missing references) //IL_37b3: Unknown result type (might be due to invalid IL or missing references) //IL_37b8: Unknown result type (might be due to invalid IL or missing references) //IL_37c4: Unknown result type (might be due to invalid IL or missing references) //IL_2264: Unknown result type (might be due to invalid IL or missing references) //IL_226a: Unknown result type (might be due to invalid IL or missing references) //IL_226f: Unknown result type (might be due to invalid IL or missing references) //IL_2275: Unknown result type (might be due to invalid IL or missing references) //IL_227a: Unknown result type (might be due to invalid IL or missing references) //IL_2280: Unknown result type (might be due to invalid IL or missing references) //IL_2285: Unknown result type (might be due to invalid IL or missing references) //IL_228b: Unknown result type (might be due to invalid IL or missing references) //IL_2295: Unknown result type (might be due to invalid IL or missing references) //IL_229a: Unknown result type (might be due to invalid IL or missing references) //IL_22a5: Unknown result type (might be due to invalid IL or missing references) //IL_22ab: Unknown result type (might be due to invalid IL or missing references) //IL_22b0: Unknown result type (might be due to invalid IL or missing references) //IL_22b6: Unknown result type (might be due to invalid IL or missing references) //IL_22bb: Unknown result type (might be due to invalid IL or missing references) //IL_22c1: Unknown result type (might be due to invalid IL or missing references) //IL_22cb: Unknown result type (might be due to invalid IL or missing references) //IL_22d0: Unknown result type (might be due to invalid IL or missing references) //IL_22d6: Unknown result type (might be due to invalid IL or missing references) //IL_22db: Unknown result type (might be due to invalid IL or missing references) //IL_22e1: Unknown result type (might be due to invalid IL or missing references) //IL_22eb: Unknown result type (might be due to invalid IL or missing references) //IL_22f0: Unknown result type (might be due to invalid IL or missing references) //IL_22fc: Unknown result type (might be due to invalid IL or missing references) //IL_0d9c: Unknown result type (might be due to invalid IL or missing references) //IL_0da2: Unknown result type (might be due to invalid IL or missing references) //IL_0da7: Unknown result type (might be due to invalid IL or missing references) //IL_0dad: Unknown result type (might be due to invalid IL or missing references) //IL_0db2: Unknown result type (might be due to invalid IL or missing references) //IL_0db8: Unknown result type (might be due to invalid IL or missing references) //IL_0dbd: Unknown result type (might be due to invalid IL or missing references) //IL_0dc3: Unknown result type (might be due to invalid IL or missing references) //IL_0dcd: Unknown result type (might be due to invalid IL or missing references) //IL_0dd2: Unknown result type (might be due to invalid IL or missing references) //IL_0ddd: Unknown result type (might be due to invalid IL or missing references) //IL_0de3: Unknown result type (might be due to invalid IL or missing references) //IL_0de8: Unknown result type (might be due to invalid IL or missing references) //IL_0dee: Unknown result type (might be due to invalid IL or missing references) //IL_0df3: Unknown result type (might be due to invalid IL or missing references) //IL_0df9: Unknown result type (might be due to invalid IL or missing references) //IL_0e03: Unknown result type (might be due to invalid IL or missing references) //IL_0e08: Unknown result type (might be due to invalid IL or missing references) //IL_0e0e: Unknown result type (might be due to invalid IL or missing references) //IL_0e13: Unknown result type (might be due to invalid IL or missing references) //IL_0e19: Unknown result type (might be due to invalid IL or missing references) //IL_0e23: Unknown result type (might be due to invalid IL or missing references) //IL_0e28: Unknown result type (might be due to invalid IL or missing references) //IL_0e34: Unknown result type (might be due to invalid IL or missing references) //IL_37de: Unknown result type (might be due to invalid IL or missing references) //IL_37e4: Unknown result type (might be due to invalid IL or missing references) //IL_37e9: Unknown result type (might be due to invalid IL or missing references) //IL_37ef: Unknown result type (might be due to invalid IL or missing references) //IL_37f4: Unknown result type (might be due to invalid IL or missing references) //IL_37fa: Unknown result type (might be due to invalid IL or missing references) //IL_37ff: Unknown result type (might be due to invalid IL or missing references) //IL_3805: Unknown result type (might be due to invalid IL or missing references) //IL_380f: Unknown result type (might be due to invalid IL or missing references) //IL_3814: Unknown result type (might be due to invalid IL or missing references) //IL_381f: Unknown result type (might be due to invalid IL or missing references) //IL_3825: Unknown result type (might be due to invalid IL or missing references) //IL_382a: Unknown result type (might be due to invalid IL or missing references) //IL_3830: Unknown result type (might be due to invalid IL or missing references) //IL_3835: Unknown result type (might be due to invalid IL or missing references) //IL_383b: Unknown result type (might be due to invalid IL or missing references) //IL_3845: Unknown result type (might be due to invalid IL or missing references) //IL_384a: Unknown result type (might be due to invalid IL or missing references) //IL_3850: Unknown result type (might be due to invalid IL or missing references) //IL_3855: Unknown result type (might be due to invalid IL or missing references) //IL_385b: Unknown result type (might be due to invalid IL or missing references) //IL_3865: Unknown result type (might be due to invalid IL or missing references) //IL_386a: Unknown result type (might be due to invalid IL or missing references) //IL_3876: Unknown result type (might be due to invalid IL or missing references) //IL_2316: Unknown result type (might be due to invalid IL or missing references) //IL_231c: Unknown result type (might be due to invalid IL or missing references) //IL_2321: Unknown result type (might be due to invalid IL or missing references) //IL_2327: Unknown result type (might be due to invalid IL or missing references) //IL_232c: Unknown result type (might be due to invalid IL or missing references) //IL_2332: Unknown result type (might be due to invalid IL or missing references) //IL_2337: Unknown result type (might be due to invalid IL or missing references) //IL_233d: Unknown result type (might be due to invalid IL or missing references) //IL_2347: Unknown result type (might be due to invalid IL or missing references) //IL_234c: Unknown result type (might be due to invalid IL or missing references) //IL_2357: Unknown result type (might be due to invalid IL or missing references) //IL_235d: Unknown result type (might be due to invalid IL or missing references) //IL_2362: Unknown result type (might be due to invalid IL or missing references) //IL_2368: Unknown result type (might be due to invalid IL or missing references) //IL_236d: Unknown result type (might be due to invalid IL or missing references) //IL_2373: Unknown result type (might be due to invalid IL or missing references) //IL_237d: Unknown result type (might be due to invalid IL or missing references) //IL_2382: Unknown result type (might be due to invalid IL or missing references) //IL_2388: Unknown result type (might be due to invalid IL or missing references) //IL_238d: Unknown result type (might be due to invalid IL or missing references) //IL_2393: Unknown result type (might be due to invalid IL or missing references) //IL_239d: Unknown result type (might be due to invalid IL or missing references) //IL_23a2: Unknown result type (might be due to invalid IL or missing references) //IL_23ae: Unknown result type (might be due to invalid IL or missing references) //IL_0e4e: Unknown result type (might be due to invalid IL or missing references) //IL_0e54: Unknown result type (might be due to invalid IL or missing references) //IL_0e59: Unknown result type (might be due to invalid IL or missing references) //IL_0e5f: Unknown result type (might be due to invalid IL or missing references) //IL_0e64: Unknown result type (might be due to invalid IL or missing references) //IL_0e6a: Unknown result type (might be due to invalid IL or missing references) //IL_0e6f: Unknown result type (might be due to invalid IL or missing references) //IL_0e75: Unknown result type (might be due to invalid IL or missing references) //IL_0e7f: Unknown result type (might be due to invalid IL or missing references) //IL_0e84: Unknown result type (might be due to invalid IL or missing references) //IL_0e8f: Unknown result type (might be due to invalid IL or missing references) //IL_0e95: Unknown result type (might be due to invalid IL or missing references) //IL_0e9a: Unknown result type (might be due to invalid IL or missing references) //IL_0ea0: Unknown result type (might be due to invalid IL or missing references) //IL_0ea5: Unknown result type (might be due to invalid IL or missing references) //IL_0eab: Unknown result type (might be due to invalid IL or missing references) //IL_0eb5: Unknown result type (might be due to invalid IL or missing references) //IL_0eba: Unknown result type (might be due to invalid IL or missing references) //IL_0ec0: Unknown result type (might be due to invalid IL or missing references) //IL_0ec5: Unknown result type (might be due to invalid IL or missing references) //IL_0ecb: Unknown result type (might be due to invalid IL or missing references) //IL_0ed5: Unknown result type (might be due to invalid IL or missing references) //IL_0eda: Unknown result type (might be due to invalid IL or missing references) //IL_0ee6: Unknown result type (might be due to invalid IL or missing references) //IL_3890: Unknown result type (might be due to invalid IL or missing references) //IL_3896: Unknown result type (might be due to invalid IL or missing references) //IL_389b: Unknown result type (might be due to invalid IL or missing references) //IL_38a1: Unknown result type (might be due to invalid IL or missing references) //IL_38a6: Unknown result type (might be due to invalid IL or missing references) //IL_38ac: Unknown result type (might be due to invalid IL or missing references) //IL_38b1: Unknown result type (might be due to invalid IL or missing references) //IL_38b7: Unknown result type (might be due to invalid IL or missing references) //IL_38c1: Unknown result type (might be due to invalid IL or missing references) //IL_38c6: Unknown result type (might be due to invalid IL or missing references) //IL_38d1: Unknown result type (might be due to invalid IL or missing references) //IL_38d7: Unknown result type (might be due to invalid IL or missing references) //IL_38dc: Unknown result type (might be due to invalid IL or missing references) //IL_38e2: Unknown result type (might be due to invalid IL or missing references) //IL_38e7: Unknown result type (might be due to invalid IL or missing references) //IL_38ed: Unknown result type (might be due to invalid IL or missing references) //IL_38f7: Unknown result type (might be due to invalid IL or missing references) //IL_38fc: Unknown result type (might be due to invalid IL or missing references) //IL_3902: Unknown result type (might be due to invalid IL or missing references) //IL_3907: Unknown result type (might be due to invalid IL or missing references) //IL_390d: Unknown result type (might be due to invalid IL or missing references) //IL_3917: Unknown result type (might be due to invalid IL or missing references) //IL_391c: Unknown result type (might be due to invalid IL or missing references) //IL_3928: Unknown result type (might be due to invalid IL or missing references) //IL_23c8: Unknown result type (might be due to invalid IL or missing references) //IL_23ce: Unknown result type (might be due to invalid IL or missing references) //IL_23d3: Unknown result type (might be due to invalid IL or missing references) //IL_23d9: Unknown result type (might be due to invalid IL or missing references) //IL_23de: Unknown result type (might be due to invalid IL or missing references) //IL_23e4: Unknown result type (might be due to invalid IL or missing references) //IL_23e9: Unknown result type (might be due to invalid IL or missing references) //IL_23ef: Unknown result type (might be due to invalid IL or missing references) //IL_23f9: Unknown result type (might be due to invalid IL or missing references) //IL_23fe: Unknown result type (might be due to invalid IL or missing references) //IL_2409: Unknown result type (might be due to invalid IL or missing references) //IL_240f: Unknown result type (might be due to invalid IL or missing references) //IL_2414: Unknown result type (might be due to invalid IL or missing references) //IL_241a: Unknown result type (might be due to invalid IL or missing references) //IL_241f: Unknown result type (might be due to invalid IL or missing references) //IL_2425: Unknown result type (might be due to invalid IL or missing references) //IL_242f: Unknown result type (might be due to invalid IL or missing references) //IL_2434: Unknown result type (might be due to invalid IL or missing references) //IL_243a: Unknown result type (might be due to invalid IL or missing references) //IL_243f: Unknown result type (might be due to invalid IL or missing references) //IL_2445: Unknown result type (might be due to invalid IL or missing references) //IL_244f: Unknown result type (might be due to invalid IL or missing references) //IL_2454: Unknown result type (might be due to invalid IL or missing references) //IL_2460: Unknown result type (might be due to invalid IL or missing references) //IL_0f00: Unknown result type (might be due to invalid IL or missing references) //IL_0f06: Unknown result type (might be due to invalid IL or missing references) //IL_0f0b: Unknown result type (might be due to invalid IL or missing references) //IL_0f11: Unknown result type (might be due to invalid IL or missing references) //IL_0f16: Unknown result type (might be due to invalid IL or missing references) //IL_0f1c: Unknown result type (might be due to invalid IL or missing references) //IL_0f21: Unknown result type (might be due to invalid IL or missing references) //IL_0f27: Unknown result type (might be due to invalid IL or missing references) //IL_0f31: Unknown result type (might be due to invalid IL or missing references) //IL_0f36: Unknown result type (might be due to invalid IL or missing references) //IL_0f41: Unknown result type (might be due to invalid IL or missing references) //IL_0f47: Unknown result type (might be due to invalid IL or missing references) //IL_0f4c: Unknown result type (might be due to invalid IL or missing references) //IL_0f52: Unknown result type (might be due to invalid IL or missing references) //IL_0f57: Unknown result type (might be due to invalid IL or missing references) //IL_0f5d: Unknown result type (might be due to invalid IL or missing references) //IL_0f67: Unknown result type (might be due to invalid IL or missing references) //IL_0f6c: Unknown result type (might be due to invalid IL or missing references) //IL_0f72: Unknown result type (might be due to invalid IL or missing references) //IL_0f77: Unknown result type (might be due to invalid IL or missing references) //IL_0f7d: Unknown result type (might be due to invalid IL or missing references) //IL_0f87: Unknown result type (might be due to invalid IL or missing references) //IL_0f8c: Unknown result type (might be due to invalid IL or missing references) //IL_0f98: Unknown result type (might be due to invalid IL or missing references) //IL_3942: Unknown result type (might be due to invalid IL or missing references) //IL_3948: Unknown result type (might be due to invalid IL or missing references) //IL_394d: Unknown result type (might be due to invalid IL or missing references) //IL_3953: Unknown result type (might be due to invalid IL or missing references) //IL_3958: Unknown result type (might be due to invalid IL or missing references) //IL_395e: Unknown result type (might be due to invalid IL or missing references) //IL_3963: Unknown result type (might be due to invalid IL or missing references) //IL_3969: Unknown result type (might be due to invalid IL or missing references) //IL_3973: Unknown result type (might be due to invalid IL or missing references) //IL_3978: Unknown result type (might be due to invalid IL or missing references) //IL_3983: Unknown result type (might be due to invalid IL or missing references) //IL_3989: Unknown result type (might be due to invalid IL or missing references) //IL_398e: Unknown result type (might be due to invalid IL or missing references) //IL_3994: Unknown result type (might be due to invalid IL or missing references) //IL_3999: Unknown result type (might be due to invalid IL or missing references) //IL_399f: Unknown result type (might be due to invalid IL or missing references) //IL_39a9: Unknown result type (might be due to invalid IL or missing references) //IL_39ae: Unknown result type (might be due to invalid IL or missing references) //IL_39b4: Unknown result type (might be due to invalid IL or missing references) //IL_39b9: Unknown result type (might be due to invalid IL or missing references) //IL_39bf: Unknown result type (might be due to invalid IL or missing references) //IL_39c9: Unknown result type (might be due to invalid IL or missing references) //IL_39ce: Unknown result type (might be due to invalid IL or missing references) //IL_39da: Unknown result type (might be due to invalid IL or missing references) //IL_247a: Unknown result type (might be due to invalid IL or missing references) //IL_2480: Unknown result type (might be due to invalid IL or missing references) //IL_2485: Unknown result type (might be due to invalid IL or missing references) //IL_248b: Unknown result type (might be due to invalid IL or missing references) //IL_2490: Unknown result type (might be due to invalid IL or missing references) //IL_2496: Unknown result type (might be due to invalid IL or missing references) //IL_249b: Unknown result type (might be due to invalid IL or missing references) //IL_24a1: Unknown result type (might be due to invalid IL or missing references) //IL_24ab: Unknown result type (might be due to invalid IL or missing references) //IL_24b0: Unknown result type (might be due to invalid IL or missing references) //IL_24bb: Unknown result type (might be due to invalid IL or missing references) //IL_24c1: Unknown result type (might be due to invalid IL or missing references) //IL_24c6: Unknown result type (might be due to invalid IL or missing references) //IL_24cc: Unknown result type (might be due to invalid IL or missing references) //IL_24d1: Unknown result type (might be due to invalid IL or missing references) //IL_24d7: Unknown result type (might be due to invalid IL or missing references) //IL_24e1: Unknown result type (might be due to invalid IL or missing references) //IL_24e6: Unknown result type (might be due to invalid IL or missing references) //IL_24ec: Unknown result type (might be due to invalid IL or missing references) //IL_24f1: Unknown result type (might be due to invalid IL or missing references) //IL_24f7: Unknown result type (might be due to invalid IL or missing references) //IL_2501: Unknown result type (might be due to invalid IL or missing references) //IL_2506: Unknown result type (might be due to invalid IL or missing references) //IL_2512: Unknown result type (might be due to invalid IL or missing references) //IL_0fb2: Unknown result type (might be due to invalid IL or missing references) //IL_0fb8: Unknown result type (might be due to invalid IL or missing references) //IL_0fbd: Unknown result type (might be due to invalid IL or missing references) //IL_0fc3: Unknown result type (might be due to invalid IL or missing references) //IL_0fc8: Unknown result type (might be due to invalid IL or missing references) //IL_0fce: Unknown result type (might be due to invalid IL or missing references) //IL_0fd3: Unknown result type (might be due to invalid IL or missing references) //IL_0fd9: Unknown result type (might be due to invalid IL or missing references) //IL_0fe3: Unknown result type (might be due to invalid IL or missing references) //IL_0fe8: Unknown result type (might be due to invalid IL or missing references) //IL_0ff3: Unknown result type (might be due to invalid IL or missing references) //IL_0ff9: Unknown result type (might be due to invalid IL or missing references) //IL_0ffe: Unknown result type (might be due to invalid IL or missing references) //IL_1004: Unknown result type (might be due to invalid IL or missing references) //IL_1009: Unknown result type (might be due to invalid IL or missing references) //IL_100f: Unknown result type (might be due to invalid IL or missing references) //IL_1019: Unknown result type (might be due to invalid IL or missing references) //IL_101e: Unknown result type (might be due to invalid IL or missing references) //IL_1024: Unknown result type (might be due to invalid IL or missing references) //IL_1029: Unknown result type (might be due to invalid IL or missing references) //IL_102f: Unknown result type (might be due to invalid IL or missing references) //IL_1039: Unknown result type (might be due to invalid IL or missing references) //IL_103e: Unknown result type (might be due to invalid IL or missing references) //IL_104a: Unknown result type (might be due to invalid IL or missing references) //IL_39f4: Unknown result type (might be due to invalid IL or missing references) //IL_39fa: Unknown result type (might be due to invalid IL or missing references) //IL_39ff: Unknown result type (might be due to invalid IL or missing references) //IL_3a05: Unknown result type (might be due to invalid IL or missing references) //IL_3a0a: Unknown result type (might be due to invalid IL or missing references) //IL_3a10: Unknown result type (might be due to invalid IL or missing references) //IL_3a15: Unknown result type (might be due to invalid IL or missing references) //IL_3a1b: Unknown result type (might be due to invalid IL or missing references) //IL_3a25: Unknown result type (might be due to invalid IL or missing references) //IL_3a2a: Unknown result type (might be due to invalid IL or missing references) //IL_3a35: Unknown result type (might be due to invalid IL or missing references) //IL_3a3b: Unknown result type (might be due to invalid IL or missing references) //IL_3a40: Unknown result type (might be due to invalid IL or missing references) //IL_3a46: Unknown result type (might be due to invalid IL or missing references) //IL_3a4b: Unknown result type (might be due to invalid IL or missing references) //IL_3a51: Unknown result type (might be due to invalid IL or missing references) //IL_3a5b: Unknown result type (might be due to invalid IL or missing references) //IL_3a60: Unknown result type (might be due to invalid IL or missing references) //IL_3a66: Unknown result type (might be due to invalid IL or missing references) //IL_3a6b: Unknown result type (might be due to invalid IL or missing references) //IL_3a71: Unknown result type (might be due to invalid IL or missing references) //IL_3a7b: Unknown result type (might be due to invalid IL or missing references) //IL_3a80: Unknown result type (might be due to invalid IL or missing references) //IL_3a8c: Unknown result type (might be due to invalid IL or missing references) //IL_252c: Unknown result type (might be due to invalid IL or missing references) //IL_2532: Unknown result type (might be due to invalid IL or missing references) //IL_2537: Unknown result type (might be due to invalid IL or missing references) //IL_253d: Unknown result type (might be due to invalid IL or missing references) //IL_2542: Unknown result type (might be due to invalid IL or missing references) //IL_2548: Unknown result type (might be due to invalid IL or missing references) //IL_254d: Unknown result type (might be due to invalid IL or missing references) //IL_2553: Unknown result type (might be due to invalid IL or missing references) //IL_255d: Unknown result type (might be due to invalid IL or missing references) //IL_2562: Unknown result type (might be due to invalid IL or missing references) //IL_256d: Unknown result type (might be due to invalid IL or missing references) //IL_2573: Unknown result type (might be due to invalid IL or missing references) //IL_2578: Unknown result type (might be due to invalid IL or missing references) //IL_257e: Unknown result type (might be due to invalid IL or missing references) //IL_2583: Unknown result type (might be due to invalid IL or missing references) //IL_2589: Unknown result type (might be due to invalid IL or missing references) //IL_2593: Unknown result type (might be due to invalid IL or missing references) //IL_2598: Unknown result type (might be due to invalid IL or missing references) //IL_259e: Unknown result type (might be due to invalid IL or missing references) //IL_25a3: Unknown result type (might be due to invalid IL or missing references) //IL_25a9: Unknown result type (might be due to invalid IL or missing references) //IL_25b3: Unknown result type (might be due to invalid IL or missing references) //IL_25b8: Unknown result type (might be due to invalid IL or missing references) //IL_25c4: Unknown result type (might be due to invalid IL or missing references) //IL_1064: Unknown result type (might be due to invalid IL or missing references) //IL_106a: Unknown result type (might be due to invalid IL or missing references) //IL_106f: Unknown result type (might be due to invalid IL or missing references) //IL_1075: Unknown result type (might be due to invalid IL or missing references) //IL_107a: Unknown result type (might be due to invalid IL or missing references) //IL_1080: Unknown result type (might be due to invalid IL or missing references) //IL_108a: Unknown result type (might be due to invalid IL or missing references) //IL_108f: Unknown result type (might be due to invalid IL or missing references) //IL_1095: Unknown result type (might be due to invalid IL or missing references) //IL_109a: Unknown result type (might be due to invalid IL or missing references) //IL_10a5: Unknown result type (might be due to invalid IL or missing references) //IL_10ab: Unknown result type (might be due to invalid IL or missing references) //IL_10b0: Unknown result type (might be due to invalid IL or missing references) //IL_10b6: Unknown result type (might be due to invalid IL or missing references) //IL_10bb: Unknown result type (might be due to invalid IL or missing references) //IL_10c1: Unknown result type (might be due to invalid IL or missing references) //IL_10c6: Unknown result type (might be due to invalid IL or missing references) //IL_10d2: Unknown result type (might be due to invalid IL or missing references) //IL_3aa6: Unknown result type (might be due to invalid IL or missing references) //IL_3aac: Unknown result type (might be due to invalid IL or missing references) //IL_3ab1: Unknown result type (might be due to invalid IL or missing references) //IL_3ab7: Unknown result type (might be due to invalid IL or missing references) //IL_3abc: Unknown result type (might be due to invalid IL or missing references) //IL_3ac2: Unknown result type (might be due to invalid IL or missing references) //IL_3ac7: Unknown result type (might be due to invalid IL or missing references) //IL_3acd: Unknown result type (might be due to invalid IL or missing references) //IL_3ad7: Unknown result type (might be due to invalid IL or missing references) //IL_3adc: Unknown result type (might be due to invalid IL or missing references) //IL_3ae7: Unknown result type (might be due to invalid IL or missing references) //IL_3aed: Unknown result type (might be due to invalid IL or missing references) //IL_3af2: Unknown result type (might be due to invalid IL or missing references) //IL_3af8: Unknown result type (might be due to invalid IL or missing references) //IL_3afd: Unknown result type (might be due to invalid IL or missing references) //IL_3b03: Unknown result type (might be due to invalid IL or missing references) //IL_3b0d: Unknown result type (might be due to invalid IL or missing references) //IL_3b12: Unknown result type (might be due to invalid IL or missing references) //IL_3b18: Unknown result type (might be due to invalid IL or missing references) //IL_3b1d: Unknown result type (might be due to invalid IL or missing references) //IL_3b23: Unknown result type (might be due to invalid IL or missing references) //IL_3b2d: Unknown result type (might be due to invalid IL or missing references) //IL_3b32: Unknown result type (might be due to invalid IL or missing references) //IL_3b3e: Unknown result type (might be due to invalid IL or missing references) //IL_25de: Unknown result type (might be due to invalid IL or missing references) //IL_25e4: Unknown result type (might be due to invalid IL or missing references) //IL_25e9: Unknown result type (might be due to invalid IL or missing references) //IL_25ef: Unknown result type (might be due to invalid IL or missing references) //IL_25f4: Unknown result type (might be due to invalid IL or missing references) //IL_25fa: Unknown result type (might be due to invalid IL or missing references) //IL_25ff: Unknown result type (might be due to invalid IL or missing references) //IL_2605: Unknown result type (might be due to invalid IL or missing references) //IL_260f: Unknown result type (might be due to invalid IL or missing references) //IL_2614: Unknown result type (might be due to invalid IL or missing references) //IL_261f: Unknown result type (might be due to invalid IL or missing references) //IL_2625: Unknown result type (might be due to invalid IL or missing references) //IL_262a: Unknown result type (might be due to invalid IL or missing references) //IL_2630: Unknown result type (might be due to invalid IL or missing references) //IL_2635: Unknown result type (might be due to invalid IL or missing references) //IL_263b: Unknown result type (might be due to invalid IL or missing references) //IL_2645: Unknown result type (might be due to invalid IL or missing references) //IL_264a: Unknown result type (might be due to invalid IL or missing references) //IL_2650: Unknown result type (might be due to invalid IL or missing references) //IL_2655: Unknown result type (might be due to invalid IL or missing references) //IL_265b: Unknown result type (might be due to invalid IL or missing references) //IL_2665: Unknown result type (might be due to invalid IL or missing references) //IL_266a: Unknown result type (might be due to invalid IL or missing references) //IL_2676: Unknown result type (might be due to invalid IL or missing references) //IL_10ec: Unknown result type (might be due to invalid IL or missing references) //IL_10f2: Unknown result type (might be due to invalid IL or missing references) //IL_10f7: Unknown result type (might be due to invalid IL or missing references) //IL_10fd: Unknown result type (might be due to invalid IL or missing references) //IL_1102: Unknown result type (might be due to invalid IL or missing references) //IL_1108: Unknown result type (might be due to invalid IL or missing references) //IL_1112: Unknown result type (might be due to invalid IL or missing references) //IL_1117: Unknown result type (might be due to invalid IL or missing references) //IL_111d: Unknown result type (might be due to invalid IL or missing references) //IL_1122: Unknown result type (might be due to invalid IL or missing references) //IL_1128: Unknown result type (might be due to invalid IL or missing references) //IL_1132: Unknown result type (might be due to invalid IL or missing references) //IL_1137: Unknown result type (might be due to invalid IL or missing references) //IL_1142: Unknown result type (might be due to invalid IL or missing references) //IL_1148: Unknown result type (might be due to invalid IL or missing references) //IL_114d: Unknown result type (might be due to invalid IL or missing references) //IL_1153: Unknown result type (might be due to invalid IL or missing references) //IL_1158: Unknown result type (might be due to invalid IL or missing references) //IL_115e: Unknown result type (might be due to invalid IL or missing references) //IL_1163: Unknown result type (might be due to invalid IL or missing references) //IL_1169: Unknown result type (might be due to invalid IL or missing references) //IL_1173: Unknown result type (might be due to invalid IL or missing references) //IL_1178: Unknown result type (might be due to invalid IL or missing references) //IL_1184: Unknown result type (might be due to invalid IL or missing references) //IL_3b58: Unknown result type (might be due to invalid IL or missing references) //IL_3b5e: Unknown result type (might be due to invalid IL or missing references) //IL_3b63: Unknown result type (might be due to invalid IL or missing references) //IL_3b69: Unknown result type (might be due to invalid IL or missing references) //IL_3b6e: Unknown result type (might be due to invalid IL or missing references) //IL_3b74: Unknown result type (might be due to invalid IL or missing references) //IL_3b79: Unknown result type (might be due to invalid IL or missing references) //IL_3b7f: Unknown result type (might be due to invalid IL or missing references) //IL_3b89: Unknown result type (might be due to invalid IL or missing references) //IL_3b8e: Unknown result type (might be due to invalid IL or missing references) //IL_3b99: Unknown result type (might be due to invalid IL or missing references) //IL_3b9f: Unknown result type (might be due to invalid IL or missing references) //IL_3ba4: Unknown result type (might be due to invalid IL or missing references) //IL_3baa: Unknown result type (might be due to invalid IL or missing references) //IL_3baf: Unknown result type (might be due to invalid IL or missing references) //IL_3bb5: Unknown result type (might be due to invalid IL or missing references) //IL_3bbf: Unknown result type (might be due to invalid IL or missing references) //IL_3bc4: Unknown result type (might be due to invalid IL or missing references) //IL_3bca: Unknown result type (might be due to invalid IL or missing references) //IL_3bcf: Unknown result type (might be due to invalid IL or missing references) //IL_3bd5: Unknown result type (might be due to invalid IL or missing references) //IL_3bdf: Unknown result type (might be due to invalid IL or missing references) //IL_3be4: Unknown result type (might be due to invalid IL or missing references) //IL_3bf0: Unknown result type (might be due to invalid IL or missing references) //IL_2690: Unknown result type (might be due to invalid IL or missing references) //IL_2696: Unknown result type (might be due to invalid IL or missing references) //IL_269b: Unknown result type (might be due to invalid IL or missing references) //IL_26a1: Unknown result type (might be due to invalid IL or missing references) //IL_26a6: Unknown result type (might be due to invalid IL or missing references) //IL_26ac: Unknown result type (might be due to invalid IL or missing references) //IL_26b6: Unknown result type (might be due to invalid IL or missing references) //IL_26bb: Unknown result type (might be due to invalid IL or missing references) //IL_26c1: Unknown result type (might be due to invalid IL or missing references) //IL_26c6: Unknown result type (might be due to invalid IL or missing references) //IL_26d1: Unknown result type (might be due to invalid IL or missing references) //IL_26d7: Unknown result type (might be due to invalid IL or missing references) //IL_26dc: Unknown result type (might be due to invalid IL or missing references) //IL_26e2: Unknown result type (might be due to invalid IL or missing references) //IL_26e7: Unknown result type (might be due to invalid IL or missing references) //IL_26ed: Unknown result type (might be due to invalid IL or missing references) //IL_26f2: Unknown result type (might be due to invalid IL or missing references) //IL_26fe: Unknown result type (might be due to invalid IL or missing references) //IL_119e: Unknown result type (might be due to invalid IL or missing references) //IL_11a4: Unknown result type (might be due to invalid IL or missing references) //IL_11a9: Unknown result type (might be due to invalid IL or missing references) //IL_11af: Unknown result type (might be due to invalid IL or missing references) //IL_11b4: Unknown result type (might be due to invalid IL or missing references) //IL_11ba: Unknown result type (might be due to invalid IL or missing references) //IL_11c4: Unknown result type (might be due to invalid IL or missing references) //IL_11c9: Unknown result type (might be due to invalid IL or missing references) //IL_11cf: Unknown result type (might be due to invalid IL or missing references) //IL_11d4: Unknown result type (might be due to invalid IL or missing references) //IL_11da: Unknown result type (might be due to invalid IL or missing references) //IL_11e4: Unknown result type (might be due to invalid IL or missing references) //IL_11e9: Unknown result type (might be due to invalid IL or missing references) //IL_11f4: Unknown result type (might be due to invalid IL or missing references) //IL_11fa: Unknown result type (might be due to invalid IL or missing references) //IL_11ff: Unknown result type (might be due to invalid IL or missing references) //IL_1205: Unknown result type (might be due to invalid IL or missing references) //IL_120a: Unknown result type (might be due to invalid IL or missing references) //IL_1210: Unknown result type (might be due to invalid IL or missing references) //IL_1215: Unknown result type (might be due to invalid IL or missing references) //IL_121b: Unknown result type (might be due to invalid IL or missing references) //IL_1225: Unknown result type (might be due to invalid IL or missing references) //IL_122a: Unknown result type (might be due to invalid IL or missing references) //IL_1236: Unknown result type (might be due to invalid IL or missing references) //IL_3c0a: Unknown result type (might be due to invalid IL or missing references) //IL_3c10: Unknown result type (might be due to invalid IL or missing references) //IL_3c15: Unknown result type (might be due to invalid IL or missing references) //IL_3c1b: Unknown result type (might be due to invalid IL or missing references) //IL_3c20: Unknown result type (might be due to invalid IL or missing references) //IL_3c26: Unknown result type (might be due to invalid IL or missing references) //IL_3c2b: Unknown result type (might be due to invalid IL or missing references) //IL_3c31: Unknown result type (might be due to invalid IL or missing references) //IL_3c3b: Unknown result type (might be due to invalid IL or missing references) //IL_3c40: Unknown result type (might be due to invalid IL or missing references) //IL_3c4b: Unknown result type (might be due to invalid IL or missing references) //IL_3c51: Unknown result type (might be due to invalid IL or missing references) //IL_3c56: Unknown result type (might be due to invalid IL or missing references) //IL_3c5c: Unknown result type (might be due to invalid IL or missing references) //IL_3c61: Unknown result type (might be due to invalid IL or missing references) //IL_3c67: Unknown result type (might be due to invalid IL or missing references) //IL_3c71: Unknown result type (might be due to invalid IL or missing references) //IL_3c76: Unknown result type (might be due to invalid IL or missing references) //IL_3c7c: Unknown result type (might be due to invalid IL or missing references) //IL_3c81: Unknown result type (might be due to invalid IL or missing references) //IL_3c87: Unknown result type (might be due to invalid IL or missing references) //IL_3c91: Unknown result type (might be due to invalid IL or missing references) //IL_3c96: Unknown result type (might be due to invalid IL or missing references) //IL_3ca2: Unknown result type (might be due to invalid IL or missing references) //IL_2718: Unknown result type (might be due to invalid IL or missing references) //IL_271e: Unknown result type (might be due to invalid IL or missing references) //IL_2723: Unknown result type (might be due to invalid IL or missing references) //IL_2729: Unknown result type (might be due to invalid IL or missing references) //IL_272e: Unknown result type (might be due to invalid IL or missing references) //IL_2734: Unknown result type (might be due to invalid IL or missing references) //IL_273e: Unknown result type (might be due to invalid IL or missing references) //IL_2743: Unknown result type (might be due to invalid IL or missing references) //IL_2749: Unknown result type (might be due to invalid IL or missing references) //IL_274e: Unknown result type (might be due to invalid IL or missing references) //IL_2754: Unknown result type (might be due to invalid IL or missing references) //IL_275e: Unknown result type (might be due to invalid IL or missing references) //IL_2763: Unknown result type (might be due to invalid IL or missing references) //IL_276e: Unknown result type (might be due to invalid IL or missing references) //IL_2774: Unknown result type (might be due to invalid IL or missing references) //IL_2779: Unknown result type (might be due to invalid IL or missing references) //IL_277f: Unknown result type (might be due to invalid IL or missing references) //IL_2784: Unknown result type (might be due to invalid IL or missing references) //IL_278a: Unknown result type (might be due to invalid IL or missing references) //IL_278f: Unknown result type (might be due to invalid IL or missing references) //IL_2795: Unknown result type (might be due to invalid IL or missing references) //IL_279f: Unknown result type (might be due to invalid IL or missing references) //IL_27a4: Unknown result type (might be due to invalid IL or missing references) //IL_27b0: Unknown result type (might be due to invalid IL or missing references) //IL_1250: Unknown result type (might be due to invalid IL or missing references) //IL_1256: Unknown result type (might be due to invalid IL or missing references) //IL_125b: Unknown result type (might be due to invalid IL or missing references) //IL_1261: Unknown result type (might be due to invalid IL or missing references) //IL_1266: Unknown result type (might be due to invalid IL or missing references) //IL_126c: Unknown result type (might be due to invalid IL or missing references) //IL_1276: Unknown result type (might be due to invalid IL or missing references) //IL_127b: Unknown result type (might be due to invalid IL or missing references) //IL_1281: Unknown result type (might be due to invalid IL or missing references) //IL_1286: Unknown result type (might be due to invalid IL or missing references) //IL_128c: Unknown result type (might be due to invalid IL or missing references) //IL_1296: Unknown result type (might be due to invalid IL or missing references) //IL_129b: Unknown result type (might be due to invalid IL or missing references) //IL_12a6: Unknown result type (might be due to invalid IL or missing references) //IL_12ac: Unknown result type (might be due to invalid IL or missing references) //IL_12b1: Unknown result type (might be due to invalid IL or missing references) //IL_12b7: Unknown result type (might be due to invalid IL or missing references) //IL_12bc: Unknown result type (might be due to invalid IL or missing references) //IL_12c2: Unknown result type (might be due to invalid IL or missing references) //IL_12c7: Unknown result type (might be due to invalid IL or missing references) //IL_12cd: Unknown result type (might be due to invalid IL or missing references) //IL_12d7: Unknown result type (might be due to invalid IL or missing references) //IL_12dc: Unknown result type (might be due to invalid IL or missing references) //IL_12e8: Unknown result type (might be due to invalid IL or missing references) //IL_3cbc: Unknown result type (might be due to invalid IL or missing references) //IL_3cc2: Unknown result type (might be due to invalid IL or missing references) //IL_3cc7: Unknown result type (might be due to invalid IL or missing references) //IL_3ccd: Unknown result type (might be due to invalid IL or missing references) //IL_3cd2: Unknown result type (might be due to invalid IL or missing references) //IL_3cd8: Unknown result type (might be due to invalid IL or missing references) //IL_3ce2: Unknown result type (might be due to invalid IL or missing references) //IL_3ce7: Unknown result type (might be due to invalid IL or missing references) //IL_3ced: Unknown result type (might be due to invalid IL or missing references) //IL_3cf2: Unknown result type (might be due to invalid IL or missing references) //IL_3cfd: Unknown result type (might be due to invalid IL or missing references) //IL_3d03: Unknown result type (might be due to invalid IL or missing references) //IL_3d08: Unknown result type (might be due to invalid IL or missing references) //IL_3d0e: Unknown result type (might be due to invalid IL or missing references) //IL_3d13: Unknown result type (might be due to invalid IL or missing references) //IL_3d19: Unknown result type (might be due to invalid IL or missing references) //IL_3d1e: Unknown result type (might be due to invalid IL or missing references) //IL_3d2a: Unknown result type (might be due to invalid IL or missing references) //IL_27ca: Unknown result type (might be due to invalid IL or missing references) //IL_27d0: Unknown result type (might be due to invalid IL or missing references) //IL_27d5: Unknown result type (might be due to invalid IL or missing references) //IL_27db: Unknown result type (might be due to invalid IL or missing references) //IL_27e0: Unknown result type (might be due to invalid IL or missing references) //IL_27e6: Unknown result type (might be due to invalid IL or missing references) //IL_27f0: Unknown result type (might be due to invalid IL or missing references) //IL_27f5: Unknown result type (might be due to invalid IL or missing references) //IL_27fb: Unknown result type (might be due to invalid IL or missing references) //IL_2800: Unknown result type (might be due to invalid IL or missing references) //IL_2806: Unknown result type (might be due to invalid IL or missing references) //IL_2810: Unknown result type (might be due to invalid IL or missing references) //IL_2815: Unknown result type (might be due to invalid IL or missing references) //IL_2820: Unknown result type (might be due to invalid IL or missing references) //IL_2826: Unknown result type (might be due to invalid IL or missing references) //IL_282b: Unknown result type (might be due to invalid IL or missing references) //IL_2831: Unknown result type (might be due to invalid IL or missing references) //IL_2836: Unknown result type (might be due to invalid IL or missing references) //IL_283c: Unknown result type (might be due to invalid IL or missing references) //IL_2841: Unknown result type (might be due to invalid IL or missing references) //IL_2847: Unknown result type (might be due to invalid IL or missing references) //IL_2851: Unknown result type (might be due to invalid IL or missing references) //IL_2856: Unknown result type (might be due to invalid IL or missing references) //IL_2862: Unknown result type (might be due to invalid IL or missing references) //IL_1302: Unknown result type (might be due to invalid IL or missing references) //IL_1308: Unknown result type (might be due to invalid IL or missing references) //IL_130d: Unknown result type (might be due to invalid IL or missing references) //IL_1313: Unknown result type (might be due to invalid IL or missing references) //IL_1318: Unknown result type (might be due to invalid IL or missing references) //IL_131e: Unknown result type (might be due to invalid IL or missing references) //IL_1328: Unknown result type (might be due to invalid IL or missing references) //IL_132d: Unknown result type (might be due to invalid IL or missing references) //IL_1333: Unknown result type (might be due to invalid IL or missing references) //IL_1338: Unknown result type (might be due to invalid IL or missing references) //IL_133e: Unknown result type (might be due to invalid IL or missing references) //IL_1348: Unknown result type (might be due to invalid IL or missing references) //IL_134d: Unknown result type (might be due to invalid IL or missing references) //IL_1358: Unknown result type (might be due to invalid IL or missing references) //IL_135e: Unknown result type (might be due to invalid IL or missing references) //IL_1363: Unknown result type (might be due to invalid IL or missing references) //IL_1369: Unknown result type (might be due to invalid IL or missing references) //IL_136e: Unknown result type (might be due to invalid IL or missing references) //IL_1374: Unknown result type (might be due to invalid IL or missing references) //IL_1379: Unknown result type (might be due to invalid IL or missing references) //IL_137f: Unknown result type (might be due to invalid IL or missing references) //IL_1389: Unknown result type (might be due to invalid IL or missing references) //IL_138e: Unknown result type (might be due to invalid IL or missing references) //IL_139a: Unknown result type (might be due to invalid IL or missing references) //IL_3d44: Unknown result type (might be due to invalid IL or missing references) //IL_3d4a: Unknown result type (might be due to invalid IL or missing references) //IL_3d4f: Unknown result type (might be due to invalid IL or missing references) //IL_3d55: Unknown result type (might be due to invalid IL or missing references) //IL_3d5a: Unknown result type (might be due to invalid IL or missing references) //IL_3d60: Unknown result type (might be due to invalid IL or missing references) //IL_3d6a: Unknown result type (might be due to invalid IL or missing references) //IL_3d6f: Unknown result type (might be due to invalid IL or missing references) //IL_3d75: Unknown result type (might be due to invalid IL or missing references) //IL_3d7a: Unknown result type (might be due to invalid IL or missing references) //IL_3d80: Unknown result type (might be due to invalid IL or missing references) //IL_3d8a: Unknown result type (might be due to invalid IL or missing references) //IL_3d8f: Unknown result type (might be due to invalid IL or missing references) //IL_3d9a: Unknown result type (might be due to invalid IL or missing references) //IL_3da0: Unknown result type (might be due to invalid IL or missing references) //IL_3da5: Unknown result type (might be due to invalid IL or missing references) //IL_3dab: Unknown result type (might be due to invalid IL or missing references) //IL_3db0: Unknown result type (might be due to invalid IL or missing references) //IL_3db6: Unknown result type (might be due to invalid IL or missing references) //IL_3dbb: Unknown result type (might be due to invalid IL or missing references) //IL_3dc1: Unknown result type (might be due to invalid IL or missing references) //IL_3dcb: Unknown result type (might be due to invalid IL or missing references) //IL_3dd0: Unknown result type (might be due to invalid IL or missing references) //IL_3ddc: Unknown result type (might be due to invalid IL or missing references) //IL_287c: Unknown result type (might be due to invalid IL or missing references) //IL_2882: Unknown result type (might be due to invalid IL or missing references) //IL_2887: Unknown result type (might be due to invalid IL or missing references) //IL_288d: Unknown result type (might be due to invalid IL or missing references) //IL_2892: Unknown result type (might be due to invalid IL or missing references) //IL_2898: Unknown result type (might be due to invalid IL or missing references) //IL_28a2: Unknown result type (might be due to invalid IL or missing references) //IL_28a7: Unknown result type (might be due to invalid IL or missing references) //IL_28ad: Unknown result type (might be due to invalid IL or missing references) //IL_28b2: Unknown result type (might be due to invalid IL or missing references) //IL_28b8: Unknown result type (might be due to invalid IL or missing references) //IL_28c2: Unknown result type (might be due to invalid IL or missing references) //IL_28c7: Unknown result type (might be due to invalid IL or missing references) //IL_28d2: Unknown result type (might be due to invalid IL or missing references) //IL_28d8: Unknown result type (might be due to invalid IL or missing references) //IL_28dd: Unknown result type (might be due to invalid IL or missing references) //IL_28e3: Unknown result type (might be due to invalid IL or missing references) //IL_28e8: Unknown result type (might be due to invalid IL or missing references) //IL_28ee: Unknown result type (might be due to invalid IL or missing references) //IL_28f3: Unknown result type (might be due to invalid IL or missing references) //IL_28f9: Unknown result type (might be due to invalid IL or missing references) //IL_2903: Unknown result type (might be due to invalid IL or missing references) //IL_2908: Unknown result type (might be due to invalid IL or missing references) //IL_2914: Unknown result type (might be due to invalid IL or missing references) //IL_13b4: Unknown result type (might be due to invalid IL or missing references) //IL_13ba: Unknown result type (might be due to invalid IL or missing references) //IL_13bf: Unknown result type (might be due to invalid IL or missing references) //IL_13c5: Unknown result type (might be due to invalid IL or missing references) //IL_13ca: Unknown result type (might be due to invalid IL or missing references) //IL_13d0: Unknown result type (might be due to invalid IL or missing references) //IL_13da: Unknown result type (might be due to invalid IL or missing references) //IL_13df: Unknown result type (might be due to invalid IL or missing references) //IL_13e5: Unknown result type (might be due to invalid IL or missing references) //IL_13ea: Unknown result type (might be due to invalid IL or missing references) //IL_13f0: Unknown result type (might be due to invalid IL or missing references) //IL_13fa: Unknown result type (might be due to invalid IL or missing references) //IL_13ff: Unknown result type (might be due to invalid IL or missing references) //IL_140a: Unknown result type (might be due to invalid IL or missing references) //IL_1410: Unknown result type (might be due to invalid IL or missing references) //IL_1415: Unknown result type (might be due to invalid IL or missing references) //IL_141b: Unknown result type (might be due to invalid IL or missing references) //IL_1420: Unknown result type (might be due to invalid IL or missing references) //IL_1426: Unknown result type (might be due to invalid IL or missing references) //IL_142b: Unknown result type (might be due to invalid IL or missing references) //IL_1431: Unknown result type (might be due to invalid IL or missing references) //IL_143b: Unknown result type (might be due to invalid IL or missing references) //IL_1440: Unknown result type (might be due to invalid IL or missing references) //IL_144c: Unknown result type (might be due to invalid IL or missing references) //IL_3df6: Unknown result type (might be due to invalid IL or missing references) //IL_3dfc: Unknown result type (might be due to invalid IL or missing references) //IL_3e01: Unknown result type (might be due to invalid IL or missing references) //IL_3e07: Unknown result type (might be due to invalid IL or missing references) //IL_3e0c: Unknown result type (might be due to invalid IL or missing references) //IL_3e12: Unknown result type (might be due to invalid IL or missing references) //IL_3e1c: Unknown result type (might be due to invalid IL or missing references) //IL_3e21: Unknown result type (might be due to invalid IL or missing references) //IL_3e27: Unknown result type (might be due to invalid IL or missing references) //IL_3e2c: Unknown result type (might be due to invalid IL or missing references) //IL_3e32: Unknown result type (might be due to invalid IL or missing references) //IL_3e3c: Unknown result type (might be due to invalid IL or missing references) //IL_3e41: Unknown result type (might be due to invalid IL or missing references) //IL_3e4c: Unknown result type (might be due to invalid IL or missing references) //IL_3e52: Unknown result type (might be due to invalid IL or missing references) //IL_3e57: Unknown result type (might be due to invalid IL or missing references) //IL_3e5d: Unknown result type (might be due to invalid IL or missing references) //IL_3e62: Unknown result type (might be due to invalid IL or missing references) //IL_3e68: Unknown result type (might be due to invalid IL or missing references) //IL_3e6d: Unknown result type (might be due to invalid IL or missing references) //IL_3e73: Unknown result type (might be due to invalid IL or missing references) //IL_3e7d: Unknown result type (might be due to invalid IL or missing references) //IL_3e82: Unknown result type (might be due to invalid IL or missing references) //IL_3e8e: Unknown result type (might be due to invalid IL or missing references) //IL_292e: Unknown result type (might be due to invalid IL or missing references) //IL_2934: Unknown result type (might be due to invalid IL or missing references) //IL_2939: Unknown result type (might be due to invalid IL or missing references) //IL_293f: Unknown result type (might be due to invalid IL or missing references) //IL_2944: Unknown result type (might be due to invalid IL or missing references) //IL_294a: Unknown result type (might be due to invalid IL or missing references) //IL_2954: Unknown result type (might be due to invalid IL or missing references) //IL_2959: Unknown result type (might be due to invalid IL or missing references) //IL_295f: Unknown result type (might be due to invalid IL or missing references) //IL_2964: Unknown result type (might be due to invalid IL or missing references) //IL_296a: Unknown result type (might be due to invalid IL or missing references) //IL_2974: Unknown result type (might be due to invalid IL or missing references) //IL_2979: Unknown result type (might be due to invalid IL or missing references) //IL_2984: Unknown result type (might be due to invalid IL or missing references) //IL_298a: Unknown result type (might be due to invalid IL or missing references) //IL_298f: Unknown result type (might be due to invalid IL or missing references) //IL_2995: Unknown result type (might be due to invalid IL or missing references) //IL_299a: Unknown result type (might be due to invalid IL or missing references) //IL_29a0: Unknown result type (might be due to invalid IL or missing references) //IL_29a5: Unknown result type (might be due to invalid IL or missing references) //IL_29ab: Unknown result type (might be due to invalid IL or missing references) //IL_29b5: Unknown result type (might be due to invalid IL or missing references) //IL_29ba: Unknown result type (might be due to invalid IL or missing references) //IL_29c6: Unknown result type (might be due to invalid IL or missing references) //IL_1466: Unknown result type (might be due to invalid IL or missing references) //IL_146c: Unknown result type (might be due to invalid IL or missing references) //IL_1471: Unknown result type (might be due to invalid IL or missing references) //IL_1477: Unknown result type (might be due to invalid IL or missing references) //IL_147c: Unknown result type (might be due to invalid IL or missing references) //IL_1482: Unknown result type (might be due to invalid IL or missing references) //IL_148c: Unknown result type (might be due to invalid IL or missing references) //IL_1491: Unknown result type (might be due to invalid IL or missing references) //IL_1497: Unknown result type (might be due to invalid IL or missing references) //IL_149c: Unknown result type (might be due to invalid IL or missing references) //IL_14a2: Unknown result type (might be due to invalid IL or missing references) //IL_14ac: Unknown result type (might be due to invalid IL or missing references) //IL_14b1: Unknown result type (might be due to invalid IL or missing references) //IL_14bc: Unknown result type (might be due to invalid IL or missing references) //IL_14c2: Unknown result type (might be due to invalid IL or missing references) //IL_14c7: Unknown result type (might be due to invalid IL or missing references) //IL_14cd: Unknown result type (might be due to invalid IL or missing references) //IL_14d2: Unknown result type (might be due to invalid IL or missing references) //IL_14d8: Unknown result type (might be due to invalid IL or missing references) //IL_14dd: Unknown result type (might be due to invalid IL or missing references) //IL_14e3: Unknown result type (might be due to invalid IL or missing references) //IL_14ed: Unknown result type (might be due to invalid IL or missing references) //IL_14f2: Unknown result type (might be due to invalid IL or missing references) //IL_14fe: Unknown result type (might be due to invalid IL or missing references) //IL_3ea8: Unknown result type (might be due to invalid IL or missing references) //IL_3eae: Unknown result type (might be due to invalid IL or missing references) //IL_3eb3: Unknown result type (might be due to invalid IL or missing references) //IL_3eb9: Unknown result type (might be due to invalid IL or missing references) //IL_3ebe: Unknown result type (might be due to invalid IL or missing references) //IL_3ec4: Unknown result type (might be due to invalid IL or missing references) //IL_3ece: Unknown result type (might be due to invalid IL or missing references) //IL_3ed3: Unknown result type (might be due to invalid IL or missing references) //IL_3ed9: Unknown result type (might be due to invalid IL or missing references) //IL_3ede: Unknown result type (might be due to invalid IL or missing references) //IL_3ee4: Unknown result type (might be due to invalid IL or missing references) //IL_3eee: Unknown result type (might be due to invalid IL or missing references) //IL_3ef3: Unknown result type (might be due to invalid IL or missing references) //IL_3efe: Unknown result type (might be due to invalid IL or missing references) //IL_3f04: Unknown result type (might be due to invalid IL or missing references) //IL_3f09: Unknown result type (might be due to invalid IL or missing references) //IL_3f0f: Unknown result type (might be due to invalid IL or missing references) //IL_3f14: Unknown result type (might be due to invalid IL or missing references) //IL_3f1a: Unknown result type (might be due to invalid IL or missing references) //IL_3f1f: Unknown result type (might be due to invalid IL or missing references) //IL_3f25: Unknown result type (might be due to invalid IL or missing references) //IL_3f2f: Unknown result type (might be due to invalid IL or missing references) //IL_3f34: Unknown result type (might be due to invalid IL or missing references) //IL_3f40: Unknown result type (might be due to invalid IL or missing references) //IL_29e0: Unknown result type (might be due to invalid IL or missing references) //IL_29e6: Unknown result type (might be due to invalid IL or missing references) //IL_29eb: Unknown result type (might be due to invalid IL or missing references) //IL_29f1: Unknown result type (might be due to invalid IL or missing references) //IL_29f6: Unknown result type (might be due to invalid IL or missing references) //IL_29fc: Unknown result type (might be due to invalid IL or missing references) //IL_2a06: Unknown result type (might be due to invalid IL or missing references) //IL_2a0b: Unknown result type (might be due to invalid IL or missing references) //IL_2a11: Unknown result type (might be due to invalid IL or missing references) //IL_2a16: Unknown result type (might be due to invalid IL or missing references) //IL_2a1c: Unknown result type (might be due to invalid IL or missing references) //IL_2a26: Unknown result type (might be due to invalid IL or missing references) //IL_2a2b: Unknown result type (might be due to invalid IL or missing references) //IL_2a36: Unknown result type (might be due to invalid IL or missing references) //IL_2a3c: Unknown result type (might be due to invalid IL or missing references) //IL_2a41: Unknown result type (might be due to invalid IL or missing references) //IL_2a47: Unknown result type (might be due to invalid IL or missing references) //IL_2a4c: Unknown result type (might be due to invalid IL or missing references) //IL_2a52: Unknown result type (might be due to invalid IL or missing references) //IL_2a57: Unknown result type (might be due to invalid IL or missing references) //IL_2a5d: Unknown result type (might be due to invalid IL or missing references) //IL_2a67: Unknown result type (might be due to invalid IL or missing references) //IL_2a6c: Unknown result type (might be due to invalid IL or missing references) //IL_2a78: Unknown result type (might be due to invalid IL or missing references) //IL_1518: Unknown result type (might be due to invalid IL or missing references) //IL_151e: Unknown result type (might be due to invalid IL or missing references) //IL_1523: Unknown result type (might be due to invalid IL or missing references) //IL_1529: Unknown result type (might be due to invalid IL or missing references) //IL_152e: Unknown result type (might be due to invalid IL or missing references) //IL_1534: Unknown result type (might be due to invalid IL or missing references) //IL_153e: Unknown result type (might be due to invalid IL or missing references) //IL_1543: Unknown result type (might be due to invalid IL or missing references) //IL_1549: Unknown result type (might be due to invalid IL or missing references) //IL_154e: Unknown result type (might be due to invalid IL or missing references) //IL_1554: Unknown result type (might be due to invalid IL or missing references) //IL_155e: Unknown result type (might be due to invalid IL or missing references) //IL_1563: Unknown result type (might be due to invalid IL or missing references) //IL_156e: Unknown result type (might be due to invalid IL or missing references) //IL_1574: Unknown result type (might be due to invalid IL or missing references) //IL_1579: Unknown result type (might be due to invalid IL or missing references) //IL_157f: Unknown result type (might be due to invalid IL or missing references) //IL_1584: Unknown result type (might be due to invalid IL or missing references) //IL_158a: Unknown result type (might be due to invalid IL or missing references) //IL_158f: Unknown result type (might be due to invalid IL or missing references) //IL_1595: Unknown result type (might be due to invalid IL or missing references) //IL_159f: Unknown result type (might be due to invalid IL or missing references) //IL_15a4: Unknown result type (might be due to invalid IL or missing references) //IL_15b0: Unknown result type (might be due to invalid IL or missing references) //IL_3f5a: Unknown result type (might be due to invalid IL or missing references) //IL_3f60: Unknown result type (might be due to invalid IL or missing references) //IL_3f65: Unknown result type (might be due to invalid IL or missing references) //IL_3f6b: Unknown result type (might be due to invalid IL or missing references) //IL_3f70: Unknown result type (might be due to invalid IL or missing references) //IL_3f76: Unknown result type (might be due to invalid IL or missing references) //IL_3f80: Unknown result type (might be due to invalid IL or missing references) //IL_3f85: Unknown result type (might be due to invalid IL or missing references) //IL_3f8b: Unknown result type (might be due to invalid IL or missing references) //IL_3f90: Unknown result type (might be due to invalid IL or missing references) //IL_3f96: Unknown result type (might be due to invalid IL or missing references) //IL_3fa0: Unknown result type (might be due to invalid IL or missing references) //IL_3fa5: Unknown result type (might be due to invalid IL or missing references) //IL_3fb0: Unknown result type (might be due to invalid IL or missing references) //IL_3fb6: Unknown result type (might be due to invalid IL or missing references) //IL_3fbb: Unknown result type (might be due to invalid IL or missing references) //IL_3fc1: Unknown result type (might be due to invalid IL or missing references) //IL_3fc6: Unknown result type (might be due to invalid IL or missing references) //IL_3fcc: Unknown result type (might be due to invalid IL or missing references) //IL_3fd1: Unknown result type (might be due to invalid IL or missing references) //IL_3fd7: Unknown result type (might be due to invalid IL or missing references) //IL_3fe1: Unknown result type (might be due to invalid IL or missing references) //IL_3fe6: Unknown result type (might be due to invalid IL or missing references) //IL_3ff2: Unknown result type (might be due to invalid IL or missing references) //IL_2a92: Unknown result type (might be due to invalid IL or missing references) //IL_2a98: Unknown result type (might be due to invalid IL or missing references) //IL_2a9d: Unknown result type (might be due to invalid IL or missing references) //IL_2aa3: Unknown result type (might be due to invalid IL or missing references) //IL_2aa8: Unknown result type (might be due to invalid IL or missing references) //IL_2aae: Unknown result type (might be due to invalid IL or missing references) //IL_2ab8: Unknown result type (might be due to invalid IL or missing references) //IL_2abd: Unknown result type (might be due to invalid IL or missing references) //IL_2ac3: Unknown result type (might be due to invalid IL or missing references) //IL_2ac8: Unknown result type (might be due to invalid IL or missing references) //IL_2ace: Unknown result type (might be due to invalid IL or missing references) //IL_2ad8: Unknown result type (might be due to invalid IL or missing references) //IL_2add: Unknown result type (might be due to invalid IL or missing references) //IL_2ae8: Unknown result type (might be due to invalid IL or missing references) //IL_2aee: Unknown result type (might be due to invalid IL or missing references) //IL_2af3: Unknown result type (might be due to invalid IL or missing references) //IL_2af9: Unknown result type (might be due to invalid IL or missing references) //IL_2afe: Unknown result type (might be due to invalid IL or missing references) //IL_2b04: Unknown result type (might be due to invalid IL or missing references) //IL_2b09: Unknown result type (might be due to invalid IL or missing references) //IL_2b0f: Unknown result type (might be due to invalid IL or missing references) //IL_2b19: Unknown result type (might be due to invalid IL or missing references) //IL_2b1e: Unknown result type (might be due to invalid IL or missing references) //IL_2b2a: Unknown result type (might be due to invalid IL or missing references) //IL_400c: Unknown result type (might be due to invalid IL or missing references) //IL_4012: Unknown result type (might be due to invalid IL or missing references) //IL_4017: Unknown result type (might be due to invalid IL or missing references) //IL_401d: Unknown result type (might be due to invalid IL or missing references) //IL_4022: Unknown result type (might be due to invalid IL or missing references) //IL_4028: Unknown result type (might be due to invalid IL or missing references) //IL_4032: Unknown result type (might be due to invalid IL or missing references) //IL_4037: Unknown result type (might be due to invalid IL or missing references) //IL_403d: Unknown result type (might be due to invalid IL or missing references) //IL_4042: Unknown result type (might be due to invalid IL or missing references) //IL_4048: Unknown result type (might be due to invalid IL or missing references) //IL_4052: Unknown result type (might be due to invalid IL or missing references) //IL_4057: Unknown result type (might be due to invalid IL or missing references) //IL_4062: Unknown result type (might be due to invalid IL or missing references) //IL_4068: Unknown result type (might be due to invalid IL or missing references) //IL_406d: Unknown result type (might be due to invalid IL or missing references) //IL_4073: Unknown result type (might be due to invalid IL or missing references) //IL_4078: Unknown result type (might be due to invalid IL or missing references) //IL_407e: Unknown result type (might be due to invalid IL or missing references) //IL_4083: Unknown result type (might be due to invalid IL or missing references) //IL_4089: Unknown result type (might be due to invalid IL or missing references) //IL_4093: Unknown result type (might be due to invalid IL or missing references) //IL_4098: Unknown result type (might be due to invalid IL or missing references) //IL_40a4: Unknown result type (might be due to invalid IL or missing references) //IL_2b44: Unknown result type (might be due to invalid IL or missing references) //IL_2b4a: Unknown result type (might be due to invalid IL or missing references) //IL_2b4f: Unknown result type (might be due to invalid IL or missing references) //IL_2b55: Unknown result type (might be due to invalid IL or missing references) //IL_2b5a: Unknown result type (might be due to invalid IL or missing references) //IL_2b60: Unknown result type (might be due to invalid IL or missing references) //IL_2b6a: Unknown result type (might be due to invalid IL or missing references) //IL_2b6f: Unknown result type (might be due to invalid IL or missing references) //IL_2b75: Unknown result type (might be due to invalid IL or missing references) //IL_2b7a: Unknown result type (might be due to invalid IL or missing references) //IL_2b80: Unknown result type (might be due to invalid IL or missing references) //IL_2b8a: Unknown result type (might be due to invalid IL or missing references) //IL_2b8f: Unknown result type (might be due to invalid IL or missing references) //IL_2b9a: Unknown result type (might be due to invalid IL or missing references) //IL_2ba0: Unknown result type (might be due to invalid IL or missing references) //IL_2ba5: Unknown result type (might be due to invalid IL or missing references) //IL_2bab: Unknown result type (might be due to invalid IL or missing references) //IL_2bb0: Unknown result type (might be due to invalid IL or missing references) //IL_2bb6: Unknown result type (might be due to invalid IL or missing references) //IL_2bbb: Unknown result type (might be due to invalid IL or missing references) //IL_2bc1: Unknown result type (might be due to invalid IL or missing references) //IL_2bcb: Unknown result type (might be due to invalid IL or missing references) //IL_2bd0: Unknown result type (might be due to invalid IL or missing references) //IL_2bdc: Unknown result type (might be due to invalid IL or missing references) //IL_40be: Unknown result type (might be due to invalid IL or missing references) //IL_40c4: Unknown result type (might be due to invalid IL or missing references) //IL_40c9: Unknown result type (might be due to invalid IL or missing references) //IL_40cf: Unknown result type (might be due to invalid IL or missing references) //IL_40d4: Unknown result type (might be due to invalid IL or missing references) //IL_40da: Unknown result type (might be due to invalid IL or missing references) //IL_40e4: Unknown result type (might be due to invalid IL or missing references) //IL_40e9: Unknown result type (might be due to invalid IL or missing references) //IL_40ef: Unknown result type (might be due to invalid IL or missing references) //IL_40f4: Unknown result type (might be due to invalid IL or missing references) //IL_40fa: Unknown result type (might be due to invalid IL or missing references) //IL_4104: Unknown result type (might be due to invalid IL or missing references) //IL_4109: Unknown result type (might be due to invalid IL or missing references) //IL_4114: Unknown result type (might be due to invalid IL or missing references) //IL_411a: Unknown result type (might be due to invalid IL or missing references) //IL_411f: Unknown result type (might be due to invalid IL or missing references) //IL_4125: Unknown result type (might be due to invalid IL or missing references) //IL_412a: Unknown result type (might be due to invalid IL or missing references) //IL_4130: Unknown result type (might be due to invalid IL or missing references) //IL_4135: Unknown result type (might be due to invalid IL or missing references) //IL_413b: Unknown result type (might be due to invalid IL or missing references) //IL_4145: Unknown result type (might be due to invalid IL or missing references) //IL_414a: Unknown result type (might be due to invalid IL or missing references) //IL_4156: Unknown result type (might be due to invalid IL or missing references) //IL_4170: Unknown result type (might be due to invalid IL or missing references) //IL_4176: Unknown result type (might be due to invalid IL or missing references) //IL_417b: Unknown result type (might be due to invalid IL or missing references) //IL_4181: Unknown result type (might be due to invalid IL or missing references) //IL_4186: Unknown result type (might be due to invalid IL or missing references) //IL_418c: Unknown result type (might be due to invalid IL or missing references) //IL_4196: Unknown result type (might be due to invalid IL or missing references) //IL_419b: Unknown result type (might be due to invalid IL or missing references) //IL_41a1: Unknown result type (might be due to invalid IL or missing references) //IL_41a6: Unknown result type (might be due to invalid IL or missing references) //IL_41ac: Unknown result type (might be due to invalid IL or missing references) //IL_41b6: Unknown result type (might be due to invalid IL or missing references) //IL_41bb: Unknown result type (might be due to invalid IL or missing references) //IL_41c6: Unknown result type (might be due to invalid IL or missing references) //IL_41cc: Unknown result type (might be due to invalid IL or missing references) //IL_41d1: Unknown result type (might be due to invalid IL or missing references) //IL_41d7: Unknown result type (might be due to invalid IL or missing references) //IL_41dc: Unknown result type (might be due to invalid IL or missing references) //IL_41e2: Unknown result type (might be due to invalid IL or missing references) //IL_41e7: Unknown result type (might be due to invalid IL or missing references) //IL_41ed: Unknown result type (might be due to invalid IL or missing references) //IL_41f7: Unknown result type (might be due to invalid IL or missing references) //IL_41fc: Unknown result type (might be due to invalid IL or missing references) //IL_4208: Unknown result type (might be due to invalid IL or missing references) if (switching || !ledgeSwitchingDetectors.allowLedgeSwitching || !grabbedOn) { return; } if (!Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + minDistFromGroundHeight2 + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - rightWidth * 1.596f - firstSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - rightWidth * 1.596f - firstSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - rightWidth * 1.596f - firstSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - rightWidth * 1.596f - firstSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 0.375f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 0.75f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 1.125f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !l1MiddleSurfaceDetectorsHit && !l1MiddleHit && l1FirstForwardSurfaceDetectorsHit && l1FirstForwardHit) { l1FirstForwardTimer += 0.01f; if (l1FirstForwardTimer > 0.1f || rotTimer > 0f) { l1FirstForwardClear = true; } else { l1FirstForwardClear = false; } } else { l1FirstForwardTimer = 0f; l1FirstForwardClear = false; } if (!Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + minDistFromGroundHeight2 + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - rightWidth * 1.596f - secondSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - rightWidth * 1.596f - secondSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - rightWidth * 1.596f - secondSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - rightWidth * 1.596f - secondSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 0.375f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 0.75f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 1.125f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !l2MiddleSurfaceDetectorsHit && !l2MiddleHit && l2FirstForwardSurfaceDetectorsHit && l2FirstForwardHit) { l2FirstForwardTimer += 0.01f; if (l2FirstForwardTimer > 0.1f || rotTimer > 0f) { l2FirstForwardClear = true; } else { l2FirstForwardClear = false; } } else { l2FirstForwardTimer = 0f; l2FirstForwardClear = false; } if (!Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + minDistFromGroundHeight2 + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - rightWidth * 1.596f - thirdSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - rightWidth * 1.596f - thirdSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - rightWidth * 1.596f - thirdSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - rightWidth * 1.596f - thirdSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 0.375f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 0.75f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 1.125f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !l3MiddleSurfaceDetectorsHit && !l3MiddleHit && l3FirstForwardSurfaceDetectorsHit && l3FirstForwardHit) { l3FirstForwardTimer += 0.01f; if (l3FirstForwardTimer > 0.1f || rotTimer > 0f) { l3FirstForwardClear = true; } else { l3FirstForwardClear = false; } } else { l3FirstForwardTimer = 0f; l3FirstForwardClear = false; } } private void LedgeSwitchingClearMiddleLeft() { //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_0054: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_006a: Unknown result type (might be due to invalid IL or missing references) //IL_006f: Unknown result type (might be due to invalid IL or missing references) //IL_007a: Unknown result type (might be due to invalid IL or missing references) //IL_0080: Unknown result type (might be due to invalid IL or missing references) //IL_0085: Unknown result type (might be due to invalid IL or missing references) //IL_008b: Unknown result type (might be due to invalid IL or missing references) //IL_0095: Unknown result type (might be due to invalid IL or missing references) //IL_009a: Unknown result type (might be due to invalid IL or missing references) //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_00a5: Unknown result type (might be due to invalid IL or missing references) //IL_00ab: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) //IL_00ba: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_00cb: Unknown result type (might be due to invalid IL or missing references) //IL_00d0: Unknown result type (might be due to invalid IL or missing references) //IL_00dc: Unknown result type (might be due to invalid IL or missing references) //IL_00f6: Unknown result type (might be due to invalid IL or missing references) //IL_00fc: Unknown result type (might be due to invalid IL or missing references) //IL_0101: Unknown result type (might be due to invalid IL or missing references) //IL_0107: Unknown result type (might be due to invalid IL or missing references) //IL_010c: Unknown result type (might be due to invalid IL or missing references) //IL_0112: Unknown result type (might be due to invalid IL or missing references) //IL_011c: Unknown result type (might be due to invalid IL or missing references) //IL_0121: Unknown result type (might be due to invalid IL or missing references) //IL_0127: Unknown result type (might be due to invalid IL or missing references) //IL_012c: Unknown result type (might be due to invalid IL or missing references) //IL_0132: Unknown result type (might be due to invalid IL or missing references) //IL_013c: Unknown result type (might be due to invalid IL or missing references) //IL_0141: Unknown result type (might be due to invalid IL or missing references) //IL_0147: Unknown result type (might be due to invalid IL or missing references) //IL_014c: Unknown result type (might be due to invalid IL or missing references) //IL_0152: Unknown result type (might be due to invalid IL or missing references) //IL_0157: Unknown result type (might be due to invalid IL or missing references) //IL_0162: Unknown result type (might be due to invalid IL or missing references) //IL_0168: Unknown result type (might be due to invalid IL or missing references) //IL_016d: Unknown result type (might be due to invalid IL or missing references) //IL_0173: Unknown result type (might be due to invalid IL or missing references) //IL_017d: Unknown result type (might be due to invalid IL or missing references) //IL_0182: Unknown result type (might be due to invalid IL or missing references) //IL_0188: Unknown result type (might be due to invalid IL or missing references) //IL_0192: Unknown result type (might be due to invalid IL or missing references) //IL_0197: Unknown result type (might be due to invalid IL or missing references) //IL_019d: Unknown result type (might be due to invalid IL or missing references) //IL_01a2: Unknown result type (might be due to invalid IL or missing references) //IL_01a8: Unknown result type (might be due to invalid IL or missing references) //IL_01ad: Unknown result type (might be due to invalid IL or missing references) //IL_01b3: Unknown result type (might be due to invalid IL or missing references) //IL_01bd: Unknown result type (might be due to invalid IL or missing references) //IL_01c2: Unknown result type (might be due to invalid IL or missing references) //IL_01c8: Unknown result type (might be due to invalid IL or missing references) //IL_01cd: Unknown result type (might be due to invalid IL or missing references) //IL_01d3: Unknown result type (might be due to invalid IL or missing references) //IL_01d8: Unknown result type (might be due to invalid IL or missing references) //IL_01e4: Unknown result type (might be due to invalid IL or missing references) //IL_1588: Unknown result type (might be due to invalid IL or missing references) //IL_158e: Unknown result type (might be due to invalid IL or missing references) //IL_1593: Unknown result type (might be due to invalid IL or missing references) //IL_1599: Unknown result type (might be due to invalid IL or missing references) //IL_159e: Unknown result type (might be due to invalid IL or missing references) //IL_15a4: Unknown result type (might be due to invalid IL or missing references) //IL_15ae: Unknown result type (might be due to invalid IL or missing references) //IL_15b3: Unknown result type (might be due to invalid IL or missing references) //IL_15b9: Unknown result type (might be due to invalid IL or missing references) //IL_15be: Unknown result type (might be due to invalid IL or missing references) //IL_15c4: Unknown result type (might be due to invalid IL or missing references) //IL_15c9: Unknown result type (might be due to invalid IL or missing references) //IL_15d4: Unknown result type (might be due to invalid IL or missing references) //IL_15da: Unknown result type (might be due to invalid IL or missing references) //IL_15df: Unknown result type (might be due to invalid IL or missing references) //IL_15e5: Unknown result type (might be due to invalid IL or missing references) //IL_15ef: Unknown result type (might be due to invalid IL or missing references) //IL_15f4: Unknown result type (might be due to invalid IL or missing references) //IL_15fa: Unknown result type (might be due to invalid IL or missing references) //IL_15ff: Unknown result type (might be due to invalid IL or missing references) //IL_1605: Unknown result type (might be due to invalid IL or missing references) //IL_160f: Unknown result type (might be due to invalid IL or missing references) //IL_1614: Unknown result type (might be due to invalid IL or missing references) //IL_161a: Unknown result type (might be due to invalid IL or missing references) //IL_161f: Unknown result type (might be due to invalid IL or missing references) //IL_1625: Unknown result type (might be due to invalid IL or missing references) //IL_162a: Unknown result type (might be due to invalid IL or missing references) //IL_1636: Unknown result type (might be due to invalid IL or missing references) //IL_01fe: Unknown result type (might be due to invalid IL or missing references) //IL_0204: Unknown result type (might be due to invalid IL or missing references) //IL_0209: Unknown result type (might be due to invalid IL or missing references) //IL_020f: Unknown result type (might be due to invalid IL or missing references) //IL_0214: Unknown result type (might be due to invalid IL or missing references) //IL_021a: Unknown result type (might be due to invalid IL or missing references) //IL_0224: Unknown result type (might be due to invalid IL or missing references) //IL_0229: Unknown result type (might be due to invalid IL or missing references) //IL_022f: Unknown result type (might be due to invalid IL or missing references) //IL_0234: Unknown result type (might be due to invalid IL or missing references) //IL_023a: Unknown result type (might be due to invalid IL or missing references) //IL_0244: Unknown result type (might be due to invalid IL or missing references) //IL_0249: Unknown result type (might be due to invalid IL or missing references) //IL_024f: Unknown result type (might be due to invalid IL or missing references) //IL_0254: Unknown result type (might be due to invalid IL or missing references) //IL_025a: Unknown result type (might be due to invalid IL or missing references) //IL_025f: Unknown result type (might be due to invalid IL or missing references) //IL_026a: Unknown result type (might be due to invalid IL or missing references) //IL_0270: Unknown result type (might be due to invalid IL or missing references) //IL_0275: Unknown result type (might be due to invalid IL or missing references) //IL_027b: Unknown result type (might be due to invalid IL or missing references) //IL_0285: Unknown result type (might be due to invalid IL or missing references) //IL_028a: Unknown result type (might be due to invalid IL or missing references) //IL_0290: Unknown result type (might be due to invalid IL or missing references) //IL_029a: Unknown result type (might be due to invalid IL or missing references) //IL_029f: Unknown result type (might be due to invalid IL or missing references) //IL_02a5: Unknown result type (might be due to invalid IL or missing references) //IL_02aa: Unknown result type (might be due to invalid IL or missing references) //IL_02b0: Unknown result type (might be due to invalid IL or missing references) //IL_02b5: Unknown result type (might be due to invalid IL or missing references) //IL_02bb: Unknown result type (might be due to invalid IL or missing references) //IL_02c5: Unknown result type (might be due to invalid IL or missing references) //IL_02ca: Unknown result type (might be due to invalid IL or missing references) //IL_02d0: Unknown result type (might be due to invalid IL or missing references) //IL_02d5: Unknown result type (might be due to invalid IL or missing references) //IL_02db: Unknown result type (might be due to invalid IL or missing references) //IL_02e0: Unknown result type (might be due to invalid IL or missing references) //IL_02ec: Unknown result type (might be due to invalid IL or missing references) //IL_1650: Unknown result type (might be due to invalid IL or missing references) //IL_1656: Unknown result type (might be due to invalid IL or missing references) //IL_165b: Unknown result type (might be due to invalid IL or missing references) //IL_1661: Unknown result type (might be due to invalid IL or missing references) //IL_1666: Unknown result type (might be due to invalid IL or missing references) //IL_166c: Unknown result type (might be due to invalid IL or missing references) //IL_1676: Unknown result type (might be due to invalid IL or missing references) //IL_167b: Unknown result type (might be due to invalid IL or missing references) //IL_1681: Unknown result type (might be due to invalid IL or missing references) //IL_1686: Unknown result type (might be due to invalid IL or missing references) //IL_168c: Unknown result type (might be due to invalid IL or missing references) //IL_1696: Unknown result type (might be due to invalid IL or missing references) //IL_169b: Unknown result type (might be due to invalid IL or missing references) //IL_16a1: Unknown result type (might be due to invalid IL or missing references) //IL_16a6: Unknown result type (might be due to invalid IL or missing references) //IL_16ac: Unknown result type (might be due to invalid IL or missing references) //IL_16b1: Unknown result type (might be due to invalid IL or missing references) //IL_16bc: Unknown result type (might be due to invalid IL or missing references) //IL_16c2: Unknown result type (might be due to invalid IL or missing references) //IL_16c7: Unknown result type (might be due to invalid IL or missing references) //IL_16cd: Unknown result type (might be due to invalid IL or missing references) //IL_16d7: Unknown result type (might be due to invalid IL or missing references) //IL_16dc: Unknown result type (might be due to invalid IL or missing references) //IL_16e2: Unknown result type (might be due to invalid IL or missing references) //IL_16ec: Unknown result type (might be due to invalid IL or missing references) //IL_16f1: Unknown result type (might be due to invalid IL or missing references) //IL_16f7: Unknown result type (might be due to invalid IL or missing references) //IL_16fc: Unknown result type (might be due to invalid IL or missing references) //IL_1702: Unknown result type (might be due to invalid IL or missing references) //IL_1707: Unknown result type (might be due to invalid IL or missing references) //IL_170d: Unknown result type (might be due to invalid IL or missing references) //IL_1717: Unknown result type (might be due to invalid IL or missing references) //IL_171c: Unknown result type (might be due to invalid IL or missing references) //IL_1722: Unknown result type (might be due to invalid IL or missing references) //IL_1727: Unknown result type (might be due to invalid IL or missing references) //IL_172d: Unknown result type (might be due to invalid IL or missing references) //IL_1732: Unknown result type (might be due to invalid IL or missing references) //IL_173e: Unknown result type (might be due to invalid IL or missing references) //IL_0306: Unknown result type (might be due to invalid IL or missing references) //IL_030c: Unknown result type (might be due to invalid IL or missing references) //IL_0311: Unknown result type (might be due to invalid IL or missing references) //IL_031c: Unknown result type (might be due to invalid IL or missing references) //IL_0322: Unknown result type (might be due to invalid IL or missing references) //IL_0327: Unknown result type (might be due to invalid IL or missing references) //IL_032d: Unknown result type (might be due to invalid IL or missing references) //IL_0337: Unknown result type (might be due to invalid IL or missing references) //IL_033c: Unknown result type (might be due to invalid IL or missing references) //IL_0342: Unknown result type (might be due to invalid IL or missing references) //IL_034c: Unknown result type (might be due to invalid IL or missing references) //IL_0351: Unknown result type (might be due to invalid IL or missing references) //IL_0357: Unknown result type (might be due to invalid IL or missing references) //IL_035c: Unknown result type (might be due to invalid IL or missing references) //IL_0362: Unknown result type (might be due to invalid IL or missing references) //IL_0367: Unknown result type (might be due to invalid IL or missing references) //IL_037f: Unknown result type (might be due to invalid IL or missing references) //IL_0384: Unknown result type (might be due to invalid IL or missing references) //IL_039c: Unknown result type (might be due to invalid IL or missing references) //IL_03a2: Unknown result type (might be due to invalid IL or missing references) //IL_03ac: Unknown result type (might be due to invalid IL or missing references) //IL_03b1: Unknown result type (might be due to invalid IL or missing references) //IL_03b7: Unknown result type (might be due to invalid IL or missing references) //IL_03bc: Unknown result type (might be due to invalid IL or missing references) //IL_03c7: Unknown result type (might be due to invalid IL or missing references) //IL_03cd: Unknown result type (might be due to invalid IL or missing references) //IL_03d2: Unknown result type (might be due to invalid IL or missing references) //IL_03dd: Unknown result type (might be due to invalid IL or missing references) //IL_03e3: Unknown result type (might be due to invalid IL or missing references) //IL_03e8: Unknown result type (might be due to invalid IL or missing references) //IL_03ee: Unknown result type (might be due to invalid IL or missing references) //IL_03f8: Unknown result type (might be due to invalid IL or missing references) //IL_03fd: Unknown result type (might be due to invalid IL or missing references) //IL_0403: Unknown result type (might be due to invalid IL or missing references) //IL_040d: Unknown result type (might be due to invalid IL or missing references) //IL_0412: Unknown result type (might be due to invalid IL or missing references) //IL_0418: Unknown result type (might be due to invalid IL or missing references) //IL_041d: Unknown result type (might be due to invalid IL or missing references) //IL_0423: Unknown result type (might be due to invalid IL or missing references) //IL_0428: Unknown result type (might be due to invalid IL or missing references) //IL_0440: Unknown result type (might be due to invalid IL or missing references) //IL_0445: Unknown result type (might be due to invalid IL or missing references) //IL_045d: Unknown result type (might be due to invalid IL or missing references) //IL_0463: Unknown result type (might be due to invalid IL or missing references) //IL_046d: Unknown result type (might be due to invalid IL or missing references) //IL_0472: Unknown result type (might be due to invalid IL or missing references) //IL_0478: Unknown result type (might be due to invalid IL or missing references) //IL_047d: Unknown result type (might be due to invalid IL or missing references) //IL_0489: Unknown result type (might be due to invalid IL or missing references) //IL_2ae2: Unknown result type (might be due to invalid IL or missing references) //IL_2ae8: Unknown result type (might be due to invalid IL or missing references) //IL_2aed: Unknown result type (might be due to invalid IL or missing references) //IL_2af3: Unknown result type (might be due to invalid IL or missing references) //IL_2af8: Unknown result type (might be due to invalid IL or missing references) //IL_2afe: Unknown result type (might be due to invalid IL or missing references) //IL_2b08: Unknown result type (might be due to invalid IL or missing references) //IL_2b0d: Unknown result type (might be due to invalid IL or missing references) //IL_2b13: Unknown result type (might be due to invalid IL or missing references) //IL_2b18: Unknown result type (might be due to invalid IL or missing references) //IL_2b1e: Unknown result type (might be due to invalid IL or missing references) //IL_2b23: Unknown result type (might be due to invalid IL or missing references) //IL_2b2e: Unknown result type (might be due to invalid IL or missing references) //IL_2b34: Unknown result type (might be due to invalid IL or missing references) //IL_2b39: Unknown result type (might be due to invalid IL or missing references) //IL_2b3f: Unknown result type (might be due to invalid IL or missing references) //IL_2b49: Unknown result type (might be due to invalid IL or missing references) //IL_2b4e: Unknown result type (might be due to invalid IL or missing references) //IL_2b54: Unknown result type (might be due to invalid IL or missing references) //IL_2b59: Unknown result type (might be due to invalid IL or missing references) //IL_2b5f: Unknown result type (might be due to invalid IL or missing references) //IL_2b69: Unknown result type (might be due to invalid IL or missing references) //IL_2b6e: Unknown result type (might be due to invalid IL or missing references) //IL_2b74: Unknown result type (might be due to invalid IL or missing references) //IL_2b79: Unknown result type (might be due to invalid IL or missing references) //IL_2b7f: Unknown result type (might be due to invalid IL or missing references) //IL_2b84: Unknown result type (might be due to invalid IL or missing references) //IL_2b90: Unknown result type (might be due to invalid IL or missing references) //IL_1758: Unknown result type (might be due to invalid IL or missing references) //IL_175e: Unknown result type (might be due to invalid IL or missing references) //IL_1763: Unknown result type (might be due to invalid IL or missing references) //IL_1769: Unknown result type (might be due to invalid IL or missing references) //IL_176e: Unknown result type (might be due to invalid IL or missing references) //IL_1774: Unknown result type (might be due to invalid IL or missing references) //IL_177e: Unknown result type (might be due to invalid IL or missing references) //IL_1783: Unknown result type (might be due to invalid IL or missing references) //IL_1789: Unknown result type (might be due to invalid IL or missing references) //IL_178e: Unknown result type (might be due to invalid IL or missing references) //IL_1794: Unknown result type (might be due to invalid IL or missing references) //IL_179e: Unknown result type (might be due to invalid IL or missing references) //IL_17a3: Unknown result type (might be due to invalid IL or missing references) //IL_17a9: Unknown result type (might be due to invalid IL or missing references) //IL_17ae: Unknown result type (might be due to invalid IL or missing references) //IL_17b4: Unknown result type (might be due to invalid IL or missing references) //IL_17b9: Unknown result type (might be due to invalid IL or missing references) //IL_17c4: Unknown result type (might be due to invalid IL or missing references) //IL_17ca: Unknown result type (might be due to invalid IL or missing references) //IL_17cf: Unknown result type (might be due to invalid IL or missing references) //IL_17d5: Unknown result type (might be due to invalid IL or missing references) //IL_17df: Unknown result type (might be due to invalid IL or missing references) //IL_17e4: Unknown result type (might be due to invalid IL or missing references) //IL_17ea: Unknown result type (might be due to invalid IL or missing references) //IL_17f4: Unknown result type (might be due to invalid IL or missing references) //IL_17f9: Unknown result type (might be due to invalid IL or missing references) //IL_17ff: Unknown result type (might be due to invalid IL or missing references) //IL_1804: Unknown result type (might be due to invalid IL or missing references) //IL_180a: Unknown result type (might be due to invalid IL or missing references) //IL_180f: Unknown result type (might be due to invalid IL or missing references) //IL_1815: Unknown result type (might be due to invalid IL or missing references) //IL_181f: Unknown result type (might be due to invalid IL or missing references) //IL_1824: Unknown result type (might be due to invalid IL or missing references) //IL_182a: Unknown result type (might be due to invalid IL or missing references) //IL_182f: Unknown result type (might be due to invalid IL or missing references) //IL_1835: Unknown result type (might be due to invalid IL or missing references) //IL_183a: Unknown result type (might be due to invalid IL or missing references) //IL_1846: Unknown result type (might be due to invalid IL or missing references) //IL_04a3: Unknown result type (might be due to invalid IL or missing references) //IL_04a9: Unknown result type (might be due to invalid IL or missing references) //IL_04ae: Unknown result type (might be due to invalid IL or missing references) //IL_04b9: Unknown result type (might be due to invalid IL or missing references) //IL_04bf: Unknown result type (might be due to invalid IL or missing references) //IL_04c4: Unknown result type (might be due to invalid IL or missing references) //IL_04ca: Unknown result type (might be due to invalid IL or missing references) //IL_04d4: Unknown result type (might be due to invalid IL or missing references) //IL_04d9: Unknown result type (might be due to invalid IL or missing references) //IL_04df: Unknown result type (might be due to invalid IL or missing references) //IL_04e9: Unknown result type (might be due to invalid IL or missing references) //IL_04ee: Unknown result type (might be due to invalid IL or missing references) //IL_04f4: Unknown result type (might be due to invalid IL or missing references) //IL_04f9: Unknown result type (might be due to invalid IL or missing references) //IL_04ff: Unknown result type (might be due to invalid IL or missing references) //IL_0504: Unknown result type (might be due to invalid IL or missing references) //IL_051c: Unknown result type (might be due to invalid IL or missing references) //IL_0521: Unknown result type (might be due to invalid IL or missing references) //IL_0539: Unknown result type (might be due to invalid IL or missing references) //IL_053f: Unknown result type (might be due to invalid IL or missing references) //IL_0549: Unknown result type (might be due to invalid IL or missing references) //IL_054e: Unknown result type (might be due to invalid IL or missing references) //IL_0554: Unknown result type (might be due to invalid IL or missing references) //IL_0559: Unknown result type (might be due to invalid IL or missing references) //IL_0564: Unknown result type (might be due to invalid IL or missing references) //IL_056a: Unknown result type (might be due to invalid IL or missing references) //IL_056f: Unknown result type (might be due to invalid IL or missing references) //IL_057a: Unknown result type (might be due to invalid IL or missing references) //IL_0580: Unknown result type (might be due to invalid IL or missing references) //IL_0585: Unknown result type (might be due to invalid IL or missing references) //IL_058b: Unknown result type (might be due to invalid IL or missing references) //IL_0595: Unknown result type (might be due to invalid IL or missing references) //IL_059a: Unknown result type (might be due to invalid IL or missing references) //IL_05a0: Unknown result type (might be due to invalid IL or missing references) //IL_05aa: Unknown result type (might be due to invalid IL or missing references) //IL_05af: Unknown result type (might be due to invalid IL or missing references) //IL_05b5: Unknown result type (might be due to invalid IL or missing references) //IL_05ba: Unknown result type (might be due to invalid IL or missing references) //IL_05c0: Unknown result type (might be due to invalid IL or missing references) //IL_05c5: Unknown result type (might be due to invalid IL or missing references) //IL_05dd: Unknown result type (might be due to invalid IL or missing references) //IL_05e2: Unknown result type (might be due to invalid IL or missing references) //IL_05fa: Unknown result type (might be due to invalid IL or missing references) //IL_0600: Unknown result type (might be due to invalid IL or missing references) //IL_060a: Unknown result type (might be due to invalid IL or missing references) //IL_060f: Unknown result type (might be due to invalid IL or missing references) //IL_0615: Unknown result type (might be due to invalid IL or missing references) //IL_061a: Unknown result type (might be due to invalid IL or missing references) //IL_0626: Unknown result type (might be due to invalid IL or missing references) //IL_2baa: Unknown result type (might be due to invalid IL or missing references) //IL_2bb0: Unknown result type (might be due to invalid IL or missing references) //IL_2bb5: Unknown result type (might be due to invalid IL or missing references) //IL_2bbb: Unknown result type (might be due to invalid IL or missing references) //IL_2bc0: Unknown result type (might be due to invalid IL or missing references) //IL_2bc6: Unknown result type (might be due to invalid IL or missing references) //IL_2bd0: Unknown result type (might be due to invalid IL or missing references) //IL_2bd5: Unknown result type (might be due to invalid IL or missing references) //IL_2bdb: Unknown result type (might be due to invalid IL or missing references) //IL_2be0: Unknown result type (might be due to invalid IL or missing references) //IL_2be6: Unknown result type (might be due to invalid IL or missing references) //IL_2bf0: Unknown result type (might be due to invalid IL or missing references) //IL_2bf5: Unknown result type (might be due to invalid IL or missing references) //IL_2bfb: Unknown result type (might be due to invalid IL or missing references) //IL_2c00: Unknown result type (might be due to invalid IL or missing references) //IL_2c06: Unknown result type (might be due to invalid IL or missing references) //IL_2c0b: Unknown result type (might be due to invalid IL or missing references) //IL_2c16: Unknown result type (might be due to invalid IL or missing references) //IL_2c1c: Unknown result type (might be due to invalid IL or missing references) //IL_2c21: Unknown result type (might be due to invalid IL or missing references) //IL_2c27: Unknown result type (might be due to invalid IL or missing references) //IL_2c31: Unknown result type (might be due to invalid IL or missing references) //IL_2c36: Unknown result type (might be due to invalid IL or missing references) //IL_2c3c: Unknown result type (might be due to invalid IL or missing references) //IL_2c46: Unknown result type (might be due to invalid IL or missing references) //IL_2c4b: Unknown result type (might be due to invalid IL or missing references) //IL_2c51: Unknown result type (might be due to invalid IL or missing references) //IL_2c56: Unknown result type (might be due to invalid IL or missing references) //IL_2c5c: Unknown result type (might be due to invalid IL or missing references) //IL_2c61: Unknown result type (might be due to invalid IL or missing references) //IL_2c67: Unknown result type (might be due to invalid IL or missing references) //IL_2c71: Unknown result type (might be due to invalid IL or missing references) //IL_2c76: Unknown result type (might be due to invalid IL or missing references) //IL_2c7c: Unknown result type (might be due to invalid IL or missing references) //IL_2c81: Unknown result type (might be due to invalid IL or missing references) //IL_2c87: Unknown result type (might be due to invalid IL or missing references) //IL_2c8c: Unknown result type (might be due to invalid IL or missing references) //IL_2c98: Unknown result type (might be due to invalid IL or missing references) //IL_1860: Unknown result type (might be due to invalid IL or missing references) //IL_1866: Unknown result type (might be due to invalid IL or missing references) //IL_186b: Unknown result type (might be due to invalid IL or missing references) //IL_1876: Unknown result type (might be due to invalid IL or missing references) //IL_187c: Unknown result type (might be due to invalid IL or missing references) //IL_1881: Unknown result type (might be due to invalid IL or missing references) //IL_1887: Unknown result type (might be due to invalid IL or missing references) //IL_1891: Unknown result type (might be due to invalid IL or missing references) //IL_1896: Unknown result type (might be due to invalid IL or missing references) //IL_189c: Unknown result type (might be due to invalid IL or missing references) //IL_18a6: Unknown result type (might be due to invalid IL or missing references) //IL_18ab: Unknown result type (might be due to invalid IL or missing references) //IL_18b1: Unknown result type (might be due to invalid IL or missing references) //IL_18b6: Unknown result type (might be due to invalid IL or missing references) //IL_18bc: Unknown result type (might be due to invalid IL or missing references) //IL_18c1: Unknown result type (might be due to invalid IL or missing references) //IL_18d9: Unknown result type (might be due to invalid IL or missing references) //IL_18de: Unknown result type (might be due to invalid IL or missing references) //IL_18f6: Unknown result type (might be due to invalid IL or missing references) //IL_18fc: Unknown result type (might be due to invalid IL or missing references) //IL_1906: Unknown result type (might be due to invalid IL or missing references) //IL_190b: Unknown result type (might be due to invalid IL or missing references) //IL_1911: Unknown result type (might be due to invalid IL or missing references) //IL_1916: Unknown result type (might be due to invalid IL or missing references) //IL_1921: Unknown result type (might be due to invalid IL or missing references) //IL_1927: Unknown result type (might be due to invalid IL or missing references) //IL_192c: Unknown result type (might be due to invalid IL or missing references) //IL_1937: Unknown result type (might be due to invalid IL or missing references) //IL_193d: Unknown result type (might be due to invalid IL or missing references) //IL_1942: Unknown result type (might be due to invalid IL or missing references) //IL_1948: Unknown result type (might be due to invalid IL or missing references) //IL_1952: Unknown result type (might be due to invalid IL or missing references) //IL_1957: Unknown result type (might be due to invalid IL or missing references) //IL_195d: Unknown result type (might be due to invalid IL or missing references) //IL_1967: Unknown result type (might be due to invalid IL or missing references) //IL_196c: Unknown result type (might be due to invalid IL or missing references) //IL_1972: Unknown result type (might be due to invalid IL or missing references) //IL_1977: Unknown result type (might be due to invalid IL or missing references) //IL_197d: Unknown result type (might be due to invalid IL or missing references) //IL_1982: Unknown result type (might be due to invalid IL or missing references) //IL_199a: Unknown result type (might be due to invalid IL or missing references) //IL_199f: Unknown result type (might be due to invalid IL or missing references) //IL_19b7: Unknown result type (might be due to invalid IL or missing references) //IL_19bd: Unknown result type (might be due to invalid IL or missing references) //IL_19c7: Unknown result type (might be due to invalid IL or missing references) //IL_19cc: Unknown result type (might be due to invalid IL or missing references) //IL_19d2: Unknown result type (might be due to invalid IL or missing references) //IL_19d7: Unknown result type (might be due to invalid IL or missing references) //IL_19e3: Unknown result type (might be due to invalid IL or missing references) //IL_0640: Unknown result type (might be due to invalid IL or missing references) //IL_0646: Unknown result type (might be due to invalid IL or missing references) //IL_064b: Unknown result type (might be due to invalid IL or missing references) //IL_0651: Unknown result type (might be due to invalid IL or missing references) //IL_065b: Unknown result type (might be due to invalid IL or missing references) //IL_0660: Unknown result type (might be due to invalid IL or missing references) //IL_0666: Unknown result type (might be due to invalid IL or missing references) //IL_066b: Unknown result type (might be due to invalid IL or missing references) //IL_0671: Unknown result type (might be due to invalid IL or missing references) //IL_067b: Unknown result type (might be due to invalid IL or missing references) //IL_0680: Unknown result type (might be due to invalid IL or missing references) //IL_0686: Unknown result type (might be due to invalid IL or missing references) //IL_068b: Unknown result type (might be due to invalid IL or missing references) //IL_0696: Unknown result type (might be due to invalid IL or missing references) //IL_069c: Unknown result type (might be due to invalid IL or missing references) //IL_06a1: Unknown result type (might be due to invalid IL or missing references) //IL_06a7: Unknown result type (might be due to invalid IL or missing references) //IL_06b1: Unknown result type (might be due to invalid IL or missing references) //IL_06b6: Unknown result type (might be due to invalid IL or missing references) //IL_06bc: Unknown result type (might be due to invalid IL or missing references) //IL_06c1: Unknown result type (might be due to invalid IL or missing references) //IL_06c7: Unknown result type (might be due to invalid IL or missing references) //IL_06d1: Unknown result type (might be due to invalid IL or missing references) //IL_06d6: Unknown result type (might be due to invalid IL or missing references) //IL_06dc: Unknown result type (might be due to invalid IL or missing references) //IL_06e1: Unknown result type (might be due to invalid IL or missing references) //IL_06ed: Unknown result type (might be due to invalid IL or missing references) //IL_2cb2: Unknown result type (might be due to invalid IL or missing references) //IL_2cb8: Unknown result type (might be due to invalid IL or missing references) //IL_2cbd: Unknown result type (might be due to invalid IL or missing references) //IL_2cc3: Unknown result type (might be due to invalid IL or missing references) //IL_2cc8: Unknown result type (might be due to invalid IL or missing references) //IL_2cce: Unknown result type (might be due to invalid IL or missing references) //IL_2cd8: Unknown result type (might be due to invalid IL or missing references) //IL_2cdd: Unknown result type (might be due to invalid IL or missing references) //IL_2ce3: Unknown result type (might be due to invalid IL or missing references) //IL_2ce8: Unknown result type (might be due to invalid IL or missing references) //IL_2cee: Unknown result type (might be due to invalid IL or missing references) //IL_2cf8: Unknown result type (might be due to invalid IL or missing references) //IL_2cfd: Unknown result type (might be due to invalid IL or missing references) //IL_2d03: Unknown result type (might be due to invalid IL or missing references) //IL_2d08: Unknown result type (might be due to invalid IL or missing references) //IL_2d0e: Unknown result type (might be due to invalid IL or missing references) //IL_2d13: Unknown result type (might be due to invalid IL or missing references) //IL_2d1e: Unknown result type (might be due to invalid IL or missing references) //IL_2d24: Unknown result type (might be due to invalid IL or missing references) //IL_2d29: Unknown result type (might be due to invalid IL or missing references) //IL_2d2f: Unknown result type (might be due to invalid IL or missing references) //IL_2d39: Unknown result type (might be due to invalid IL or missing references) //IL_2d3e: Unknown result type (might be due to invalid IL or missing references) //IL_2d44: Unknown result type (might be due to invalid IL or missing references) //IL_2d4e: Unknown result type (might be due to invalid IL or missing references) //IL_2d53: Unknown result type (might be due to invalid IL or missing references) //IL_2d59: Unknown result type (might be due to invalid IL or missing references) //IL_2d5e: Unknown result type (might be due to invalid IL or missing references) //IL_2d64: Unknown result type (might be due to invalid IL or missing references) //IL_2d69: Unknown result type (might be due to invalid IL or missing references) //IL_2d6f: Unknown result type (might be due to invalid IL or missing references) //IL_2d79: Unknown result type (might be due to invalid IL or missing references) //IL_2d7e: Unknown result type (might be due to invalid IL or missing references) //IL_2d84: Unknown result type (might be due to invalid IL or missing references) //IL_2d89: Unknown result type (might be due to invalid IL or missing references) //IL_2d8f: Unknown result type (might be due to invalid IL or missing references) //IL_2d94: Unknown result type (might be due to invalid IL or missing references) //IL_2da0: Unknown result type (might be due to invalid IL or missing references) //IL_19fd: Unknown result type (might be due to invalid IL or missing references) //IL_1a03: Unknown result type (might be due to invalid IL or missing references) //IL_1a08: Unknown result type (might be due to invalid IL or missing references) //IL_1a13: Unknown result type (might be due to invalid IL or missing references) //IL_1a19: Unknown result type (might be due to invalid IL or missing references) //IL_1a1e: Unknown result type (might be due to invalid IL or missing references) //IL_1a24: Unknown result type (might be due to invalid IL or missing references) //IL_1a2e: Unknown result type (might be due to invalid IL or missing references) //IL_1a33: Unknown result type (might be due to invalid IL or missing references) //IL_1a39: Unknown result type (might be due to invalid IL or missing references) //IL_1a43: Unknown result type (might be due to invalid IL or missing references) //IL_1a48: Unknown result type (might be due to invalid IL or missing references) //IL_1a4e: Unknown result type (might be due to invalid IL or missing references) //IL_1a53: Unknown result type (might be due to invalid IL or missing references) //IL_1a59: Unknown result type (might be due to invalid IL or missing references) //IL_1a5e: Unknown result type (might be due to invalid IL or missing references) //IL_1a76: Unknown result type (might be due to invalid IL or missing references) //IL_1a7b: Unknown result type (might be due to invalid IL or missing references) //IL_1a93: Unknown result type (might be due to invalid IL or missing references) //IL_1a99: Unknown result type (might be due to invalid IL or missing references) //IL_1aa3: Unknown result type (might be due to invalid IL or missing references) //IL_1aa8: Unknown result type (might be due to invalid IL or missing references) //IL_1aae: Unknown result type (might be due to invalid IL or missing references) //IL_1ab3: Unknown result type (might be due to invalid IL or missing references) //IL_1abe: Unknown result type (might be due to invalid IL or missing references) //IL_1ac4: Unknown result type (might be due to invalid IL or missing references) //IL_1ac9: Unknown result type (might be due to invalid IL or missing references) //IL_1ad4: Unknown result type (might be due to invalid IL or missing references) //IL_1ada: Unknown result type (might be due to invalid IL or missing references) //IL_1adf: Unknown result type (might be due to invalid IL or missing references) //IL_1ae5: Unknown result type (might be due to invalid IL or missing references) //IL_1aef: Unknown result type (might be due to invalid IL or missing references) //IL_1af4: Unknown result type (might be due to invalid IL or missing references) //IL_1afa: Unknown result type (might be due to invalid IL or missing references) //IL_1b04: Unknown result type (might be due to invalid IL or missing references) //IL_1b09: Unknown result type (might be due to invalid IL or missing references) //IL_1b0f: Unknown result type (might be due to invalid IL or missing references) //IL_1b14: Unknown result type (might be due to invalid IL or missing references) //IL_1b1a: Unknown result type (might be due to invalid IL or missing references) //IL_1b1f: Unknown result type (might be due to invalid IL or missing references) //IL_1b37: Unknown result type (might be due to invalid IL or missing references) //IL_1b3c: Unknown result type (might be due to invalid IL or missing references) //IL_1b54: Unknown result type (might be due to invalid IL or missing references) //IL_1b5a: Unknown result type (might be due to invalid IL or missing references) //IL_1b64: Unknown result type (might be due to invalid IL or missing references) //IL_1b69: Unknown result type (might be due to invalid IL or missing references) //IL_1b6f: Unknown result type (might be due to invalid IL or missing references) //IL_1b74: Unknown result type (might be due to invalid IL or missing references) //IL_1b80: Unknown result type (might be due to invalid IL or missing references) //IL_0707: Unknown result type (might be due to invalid IL or missing references) //IL_070d: Unknown result type (might be due to invalid IL or missing references) //IL_0712: Unknown result type (might be due to invalid IL or missing references) //IL_0718: Unknown result type (might be due to invalid IL or missing references) //IL_0722: Unknown result type (might be due to invalid IL or missing references) //IL_0727: Unknown result type (might be due to invalid IL or missing references) //IL_072d: Unknown result type (might be due to invalid IL or missing references) //IL_0732: Unknown result type (might be due to invalid IL or missing references) //IL_0738: Unknown result type (might be due to invalid IL or missing references) //IL_0742: Unknown result type (might be due to invalid IL or missing references) //IL_0747: Unknown result type (might be due to invalid IL or missing references) //IL_074d: Unknown result type (might be due to invalid IL or missing references) //IL_0752: Unknown result type (might be due to invalid IL or missing references) //IL_075d: Unknown result type (might be due to invalid IL or missing references) //IL_0763: Unknown result type (might be due to invalid IL or missing references) //IL_0768: Unknown result type (might be due to invalid IL or missing references) //IL_076e: Unknown result type (might be due to invalid IL or missing references) //IL_0778: Unknown result type (might be due to invalid IL or missing references) //IL_077d: Unknown result type (might be due to invalid IL or missing references) //IL_0783: Unknown result type (might be due to invalid IL or missing references) //IL_0788: Unknown result type (might be due to invalid IL or missing references) //IL_078e: Unknown result type (might be due to invalid IL or missing references) //IL_0798: Unknown result type (might be due to invalid IL or missing references) //IL_079d: Unknown result type (might be due to invalid IL or missing references) //IL_07a3: Unknown result type (might be due to invalid IL or missing references) //IL_07a8: Unknown result type (might be due to invalid IL or missing references) //IL_07b4: Unknown result type (might be due to invalid IL or missing references) //IL_2dba: Unknown result type (might be due to invalid IL or missing references) //IL_2dc0: Unknown result type (might be due to invalid IL or missing references) //IL_2dc5: Unknown result type (might be due to invalid IL or missing references) //IL_2dd0: Unknown result type (might be due to invalid IL or missing references) //IL_2dd6: Unknown result type (might be due to invalid IL or missing references) //IL_2ddb: Unknown result type (might be due to invalid IL or missing references) //IL_2de1: Unknown result type (might be due to invalid IL or missing references) //IL_2deb: Unknown result type (might be due to invalid IL or missing references) //IL_2df0: Unknown result type (might be due to invalid IL or missing references) //IL_2df6: Unknown result type (might be due to invalid IL or missing references) //IL_2e00: Unknown result type (might be due to invalid IL or missing references) //IL_2e05: Unknown result type (might be due to invalid IL or missing references) //IL_2e0b: Unknown result type (might be due to invalid IL or missing references) //IL_2e10: Unknown result type (might be due to invalid IL or missing references) //IL_2e16: Unknown result type (might be due to invalid IL or missing references) //IL_2e1b: Unknown result type (might be due to invalid IL or missing references) //IL_2e33: Unknown result type (might be due to invalid IL or missing references) //IL_2e38: Unknown result type (might be due to invalid IL or missing references) //IL_2e50: Unknown result type (might be due to invalid IL or missing references) //IL_2e56: Unknown result type (might be due to invalid IL or missing references) //IL_2e60: Unknown result type (might be due to invalid IL or missing references) //IL_2e65: Unknown result type (might be due to invalid IL or missing references) //IL_2e6b: Unknown result type (might be due to invalid IL or missing references) //IL_2e70: Unknown result type (might be due to invalid IL or missing references) //IL_2e7b: Unknown result type (might be due to invalid IL or missing references) //IL_2e81: Unknown result type (might be due to invalid IL or missing references) //IL_2e86: Unknown result type (might be due to invalid IL or missing references) //IL_2e91: Unknown result type (might be due to invalid IL or missing references) //IL_2e97: Unknown result type (might be due to invalid IL or missing references) //IL_2e9c: Unknown result type (might be due to invalid IL or missing references) //IL_2ea2: Unknown result type (might be due to invalid IL or missing references) //IL_2eac: Unknown result type (might be due to invalid IL or missing references) //IL_2eb1: Unknown result type (might be due to invalid IL or missing references) //IL_2eb7: Unknown result type (might be due to invalid IL or missing references) //IL_2ec1: Unknown result type (might be due to invalid IL or missing references) //IL_2ec6: Unknown result type (might be due to invalid IL or missing references) //IL_2ecc: Unknown result type (might be due to invalid IL or missing references) //IL_2ed1: Unknown result type (might be due to invalid IL or missing references) //IL_2ed7: Unknown result type (might be due to invalid IL or missing references) //IL_2edc: Unknown result type (might be due to invalid IL or missing references) //IL_2ef4: Unknown result type (might be due to invalid IL or missing references) //IL_2ef9: Unknown result type (might be due to invalid IL or missing references) //IL_2f11: Unknown result type (might be due to invalid IL or missing references) //IL_2f17: Unknown result type (might be due to invalid IL or missing references) //IL_2f21: Unknown result type (might be due to invalid IL or missing references) //IL_2f26: Unknown result type (might be due to invalid IL or missing references) //IL_2f2c: Unknown result type (might be due to invalid IL or missing references) //IL_2f31: Unknown result type (might be due to invalid IL or missing references) //IL_2f3d: Unknown result type (might be due to invalid IL or missing references) //IL_1b9a: Unknown result type (might be due to invalid IL or missing references) //IL_1ba0: Unknown result type (might be due to invalid IL or missing references) //IL_1ba5: Unknown result type (might be due to invalid IL or missing references) //IL_1bab: Unknown result type (might be due to invalid IL or missing references) //IL_1bb5: Unknown result type (might be due to invalid IL or missing references) //IL_1bba: Unknown result type (might be due to invalid IL or missing references) //IL_1bc0: Unknown result type (might be due to invalid IL or missing references) //IL_1bc5: Unknown result type (might be due to invalid IL or missing references) //IL_1bcb: Unknown result type (might be due to invalid IL or missing references) //IL_1bd5: Unknown result type (might be due to invalid IL or missing references) //IL_1bda: Unknown result type (might be due to invalid IL or missing references) //IL_1be0: Unknown result type (might be due to invalid IL or missing references) //IL_1be5: Unknown result type (might be due to invalid IL or missing references) //IL_1bf0: Unknown result type (might be due to invalid IL or missing references) //IL_1bf6: Unknown result type (might be due to invalid IL or missing references) //IL_1bfb: Unknown result type (might be due to invalid IL or missing references) //IL_1c01: Unknown result type (might be due to invalid IL or missing references) //IL_1c0b: Unknown result type (might be due to invalid IL or missing references) //IL_1c10: Unknown result type (might be due to invalid IL or missing references) //IL_1c16: Unknown result type (might be due to invalid IL or missing references) //IL_1c1b: Unknown result type (might be due to invalid IL or missing references) //IL_1c21: Unknown result type (might be due to invalid IL or missing references) //IL_1c2b: Unknown result type (might be due to invalid IL or missing references) //IL_1c30: Unknown result type (might be due to invalid IL or missing references) //IL_1c36: Unknown result type (might be due to invalid IL or missing references) //IL_1c3b: Unknown result type (might be due to invalid IL or missing references) //IL_1c47: Unknown result type (might be due to invalid IL or missing references) //IL_07c9: Unknown result type (might be due to invalid IL or missing references) //IL_07d4: Unknown result type (might be due to invalid IL or missing references) //IL_07da: Unknown result type (might be due to invalid IL or missing references) //IL_07df: Unknown result type (might be due to invalid IL or missing references) //IL_07e5: Unknown result type (might be due to invalid IL or missing references) //IL_07ea: Unknown result type (might be due to invalid IL or missing references) //IL_07f0: Unknown result type (might be due to invalid IL or missing references) //IL_07f5: Unknown result type (might be due to invalid IL or missing references) //IL_07fb: Unknown result type (might be due to invalid IL or missing references) //IL_0805: Unknown result type (might be due to invalid IL or missing references) //IL_080a: Unknown result type (might be due to invalid IL or missing references) //IL_0810: Unknown result type (might be due to invalid IL or missing references) //IL_0815: Unknown result type (might be due to invalid IL or missing references) //IL_081b: Unknown result type (might be due to invalid IL or missing references) //IL_0820: Unknown result type (might be due to invalid IL or missing references) //IL_082c: Unknown result type (might be due to invalid IL or missing references) //IL_2f57: Unknown result type (might be due to invalid IL or missing references) //IL_2f5d: Unknown result type (might be due to invalid IL or missing references) //IL_2f62: Unknown result type (might be due to invalid IL or missing references) //IL_2f6d: Unknown result type (might be due to invalid IL or missing references) //IL_2f73: Unknown result type (might be due to invalid IL or missing references) //IL_2f78: Unknown result type (might be due to invalid IL or missing references) //IL_2f7e: Unknown result type (might be due to invalid IL or missing references) //IL_2f88: Unknown result type (might be due to invalid IL or missing references) //IL_2f8d: Unknown result type (might be due to invalid IL or missing references) //IL_2f93: Unknown result type (might be due to invalid IL or missing references) //IL_2f9d: Unknown result type (might be due to invalid IL or missing references) //IL_2fa2: Unknown result type (might be due to invalid IL or missing references) //IL_2fa8: Unknown result type (might be due to invalid IL or missing references) //IL_2fad: Unknown result type (might be due to invalid IL or missing references) //IL_2fb3: Unknown result type (might be due to invalid IL or missing references) //IL_2fb8: Unknown result type (might be due to invalid IL or missing references) //IL_2fd0: Unknown result type (might be due to invalid IL or missing references) //IL_2fd5: Unknown result type (might be due to invalid IL or missing references) //IL_2fed: Unknown result type (might be due to invalid IL or missing references) //IL_2ff3: Unknown result type (might be due to invalid IL or missing references) //IL_2ffd: Unknown result type (might be due to invalid IL or missing references) //IL_3002: Unknown result type (might be due to invalid IL or missing references) //IL_3008: Unknown result type (might be due to invalid IL or missing references) //IL_300d: Unknown result type (might be due to invalid IL or missing references) //IL_3018: Unknown result type (might be due to invalid IL or missing references) //IL_301e: Unknown result type (might be due to invalid IL or missing references) //IL_3023: Unknown result type (might be due to invalid IL or missing references) //IL_302e: Unknown result type (might be due to invalid IL or missing references) //IL_3034: Unknown result type (might be due to invalid IL or missing references) //IL_3039: Unknown result type (might be due to invalid IL or missing references) //IL_303f: Unknown result type (might be due to invalid IL or missing references) //IL_3049: Unknown result type (might be due to invalid IL or missing references) //IL_304e: Unknown result type (might be due to invalid IL or missing references) //IL_3054: Unknown result type (might be due to invalid IL or missing references) //IL_305e: Unknown result type (might be due to invalid IL or missing references) //IL_3063: Unknown result type (might be due to invalid IL or missing references) //IL_3069: Unknown result type (might be due to invalid IL or missing references) //IL_306e: Unknown result type (might be due to invalid IL or missing references) //IL_3074: Unknown result type (might be due to invalid IL or missing references) //IL_3079: Unknown result type (might be due to invalid IL or missing references) //IL_3091: Unknown result type (might be due to invalid IL or missing references) //IL_3096: Unknown result type (might be due to invalid IL or missing references) //IL_30ae: Unknown result type (might be due to invalid IL or missing references) //IL_30b4: Unknown result type (might be due to invalid IL or missing references) //IL_30be: Unknown result type (might be due to invalid IL or missing references) //IL_30c3: Unknown result type (might be due to invalid IL or missing references) //IL_30c9: Unknown result type (might be due to invalid IL or missing references) //IL_30ce: Unknown result type (might be due to invalid IL or missing references) //IL_30da: Unknown result type (might be due to invalid IL or missing references) //IL_1c61: Unknown result type (might be due to invalid IL or missing references) //IL_1c67: Unknown result type (might be due to invalid IL or missing references) //IL_1c6c: Unknown result type (might be due to invalid IL or missing references) //IL_1c72: Unknown result type (might be due to invalid IL or missing references) //IL_1c7c: Unknown result type (might be due to invalid IL or missing references) //IL_1c81: Unknown result type (might be due to invalid IL or missing references) //IL_1c87: Unknown result type (might be due to invalid IL or missing references) //IL_1c8c: Unknown result type (might be due to invalid IL or missing references) //IL_1c92: Unknown result type (might be due to invalid IL or missing references) //IL_1c9c: Unknown result type (might be due to invalid IL or missing references) //IL_1ca1: Unknown result type (might be due to invalid IL or missing references) //IL_1ca7: Unknown result type (might be due to invalid IL or missing references) //IL_1cac: Unknown result type (might be due to invalid IL or missing references) //IL_1cb7: Unknown result type (might be due to invalid IL or missing references) //IL_1cbd: Unknown result type (might be due to invalid IL or missing references) //IL_1cc2: Unknown result type (might be due to invalid IL or missing references) //IL_1cc8: Unknown result type (might be due to invalid IL or missing references) //IL_1cd2: Unknown result type (might be due to invalid IL or missing references) //IL_1cd7: Unknown result type (might be due to invalid IL or missing references) //IL_1cdd: Unknown result type (might be due to invalid IL or missing references) //IL_1ce2: Unknown result type (might be due to invalid IL or missing references) //IL_1ce8: Unknown result type (might be due to invalid IL or missing references) //IL_1cf2: Unknown result type (might be due to invalid IL or missing references) //IL_1cf7: Unknown result type (might be due to invalid IL or missing references) //IL_1cfd: Unknown result type (might be due to invalid IL or missing references) //IL_1d02: Unknown result type (might be due to invalid IL or missing references) //IL_1d0e: Unknown result type (might be due to invalid IL or missing references) //IL_0841: Unknown result type (might be due to invalid IL or missing references) //IL_0847: Unknown result type (might be due to invalid IL or missing references) //IL_0851: Unknown result type (might be due to invalid IL or missing references) //IL_0856: Unknown result type (might be due to invalid IL or missing references) //IL_0861: Unknown result type (might be due to invalid IL or missing references) //IL_0867: Unknown result type (might be due to invalid IL or missing references) //IL_086c: Unknown result type (might be due to invalid IL or missing references) //IL_0872: Unknown result type (might be due to invalid IL or missing references) //IL_0877: Unknown result type (might be due to invalid IL or missing references) //IL_087d: Unknown result type (might be due to invalid IL or missing references) //IL_0882: Unknown result type (might be due to invalid IL or missing references) //IL_0888: Unknown result type (might be due to invalid IL or missing references) //IL_0892: Unknown result type (might be due to invalid IL or missing references) //IL_0897: Unknown result type (might be due to invalid IL or missing references) //IL_089d: Unknown result type (might be due to invalid IL or missing references) //IL_08a2: Unknown result type (might be due to invalid IL or missing references) //IL_08a8: Unknown result type (might be due to invalid IL or missing references) //IL_08b2: Unknown result type (might be due to invalid IL or missing references) //IL_08b7: Unknown result type (might be due to invalid IL or missing references) //IL_08bd: Unknown result type (might be due to invalid IL or missing references) //IL_08c2: Unknown result type (might be due to invalid IL or missing references) //IL_08ce: Unknown result type (might be due to invalid IL or missing references) //IL_30f4: Unknown result type (might be due to invalid IL or missing references) //IL_30fa: Unknown result type (might be due to invalid IL or missing references) //IL_30ff: Unknown result type (might be due to invalid IL or missing references) //IL_3105: Unknown result type (might be due to invalid IL or missing references) //IL_310f: Unknown result type (might be due to invalid IL or missing references) //IL_3114: Unknown result type (might be due to invalid IL or missing references) //IL_311a: Unknown result type (might be due to invalid IL or missing references) //IL_311f: Unknown result type (might be due to invalid IL or missing references) //IL_3125: Unknown result type (might be due to invalid IL or missing references) //IL_312f: Unknown result type (might be due to invalid IL or missing references) //IL_3134: Unknown result type (might be due to invalid IL or missing references) //IL_313a: Unknown result type (might be due to invalid IL or missing references) //IL_313f: Unknown result type (might be due to invalid IL or missing references) //IL_314a: Unknown result type (might be due to invalid IL or missing references) //IL_3150: Unknown result type (might be due to invalid IL or missing references) //IL_3155: Unknown result type (might be due to invalid IL or missing references) //IL_315b: Unknown result type (might be due to invalid IL or missing references) //IL_3165: Unknown result type (might be due to invalid IL or missing references) //IL_316a: Unknown result type (might be due to invalid IL or missing references) //IL_3170: Unknown result type (might be due to invalid IL or missing references) //IL_3175: Unknown result type (might be due to invalid IL or missing references) //IL_317b: Unknown result type (might be due to invalid IL or missing references) //IL_3185: Unknown result type (might be due to invalid IL or missing references) //IL_318a: Unknown result type (might be due to invalid IL or missing references) //IL_3190: Unknown result type (might be due to invalid IL or missing references) //IL_3195: Unknown result type (might be due to invalid IL or missing references) //IL_31a1: Unknown result type (might be due to invalid IL or missing references) //IL_1d23: Unknown result type (might be due to invalid IL or missing references) //IL_1d2e: Unknown result type (might be due to invalid IL or missing references) //IL_1d34: Unknown result type (might be due to invalid IL or missing references) //IL_1d39: Unknown result type (might be due to invalid IL or missing references) //IL_1d3f: Unknown result type (might be due to invalid IL or missing references) //IL_1d44: Unknown result type (might be due to invalid IL or missing references) //IL_1d4a: Unknown result type (might be due to invalid IL or missing references) //IL_1d4f: Unknown result type (might be due to invalid IL or missing references) //IL_1d55: Unknown result type (might be due to invalid IL or missing references) //IL_1d5f: Unknown result type (might be due to invalid IL or missing references) //IL_1d64: Unknown result type (might be due to invalid IL or missing references) //IL_1d6a: Unknown result type (might be due to invalid IL or missing references) //IL_1d6f: Unknown result type (might be due to invalid IL or missing references) //IL_1d75: Unknown result type (might be due to invalid IL or missing references) //IL_1d7a: Unknown result type (might be due to invalid IL or missing references) //IL_1d86: Unknown result type (might be due to invalid IL or missing references) //IL_08e3: Unknown result type (might be due to invalid IL or missing references) //IL_08e9: Unknown result type (might be due to invalid IL or missing references) //IL_08f3: Unknown result type (might be due to invalid IL or missing references) //IL_08f8: Unknown result type (might be due to invalid IL or missing references) //IL_0903: Unknown result type (might be due to invalid IL or missing references) //IL_0909: Unknown result type (might be due to invalid IL or missing references) //IL_090e: Unknown result type (might be due to invalid IL or missing references) //IL_0914: Unknown result type (might be due to invalid IL or missing references) //IL_0919: Unknown result type (might be due to invalid IL or missing references) //IL_091f: Unknown result type (might be due to invalid IL or missing references) //IL_0924: Unknown result type (might be due to invalid IL or missing references) //IL_092a: Unknown result type (might be due to invalid IL or missing references) //IL_0934: Unknown result type (might be due to invalid IL or missing references) //IL_0939: Unknown result type (might be due to invalid IL or missing references) //IL_093f: Unknown result type (might be due to invalid IL or missing references) //IL_0944: Unknown result type (might be due to invalid IL or missing references) //IL_094a: Unknown result type (might be due to invalid IL or missing references) //IL_0954: Unknown result type (might be due to invalid IL or missing references) //IL_0959: Unknown result type (might be due to invalid IL or missing references) //IL_095f: Unknown result type (might be due to invalid IL or missing references) //IL_0964: Unknown result type (might be due to invalid IL or missing references) //IL_0970: Unknown result type (might be due to invalid IL or missing references) //IL_31bb: Unknown result type (might be due to invalid IL or missing references) //IL_31c1: Unknown result type (might be due to invalid IL or missing references) //IL_31c6: Unknown result type (might be due to invalid IL or missing references) //IL_31cc: Unknown result type (might be due to invalid IL or missing references) //IL_31d6: Unknown result type (might be due to invalid IL or missing references) //IL_31db: Unknown result type (might be due to invalid IL or missing references) //IL_31e1: Unknown result type (might be due to invalid IL or missing references) //IL_31e6: Unknown result type (might be due to invalid IL or missing references) //IL_31ec: Unknown result type (might be due to invalid IL or missing references) //IL_31f6: Unknown result type (might be due to invalid IL or missing references) //IL_31fb: Unknown result type (might be due to invalid IL or missing references) //IL_3201: Unknown result type (might be due to invalid IL or missing references) //IL_3206: Unknown result type (might be due to invalid IL or missing references) //IL_3211: Unknown result type (might be due to invalid IL or missing references) //IL_3217: Unknown result type (might be due to invalid IL or missing references) //IL_321c: Unknown result type (might be due to invalid IL or missing references) //IL_3222: Unknown result type (might be due to invalid IL or missing references) //IL_322c: Unknown result type (might be due to invalid IL or missing references) //IL_3231: Unknown result type (might be due to invalid IL or missing references) //IL_3237: Unknown result type (might be due to invalid IL or missing references) //IL_323c: Unknown result type (might be due to invalid IL or missing references) //IL_3242: Unknown result type (might be due to invalid IL or missing references) //IL_324c: Unknown result type (might be due to invalid IL or missing references) //IL_3251: Unknown result type (might be due to invalid IL or missing references) //IL_3257: Unknown result type (might be due to invalid IL or missing references) //IL_325c: Unknown result type (might be due to invalid IL or missing references) //IL_3268: Unknown result type (might be due to invalid IL or missing references) //IL_1d9b: Unknown result type (might be due to invalid IL or missing references) //IL_1da1: Unknown result type (might be due to invalid IL or missing references) //IL_1dab: Unknown result type (might be due to invalid IL or missing references) //IL_1db0: Unknown result type (might be due to invalid IL or missing references) //IL_1dbb: Unknown result type (might be due to invalid IL or missing references) //IL_1dc1: Unknown result type (might be due to invalid IL or missing references) //IL_1dc6: Unknown result type (might be due to invalid IL or missing references) //IL_1dcc: Unknown result type (might be due to invalid IL or missing references) //IL_1dd1: Unknown result type (might be due to invalid IL or missing references) //IL_1dd7: Unknown result type (might be due to invalid IL or missing references) //IL_1ddc: Unknown result type (might be due to invalid IL or missing references) //IL_1de2: Unknown result type (might be due to invalid IL or missing references) //IL_1dec: Unknown result type (might be due to invalid IL or missing references) //IL_1df1: Unknown result type (might be due to invalid IL or missing references) //IL_1df7: Unknown result type (might be due to invalid IL or missing references) //IL_1dfc: Unknown result type (might be due to invalid IL or missing references) //IL_1e02: Unknown result type (might be due to invalid IL or missing references) //IL_1e0c: Unknown result type (might be due to invalid IL or missing references) //IL_1e11: Unknown result type (might be due to invalid IL or missing references) //IL_1e17: Unknown result type (might be due to invalid IL or missing references) //IL_1e1c: Unknown result type (might be due to invalid IL or missing references) //IL_1e28: Unknown result type (might be due to invalid IL or missing references) //IL_0985: Unknown result type (might be due to invalid IL or missing references) //IL_098b: Unknown result type (might be due to invalid IL or missing references) //IL_0995: Unknown result type (might be due to invalid IL or missing references) //IL_099a: Unknown result type (might be due to invalid IL or missing references) //IL_09a5: Unknown result type (might be due to invalid IL or missing references) //IL_09ab: Unknown result type (might be due to invalid IL or missing references) //IL_09b0: Unknown result type (might be due to invalid IL or missing references) //IL_09b6: Unknown result type (might be due to invalid IL or missing references) //IL_09bb: Unknown result type (might be due to invalid IL or missing references) //IL_09c1: Unknown result type (might be due to invalid IL or missing references) //IL_09c6: Unknown result type (might be due to invalid IL or missing references) //IL_09cc: Unknown result type (might be due to invalid IL or missing references) //IL_09d6: Unknown result type (might be due to invalid IL or missing references) //IL_09db: Unknown result type (might be due to invalid IL or missing references) //IL_09e1: Unknown result type (might be due to invalid IL or missing references) //IL_09e6: Unknown result type (might be due to invalid IL or missing references) //IL_09ec: Unknown result type (might be due to invalid IL or missing references) //IL_09f6: Unknown result type (might be due to invalid IL or missing references) //IL_09fb: Unknown result type (might be due to invalid IL or missing references) //IL_0a01: Unknown result type (might be due to invalid IL or missing references) //IL_0a06: Unknown result type (might be due to invalid IL or missing references) //IL_0a12: Unknown result type (might be due to invalid IL or missing references) //IL_327d: Unknown result type (might be due to invalid IL or missing references) //IL_3288: Unknown result type (might be due to invalid IL or missing references) //IL_328e: Unknown result type (might be due to invalid IL or missing references) //IL_3293: Unknown result type (might be due to invalid IL or missing references) //IL_3299: Unknown result type (might be due to invalid IL or missing references) //IL_329e: Unknown result type (might be due to invalid IL or missing references) //IL_32a4: Unknown result type (might be due to invalid IL or missing references) //IL_32a9: Unknown result type (might be due to invalid IL or missing references) //IL_32af: Unknown result type (might be due to invalid IL or missing references) //IL_32b9: Unknown result type (might be due to invalid IL or missing references) //IL_32be: Unknown result type (might be due to invalid IL or missing references) //IL_32c4: Unknown result type (might be due to invalid IL or missing references) //IL_32c9: Unknown result type (might be due to invalid IL or missing references) //IL_32cf: Unknown result type (might be due to invalid IL or missing references) //IL_32d4: Unknown result type (might be due to invalid IL or missing references) //IL_32e0: Unknown result type (might be due to invalid IL or missing references) //IL_1e3d: Unknown result type (might be due to invalid IL or missing references) //IL_1e43: Unknown result type (might be due to invalid IL or missing references) //IL_1e4d: Unknown result type (might be due to invalid IL or missing references) //IL_1e52: Unknown result type (might be due to invalid IL or missing references) //IL_1e5d: Unknown result type (might be due to invalid IL or missing references) //IL_1e63: Unknown result type (might be due to invalid IL or missing references) //IL_1e68: Unknown result type (might be due to invalid IL or missing references) //IL_1e6e: Unknown result type (might be due to invalid IL or missing references) //IL_1e73: Unknown result type (might be due to invalid IL or missing references) //IL_1e79: Unknown result type (might be due to invalid IL or missing references) //IL_1e7e: Unknown result type (might be due to invalid IL or missing references) //IL_1e84: Unknown result type (might be due to invalid IL or missing references) //IL_1e8e: Unknown result type (might be due to invalid IL or missing references) //IL_1e93: Unknown result type (might be due to invalid IL or missing references) //IL_1e99: Unknown result type (might be due to invalid IL or missing references) //IL_1e9e: Unknown result type (might be due to invalid IL or missing references) //IL_1ea4: Unknown result type (might be due to invalid IL or missing references) //IL_1eae: Unknown result type (might be due to invalid IL or missing references) //IL_1eb3: Unknown result type (might be due to invalid IL or missing references) //IL_1eb9: Unknown result type (might be due to invalid IL or missing references) //IL_1ebe: Unknown result type (might be due to invalid IL or missing references) //IL_1eca: Unknown result type (might be due to invalid IL or missing references) //IL_0a2c: Unknown result type (might be due to invalid IL or missing references) //IL_0a32: Unknown result type (might be due to invalid IL or missing references) //IL_0a37: Unknown result type (might be due to invalid IL or missing references) //IL_0a3d: Unknown result type (might be due to invalid IL or missing references) //IL_0a42: Unknown result type (might be due to invalid IL or missing references) //IL_0a48: Unknown result type (might be due to invalid IL or missing references) //IL_0a4d: Unknown result type (might be due to invalid IL or missing references) //IL_0a58: Unknown result type (might be due to invalid IL or missing references) //IL_0a5e: Unknown result type (might be due to invalid IL or missing references) //IL_0a63: Unknown result type (might be due to invalid IL or missing references) //IL_0a69: Unknown result type (might be due to invalid IL or missing references) //IL_0a6e: Unknown result type (might be due to invalid IL or missing references) //IL_0a74: Unknown result type (might be due to invalid IL or missing references) //IL_0a7e: Unknown result type (might be due to invalid IL or missing references) //IL_0a83: Unknown result type (might be due to invalid IL or missing references) //IL_0a89: Unknown result type (might be due to invalid IL or missing references) //IL_0a8e: Unknown result type (might be due to invalid IL or missing references) //IL_0a9a: Unknown result type (might be due to invalid IL or missing references) //IL_32f5: Unknown result type (might be due to invalid IL or missing references) //IL_32fb: Unknown result type (might be due to invalid IL or missing references) //IL_3305: Unknown result type (might be due to invalid IL or missing references) //IL_330a: Unknown result type (might be due to invalid IL or missing references) //IL_3315: Unknown result type (might be due to invalid IL or missing references) //IL_331b: Unknown result type (might be due to invalid IL or missing references) //IL_3320: Unknown result type (might be due to invalid IL or missing references) //IL_3326: Unknown result type (might be due to invalid IL or missing references) //IL_332b: Unknown result type (might be due to invalid IL or missing references) //IL_3331: Unknown result type (might be due to invalid IL or missing references) //IL_3336: Unknown result type (might be due to invalid IL or missing references) //IL_333c: Unknown result type (might be due to invalid IL or missing references) //IL_3346: Unknown result type (might be due to invalid IL or missing references) //IL_334b: Unknown result type (might be due to invalid IL or missing references) //IL_3351: Unknown result type (might be due to invalid IL or missing references) //IL_3356: Unknown result type (might be due to invalid IL or missing references) //IL_335c: Unknown result type (might be due to invalid IL or missing references) //IL_3366: Unknown result type (might be due to invalid IL or missing references) //IL_336b: Unknown result type (might be due to invalid IL or missing references) //IL_3371: Unknown result type (might be due to invalid IL or missing references) //IL_3376: Unknown result type (might be due to invalid IL or missing references) //IL_3382: Unknown result type (might be due to invalid IL or missing references) //IL_1edf: Unknown result type (might be due to invalid IL or missing references) //IL_1ee5: Unknown result type (might be due to invalid IL or missing references) //IL_1eef: Unknown result type (might be due to invalid IL or missing references) //IL_1ef4: Unknown result type (might be due to invalid IL or missing references) //IL_1eff: Unknown result type (might be due to invalid IL or missing references) //IL_1f05: Unknown result type (might be due to invalid IL or missing references) //IL_1f0a: Unknown result type (might be due to invalid IL or missing references) //IL_1f10: Unknown result type (might be due to invalid IL or missing references) //IL_1f15: Unknown result type (might be due to invalid IL or missing references) //IL_1f1b: Unknown result type (might be due to invalid IL or missing references) //IL_1f20: Unknown result type (might be due to invalid IL or missing references) //IL_1f26: Unknown result type (might be due to invalid IL or missing references) //IL_1f30: Unknown result type (might be due to invalid IL or missing references) //IL_1f35: Unknown result type (might be due to invalid IL or missing references) //IL_1f3b: Unknown result type (might be due to invalid IL or missing references) //IL_1f40: Unknown result type (might be due to invalid IL or missing references) //IL_1f46: Unknown result type (might be due to invalid IL or missing references) //IL_1f50: Unknown result type (might be due to invalid IL or missing references) //IL_1f55: Unknown result type (might be due to invalid IL or missing references) //IL_1f5b: Unknown result type (might be due to invalid IL or missing references) //IL_1f60: Unknown result type (might be due to invalid IL or missing references) //IL_1f6c: Unknown result type (might be due to invalid IL or missing references) //IL_0ab4: Unknown result type (might be due to invalid IL or missing references) //IL_0aba: Unknown result type (might be due to invalid IL or missing references) //IL_0abf: Unknown result type (might be due to invalid IL or missing references) //IL_0ac5: Unknown result type (might be due to invalid IL or missing references) //IL_0aca: Unknown result type (might be due to invalid IL or missing references) //IL_0ad0: Unknown result type (might be due to invalid IL or missing references) //IL_0ad5: Unknown result type (might be due to invalid IL or missing references) //IL_0adb: Unknown result type (might be due to invalid IL or missing references) //IL_0ae5: Unknown result type (might be due to invalid IL or missing references) //IL_0aea: Unknown result type (might be due to invalid IL or missing references) //IL_0af5: Unknown result type (might be due to invalid IL or missing references) //IL_0afb: Unknown result type (might be due to invalid IL or missing references) //IL_0b00: Unknown result type (might be due to invalid IL or missing references) //IL_0b06: Unknown result type (might be due to invalid IL or missing references) //IL_0b0b: Unknown result type (might be due to invalid IL or missing references) //IL_0b11: Unknown result type (might be due to invalid IL or missing references) //IL_0b1b: Unknown result type (might be due to invalid IL or missing references) //IL_0b20: Unknown result type (might be due to invalid IL or missing references) //IL_0b26: Unknown result type (might be due to invalid IL or missing references) //IL_0b2b: Unknown result type (might be due to invalid IL or missing references) //IL_0b31: Unknown result type (might be due to invalid IL or missing references) //IL_0b3b: Unknown result type (might be due to invalid IL or missing references) //IL_0b40: Unknown result type (might be due to invalid IL or missing references) //IL_0b4c: Unknown result type (might be due to invalid IL or missing references) //IL_3397: Unknown result type (might be due to invalid IL or missing references) //IL_339d: Unknown result type (might be due to invalid IL or missing references) //IL_33a7: Unknown result type (might be due to invalid IL or missing references) //IL_33ac: Unknown result type (might be due to invalid IL or missing references) //IL_33b7: Unknown result type (might be due to invalid IL or missing references) //IL_33bd: Unknown result type (might be due to invalid IL or missing references) //IL_33c2: Unknown result type (might be due to invalid IL or missing references) //IL_33c8: Unknown result type (might be due to invalid IL or missing references) //IL_33cd: Unknown result type (might be due to invalid IL or missing references) //IL_33d3: Unknown result type (might be due to invalid IL or missing references) //IL_33d8: Unknown result type (might be due to invalid IL or missing references) //IL_33de: Unknown result type (might be due to invalid IL or missing references) //IL_33e8: Unknown result type (might be due to invalid IL or missing references) //IL_33ed: Unknown result type (might be due to invalid IL or missing references) //IL_33f3: Unknown result type (might be due to invalid IL or missing references) //IL_33f8: Unknown result type (might be due to invalid IL or missing references) //IL_33fe: Unknown result type (might be due to invalid IL or missing references) //IL_3408: Unknown result type (might be due to invalid IL or missing references) //IL_340d: Unknown result type (might be due to invalid IL or missing references) //IL_3413: Unknown result type (might be due to invalid IL or missing references) //IL_3418: Unknown result type (might be due to invalid IL or missing references) //IL_3424: Unknown result type (might be due to invalid IL or missing references) //IL_1f86: Unknown result type (might be due to invalid IL or missing references) //IL_1f8c: Unknown result type (might be due to invalid IL or missing references) //IL_1f91: Unknown result type (might be due to invalid IL or missing references) //IL_1f97: Unknown result type (might be due to invalid IL or missing references) //IL_1f9c: Unknown result type (might be due to invalid IL or missing references) //IL_1fa2: Unknown result type (might be due to invalid IL or missing references) //IL_1fa7: Unknown result type (might be due to invalid IL or missing references) //IL_1fb2: Unknown result type (might be due to invalid IL or missing references) //IL_1fb8: Unknown result type (might be due to invalid IL or missing references) //IL_1fbd: Unknown result type (might be due to invalid IL or missing references) //IL_1fc3: Unknown result type (might be due to invalid IL or missing references) //IL_1fc8: Unknown result type (might be due to invalid IL or missing references) //IL_1fce: Unknown result type (might be due to invalid IL or missing references) //IL_1fd8: Unknown result type (might be due to invalid IL or missing references) //IL_1fdd: Unknown result type (might be due to invalid IL or missing references) //IL_1fe3: Unknown result type (might be due to invalid IL or missing references) //IL_1fe8: Unknown result type (might be due to invalid IL or missing references) //IL_1ff4: Unknown result type (might be due to invalid IL or missing references) //IL_0b66: Unknown result type (might be due to invalid IL or missing references) //IL_0b6c: Unknown result type (might be due to invalid IL or missing references) //IL_0b71: Unknown result type (might be due to invalid IL or missing references) //IL_0b77: Unknown result type (might be due to invalid IL or missing references) //IL_0b7c: Unknown result type (might be due to invalid IL or missing references) //IL_0b82: Unknown result type (might be due to invalid IL or missing references) //IL_0b87: Unknown result type (might be due to invalid IL or missing references) //IL_0b8d: Unknown result type (might be due to invalid IL or missing references) //IL_0b97: Unknown result type (might be due to invalid IL or missing references) //IL_0b9c: Unknown result type (might be due to invalid IL or missing references) //IL_0ba7: Unknown result type (might be due to invalid IL or missing references) //IL_0bad: Unknown result type (might be due to invalid IL or missing references) //IL_0bb2: Unknown result type (might be due to invalid IL or missing references) //IL_0bb8: Unknown result type (might be due to invalid IL or missing references) //IL_0bbd: Unknown result type (might be due to invalid IL or missing references) //IL_0bc3: Unknown result type (might be due to invalid IL or missing references) //IL_0bcd: Unknown result type (might be due to invalid IL or missing references) //IL_0bd2: Unknown result type (might be due to invalid IL or missing references) //IL_0bd8: Unknown result type (might be due to invalid IL or missing references) //IL_0bdd: Unknown result type (might be due to invalid IL or missing references) //IL_0be3: Unknown result type (might be due to invalid IL or missing references) //IL_0bed: Unknown result type (might be due to invalid IL or missing references) //IL_0bf2: Unknown result type (might be due to invalid IL or missing references) //IL_0bfe: Unknown result type (might be due to invalid IL or missing references) //IL_3439: Unknown result type (might be due to invalid IL or missing references) //IL_343f: Unknown result type (might be due to invalid IL or missing references) //IL_3449: Unknown result type (might be due to invalid IL or missing references) //IL_344e: Unknown result type (might be due to invalid IL or missing references) //IL_3459: Unknown result type (might be due to invalid IL or missing references) //IL_345f: Unknown result type (might be due to invalid IL or missing references) //IL_3464: Unknown result type (might be due to invalid IL or missing references) //IL_346a: Unknown result type (might be due to invalid IL or missing references) //IL_346f: Unknown result type (might be due to invalid IL or missing references) //IL_3475: Unknown result type (might be due to invalid IL or missing references) //IL_347a: Unknown result type (might be due to invalid IL or missing references) //IL_3480: Unknown result type (might be due to invalid IL or missing references) //IL_348a: Unknown result type (might be due to invalid IL or missing references) //IL_348f: Unknown result type (might be due to invalid IL or missing references) //IL_3495: Unknown result type (might be due to invalid IL or missing references) //IL_349a: Unknown result type (might be due to invalid IL or missing references) //IL_34a0: Unknown result type (might be due to invalid IL or missing references) //IL_34aa: Unknown result type (might be due to invalid IL or missing references) //IL_34af: Unknown result type (might be due to invalid IL or missing references) //IL_34b5: Unknown result type (might be due to invalid IL or missing references) //IL_34ba: Unknown result type (might be due to invalid IL or missing references) //IL_34c6: Unknown result type (might be due to invalid IL or missing references) //IL_200e: Unknown result type (might be due to invalid IL or missing references) //IL_2014: Unknown result type (might be due to invalid IL or missing references) //IL_2019: Unknown result type (might be due to invalid IL or missing references) //IL_201f: Unknown result type (might be due to invalid IL or missing references) //IL_2024: Unknown result type (might be due to invalid IL or missing references) //IL_202a: Unknown result type (might be due to invalid IL or missing references) //IL_202f: Unknown result type (might be due to invalid IL or missing references) //IL_2035: Unknown result type (might be due to invalid IL or missing references) //IL_203f: Unknown result type (might be due to invalid IL or missing references) //IL_2044: Unknown result type (might be due to invalid IL or missing references) //IL_204f: Unknown result type (might be due to invalid IL or missing references) //IL_2055: Unknown result type (might be due to invalid IL or missing references) //IL_205a: Unknown result type (might be due to invalid IL or missing references) //IL_2060: Unknown result type (might be due to invalid IL or missing references) //IL_2065: Unknown result type (might be due to invalid IL or missing references) //IL_206b: Unknown result type (might be due to invalid IL or missing references) //IL_2075: Unknown result type (might be due to invalid IL or missing references) //IL_207a: Unknown result type (might be due to invalid IL or missing references) //IL_2080: Unknown result type (might be due to invalid IL or missing references) //IL_2085: Unknown result type (might be due to invalid IL or missing references) //IL_208b: Unknown result type (might be due to invalid IL or missing references) //IL_2095: Unknown result type (might be due to invalid IL or missing references) //IL_209a: Unknown result type (might be due to invalid IL or missing references) //IL_20a6: Unknown result type (might be due to invalid IL or missing references) //IL_0c18: Unknown result type (might be due to invalid IL or missing references) //IL_0c1e: Unknown result type (might be due to invalid IL or missing references) //IL_0c23: Unknown result type (might be due to invalid IL or missing references) //IL_0c29: Unknown result type (might be due to invalid IL or missing references) //IL_0c2e: Unknown result type (might be due to invalid IL or missing references) //IL_0c34: Unknown result type (might be due to invalid IL or missing references) //IL_0c39: Unknown result type (might be due to invalid IL or missing references) //IL_0c3f: Unknown result type (might be due to invalid IL or missing references) //IL_0c49: Unknown result type (might be due to invalid IL or missing references) //IL_0c4e: Unknown result type (might be due to invalid IL or missing references) //IL_0c59: Unknown result type (might be due to invalid IL or missing references) //IL_0c5f: Unknown result type (might be due to invalid IL or missing references) //IL_0c64: Unknown result type (might be due to invalid IL or missing references) //IL_0c6a: Unknown result type (might be due to invalid IL or missing references) //IL_0c6f: Unknown result type (might be due to invalid IL or missing references) //IL_0c75: Unknown result type (might be due to invalid IL or missing references) //IL_0c7f: Unknown result type (might be due to invalid IL or missing references) //IL_0c84: Unknown result type (might be due to invalid IL or missing references) //IL_0c8a: Unknown result type (might be due to invalid IL or missing references) //IL_0c8f: Unknown result type (might be due to invalid IL or missing references) //IL_0c95: Unknown result type (might be due to invalid IL or missing references) //IL_0c9f: Unknown result type (might be due to invalid IL or missing references) //IL_0ca4: Unknown result type (might be due to invalid IL or missing references) //IL_0cb0: Unknown result type (might be due to invalid IL or missing references) //IL_34e0: Unknown result type (might be due to invalid IL or missing references) //IL_34e6: Unknown result type (might be due to invalid IL or missing references) //IL_34eb: Unknown result type (might be due to invalid IL or missing references) //IL_34f1: Unknown result type (might be due to invalid IL or missing references) //IL_34f6: Unknown result type (might be due to invalid IL or missing references) //IL_34fc: Unknown result type (might be due to invalid IL or missing references) //IL_3501: Unknown result type (might be due to invalid IL or missing references) //IL_350c: Unknown result type (might be due to invalid IL or missing references) //IL_3512: Unknown result type (might be due to invalid IL or missing references) //IL_3517: Unknown result type (might be due to invalid IL or missing references) //IL_351d: Unknown result type (might be due to invalid IL or missing references) //IL_3522: Unknown result type (might be due to invalid IL or missing references) //IL_3528: Unknown result type (might be due to invalid IL or missing references) //IL_3532: Unknown result type (might be due to invalid IL or missing references) //IL_3537: Unknown result type (might be due to invalid IL or missing references) //IL_353d: Unknown result type (might be due to invalid IL or missing references) //IL_3542: Unknown result type (might be due to invalid IL or missing references) //IL_354e: Unknown result type (might be due to invalid IL or missing references) //IL_20c0: Unknown result type (might be due to invalid IL or missing references) //IL_20c6: Unknown result type (might be due to invalid IL or missing references) //IL_20cb: Unknown result type (might be due to invalid IL or missing references) //IL_20d1: Unknown result type (might be due to invalid IL or missing references) //IL_20d6: Unknown result type (might be due to invalid IL or missing references) //IL_20dc: Unknown result type (might be due to invalid IL or missing references) //IL_20e1: Unknown result type (might be due to invalid IL or missing references) //IL_20e7: Unknown result type (might be due to invalid IL or missing references) //IL_20f1: Unknown result type (might be due to invalid IL or missing references) //IL_20f6: Unknown result type (might be due to invalid IL or missing references) //IL_2101: Unknown result type (might be due to invalid IL or missing references) //IL_2107: Unknown result type (might be due to invalid IL or missing references) //IL_210c: Unknown result type (might be due to invalid IL or missing references) //IL_2112: Unknown result type (might be due to invalid IL or missing references) //IL_2117: Unknown result type (might be due to invalid IL or missing references) //IL_211d: Unknown result type (might be due to invalid IL or missing references) //IL_2127: Unknown result type (might be due to invalid IL or missing references) //IL_212c: Unknown result type (might be due to invalid IL or missing references) //IL_2132: Unknown result type (might be due to invalid IL or missing references) //IL_2137: Unknown result type (might be due to invalid IL or missing references) //IL_213d: Unknown result type (might be due to invalid IL or missing references) //IL_2147: Unknown result type (might be due to invalid IL or missing references) //IL_214c: Unknown result type (might be due to invalid IL or missing references) //IL_2158: Unknown result type (might be due to invalid IL or missing references) //IL_0cca: Unknown result type (might be due to invalid IL or missing references) //IL_0cd0: Unknown result type (might be due to invalid IL or missing references) //IL_0cd5: Unknown result type (might be due to invalid IL or missing references) //IL_0cdb: Unknown result type (might be due to invalid IL or missing references) //IL_0ce0: Unknown result type (might be due to invalid IL or missing references) //IL_0ce6: Unknown result type (might be due to invalid IL or missing references) //IL_0ceb: Unknown result type (might be due to invalid IL or missing references) //IL_0cf1: Unknown result type (might be due to invalid IL or missing references) //IL_0cfb: Unknown result type (might be due to invalid IL or missing references) //IL_0d00: Unknown result type (might be due to invalid IL or missing references) //IL_0d0b: Unknown result type (might be due to invalid IL or missing references) //IL_0d11: Unknown result type (might be due to invalid IL or missing references) //IL_0d16: Unknown result type (might be due to invalid IL or missing references) //IL_0d1c: Unknown result type (might be due to invalid IL or missing references) //IL_0d21: Unknown result type (might be due to invalid IL or missing references) //IL_0d27: Unknown result type (might be due to invalid IL or missing references) //IL_0d31: Unknown result type (might be due to invalid IL or missing references) //IL_0d36: Unknown result type (might be due to invalid IL or missing references) //IL_0d3c: Unknown result type (might be due to invalid IL or missing references) //IL_0d41: Unknown result type (might be due to invalid IL or missing references) //IL_0d47: Unknown result type (might be due to invalid IL or missing references) //IL_0d51: Unknown result type (might be due to invalid IL or missing references) //IL_0d56: Unknown result type (might be due to invalid IL or missing references) //IL_0d62: Unknown result type (might be due to invalid IL or missing references) //IL_3568: Unknown result type (might be due to invalid IL or missing references) //IL_356e: Unknown result type (might be due to invalid IL or missing references) //IL_3573: Unknown result type (might be due to invalid IL or missing references) //IL_3579: Unknown result type (might be due to invalid IL or missing references) //IL_357e: Unknown result type (might be due to invalid IL or missing references) //IL_3584: Unknown result type (might be due to invalid IL or missing references) //IL_3589: Unknown result type (might be due to invalid IL or missing references) //IL_358f: Unknown result type (might be due to invalid IL or missing references) //IL_3599: Unknown result type (might be due to invalid IL or missing references) //IL_359e: Unknown result type (might be due to invalid IL or missing references) //IL_35a9: Unknown result type (might be due to invalid IL or missing references) //IL_35af: Unknown result type (might be due to invalid IL or missing references) //IL_35b4: Unknown result type (might be due to invalid IL or missing references) //IL_35ba: Unknown result type (might be due to invalid IL or missing references) //IL_35bf: Unknown result type (might be due to invalid IL or missing references) //IL_35c5: Unknown result type (might be due to invalid IL or missing references) //IL_35cf: Unknown result type (might be due to invalid IL or missing references) //IL_35d4: Unknown result type (might be due to invalid IL or missing references) //IL_35da: Unknown result type (might be due to invalid IL or missing references) //IL_35df: Unknown result type (might be due to invalid IL or missing references) //IL_35e5: Unknown result type (might be due to invalid IL or missing references) //IL_35ef: Unknown result type (might be due to invalid IL or missing references) //IL_35f4: Unknown result type (might be due to invalid IL or missing references) //IL_3600: Unknown result type (might be due to invalid IL or missing references) //IL_2172: Unknown result type (might be due to invalid IL or missing references) //IL_2178: Unknown result type (might be due to invalid IL or missing references) //IL_217d: Unknown result type (might be due to invalid IL or missing references) //IL_2183: Unknown result type (might be due to invalid IL or missing references) //IL_2188: Unknown result type (might be due to invalid IL or missing references) //IL_218e: Unknown result type (might be due to invalid IL or missing references) //IL_2193: Unknown result type (might be due to invalid IL or missing references) //IL_2199: Unknown result type (might be due to invalid IL or missing references) //IL_21a3: Unknown result type (might be due to invalid IL or missing references) //IL_21a8: Unknown result type (might be due to invalid IL or missing references) //IL_21b3: Unknown result type (might be due to invalid IL or missing references) //IL_21b9: Unknown result type (might be due to invalid IL or missing references) //IL_21be: Unknown result type (might be due to invalid IL or missing references) //IL_21c4: Unknown result type (might be due to invalid IL or missing references) //IL_21c9: Unknown result type (might be due to invalid IL or missing references) //IL_21cf: Unknown result type (might be due to invalid IL or missing references) //IL_21d9: Unknown result type (might be due to invalid IL or missing references) //IL_21de: Unknown result type (might be due to invalid IL or missing references) //IL_21e4: Unknown result type (might be due to invalid IL or missing references) //IL_21e9: Unknown result type (might be due to invalid IL or missing references) //IL_21ef: Unknown result type (might be due to invalid IL or missing references) //IL_21f9: Unknown result type (might be due to invalid IL or missing references) //IL_21fe: Unknown result type (might be due to invalid IL or missing references) //IL_220a: Unknown result type (might be due to invalid IL or missing references) //IL_0d7c: Unknown result type (might be due to invalid IL or missing references) //IL_0d82: Unknown result type (might be due to invalid IL or missing references) //IL_0d87: Unknown result type (might be due to invalid IL or missing references) //IL_0d8d: Unknown result type (might be due to invalid IL or missing references) //IL_0d92: Unknown result type (might be due to invalid IL or missing references) //IL_0d98: Unknown result type (might be due to invalid IL or missing references) //IL_0d9d: Unknown result type (might be due to invalid IL or missing references) //IL_0da3: Unknown result type (might be due to invalid IL or missing references) //IL_0dad: Unknown result type (might be due to invalid IL or missing references) //IL_0db2: Unknown result type (might be due to invalid IL or missing references) //IL_0dbd: Unknown result type (might be due to invalid IL or missing references) //IL_0dc3: Unknown result type (might be due to invalid IL or missing references) //IL_0dc8: Unknown result type (might be due to invalid IL or missing references) //IL_0dce: Unknown result type (might be due to invalid IL or missing references) //IL_0dd3: Unknown result type (might be due to invalid IL or missing references) //IL_0dd9: Unknown result type (might be due to invalid IL or missing references) //IL_0de3: Unknown result type (might be due to invalid IL or missing references) //IL_0de8: Unknown result type (might be due to invalid IL or missing references) //IL_0dee: Unknown result type (might be due to invalid IL or missing references) //IL_0df3: Unknown result type (might be due to invalid IL or missing references) //IL_0df9: Unknown result type (might be due to invalid IL or missing references) //IL_0e03: Unknown result type (might be due to invalid IL or missing references) //IL_0e08: Unknown result type (might be due to invalid IL or missing references) //IL_0e14: Unknown result type (might be due to invalid IL or missing references) //IL_361a: Unknown result type (might be due to invalid IL or missing references) //IL_3620: Unknown result type (might be due to invalid IL or missing references) //IL_3625: Unknown result type (might be due to invalid IL or missing references) //IL_362b: Unknown result type (might be due to invalid IL or missing references) //IL_3630: Unknown result type (might be due to invalid IL or missing references) //IL_3636: Unknown result type (might be due to invalid IL or missing references) //IL_363b: Unknown result type (might be due to invalid IL or missing references) //IL_3641: Unknown result type (might be due to invalid IL or missing references) //IL_364b: Unknown result type (might be due to invalid IL or missing references) //IL_3650: Unknown result type (might be due to invalid IL or missing references) //IL_365b: Unknown result type (might be due to invalid IL or missing references) //IL_3661: Unknown result type (might be due to invalid IL or missing references) //IL_3666: Unknown result type (might be due to invalid IL or missing references) //IL_366c: Unknown result type (might be due to invalid IL or missing references) //IL_3671: Unknown result type (might be due to invalid IL or missing references) //IL_3677: Unknown result type (might be due to invalid IL or missing references) //IL_3681: Unknown result type (might be due to invalid IL or missing references) //IL_3686: Unknown result type (might be due to invalid IL or missing references) //IL_368c: Unknown result type (might be due to invalid IL or missing references) //IL_3691: Unknown result type (might be due to invalid IL or missing references) //IL_3697: Unknown result type (might be due to invalid IL or missing references) //IL_36a1: Unknown result type (might be due to invalid IL or missing references) //IL_36a6: Unknown result type (might be due to invalid IL or missing references) //IL_36b2: Unknown result type (might be due to invalid IL or missing references) //IL_2224: Unknown result type (might be due to invalid IL or missing references) //IL_222a: Unknown result type (might be due to invalid IL or missing references) //IL_222f: Unknown result type (might be due to invalid IL or missing references) //IL_2235: Unknown result type (might be due to invalid IL or missing references) //IL_223a: Unknown result type (might be due to invalid IL or missing references) //IL_2240: Unknown result type (might be due to invalid IL or missing references) //IL_2245: Unknown result type (might be due to invalid IL or missing references) //IL_224b: Unknown result type (might be due to invalid IL or missing references) //IL_2255: Unknown result type (might be due to invalid IL or missing references) //IL_225a: Unknown result type (might be due to invalid IL or missing references) //IL_2265: Unknown result type (might be due to invalid IL or missing references) //IL_226b: Unknown result type (might be due to invalid IL or missing references) //IL_2270: Unknown result type (might be due to invalid IL or missing references) //IL_2276: Unknown result type (might be due to invalid IL or missing references) //IL_227b: Unknown result type (might be due to invalid IL or missing references) //IL_2281: Unknown result type (might be due to invalid IL or missing references) //IL_228b: Unknown result type (might be due to invalid IL or missing references) //IL_2290: Unknown result type (might be due to invalid IL or missing references) //IL_2296: Unknown result type (might be due to invalid IL or missing references) //IL_229b: Unknown result type (might be due to invalid IL or missing references) //IL_22a1: Unknown result type (might be due to invalid IL or missing references) //IL_22ab: Unknown result type (might be due to invalid IL or missing references) //IL_22b0: Unknown result type (might be due to invalid IL or missing references) //IL_22bc: Unknown result type (might be due to invalid IL or missing references) //IL_0e2e: Unknown result type (might be due to invalid IL or missing references) //IL_0e34: Unknown result type (might be due to invalid IL or missing references) //IL_0e39: Unknown result type (might be due to invalid IL or missing references) //IL_0e3f: Unknown result type (might be due to invalid IL or missing references) //IL_0e44: Unknown result type (might be due to invalid IL or missing references) //IL_0e4a: Unknown result type (might be due to invalid IL or missing references) //IL_0e4f: Unknown result type (might be due to invalid IL or missing references) //IL_0e55: Unknown result type (might be due to invalid IL or missing references) //IL_0e5f: Unknown result type (might be due to invalid IL or missing references) //IL_0e64: Unknown result type (might be due to invalid IL or missing references) //IL_0e6f: Unknown result type (might be due to invalid IL or missing references) //IL_0e75: Unknown result type (might be due to invalid IL or missing references) //IL_0e7a: Unknown result type (might be due to invalid IL or missing references) //IL_0e80: Unknown result type (might be due to invalid IL or missing references) //IL_0e85: Unknown result type (might be due to invalid IL or missing references) //IL_0e8b: Unknown result type (might be due to invalid IL or missing references) //IL_0e95: Unknown result type (might be due to invalid IL or missing references) //IL_0e9a: Unknown result type (might be due to invalid IL or missing references) //IL_0ea0: Unknown result type (might be due to invalid IL or missing references) //IL_0ea5: Unknown result type (might be due to invalid IL or missing references) //IL_0eab: Unknown result type (might be due to invalid IL or missing references) //IL_0eb5: Unknown result type (might be due to invalid IL or missing references) //IL_0eba: Unknown result type (might be due to invalid IL or missing references) //IL_0ec6: Unknown result type (might be due to invalid IL or missing references) //IL_36cc: Unknown result type (might be due to invalid IL or missing references) //IL_36d2: Unknown result type (might be due to invalid IL or missing references) //IL_36d7: Unknown result type (might be due to invalid IL or missing references) //IL_36dd: Unknown result type (might be due to invalid IL or missing references) //IL_36e2: Unknown result type (might be due to invalid IL or missing references) //IL_36e8: Unknown result type (might be due to invalid IL or missing references) //IL_36ed: Unknown result type (might be due to invalid IL or missing references) //IL_36f3: Unknown result type (might be due to invalid IL or missing references) //IL_36fd: Unknown result type (might be due to invalid IL or missing references) //IL_3702: Unknown result type (might be due to invalid IL or missing references) //IL_370d: Unknown result type (might be due to invalid IL or missing references) //IL_3713: Unknown result type (might be due to invalid IL or missing references) //IL_3718: Unknown result type (might be due to invalid IL or missing references) //IL_371e: Unknown result type (might be due to invalid IL or missing references) //IL_3723: Unknown result type (might be due to invalid IL or missing references) //IL_3729: Unknown result type (might be due to invalid IL or missing references) //IL_3733: Unknown result type (might be due to invalid IL or missing references) //IL_3738: Unknown result type (might be due to invalid IL or missing references) //IL_373e: Unknown result type (might be due to invalid IL or missing references) //IL_3743: Unknown result type (might be due to invalid IL or missing references) //IL_3749: Unknown result type (might be due to invalid IL or missing references) //IL_3753: Unknown result type (might be due to invalid IL or missing references) //IL_3758: Unknown result type (might be due to invalid IL or missing references) //IL_3764: Unknown result type (might be due to invalid IL or missing references) //IL_22d6: Unknown result type (might be due to invalid IL or missing references) //IL_22dc: Unknown result type (might be due to invalid IL or missing references) //IL_22e1: Unknown result type (might be due to invalid IL or missing references) //IL_22e7: Unknown result type (might be due to invalid IL or missing references) //IL_22ec: Unknown result type (might be due to invalid IL or missing references) //IL_22f2: Unknown result type (might be due to invalid IL or missing references) //IL_22f7: Unknown result type (might be due to invalid IL or missing references) //IL_22fd: Unknown result type (might be due to invalid IL or missing references) //IL_2307: Unknown result type (might be due to invalid IL or missing references) //IL_230c: Unknown result type (might be due to invalid IL or missing references) //IL_2317: Unknown result type (might be due to invalid IL or missing references) //IL_231d: Unknown result type (might be due to invalid IL or missing references) //IL_2322: Unknown result type (might be due to invalid IL or missing references) //IL_2328: Unknown result type (might be due to invalid IL or missing references) //IL_232d: Unknown result type (might be due to invalid IL or missing references) //IL_2333: Unknown result type (might be due to invalid IL or missing references) //IL_233d: Unknown result type (might be due to invalid IL or missing references) //IL_2342: Unknown result type (might be due to invalid IL or missing references) //IL_2348: Unknown result type (might be due to invalid IL or missing references) //IL_234d: Unknown result type (might be due to invalid IL or missing references) //IL_2353: Unknown result type (might be due to invalid IL or missing references) //IL_235d: Unknown result type (might be due to invalid IL or missing references) //IL_2362: Unknown result type (might be due to invalid IL or missing references) //IL_236e: Unknown result type (might be due to invalid IL or missing references) //IL_0ee0: Unknown result type (might be due to invalid IL or missing references) //IL_0ee6: Unknown result type (might be due to invalid IL or missing references) //IL_0eeb: Unknown result type (might be due to invalid IL or missing references) //IL_0ef1: Unknown result type (might be due to invalid IL or missing references) //IL_0ef6: Unknown result type (might be due to invalid IL or missing references) //IL_0efc: Unknown result type (might be due to invalid IL or missing references) //IL_0f01: Unknown result type (might be due to invalid IL or missing references) //IL_0f07: Unknown result type (might be due to invalid IL or missing references) //IL_0f11: Unknown result type (might be due to invalid IL or missing references) //IL_0f16: Unknown result type (might be due to invalid IL or missing references) //IL_0f21: Unknown result type (might be due to invalid IL or missing references) //IL_0f27: Unknown result type (might be due to invalid IL or missing references) //IL_0f2c: Unknown result type (might be due to invalid IL or missing references) //IL_0f32: Unknown result type (might be due to invalid IL or missing references) //IL_0f37: Unknown result type (might be due to invalid IL or missing references) //IL_0f3d: Unknown result type (might be due to invalid IL or missing references) //IL_0f47: Unknown result type (might be due to invalid IL or missing references) //IL_0f4c: Unknown result type (might be due to invalid IL or missing references) //IL_0f52: Unknown result type (might be due to invalid IL or missing references) //IL_0f57: Unknown result type (might be due to invalid IL or missing references) //IL_0f5d: Unknown result type (might be due to invalid IL or missing references) //IL_0f67: Unknown result type (might be due to invalid IL or missing references) //IL_0f6c: Unknown result type (might be due to invalid IL or missing references) //IL_0f78: Unknown result type (might be due to invalid IL or missing references) //IL_377e: Unknown result type (might be due to invalid IL or missing references) //IL_3784: Unknown result type (might be due to invalid IL or missing references) //IL_3789: Unknown result type (might be due to invalid IL or missing references) //IL_378f: Unknown result type (might be due to invalid IL or missing references) //IL_3794: Unknown result type (might be due to invalid IL or missing references) //IL_379a: Unknown result type (might be due to invalid IL or missing references) //IL_379f: Unknown result type (might be due to invalid IL or missing references) //IL_37a5: Unknown result type (might be due to invalid IL or missing references) //IL_37af: Unknown result type (might be due to invalid IL or missing references) //IL_37b4: Unknown result type (might be due to invalid IL or missing references) //IL_37bf: Unknown result type (might be due to invalid IL or missing references) //IL_37c5: Unknown result type (might be due to invalid IL or missing references) //IL_37ca: Unknown result type (might be due to invalid IL or missing references) //IL_37d0: Unknown result type (might be due to invalid IL or missing references) //IL_37d5: Unknown result type (might be due to invalid IL or missing references) //IL_37db: Unknown result type (might be due to invalid IL or missing references) //IL_37e5: Unknown result type (might be due to invalid IL or missing references) //IL_37ea: Unknown result type (might be due to invalid IL or missing references) //IL_37f0: Unknown result type (might be due to invalid IL or missing references) //IL_37f5: Unknown result type (might be due to invalid IL or missing references) //IL_37fb: Unknown result type (might be due to invalid IL or missing references) //IL_3805: Unknown result type (might be due to invalid IL or missing references) //IL_380a: Unknown result type (might be due to invalid IL or missing references) //IL_3816: Unknown result type (might be due to invalid IL or missing references) //IL_2388: Unknown result type (might be due to invalid IL or missing references) //IL_238e: Unknown result type (might be due to invalid IL or missing references) //IL_2393: Unknown result type (might be due to invalid IL or missing references) //IL_2399: Unknown result type (might be due to invalid IL or missing references) //IL_239e: Unknown result type (might be due to invalid IL or missing references) //IL_23a4: Unknown result type (might be due to invalid IL or missing references) //IL_23a9: Unknown result type (might be due to invalid IL or missing references) //IL_23af: Unknown result type (might be due to invalid IL or missing references) //IL_23b9: Unknown result type (might be due to invalid IL or missing references) //IL_23be: Unknown result type (might be due to invalid IL or missing references) //IL_23c9: Unknown result type (might be due to invalid IL or missing references) //IL_23cf: Unknown result type (might be due to invalid IL or missing references) //IL_23d4: Unknown result type (might be due to invalid IL or missing references) //IL_23da: Unknown result type (might be due to invalid IL or missing references) //IL_23df: Unknown result type (might be due to invalid IL or missing references) //IL_23e5: Unknown result type (might be due to invalid IL or missing references) //IL_23ef: Unknown result type (might be due to invalid IL or missing references) //IL_23f4: Unknown result type (might be due to invalid IL or missing references) //IL_23fa: Unknown result type (might be due to invalid IL or missing references) //IL_23ff: Unknown result type (might be due to invalid IL or missing references) //IL_2405: Unknown result type (might be due to invalid IL or missing references) //IL_240f: Unknown result type (might be due to invalid IL or missing references) //IL_2414: Unknown result type (might be due to invalid IL or missing references) //IL_2420: Unknown result type (might be due to invalid IL or missing references) //IL_0f92: Unknown result type (might be due to invalid IL or missing references) //IL_0f98: Unknown result type (might be due to invalid IL or missing references) //IL_0f9d: Unknown result type (might be due to invalid IL or missing references) //IL_0fa3: Unknown result type (might be due to invalid IL or missing references) //IL_0fa8: Unknown result type (might be due to invalid IL or missing references) //IL_0fae: Unknown result type (might be due to invalid IL or missing references) //IL_0fb8: Unknown result type (might be due to invalid IL or missing references) //IL_0fbd: Unknown result type (might be due to invalid IL or missing references) //IL_0fc3: Unknown result type (might be due to invalid IL or missing references) //IL_0fc8: Unknown result type (might be due to invalid IL or missing references) //IL_0fd3: Unknown result type (might be due to invalid IL or missing references) //IL_0fd9: Unknown result type (might be due to invalid IL or missing references) //IL_0fde: Unknown result type (might be due to invalid IL or missing references) //IL_0fe4: Unknown result type (might be due to invalid IL or missing references) //IL_0fe9: Unknown result type (might be due to invalid IL or missing references) //IL_0fef: Unknown result type (might be due to invalid IL or missing references) //IL_0ff4: Unknown result type (might be due to invalid IL or missing references) //IL_1000: Unknown result type (might be due to invalid IL or missing references) //IL_3830: Unknown result type (might be due to invalid IL or missing references) //IL_3836: Unknown result type (might be due to invalid IL or missing references) //IL_383b: Unknown result type (might be due to invalid IL or missing references) //IL_3841: Unknown result type (might be due to invalid IL or missing references) //IL_3846: Unknown result type (might be due to invalid IL or missing references) //IL_384c: Unknown result type (might be due to invalid IL or missing references) //IL_3851: Unknown result type (might be due to invalid IL or missing references) //IL_3857: Unknown result type (might be due to invalid IL or missing references) //IL_3861: Unknown result type (might be due to invalid IL or missing references) //IL_3866: Unknown result type (might be due to invalid IL or missing references) //IL_3871: Unknown result type (might be due to invalid IL or missing references) //IL_3877: Unknown result type (might be due to invalid IL or missing references) //IL_387c: Unknown result type (might be due to invalid IL or missing references) //IL_3882: Unknown result type (might be due to invalid IL or missing references) //IL_3887: Unknown result type (might be due to invalid IL or missing references) //IL_388d: Unknown result type (might be due to invalid IL or missing references) //IL_3897: Unknown result type (might be due to invalid IL or missing references) //IL_389c: Unknown result type (might be due to invalid IL or missing references) //IL_38a2: Unknown result type (might be due to invalid IL or missing references) //IL_38a7: Unknown result type (might be due to invalid IL or missing references) //IL_38ad: Unknown result type (might be due to invalid IL or missing references) //IL_38b7: Unknown result type (might be due to invalid IL or missing references) //IL_38bc: Unknown result type (might be due to invalid IL or missing references) //IL_38c8: Unknown result type (might be due to invalid IL or missing references) //IL_243a: Unknown result type (might be due to invalid IL or missing references) //IL_2440: Unknown result type (might be due to invalid IL or missing references) //IL_2445: Unknown result type (might be due to invalid IL or missing references) //IL_244b: Unknown result type (might be due to invalid IL or missing references) //IL_2450: Unknown result type (might be due to invalid IL or missing references) //IL_2456: Unknown result type (might be due to invalid IL or missing references) //IL_245b: Unknown result type (might be due to invalid IL or missing references) //IL_2461: Unknown result type (might be due to invalid IL or missing references) //IL_246b: Unknown result type (might be due to invalid IL or missing references) //IL_2470: Unknown result type (might be due to invalid IL or missing references) //IL_247b: Unknown result type (might be due to invalid IL or missing references) //IL_2481: Unknown result type (might be due to invalid IL or missing references) //IL_2486: Unknown result type (might be due to invalid IL or missing references) //IL_248c: Unknown result type (might be due to invalid IL or missing references) //IL_2491: Unknown result type (might be due to invalid IL or missing references) //IL_2497: Unknown result type (might be due to invalid IL or missing references) //IL_24a1: Unknown result type (might be due to invalid IL or missing references) //IL_24a6: Unknown result type (might be due to invalid IL or missing references) //IL_24ac: Unknown result type (might be due to invalid IL or missing references) //IL_24b1: Unknown result type (might be due to invalid IL or missing references) //IL_24b7: Unknown result type (might be due to invalid IL or missing references) //IL_24c1: Unknown result type (might be due to invalid IL or missing references) //IL_24c6: Unknown result type (might be due to invalid IL or missing references) //IL_24d2: Unknown result type (might be due to invalid IL or missing references) //IL_101a: Unknown result type (might be due to invalid IL or missing references) //IL_1020: Unknown result type (might be due to invalid IL or missing references) //IL_1025: Unknown result type (might be due to invalid IL or missing references) //IL_102b: Unknown result type (might be due to invalid IL or missing references) //IL_1030: Unknown result type (might be due to invalid IL or missing references) //IL_1036: Unknown result type (might be due to invalid IL or missing references) //IL_1040: Unknown result type (might be due to invalid IL or missing references) //IL_1045: Unknown result type (might be due to invalid IL or missing references) //IL_104b: Unknown result type (might be due to invalid IL or missing references) //IL_1050: Unknown result type (might be due to invalid IL or missing references) //IL_1056: Unknown result type (might be due to invalid IL or missing references) //IL_1060: Unknown result type (might be due to invalid IL or missing references) //IL_1065: Unknown result type (might be due to invalid IL or missing references) //IL_1070: Unknown result type (might be due to invalid IL or missing references) //IL_1076: Unknown result type (might be due to invalid IL or missing references) //IL_107b: Unknown result type (might be due to invalid IL or missing references) //IL_1081: Unknown result type (might be due to invalid IL or missing references) //IL_1086: Unknown result type (might be due to invalid IL or missing references) //IL_108c: Unknown result type (might be due to invalid IL or missing references) //IL_1091: Unknown result type (might be due to invalid IL or missing references) //IL_1097: Unknown result type (might be due to invalid IL or missing references) //IL_10a1: Unknown result type (might be due to invalid IL or missing references) //IL_10a6: Unknown result type (might be due to invalid IL or missing references) //IL_10b2: Unknown result type (might be due to invalid IL or missing references) //IL_38e2: Unknown result type (might be due to invalid IL or missing references) //IL_38e8: Unknown result type (might be due to invalid IL or missing references) //IL_38ed: Unknown result type (might be due to invalid IL or missing references) //IL_38f3: Unknown result type (might be due to invalid IL or missing references) //IL_38f8: Unknown result type (might be due to invalid IL or missing references) //IL_38fe: Unknown result type (might be due to invalid IL or missing references) //IL_3903: Unknown result type (might be due to invalid IL or missing references) //IL_3909: Unknown result type (might be due to invalid IL or missing references) //IL_3913: Unknown result type (might be due to invalid IL or missing references) //IL_3918: Unknown result type (might be due to invalid IL or missing references) //IL_3923: Unknown result type (might be due to invalid IL or missing references) //IL_3929: Unknown result type (might be due to invalid IL or missing references) //IL_392e: Unknown result type (might be due to invalid IL or missing references) //IL_3934: Unknown result type (might be due to invalid IL or missing references) //IL_3939: Unknown result type (might be due to invalid IL or missing references) //IL_393f: Unknown result type (might be due to invalid IL or missing references) //IL_3949: Unknown result type (might be due to invalid IL or missing references) //IL_394e: Unknown result type (might be due to invalid IL or missing references) //IL_3954: Unknown result type (might be due to invalid IL or missing references) //IL_3959: Unknown result type (might be due to invalid IL or missing references) //IL_395f: Unknown result type (might be due to invalid IL or missing references) //IL_3969: Unknown result type (might be due to invalid IL or missing references) //IL_396e: Unknown result type (might be due to invalid IL or missing references) //IL_397a: Unknown result type (might be due to invalid IL or missing references) //IL_24ec: Unknown result type (might be due to invalid IL or missing references) //IL_24f2: Unknown result type (might be due to invalid IL or missing references) //IL_24f7: Unknown result type (might be due to invalid IL or missing references) //IL_24fd: Unknown result type (might be due to invalid IL or missing references) //IL_2502: Unknown result type (might be due to invalid IL or missing references) //IL_2508: Unknown result type (might be due to invalid IL or missing references) //IL_2512: Unknown result type (might be due to invalid IL or missing references) //IL_2517: Unknown result type (might be due to invalid IL or missing references) //IL_251d: Unknown result type (might be due to invalid IL or missing references) //IL_2522: Unknown result type (might be due to invalid IL or missing references) //IL_252d: Unknown result type (might be due to invalid IL or missing references) //IL_2533: Unknown result type (might be due to invalid IL or missing references) //IL_2538: Unknown result type (might be due to invalid IL or missing references) //IL_253e: Unknown result type (might be due to invalid IL or missing references) //IL_2543: Unknown result type (might be due to invalid IL or missing references) //IL_2549: Unknown result type (might be due to invalid IL or missing references) //IL_254e: Unknown result type (might be due to invalid IL or missing references) //IL_255a: Unknown result type (might be due to invalid IL or missing references) //IL_10cc: Unknown result type (might be due to invalid IL or missing references) //IL_10d2: Unknown result type (might be due to invalid IL or missing references) //IL_10d7: Unknown result type (might be due to invalid IL or missing references) //IL_10dd: Unknown result type (might be due to invalid IL or missing references) //IL_10e2: Unknown result type (might be due to invalid IL or missing references) //IL_10e8: Unknown result type (might be due to invalid IL or missing references) //IL_10f2: Unknown result type (might be due to invalid IL or missing references) //IL_10f7: Unknown result type (might be due to invalid IL or missing references) //IL_10fd: Unknown result type (might be due to invalid IL or missing references) //IL_1102: Unknown result type (might be due to invalid IL or missing references) //IL_1108: Unknown result type (might be due to invalid IL or missing references) //IL_1112: Unknown result type (might be due to invalid IL or missing references) //IL_1117: Unknown result type (might be due to invalid IL or missing references) //IL_1122: Unknown result type (might be due to invalid IL or missing references) //IL_1128: Unknown result type (might be due to invalid IL or missing references) //IL_112d: Unknown result type (might be due to invalid IL or missing references) //IL_1133: Unknown result type (might be due to invalid IL or missing references) //IL_1138: Unknown result type (might be due to invalid IL or missing references) //IL_113e: Unknown result type (might be due to invalid IL or missing references) //IL_1143: Unknown result type (might be due to invalid IL or missing references) //IL_1149: Unknown result type (might be due to invalid IL or missing references) //IL_1153: Unknown result type (might be due to invalid IL or missing references) //IL_1158: Unknown result type (might be due to invalid IL or missing references) //IL_1164: Unknown result type (might be due to invalid IL or missing references) //IL_3994: Unknown result type (might be due to invalid IL or missing references) //IL_399a: Unknown result type (might be due to invalid IL or missing references) //IL_399f: Unknown result type (might be due to invalid IL or missing references) //IL_39a5: Unknown result type (might be due to invalid IL or missing references) //IL_39aa: Unknown result type (might be due to invalid IL or missing references) //IL_39b0: Unknown result type (might be due to invalid IL or missing references) //IL_39b5: Unknown result type (might be due to invalid IL or missing references) //IL_39bb: Unknown result type (might be due to invalid IL or missing references) //IL_39c5: Unknown result type (might be due to invalid IL or missing references) //IL_39ca: Unknown result type (might be due to invalid IL or missing references) //IL_39d5: Unknown result type (might be due to invalid IL or missing references) //IL_39db: Unknown result type (might be due to invalid IL or missing references) //IL_39e0: Unknown result type (might be due to invalid IL or missing references) //IL_39e6: Unknown result type (might be due to invalid IL or missing references) //IL_39eb: Unknown result type (might be due to invalid IL or missing references) //IL_39f1: Unknown result type (might be due to invalid IL or missing references) //IL_39fb: Unknown result type (might be due to invalid IL or missing references) //IL_3a00: Unknown result type (might be due to invalid IL or missing references) //IL_3a06: Unknown result type (might be due to invalid IL or missing references) //IL_3a0b: Unknown result type (might be due to invalid IL or missing references) //IL_3a11: Unknown result type (might be due to invalid IL or missing references) //IL_3a1b: Unknown result type (might be due to invalid IL or missing references) //IL_3a20: Unknown result type (might be due to invalid IL or missing references) //IL_3a2c: Unknown result type (might be due to invalid IL or missing references) //IL_2574: Unknown result type (might be due to invalid IL or missing references) //IL_257a: Unknown result type (might be due to invalid IL or missing references) //IL_257f: Unknown result type (might be due to invalid IL or missing references) //IL_2585: Unknown result type (might be due to invalid IL or missing references) //IL_258a: Unknown result type (might be due to invalid IL or missing references) //IL_2590: Unknown result type (might be due to invalid IL or missing references) //IL_259a: Unknown result type (might be due to invalid IL or missing references) //IL_259f: Unknown result type (might be due to invalid IL or missing references) //IL_25a5: Unknown result type (might be due to invalid IL or missing references) //IL_25aa: Unknown result type (might be due to invalid IL or missing references) //IL_25b0: Unknown result type (might be due to invalid IL or missing references) //IL_25ba: Unknown result type (might be due to invalid IL or missing references) //IL_25bf: Unknown result type (might be due to invalid IL or missing references) //IL_25ca: Unknown result type (might be due to invalid IL or missing references) //IL_25d0: Unknown result type (might be due to invalid IL or missing references) //IL_25d5: Unknown result type (might be due to invalid IL or missing references) //IL_25db: Unknown result type (might be due to invalid IL or missing references) //IL_25e0: Unknown result type (might be due to invalid IL or missing references) //IL_25e6: Unknown result type (might be due to invalid IL or missing references) //IL_25eb: Unknown result type (might be due to invalid IL or missing references) //IL_25f1: Unknown result type (might be due to invalid IL or missing references) //IL_25fb: Unknown result type (might be due to invalid IL or missing references) //IL_2600: Unknown result type (might be due to invalid IL or missing references) //IL_260c: Unknown result type (might be due to invalid IL or missing references) //IL_117e: Unknown result type (might be due to invalid IL or missing references) //IL_1184: Unknown result type (might be due to invalid IL or missing references) //IL_1189: Unknown result type (might be due to invalid IL or missing references) //IL_118f: Unknown result type (might be due to invalid IL or missing references) //IL_1194: Unknown result type (might be due to invalid IL or missing references) //IL_119a: Unknown result type (might be due to invalid IL or missing references) //IL_11a4: Unknown result type (might be due to invalid IL or missing references) //IL_11a9: Unknown result type (might be due to invalid IL or missing references) //IL_11af: Unknown result type (might be due to invalid IL or missing references) //IL_11b4: Unknown result type (might be due to invalid IL or missing references) //IL_11ba: Unknown result type (might be due to invalid IL or missing references) //IL_11c4: Unknown result type (might be due to invalid IL or missing references) //IL_11c9: Unknown result type (might be due to invalid IL or missing references) //IL_11d4: Unknown result type (might be due to invalid IL or missing references) //IL_11da: Unknown result type (might be due to invalid IL or missing references) //IL_11df: Unknown result type (might be due to invalid IL or missing references) //IL_11e5: Unknown result type (might be due to invalid IL or missing references) //IL_11ea: Unknown result type (might be due to invalid IL or missing references) //IL_11f0: Unknown result type (might be due to invalid IL or missing references) //IL_11f5: Unknown result type (might be due to invalid IL or missing references) //IL_11fb: Unknown result type (might be due to invalid IL or missing references) //IL_1205: Unknown result type (might be due to invalid IL or missing references) //IL_120a: Unknown result type (might be due to invalid IL or missing references) //IL_1216: Unknown result type (might be due to invalid IL or missing references) //IL_3a46: Unknown result type (might be due to invalid IL or missing references) //IL_3a4c: Unknown result type (might be due to invalid IL or missing references) //IL_3a51: Unknown result type (might be due to invalid IL or missing references) //IL_3a57: Unknown result type (might be due to invalid IL or missing references) //IL_3a5c: Unknown result type (might be due to invalid IL or missing references) //IL_3a62: Unknown result type (might be due to invalid IL or missing references) //IL_3a6c: Unknown result type (might be due to invalid IL or missing references) //IL_3a71: Unknown result type (might be due to invalid IL or missing references) //IL_3a77: Unknown result type (might be due to invalid IL or missing references) //IL_3a7c: Unknown result type (might be due to invalid IL or missing references) //IL_3a87: Unknown result type (might be due to invalid IL or missing references) //IL_3a8d: Unknown result type (might be due to invalid IL or missing references) //IL_3a92: Unknown result type (might be due to invalid IL or missing references) //IL_3a98: Unknown result type (might be due to invalid IL or missing references) //IL_3a9d: Unknown result type (might be due to invalid IL or missing references) //IL_3aa3: Unknown result type (might be due to invalid IL or missing references) //IL_3aa8: Unknown result type (might be due to invalid IL or missing references) //IL_3ab4: Unknown result type (might be due to invalid IL or missing references) //IL_2626: Unknown result type (might be due to invalid IL or missing references) //IL_262c: Unknown result type (might be due to invalid IL or missing references) //IL_2631: Unknown result type (might be due to invalid IL or missing references) //IL_2637: Unknown result type (might be due to invalid IL or missing references) //IL_263c: Unknown result type (might be due to invalid IL or missing references) //IL_2642: Unknown result type (might be due to invalid IL or missing references) //IL_264c: Unknown result type (might be due to invalid IL or missing references) //IL_2651: Unknown result type (might be due to invalid IL or missing references) //IL_2657: Unknown result type (might be due to invalid IL or missing references) //IL_265c: Unknown result type (might be due to invalid IL or missing references) //IL_2662: Unknown result type (might be due to invalid IL or missing references) //IL_266c: Unknown result type (might be due to invalid IL or missing references) //IL_2671: Unknown result type (might be due to invalid IL or missing references) //IL_267c: Unknown result type (might be due to invalid IL or missing references) //IL_2682: Unknown result type (might be due to invalid IL or missing references) //IL_2687: Unknown result type (might be due to invalid IL or missing references) //IL_268d: Unknown result type (might be due to invalid IL or missing references) //IL_2692: Unknown result type (might be due to invalid IL or missing references) //IL_2698: Unknown result type (might be due to invalid IL or missing references) //IL_269d: Unknown result type (might be due to invalid IL or missing references) //IL_26a3: Unknown result type (might be due to invalid IL or missing references) //IL_26ad: Unknown result type (might be due to invalid IL or missing references) //IL_26b2: Unknown result type (might be due to invalid IL or missing references) //IL_26be: Unknown result type (might be due to invalid IL or missing references) //IL_1230: Unknown result type (might be due to invalid IL or missing references) //IL_1236: Unknown result type (might be due to invalid IL or missing references) //IL_123b: Unknown result type (might be due to invalid IL or missing references) //IL_1241: Unknown result type (might be due to invalid IL or missing references) //IL_1246: Unknown result type (might be due to invalid IL or missing references) //IL_124c: Unknown result type (might be due to invalid IL or missing references) //IL_1256: Unknown result type (might be due to invalid IL or missing references) //IL_125b: Unknown result type (might be due to invalid IL or missing references) //IL_1261: Unknown result type (might be due to invalid IL or missing references) //IL_1266: Unknown result type (might be due to invalid IL or missing references) //IL_126c: Unknown result type (might be due to invalid IL or missing references) //IL_1276: Unknown result type (might be due to invalid IL or missing references) //IL_127b: Unknown result type (might be due to invalid IL or missing references) //IL_1286: Unknown result type (might be due to invalid IL or missing references) //IL_128c: Unknown result type (might be due to invalid IL or missing references) //IL_1291: Unknown result type (might be due to invalid IL or missing references) //IL_1297: Unknown result type (might be due to invalid IL or missing references) //IL_129c: Unknown result type (might be due to invalid IL or missing references) //IL_12a2: Unknown result type (might be due to invalid IL or missing references) //IL_12a7: Unknown result type (might be due to invalid IL or missing references) //IL_12ad: Unknown result type (might be due to invalid IL or missing references) //IL_12b7: Unknown result type (might be due to invalid IL or missing references) //IL_12bc: Unknown result type (might be due to invalid IL or missing references) //IL_12c8: Unknown result type (might be due to invalid IL or missing references) //IL_3ace: Unknown result type (might be due to invalid IL or missing references) //IL_3ad4: Unknown result type (might be due to invalid IL or missing references) //IL_3ad9: Unknown result type (might be due to invalid IL or missing references) //IL_3adf: Unknown result type (might be due to invalid IL or missing references) //IL_3ae4: Unknown result type (might be due to invalid IL or missing references) //IL_3aea: Unknown result type (might be due to invalid IL or missing references) //IL_3af4: Unknown result type (might be due to invalid IL or missing references) //IL_3af9: Unknown result type (might be due to invalid IL or missing references) //IL_3aff: Unknown result type (might be due to invalid IL or missing references) //IL_3b04: Unknown result type (might be due to invalid IL or missing references) //IL_3b0a: Unknown result type (might be due to invalid IL or missing references) //IL_3b14: Unknown result type (might be due to invalid IL or missing references) //IL_3b19: Unknown result type (might be due to invalid IL or missing references) //IL_3b24: Unknown result type (might be due to invalid IL or missing references) //IL_3b2a: Unknown result type (might be due to invalid IL or missing references) //IL_3b2f: Unknown result type (might be due to invalid IL or missing references) //IL_3b35: Unknown result type (might be due to invalid IL or missing references) //IL_3b3a: Unknown result type (might be due to invalid IL or missing references) //IL_3b40: Unknown result type (might be due to invalid IL or missing references) //IL_3b45: Unknown result type (might be due to invalid IL or missing references) //IL_3b4b: Unknown result type (might be due to invalid IL or missing references) //IL_3b55: Unknown result type (might be due to invalid IL or missing references) //IL_3b5a: Unknown result type (might be due to invalid IL or missing references) //IL_3b66: Unknown result type (might be due to invalid IL or missing references) //IL_26d8: Unknown result type (might be due to invalid IL or missing references) //IL_26de: Unknown result type (might be due to invalid IL or missing references) //IL_26e3: Unknown result type (might be due to invalid IL or missing references) //IL_26e9: Unknown result type (might be due to invalid IL or missing references) //IL_26ee: Unknown result type (might be due to invalid IL or missing references) //IL_26f4: Unknown result type (might be due to invalid IL or missing references) //IL_26fe: Unknown result type (might be due to invalid IL or missing references) //IL_2703: Unknown result type (might be due to invalid IL or missing references) //IL_2709: Unknown result type (might be due to invalid IL or missing references) //IL_270e: Unknown result type (might be due to invalid IL or missing references) //IL_2714: Unknown result type (might be due to invalid IL or missing references) //IL_271e: Unknown result type (might be due to invalid IL or missing references) //IL_2723: Unknown result type (might be due to invalid IL or missing references) //IL_272e: Unknown result type (might be due to invalid IL or missing references) //IL_2734: Unknown result type (might be due to invalid IL or missing references) //IL_2739: Unknown result type (might be due to invalid IL or missing references) //IL_273f: Unknown result type (might be due to invalid IL or missing references) //IL_2744: Unknown result type (might be due to invalid IL or missing references) //IL_274a: Unknown result type (might be due to invalid IL or missing references) //IL_274f: Unknown result type (might be due to invalid IL or missing references) //IL_2755: Unknown result type (might be due to invalid IL or missing references) //IL_275f: Unknown result type (might be due to invalid IL or missing references) //IL_2764: Unknown result type (might be due to invalid IL or missing references) //IL_2770: Unknown result type (might be due to invalid IL or missing references) //IL_12e2: Unknown result type (might be due to invalid IL or missing references) //IL_12e8: Unknown result type (might be due to invalid IL or missing references) //IL_12ed: Unknown result type (might be due to invalid IL or missing references) //IL_12f3: Unknown result type (might be due to invalid IL or missing references) //IL_12f8: Unknown result type (might be due to invalid IL or missing references) //IL_12fe: Unknown result type (might be due to invalid IL or missing references) //IL_1308: Unknown result type (might be due to invalid IL or missing references) //IL_130d: Unknown result type (might be due to invalid IL or missing references) //IL_1313: Unknown result type (might be due to invalid IL or missing references) //IL_1318: Unknown result type (might be due to invalid IL or missing references) //IL_131e: Unknown result type (might be due to invalid IL or missing references) //IL_1328: Unknown result type (might be due to invalid IL or missing references) //IL_132d: Unknown result type (might be due to invalid IL or missing references) //IL_1338: Unknown result type (might be due to invalid IL or missing references) //IL_133e: Unknown result type (might be due to invalid IL or missing references) //IL_1343: Unknown result type (might be due to invalid IL or missing references) //IL_1349: Unknown result type (might be due to invalid IL or missing references) //IL_134e: Unknown result type (might be due to invalid IL or missing references) //IL_1354: Unknown result type (might be due to invalid IL or missing references) //IL_1359: Unknown result type (might be due to invalid IL or missing references) //IL_135f: Unknown result type (might be due to invalid IL or missing references) //IL_1369: Unknown result type (might be due to invalid IL or missing references) //IL_136e: Unknown result type (might be due to invalid IL or missing references) //IL_137a: Unknown result type (might be due to invalid IL or missing references) //IL_3b80: Unknown result type (might be due to invalid IL or missing references) //IL_3b86: Unknown result type (might be due to invalid IL or missing references) //IL_3b8b: Unknown result type (might be due to invalid IL or missing references) //IL_3b91: Unknown result type (might be due to invalid IL or missing references) //IL_3b96: Unknown result type (might be due to invalid IL or missing references) //IL_3b9c: Unknown result type (might be due to invalid IL or missing references) //IL_3ba6: Unknown result type (might be due to invalid IL or missing references) //IL_3bab: Unknown result type (might be due to invalid IL or missing references) //IL_3bb1: Unknown result type (might be due to invalid IL or missing references) //IL_3bb6: Unknown result type (might be due to invalid IL or missing references) //IL_3bbc: Unknown result type (might be due to invalid IL or missing references) //IL_3bc6: Unknown result type (might be due to invalid IL or missing references) //IL_3bcb: Unknown result type (might be due to invalid IL or missing references) //IL_3bd6: Unknown result type (might be due to invalid IL or missing references) //IL_3bdc: Unknown result type (might be due to invalid IL or missing references) //IL_3be1: Unknown result type (might be due to invalid IL or missing references) //IL_3be7: Unknown result type (might be due to invalid IL or missing references) //IL_3bec: Unknown result type (might be due to invalid IL or missing references) //IL_3bf2: Unknown result type (might be due to invalid IL or missing references) //IL_3bf7: Unknown result type (might be due to invalid IL or missing references) //IL_3bfd: Unknown result type (might be due to invalid IL or missing references) //IL_3c07: Unknown result type (might be due to invalid IL or missing references) //IL_3c0c: Unknown result type (might be due to invalid IL or missing references) //IL_3c18: Unknown result type (might be due to invalid IL or missing references) //IL_278a: Unknown result type (might be due to invalid IL or missing references) //IL_2790: Unknown result type (might be due to invalid IL or missing references) //IL_2795: Unknown result type (might be due to invalid IL or missing references) //IL_279b: Unknown result type (might be due to invalid IL or missing references) //IL_27a0: Unknown result type (might be due to invalid IL or missing references) //IL_27a6: Unknown result type (might be due to invalid IL or missing references) //IL_27b0: Unknown result type (might be due to invalid IL or missing references) //IL_27b5: Unknown result type (might be due to invalid IL or missing references) //IL_27bb: Unknown result type (might be due to invalid IL or missing references) //IL_27c0: Unknown result type (might be due to invalid IL or missing references) //IL_27c6: Unknown result type (might be due to invalid IL or missing references) //IL_27d0: Unknown result type (might be due to invalid IL or missing references) //IL_27d5: Unknown result type (might be due to invalid IL or missing references) //IL_27e0: Unknown result type (might be due to invalid IL or missing references) //IL_27e6: Unknown result type (might be due to invalid IL or missing references) //IL_27eb: Unknown result type (might be due to invalid IL or missing references) //IL_27f1: Unknown result type (might be due to invalid IL or missing references) //IL_27f6: Unknown result type (might be due to invalid IL or missing references) //IL_27fc: Unknown result type (might be due to invalid IL or missing references) //IL_2801: Unknown result type (might be due to invalid IL or missing references) //IL_2807: Unknown result type (might be due to invalid IL or missing references) //IL_2811: Unknown result type (might be due to invalid IL or missing references) //IL_2816: Unknown result type (might be due to invalid IL or missing references) //IL_2822: Unknown result type (might be due to invalid IL or missing references) //IL_1394: Unknown result type (might be due to invalid IL or missing references) //IL_139a: Unknown result type (might be due to invalid IL or missing references) //IL_139f: Unknown result type (might be due to invalid IL or missing references) //IL_13a5: Unknown result type (might be due to invalid IL or missing references) //IL_13aa: Unknown result type (might be due to invalid IL or missing references) //IL_13b0: Unknown result type (might be due to invalid IL or missing references) //IL_13ba: Unknown result type (might be due to invalid IL or missing references) //IL_13bf: Unknown result type (might be due to invalid IL or missing references) //IL_13c5: Unknown result type (might be due to invalid IL or missing references) //IL_13ca: Unknown result type (might be due to invalid IL or missing references) //IL_13d0: Unknown result type (might be due to invalid IL or missing references) //IL_13da: Unknown result type (might be due to invalid IL or missing references) //IL_13df: Unknown result type (might be due to invalid IL or missing references) //IL_13ea: Unknown result type (might be due to invalid IL or missing references) //IL_13f0: Unknown result type (might be due to invalid IL or missing references) //IL_13f5: Unknown result type (might be due to invalid IL or missing references) //IL_13fb: Unknown result type (might be due to invalid IL or missing references) //IL_1400: Unknown result type (might be due to invalid IL or missing references) //IL_1406: Unknown result type (might be due to invalid IL or missing references) //IL_140b: Unknown result type (might be due to invalid IL or missing references) //IL_1411: Unknown result type (might be due to invalid IL or missing references) //IL_141b: Unknown result type (might be due to invalid IL or missing references) //IL_1420: Unknown result type (might be due to invalid IL or missing references) //IL_142c: Unknown result type (might be due to invalid IL or missing references) //IL_3c32: Unknown result type (might be due to invalid IL or missing references) //IL_3c38: Unknown result type (might be due to invalid IL or missing references) //IL_3c3d: Unknown result type (might be due to invalid IL or missing references) //IL_3c43: Unknown result type (might be due to invalid IL or missing references) //IL_3c48: Unknown result type (might be due to invalid IL or missing references) //IL_3c4e: Unknown result type (might be due to invalid IL or missing references) //IL_3c58: Unknown result type (might be due to invalid IL or missing references) //IL_3c5d: Unknown result type (might be due to invalid IL or missing references) //IL_3c63: Unknown result type (might be due to invalid IL or missing references) //IL_3c68: Unknown result type (might be due to invalid IL or missing references) //IL_3c6e: Unknown result type (might be due to invalid IL or missing references) //IL_3c78: Unknown result type (might be due to invalid IL or missing references) //IL_3c7d: Unknown result type (might be due to invalid IL or missing references) //IL_3c88: Unknown result type (might be due to invalid IL or missing references) //IL_3c8e: Unknown result type (might be due to invalid IL or missing references) //IL_3c93: Unknown result type (might be due to invalid IL or missing references) //IL_3c99: Unknown result type (might be due to invalid IL or missing references) //IL_3c9e: Unknown result type (might be due to invalid IL or missing references) //IL_3ca4: Unknown result type (might be due to invalid IL or missing references) //IL_3ca9: Unknown result type (might be due to invalid IL or missing references) //IL_3caf: Unknown result type (might be due to invalid IL or missing references) //IL_3cb9: Unknown result type (might be due to invalid IL or missing references) //IL_3cbe: Unknown result type (might be due to invalid IL or missing references) //IL_3cca: Unknown result type (might be due to invalid IL or missing references) //IL_283c: Unknown result type (might be due to invalid IL or missing references) //IL_2842: Unknown result type (might be due to invalid IL or missing references) //IL_2847: Unknown result type (might be due to invalid IL or missing references) //IL_284d: Unknown result type (might be due to invalid IL or missing references) //IL_2852: Unknown result type (might be due to invalid IL or missing references) //IL_2858: Unknown result type (might be due to invalid IL or missing references) //IL_2862: Unknown result type (might be due to invalid IL or missing references) //IL_2867: Unknown result type (might be due to invalid IL or missing references) //IL_286d: Unknown result type (might be due to invalid IL or missing references) //IL_2872: Unknown result type (might be due to invalid IL or missing references) //IL_2878: Unknown result type (might be due to invalid IL or missing references) //IL_2882: Unknown result type (might be due to invalid IL or missing references) //IL_2887: Unknown result type (might be due to invalid IL or missing references) //IL_2892: Unknown result type (might be due to invalid IL or missing references) //IL_2898: Unknown result type (might be due to invalid IL or missing references) //IL_289d: Unknown result type (might be due to invalid IL or missing references) //IL_28a3: Unknown result type (might be due to invalid IL or missing references) //IL_28a8: Unknown result type (might be due to invalid IL or missing references) //IL_28ae: Unknown result type (might be due to invalid IL or missing references) //IL_28b3: Unknown result type (might be due to invalid IL or missing references) //IL_28b9: Unknown result type (might be due to invalid IL or missing references) //IL_28c3: Unknown result type (might be due to invalid IL or missing references) //IL_28c8: Unknown result type (might be due to invalid IL or missing references) //IL_28d4: Unknown result type (might be due to invalid IL or missing references) //IL_1446: Unknown result type (might be due to invalid IL or missing references) //IL_144c: Unknown result type (might be due to invalid IL or missing references) //IL_1451: Unknown result type (might be due to invalid IL or missing references) //IL_1457: Unknown result type (might be due to invalid IL or missing references) //IL_145c: Unknown result type (might be due to invalid IL or missing references) //IL_1462: Unknown result type (might be due to invalid IL or missing references) //IL_146c: Unknown result type (might be due to invalid IL or missing references) //IL_1471: Unknown result type (might be due to invalid IL or missing references) //IL_1477: Unknown result type (might be due to invalid IL or missing references) //IL_147c: Unknown result type (might be due to invalid IL or missing references) //IL_1482: Unknown result type (might be due to invalid IL or missing references) //IL_148c: Unknown result type (might be due to invalid IL or missing references) //IL_1491: Unknown result type (might be due to invalid IL or missing references) //IL_149c: Unknown result type (might be due to invalid IL or missing references) //IL_14a2: Unknown result type (might be due to invalid IL or missing references) //IL_14a7: Unknown result type (might be due to invalid IL or missing references) //IL_14ad: Unknown result type (might be due to invalid IL or missing references) //IL_14b2: Unknown result type (might be due to invalid IL or missing references) //IL_14b8: Unknown result type (might be due to invalid IL or missing references) //IL_14bd: Unknown result type (might be due to invalid IL or missing references) //IL_14c3: Unknown result type (might be due to invalid IL or missing references) //IL_14cd: Unknown result type (might be due to invalid IL or missing references) //IL_14d2: Unknown result type (might be due to invalid IL or missing references) //IL_14de: Unknown result type (might be due to invalid IL or missing references) //IL_3ce4: Unknown result type (might be due to invalid IL or missing references) //IL_3cea: Unknown result type (might be due to invalid IL or missing references) //IL_3cef: Unknown result type (might be due to invalid IL or missing references) //IL_3cf5: Unknown result type (might be due to invalid IL or missing references) //IL_3cfa: Unknown result type (might be due to invalid IL or missing references) //IL_3d00: Unknown result type (might be due to invalid IL or missing references) //IL_3d0a: Unknown result type (might be due to invalid IL or missing references) //IL_3d0f: Unknown result type (might be due to invalid IL or missing references) //IL_3d15: Unknown result type (might be due to invalid IL or missing references) //IL_3d1a: Unknown result type (might be due to invalid IL or missing references) //IL_3d20: Unknown result type (might be due to invalid IL or missing references) //IL_3d2a: Unknown result type (might be due to invalid IL or missing references) //IL_3d2f: Unknown result type (might be due to invalid IL or missing references) //IL_3d3a: Unknown result type (might be due to invalid IL or missing references) //IL_3d40: Unknown result type (might be due to invalid IL or missing references) //IL_3d45: Unknown result type (might be due to invalid IL or missing references) //IL_3d4b: Unknown result type (might be due to invalid IL or missing references) //IL_3d50: Unknown result type (might be due to invalid IL or missing references) //IL_3d56: Unknown result type (might be due to invalid IL or missing references) //IL_3d5b: Unknown result type (might be due to invalid IL or missing references) //IL_3d61: Unknown result type (might be due to invalid IL or missing references) //IL_3d6b: Unknown result type (might be due to invalid IL or missing references) //IL_3d70: Unknown result type (might be due to invalid IL or missing references) //IL_3d7c: Unknown result type (might be due to invalid IL or missing references) //IL_28ee: Unknown result type (might be due to invalid IL or missing references) //IL_28f4: Unknown result type (might be due to invalid IL or missing references) //IL_28f9: Unknown result type (might be due to invalid IL or missing references) //IL_28ff: Unknown result type (might be due to invalid IL or missing references) //IL_2904: Unknown result type (might be due to invalid IL or missing references) //IL_290a: Unknown result type (might be due to invalid IL or missing references) //IL_2914: Unknown result type (might be due to invalid IL or missing references) //IL_2919: Unknown result type (might be due to invalid IL or missing references) //IL_291f: Unknown result type (might be due to invalid IL or missing references) //IL_2924: Unknown result type (might be due to invalid IL or missing references) //IL_292a: Unknown result type (might be due to invalid IL or missing references) //IL_2934: Unknown result type (might be due to invalid IL or missing references) //IL_2939: Unknown result type (might be due to invalid IL or missing references) //IL_2944: Unknown result type (might be due to invalid IL or missing references) //IL_294a: Unknown result type (might be due to invalid IL or missing references) //IL_294f: Unknown result type (might be due to invalid IL or missing references) //IL_2955: Unknown result type (might be due to invalid IL or missing references) //IL_295a: Unknown result type (might be due to invalid IL or missing references) //IL_2960: Unknown result type (might be due to invalid IL or missing references) //IL_2965: Unknown result type (might be due to invalid IL or missing references) //IL_296b: Unknown result type (might be due to invalid IL or missing references) //IL_2975: Unknown result type (might be due to invalid IL or missing references) //IL_297a: Unknown result type (might be due to invalid IL or missing references) //IL_2986: Unknown result type (might be due to invalid IL or missing references) //IL_3d96: Unknown result type (might be due to invalid IL or missing references) //IL_3d9c: Unknown result type (might be due to invalid IL or missing references) //IL_3da1: Unknown result type (might be due to invalid IL or missing references) //IL_3da7: Unknown result type (might be due to invalid IL or missing references) //IL_3dac: Unknown result type (might be due to invalid IL or missing references) //IL_3db2: Unknown result type (might be due to invalid IL or missing references) //IL_3dbc: Unknown result type (might be due to invalid IL or missing references) //IL_3dc1: Unknown result type (might be due to invalid IL or missing references) //IL_3dc7: Unknown result type (might be due to invalid IL or missing references) //IL_3dcc: Unknown result type (might be due to invalid IL or missing references) //IL_3dd2: Unknown result type (might be due to invalid IL or missing references) //IL_3ddc: Unknown result type (might be due to invalid IL or missing references) //IL_3de1: Unknown result type (might be due to invalid IL or missing references) //IL_3dec: Unknown result type (might be due to invalid IL or missing references) //IL_3df2: Unknown result type (might be due to invalid IL or missing references) //IL_3df7: Unknown result type (might be due to invalid IL or missing references) //IL_3dfd: Unknown result type (might be due to invalid IL or missing references) //IL_3e02: Unknown result type (might be due to invalid IL or missing references) //IL_3e08: Unknown result type (might be due to invalid IL or missing references) //IL_3e0d: Unknown result type (might be due to invalid IL or missing references) //IL_3e13: Unknown result type (might be due to invalid IL or missing references) //IL_3e1d: Unknown result type (might be due to invalid IL or missing references) //IL_3e22: Unknown result type (might be due to invalid IL or missing references) //IL_3e2e: Unknown result type (might be due to invalid IL or missing references) //IL_29a0: Unknown result type (might be due to invalid IL or missing references) //IL_29a6: Unknown result type (might be due to invalid IL or missing references) //IL_29ab: Unknown result type (might be due to invalid IL or missing references) //IL_29b1: Unknown result type (might be due to invalid IL or missing references) //IL_29b6: Unknown result type (might be due to invalid IL or missing references) //IL_29bc: Unknown result type (might be due to invalid IL or missing references) //IL_29c6: Unknown result type (might be due to invalid IL or missing references) //IL_29cb: Unknown result type (might be due to invalid IL or missing references) //IL_29d1: Unknown result type (might be due to invalid IL or missing references) //IL_29d6: Unknown result type (might be due to invalid IL or missing references) //IL_29dc: Unknown result type (might be due to invalid IL or missing references) //IL_29e6: Unknown result type (might be due to invalid IL or missing references) //IL_29eb: Unknown result type (might be due to invalid IL or missing references) //IL_29f6: Unknown result type (might be due to invalid IL or missing references) //IL_29fc: Unknown result type (might be due to invalid IL or missing references) //IL_2a01: Unknown result type (might be due to invalid IL or missing references) //IL_2a07: Unknown result type (might be due to invalid IL or missing references) //IL_2a0c: Unknown result type (might be due to invalid IL or missing references) //IL_2a12: Unknown result type (might be due to invalid IL or missing references) //IL_2a17: Unknown result type (might be due to invalid IL or missing references) //IL_2a1d: Unknown result type (might be due to invalid IL or missing references) //IL_2a27: Unknown result type (might be due to invalid IL or missing references) //IL_2a2c: Unknown result type (might be due to invalid IL or missing references) //IL_2a38: Unknown result type (might be due to invalid IL or missing references) //IL_3e48: Unknown result type (might be due to invalid IL or missing references) //IL_3e4e: Unknown result type (might be due to invalid IL or missing references) //IL_3e53: Unknown result type (might be due to invalid IL or missing references) //IL_3e59: Unknown result type (might be due to invalid IL or missing references) //IL_3e5e: Unknown result type (might be due to invalid IL or missing references) //IL_3e64: Unknown result type (might be due to invalid IL or missing references) //IL_3e6e: Unknown result type (might be due to invalid IL or missing references) //IL_3e73: Unknown result type (might be due to invalid IL or missing references) //IL_3e79: Unknown result type (might be due to invalid IL or missing references) //IL_3e7e: Unknown result type (might be due to invalid IL or missing references) //IL_3e84: Unknown result type (might be due to invalid IL or missing references) //IL_3e8e: Unknown result type (might be due to invalid IL or missing references) //IL_3e93: Unknown result type (might be due to invalid IL or missing references) //IL_3e9e: Unknown result type (might be due to invalid IL or missing references) //IL_3ea4: Unknown result type (might be due to invalid IL or missing references) //IL_3ea9: Unknown result type (might be due to invalid IL or missing references) //IL_3eaf: Unknown result type (might be due to invalid IL or missing references) //IL_3eb4: Unknown result type (might be due to invalid IL or missing references) //IL_3eba: Unknown result type (might be due to invalid IL or missing references) //IL_3ebf: Unknown result type (might be due to invalid IL or missing references) //IL_3ec5: Unknown result type (might be due to invalid IL or missing references) //IL_3ecf: Unknown result type (might be due to invalid IL or missing references) //IL_3ed4: Unknown result type (might be due to invalid IL or missing references) //IL_3ee0: Unknown result type (might be due to invalid IL or missing references) //IL_3efa: Unknown result type (might be due to invalid IL or missing references) //IL_3f00: Unknown result type (might be due to invalid IL or missing references) //IL_3f05: Unknown result type (might be due to invalid IL or missing references) //IL_3f0b: Unknown result type (might be due to invalid IL or missing references) //IL_3f10: Unknown result type (might be due to invalid IL or missing references) //IL_3f16: Unknown result type (might be due to invalid IL or missing references) //IL_3f20: Unknown result type (might be due to invalid IL or missing references) //IL_3f25: Unknown result type (might be due to invalid IL or missing references) //IL_3f2b: Unknown result type (might be due to invalid IL or missing references) //IL_3f30: Unknown result type (might be due to invalid IL or missing references) //IL_3f36: Unknown result type (might be due to invalid IL or missing references) //IL_3f40: Unknown result type (might be due to invalid IL or missing references) //IL_3f45: Unknown result type (might be due to invalid IL or missing references) //IL_3f50: Unknown result type (might be due to invalid IL or missing references) //IL_3f56: Unknown result type (might be due to invalid IL or missing references) //IL_3f5b: Unknown result type (might be due to invalid IL or missing references) //IL_3f61: Unknown result type (might be due to invalid IL or missing references) //IL_3f66: Unknown result type (might be due to invalid IL or missing references) //IL_3f6c: Unknown result type (might be due to invalid IL or missing references) //IL_3f71: Unknown result type (might be due to invalid IL or missing references) //IL_3f77: Unknown result type (might be due to invalid IL or missing references) //IL_3f81: Unknown result type (might be due to invalid IL or missing references) //IL_3f86: Unknown result type (might be due to invalid IL or missing references) //IL_3f92: Unknown result type (might be due to invalid IL or missing references) if (switching || !ledgeSwitchingDetectors.allowLedgeSwitching || !grabbedOn) { return; } if (!Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + minDistFromGroundHeight2 - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2 - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2 - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2 - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2 - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - rightWidth * 1.862f - firstSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - rightWidth * 1.862f - firstSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - rightWidth * 1.862f - firstSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - rightWidth * 1.862f - firstSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - rightWidth * 2f - surfaceDetectorWidth2 + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 0.375f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 0.75f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 1.125f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !l1FirstBackSurfaceDetectorsHit && !l1FirstBackHit && l1MiddleSurfaceDetectorsHit && l1MiddleHit) { l1MiddleTimer += 0.01f; if (l1MiddleTimer > 0.1f || rotTimer > 0f) { l1MiddleClear = true; } else { l1MiddleClear = false; } } else { l1MiddleTimer = 0f; l1MiddleClear = false; } if (!Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + minDistFromGroundHeight2 - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2 - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2 - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2 - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2 - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - rightWidth * 1.862f - secondSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - rightWidth * 1.862f - secondSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - rightWidth * 1.862f - secondSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - rightWidth * 1.862f - secondSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - rightWidth * 2f - surfaceDetectorWidth2 + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 0.375f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 0.75f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 1.125f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !l2FirstBackSurfaceDetectorsHit && !l2FirstBackHit && l2MiddleSurfaceDetectorsHit && l2MiddleHit) { l2MiddleTimer += 0.01f; if (l2MiddleTimer > 0.1f || rotTimer > 0f) { l2MiddleClear = true; } else { l2MiddleClear = false; } } else { l2MiddleTimer = 0f; l2MiddleClear = false; } if (!Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + minDistFromGroundHeight2 - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2 - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2 - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2 - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2 - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - rightWidth * 1.862f - thirdSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - rightWidth * 1.862f - thirdSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - rightWidth * 1.862f - thirdSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - rightWidth * 1.862f - thirdSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - rightWidth * 2f - surfaceDetectorWidth2 + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 0.375f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 0.75f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 1.125f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !l3FirstBackSurfaceDetectorsHit && !l3FirstBackHit && l3MiddleSurfaceDetectorsHit && l3MiddleHit) { l3MiddleTimer += 0.01f; if (l3MiddleTimer > 0.1f || rotTimer > 0f) { l3MiddleClear = true; } else { l3MiddleClear = false; } } else { l3MiddleTimer = 0f; l3MiddleClear = false; } } private void LedgeSwitchingClearFirstBackLeft() { //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_0054: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0069: Unknown result type (might be due to invalid IL or missing references) //IL_006e: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_0084: Unknown result type (might be due to invalid IL or missing references) //IL_008f: Unknown result type (might be due to invalid IL or missing references) //IL_0095: Unknown result type (might be due to invalid IL or missing references) //IL_009a: Unknown result type (might be due to invalid IL or missing references) //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_00aa: Unknown result type (might be due to invalid IL or missing references) //IL_00af: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) //IL_00ba: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00ca: Unknown result type (might be due to invalid IL or missing references) //IL_00cf: Unknown result type (might be due to invalid IL or missing references) //IL_00d5: Unknown result type (might be due to invalid IL or missing references) //IL_00df: Unknown result type (might be due to invalid IL or missing references) //IL_00e4: Unknown result type (might be due to invalid IL or missing references) //IL_00ea: Unknown result type (might be due to invalid IL or missing references) //IL_00ef: Unknown result type (might be due to invalid IL or missing references) //IL_00f5: Unknown result type (might be due to invalid IL or missing references) //IL_00fa: Unknown result type (might be due to invalid IL or missing references) //IL_0106: Unknown result type (might be due to invalid IL or missing references) //IL_0120: Unknown result type (might be due to invalid IL or missing references) //IL_0126: Unknown result type (might be due to invalid IL or missing references) //IL_012b: Unknown result type (might be due to invalid IL or missing references) //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_0136: Unknown result type (might be due to invalid IL or missing references) //IL_013c: Unknown result type (might be due to invalid IL or missing references) //IL_0146: Unknown result type (might be due to invalid IL or missing references) //IL_014b: Unknown result type (might be due to invalid IL or missing references) //IL_0151: Unknown result type (might be due to invalid IL or missing references) //IL_0156: Unknown result type (might be due to invalid IL or missing references) //IL_015c: Unknown result type (might be due to invalid IL or missing references) //IL_0166: Unknown result type (might be due to invalid IL or missing references) //IL_016b: Unknown result type (might be due to invalid IL or missing references) //IL_0171: Unknown result type (might be due to invalid IL or missing references) //IL_017b: Unknown result type (might be due to invalid IL or missing references) //IL_0180: Unknown result type (might be due to invalid IL or missing references) //IL_0186: Unknown result type (might be due to invalid IL or missing references) //IL_018b: Unknown result type (might be due to invalid IL or missing references) //IL_0191: Unknown result type (might be due to invalid IL or missing references) //IL_0196: Unknown result type (might be due to invalid IL or missing references) //IL_01a1: Unknown result type (might be due to invalid IL or missing references) //IL_01a7: Unknown result type (might be due to invalid IL or missing references) //IL_01ac: Unknown result type (might be due to invalid IL or missing references) //IL_01b2: Unknown result type (might be due to invalid IL or missing references) //IL_01bc: Unknown result type (might be due to invalid IL or missing references) //IL_01c1: Unknown result type (might be due to invalid IL or missing references) //IL_01c7: Unknown result type (might be due to invalid IL or missing references) //IL_01d1: Unknown result type (might be due to invalid IL or missing references) //IL_01d6: Unknown result type (might be due to invalid IL or missing references) //IL_01dc: Unknown result type (might be due to invalid IL or missing references) //IL_01e1: Unknown result type (might be due to invalid IL or missing references) //IL_01e7: Unknown result type (might be due to invalid IL or missing references) //IL_01ec: Unknown result type (might be due to invalid IL or missing references) //IL_01f2: Unknown result type (might be due to invalid IL or missing references) //IL_01fc: Unknown result type (might be due to invalid IL or missing references) //IL_0201: Unknown result type (might be due to invalid IL or missing references) //IL_0207: Unknown result type (might be due to invalid IL or missing references) //IL_0211: Unknown result type (might be due to invalid IL or missing references) //IL_0216: Unknown result type (might be due to invalid IL or missing references) //IL_021c: Unknown result type (might be due to invalid IL or missing references) //IL_0221: Unknown result type (might be due to invalid IL or missing references) //IL_0227: Unknown result type (might be due to invalid IL or missing references) //IL_022c: Unknown result type (might be due to invalid IL or missing references) //IL_0238: Unknown result type (might be due to invalid IL or missing references) //IL_1702: Unknown result type (might be due to invalid IL or missing references) //IL_1708: Unknown result type (might be due to invalid IL or missing references) //IL_170d: Unknown result type (might be due to invalid IL or missing references) //IL_1713: Unknown result type (might be due to invalid IL or missing references) //IL_1718: Unknown result type (might be due to invalid IL or missing references) //IL_171e: Unknown result type (might be due to invalid IL or missing references) //IL_1728: Unknown result type (might be due to invalid IL or missing references) //IL_172d: Unknown result type (might be due to invalid IL or missing references) //IL_1733: Unknown result type (might be due to invalid IL or missing references) //IL_173d: Unknown result type (might be due to invalid IL or missing references) //IL_1742: Unknown result type (might be due to invalid IL or missing references) //IL_1748: Unknown result type (might be due to invalid IL or missing references) //IL_174d: Unknown result type (might be due to invalid IL or missing references) //IL_1753: Unknown result type (might be due to invalid IL or missing references) //IL_1758: Unknown result type (might be due to invalid IL or missing references) //IL_1763: Unknown result type (might be due to invalid IL or missing references) //IL_1769: Unknown result type (might be due to invalid IL or missing references) //IL_176e: Unknown result type (might be due to invalid IL or missing references) //IL_1774: Unknown result type (might be due to invalid IL or missing references) //IL_177e: Unknown result type (might be due to invalid IL or missing references) //IL_1783: Unknown result type (might be due to invalid IL or missing references) //IL_1789: Unknown result type (might be due to invalid IL or missing references) //IL_178e: Unknown result type (might be due to invalid IL or missing references) //IL_1794: Unknown result type (might be due to invalid IL or missing references) //IL_179e: Unknown result type (might be due to invalid IL or missing references) //IL_17a3: Unknown result type (might be due to invalid IL or missing references) //IL_17a9: Unknown result type (might be due to invalid IL or missing references) //IL_17b3: Unknown result type (might be due to invalid IL or missing references) //IL_17b8: Unknown result type (might be due to invalid IL or missing references) //IL_17be: Unknown result type (might be due to invalid IL or missing references) //IL_17c3: Unknown result type (might be due to invalid IL or missing references) //IL_17c9: Unknown result type (might be due to invalid IL or missing references) //IL_17ce: Unknown result type (might be due to invalid IL or missing references) //IL_17da: Unknown result type (might be due to invalid IL or missing references) //IL_0252: Unknown result type (might be due to invalid IL or missing references) //IL_0258: Unknown result type (might be due to invalid IL or missing references) //IL_025d: Unknown result type (might be due to invalid IL or missing references) //IL_0263: Unknown result type (might be due to invalid IL or missing references) //IL_0268: Unknown result type (might be due to invalid IL or missing references) //IL_026e: Unknown result type (might be due to invalid IL or missing references) //IL_0278: Unknown result type (might be due to invalid IL or missing references) //IL_027d: Unknown result type (might be due to invalid IL or missing references) //IL_0283: Unknown result type (might be due to invalid IL or missing references) //IL_0288: Unknown result type (might be due to invalid IL or missing references) //IL_028e: Unknown result type (might be due to invalid IL or missing references) //IL_0298: Unknown result type (might be due to invalid IL or missing references) //IL_029d: Unknown result type (might be due to invalid IL or missing references) //IL_02a3: Unknown result type (might be due to invalid IL or missing references) //IL_02ad: Unknown result type (might be due to invalid IL or missing references) //IL_02b2: Unknown result type (might be due to invalid IL or missing references) //IL_02b8: Unknown result type (might be due to invalid IL or missing references) //IL_02bd: Unknown result type (might be due to invalid IL or missing references) //IL_02c3: Unknown result type (might be due to invalid IL or missing references) //IL_02c8: Unknown result type (might be due to invalid IL or missing references) //IL_02d3: Unknown result type (might be due to invalid IL or missing references) //IL_02d9: Unknown result type (might be due to invalid IL or missing references) //IL_02de: Unknown result type (might be due to invalid IL or missing references) //IL_02e4: Unknown result type (might be due to invalid IL or missing references) //IL_02ee: Unknown result type (might be due to invalid IL or missing references) //IL_02f3: Unknown result type (might be due to invalid IL or missing references) //IL_02f9: Unknown result type (might be due to invalid IL or missing references) //IL_0303: Unknown result type (might be due to invalid IL or missing references) //IL_0308: Unknown result type (might be due to invalid IL or missing references) //IL_030e: Unknown result type (might be due to invalid IL or missing references) //IL_0313: Unknown result type (might be due to invalid IL or missing references) //IL_0319: Unknown result type (might be due to invalid IL or missing references) //IL_031e: Unknown result type (might be due to invalid IL or missing references) //IL_0324: Unknown result type (might be due to invalid IL or missing references) //IL_032e: Unknown result type (might be due to invalid IL or missing references) //IL_0333: Unknown result type (might be due to invalid IL or missing references) //IL_0339: Unknown result type (might be due to invalid IL or missing references) //IL_0343: Unknown result type (might be due to invalid IL or missing references) //IL_0348: Unknown result type (might be due to invalid IL or missing references) //IL_034e: Unknown result type (might be due to invalid IL or missing references) //IL_0353: Unknown result type (might be due to invalid IL or missing references) //IL_0359: Unknown result type (might be due to invalid IL or missing references) //IL_035e: Unknown result type (might be due to invalid IL or missing references) //IL_036a: Unknown result type (might be due to invalid IL or missing references) //IL_17f4: Unknown result type (might be due to invalid IL or missing references) //IL_17fa: Unknown result type (might be due to invalid IL or missing references) //IL_17ff: Unknown result type (might be due to invalid IL or missing references) //IL_1805: Unknown result type (might be due to invalid IL or missing references) //IL_180a: Unknown result type (might be due to invalid IL or missing references) //IL_1810: Unknown result type (might be due to invalid IL or missing references) //IL_181a: Unknown result type (might be due to invalid IL or missing references) //IL_181f: Unknown result type (might be due to invalid IL or missing references) //IL_1825: Unknown result type (might be due to invalid IL or missing references) //IL_182a: Unknown result type (might be due to invalid IL or missing references) //IL_1830: Unknown result type (might be due to invalid IL or missing references) //IL_183a: Unknown result type (might be due to invalid IL or missing references) //IL_183f: Unknown result type (might be due to invalid IL or missing references) //IL_1845: Unknown result type (might be due to invalid IL or missing references) //IL_184f: Unknown result type (might be due to invalid IL or missing references) //IL_1854: Unknown result type (might be due to invalid IL or missing references) //IL_185a: Unknown result type (might be due to invalid IL or missing references) //IL_185f: Unknown result type (might be due to invalid IL or missing references) //IL_1865: Unknown result type (might be due to invalid IL or missing references) //IL_186a: Unknown result type (might be due to invalid IL or missing references) //IL_1875: Unknown result type (might be due to invalid IL or missing references) //IL_187b: Unknown result type (might be due to invalid IL or missing references) //IL_1880: Unknown result type (might be due to invalid IL or missing references) //IL_1886: Unknown result type (might be due to invalid IL or missing references) //IL_1890: Unknown result type (might be due to invalid IL or missing references) //IL_1895: Unknown result type (might be due to invalid IL or missing references) //IL_189b: Unknown result type (might be due to invalid IL or missing references) //IL_18a5: Unknown result type (might be due to invalid IL or missing references) //IL_18aa: Unknown result type (might be due to invalid IL or missing references) //IL_18b0: Unknown result type (might be due to invalid IL or missing references) //IL_18b5: Unknown result type (might be due to invalid IL or missing references) //IL_18bb: Unknown result type (might be due to invalid IL or missing references) //IL_18c0: Unknown result type (might be due to invalid IL or missing references) //IL_18c6: Unknown result type (might be due to invalid IL or missing references) //IL_18d0: Unknown result type (might be due to invalid IL or missing references) //IL_18d5: Unknown result type (might be due to invalid IL or missing references) //IL_18db: Unknown result type (might be due to invalid IL or missing references) //IL_18e5: Unknown result type (might be due to invalid IL or missing references) //IL_18ea: Unknown result type (might be due to invalid IL or missing references) //IL_18f0: Unknown result type (might be due to invalid IL or missing references) //IL_18f5: Unknown result type (might be due to invalid IL or missing references) //IL_18fb: Unknown result type (might be due to invalid IL or missing references) //IL_1900: Unknown result type (might be due to invalid IL or missing references) //IL_190c: Unknown result type (might be due to invalid IL or missing references) //IL_0384: Unknown result type (might be due to invalid IL or missing references) //IL_038a: Unknown result type (might be due to invalid IL or missing references) //IL_038f: Unknown result type (might be due to invalid IL or missing references) //IL_039a: Unknown result type (might be due to invalid IL or missing references) //IL_03a0: Unknown result type (might be due to invalid IL or missing references) //IL_03a5: Unknown result type (might be due to invalid IL or missing references) //IL_03ab: Unknown result type (might be due to invalid IL or missing references) //IL_03b5: Unknown result type (might be due to invalid IL or missing references) //IL_03ba: Unknown result type (might be due to invalid IL or missing references) //IL_03c0: Unknown result type (might be due to invalid IL or missing references) //IL_03c5: Unknown result type (might be due to invalid IL or missing references) //IL_03cb: Unknown result type (might be due to invalid IL or missing references) //IL_03d0: Unknown result type (might be due to invalid IL or missing references) //IL_03e8: Unknown result type (might be due to invalid IL or missing references) //IL_03ed: Unknown result type (might be due to invalid IL or missing references) //IL_0405: Unknown result type (might be due to invalid IL or missing references) //IL_040b: Unknown result type (might be due to invalid IL or missing references) //IL_0415: Unknown result type (might be due to invalid IL or missing references) //IL_041a: Unknown result type (might be due to invalid IL or missing references) //IL_0420: Unknown result type (might be due to invalid IL or missing references) //IL_0425: Unknown result type (might be due to invalid IL or missing references) //IL_0430: Unknown result type (might be due to invalid IL or missing references) //IL_0436: Unknown result type (might be due to invalid IL or missing references) //IL_043b: Unknown result type (might be due to invalid IL or missing references) //IL_0446: Unknown result type (might be due to invalid IL or missing references) //IL_044c: Unknown result type (might be due to invalid IL or missing references) //IL_0451: Unknown result type (might be due to invalid IL or missing references) //IL_0457: Unknown result type (might be due to invalid IL or missing references) //IL_0461: Unknown result type (might be due to invalid IL or missing references) //IL_0466: Unknown result type (might be due to invalid IL or missing references) //IL_046c: Unknown result type (might be due to invalid IL or missing references) //IL_0471: Unknown result type (might be due to invalid IL or missing references) //IL_0477: Unknown result type (might be due to invalid IL or missing references) //IL_047c: Unknown result type (might be due to invalid IL or missing references) //IL_0494: Unknown result type (might be due to invalid IL or missing references) //IL_0499: Unknown result type (might be due to invalid IL or missing references) //IL_04b1: Unknown result type (might be due to invalid IL or missing references) //IL_04b7: Unknown result type (might be due to invalid IL or missing references) //IL_04c1: Unknown result type (might be due to invalid IL or missing references) //IL_04c6: Unknown result type (might be due to invalid IL or missing references) //IL_04cc: Unknown result type (might be due to invalid IL or missing references) //IL_04d1: Unknown result type (might be due to invalid IL or missing references) //IL_04dd: Unknown result type (might be due to invalid IL or missing references) //IL_2dd6: Unknown result type (might be due to invalid IL or missing references) //IL_2ddc: Unknown result type (might be due to invalid IL or missing references) //IL_2de1: Unknown result type (might be due to invalid IL or missing references) //IL_2de7: Unknown result type (might be due to invalid IL or missing references) //IL_2dec: Unknown result type (might be due to invalid IL or missing references) //IL_2df2: Unknown result type (might be due to invalid IL or missing references) //IL_2dfc: Unknown result type (might be due to invalid IL or missing references) //IL_2e01: Unknown result type (might be due to invalid IL or missing references) //IL_2e07: Unknown result type (might be due to invalid IL or missing references) //IL_2e11: Unknown result type (might be due to invalid IL or missing references) //IL_2e16: Unknown result type (might be due to invalid IL or missing references) //IL_2e1c: Unknown result type (might be due to invalid IL or missing references) //IL_2e21: Unknown result type (might be due to invalid IL or missing references) //IL_2e27: Unknown result type (might be due to invalid IL or missing references) //IL_2e2c: Unknown result type (might be due to invalid IL or missing references) //IL_2e37: Unknown result type (might be due to invalid IL or missing references) //IL_2e3d: Unknown result type (might be due to invalid IL or missing references) //IL_2e42: Unknown result type (might be due to invalid IL or missing references) //IL_2e48: Unknown result type (might be due to invalid IL or missing references) //IL_2e52: Unknown result type (might be due to invalid IL or missing references) //IL_2e57: Unknown result type (might be due to invalid IL or missing references) //IL_2e5d: Unknown result type (might be due to invalid IL or missing references) //IL_2e62: Unknown result type (might be due to invalid IL or missing references) //IL_2e68: Unknown result type (might be due to invalid IL or missing references) //IL_2e72: Unknown result type (might be due to invalid IL or missing references) //IL_2e77: Unknown result type (might be due to invalid IL or missing references) //IL_2e7d: Unknown result type (might be due to invalid IL or missing references) //IL_2e87: Unknown result type (might be due to invalid IL or missing references) //IL_2e8c: Unknown result type (might be due to invalid IL or missing references) //IL_2e92: Unknown result type (might be due to invalid IL or missing references) //IL_2e97: Unknown result type (might be due to invalid IL or missing references) //IL_2e9d: Unknown result type (might be due to invalid IL or missing references) //IL_2ea2: Unknown result type (might be due to invalid IL or missing references) //IL_2eae: Unknown result type (might be due to invalid IL or missing references) //IL_1926: Unknown result type (might be due to invalid IL or missing references) //IL_192c: Unknown result type (might be due to invalid IL or missing references) //IL_1931: Unknown result type (might be due to invalid IL or missing references) //IL_1937: Unknown result type (might be due to invalid IL or missing references) //IL_193c: Unknown result type (might be due to invalid IL or missing references) //IL_1942: Unknown result type (might be due to invalid IL or missing references) //IL_194c: Unknown result type (might be due to invalid IL or missing references) //IL_1951: Unknown result type (might be due to invalid IL or missing references) //IL_1957: Unknown result type (might be due to invalid IL or missing references) //IL_195c: Unknown result type (might be due to invalid IL or missing references) //IL_1962: Unknown result type (might be due to invalid IL or missing references) //IL_196c: Unknown result type (might be due to invalid IL or missing references) //IL_1971: Unknown result type (might be due to invalid IL or missing references) //IL_1977: Unknown result type (might be due to invalid IL or missing references) //IL_1981: Unknown result type (might be due to invalid IL or missing references) //IL_1986: Unknown result type (might be due to invalid IL or missing references) //IL_198c: Unknown result type (might be due to invalid IL or missing references) //IL_1991: Unknown result type (might be due to invalid IL or missing references) //IL_1997: Unknown result type (might be due to invalid IL or missing references) //IL_199c: Unknown result type (might be due to invalid IL or missing references) //IL_19a7: Unknown result type (might be due to invalid IL or missing references) //IL_19ad: Unknown result type (might be due to invalid IL or missing references) //IL_19b2: Unknown result type (might be due to invalid IL or missing references) //IL_19b8: Unknown result type (might be due to invalid IL or missing references) //IL_19c2: Unknown result type (might be due to invalid IL or missing references) //IL_19c7: Unknown result type (might be due to invalid IL or missing references) //IL_19cd: Unknown result type (might be due to invalid IL or missing references) //IL_19d7: Unknown result type (might be due to invalid IL or missing references) //IL_19dc: Unknown result type (might be due to invalid IL or missing references) //IL_19e2: Unknown result type (might be due to invalid IL or missing references) //IL_19e7: Unknown result type (might be due to invalid IL or missing references) //IL_19ed: Unknown result type (might be due to invalid IL or missing references) //IL_19f2: Unknown result type (might be due to invalid IL or missing references) //IL_19f8: Unknown result type (might be due to invalid IL or missing references) //IL_1a02: Unknown result type (might be due to invalid IL or missing references) //IL_1a07: Unknown result type (might be due to invalid IL or missing references) //IL_1a0d: Unknown result type (might be due to invalid IL or missing references) //IL_1a17: Unknown result type (might be due to invalid IL or missing references) //IL_1a1c: Unknown result type (might be due to invalid IL or missing references) //IL_1a22: Unknown result type (might be due to invalid IL or missing references) //IL_1a27: Unknown result type (might be due to invalid IL or missing references) //IL_1a2d: Unknown result type (might be due to invalid IL or missing references) //IL_1a32: Unknown result type (might be due to invalid IL or missing references) //IL_1a3e: Unknown result type (might be due to invalid IL or missing references) //IL_04f7: Unknown result type (might be due to invalid IL or missing references) //IL_04fd: Unknown result type (might be due to invalid IL or missing references) //IL_0502: Unknown result type (might be due to invalid IL or missing references) //IL_050d: Unknown result type (might be due to invalid IL or missing references) //IL_0513: Unknown result type (might be due to invalid IL or missing references) //IL_0518: Unknown result type (might be due to invalid IL or missing references) //IL_051e: Unknown result type (might be due to invalid IL or missing references) //IL_0528: Unknown result type (might be due to invalid IL or missing references) //IL_052d: Unknown result type (might be due to invalid IL or missing references) //IL_0533: Unknown result type (might be due to invalid IL or missing references) //IL_0538: Unknown result type (might be due to invalid IL or missing references) //IL_053e: Unknown result type (might be due to invalid IL or missing references) //IL_0543: Unknown result type (might be due to invalid IL or missing references) //IL_055b: Unknown result type (might be due to invalid IL or missing references) //IL_0560: Unknown result type (might be due to invalid IL or missing references) //IL_0578: Unknown result type (might be due to invalid IL or missing references) //IL_057e: Unknown result type (might be due to invalid IL or missing references) //IL_0588: Unknown result type (might be due to invalid IL or missing references) //IL_058d: Unknown result type (might be due to invalid IL or missing references) //IL_0593: Unknown result type (might be due to invalid IL or missing references) //IL_0598: Unknown result type (might be due to invalid IL or missing references) //IL_05a3: Unknown result type (might be due to invalid IL or missing references) //IL_05a9: Unknown result type (might be due to invalid IL or missing references) //IL_05ae: Unknown result type (might be due to invalid IL or missing references) //IL_05b9: Unknown result type (might be due to invalid IL or missing references) //IL_05bf: Unknown result type (might be due to invalid IL or missing references) //IL_05c4: Unknown result type (might be due to invalid IL or missing references) //IL_05ca: Unknown result type (might be due to invalid IL or missing references) //IL_05d4: Unknown result type (might be due to invalid IL or missing references) //IL_05d9: Unknown result type (might be due to invalid IL or missing references) //IL_05df: Unknown result type (might be due to invalid IL or missing references) //IL_05e4: Unknown result type (might be due to invalid IL or missing references) //IL_05ea: Unknown result type (might be due to invalid IL or missing references) //IL_05ef: Unknown result type (might be due to invalid IL or missing references) //IL_0607: Unknown result type (might be due to invalid IL or missing references) //IL_060c: Unknown result type (might be due to invalid IL or missing references) //IL_0624: Unknown result type (might be due to invalid IL or missing references) //IL_062a: Unknown result type (might be due to invalid IL or missing references) //IL_0634: Unknown result type (might be due to invalid IL or missing references) //IL_0639: Unknown result type (might be due to invalid IL or missing references) //IL_063f: Unknown result type (might be due to invalid IL or missing references) //IL_0644: Unknown result type (might be due to invalid IL or missing references) //IL_0650: Unknown result type (might be due to invalid IL or missing references) //IL_2ec8: Unknown result type (might be due to invalid IL or missing references) //IL_2ece: Unknown result type (might be due to invalid IL or missing references) //IL_2ed3: Unknown result type (might be due to invalid IL or missing references) //IL_2ed9: Unknown result type (might be due to invalid IL or missing references) //IL_2ede: Unknown result type (might be due to invalid IL or missing references) //IL_2ee4: Unknown result type (might be due to invalid IL or missing references) //IL_2eee: Unknown result type (might be due to invalid IL or missing references) //IL_2ef3: Unknown result type (might be due to invalid IL or missing references) //IL_2ef9: Unknown result type (might be due to invalid IL or missing references) //IL_2efe: Unknown result type (might be due to invalid IL or missing references) //IL_2f04: Unknown result type (might be due to invalid IL or missing references) //IL_2f0e: Unknown result type (might be due to invalid IL or missing references) //IL_2f13: Unknown result type (might be due to invalid IL or missing references) //IL_2f19: Unknown result type (might be due to invalid IL or missing references) //IL_2f23: Unknown result type (might be due to invalid IL or missing references) //IL_2f28: Unknown result type (might be due to invalid IL or missing references) //IL_2f2e: Unknown result type (might be due to invalid IL or missing references) //IL_2f33: Unknown result type (might be due to invalid IL or missing references) //IL_2f39: Unknown result type (might be due to invalid IL or missing references) //IL_2f3e: Unknown result type (might be due to invalid IL or missing references) //IL_2f49: Unknown result type (might be due to invalid IL or missing references) //IL_2f4f: Unknown result type (might be due to invalid IL or missing references) //IL_2f54: Unknown result type (might be due to invalid IL or missing references) //IL_2f5a: Unknown result type (might be due to invalid IL or missing references) //IL_2f64: Unknown result type (might be due to invalid IL or missing references) //IL_2f69: Unknown result type (might be due to invalid IL or missing references) //IL_2f6f: Unknown result type (might be due to invalid IL or missing references) //IL_2f79: Unknown result type (might be due to invalid IL or missing references) //IL_2f7e: Unknown result type (might be due to invalid IL or missing references) //IL_2f84: Unknown result type (might be due to invalid IL or missing references) //IL_2f89: Unknown result type (might be due to invalid IL or missing references) //IL_2f8f: Unknown result type (might be due to invalid IL or missing references) //IL_2f94: Unknown result type (might be due to invalid IL or missing references) //IL_2f9a: Unknown result type (might be due to invalid IL or missing references) //IL_2fa4: Unknown result type (might be due to invalid IL or missing references) //IL_2fa9: Unknown result type (might be due to invalid IL or missing references) //IL_2faf: Unknown result type (might be due to invalid IL or missing references) //IL_2fb9: Unknown result type (might be due to invalid IL or missing references) //IL_2fbe: Unknown result type (might be due to invalid IL or missing references) //IL_2fc4: Unknown result type (might be due to invalid IL or missing references) //IL_2fc9: Unknown result type (might be due to invalid IL or missing references) //IL_2fcf: Unknown result type (might be due to invalid IL or missing references) //IL_2fd4: Unknown result type (might be due to invalid IL or missing references) //IL_2fe0: Unknown result type (might be due to invalid IL or missing references) //IL_1a58: Unknown result type (might be due to invalid IL or missing references) //IL_1a5e: Unknown result type (might be due to invalid IL or missing references) //IL_1a63: Unknown result type (might be due to invalid IL or missing references) //IL_1a6e: Unknown result type (might be due to invalid IL or missing references) //IL_1a74: Unknown result type (might be due to invalid IL or missing references) //IL_1a79: Unknown result type (might be due to invalid IL or missing references) //IL_1a7f: Unknown result type (might be due to invalid IL or missing references) //IL_1a89: Unknown result type (might be due to invalid IL or missing references) //IL_1a8e: Unknown result type (might be due to invalid IL or missing references) //IL_1a94: Unknown result type (might be due to invalid IL or missing references) //IL_1a99: Unknown result type (might be due to invalid IL or missing references) //IL_1a9f: Unknown result type (might be due to invalid IL or missing references) //IL_1aa4: Unknown result type (might be due to invalid IL or missing references) //IL_1abc: Unknown result type (might be due to invalid IL or missing references) //IL_1ac1: Unknown result type (might be due to invalid IL or missing references) //IL_1ad9: Unknown result type (might be due to invalid IL or missing references) //IL_1adf: Unknown result type (might be due to invalid IL or missing references) //IL_1ae9: Unknown result type (might be due to invalid IL or missing references) //IL_1aee: Unknown result type (might be due to invalid IL or missing references) //IL_1af4: Unknown result type (might be due to invalid IL or missing references) //IL_1af9: Unknown result type (might be due to invalid IL or missing references) //IL_1b04: Unknown result type (might be due to invalid IL or missing references) //IL_1b0a: Unknown result type (might be due to invalid IL or missing references) //IL_1b0f: Unknown result type (might be due to invalid IL or missing references) //IL_1b1a: Unknown result type (might be due to invalid IL or missing references) //IL_1b20: Unknown result type (might be due to invalid IL or missing references) //IL_1b25: Unknown result type (might be due to invalid IL or missing references) //IL_1b2b: Unknown result type (might be due to invalid IL or missing references) //IL_1b35: Unknown result type (might be due to invalid IL or missing references) //IL_1b3a: Unknown result type (might be due to invalid IL or missing references) //IL_1b40: Unknown result type (might be due to invalid IL or missing references) //IL_1b45: Unknown result type (might be due to invalid IL or missing references) //IL_1b4b: Unknown result type (might be due to invalid IL or missing references) //IL_1b50: Unknown result type (might be due to invalid IL or missing references) //IL_1b68: Unknown result type (might be due to invalid IL or missing references) //IL_1b6d: Unknown result type (might be due to invalid IL or missing references) //IL_1b85: Unknown result type (might be due to invalid IL or missing references) //IL_1b8b: Unknown result type (might be due to invalid IL or missing references) //IL_1b95: Unknown result type (might be due to invalid IL or missing references) //IL_1b9a: Unknown result type (might be due to invalid IL or missing references) //IL_1ba0: Unknown result type (might be due to invalid IL or missing references) //IL_1ba5: Unknown result type (might be due to invalid IL or missing references) //IL_1bb1: Unknown result type (might be due to invalid IL or missing references) //IL_066a: Unknown result type (might be due to invalid IL or missing references) //IL_0670: Unknown result type (might be due to invalid IL or missing references) //IL_0675: Unknown result type (might be due to invalid IL or missing references) //IL_067b: Unknown result type (might be due to invalid IL or missing references) //IL_0680: Unknown result type (might be due to invalid IL or missing references) //IL_0686: Unknown result type (might be due to invalid IL or missing references) //IL_0690: Unknown result type (might be due to invalid IL or missing references) //IL_0695: Unknown result type (might be due to invalid IL or missing references) //IL_069b: Unknown result type (might be due to invalid IL or missing references) //IL_06a0: Unknown result type (might be due to invalid IL or missing references) //IL_06ab: Unknown result type (might be due to invalid IL or missing references) //IL_06b1: Unknown result type (might be due to invalid IL or missing references) //IL_06b6: Unknown result type (might be due to invalid IL or missing references) //IL_06bc: Unknown result type (might be due to invalid IL or missing references) //IL_06c1: Unknown result type (might be due to invalid IL or missing references) //IL_06c7: Unknown result type (might be due to invalid IL or missing references) //IL_06d1: Unknown result type (might be due to invalid IL or missing references) //IL_06d6: Unknown result type (might be due to invalid IL or missing references) //IL_06dc: Unknown result type (might be due to invalid IL or missing references) //IL_06e1: Unknown result type (might be due to invalid IL or missing references) //IL_06ed: Unknown result type (might be due to invalid IL or missing references) //IL_2ffa: Unknown result type (might be due to invalid IL or missing references) //IL_3000: Unknown result type (might be due to invalid IL or missing references) //IL_3005: Unknown result type (might be due to invalid IL or missing references) //IL_300b: Unknown result type (might be due to invalid IL or missing references) //IL_3010: Unknown result type (might be due to invalid IL or missing references) //IL_3016: Unknown result type (might be due to invalid IL or missing references) //IL_3020: Unknown result type (might be due to invalid IL or missing references) //IL_3025: Unknown result type (might be due to invalid IL or missing references) //IL_302b: Unknown result type (might be due to invalid IL or missing references) //IL_3030: Unknown result type (might be due to invalid IL or missing references) //IL_3036: Unknown result type (might be due to invalid IL or missing references) //IL_3040: Unknown result type (might be due to invalid IL or missing references) //IL_3045: Unknown result type (might be due to invalid IL or missing references) //IL_304b: Unknown result type (might be due to invalid IL or missing references) //IL_3055: Unknown result type (might be due to invalid IL or missing references) //IL_305a: Unknown result type (might be due to invalid IL or missing references) //IL_3060: Unknown result type (might be due to invalid IL or missing references) //IL_3065: Unknown result type (might be due to invalid IL or missing references) //IL_306b: Unknown result type (might be due to invalid IL or missing references) //IL_3070: Unknown result type (might be due to invalid IL or missing references) //IL_307b: Unknown result type (might be due to invalid IL or missing references) //IL_3081: Unknown result type (might be due to invalid IL or missing references) //IL_3086: Unknown result type (might be due to invalid IL or missing references) //IL_308c: Unknown result type (might be due to invalid IL or missing references) //IL_3096: Unknown result type (might be due to invalid IL or missing references) //IL_309b: Unknown result type (might be due to invalid IL or missing references) //IL_30a1: Unknown result type (might be due to invalid IL or missing references) //IL_30ab: Unknown result type (might be due to invalid IL or missing references) //IL_30b0: Unknown result type (might be due to invalid IL or missing references) //IL_30b6: Unknown result type (might be due to invalid IL or missing references) //IL_30bb: Unknown result type (might be due to invalid IL or missing references) //IL_30c1: Unknown result type (might be due to invalid IL or missing references) //IL_30c6: Unknown result type (might be due to invalid IL or missing references) //IL_30cc: Unknown result type (might be due to invalid IL or missing references) //IL_30d6: Unknown result type (might be due to invalid IL or missing references) //IL_30db: Unknown result type (might be due to invalid IL or missing references) //IL_30e1: Unknown result type (might be due to invalid IL or missing references) //IL_30eb: Unknown result type (might be due to invalid IL or missing references) //IL_30f0: Unknown result type (might be due to invalid IL or missing references) //IL_30f6: Unknown result type (might be due to invalid IL or missing references) //IL_30fb: Unknown result type (might be due to invalid IL or missing references) //IL_3101: Unknown result type (might be due to invalid IL or missing references) //IL_3106: Unknown result type (might be due to invalid IL or missing references) //IL_3112: Unknown result type (might be due to invalid IL or missing references) //IL_1bcb: Unknown result type (might be due to invalid IL or missing references) //IL_1bd1: Unknown result type (might be due to invalid IL or missing references) //IL_1bd6: Unknown result type (might be due to invalid IL or missing references) //IL_1be1: Unknown result type (might be due to invalid IL or missing references) //IL_1be7: Unknown result type (might be due to invalid IL or missing references) //IL_1bec: Unknown result type (might be due to invalid IL or missing references) //IL_1bf2: Unknown result type (might be due to invalid IL or missing references) //IL_1bfc: Unknown result type (might be due to invalid IL or missing references) //IL_1c01: Unknown result type (might be due to invalid IL or missing references) //IL_1c07: Unknown result type (might be due to invalid IL or missing references) //IL_1c0c: Unknown result type (might be due to invalid IL or missing references) //IL_1c12: Unknown result type (might be due to invalid IL or missing references) //IL_1c17: Unknown result type (might be due to invalid IL or missing references) //IL_1c2f: Unknown result type (might be due to invalid IL or missing references) //IL_1c34: Unknown result type (might be due to invalid IL or missing references) //IL_1c4c: Unknown result type (might be due to invalid IL or missing references) //IL_1c52: Unknown result type (might be due to invalid IL or missing references) //IL_1c5c: Unknown result type (might be due to invalid IL or missing references) //IL_1c61: Unknown result type (might be due to invalid IL or missing references) //IL_1c67: Unknown result type (might be due to invalid IL or missing references) //IL_1c6c: Unknown result type (might be due to invalid IL or missing references) //IL_1c77: Unknown result type (might be due to invalid IL or missing references) //IL_1c7d: Unknown result type (might be due to invalid IL or missing references) //IL_1c82: Unknown result type (might be due to invalid IL or missing references) //IL_1c8d: Unknown result type (might be due to invalid IL or missing references) //IL_1c93: Unknown result type (might be due to invalid IL or missing references) //IL_1c98: Unknown result type (might be due to invalid IL or missing references) //IL_1c9e: Unknown result type (might be due to invalid IL or missing references) //IL_1ca8: Unknown result type (might be due to invalid IL or missing references) //IL_1cad: Unknown result type (might be due to invalid IL or missing references) //IL_1cb3: Unknown result type (might be due to invalid IL or missing references) //IL_1cb8: Unknown result type (might be due to invalid IL or missing references) //IL_1cbe: Unknown result type (might be due to invalid IL or missing references) //IL_1cc3: Unknown result type (might be due to invalid IL or missing references) //IL_1cdb: Unknown result type (might be due to invalid IL or missing references) //IL_1ce0: Unknown result type (might be due to invalid IL or missing references) //IL_1cf8: Unknown result type (might be due to invalid IL or missing references) //IL_1cfe: Unknown result type (might be due to invalid IL or missing references) //IL_1d08: Unknown result type (might be due to invalid IL or missing references) //IL_1d0d: Unknown result type (might be due to invalid IL or missing references) //IL_1d13: Unknown result type (might be due to invalid IL or missing references) //IL_1d18: Unknown result type (might be due to invalid IL or missing references) //IL_1d24: Unknown result type (might be due to invalid IL or missing references) //IL_0707: Unknown result type (might be due to invalid IL or missing references) //IL_070d: Unknown result type (might be due to invalid IL or missing references) //IL_0712: Unknown result type (might be due to invalid IL or missing references) //IL_0718: Unknown result type (might be due to invalid IL or missing references) //IL_071d: Unknown result type (might be due to invalid IL or missing references) //IL_0723: Unknown result type (might be due to invalid IL or missing references) //IL_072d: Unknown result type (might be due to invalid IL or missing references) //IL_0732: Unknown result type (might be due to invalid IL or missing references) //IL_0738: Unknown result type (might be due to invalid IL or missing references) //IL_073d: Unknown result type (might be due to invalid IL or missing references) //IL_0748: Unknown result type (might be due to invalid IL or missing references) //IL_074e: Unknown result type (might be due to invalid IL or missing references) //IL_0753: Unknown result type (might be due to invalid IL or missing references) //IL_0759: Unknown result type (might be due to invalid IL or missing references) //IL_075e: Unknown result type (might be due to invalid IL or missing references) //IL_0764: Unknown result type (might be due to invalid IL or missing references) //IL_076e: Unknown result type (might be due to invalid IL or missing references) //IL_0773: Unknown result type (might be due to invalid IL or missing references) //IL_0779: Unknown result type (might be due to invalid IL or missing references) //IL_077e: Unknown result type (might be due to invalid IL or missing references) //IL_078a: Unknown result type (might be due to invalid IL or missing references) //IL_312c: Unknown result type (might be due to invalid IL or missing references) //IL_3132: Unknown result type (might be due to invalid IL or missing references) //IL_3137: Unknown result type (might be due to invalid IL or missing references) //IL_3142: Unknown result type (might be due to invalid IL or missing references) //IL_3148: Unknown result type (might be due to invalid IL or missing references) //IL_314d: Unknown result type (might be due to invalid IL or missing references) //IL_3153: Unknown result type (might be due to invalid IL or missing references) //IL_315d: Unknown result type (might be due to invalid IL or missing references) //IL_3162: Unknown result type (might be due to invalid IL or missing references) //IL_3168: Unknown result type (might be due to invalid IL or missing references) //IL_316d: Unknown result type (might be due to invalid IL or missing references) //IL_3173: Unknown result type (might be due to invalid IL or missing references) //IL_3178: Unknown result type (might be due to invalid IL or missing references) //IL_3190: Unknown result type (might be due to invalid IL or missing references) //IL_3195: Unknown result type (might be due to invalid IL or missing references) //IL_31ad: Unknown result type (might be due to invalid IL or missing references) //IL_31b3: Unknown result type (might be due to invalid IL or missing references) //IL_31bd: Unknown result type (might be due to invalid IL or missing references) //IL_31c2: Unknown result type (might be due to invalid IL or missing references) //IL_31c8: Unknown result type (might be due to invalid IL or missing references) //IL_31cd: Unknown result type (might be due to invalid IL or missing references) //IL_31d8: Unknown result type (might be due to invalid IL or missing references) //IL_31de: Unknown result type (might be due to invalid IL or missing references) //IL_31e3: Unknown result type (might be due to invalid IL or missing references) //IL_31ee: Unknown result type (might be due to invalid IL or missing references) //IL_31f4: Unknown result type (might be due to invalid IL or missing references) //IL_31f9: Unknown result type (might be due to invalid IL or missing references) //IL_31ff: Unknown result type (might be due to invalid IL or missing references) //IL_3209: Unknown result type (might be due to invalid IL or missing references) //IL_320e: Unknown result type (might be due to invalid IL or missing references) //IL_3214: Unknown result type (might be due to invalid IL or missing references) //IL_3219: Unknown result type (might be due to invalid IL or missing references) //IL_321f: Unknown result type (might be due to invalid IL or missing references) //IL_3224: Unknown result type (might be due to invalid IL or missing references) //IL_323c: Unknown result type (might be due to invalid IL or missing references) //IL_3241: Unknown result type (might be due to invalid IL or missing references) //IL_3259: Unknown result type (might be due to invalid IL or missing references) //IL_325f: Unknown result type (might be due to invalid IL or missing references) //IL_3269: Unknown result type (might be due to invalid IL or missing references) //IL_326e: Unknown result type (might be due to invalid IL or missing references) //IL_3274: Unknown result type (might be due to invalid IL or missing references) //IL_3279: Unknown result type (might be due to invalid IL or missing references) //IL_3285: Unknown result type (might be due to invalid IL or missing references) //IL_1d3e: Unknown result type (might be due to invalid IL or missing references) //IL_1d44: Unknown result type (might be due to invalid IL or missing references) //IL_1d49: Unknown result type (might be due to invalid IL or missing references) //IL_1d4f: Unknown result type (might be due to invalid IL or missing references) //IL_1d54: Unknown result type (might be due to invalid IL or missing references) //IL_1d5a: Unknown result type (might be due to invalid IL or missing references) //IL_1d64: Unknown result type (might be due to invalid IL or missing references) //IL_1d69: Unknown result type (might be due to invalid IL or missing references) //IL_1d6f: Unknown result type (might be due to invalid IL or missing references) //IL_1d74: Unknown result type (might be due to invalid IL or missing references) //IL_1d7f: Unknown result type (might be due to invalid IL or missing references) //IL_1d85: Unknown result type (might be due to invalid IL or missing references) //IL_1d8a: Unknown result type (might be due to invalid IL or missing references) //IL_1d90: Unknown result type (might be due to invalid IL or missing references) //IL_1d95: Unknown result type (might be due to invalid IL or missing references) //IL_1d9b: Unknown result type (might be due to invalid IL or missing references) //IL_1da5: Unknown result type (might be due to invalid IL or missing references) //IL_1daa: Unknown result type (might be due to invalid IL or missing references) //IL_1db0: Unknown result type (might be due to invalid IL or missing references) //IL_1db5: Unknown result type (might be due to invalid IL or missing references) //IL_1dc1: Unknown result type (might be due to invalid IL or missing references) //IL_079f: Unknown result type (might be due to invalid IL or missing references) //IL_07aa: Unknown result type (might be due to invalid IL or missing references) //IL_07b0: Unknown result type (might be due to invalid IL or missing references) //IL_07b5: Unknown result type (might be due to invalid IL or missing references) //IL_07bb: Unknown result type (might be due to invalid IL or missing references) //IL_07c0: Unknown result type (might be due to invalid IL or missing references) //IL_07c6: Unknown result type (might be due to invalid IL or missing references) //IL_07cb: Unknown result type (might be due to invalid IL or missing references) //IL_07d1: Unknown result type (might be due to invalid IL or missing references) //IL_07db: Unknown result type (might be due to invalid IL or missing references) //IL_07e0: Unknown result type (might be due to invalid IL or missing references) //IL_07e6: Unknown result type (might be due to invalid IL or missing references) //IL_07f0: Unknown result type (might be due to invalid IL or missing references) //IL_07f5: Unknown result type (might be due to invalid IL or missing references) //IL_07fb: Unknown result type (might be due to invalid IL or missing references) //IL_0800: Unknown result type (might be due to invalid IL or missing references) //IL_0806: Unknown result type (might be due to invalid IL or missing references) //IL_080b: Unknown result type (might be due to invalid IL or missing references) //IL_0817: Unknown result type (might be due to invalid IL or missing references) //IL_329f: Unknown result type (might be due to invalid IL or missing references) //IL_32a5: Unknown result type (might be due to invalid IL or missing references) //IL_32aa: Unknown result type (might be due to invalid IL or missing references) //IL_32b5: Unknown result type (might be due to invalid IL or missing references) //IL_32bb: Unknown result type (might be due to invalid IL or missing references) //IL_32c0: Unknown result type (might be due to invalid IL or missing references) //IL_32c6: Unknown result type (might be due to invalid IL or missing references) //IL_32d0: Unknown result type (might be due to invalid IL or missing references) //IL_32d5: Unknown result type (might be due to invalid IL or missing references) //IL_32db: Unknown result type (might be due to invalid IL or missing references) //IL_32e0: Unknown result type (might be due to invalid IL or missing references) //IL_32e6: Unknown result type (might be due to invalid IL or missing references) //IL_32eb: Unknown result type (might be due to invalid IL or missing references) //IL_3303: Unknown result type (might be due to invalid IL or missing references) //IL_3308: Unknown result type (might be due to invalid IL or missing references) //IL_3320: Unknown result type (might be due to invalid IL or missing references) //IL_3326: Unknown result type (might be due to invalid IL or missing references) //IL_3330: Unknown result type (might be due to invalid IL or missing references) //IL_3335: Unknown result type (might be due to invalid IL or missing references) //IL_333b: Unknown result type (might be due to invalid IL or missing references) //IL_3340: Unknown result type (might be due to invalid IL or missing references) //IL_334b: Unknown result type (might be due to invalid IL or missing references) //IL_3351: Unknown result type (might be due to invalid IL or missing references) //IL_3356: Unknown result type (might be due to invalid IL or missing references) //IL_3361: Unknown result type (might be due to invalid IL or missing references) //IL_3367: Unknown result type (might be due to invalid IL or missing references) //IL_336c: Unknown result type (might be due to invalid IL or missing references) //IL_3372: Unknown result type (might be due to invalid IL or missing references) //IL_337c: Unknown result type (might be due to invalid IL or missing references) //IL_3381: Unknown result type (might be due to invalid IL or missing references) //IL_3387: Unknown result type (might be due to invalid IL or missing references) //IL_338c: Unknown result type (might be due to invalid IL or missing references) //IL_3392: Unknown result type (might be due to invalid IL or missing references) //IL_3397: Unknown result type (might be due to invalid IL or missing references) //IL_33af: Unknown result type (might be due to invalid IL or missing references) //IL_33b4: Unknown result type (might be due to invalid IL or missing references) //IL_33cc: Unknown result type (might be due to invalid IL or missing references) //IL_33d2: Unknown result type (might be due to invalid IL or missing references) //IL_33dc: Unknown result type (might be due to invalid IL or missing references) //IL_33e1: Unknown result type (might be due to invalid IL or missing references) //IL_33e7: Unknown result type (might be due to invalid IL or missing references) //IL_33ec: Unknown result type (might be due to invalid IL or missing references) //IL_33f8: Unknown result type (might be due to invalid IL or missing references) //IL_1ddb: Unknown result type (might be due to invalid IL or missing references) //IL_1de1: Unknown result type (might be due to invalid IL or missing references) //IL_1de6: Unknown result type (might be due to invalid IL or missing references) //IL_1dec: Unknown result type (might be due to invalid IL or missing references) //IL_1df1: Unknown result type (might be due to invalid IL or missing references) //IL_1df7: Unknown result type (might be due to invalid IL or missing references) //IL_1e01: Unknown result type (might be due to invalid IL or missing references) //IL_1e06: Unknown result type (might be due to invalid IL or missing references) //IL_1e0c: Unknown result type (might be due to invalid IL or missing references) //IL_1e11: Unknown result type (might be due to invalid IL or missing references) //IL_1e1c: Unknown result type (might be due to invalid IL or missing references) //IL_1e22: Unknown result type (might be due to invalid IL or missing references) //IL_1e27: Unknown result type (might be due to invalid IL or missing references) //IL_1e2d: Unknown result type (might be due to invalid IL or missing references) //IL_1e32: Unknown result type (might be due to invalid IL or missing references) //IL_1e38: Unknown result type (might be due to invalid IL or missing references) //IL_1e42: Unknown result type (might be due to invalid IL or missing references) //IL_1e47: Unknown result type (might be due to invalid IL or missing references) //IL_1e4d: Unknown result type (might be due to invalid IL or missing references) //IL_1e52: Unknown result type (might be due to invalid IL or missing references) //IL_1e5e: Unknown result type (might be due to invalid IL or missing references) //IL_082c: Unknown result type (might be due to invalid IL or missing references) //IL_0832: Unknown result type (might be due to invalid IL or missing references) //IL_083c: Unknown result type (might be due to invalid IL or missing references) //IL_0841: Unknown result type (might be due to invalid IL or missing references) //IL_084c: Unknown result type (might be due to invalid IL or missing references) //IL_0852: Unknown result type (might be due to invalid IL or missing references) //IL_0857: Unknown result type (might be due to invalid IL or missing references) //IL_085d: Unknown result type (might be due to invalid IL or missing references) //IL_0862: Unknown result type (might be due to invalid IL or missing references) //IL_0868: Unknown result type (might be due to invalid IL or missing references) //IL_086d: Unknown result type (might be due to invalid IL or missing references) //IL_0873: Unknown result type (might be due to invalid IL or missing references) //IL_087d: Unknown result type (might be due to invalid IL or missing references) //IL_0882: Unknown result type (might be due to invalid IL or missing references) //IL_0888: Unknown result type (might be due to invalid IL or missing references) //IL_0892: Unknown result type (might be due to invalid IL or missing references) //IL_0897: Unknown result type (might be due to invalid IL or missing references) //IL_089d: Unknown result type (might be due to invalid IL or missing references) //IL_08a2: Unknown result type (might be due to invalid IL or missing references) //IL_08a8: Unknown result type (might be due to invalid IL or missing references) //IL_08b2: Unknown result type (might be due to invalid IL or missing references) //IL_08b7: Unknown result type (might be due to invalid IL or missing references) //IL_08bd: Unknown result type (might be due to invalid IL or missing references) //IL_08c2: Unknown result type (might be due to invalid IL or missing references) //IL_08ce: Unknown result type (might be due to invalid IL or missing references) //IL_3412: Unknown result type (might be due to invalid IL or missing references) //IL_3418: Unknown result type (might be due to invalid IL or missing references) //IL_341d: Unknown result type (might be due to invalid IL or missing references) //IL_3423: Unknown result type (might be due to invalid IL or missing references) //IL_3428: Unknown result type (might be due to invalid IL or missing references) //IL_342e: Unknown result type (might be due to invalid IL or missing references) //IL_3438: Unknown result type (might be due to invalid IL or missing references) //IL_343d: Unknown result type (might be due to invalid IL or missing references) //IL_3443: Unknown result type (might be due to invalid IL or missing references) //IL_3448: Unknown result type (might be due to invalid IL or missing references) //IL_3453: Unknown result type (might be due to invalid IL or missing references) //IL_3459: Unknown result type (might be due to invalid IL or missing references) //IL_345e: Unknown result type (might be due to invalid IL or missing references) //IL_3464: Unknown result type (might be due to invalid IL or missing references) //IL_3469: Unknown result type (might be due to invalid IL or missing references) //IL_346f: Unknown result type (might be due to invalid IL or missing references) //IL_3479: Unknown result type (might be due to invalid IL or missing references) //IL_347e: Unknown result type (might be due to invalid IL or missing references) //IL_3484: Unknown result type (might be due to invalid IL or missing references) //IL_3489: Unknown result type (might be due to invalid IL or missing references) //IL_3495: Unknown result type (might be due to invalid IL or missing references) //IL_1e73: Unknown result type (might be due to invalid IL or missing references) //IL_1e7e: Unknown result type (might be due to invalid IL or missing references) //IL_1e84: Unknown result type (might be due to invalid IL or missing references) //IL_1e89: Unknown result type (might be due to invalid IL or missing references) //IL_1e8f: Unknown result type (might be due to invalid IL or missing references) //IL_1e94: Unknown result type (might be due to invalid IL or missing references) //IL_1e9a: Unknown result type (might be due to invalid IL or missing references) //IL_1e9f: Unknown result type (might be due to invalid IL or missing references) //IL_1ea5: Unknown result type (might be due to invalid IL or missing references) //IL_1eaf: Unknown result type (might be due to invalid IL or missing references) //IL_1eb4: Unknown result type (might be due to invalid IL or missing references) //IL_1eba: Unknown result type (might be due to invalid IL or missing references) //IL_1ec4: Unknown result type (might be due to invalid IL or missing references) //IL_1ec9: Unknown result type (might be due to invalid IL or missing references) //IL_1ecf: Unknown result type (might be due to invalid IL or missing references) //IL_1ed4: Unknown result type (might be due to invalid IL or missing references) //IL_1eda: Unknown result type (might be due to invalid IL or missing references) //IL_1edf: Unknown result type (might be due to invalid IL or missing references) //IL_1eeb: Unknown result type (might be due to invalid IL or missing references) //IL_08e3: Unknown result type (might be due to invalid IL or missing references) //IL_08e9: Unknown result type (might be due to invalid IL or missing references) //IL_08f3: Unknown result type (might be due to invalid IL or missing references) //IL_08f8: Unknown result type (might be due to invalid IL or missing references) //IL_0903: Unknown result type (might be due to invalid IL or missing references) //IL_0909: Unknown result type (might be due to invalid IL or missing references) //IL_090e: Unknown result type (might be due to invalid IL or missing references) //IL_0914: Unknown result type (might be due to invalid IL or missing references) //IL_0919: Unknown result type (might be due to invalid IL or missing references) //IL_091f: Unknown result type (might be due to invalid IL or missing references) //IL_0924: Unknown result type (might be due to invalid IL or missing references) //IL_092a: Unknown result type (might be due to invalid IL or missing references) //IL_0934: Unknown result type (might be due to invalid IL or missing references) //IL_0939: Unknown result type (might be due to invalid IL or missing references) //IL_093f: Unknown result type (might be due to invalid IL or missing references) //IL_0949: Unknown result type (might be due to invalid IL or missing references) //IL_094e: Unknown result type (might be due to invalid IL or missing references) //IL_0954: Unknown result type (might be due to invalid IL or missing references) //IL_0959: Unknown result type (might be due to invalid IL or missing references) //IL_095f: Unknown result type (might be due to invalid IL or missing references) //IL_0969: Unknown result type (might be due to invalid IL or missing references) //IL_096e: Unknown result type (might be due to invalid IL or missing references) //IL_0974: Unknown result type (might be due to invalid IL or missing references) //IL_0979: Unknown result type (might be due to invalid IL or missing references) //IL_0985: Unknown result type (might be due to invalid IL or missing references) //IL_34af: Unknown result type (might be due to invalid IL or missing references) //IL_34b5: Unknown result type (might be due to invalid IL or missing references) //IL_34ba: Unknown result type (might be due to invalid IL or missing references) //IL_34c0: Unknown result type (might be due to invalid IL or missing references) //IL_34c5: Unknown result type (might be due to invalid IL or missing references) //IL_34cb: Unknown result type (might be due to invalid IL or missing references) //IL_34d5: Unknown result type (might be due to invalid IL or missing references) //IL_34da: Unknown result type (might be due to invalid IL or missing references) //IL_34e0: Unknown result type (might be due to invalid IL or missing references) //IL_34e5: Unknown result type (might be due to invalid IL or missing references) //IL_34f0: Unknown result type (might be due to invalid IL or missing references) //IL_34f6: Unknown result type (might be due to invalid IL or missing references) //IL_34fb: Unknown result type (might be due to invalid IL or missing references) //IL_3501: Unknown result type (might be due to invalid IL or missing references) //IL_3506: Unknown result type (might be due to invalid IL or missing references) //IL_350c: Unknown result type (might be due to invalid IL or missing references) //IL_3516: Unknown result type (might be due to invalid IL or missing references) //IL_351b: Unknown result type (might be due to invalid IL or missing references) //IL_3521: Unknown result type (might be due to invalid IL or missing references) //IL_3526: Unknown result type (might be due to invalid IL or missing references) //IL_3532: Unknown result type (might be due to invalid IL or missing references) //IL_1f00: Unknown result type (might be due to invalid IL or missing references) //IL_1f06: Unknown result type (might be due to invalid IL or missing references) //IL_1f10: Unknown result type (might be due to invalid IL or missing references) //IL_1f15: Unknown result type (might be due to invalid IL or missing references) //IL_1f20: Unknown result type (might be due to invalid IL or missing references) //IL_1f26: Unknown result type (might be due to invalid IL or missing references) //IL_1f2b: Unknown result type (might be due to invalid IL or missing references) //IL_1f31: Unknown result type (might be due to invalid IL or missing references) //IL_1f36: Unknown result type (might be due to invalid IL or missing references) //IL_1f3c: Unknown result type (might be due to invalid IL or missing references) //IL_1f41: Unknown result type (might be due to invalid IL or missing references) //IL_1f47: Unknown result type (might be due to invalid IL or missing references) //IL_1f51: Unknown result type (might be due to invalid IL or missing references) //IL_1f56: Unknown result type (might be due to invalid IL or missing references) //IL_1f5c: Unknown result type (might be due to invalid IL or missing references) //IL_1f66: Unknown result type (might be due to invalid IL or missing references) //IL_1f6b: Unknown result type (might be due to invalid IL or missing references) //IL_1f71: Unknown result type (might be due to invalid IL or missing references) //IL_1f76: Unknown result type (might be due to invalid IL or missing references) //IL_1f7c: Unknown result type (might be due to invalid IL or missing references) //IL_1f86: Unknown result type (might be due to invalid IL or missing references) //IL_1f8b: Unknown result type (might be due to invalid IL or missing references) //IL_1f91: Unknown result type (might be due to invalid IL or missing references) //IL_1f96: Unknown result type (might be due to invalid IL or missing references) //IL_1fa2: Unknown result type (might be due to invalid IL or missing references) //IL_099a: Unknown result type (might be due to invalid IL or missing references) //IL_09a0: Unknown result type (might be due to invalid IL or missing references) //IL_09aa: Unknown result type (might be due to invalid IL or missing references) //IL_09af: Unknown result type (might be due to invalid IL or missing references) //IL_09ba: Unknown result type (might be due to invalid IL or missing references) //IL_09c0: Unknown result type (might be due to invalid IL or missing references) //IL_09c5: Unknown result type (might be due to invalid IL or missing references) //IL_09cb: Unknown result type (might be due to invalid IL or missing references) //IL_09d0: Unknown result type (might be due to invalid IL or missing references) //IL_09d6: Unknown result type (might be due to invalid IL or missing references) //IL_09db: Unknown result type (might be due to invalid IL or missing references) //IL_09e1: Unknown result type (might be due to invalid IL or missing references) //IL_09eb: Unknown result type (might be due to invalid IL or missing references) //IL_09f0: Unknown result type (might be due to invalid IL or missing references) //IL_09f6: Unknown result type (might be due to invalid IL or missing references) //IL_0a00: Unknown result type (might be due to invalid IL or missing references) //IL_0a05: Unknown result type (might be due to invalid IL or missing references) //IL_0a0b: Unknown result type (might be due to invalid IL or missing references) //IL_0a10: Unknown result type (might be due to invalid IL or missing references) //IL_0a16: Unknown result type (might be due to invalid IL or missing references) //IL_0a20: Unknown result type (might be due to invalid IL or missing references) //IL_0a25: Unknown result type (might be due to invalid IL or missing references) //IL_0a2b: Unknown result type (might be due to invalid IL or missing references) //IL_0a30: Unknown result type (might be due to invalid IL or missing references) //IL_0a3c: Unknown result type (might be due to invalid IL or missing references) //IL_3547: Unknown result type (might be due to invalid IL or missing references) //IL_3552: Unknown result type (might be due to invalid IL or missing references) //IL_3558: Unknown result type (might be due to invalid IL or missing references) //IL_355d: Unknown result type (might be due to invalid IL or missing references) //IL_3563: Unknown result type (might be due to invalid IL or missing references) //IL_3568: Unknown result type (might be due to invalid IL or missing references) //IL_356e: Unknown result type (might be due to invalid IL or missing references) //IL_3573: Unknown result type (might be due to invalid IL or missing references) //IL_3579: Unknown result type (might be due to invalid IL or missing references) //IL_3583: Unknown result type (might be due to invalid IL or missing references) //IL_3588: Unknown result type (might be due to invalid IL or missing references) //IL_358e: Unknown result type (might be due to invalid IL or missing references) //IL_3598: Unknown result type (might be due to invalid IL or missing references) //IL_359d: Unknown result type (might be due to invalid IL or missing references) //IL_35a3: Unknown result type (might be due to invalid IL or missing references) //IL_35a8: Unknown result type (might be due to invalid IL or missing references) //IL_35ae: Unknown result type (might be due to invalid IL or missing references) //IL_35b3: Unknown result type (might be due to invalid IL or missing references) //IL_35bf: Unknown result type (might be due to invalid IL or missing references) //IL_1fb7: Unknown result type (might be due to invalid IL or missing references) //IL_1fbd: Unknown result type (might be due to invalid IL or missing references) //IL_1fc7: Unknown result type (might be due to invalid IL or missing references) //IL_1fcc: Unknown result type (might be due to invalid IL or missing references) //IL_1fd7: Unknown result type (might be due to invalid IL or missing references) //IL_1fdd: Unknown result type (might be due to invalid IL or missing references) //IL_1fe2: Unknown result type (might be due to invalid IL or missing references) //IL_1fe8: Unknown result type (might be due to invalid IL or missing references) //IL_1fed: Unknown result type (might be due to invalid IL or missing references) //IL_1ff3: Unknown result type (might be due to invalid IL or missing references) //IL_1ff8: Unknown result type (might be due to invalid IL or missing references) //IL_1ffe: Unknown result type (might be due to invalid IL or missing references) //IL_2008: Unknown result type (might be due to invalid IL or missing references) //IL_200d: Unknown result type (might be due to invalid IL or missing references) //IL_2013: Unknown result type (might be due to invalid IL or missing references) //IL_201d: Unknown result type (might be due to invalid IL or missing references) //IL_2022: Unknown result type (might be due to invalid IL or missing references) //IL_2028: Unknown result type (might be due to invalid IL or missing references) //IL_202d: Unknown result type (might be due to invalid IL or missing references) //IL_2033: Unknown result type (might be due to invalid IL or missing references) //IL_203d: Unknown result type (might be due to invalid IL or missing references) //IL_2042: Unknown result type (might be due to invalid IL or missing references) //IL_2048: Unknown result type (might be due to invalid IL or missing references) //IL_204d: Unknown result type (might be due to invalid IL or missing references) //IL_2059: Unknown result type (might be due to invalid IL or missing references) //IL_0a56: Unknown result type (might be due to invalid IL or missing references) //IL_0a5c: Unknown result type (might be due to invalid IL or missing references) //IL_0a61: Unknown result type (might be due to invalid IL or missing references) //IL_0a67: Unknown result type (might be due to invalid IL or missing references) //IL_0a6c: Unknown result type (might be due to invalid IL or missing references) //IL_0a72: Unknown result type (might be due to invalid IL or missing references) //IL_0a7c: Unknown result type (might be due to invalid IL or missing references) //IL_0a81: Unknown result type (might be due to invalid IL or missing references) //IL_0a87: Unknown result type (might be due to invalid IL or missing references) //IL_0a8c: Unknown result type (might be due to invalid IL or missing references) //IL_0a97: Unknown result type (might be due to invalid IL or missing references) //IL_0a9d: Unknown result type (might be due to invalid IL or missing references) //IL_0aa2: Unknown result type (might be due to invalid IL or missing references) //IL_0aa8: Unknown result type (might be due to invalid IL or missing references) //IL_0aad: Unknown result type (might be due to invalid IL or missing references) //IL_0ab3: Unknown result type (might be due to invalid IL or missing references) //IL_0abd: Unknown result type (might be due to invalid IL or missing references) //IL_0ac2: Unknown result type (might be due to invalid IL or missing references) //IL_0ac8: Unknown result type (might be due to invalid IL or missing references) //IL_0acd: Unknown result type (might be due to invalid IL or missing references) //IL_0ad9: Unknown result type (might be due to invalid IL or missing references) //IL_35d4: Unknown result type (might be due to invalid IL or missing references) //IL_35da: Unknown result type (might be due to invalid IL or missing references) //IL_35e4: Unknown result type (might be due to invalid IL or missing references) //IL_35e9: Unknown result type (might be due to invalid IL or missing references) //IL_35f4: Unknown result type (might be due to invalid IL or missing references) //IL_35fa: Unknown result type (might be due to invalid IL or missing references) //IL_35ff: Unknown result type (might be due to invalid IL or missing references) //IL_3605: Unknown result type (might be due to invalid IL or missing references) //IL_360a: Unknown result type (might be due to invalid IL or missing references) //IL_3610: Unknown result type (might be due to invalid IL or missing references) //IL_3615: Unknown result type (might be due to invalid IL or missing references) //IL_361b: Unknown result type (might be due to invalid IL or missing references) //IL_3625: Unknown result type (might be due to invalid IL or missing references) //IL_362a: Unknown result type (might be due to invalid IL or missing references) //IL_3630: Unknown result type (might be due to invalid IL or missing references) //IL_363a: Unknown result type (might be due to invalid IL or missing references) //IL_363f: Unknown result type (might be due to invalid IL or missing references) //IL_3645: Unknown result type (might be due to invalid IL or missing references) //IL_364a: Unknown result type (might be due to invalid IL or missing references) //IL_3650: Unknown result type (might be due to invalid IL or missing references) //IL_365a: Unknown result type (might be due to invalid IL or missing references) //IL_365f: Unknown result type (might be due to invalid IL or missing references) //IL_3665: Unknown result type (might be due to invalid IL or missing references) //IL_366a: Unknown result type (might be due to invalid IL or missing references) //IL_3676: Unknown result type (might be due to invalid IL or missing references) //IL_206e: Unknown result type (might be due to invalid IL or missing references) //IL_2074: Unknown result type (might be due to invalid IL or missing references) //IL_207e: Unknown result type (might be due to invalid IL or missing references) //IL_2083: Unknown result type (might be due to invalid IL or missing references) //IL_208e: Unknown result type (might be due to invalid IL or missing references) //IL_2094: Unknown result type (might be due to invalid IL or missing references) //IL_2099: Unknown result type (might be due to invalid IL or missing references) //IL_209f: Unknown result type (might be due to invalid IL or missing references) //IL_20a4: Unknown result type (might be due to invalid IL or missing references) //IL_20aa: Unknown result type (might be due to invalid IL or missing references) //IL_20af: Unknown result type (might be due to invalid IL or missing references) //IL_20b5: Unknown result type (might be due to invalid IL or missing references) //IL_20bf: Unknown result type (might be due to invalid IL or missing references) //IL_20c4: Unknown result type (might be due to invalid IL or missing references) //IL_20ca: Unknown result type (might be due to invalid IL or missing references) //IL_20d4: Unknown result type (might be due to invalid IL or missing references) //IL_20d9: Unknown result type (might be due to invalid IL or missing references) //IL_20df: Unknown result type (might be due to invalid IL or missing references) //IL_20e4: Unknown result type (might be due to invalid IL or missing references) //IL_20ea: Unknown result type (might be due to invalid IL or missing references) //IL_20f4: Unknown result type (might be due to invalid IL or missing references) //IL_20f9: Unknown result type (might be due to invalid IL or missing references) //IL_20ff: Unknown result type (might be due to invalid IL or missing references) //IL_2104: Unknown result type (might be due to invalid IL or missing references) //IL_2110: Unknown result type (might be due to invalid IL or missing references) //IL_0af3: Unknown result type (might be due to invalid IL or missing references) //IL_0af9: Unknown result type (might be due to invalid IL or missing references) //IL_0afe: Unknown result type (might be due to invalid IL or missing references) //IL_0b04: Unknown result type (might be due to invalid IL or missing references) //IL_0b09: Unknown result type (might be due to invalid IL or missing references) //IL_0b0f: Unknown result type (might be due to invalid IL or missing references) //IL_0b19: Unknown result type (might be due to invalid IL or missing references) //IL_0b1e: Unknown result type (might be due to invalid IL or missing references) //IL_0b24: Unknown result type (might be due to invalid IL or missing references) //IL_0b29: Unknown result type (might be due to invalid IL or missing references) //IL_0b2f: Unknown result type (might be due to invalid IL or missing references) //IL_0b39: Unknown result type (might be due to invalid IL or missing references) //IL_0b3e: Unknown result type (might be due to invalid IL or missing references) //IL_0b49: Unknown result type (might be due to invalid IL or missing references) //IL_0b4f: Unknown result type (might be due to invalid IL or missing references) //IL_0b54: Unknown result type (might be due to invalid IL or missing references) //IL_0b5a: Unknown result type (might be due to invalid IL or missing references) //IL_0b5f: Unknown result type (might be due to invalid IL or missing references) //IL_0b65: Unknown result type (might be due to invalid IL or missing references) //IL_0b6f: Unknown result type (might be due to invalid IL or missing references) //IL_0b74: Unknown result type (might be due to invalid IL or missing references) //IL_0b7a: Unknown result type (might be due to invalid IL or missing references) //IL_0b7f: Unknown result type (might be due to invalid IL or missing references) //IL_0b85: Unknown result type (might be due to invalid IL or missing references) //IL_0b8f: Unknown result type (might be due to invalid IL or missing references) //IL_0b94: Unknown result type (might be due to invalid IL or missing references) //IL_0ba0: Unknown result type (might be due to invalid IL or missing references) //IL_368b: Unknown result type (might be due to invalid IL or missing references) //IL_3691: Unknown result type (might be due to invalid IL or missing references) //IL_369b: Unknown result type (might be due to invalid IL or missing references) //IL_36a0: Unknown result type (might be due to invalid IL or missing references) //IL_36ab: Unknown result type (might be due to invalid IL or missing references) //IL_36b1: Unknown result type (might be due to invalid IL or missing references) //IL_36b6: Unknown result type (might be due to invalid IL or missing references) //IL_36bc: Unknown result type (might be due to invalid IL or missing references) //IL_36c1: Unknown result type (might be due to invalid IL or missing references) //IL_36c7: Unknown result type (might be due to invalid IL or missing references) //IL_36cc: Unknown result type (might be due to invalid IL or missing references) //IL_36d2: Unknown result type (might be due to invalid IL or missing references) //IL_36dc: Unknown result type (might be due to invalid IL or missing references) //IL_36e1: Unknown result type (might be due to invalid IL or missing references) //IL_36e7: Unknown result type (might be due to invalid IL or missing references) //IL_36f1: Unknown result type (might be due to invalid IL or missing references) //IL_36f6: Unknown result type (might be due to invalid IL or missing references) //IL_36fc: Unknown result type (might be due to invalid IL or missing references) //IL_3701: Unknown result type (might be due to invalid IL or missing references) //IL_3707: Unknown result type (might be due to invalid IL or missing references) //IL_3711: Unknown result type (might be due to invalid IL or missing references) //IL_3716: Unknown result type (might be due to invalid IL or missing references) //IL_371c: Unknown result type (might be due to invalid IL or missing references) //IL_3721: Unknown result type (might be due to invalid IL or missing references) //IL_372d: Unknown result type (might be due to invalid IL or missing references) //IL_212a: Unknown result type (might be due to invalid IL or missing references) //IL_2130: Unknown result type (might be due to invalid IL or missing references) //IL_2135: Unknown result type (might be due to invalid IL or missing references) //IL_213b: Unknown result type (might be due to invalid IL or missing references) //IL_2140: Unknown result type (might be due to invalid IL or missing references) //IL_2146: Unknown result type (might be due to invalid IL or missing references) //IL_2150: Unknown result type (might be due to invalid IL or missing references) //IL_2155: Unknown result type (might be due to invalid IL or missing references) //IL_215b: Unknown result type (might be due to invalid IL or missing references) //IL_2160: Unknown result type (might be due to invalid IL or missing references) //IL_216b: Unknown result type (might be due to invalid IL or missing references) //IL_2171: Unknown result type (might be due to invalid IL or missing references) //IL_2176: Unknown result type (might be due to invalid IL or missing references) //IL_217c: Unknown result type (might be due to invalid IL or missing references) //IL_2181: Unknown result type (might be due to invalid IL or missing references) //IL_2187: Unknown result type (might be due to invalid IL or missing references) //IL_2191: Unknown result type (might be due to invalid IL or missing references) //IL_2196: Unknown result type (might be due to invalid IL or missing references) //IL_219c: Unknown result type (might be due to invalid IL or missing references) //IL_21a1: Unknown result type (might be due to invalid IL or missing references) //IL_21ad: Unknown result type (might be due to invalid IL or missing references) //IL_0bba: Unknown result type (might be due to invalid IL or missing references) //IL_0bc0: Unknown result type (might be due to invalid IL or missing references) //IL_0bc5: Unknown result type (might be due to invalid IL or missing references) //IL_0bcb: Unknown result type (might be due to invalid IL or missing references) //IL_0bd0: Unknown result type (might be due to invalid IL or missing references) //IL_0bd6: Unknown result type (might be due to invalid IL or missing references) //IL_0be0: Unknown result type (might be due to invalid IL or missing references) //IL_0be5: Unknown result type (might be due to invalid IL or missing references) //IL_0beb: Unknown result type (might be due to invalid IL or missing references) //IL_0bf0: Unknown result type (might be due to invalid IL or missing references) //IL_0bf6: Unknown result type (might be due to invalid IL or missing references) //IL_0c00: Unknown result type (might be due to invalid IL or missing references) //IL_0c05: Unknown result type (might be due to invalid IL or missing references) //IL_0c10: Unknown result type (might be due to invalid IL or missing references) //IL_0c16: Unknown result type (might be due to invalid IL or missing references) //IL_0c1b: Unknown result type (might be due to invalid IL or missing references) //IL_0c21: Unknown result type (might be due to invalid IL or missing references) //IL_0c26: Unknown result type (might be due to invalid IL or missing references) //IL_0c2c: Unknown result type (might be due to invalid IL or missing references) //IL_0c36: Unknown result type (might be due to invalid IL or missing references) //IL_0c3b: Unknown result type (might be due to invalid IL or missing references) //IL_0c41: Unknown result type (might be due to invalid IL or missing references) //IL_0c46: Unknown result type (might be due to invalid IL or missing references) //IL_0c4c: Unknown result type (might be due to invalid IL or missing references) //IL_0c56: Unknown result type (might be due to invalid IL or missing references) //IL_0c5b: Unknown result type (might be due to invalid IL or missing references) //IL_0c67: Unknown result type (might be due to invalid IL or missing references) //IL_3742: Unknown result type (might be due to invalid IL or missing references) //IL_3748: Unknown result type (might be due to invalid IL or missing references) //IL_3752: Unknown result type (might be due to invalid IL or missing references) //IL_3757: Unknown result type (might be due to invalid IL or missing references) //IL_3762: Unknown result type (might be due to invalid IL or missing references) //IL_3768: Unknown result type (might be due to invalid IL or missing references) //IL_376d: Unknown result type (might be due to invalid IL or missing references) //IL_3773: Unknown result type (might be due to invalid IL or missing references) //IL_3778: Unknown result type (might be due to invalid IL or missing references) //IL_377e: Unknown result type (might be due to invalid IL or missing references) //IL_3783: Unknown result type (might be due to invalid IL or missing references) //IL_3789: Unknown result type (might be due to invalid IL or missing references) //IL_3793: Unknown result type (might be due to invalid IL or missing references) //IL_3798: Unknown result type (might be due to invalid IL or missing references) //IL_379e: Unknown result type (might be due to invalid IL or missing references) //IL_37a8: Unknown result type (might be due to invalid IL or missing references) //IL_37ad: Unknown result type (might be due to invalid IL or missing references) //IL_37b3: Unknown result type (might be due to invalid IL or missing references) //IL_37b8: Unknown result type (might be due to invalid IL or missing references) //IL_37be: Unknown result type (might be due to invalid IL or missing references) //IL_37c8: Unknown result type (might be due to invalid IL or missing references) //IL_37cd: Unknown result type (might be due to invalid IL or missing references) //IL_37d3: Unknown result type (might be due to invalid IL or missing references) //IL_37d8: Unknown result type (might be due to invalid IL or missing references) //IL_37e4: Unknown result type (might be due to invalid IL or missing references) //IL_21c7: Unknown result type (might be due to invalid IL or missing references) //IL_21cd: Unknown result type (might be due to invalid IL or missing references) //IL_21d2: Unknown result type (might be due to invalid IL or missing references) //IL_21d8: Unknown result type (might be due to invalid IL or missing references) //IL_21dd: Unknown result type (might be due to invalid IL or missing references) //IL_21e3: Unknown result type (might be due to invalid IL or missing references) //IL_21ed: Unknown result type (might be due to invalid IL or missing references) //IL_21f2: Unknown result type (might be due to invalid IL or missing references) //IL_21f8: Unknown result type (might be due to invalid IL or missing references) //IL_21fd: Unknown result type (might be due to invalid IL or missing references) //IL_2203: Unknown result type (might be due to invalid IL or missing references) //IL_220d: Unknown result type (might be due to invalid IL or missing references) //IL_2212: Unknown result type (might be due to invalid IL or missing references) //IL_221d: Unknown result type (might be due to invalid IL or missing references) //IL_2223: Unknown result type (might be due to invalid IL or missing references) //IL_2228: Unknown result type (might be due to invalid IL or missing references) //IL_222e: Unknown result type (might be due to invalid IL or missing references) //IL_2233: Unknown result type (might be due to invalid IL or missing references) //IL_2239: Unknown result type (might be due to invalid IL or missing references) //IL_2243: Unknown result type (might be due to invalid IL or missing references) //IL_2248: Unknown result type (might be due to invalid IL or missing references) //IL_224e: Unknown result type (might be due to invalid IL or missing references) //IL_2253: Unknown result type (might be due to invalid IL or missing references) //IL_2259: Unknown result type (might be due to invalid IL or missing references) //IL_2263: Unknown result type (might be due to invalid IL or missing references) //IL_2268: Unknown result type (might be due to invalid IL or missing references) //IL_2274: Unknown result type (might be due to invalid IL or missing references) //IL_0c81: Unknown result type (might be due to invalid IL or missing references) //IL_0c87: Unknown result type (might be due to invalid IL or missing references) //IL_0c8c: Unknown result type (might be due to invalid IL or missing references) //IL_0c92: Unknown result type (might be due to invalid IL or missing references) //IL_0c97: Unknown result type (might be due to invalid IL or missing references) //IL_0c9d: Unknown result type (might be due to invalid IL or missing references) //IL_0ca7: Unknown result type (might be due to invalid IL or missing references) //IL_0cac: Unknown result type (might be due to invalid IL or missing references) //IL_0cb2: Unknown result type (might be due to invalid IL or missing references) //IL_0cb7: Unknown result type (might be due to invalid IL or missing references) //IL_0cbd: Unknown result type (might be due to invalid IL or missing references) //IL_0cc7: Unknown result type (might be due to invalid IL or missing references) //IL_0ccc: Unknown result type (might be due to invalid IL or missing references) //IL_0cd7: Unknown result type (might be due to invalid IL or missing references) //IL_0cdd: Unknown result type (might be due to invalid IL or missing references) //IL_0ce2: Unknown result type (might be due to invalid IL or missing references) //IL_0ce8: Unknown result type (might be due to invalid IL or missing references) //IL_0ced: Unknown result type (might be due to invalid IL or missing references) //IL_0cf3: Unknown result type (might be due to invalid IL or missing references) //IL_0cfd: Unknown result type (might be due to invalid IL or missing references) //IL_0d02: Unknown result type (might be due to invalid IL or missing references) //IL_0d08: Unknown result type (might be due to invalid IL or missing references) //IL_0d0d: Unknown result type (might be due to invalid IL or missing references) //IL_0d13: Unknown result type (might be due to invalid IL or missing references) //IL_0d1d: Unknown result type (might be due to invalid IL or missing references) //IL_0d22: Unknown result type (might be due to invalid IL or missing references) //IL_0d2e: Unknown result type (might be due to invalid IL or missing references) //IL_37fe: Unknown result type (might be due to invalid IL or missing references) //IL_3804: Unknown result type (might be due to invalid IL or missing references) //IL_3809: Unknown result type (might be due to invalid IL or missing references) //IL_380f: Unknown result type (might be due to invalid IL or missing references) //IL_3814: Unknown result type (might be due to invalid IL or missing references) //IL_381a: Unknown result type (might be due to invalid IL or missing references) //IL_3824: Unknown result type (might be due to invalid IL or missing references) //IL_3829: Unknown result type (might be due to invalid IL or missing references) //IL_382f: Unknown result type (might be due to invalid IL or missing references) //IL_3834: Unknown result type (might be due to invalid IL or missing references) //IL_383f: Unknown result type (might be due to invalid IL or missing references) //IL_3845: Unknown result type (might be due to invalid IL or missing references) //IL_384a: Unknown result type (might be due to invalid IL or missing references) //IL_3850: Unknown result type (might be due to invalid IL or missing references) //IL_3855: Unknown result type (might be due to invalid IL or missing references) //IL_385b: Unknown result type (might be due to invalid IL or missing references) //IL_3865: Unknown result type (might be due to invalid IL or missing references) //IL_386a: Unknown result type (might be due to invalid IL or missing references) //IL_3870: Unknown result type (might be due to invalid IL or missing references) //IL_3875: Unknown result type (might be due to invalid IL or missing references) //IL_3881: Unknown result type (might be due to invalid IL or missing references) //IL_228e: Unknown result type (might be due to invalid IL or missing references) //IL_2294: Unknown result type (might be due to invalid IL or missing references) //IL_2299: Unknown result type (might be due to invalid IL or missing references) //IL_229f: Unknown result type (might be due to invalid IL or missing references) //IL_22a4: Unknown result type (might be due to invalid IL or missing references) //IL_22aa: Unknown result type (might be due to invalid IL or missing references) //IL_22b4: Unknown result type (might be due to invalid IL or missing references) //IL_22b9: Unknown result type (might be due to invalid IL or missing references) //IL_22bf: Unknown result type (might be due to invalid IL or missing references) //IL_22c4: Unknown result type (might be due to invalid IL or missing references) //IL_22ca: Unknown result type (might be due to invalid IL or missing references) //IL_22d4: Unknown result type (might be due to invalid IL or missing references) //IL_22d9: Unknown result type (might be due to invalid IL or missing references) //IL_22e4: Unknown result type (might be due to invalid IL or missing references) //IL_22ea: Unknown result type (might be due to invalid IL or missing references) //IL_22ef: Unknown result type (might be due to invalid IL or missing references) //IL_22f5: Unknown result type (might be due to invalid IL or missing references) //IL_22fa: Unknown result type (might be due to invalid IL or missing references) //IL_2300: Unknown result type (might be due to invalid IL or missing references) //IL_230a: Unknown result type (might be due to invalid IL or missing references) //IL_230f: Unknown result type (might be due to invalid IL or missing references) //IL_2315: Unknown result type (might be due to invalid IL or missing references) //IL_231a: Unknown result type (might be due to invalid IL or missing references) //IL_2320: Unknown result type (might be due to invalid IL or missing references) //IL_232a: Unknown result type (might be due to invalid IL or missing references) //IL_232f: Unknown result type (might be due to invalid IL or missing references) //IL_233b: Unknown result type (might be due to invalid IL or missing references) //IL_0d48: Unknown result type (might be due to invalid IL or missing references) //IL_0d4e: Unknown result type (might be due to invalid IL or missing references) //IL_0d53: Unknown result type (might be due to invalid IL or missing references) //IL_0d59: Unknown result type (might be due to invalid IL or missing references) //IL_0d5e: Unknown result type (might be due to invalid IL or missing references) //IL_0d64: Unknown result type (might be due to invalid IL or missing references) //IL_0d6e: Unknown result type (might be due to invalid IL or missing references) //IL_0d73: Unknown result type (might be due to invalid IL or missing references) //IL_0d79: Unknown result type (might be due to invalid IL or missing references) //IL_0d7e: Unknown result type (might be due to invalid IL or missing references) //IL_0d84: Unknown result type (might be due to invalid IL or missing references) //IL_0d8e: Unknown result type (might be due to invalid IL or missing references) //IL_0d93: Unknown result type (might be due to invalid IL or missing references) //IL_0d9e: Unknown result type (might be due to invalid IL or missing references) //IL_0da4: Unknown result type (might be due to invalid IL or missing references) //IL_0da9: Unknown result type (might be due to invalid IL or missing references) //IL_0daf: Unknown result type (might be due to invalid IL or missing references) //IL_0db4: Unknown result type (might be due to invalid IL or missing references) //IL_0dba: Unknown result type (might be due to invalid IL or missing references) //IL_0dc4: Unknown result type (might be due to invalid IL or missing references) //IL_0dc9: Unknown result type (might be due to invalid IL or missing references) //IL_0dcf: Unknown result type (might be due to invalid IL or missing references) //IL_0dd4: Unknown result type (might be due to invalid IL or missing references) //IL_0dda: Unknown result type (might be due to invalid IL or missing references) //IL_0de4: Unknown result type (might be due to invalid IL or missing references) //IL_0de9: Unknown result type (might be due to invalid IL or missing references) //IL_0df5: Unknown result type (might be due to invalid IL or missing references) //IL_389b: Unknown result type (might be due to invalid IL or missing references) //IL_38a1: Unknown result type (might be due to invalid IL or missing references) //IL_38a6: Unknown result type (might be due to invalid IL or missing references) //IL_38ac: Unknown result type (might be due to invalid IL or missing references) //IL_38b1: Unknown result type (might be due to invalid IL or missing references) //IL_38b7: Unknown result type (might be due to invalid IL or missing references) //IL_38c1: Unknown result type (might be due to invalid IL or missing references) //IL_38c6: Unknown result type (might be due to invalid IL or missing references) //IL_38cc: Unknown result type (might be due to invalid IL or missing references) //IL_38d1: Unknown result type (might be due to invalid IL or missing references) //IL_38d7: Unknown result type (might be due to invalid IL or missing references) //IL_38e1: Unknown result type (might be due to invalid IL or missing references) //IL_38e6: Unknown result type (might be due to invalid IL or missing references) //IL_38f1: Unknown result type (might be due to invalid IL or missing references) //IL_38f7: Unknown result type (might be due to invalid IL or missing references) //IL_38fc: Unknown result type (might be due to invalid IL or missing references) //IL_3902: Unknown result type (might be due to invalid IL or missing references) //IL_3907: Unknown result type (might be due to invalid IL or missing references) //IL_390d: Unknown result type (might be due to invalid IL or missing references) //IL_3917: Unknown result type (might be due to invalid IL or missing references) //IL_391c: Unknown result type (might be due to invalid IL or missing references) //IL_3922: Unknown result type (might be due to invalid IL or missing references) //IL_3927: Unknown result type (might be due to invalid IL or missing references) //IL_392d: Unknown result type (might be due to invalid IL or missing references) //IL_3937: Unknown result type (might be due to invalid IL or missing references) //IL_393c: Unknown result type (might be due to invalid IL or missing references) //IL_3948: Unknown result type (might be due to invalid IL or missing references) //IL_2355: Unknown result type (might be due to invalid IL or missing references) //IL_235b: Unknown result type (might be due to invalid IL or missing references) //IL_2360: Unknown result type (might be due to invalid IL or missing references) //IL_2366: Unknown result type (might be due to invalid IL or missing references) //IL_236b: Unknown result type (might be due to invalid IL or missing references) //IL_2371: Unknown result type (might be due to invalid IL or missing references) //IL_237b: Unknown result type (might be due to invalid IL or missing references) //IL_2380: Unknown result type (might be due to invalid IL or missing references) //IL_2386: Unknown result type (might be due to invalid IL or missing references) //IL_238b: Unknown result type (might be due to invalid IL or missing references) //IL_2391: Unknown result type (might be due to invalid IL or missing references) //IL_239b: Unknown result type (might be due to invalid IL or missing references) //IL_23a0: Unknown result type (might be due to invalid IL or missing references) //IL_23ab: Unknown result type (might be due to invalid IL or missing references) //IL_23b1: Unknown result type (might be due to invalid IL or missing references) //IL_23b6: Unknown result type (might be due to invalid IL or missing references) //IL_23bc: Unknown result type (might be due to invalid IL or missing references) //IL_23c1: Unknown result type (might be due to invalid IL or missing references) //IL_23c7: Unknown result type (might be due to invalid IL or missing references) //IL_23d1: Unknown result type (might be due to invalid IL or missing references) //IL_23d6: Unknown result type (might be due to invalid IL or missing references) //IL_23dc: Unknown result type (might be due to invalid IL or missing references) //IL_23e1: Unknown result type (might be due to invalid IL or missing references) //IL_23e7: Unknown result type (might be due to invalid IL or missing references) //IL_23f1: Unknown result type (might be due to invalid IL or missing references) //IL_23f6: Unknown result type (might be due to invalid IL or missing references) //IL_2402: Unknown result type (might be due to invalid IL or missing references) //IL_0e0f: Unknown result type (might be due to invalid IL or missing references) //IL_0e15: Unknown result type (might be due to invalid IL or missing references) //IL_0e1a: Unknown result type (might be due to invalid IL or missing references) //IL_0e20: Unknown result type (might be due to invalid IL or missing references) //IL_0e25: Unknown result type (might be due to invalid IL or missing references) //IL_0e2b: Unknown result type (might be due to invalid IL or missing references) //IL_0e35: Unknown result type (might be due to invalid IL or missing references) //IL_0e3a: Unknown result type (might be due to invalid IL or missing references) //IL_0e40: Unknown result type (might be due to invalid IL or missing references) //IL_0e45: Unknown result type (might be due to invalid IL or missing references) //IL_0e4b: Unknown result type (might be due to invalid IL or missing references) //IL_0e55: Unknown result type (might be due to invalid IL or missing references) //IL_0e5a: Unknown result type (might be due to invalid IL or missing references) //IL_0e65: Unknown result type (might be due to invalid IL or missing references) //IL_0e6b: Unknown result type (might be due to invalid IL or missing references) //IL_0e70: Unknown result type (might be due to invalid IL or missing references) //IL_0e76: Unknown result type (might be due to invalid IL or missing references) //IL_0e7b: Unknown result type (might be due to invalid IL or missing references) //IL_0e81: Unknown result type (might be due to invalid IL or missing references) //IL_0e8b: Unknown result type (might be due to invalid IL or missing references) //IL_0e90: Unknown result type (might be due to invalid IL or missing references) //IL_0e96: Unknown result type (might be due to invalid IL or missing references) //IL_0e9b: Unknown result type (might be due to invalid IL or missing references) //IL_0ea1: Unknown result type (might be due to invalid IL or missing references) //IL_0eab: Unknown result type (might be due to invalid IL or missing references) //IL_0eb0: Unknown result type (might be due to invalid IL or missing references) //IL_0ebc: Unknown result type (might be due to invalid IL or missing references) //IL_3962: Unknown result type (might be due to invalid IL or missing references) //IL_3968: Unknown result type (might be due to invalid IL or missing references) //IL_396d: Unknown result type (might be due to invalid IL or missing references) //IL_3973: Unknown result type (might be due to invalid IL or missing references) //IL_3978: Unknown result type (might be due to invalid IL or missing references) //IL_397e: Unknown result type (might be due to invalid IL or missing references) //IL_3988: Unknown result type (might be due to invalid IL or missing references) //IL_398d: Unknown result type (might be due to invalid IL or missing references) //IL_3993: Unknown result type (might be due to invalid IL or missing references) //IL_3998: Unknown result type (might be due to invalid IL or missing references) //IL_399e: Unknown result type (might be due to invalid IL or missing references) //IL_39a8: Unknown result type (might be due to invalid IL or missing references) //IL_39ad: Unknown result type (might be due to invalid IL or missing references) //IL_39b8: Unknown result type (might be due to invalid IL or missing references) //IL_39be: Unknown result type (might be due to invalid IL or missing references) //IL_39c3: Unknown result type (might be due to invalid IL or missing references) //IL_39c9: Unknown result type (might be due to invalid IL or missing references) //IL_39ce: Unknown result type (might be due to invalid IL or missing references) //IL_39d4: Unknown result type (might be due to invalid IL or missing references) //IL_39de: Unknown result type (might be due to invalid IL or missing references) //IL_39e3: Unknown result type (might be due to invalid IL or missing references) //IL_39e9: Unknown result type (might be due to invalid IL or missing references) //IL_39ee: Unknown result type (might be due to invalid IL or missing references) //IL_39f4: Unknown result type (might be due to invalid IL or missing references) //IL_39fe: Unknown result type (might be due to invalid IL or missing references) //IL_3a03: Unknown result type (might be due to invalid IL or missing references) //IL_3a0f: Unknown result type (might be due to invalid IL or missing references) //IL_241c: Unknown result type (might be due to invalid IL or missing references) //IL_2422: Unknown result type (might be due to invalid IL or missing references) //IL_2427: Unknown result type (might be due to invalid IL or missing references) //IL_242d: Unknown result type (might be due to invalid IL or missing references) //IL_2432: Unknown result type (might be due to invalid IL or missing references) //IL_2438: Unknown result type (might be due to invalid IL or missing references) //IL_2442: Unknown result type (might be due to invalid IL or missing references) //IL_2447: Unknown result type (might be due to invalid IL or missing references) //IL_244d: Unknown result type (might be due to invalid IL or missing references) //IL_2452: Unknown result type (might be due to invalid IL or missing references) //IL_2458: Unknown result type (might be due to invalid IL or missing references) //IL_2462: Unknown result type (might be due to invalid IL or missing references) //IL_2467: Unknown result type (might be due to invalid IL or missing references) //IL_2472: Unknown result type (might be due to invalid IL or missing references) //IL_2478: Unknown result type (might be due to invalid IL or missing references) //IL_247d: Unknown result type (might be due to invalid IL or missing references) //IL_2483: Unknown result type (might be due to invalid IL or missing references) //IL_2488: Unknown result type (might be due to invalid IL or missing references) //IL_248e: Unknown result type (might be due to invalid IL or missing references) //IL_2498: Unknown result type (might be due to invalid IL or missing references) //IL_249d: Unknown result type (might be due to invalid IL or missing references) //IL_24a3: Unknown result type (might be due to invalid IL or missing references) //IL_24a8: Unknown result type (might be due to invalid IL or missing references) //IL_24ae: Unknown result type (might be due to invalid IL or missing references) //IL_24b8: Unknown result type (might be due to invalid IL or missing references) //IL_24bd: Unknown result type (might be due to invalid IL or missing references) //IL_24c9: Unknown result type (might be due to invalid IL or missing references) //IL_0ed6: Unknown result type (might be due to invalid IL or missing references) //IL_0edc: Unknown result type (might be due to invalid IL or missing references) //IL_0ee1: Unknown result type (might be due to invalid IL or missing references) //IL_0ee7: Unknown result type (might be due to invalid IL or missing references) //IL_0eec: Unknown result type (might be due to invalid IL or missing references) //IL_0ef2: Unknown result type (might be due to invalid IL or missing references) //IL_0efc: Unknown result type (might be due to invalid IL or missing references) //IL_0f01: Unknown result type (might be due to invalid IL or missing references) //IL_0f07: Unknown result type (might be due to invalid IL or missing references) //IL_0f0c: Unknown result type (might be due to invalid IL or missing references) //IL_0f12: Unknown result type (might be due to invalid IL or missing references) //IL_0f1c: Unknown result type (might be due to invalid IL or missing references) //IL_0f21: Unknown result type (might be due to invalid IL or missing references) //IL_0f2c: Unknown result type (might be due to invalid IL or missing references) //IL_0f32: Unknown result type (might be due to invalid IL or missing references) //IL_0f37: Unknown result type (might be due to invalid IL or missing references) //IL_0f3d: Unknown result type (might be due to invalid IL or missing references) //IL_0f42: Unknown result type (might be due to invalid IL or missing references) //IL_0f48: Unknown result type (might be due to invalid IL or missing references) //IL_0f52: Unknown result type (might be due to invalid IL or missing references) //IL_0f57: Unknown result type (might be due to invalid IL or missing references) //IL_0f5d: Unknown result type (might be due to invalid IL or missing references) //IL_0f62: Unknown result type (might be due to invalid IL or missing references) //IL_0f68: Unknown result type (might be due to invalid IL or missing references) //IL_0f72: Unknown result type (might be due to invalid IL or missing references) //IL_0f77: Unknown result type (might be due to invalid IL or missing references) //IL_0f83: Unknown result type (might be due to invalid IL or missing references) //IL_3a29: Unknown result type (might be due to invalid IL or missing references) //IL_3a2f: Unknown result type (might be due to invalid IL or missing references) //IL_3a34: Unknown result type (might be due to invalid IL or missing references) //IL_3a3a: Unknown result type (might be due to invalid IL or missing references) //IL_3a3f: Unknown result type (might be due to invalid IL or missing references) //IL_3a45: Unknown result type (might be due to invalid IL or missing references) //IL_3a4f: Unknown result type (might be due to invalid IL or missing references) //IL_3a54: Unknown result type (might be due to invalid IL or missing references) //IL_3a5a: Unknown result type (might be due to invalid IL or missing references) //IL_3a5f: Unknown result type (might be due to invalid IL or missing references) //IL_3a65: Unknown result type (might be due to invalid IL or missing references) //IL_3a6f: Unknown result type (might be due to invalid IL or missing references) //IL_3a74: Unknown result type (might be due to invalid IL or missing references) //IL_3a7f: Unknown result type (might be due to invalid IL or missing references) //IL_3a85: Unknown result type (might be due to invalid IL or missing references) //IL_3a8a: Unknown result type (might be due to invalid IL or missing references) //IL_3a90: Unknown result type (might be due to invalid IL or missing references) //IL_3a95: Unknown result type (might be due to invalid IL or missing references) //IL_3a9b: Unknown result type (might be due to invalid IL or missing references) //IL_3aa5: Unknown result type (might be due to invalid IL or missing references) //IL_3aaa: Unknown result type (might be due to invalid IL or missing references) //IL_3ab0: Unknown result type (might be due to invalid IL or missing references) //IL_3ab5: Unknown result type (might be due to invalid IL or missing references) //IL_3abb: Unknown result type (might be due to invalid IL or missing references) //IL_3ac5: Unknown result type (might be due to invalid IL or missing references) //IL_3aca: Unknown result type (might be due to invalid IL or missing references) //IL_3ad6: Unknown result type (might be due to invalid IL or missing references) //IL_24e3: Unknown result type (might be due to invalid IL or missing references) //IL_24e9: Unknown result type (might be due to invalid IL or missing references) //IL_24ee: Unknown result type (might be due to invalid IL or missing references) //IL_24f4: Unknown result type (might be due to invalid IL or missing references) //IL_24f9: Unknown result type (might be due to invalid IL or missing references) //IL_24ff: Unknown result type (might be due to invalid IL or missing references) //IL_2509: Unknown result type (might be due to invalid IL or missing references) //IL_250e: Unknown result type (might be due to invalid IL or missing references) //IL_2514: Unknown result type (might be due to invalid IL or missing references) //IL_2519: Unknown result type (might be due to invalid IL or missing references) //IL_251f: Unknown result type (might be due to invalid IL or missing references) //IL_2529: Unknown result type (might be due to invalid IL or missing references) //IL_252e: Unknown result type (might be due to invalid IL or missing references) //IL_2539: Unknown result type (might be due to invalid IL or missing references) //IL_253f: Unknown result type (might be due to invalid IL or missing references) //IL_2544: Unknown result type (might be due to invalid IL or missing references) //IL_254a: Unknown result type (might be due to invalid IL or missing references) //IL_254f: Unknown result type (might be due to invalid IL or missing references) //IL_2555: Unknown result type (might be due to invalid IL or missing references) //IL_255f: Unknown result type (might be due to invalid IL or missing references) //IL_2564: Unknown result type (might be due to invalid IL or missing references) //IL_256a: Unknown result type (might be due to invalid IL or missing references) //IL_256f: Unknown result type (might be due to invalid IL or missing references) //IL_2575: Unknown result type (might be due to invalid IL or missing references) //IL_257f: Unknown result type (might be due to invalid IL or missing references) //IL_2584: Unknown result type (might be due to invalid IL or missing references) //IL_2590: Unknown result type (might be due to invalid IL or missing references) //IL_0f9d: Unknown result type (might be due to invalid IL or missing references) //IL_0fa3: Unknown result type (might be due to invalid IL or missing references) //IL_0fa8: Unknown result type (might be due to invalid IL or missing references) //IL_0fae: Unknown result type (might be due to invalid IL or missing references) //IL_0fb3: Unknown result type (might be due to invalid IL or missing references) //IL_0fb9: Unknown result type (might be due to invalid IL or missing references) //IL_0fc3: Unknown result type (might be due to invalid IL or missing references) //IL_0fc8: Unknown result type (might be due to invalid IL or missing references) //IL_0fce: Unknown result type (might be due to invalid IL or missing references) //IL_0fd3: Unknown result type (might be due to invalid IL or missing references) //IL_0fd9: Unknown result type (might be due to invalid IL or missing references) //IL_0fe3: Unknown result type (might be due to invalid IL or missing references) //IL_0fe8: Unknown result type (might be due to invalid IL or missing references) //IL_0ff3: Unknown result type (might be due to invalid IL or missing references) //IL_0ff9: Unknown result type (might be due to invalid IL or missing references) //IL_0ffe: Unknown result type (might be due to invalid IL or missing references) //IL_1004: Unknown result type (might be due to invalid IL or missing references) //IL_1009: Unknown result type (might be due to invalid IL or missing references) //IL_100f: Unknown result type (might be due to invalid IL or missing references) //IL_1019: Unknown result type (might be due to invalid IL or missing references) //IL_101e: Unknown result type (might be due to invalid IL or missing references) //IL_1024: Unknown result type (might be due to invalid IL or missing references) //IL_1029: Unknown result type (might be due to invalid IL or missing references) //IL_102f: Unknown result type (might be due to invalid IL or missing references) //IL_1039: Unknown result type (might be due to invalid IL or missing references) //IL_103e: Unknown result type (might be due to invalid IL or missing references) //IL_104a: Unknown result type (might be due to invalid IL or missing references) //IL_3af0: Unknown result type (might be due to invalid IL or missing references) //IL_3af6: Unknown result type (might be due to invalid IL or missing references) //IL_3afb: Unknown result type (might be due to invalid IL or missing references) //IL_3b01: Unknown result type (might be due to invalid IL or missing references) //IL_3b06: Unknown result type (might be due to invalid IL or missing references) //IL_3b0c: Unknown result type (might be due to invalid IL or missing references) //IL_3b16: Unknown result type (might be due to invalid IL or missing references) //IL_3b1b: Unknown result type (might be due to invalid IL or missing references) //IL_3b21: Unknown result type (might be due to invalid IL or missing references) //IL_3b26: Unknown result type (might be due to invalid IL or missing references) //IL_3b2c: Unknown result type (might be due to invalid IL or missing references) //IL_3b36: Unknown result type (might be due to invalid IL or missing references) //IL_3b3b: Unknown result type (might be due to invalid IL or missing references) //IL_3b46: Unknown result type (might be due to invalid IL or missing references) //IL_3b4c: Unknown result type (might be due to invalid IL or missing references) //IL_3b51: Unknown result type (might be due to invalid IL or missing references) //IL_3b57: Unknown result type (might be due to invalid IL or missing references) //IL_3b5c: Unknown result type (might be due to invalid IL or missing references) //IL_3b62: Unknown result type (might be due to invalid IL or missing references) //IL_3b6c: Unknown result type (might be due to invalid IL or missing references) //IL_3b71: Unknown result type (might be due to invalid IL or missing references) //IL_3b77: Unknown result type (might be due to invalid IL or missing references) //IL_3b7c: Unknown result type (might be due to invalid IL or missing references) //IL_3b82: Unknown result type (might be due to invalid IL or missing references) //IL_3b8c: Unknown result type (might be due to invalid IL or missing references) //IL_3b91: Unknown result type (might be due to invalid IL or missing references) //IL_3b9d: Unknown result type (might be due to invalid IL or missing references) //IL_25aa: Unknown result type (might be due to invalid IL or missing references) //IL_25b0: Unknown result type (might be due to invalid IL or missing references) //IL_25b5: Unknown result type (might be due to invalid IL or missing references) //IL_25bb: Unknown result type (might be due to invalid IL or missing references) //IL_25c0: Unknown result type (might be due to invalid IL or missing references) //IL_25c6: Unknown result type (might be due to invalid IL or missing references) //IL_25d0: Unknown result type (might be due to invalid IL or missing references) //IL_25d5: Unknown result type (might be due to invalid IL or missing references) //IL_25db: Unknown result type (might be due to invalid IL or missing references) //IL_25e0: Unknown result type (might be due to invalid IL or missing references) //IL_25e6: Unknown result type (might be due to invalid IL or missing references) //IL_25f0: Unknown result type (might be due to invalid IL or missing references) //IL_25f5: Unknown result type (might be due to invalid IL or missing references) //IL_2600: Unknown result type (might be due to invalid IL or missing references) //IL_2606: Unknown result type (might be due to invalid IL or missing references) //IL_260b: Unknown result type (might be due to invalid IL or missing references) //IL_2611: Unknown result type (might be due to invalid IL or missing references) //IL_2616: Unknown result type (might be due to invalid IL or missing references) //IL_261c: Unknown result type (might be due to invalid IL or missing references) //IL_2626: Unknown result type (might be due to invalid IL or missing references) //IL_262b: Unknown result type (might be due to invalid IL or missing references) //IL_2631: Unknown result type (might be due to invalid IL or missing references) //IL_2636: Unknown result type (might be due to invalid IL or missing references) //IL_263c: Unknown result type (might be due to invalid IL or missing references) //IL_2646: Unknown result type (might be due to invalid IL or missing references) //IL_264b: Unknown result type (might be due to invalid IL or missing references) //IL_2657: Unknown result type (might be due to invalid IL or missing references) //IL_1064: Unknown result type (might be due to invalid IL or missing references) //IL_106a: Unknown result type (might be due to invalid IL or missing references) //IL_106f: Unknown result type (might be due to invalid IL or missing references) //IL_1075: Unknown result type (might be due to invalid IL or missing references) //IL_107a: Unknown result type (might be due to invalid IL or missing references) //IL_1080: Unknown result type (might be due to invalid IL or missing references) //IL_108a: Unknown result type (might be due to invalid IL or missing references) //IL_108f: Unknown result type (might be due to invalid IL or missing references) //IL_1095: Unknown result type (might be due to invalid IL or missing references) //IL_109a: Unknown result type (might be due to invalid IL or missing references) //IL_10a5: Unknown result type (might be due to invalid IL or missing references) //IL_10ab: Unknown result type (might be due to invalid IL or missing references) //IL_10b0: Unknown result type (might be due to invalid IL or missing references) //IL_10b6: Unknown result type (might be due to invalid IL or missing references) //IL_10bb: Unknown result type (might be due to invalid IL or missing references) //IL_10c1: Unknown result type (might be due to invalid IL or missing references) //IL_10cb: Unknown result type (might be due to invalid IL or missing references) //IL_10d0: Unknown result type (might be due to invalid IL or missing references) //IL_10d6: Unknown result type (might be due to invalid IL or missing references) //IL_10db: Unknown result type (might be due to invalid IL or missing references) //IL_10e7: Unknown result type (might be due to invalid IL or missing references) //IL_3bb7: Unknown result type (might be due to invalid IL or missing references) //IL_3bbd: Unknown result type (might be due to invalid IL or missing references) //IL_3bc2: Unknown result type (might be due to invalid IL or missing references) //IL_3bc8: Unknown result type (might be due to invalid IL or missing references) //IL_3bcd: Unknown result type (might be due to invalid IL or missing references) //IL_3bd3: Unknown result type (might be due to invalid IL or missing references) //IL_3bdd: Unknown result type (might be due to invalid IL or missing references) //IL_3be2: Unknown result type (might be due to invalid IL or missing references) //IL_3be8: Unknown result type (might be due to invalid IL or missing references) //IL_3bed: Unknown result type (might be due to invalid IL or missing references) //IL_3bf3: Unknown result type (might be due to invalid IL or missing references) //IL_3bfd: Unknown result type (might be due to invalid IL or missing references) //IL_3c02: Unknown result type (might be due to invalid IL or missing references) //IL_3c0d: Unknown result type (might be due to invalid IL or missing references) //IL_3c13: Unknown result type (might be due to invalid IL or missing references) //IL_3c18: Unknown result type (might be due to invalid IL or missing references) //IL_3c1e: Unknown result type (might be due to invalid IL or missing references) //IL_3c23: Unknown result type (might be due to invalid IL or missing references) //IL_3c29: Unknown result type (might be due to invalid IL or missing references) //IL_3c33: Unknown result type (might be due to invalid IL or missing references) //IL_3c38: Unknown result type (might be due to invalid IL or missing references) //IL_3c3e: Unknown result type (might be due to invalid IL or missing references) //IL_3c43: Unknown result type (might be due to invalid IL or missing references) //IL_3c49: Unknown result type (might be due to invalid IL or missing references) //IL_3c53: Unknown result type (might be due to invalid IL or missing references) //IL_3c58: Unknown result type (might be due to invalid IL or missing references) //IL_3c64: Unknown result type (might be due to invalid IL or missing references) //IL_2671: Unknown result type (might be due to invalid IL or missing references) //IL_2677: Unknown result type (might be due to invalid IL or missing references) //IL_267c: Unknown result type (might be due to invalid IL or missing references) //IL_2682: Unknown result type (might be due to invalid IL or missing references) //IL_2687: Unknown result type (might be due to invalid IL or missing references) //IL_268d: Unknown result type (might be due to invalid IL or missing references) //IL_2697: Unknown result type (might be due to invalid IL or missing references) //IL_269c: Unknown result type (might be due to invalid IL or missing references) //IL_26a2: Unknown result type (might be due to invalid IL or missing references) //IL_26a7: Unknown result type (might be due to invalid IL or missing references) //IL_26ad: Unknown result type (might be due to invalid IL or missing references) //IL_26b7: Unknown result type (might be due to invalid IL or missing references) //IL_26bc: Unknown result type (might be due to invalid IL or missing references) //IL_26c7: Unknown result type (might be due to invalid IL or missing references) //IL_26cd: Unknown result type (might be due to invalid IL or missing references) //IL_26d2: Unknown result type (might be due to invalid IL or missing references) //IL_26d8: Unknown result type (might be due to invalid IL or missing references) //IL_26dd: Unknown result type (might be due to invalid IL or missing references) //IL_26e3: Unknown result type (might be due to invalid IL or missing references) //IL_26ed: Unknown result type (might be due to invalid IL or missing references) //IL_26f2: Unknown result type (might be due to invalid IL or missing references) //IL_26f8: Unknown result type (might be due to invalid IL or missing references) //IL_26fd: Unknown result type (might be due to invalid IL or missing references) //IL_2703: Unknown result type (might be due to invalid IL or missing references) //IL_270d: Unknown result type (might be due to invalid IL or missing references) //IL_2712: Unknown result type (might be due to invalid IL or missing references) //IL_271e: Unknown result type (might be due to invalid IL or missing references) //IL_1101: Unknown result type (might be due to invalid IL or missing references) //IL_1107: Unknown result type (might be due to invalid IL or missing references) //IL_110c: Unknown result type (might be due to invalid IL or missing references) //IL_1112: Unknown result type (might be due to invalid IL or missing references) //IL_1117: Unknown result type (might be due to invalid IL or missing references) //IL_111d: Unknown result type (might be due to invalid IL or missing references) //IL_1127: Unknown result type (might be due to invalid IL or missing references) //IL_112c: Unknown result type (might be due to invalid IL or missing references) //IL_1132: Unknown result type (might be due to invalid IL or missing references) //IL_1137: Unknown result type (might be due to invalid IL or missing references) //IL_113d: Unknown result type (might be due to invalid IL or missing references) //IL_1147: Unknown result type (might be due to invalid IL or missing references) //IL_114c: Unknown result type (might be due to invalid IL or missing references) //IL_1157: Unknown result type (might be due to invalid IL or missing references) //IL_115d: Unknown result type (might be due to invalid IL or missing references) //IL_1162: Unknown result type (might be due to invalid IL or missing references) //IL_1168: Unknown result type (might be due to invalid IL or missing references) //IL_116d: Unknown result type (might be due to invalid IL or missing references) //IL_1173: Unknown result type (might be due to invalid IL or missing references) //IL_117d: Unknown result type (might be due to invalid IL or missing references) //IL_1182: Unknown result type (might be due to invalid IL or missing references) //IL_1188: Unknown result type (might be due to invalid IL or missing references) //IL_118d: Unknown result type (might be due to invalid IL or missing references) //IL_1193: Unknown result type (might be due to invalid IL or missing references) //IL_119d: Unknown result type (might be due to invalid IL or missing references) //IL_11a2: Unknown result type (might be due to invalid IL or missing references) //IL_11ae: Unknown result type (might be due to invalid IL or missing references) //IL_3c7e: Unknown result type (might be due to invalid IL or missing references) //IL_3c84: Unknown result type (might be due to invalid IL or missing references) //IL_3c89: Unknown result type (might be due to invalid IL or missing references) //IL_3c8f: Unknown result type (might be due to invalid IL or missing references) //IL_3c94: Unknown result type (might be due to invalid IL or missing references) //IL_3c9a: Unknown result type (might be due to invalid IL or missing references) //IL_3ca4: Unknown result type (might be due to invalid IL or missing references) //IL_3ca9: Unknown result type (might be due to invalid IL or missing references) //IL_3caf: Unknown result type (might be due to invalid IL or missing references) //IL_3cb4: Unknown result type (might be due to invalid IL or missing references) //IL_3cba: Unknown result type (might be due to invalid IL or missing references) //IL_3cc4: Unknown result type (might be due to invalid IL or missing references) //IL_3cc9: Unknown result type (might be due to invalid IL or missing references) //IL_3cd4: Unknown result type (might be due to invalid IL or missing references) //IL_3cda: Unknown result type (might be due to invalid IL or missing references) //IL_3cdf: Unknown result type (might be due to invalid IL or missing references) //IL_3ce5: Unknown result type (might be due to invalid IL or missing references) //IL_3cea: Unknown result type (might be due to invalid IL or missing references) //IL_3cf0: Unknown result type (might be due to invalid IL or missing references) //IL_3cfa: Unknown result type (might be due to invalid IL or missing references) //IL_3cff: Unknown result type (might be due to invalid IL or missing references) //IL_3d05: Unknown result type (might be due to invalid IL or missing references) //IL_3d0a: Unknown result type (might be due to invalid IL or missing references) //IL_3d10: Unknown result type (might be due to invalid IL or missing references) //IL_3d1a: Unknown result type (might be due to invalid IL or missing references) //IL_3d1f: Unknown result type (might be due to invalid IL or missing references) //IL_3d2b: Unknown result type (might be due to invalid IL or missing references) //IL_2738: Unknown result type (might be due to invalid IL or missing references) //IL_273e: Unknown result type (might be due to invalid IL or missing references) //IL_2743: Unknown result type (might be due to invalid IL or missing references) //IL_2749: Unknown result type (might be due to invalid IL or missing references) //IL_274e: Unknown result type (might be due to invalid IL or missing references) //IL_2754: Unknown result type (might be due to invalid IL or missing references) //IL_275e: Unknown result type (might be due to invalid IL or missing references) //IL_2763: Unknown result type (might be due to invalid IL or missing references) //IL_2769: Unknown result type (might be due to invalid IL or missing references) //IL_276e: Unknown result type (might be due to invalid IL or missing references) //IL_2779: Unknown result type (might be due to invalid IL or missing references) //IL_277f: Unknown result type (might be due to invalid IL or missing references) //IL_2784: Unknown result type (might be due to invalid IL or missing references) //IL_278a: Unknown result type (might be due to invalid IL or missing references) //IL_278f: Unknown result type (might be due to invalid IL or missing references) //IL_2795: Unknown result type (might be due to invalid IL or missing references) //IL_279f: Unknown result type (might be due to invalid IL or missing references) //IL_27a4: Unknown result type (might be due to invalid IL or missing references) //IL_27aa: Unknown result type (might be due to invalid IL or missing references) //IL_27af: Unknown result type (might be due to invalid IL or missing references) //IL_27bb: Unknown result type (might be due to invalid IL or missing references) //IL_11c8: Unknown result type (might be due to invalid IL or missing references) //IL_11ce: Unknown result type (might be due to invalid IL or missing references) //IL_11d3: Unknown result type (might be due to invalid IL or missing references) //IL_11d9: Unknown result type (might be due to invalid IL or missing references) //IL_11de: Unknown result type (might be due to invalid IL or missing references) //IL_11e4: Unknown result type (might be due to invalid IL or missing references) //IL_11ee: Unknown result type (might be due to invalid IL or missing references) //IL_11f3: Unknown result type (might be due to invalid IL or missing references) //IL_11f9: Unknown result type (might be due to invalid IL or missing references) //IL_11fe: Unknown result type (might be due to invalid IL or missing references) //IL_1204: Unknown result type (might be due to invalid IL or missing references) //IL_120e: Unknown result type (might be due to invalid IL or missing references) //IL_1213: Unknown result type (might be due to invalid IL or missing references) //IL_121e: Unknown result type (might be due to invalid IL or missing references) //IL_1224: Unknown result type (might be due to invalid IL or missing references) //IL_1229: Unknown result type (might be due to invalid IL or missing references) //IL_122f: Unknown result type (might be due to invalid IL or missing references) //IL_1234: Unknown result type (might be due to invalid IL or missing references) //IL_123a: Unknown result type (might be due to invalid IL or missing references) //IL_1244: Unknown result type (might be due to invalid IL or missing references) //IL_1249: Unknown result type (might be due to invalid IL or missing references) //IL_124f: Unknown result type (might be due to invalid IL or missing references) //IL_1254: Unknown result type (might be due to invalid IL or missing references) //IL_125a: Unknown result type (might be due to invalid IL or missing references) //IL_1264: Unknown result type (might be due to invalid IL or missing references) //IL_1269: Unknown result type (might be due to invalid IL or missing references) //IL_1275: Unknown result type (might be due to invalid IL or missing references) //IL_3d45: Unknown result type (might be due to invalid IL or missing references) //IL_3d4b: Unknown result type (might be due to invalid IL or missing references) //IL_3d50: Unknown result type (might be due to invalid IL or missing references) //IL_3d56: Unknown result type (might be due to invalid IL or missing references) //IL_3d5b: Unknown result type (might be due to invalid IL or missing references) //IL_3d61: Unknown result type (might be due to invalid IL or missing references) //IL_3d6b: Unknown result type (might be due to invalid IL or missing references) //IL_3d70: Unknown result type (might be due to invalid IL or missing references) //IL_3d76: Unknown result type (might be due to invalid IL or missing references) //IL_3d7b: Unknown result type (might be due to invalid IL or missing references) //IL_3d81: Unknown result type (might be due to invalid IL or missing references) //IL_3d8b: Unknown result type (might be due to invalid IL or missing references) //IL_3d90: Unknown result type (might be due to invalid IL or missing references) //IL_3d9b: Unknown result type (might be due to invalid IL or missing references) //IL_3da1: Unknown result type (might be due to invalid IL or missing references) //IL_3da6: Unknown result type (might be due to invalid IL or missing references) //IL_3dac: Unknown result type (might be due to invalid IL or missing references) //IL_3db1: Unknown result type (might be due to invalid IL or missing references) //IL_3db7: Unknown result type (might be due to invalid IL or missing references) //IL_3dc1: Unknown result type (might be due to invalid IL or missing references) //IL_3dc6: Unknown result type (might be due to invalid IL or missing references) //IL_3dcc: Unknown result type (might be due to invalid IL or missing references) //IL_3dd1: Unknown result type (might be due to invalid IL or missing references) //IL_3dd7: Unknown result type (might be due to invalid IL or missing references) //IL_3de1: Unknown result type (might be due to invalid IL or missing references) //IL_3de6: Unknown result type (might be due to invalid IL or missing references) //IL_3df2: Unknown result type (might be due to invalid IL or missing references) //IL_27d5: Unknown result type (might be due to invalid IL or missing references) //IL_27db: Unknown result type (might be due to invalid IL or missing references) //IL_27e0: Unknown result type (might be due to invalid IL or missing references) //IL_27e6: Unknown result type (might be due to invalid IL or missing references) //IL_27eb: Unknown result type (might be due to invalid IL or missing references) //IL_27f1: Unknown result type (might be due to invalid IL or missing references) //IL_27fb: Unknown result type (might be due to invalid IL or missing references) //IL_2800: Unknown result type (might be due to invalid IL or missing references) //IL_2806: Unknown result type (might be due to invalid IL or missing references) //IL_280b: Unknown result type (might be due to invalid IL or missing references) //IL_2811: Unknown result type (might be due to invalid IL or missing references) //IL_281b: Unknown result type (might be due to invalid IL or missing references) //IL_2820: Unknown result type (might be due to invalid IL or missing references) //IL_282b: Unknown result type (might be due to invalid IL or missing references) //IL_2831: Unknown result type (might be due to invalid IL or missing references) //IL_2836: Unknown result type (might be due to invalid IL or missing references) //IL_283c: Unknown result type (might be due to invalid IL or missing references) //IL_2841: Unknown result type (might be due to invalid IL or missing references) //IL_2847: Unknown result type (might be due to invalid IL or missing references) //IL_2851: Unknown result type (might be due to invalid IL or missing references) //IL_2856: Unknown result type (might be due to invalid IL or missing references) //IL_285c: Unknown result type (might be due to invalid IL or missing references) //IL_2861: Unknown result type (might be due to invalid IL or missing references) //IL_2867: Unknown result type (might be due to invalid IL or missing references) //IL_2871: Unknown result type (might be due to invalid IL or missing references) //IL_2876: Unknown result type (might be due to invalid IL or missing references) //IL_2882: Unknown result type (might be due to invalid IL or missing references) //IL_128f: Unknown result type (might be due to invalid IL or missing references) //IL_1295: Unknown result type (might be due to invalid IL or missing references) //IL_129a: Unknown result type (might be due to invalid IL or missing references) //IL_12a0: Unknown result type (might be due to invalid IL or missing references) //IL_12a5: Unknown result type (might be due to invalid IL or missing references) //IL_12ab: Unknown result type (might be due to invalid IL or missing references) //IL_12b5: Unknown result type (might be due to invalid IL or missing references) //IL_12ba: Unknown result type (might be due to invalid IL or missing references) //IL_12c0: Unknown result type (might be due to invalid IL or missing references) //IL_12c5: Unknown result type (might be due to invalid IL or missing references) //IL_12cb: Unknown result type (might be due to invalid IL or missing references) //IL_12d5: Unknown result type (might be due to invalid IL or missing references) //IL_12da: Unknown result type (might be due to invalid IL or missing references) //IL_12e5: Unknown result type (might be due to invalid IL or missing references) //IL_12eb: Unknown result type (might be due to invalid IL or missing references) //IL_12f0: Unknown result type (might be due to invalid IL or missing references) //IL_12f6: Unknown result type (might be due to invalid IL or missing references) //IL_12fb: Unknown result type (might be due to invalid IL or missing references) //IL_1301: Unknown result type (might be due to invalid IL or missing references) //IL_130b: Unknown result type (might be due to invalid IL or missing references) //IL_1310: Unknown result type (might be due to invalid IL or missing references) //IL_1316: Unknown result type (might be due to invalid IL or missing references) //IL_131b: Unknown result type (might be due to invalid IL or missing references) //IL_1321: Unknown result type (might be due to invalid IL or missing references) //IL_132b: Unknown result type (might be due to invalid IL or missing references) //IL_1330: Unknown result type (might be due to invalid IL or missing references) //IL_133c: Unknown result type (might be due to invalid IL or missing references) //IL_3e0c: Unknown result type (might be due to invalid IL or missing references) //IL_3e12: Unknown result type (might be due to invalid IL or missing references) //IL_3e17: Unknown result type (might be due to invalid IL or missing references) //IL_3e1d: Unknown result type (might be due to invalid IL or missing references) //IL_3e22: Unknown result type (might be due to invalid IL or missing references) //IL_3e28: Unknown result type (might be due to invalid IL or missing references) //IL_3e32: Unknown result type (might be due to invalid IL or missing references) //IL_3e37: Unknown result type (might be due to invalid IL or missing references) //IL_3e3d: Unknown result type (might be due to invalid IL or missing references) //IL_3e42: Unknown result type (might be due to invalid IL or missing references) //IL_3e4d: Unknown result type (might be due to invalid IL or missing references) //IL_3e53: Unknown result type (might be due to invalid IL or missing references) //IL_3e58: Unknown result type (might be due to invalid IL or missing references) //IL_3e5e: Unknown result type (might be due to invalid IL or missing references) //IL_3e63: Unknown result type (might be due to invalid IL or missing references) //IL_3e69: Unknown result type (might be due to invalid IL or missing references) //IL_3e73: Unknown result type (might be due to invalid IL or missing references) //IL_3e78: Unknown result type (might be due to invalid IL or missing references) //IL_3e7e: Unknown result type (might be due to invalid IL or missing references) //IL_3e83: Unknown result type (might be due to invalid IL or missing references) //IL_3e8f: Unknown result type (might be due to invalid IL or missing references) //IL_289c: Unknown result type (might be due to invalid IL or missing references) //IL_28a2: Unknown result type (might be due to invalid IL or missing references) //IL_28a7: Unknown result type (might be due to invalid IL or missing references) //IL_28ad: Unknown result type (might be due to invalid IL or missing references) //IL_28b2: Unknown result type (might be due to invalid IL or missing references) //IL_28b8: Unknown result type (might be due to invalid IL or missing references) //IL_28c2: Unknown result type (might be due to invalid IL or missing references) //IL_28c7: Unknown result type (might be due to invalid IL or missing references) //IL_28cd: Unknown result type (might be due to invalid IL or missing references) //IL_28d2: Unknown result type (might be due to invalid IL or missing references) //IL_28d8: Unknown result type (might be due to invalid IL or missing references) //IL_28e2: Unknown result type (might be due to invalid IL or missing references) //IL_28e7: Unknown result type (might be due to invalid IL or missing references) //IL_28f2: Unknown result type (might be due to invalid IL or missing references) //IL_28f8: Unknown result type (might be due to invalid IL or missing references) //IL_28fd: Unknown result type (might be due to invalid IL or missing references) //IL_2903: Unknown result type (might be due to invalid IL or missing references) //IL_2908: Unknown result type (might be due to invalid IL or missing references) //IL_290e: Unknown result type (might be due to invalid IL or missing references) //IL_2918: Unknown result type (might be due to invalid IL or missing references) //IL_291d: Unknown result type (might be due to invalid IL or missing references) //IL_2923: Unknown result type (might be due to invalid IL or missing references) //IL_2928: Unknown result type (might be due to invalid IL or missing references) //IL_292e: Unknown result type (might be due to invalid IL or missing references) //IL_2938: Unknown result type (might be due to invalid IL or missing references) //IL_293d: Unknown result type (might be due to invalid IL or missing references) //IL_2949: Unknown result type (might be due to invalid IL or missing references) //IL_1356: Unknown result type (might be due to invalid IL or missing references) //IL_135c: Unknown result type (might be due to invalid IL or missing references) //IL_1361: Unknown result type (might be due to invalid IL or missing references) //IL_1367: Unknown result type (might be due to invalid IL or missing references) //IL_136c: Unknown result type (might be due to invalid IL or missing references) //IL_1372: Unknown result type (might be due to invalid IL or missing references) //IL_137c: Unknown result type (might be due to invalid IL or missing references) //IL_1381: Unknown result type (might be due to invalid IL or missing references) //IL_1387: Unknown result type (might be due to invalid IL or missing references) //IL_138c: Unknown result type (might be due to invalid IL or missing references) //IL_1392: Unknown result type (might be due to invalid IL or missing references) //IL_139c: Unknown result type (might be due to invalid IL or missing references) //IL_13a1: Unknown result type (might be due to invalid IL or missing references) //IL_13ac: Unknown result type (might be due to invalid IL or missing references) //IL_13b2: Unknown result type (might be due to invalid IL or missing references) //IL_13b7: Unknown result type (might be due to invalid IL or missing references) //IL_13bd: Unknown result type (might be due to invalid IL or missing references) //IL_13c2: Unknown result type (might be due to invalid IL or missing references) //IL_13c8: Unknown result type (might be due to invalid IL or missing references) //IL_13d2: Unknown result type (might be due to invalid IL or missing references) //IL_13d7: Unknown result type (might be due to invalid IL or missing references) //IL_13dd: Unknown result type (might be due to invalid IL or missing references) //IL_13e2: Unknown result type (might be due to invalid IL or missing references) //IL_13e8: Unknown result type (might be due to invalid IL or missing references) //IL_13f2: Unknown result type (might be due to invalid IL or missing references) //IL_13f7: Unknown result type (might be due to invalid IL or missing references) //IL_1403: Unknown result type (might be due to invalid IL or missing references) //IL_3ea9: Unknown result type (might be due to invalid IL or missing references) //IL_3eaf: Unknown result type (might be due to invalid IL or missing references) //IL_3eb4: Unknown result type (might be due to invalid IL or missing references) //IL_3eba: Unknown result type (might be due to invalid IL or missing references) //IL_3ebf: Unknown result type (might be due to invalid IL or missing references) //IL_3ec5: Unknown result type (might be due to invalid IL or missing references) //IL_3ecf: Unknown result type (might be due to invalid IL or missing references) //IL_3ed4: Unknown result type (might be due to invalid IL or missing references) //IL_3eda: Unknown result type (might be due to invalid IL or missing references) //IL_3edf: Unknown result type (might be due to invalid IL or missing references) //IL_3ee5: Unknown result type (might be due to invalid IL or missing references) //IL_3eef: Unknown result type (might be due to invalid IL or missing references) //IL_3ef4: Unknown result type (might be due to invalid IL or missing references) //IL_3eff: Unknown result type (might be due to invalid IL or missing references) //IL_3f05: Unknown result type (might be due to invalid IL or missing references) //IL_3f0a: Unknown result type (might be due to invalid IL or missing references) //IL_3f10: Unknown result type (might be due to invalid IL or missing references) //IL_3f15: Unknown result type (might be due to invalid IL or missing references) //IL_3f1b: Unknown result type (might be due to invalid IL or missing references) //IL_3f25: Unknown result type (might be due to invalid IL or missing references) //IL_3f2a: Unknown result type (might be due to invalid IL or missing references) //IL_3f30: Unknown result type (might be due to invalid IL or missing references) //IL_3f35: Unknown result type (might be due to invalid IL or missing references) //IL_3f3b: Unknown result type (might be due to invalid IL or missing references) //IL_3f45: Unknown result type (might be due to invalid IL or missing references) //IL_3f4a: Unknown result type (might be due to invalid IL or missing references) //IL_3f56: Unknown result type (might be due to invalid IL or missing references) //IL_2963: Unknown result type (might be due to invalid IL or missing references) //IL_2969: Unknown result type (might be due to invalid IL or missing references) //IL_296e: Unknown result type (might be due to invalid IL or missing references) //IL_2974: Unknown result type (might be due to invalid IL or missing references) //IL_2979: Unknown result type (might be due to invalid IL or missing references) //IL_297f: Unknown result type (might be due to invalid IL or missing references) //IL_2989: Unknown result type (might be due to invalid IL or missing references) //IL_298e: Unknown result type (might be due to invalid IL or missing references) //IL_2994: Unknown result type (might be due to invalid IL or missing references) //IL_2999: Unknown result type (might be due to invalid IL or missing references) //IL_299f: Unknown result type (might be due to invalid IL or missing references) //IL_29a9: Unknown result type (might be due to invalid IL or missing references) //IL_29ae: Unknown result type (might be due to invalid IL or missing references) //IL_29b9: Unknown result type (might be due to invalid IL or missing references) //IL_29bf: Unknown result type (might be due to invalid IL or missing references) //IL_29c4: Unknown result type (might be due to invalid IL or missing references) //IL_29ca: Unknown result type (might be due to invalid IL or missing references) //IL_29cf: Unknown result type (might be due to invalid IL or missing references) //IL_29d5: Unknown result type (might be due to invalid IL or missing references) //IL_29df: Unknown result type (might be due to invalid IL or missing references) //IL_29e4: Unknown result type (might be due to invalid IL or missing references) //IL_29ea: Unknown result type (might be due to invalid IL or missing references) //IL_29ef: Unknown result type (might be due to invalid IL or missing references) //IL_29f5: Unknown result type (might be due to invalid IL or missing references) //IL_29ff: Unknown result type (might be due to invalid IL or missing references) //IL_2a04: Unknown result type (might be due to invalid IL or missing references) //IL_2a10: Unknown result type (might be due to invalid IL or missing references) //IL_141d: Unknown result type (might be due to invalid IL or missing references) //IL_1423: Unknown result type (might be due to invalid IL or missing references) //IL_1428: Unknown result type (might be due to invalid IL or missing references) //IL_142e: Unknown result type (might be due to invalid IL or missing references) //IL_1433: Unknown result type (might be due to invalid IL or missing references) //IL_1439: Unknown result type (might be due to invalid IL or missing references) //IL_1443: Unknown result type (might be due to invalid IL or missing references) //IL_1448: Unknown result type (might be due to invalid IL or missing references) //IL_144e: Unknown result type (might be due to invalid IL or missing references) //IL_1453: Unknown result type (might be due to invalid IL or missing references) //IL_1459: Unknown result type (might be due to invalid IL or missing references) //IL_1463: Unknown result type (might be due to invalid IL or missing references) //IL_1468: Unknown result type (might be due to invalid IL or missing references) //IL_1473: Unknown result type (might be due to invalid IL or missing references) //IL_1479: Unknown result type (might be due to invalid IL or missing references) //IL_147e: Unknown result type (might be due to invalid IL or missing references) //IL_1484: Unknown result type (might be due to invalid IL or missing references) //IL_1489: Unknown result type (might be due to invalid IL or missing references) //IL_148f: Unknown result type (might be due to invalid IL or missing references) //IL_1499: Unknown result type (might be due to invalid IL or missing references) //IL_149e: Unknown result type (might be due to invalid IL or missing references) //IL_14a4: Unknown result type (might be due to invalid IL or missing references) //IL_14a9: Unknown result type (might be due to invalid IL or missing references) //IL_14af: Unknown result type (might be due to invalid IL or missing references) //IL_14b9: Unknown result type (might be due to invalid IL or missing references) //IL_14be: Unknown result type (might be due to invalid IL or missing references) //IL_14ca: Unknown result type (might be due to invalid IL or missing references) //IL_3f70: Unknown result type (might be due to invalid IL or missing references) //IL_3f76: Unknown result type (might be due to invalid IL or missing references) //IL_3f7b: Unknown result type (might be due to invalid IL or missing references) //IL_3f81: Unknown result type (might be due to invalid IL or missing references) //IL_3f86: Unknown result type (might be due to invalid IL or missing references) //IL_3f8c: Unknown result type (might be due to invalid IL or missing references) //IL_3f96: Unknown result type (might be due to invalid IL or missing references) //IL_3f9b: Unknown result type (might be due to invalid IL or missing references) //IL_3fa1: Unknown result type (might be due to invalid IL or missing references) //IL_3fa6: Unknown result type (might be due to invalid IL or missing references) //IL_3fac: Unknown result type (might be due to invalid IL or missing references) //IL_3fb6: Unknown result type (might be due to invalid IL or missing references) //IL_3fbb: Unknown result type (might be due to invalid IL or missing references) //IL_3fc6: Unknown result type (might be due to invalid IL or missing references) //IL_3fcc: Unknown result type (might be due to invalid IL or missing references) //IL_3fd1: Unknown result type (might be due to invalid IL or missing references) //IL_3fd7: Unknown result type (might be due to invalid IL or missing references) //IL_3fdc: Unknown result type (might be due to invalid IL or missing references) //IL_3fe2: Unknown result type (might be due to invalid IL or missing references) //IL_3fec: Unknown result type (might be due to invalid IL or missing references) //IL_3ff1: Unknown result type (might be due to invalid IL or missing references) //IL_3ff7: Unknown result type (might be due to invalid IL or missing references) //IL_3ffc: Unknown result type (might be due to invalid IL or missing references) //IL_4002: Unknown result type (might be due to invalid IL or missing references) //IL_400c: Unknown result type (might be due to invalid IL or missing references) //IL_4011: Unknown result type (might be due to invalid IL or missing references) //IL_401d: Unknown result type (might be due to invalid IL or missing references) //IL_2a2a: Unknown result type (might be due to invalid IL or missing references) //IL_2a30: Unknown result type (might be due to invalid IL or missing references) //IL_2a35: Unknown result type (might be due to invalid IL or missing references) //IL_2a3b: Unknown result type (might be due to invalid IL or missing references) //IL_2a40: Unknown result type (might be due to invalid IL or missing references) //IL_2a46: Unknown result type (might be due to invalid IL or missing references) //IL_2a50: Unknown result type (might be due to invalid IL or missing references) //IL_2a55: Unknown result type (might be due to invalid IL or missing references) //IL_2a5b: Unknown result type (might be due to invalid IL or missing references) //IL_2a60: Unknown result type (might be due to invalid IL or missing references) //IL_2a66: Unknown result type (might be due to invalid IL or missing references) //IL_2a70: Unknown result type (might be due to invalid IL or missing references) //IL_2a75: Unknown result type (might be due to invalid IL or missing references) //IL_2a80: Unknown result type (might be due to invalid IL or missing references) //IL_2a86: Unknown result type (might be due to invalid IL or missing references) //IL_2a8b: Unknown result type (might be due to invalid IL or missing references) //IL_2a91: Unknown result type (might be due to invalid IL or missing references) //IL_2a96: Unknown result type (might be due to invalid IL or missing references) //IL_2a9c: Unknown result type (might be due to invalid IL or missing references) //IL_2aa6: Unknown result type (might be due to invalid IL or missing references) //IL_2aab: Unknown result type (might be due to invalid IL or missing references) //IL_2ab1: Unknown result type (might be due to invalid IL or missing references) //IL_2ab6: Unknown result type (might be due to invalid IL or missing references) //IL_2abc: Unknown result type (might be due to invalid IL or missing references) //IL_2ac6: Unknown result type (might be due to invalid IL or missing references) //IL_2acb: Unknown result type (might be due to invalid IL or missing references) //IL_2ad7: Unknown result type (might be due to invalid IL or missing references) //IL_14e4: Unknown result type (might be due to invalid IL or missing references) //IL_14ea: Unknown result type (might be due to invalid IL or missing references) //IL_14ef: Unknown result type (might be due to invalid IL or missing references) //IL_14f5: Unknown result type (might be due to invalid IL or missing references) //IL_14fa: Unknown result type (might be due to invalid IL or missing references) //IL_1500: Unknown result type (might be due to invalid IL or missing references) //IL_150a: Unknown result type (might be due to invalid IL or missing references) //IL_150f: Unknown result type (might be due to invalid IL or missing references) //IL_1515: Unknown result type (might be due to invalid IL or missing references) //IL_151a: Unknown result type (might be due to invalid IL or missing references) //IL_1520: Unknown result type (might be due to invalid IL or missing references) //IL_152a: Unknown result type (might be due to invalid IL or missing references) //IL_152f: Unknown result type (might be due to invalid IL or missing references) //IL_153a: Unknown result type (might be due to invalid IL or missing references) //IL_1540: Unknown result type (might be due to invalid IL or missing references) //IL_1545: Unknown result type (might be due to invalid IL or missing references) //IL_154b: Unknown result type (might be due to invalid IL or missing references) //IL_1550: Unknown result type (might be due to invalid IL or missing references) //IL_1556: Unknown result type (might be due to invalid IL or missing references) //IL_1560: Unknown result type (might be due to invalid IL or missing references) //IL_1565: Unknown result type (might be due to invalid IL or missing references) //IL_156b: Unknown result type (might be due to invalid IL or missing references) //IL_1570: Unknown result type (might be due to invalid IL or missing references) //IL_1576: Unknown result type (might be due to invalid IL or missing references) //IL_1580: Unknown result type (might be due to invalid IL or missing references) //IL_1585: Unknown result type (might be due to invalid IL or missing references) //IL_1591: Unknown result type (might be due to invalid IL or missing references) //IL_4037: Unknown result type (might be due to invalid IL or missing references) //IL_403d: Unknown result type (might be due to invalid IL or missing references) //IL_4042: Unknown result type (might be due to invalid IL or missing references) //IL_4048: Unknown result type (might be due to invalid IL or missing references) //IL_404d: Unknown result type (might be due to invalid IL or missing references) //IL_4053: Unknown result type (might be due to invalid IL or missing references) //IL_405d: Unknown result type (might be due to invalid IL or missing references) //IL_4062: Unknown result type (might be due to invalid IL or missing references) //IL_4068: Unknown result type (might be due to invalid IL or missing references) //IL_406d: Unknown result type (might be due to invalid IL or missing references) //IL_4073: Unknown result type (might be due to invalid IL or missing references) //IL_407d: Unknown result type (might be due to invalid IL or missing references) //IL_4082: Unknown result type (might be due to invalid IL or missing references) //IL_408d: Unknown result type (might be due to invalid IL or missing references) //IL_4093: Unknown result type (might be due to invalid IL or missing references) //IL_4098: Unknown result type (might be due to invalid IL or missing references) //IL_409e: Unknown result type (might be due to invalid IL or missing references) //IL_40a3: Unknown result type (might be due to invalid IL or missing references) //IL_40a9: Unknown result type (might be due to invalid IL or missing references) //IL_40b3: Unknown result type (might be due to invalid IL or missing references) //IL_40b8: Unknown result type (might be due to invalid IL or missing references) //IL_40be: Unknown result type (might be due to invalid IL or missing references) //IL_40c3: Unknown result type (might be due to invalid IL or missing references) //IL_40c9: Unknown result type (might be due to invalid IL or missing references) //IL_40d3: Unknown result type (might be due to invalid IL or missing references) //IL_40d8: Unknown result type (might be due to invalid IL or missing references) //IL_40e4: Unknown result type (might be due to invalid IL or missing references) //IL_2af1: Unknown result type (might be due to invalid IL or missing references) //IL_2af7: Unknown result type (might be due to invalid IL or missing references) //IL_2afc: Unknown result type (might be due to invalid IL or missing references) //IL_2b02: Unknown result type (might be due to invalid IL or missing references) //IL_2b07: Unknown result type (might be due to invalid IL or missing references) //IL_2b0d: Unknown result type (might be due to invalid IL or missing references) //IL_2b17: Unknown result type (might be due to invalid IL or missing references) //IL_2b1c: Unknown result type (might be due to invalid IL or missing references) //IL_2b22: Unknown result type (might be due to invalid IL or missing references) //IL_2b27: Unknown result type (might be due to invalid IL or missing references) //IL_2b2d: Unknown result type (might be due to invalid IL or missing references) //IL_2b37: Unknown result type (might be due to invalid IL or missing references) //IL_2b3c: Unknown result type (might be due to invalid IL or missing references) //IL_2b47: Unknown result type (might be due to invalid IL or missing references) //IL_2b4d: Unknown result type (might be due to invalid IL or missing references) //IL_2b52: Unknown result type (might be due to invalid IL or missing references) //IL_2b58: Unknown result type (might be due to invalid IL or missing references) //IL_2b5d: Unknown result type (might be due to invalid IL or missing references) //IL_2b63: Unknown result type (might be due to invalid IL or missing references) //IL_2b6d: Unknown result type (might be due to invalid IL or missing references) //IL_2b72: Unknown result type (might be due to invalid IL or missing references) //IL_2b78: Unknown result type (might be due to invalid IL or missing references) //IL_2b7d: Unknown result type (might be due to invalid IL or missing references) //IL_2b83: Unknown result type (might be due to invalid IL or missing references) //IL_2b8d: Unknown result type (might be due to invalid IL or missing references) //IL_2b92: Unknown result type (might be due to invalid IL or missing references) //IL_2b9e: Unknown result type (might be due to invalid IL or missing references) //IL_15ab: Unknown result type (might be due to invalid IL or missing references) //IL_15b1: Unknown result type (might be due to invalid IL or missing references) //IL_15b6: Unknown result type (might be due to invalid IL or missing references) //IL_15bc: Unknown result type (might be due to invalid IL or missing references) //IL_15c1: Unknown result type (might be due to invalid IL or missing references) //IL_15c7: Unknown result type (might be due to invalid IL or missing references) //IL_15d1: Unknown result type (might be due to invalid IL or missing references) //IL_15d6: Unknown result type (might be due to invalid IL or missing references) //IL_15dc: Unknown result type (might be due to invalid IL or missing references) //IL_15e1: Unknown result type (might be due to invalid IL or missing references) //IL_15e7: Unknown result type (might be due to invalid IL or missing references) //IL_15f1: Unknown result type (might be due to invalid IL or missing references) //IL_15f6: Unknown result type (might be due to invalid IL or missing references) //IL_1601: Unknown result type (might be due to invalid IL or missing references) //IL_1607: Unknown result type (might be due to invalid IL or missing references) //IL_160c: Unknown result type (might be due to invalid IL or missing references) //IL_1612: Unknown result type (might be due to invalid IL or missing references) //IL_1617: Unknown result type (might be due to invalid IL or missing references) //IL_161d: Unknown result type (might be due to invalid IL or missing references) //IL_1627: Unknown result type (might be due to invalid IL or missing references) //IL_162c: Unknown result type (might be due to invalid IL or missing references) //IL_1632: Unknown result type (might be due to invalid IL or missing references) //IL_1637: Unknown result type (might be due to invalid IL or missing references) //IL_163d: Unknown result type (might be due to invalid IL or missing references) //IL_1647: Unknown result type (might be due to invalid IL or missing references) //IL_164c: Unknown result type (might be due to invalid IL or missing references) //IL_1658: Unknown result type (might be due to invalid IL or missing references) //IL_40fe: Unknown result type (might be due to invalid IL or missing references) //IL_4104: Unknown result type (might be due to invalid IL or missing references) //IL_4109: Unknown result type (might be due to invalid IL or missing references) //IL_410f: Unknown result type (might be due to invalid IL or missing references) //IL_4114: Unknown result type (might be due to invalid IL or missing references) //IL_411a: Unknown result type (might be due to invalid IL or missing references) //IL_4124: Unknown result type (might be due to invalid IL or missing references) //IL_4129: Unknown result type (might be due to invalid IL or missing references) //IL_412f: Unknown result type (might be due to invalid IL or missing references) //IL_4134: Unknown result type (might be due to invalid IL or missing references) //IL_413a: Unknown result type (might be due to invalid IL or missing references) //IL_4144: Unknown result type (might be due to invalid IL or missing references) //IL_4149: Unknown result type (might be due to invalid IL or missing references) //IL_4154: Unknown result type (might be due to invalid IL or missing references) //IL_415a: Unknown result type (might be due to invalid IL or missing references) //IL_415f: Unknown result type (might be due to invalid IL or missing references) //IL_4165: Unknown result type (might be due to invalid IL or missing references) //IL_416a: Unknown result type (might be due to invalid IL or missing references) //IL_4170: Unknown result type (might be due to invalid IL or missing references) //IL_417a: Unknown result type (might be due to invalid IL or missing references) //IL_417f: Unknown result type (might be due to invalid IL or missing references) //IL_4185: Unknown result type (might be due to invalid IL or missing references) //IL_418a: Unknown result type (might be due to invalid IL or missing references) //IL_4190: Unknown result type (might be due to invalid IL or missing references) //IL_419a: Unknown result type (might be due to invalid IL or missing references) //IL_419f: Unknown result type (might be due to invalid IL or missing references) //IL_41ab: Unknown result type (might be due to invalid IL or missing references) //IL_2bb8: Unknown result type (might be due to invalid IL or missing references) //IL_2bbe: Unknown result type (might be due to invalid IL or missing references) //IL_2bc3: Unknown result type (might be due to invalid IL or missing references) //IL_2bc9: Unknown result type (might be due to invalid IL or missing references) //IL_2bce: Unknown result type (might be due to invalid IL or missing references) //IL_2bd4: Unknown result type (might be due to invalid IL or missing references) //IL_2bde: Unknown result type (might be due to invalid IL or missing references) //IL_2be3: Unknown result type (might be due to invalid IL or missing references) //IL_2be9: Unknown result type (might be due to invalid IL or missing references) //IL_2bee: Unknown result type (might be due to invalid IL or missing references) //IL_2bf4: Unknown result type (might be due to invalid IL or missing references) //IL_2bfe: Unknown result type (might be due to invalid IL or missing references) //IL_2c03: Unknown result type (might be due to invalid IL or missing references) //IL_2c0e: Unknown result type (might be due to invalid IL or missing references) //IL_2c14: Unknown result type (might be due to invalid IL or missing references) //IL_2c19: Unknown result type (might be due to invalid IL or missing references) //IL_2c1f: Unknown result type (might be due to invalid IL or missing references) //IL_2c24: Unknown result type (might be due to invalid IL or missing references) //IL_2c2a: Unknown result type (might be due to invalid IL or missing references) //IL_2c34: Unknown result type (might be due to invalid IL or missing references) //IL_2c39: Unknown result type (might be due to invalid IL or missing references) //IL_2c3f: Unknown result type (might be due to invalid IL or missing references) //IL_2c44: Unknown result type (might be due to invalid IL or missing references) //IL_2c4a: Unknown result type (might be due to invalid IL or missing references) //IL_2c54: Unknown result type (might be due to invalid IL or missing references) //IL_2c59: Unknown result type (might be due to invalid IL or missing references) //IL_2c65: Unknown result type (might be due to invalid IL or missing references) //IL_41c5: Unknown result type (might be due to invalid IL or missing references) //IL_41cb: Unknown result type (might be due to invalid IL or missing references) //IL_41d0: Unknown result type (might be due to invalid IL or missing references) //IL_41d6: Unknown result type (might be due to invalid IL or missing references) //IL_41db: Unknown result type (might be due to invalid IL or missing references) //IL_41e1: Unknown result type (might be due to invalid IL or missing references) //IL_41eb: Unknown result type (might be due to invalid IL or missing references) //IL_41f0: Unknown result type (might be due to invalid IL or missing references) //IL_41f6: Unknown result type (might be due to invalid IL or missing references) //IL_41fb: Unknown result type (might be due to invalid IL or missing references) //IL_4201: Unknown result type (might be due to invalid IL or missing references) //IL_420b: Unknown result type (might be due to invalid IL or missing references) //IL_4210: Unknown result type (might be due to invalid IL or missing references) //IL_421b: Unknown result type (might be due to invalid IL or missing references) //IL_4221: Unknown result type (might be due to invalid IL or missing references) //IL_4226: Unknown result type (might be due to invalid IL or missing references) //IL_422c: Unknown result type (might be due to invalid IL or missing references) //IL_4231: Unknown result type (might be due to invalid IL or missing references) //IL_4237: Unknown result type (might be due to invalid IL or missing references) //IL_4241: Unknown result type (might be due to invalid IL or missing references) //IL_4246: Unknown result type (might be due to invalid IL or missing references) //IL_424c: Unknown result type (might be due to invalid IL or missing references) //IL_4251: Unknown result type (might be due to invalid IL or missing references) //IL_4257: Unknown result type (might be due to invalid IL or missing references) //IL_4261: Unknown result type (might be due to invalid IL or missing references) //IL_4266: Unknown result type (might be due to invalid IL or missing references) //IL_4272: Unknown result type (might be due to invalid IL or missing references) //IL_2c7f: Unknown result type (might be due to invalid IL or missing references) //IL_2c85: Unknown result type (might be due to invalid IL or missing references) //IL_2c8a: Unknown result type (might be due to invalid IL or missing references) //IL_2c90: Unknown result type (might be due to invalid IL or missing references) //IL_2c95: Unknown result type (might be due to invalid IL or missing references) //IL_2c9b: Unknown result type (might be due to invalid IL or missing references) //IL_2ca5: Unknown result type (might be due to invalid IL or missing references) //IL_2caa: Unknown result type (might be due to invalid IL or missing references) //IL_2cb0: Unknown result type (might be due to invalid IL or missing references) //IL_2cb5: Unknown result type (might be due to invalid IL or missing references) //IL_2cbb: Unknown result type (might be due to invalid IL or missing references) //IL_2cc5: Unknown result type (might be due to invalid IL or missing references) //IL_2cca: Unknown result type (might be due to invalid IL or missing references) //IL_2cd5: Unknown result type (might be due to invalid IL or missing references) //IL_2cdb: Unknown result type (might be due to invalid IL or missing references) //IL_2ce0: Unknown result type (might be due to invalid IL or missing references) //IL_2ce6: Unknown result type (might be due to invalid IL or missing references) //IL_2ceb: Unknown result type (might be due to invalid IL or missing references) //IL_2cf1: Unknown result type (might be due to invalid IL or missing references) //IL_2cfb: Unknown result type (might be due to invalid IL or missing references) //IL_2d00: Unknown result type (might be due to invalid IL or missing references) //IL_2d06: Unknown result type (might be due to invalid IL or missing references) //IL_2d0b: Unknown result type (might be due to invalid IL or missing references) //IL_2d11: Unknown result type (might be due to invalid IL or missing references) //IL_2d1b: Unknown result type (might be due to invalid IL or missing references) //IL_2d20: Unknown result type (might be due to invalid IL or missing references) //IL_2d2c: Unknown result type (might be due to invalid IL or missing references) //IL_428c: Unknown result type (might be due to invalid IL or missing references) //IL_4292: Unknown result type (might be due to invalid IL or missing references) //IL_4297: Unknown result type (might be due to invalid IL or missing references) //IL_429d: Unknown result type (might be due to invalid IL or missing references) //IL_42a2: Unknown result type (might be due to invalid IL or missing references) //IL_42a8: Unknown result type (might be due to invalid IL or missing references) //IL_42b2: Unknown result type (might be due to invalid IL or missing references) //IL_42b7: Unknown result type (might be due to invalid IL or missing references) //IL_42bd: Unknown result type (might be due to invalid IL or missing references) //IL_42c2: Unknown result type (might be due to invalid IL or missing references) //IL_42c8: Unknown result type (might be due to invalid IL or missing references) //IL_42d2: Unknown result type (might be due to invalid IL or missing references) //IL_42d7: Unknown result type (might be due to invalid IL or missing references) //IL_42e2: Unknown result type (might be due to invalid IL or missing references) //IL_42e8: Unknown result type (might be due to invalid IL or missing references) //IL_42ed: Unknown result type (might be due to invalid IL or missing references) //IL_42f3: Unknown result type (might be due to invalid IL or missing references) //IL_42f8: Unknown result type (might be due to invalid IL or missing references) //IL_42fe: Unknown result type (might be due to invalid IL or missing references) //IL_4308: Unknown result type (might be due to invalid IL or missing references) //IL_430d: Unknown result type (might be due to invalid IL or missing references) //IL_4313: Unknown result type (might be due to invalid IL or missing references) //IL_4318: Unknown result type (might be due to invalid IL or missing references) //IL_431e: Unknown result type (might be due to invalid IL or missing references) //IL_4328: Unknown result type (might be due to invalid IL or missing references) //IL_432d: Unknown result type (might be due to invalid IL or missing references) //IL_4339: Unknown result type (might be due to invalid IL or missing references) //IL_4353: Unknown result type (might be due to invalid IL or missing references) //IL_4359: Unknown result type (might be due to invalid IL or missing references) //IL_435e: Unknown result type (might be due to invalid IL or missing references) //IL_4364: Unknown result type (might be due to invalid IL or missing references) //IL_4369: Unknown result type (might be due to invalid IL or missing references) //IL_436f: Unknown result type (might be due to invalid IL or missing references) //IL_4379: Unknown result type (might be due to invalid IL or missing references) //IL_437e: Unknown result type (might be due to invalid IL or missing references) //IL_4384: Unknown result type (might be due to invalid IL or missing references) //IL_4389: Unknown result type (might be due to invalid IL or missing references) //IL_438f: Unknown result type (might be due to invalid IL or missing references) //IL_4399: Unknown result type (might be due to invalid IL or missing references) //IL_439e: Unknown result type (might be due to invalid IL or missing references) //IL_43a9: Unknown result type (might be due to invalid IL or missing references) //IL_43af: Unknown result type (might be due to invalid IL or missing references) //IL_43b4: Unknown result type (might be due to invalid IL or missing references) //IL_43ba: Unknown result type (might be due to invalid IL or missing references) //IL_43bf: Unknown result type (might be due to invalid IL or missing references) //IL_43c5: Unknown result type (might be due to invalid IL or missing references) //IL_43cf: Unknown result type (might be due to invalid IL or missing references) //IL_43d4: Unknown result type (might be due to invalid IL or missing references) //IL_43da: Unknown result type (might be due to invalid IL or missing references) //IL_43df: Unknown result type (might be due to invalid IL or missing references) //IL_43e5: Unknown result type (might be due to invalid IL or missing references) //IL_43ef: Unknown result type (might be due to invalid IL or missing references) //IL_43f4: Unknown result type (might be due to invalid IL or missing references) //IL_4400: Unknown result type (might be due to invalid IL or missing references) if (switching || !ledgeSwitchingDetectors.allowLedgeSwitching || !grabbedOn) { return; } if (!Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + minDistFromGroundHeight2 - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 - rightWidth * 2.128f - firstSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 - rightWidth * 2.128f - firstSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 - rightWidth * 2.128f - firstSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 - rightWidth * 2.128f - firstSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 - ledgeSwitchFirstWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 - ledgeSwitchFirstWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 - ledgeSwitchFirstWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 - ledgeSwitchFirstWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 0.375f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 0.75f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 1.125f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !l1SecondBackSurfaceDetectorsHit && !l1SecondBackHit && l1FirstBackSurfaceDetectorsHit && l1FirstBackHit) { l1FirstBackTimer += 0.01f; if (l1FirstBackTimer > 0.1f || rotTimer > 0f) { l1FirstBackClear = true; } else { l1FirstBackClear = false; } } else { l1FirstBackTimer = 0f; l1FirstBackClear = false; } if (!Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + minDistFromGroundHeight2 - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 - rightWidth * 2.128f - secondSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 - rightWidth * 2.128f - secondSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 - rightWidth * 2.128f - secondSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 - rightWidth * 2.128f - secondSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 - ledgeSwitchSecondWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 - ledgeSwitchSecondWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 - ledgeSwitchSecondWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 - ledgeSwitchSecondWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 0.375f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 0.75f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 1.125f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !l2SecondBackSurfaceDetectorsHit && !l2SecondBackHit && l2FirstBackSurfaceDetectorsHit && l2FirstBackHit) { l2FirstBackTimer += 0.01f; if (l2FirstBackTimer > 0.1f || rotTimer > 0f) { l2FirstBackClear = true; } else { l2FirstBackClear = false; } } else { l2FirstBackTimer = 0f; l2FirstBackClear = false; } if (!Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + minDistFromGroundHeight2 - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 - rightWidth * 2.128f - thirdSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 - rightWidth * 2.128f - thirdSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 - rightWidth * 2.128f - thirdSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 - rightWidth * 2.128f - thirdSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 - ledgeSwitchThirdWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 - ledgeSwitchThirdWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 - ledgeSwitchThirdWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 - ledgeSwitchThirdWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 0.375f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 0.75f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 1.125f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !l3SecondBackSurfaceDetectorsHit && !l3SecondBackHit && l3FirstBackSurfaceDetectorsHit && l3FirstBackHit) { l3FirstBackTimer += 0.01f; if (l3FirstBackTimer > 0.1f || rotTimer > 0f) { l3FirstBackClear = true; } else { l3FirstBackClear = false; } } else { l3FirstBackTimer = 0f; l3FirstBackClear = false; } } private void LedgeSwitchingClearSecondBackLeft() { //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_0054: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0069: Unknown result type (might be due to invalid IL or missing references) //IL_006e: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_0084: Unknown result type (might be due to invalid IL or missing references) //IL_008f: Unknown result type (might be due to invalid IL or missing references) //IL_0095: Unknown result type (might be due to invalid IL or missing references) //IL_009a: Unknown result type (might be due to invalid IL or missing references) //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_00aa: Unknown result type (might be due to invalid IL or missing references) //IL_00af: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) //IL_00ba: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00ca: Unknown result type (might be due to invalid IL or missing references) //IL_00cf: Unknown result type (might be due to invalid IL or missing references) //IL_00d5: Unknown result type (might be due to invalid IL or missing references) //IL_00df: Unknown result type (might be due to invalid IL or missing references) //IL_00e4: Unknown result type (might be due to invalid IL or missing references) //IL_00ea: Unknown result type (might be due to invalid IL or missing references) //IL_00ef: Unknown result type (might be due to invalid IL or missing references) //IL_00f5: Unknown result type (might be due to invalid IL or missing references) //IL_00fa: Unknown result type (might be due to invalid IL or missing references) //IL_0106: Unknown result type (might be due to invalid IL or missing references) //IL_0120: Unknown result type (might be due to invalid IL or missing references) //IL_0126: Unknown result type (might be due to invalid IL or missing references) //IL_012b: Unknown result type (might be due to invalid IL or missing references) //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_0136: Unknown result type (might be due to invalid IL or missing references) //IL_013c: Unknown result type (might be due to invalid IL or missing references) //IL_0146: Unknown result type (might be due to invalid IL or missing references) //IL_014b: Unknown result type (might be due to invalid IL or missing references) //IL_0151: Unknown result type (might be due to invalid IL or missing references) //IL_0156: Unknown result type (might be due to invalid IL or missing references) //IL_015c: Unknown result type (might be due to invalid IL or missing references) //IL_0166: Unknown result type (might be due to invalid IL or missing references) //IL_016b: Unknown result type (might be due to invalid IL or missing references) //IL_0171: Unknown result type (might be due to invalid IL or missing references) //IL_017b: Unknown result type (might be due to invalid IL or missing references) //IL_0180: Unknown result type (might be due to invalid IL or missing references) //IL_0186: Unknown result type (might be due to invalid IL or missing references) //IL_018b: Unknown result type (might be due to invalid IL or missing references) //IL_0191: Unknown result type (might be due to invalid IL or missing references) //IL_0196: Unknown result type (might be due to invalid IL or missing references) //IL_01a1: Unknown result type (might be due to invalid IL or missing references) //IL_01a7: Unknown result type (might be due to invalid IL or missing references) //IL_01ac: Unknown result type (might be due to invalid IL or missing references) //IL_01b2: Unknown result type (might be due to invalid IL or missing references) //IL_01bc: Unknown result type (might be due to invalid IL or missing references) //IL_01c1: Unknown result type (might be due to invalid IL or missing references) //IL_01c7: Unknown result type (might be due to invalid IL or missing references) //IL_01d1: Unknown result type (might be due to invalid IL or missing references) //IL_01d6: Unknown result type (might be due to invalid IL or missing references) //IL_01dc: Unknown result type (might be due to invalid IL or missing references) //IL_01e1: Unknown result type (might be due to invalid IL or missing references) //IL_01e7: Unknown result type (might be due to invalid IL or missing references) //IL_01ec: Unknown result type (might be due to invalid IL or missing references) //IL_01f2: Unknown result type (might be due to invalid IL or missing references) //IL_01fc: Unknown result type (might be due to invalid IL or missing references) //IL_0201: Unknown result type (might be due to invalid IL or missing references) //IL_0207: Unknown result type (might be due to invalid IL or missing references) //IL_0211: Unknown result type (might be due to invalid IL or missing references) //IL_0216: Unknown result type (might be due to invalid IL or missing references) //IL_021c: Unknown result type (might be due to invalid IL or missing references) //IL_0221: Unknown result type (might be due to invalid IL or missing references) //IL_0227: Unknown result type (might be due to invalid IL or missing references) //IL_022c: Unknown result type (might be due to invalid IL or missing references) //IL_0238: Unknown result type (might be due to invalid IL or missing references) //IL_17aa: Unknown result type (might be due to invalid IL or missing references) //IL_17b0: Unknown result type (might be due to invalid IL or missing references) //IL_17b5: Unknown result type (might be due to invalid IL or missing references) //IL_17bb: Unknown result type (might be due to invalid IL or missing references) //IL_17c0: Unknown result type (might be due to invalid IL or missing references) //IL_17c6: Unknown result type (might be due to invalid IL or missing references) //IL_17d0: Unknown result type (might be due to invalid IL or missing references) //IL_17d5: Unknown result type (might be due to invalid IL or missing references) //IL_17db: Unknown result type (might be due to invalid IL or missing references) //IL_17e5: Unknown result type (might be due to invalid IL or missing references) //IL_17ea: Unknown result type (might be due to invalid IL or missing references) //IL_17f0: Unknown result type (might be due to invalid IL or missing references) //IL_17f5: Unknown result type (might be due to invalid IL or missing references) //IL_17fb: Unknown result type (might be due to invalid IL or missing references) //IL_1800: Unknown result type (might be due to invalid IL or missing references) //IL_180b: Unknown result type (might be due to invalid IL or missing references) //IL_1811: Unknown result type (might be due to invalid IL or missing references) //IL_1816: Unknown result type (might be due to invalid IL or missing references) //IL_181c: Unknown result type (might be due to invalid IL or missing references) //IL_1826: Unknown result type (might be due to invalid IL or missing references) //IL_182b: Unknown result type (might be due to invalid IL or missing references) //IL_1831: Unknown result type (might be due to invalid IL or missing references) //IL_1836: Unknown result type (might be due to invalid IL or missing references) //IL_183c: Unknown result type (might be due to invalid IL or missing references) //IL_1846: Unknown result type (might be due to invalid IL or missing references) //IL_184b: Unknown result type (might be due to invalid IL or missing references) //IL_1851: Unknown result type (might be due to invalid IL or missing references) //IL_185b: Unknown result type (might be due to invalid IL or missing references) //IL_1860: Unknown result type (might be due to invalid IL or missing references) //IL_1866: Unknown result type (might be due to invalid IL or missing references) //IL_186b: Unknown result type (might be due to invalid IL or missing references) //IL_1871: Unknown result type (might be due to invalid IL or missing references) //IL_1876: Unknown result type (might be due to invalid IL or missing references) //IL_1882: Unknown result type (might be due to invalid IL or missing references) //IL_0252: Unknown result type (might be due to invalid IL or missing references) //IL_0258: Unknown result type (might be due to invalid IL or missing references) //IL_025d: Unknown result type (might be due to invalid IL or missing references) //IL_0263: Unknown result type (might be due to invalid IL or missing references) //IL_0268: Unknown result type (might be due to invalid IL or missing references) //IL_026e: Unknown result type (might be due to invalid IL or missing references) //IL_0278: Unknown result type (might be due to invalid IL or missing references) //IL_027d: Unknown result type (might be due to invalid IL or missing references) //IL_0283: Unknown result type (might be due to invalid IL or missing references) //IL_0288: Unknown result type (might be due to invalid IL or missing references) //IL_028e: Unknown result type (might be due to invalid IL or missing references) //IL_0298: Unknown result type (might be due to invalid IL or missing references) //IL_029d: Unknown result type (might be due to invalid IL or missing references) //IL_02a3: Unknown result type (might be due to invalid IL or missing references) //IL_02ad: Unknown result type (might be due to invalid IL or missing references) //IL_02b2: Unknown result type (might be due to invalid IL or missing references) //IL_02b8: Unknown result type (might be due to invalid IL or missing references) //IL_02bd: Unknown result type (might be due to invalid IL or missing references) //IL_02c3: Unknown result type (might be due to invalid IL or missing references) //IL_02c8: Unknown result type (might be due to invalid IL or missing references) //IL_02d3: Unknown result type (might be due to invalid IL or missing references) //IL_02d9: Unknown result type (might be due to invalid IL or missing references) //IL_02de: Unknown result type (might be due to invalid IL or missing references) //IL_02e4: Unknown result type (might be due to invalid IL or missing references) //IL_02ee: Unknown result type (might be due to invalid IL or missing references) //IL_02f3: Unknown result type (might be due to invalid IL or missing references) //IL_02f9: Unknown result type (might be due to invalid IL or missing references) //IL_0303: Unknown result type (might be due to invalid IL or missing references) //IL_0308: Unknown result type (might be due to invalid IL or missing references) //IL_030e: Unknown result type (might be due to invalid IL or missing references) //IL_0313: Unknown result type (might be due to invalid IL or missing references) //IL_0319: Unknown result type (might be due to invalid IL or missing references) //IL_031e: Unknown result type (might be due to invalid IL or missing references) //IL_0324: Unknown result type (might be due to invalid IL or missing references) //IL_032e: Unknown result type (might be due to invalid IL or missing references) //IL_0333: Unknown result type (might be due to invalid IL or missing references) //IL_0339: Unknown result type (might be due to invalid IL or missing references) //IL_0343: Unknown result type (might be due to invalid IL or missing references) //IL_0348: Unknown result type (might be due to invalid IL or missing references) //IL_034e: Unknown result type (might be due to invalid IL or missing references) //IL_0353: Unknown result type (might be due to invalid IL or missing references) //IL_0359: Unknown result type (might be due to invalid IL or missing references) //IL_035e: Unknown result type (might be due to invalid IL or missing references) //IL_036a: Unknown result type (might be due to invalid IL or missing references) //IL_189c: Unknown result type (might be due to invalid IL or missing references) //IL_18a2: Unknown result type (might be due to invalid IL or missing references) //IL_18a7: Unknown result type (might be due to invalid IL or missing references) //IL_18ad: Unknown result type (might be due to invalid IL or missing references) //IL_18b2: Unknown result type (might be due to invalid IL or missing references) //IL_18b8: Unknown result type (might be due to invalid IL or missing references) //IL_18c2: Unknown result type (might be due to invalid IL or missing references) //IL_18c7: Unknown result type (might be due to invalid IL or missing references) //IL_18cd: Unknown result type (might be due to invalid IL or missing references) //IL_18d2: Unknown result type (might be due to invalid IL or missing references) //IL_18d8: Unknown result type (might be due to invalid IL or missing references) //IL_18e2: Unknown result type (might be due to invalid IL or missing references) //IL_18e7: Unknown result type (might be due to invalid IL or missing references) //IL_18ed: Unknown result type (might be due to invalid IL or missing references) //IL_18f7: Unknown result type (might be due to invalid IL or missing references) //IL_18fc: Unknown result type (might be due to invalid IL or missing references) //IL_1902: Unknown result type (might be due to invalid IL or missing references) //IL_1907: Unknown result type (might be due to invalid IL or missing references) //IL_190d: Unknown result type (might be due to invalid IL or missing references) //IL_1912: Unknown result type (might be due to invalid IL or missing references) //IL_191d: Unknown result type (might be due to invalid IL or missing references) //IL_1923: Unknown result type (might be due to invalid IL or missing references) //IL_1928: Unknown result type (might be due to invalid IL or missing references) //IL_192e: Unknown result type (might be due to invalid IL or missing references) //IL_1938: Unknown result type (might be due to invalid IL or missing references) //IL_193d: Unknown result type (might be due to invalid IL or missing references) //IL_1943: Unknown result type (might be due to invalid IL or missing references) //IL_194d: Unknown result type (might be due to invalid IL or missing references) //IL_1952: Unknown result type (might be due to invalid IL or missing references) //IL_1958: Unknown result type (might be due to invalid IL or missing references) //IL_195d: Unknown result type (might be due to invalid IL or missing references) //IL_1963: Unknown result type (might be due to invalid IL or missing references) //IL_1968: Unknown result type (might be due to invalid IL or missing references) //IL_196e: Unknown result type (might be due to invalid IL or missing references) //IL_1978: Unknown result type (might be due to invalid IL or missing references) //IL_197d: Unknown result type (might be due to invalid IL or missing references) //IL_1983: Unknown result type (might be due to invalid IL or missing references) //IL_198d: Unknown result type (might be due to invalid IL or missing references) //IL_1992: Unknown result type (might be due to invalid IL or missing references) //IL_1998: Unknown result type (might be due to invalid IL or missing references) //IL_199d: Unknown result type (might be due to invalid IL or missing references) //IL_19a3: Unknown result type (might be due to invalid IL or missing references) //IL_19a8: Unknown result type (might be due to invalid IL or missing references) //IL_19b4: Unknown result type (might be due to invalid IL or missing references) //IL_0384: Unknown result type (might be due to invalid IL or missing references) //IL_038a: Unknown result type (might be due to invalid IL or missing references) //IL_038f: Unknown result type (might be due to invalid IL or missing references) //IL_039a: Unknown result type (might be due to invalid IL or missing references) //IL_03a0: Unknown result type (might be due to invalid IL or missing references) //IL_03a5: Unknown result type (might be due to invalid IL or missing references) //IL_03ab: Unknown result type (might be due to invalid IL or missing references) //IL_03b5: Unknown result type (might be due to invalid IL or missing references) //IL_03ba: Unknown result type (might be due to invalid IL or missing references) //IL_03c0: Unknown result type (might be due to invalid IL or missing references) //IL_03ca: Unknown result type (might be due to invalid IL or missing references) //IL_03cf: Unknown result type (might be due to invalid IL or missing references) //IL_03d5: Unknown result type (might be due to invalid IL or missing references) //IL_03da: Unknown result type (might be due to invalid IL or missing references) //IL_03e0: Unknown result type (might be due to invalid IL or missing references) //IL_03e5: Unknown result type (might be due to invalid IL or missing references) //IL_03fd: Unknown result type (might be due to invalid IL or missing references) //IL_0402: Unknown result type (might be due to invalid IL or missing references) //IL_041a: Unknown result type (might be due to invalid IL or missing references) //IL_0420: Unknown result type (might be due to invalid IL or missing references) //IL_042a: Unknown result type (might be due to invalid IL or missing references) //IL_042f: Unknown result type (might be due to invalid IL or missing references) //IL_0435: Unknown result type (might be due to invalid IL or missing references) //IL_043a: Unknown result type (might be due to invalid IL or missing references) //IL_0445: Unknown result type (might be due to invalid IL or missing references) //IL_044b: Unknown result type (might be due to invalid IL or missing references) //IL_0450: Unknown result type (might be due to invalid IL or missing references) //IL_045b: Unknown result type (might be due to invalid IL or missing references) //IL_0461: Unknown result type (might be due to invalid IL or missing references) //IL_0466: Unknown result type (might be due to invalid IL or missing references) //IL_046c: Unknown result type (might be due to invalid IL or missing references) //IL_0476: Unknown result type (might be due to invalid IL or missing references) //IL_047b: Unknown result type (might be due to invalid IL or missing references) //IL_0481: Unknown result type (might be due to invalid IL or missing references) //IL_048b: Unknown result type (might be due to invalid IL or missing references) //IL_0490: Unknown result type (might be due to invalid IL or missing references) //IL_0496: Unknown result type (might be due to invalid IL or missing references) //IL_049b: Unknown result type (might be due to invalid IL or missing references) //IL_04a1: Unknown result type (might be due to invalid IL or missing references) //IL_04a6: Unknown result type (might be due to invalid IL or missing references) //IL_04be: Unknown result type (might be due to invalid IL or missing references) //IL_04c3: Unknown result type (might be due to invalid IL or missing references) //IL_04db: Unknown result type (might be due to invalid IL or missing references) //IL_04e1: Unknown result type (might be due to invalid IL or missing references) //IL_04eb: Unknown result type (might be due to invalid IL or missing references) //IL_04f0: Unknown result type (might be due to invalid IL or missing references) //IL_04f6: Unknown result type (might be due to invalid IL or missing references) //IL_04fb: Unknown result type (might be due to invalid IL or missing references) //IL_0507: Unknown result type (might be due to invalid IL or missing references) //IL_2f26: Unknown result type (might be due to invalid IL or missing references) //IL_2f2c: Unknown result type (might be due to invalid IL or missing references) //IL_2f31: Unknown result type (might be due to invalid IL or missing references) //IL_2f37: Unknown result type (might be due to invalid IL or missing references) //IL_2f3c: Unknown result type (might be due to invalid IL or missing references) //IL_2f42: Unknown result type (might be due to invalid IL or missing references) //IL_2f4c: Unknown result type (might be due to invalid IL or missing references) //IL_2f51: Unknown result type (might be due to invalid IL or missing references) //IL_2f57: Unknown result type (might be due to invalid IL or missing references) //IL_2f61: Unknown result type (might be due to invalid IL or missing references) //IL_2f66: Unknown result type (might be due to invalid IL or missing references) //IL_2f6c: Unknown result type (might be due to invalid IL or missing references) //IL_2f71: Unknown result type (might be due to invalid IL or missing references) //IL_2f77: Unknown result type (might be due to invalid IL or missing references) //IL_2f7c: Unknown result type (might be due to invalid IL or missing references) //IL_2f87: Unknown result type (might be due to invalid IL or missing references) //IL_2f8d: Unknown result type (might be due to invalid IL or missing references) //IL_2f92: Unknown result type (might be due to invalid IL or missing references) //IL_2f98: Unknown result type (might be due to invalid IL or missing references) //IL_2fa2: Unknown result type (might be due to invalid IL or missing references) //IL_2fa7: Unknown result type (might be due to invalid IL or missing references) //IL_2fad: Unknown result type (might be due to invalid IL or missing references) //IL_2fb2: Unknown result type (might be due to invalid IL or missing references) //IL_2fb8: Unknown result type (might be due to invalid IL or missing references) //IL_2fc2: Unknown result type (might be due to invalid IL or missing references) //IL_2fc7: Unknown result type (might be due to invalid IL or missing references) //IL_2fcd: Unknown result type (might be due to invalid IL or missing references) //IL_2fd7: Unknown result type (might be due to invalid IL or missing references) //IL_2fdc: Unknown result type (might be due to invalid IL or missing references) //IL_2fe2: Unknown result type (might be due to invalid IL or missing references) //IL_2fe7: Unknown result type (might be due to invalid IL or missing references) //IL_2fed: Unknown result type (might be due to invalid IL or missing references) //IL_2ff2: Unknown result type (might be due to invalid IL or missing references) //IL_2ffe: Unknown result type (might be due to invalid IL or missing references) //IL_19ce: Unknown result type (might be due to invalid IL or missing references) //IL_19d4: Unknown result type (might be due to invalid IL or missing references) //IL_19d9: Unknown result type (might be due to invalid IL or missing references) //IL_19df: Unknown result type (might be due to invalid IL or missing references) //IL_19e4: Unknown result type (might be due to invalid IL or missing references) //IL_19ea: Unknown result type (might be due to invalid IL or missing references) //IL_19f4: Unknown result type (might be due to invalid IL or missing references) //IL_19f9: Unknown result type (might be due to invalid IL or missing references) //IL_19ff: Unknown result type (might be due to invalid IL or missing references) //IL_1a04: Unknown result type (might be due to invalid IL or missing references) //IL_1a0a: Unknown result type (might be due to invalid IL or missing references) //IL_1a14: Unknown result type (might be due to invalid IL or missing references) //IL_1a19: Unknown result type (might be due to invalid IL or missing references) //IL_1a1f: Unknown result type (might be due to invalid IL or missing references) //IL_1a29: Unknown result type (might be due to invalid IL or missing references) //IL_1a2e: Unknown result type (might be due to invalid IL or missing references) //IL_1a34: Unknown result type (might be due to invalid IL or missing references) //IL_1a39: Unknown result type (might be due to invalid IL or missing references) //IL_1a3f: Unknown result type (might be due to invalid IL or missing references) //IL_1a44: Unknown result type (might be due to invalid IL or missing references) //IL_1a4f: Unknown result type (might be due to invalid IL or missing references) //IL_1a55: Unknown result type (might be due to invalid IL or missing references) //IL_1a5a: Unknown result type (might be due to invalid IL or missing references) //IL_1a60: Unknown result type (might be due to invalid IL or missing references) //IL_1a6a: Unknown result type (might be due to invalid IL or missing references) //IL_1a6f: Unknown result type (might be due to invalid IL or missing references) //IL_1a75: Unknown result type (might be due to invalid IL or missing references) //IL_1a7f: Unknown result type (might be due to invalid IL or missing references) //IL_1a84: Unknown result type (might be due to invalid IL or missing references) //IL_1a8a: Unknown result type (might be due to invalid IL or missing references) //IL_1a8f: Unknown result type (might be due to invalid IL or missing references) //IL_1a95: Unknown result type (might be due to invalid IL or missing references) //IL_1a9a: Unknown result type (might be due to invalid IL or missing references) //IL_1aa0: Unknown result type (might be due to invalid IL or missing references) //IL_1aaa: Unknown result type (might be due to invalid IL or missing references) //IL_1aaf: Unknown result type (might be due to invalid IL or missing references) //IL_1ab5: Unknown result type (might be due to invalid IL or missing references) //IL_1abf: Unknown result type (might be due to invalid IL or missing references) //IL_1ac4: Unknown result type (might be due to invalid IL or missing references) //IL_1aca: Unknown result type (might be due to invalid IL or missing references) //IL_1acf: Unknown result type (might be due to invalid IL or missing references) //IL_1ad5: Unknown result type (might be due to invalid IL or missing references) //IL_1ada: Unknown result type (might be due to invalid IL or missing references) //IL_1ae6: Unknown result type (might be due to invalid IL or missing references) //IL_0521: Unknown result type (might be due to invalid IL or missing references) //IL_0527: Unknown result type (might be due to invalid IL or missing references) //IL_052c: Unknown result type (might be due to invalid IL or missing references) //IL_0537: Unknown result type (might be due to invalid IL or missing references) //IL_053d: Unknown result type (might be due to invalid IL or missing references) //IL_0542: Unknown result type (might be due to invalid IL or missing references) //IL_0548: Unknown result type (might be due to invalid IL or missing references) //IL_0552: Unknown result type (might be due to invalid IL or missing references) //IL_0557: Unknown result type (might be due to invalid IL or missing references) //IL_055d: Unknown result type (might be due to invalid IL or missing references) //IL_0567: Unknown result type (might be due to invalid IL or missing references) //IL_056c: Unknown result type (might be due to invalid IL or missing references) //IL_0572: Unknown result type (might be due to invalid IL or missing references) //IL_0577: Unknown result type (might be due to invalid IL or missing references) //IL_057d: Unknown result type (might be due to invalid IL or missing references) //IL_0582: Unknown result type (might be due to invalid IL or missing references) //IL_059a: Unknown result type (might be due to invalid IL or missing references) //IL_059f: Unknown result type (might be due to invalid IL or missing references) //IL_05b7: Unknown result type (might be due to invalid IL or missing references) //IL_05bd: Unknown result type (might be due to invalid IL or missing references) //IL_05c7: Unknown result type (might be due to invalid IL or missing references) //IL_05cc: Unknown result type (might be due to invalid IL or missing references) //IL_05d2: Unknown result type (might be due to invalid IL or missing references) //IL_05d7: Unknown result type (might be due to invalid IL or missing references) //IL_05e2: Unknown result type (might be due to invalid IL or missing references) //IL_05e8: Unknown result type (might be due to invalid IL or missing references) //IL_05ed: Unknown result type (might be due to invalid IL or missing references) //IL_05f8: Unknown result type (might be due to invalid IL or missing references) //IL_05fe: Unknown result type (might be due to invalid IL or missing references) //IL_0603: Unknown result type (might be due to invalid IL or missing references) //IL_0609: Unknown result type (might be due to invalid IL or missing references) //IL_0613: Unknown result type (might be due to invalid IL or missing references) //IL_0618: Unknown result type (might be due to invalid IL or missing references) //IL_061e: Unknown result type (might be due to invalid IL or missing references) //IL_0628: Unknown result type (might be due to invalid IL or missing references) //IL_062d: Unknown result type (might be due to invalid IL or missing references) //IL_0633: Unknown result type (might be due to invalid IL or missing references) //IL_0638: Unknown result type (might be due to invalid IL or missing references) //IL_063e: Unknown result type (might be due to invalid IL or missing references) //IL_0643: Unknown result type (might be due to invalid IL or missing references) //IL_065b: Unknown result type (might be due to invalid IL or missing references) //IL_0660: Unknown result type (might be due to invalid IL or missing references) //IL_0678: Unknown result type (might be due to invalid IL or missing references) //IL_067e: Unknown result type (might be due to invalid IL or missing references) //IL_0688: Unknown result type (might be due to invalid IL or missing references) //IL_068d: Unknown result type (might be due to invalid IL or missing references) //IL_0693: Unknown result type (might be due to invalid IL or missing references) //IL_0698: Unknown result type (might be due to invalid IL or missing references) //IL_06a4: Unknown result type (might be due to invalid IL or missing references) //IL_3018: Unknown result type (might be due to invalid IL or missing references) //IL_301e: Unknown result type (might be due to invalid IL or missing references) //IL_3023: Unknown result type (might be due to invalid IL or missing references) //IL_3029: Unknown result type (might be due to invalid IL or missing references) //IL_302e: Unknown result type (might be due to invalid IL or missing references) //IL_3034: Unknown result type (might be due to invalid IL or missing references) //IL_303e: Unknown result type (might be due to invalid IL or missing references) //IL_3043: Unknown result type (might be due to invalid IL or missing references) //IL_3049: Unknown result type (might be due to invalid IL or missing references) //IL_304e: Unknown result type (might be due to invalid IL or missing references) //IL_3054: Unknown result type (might be due to invalid IL or missing references) //IL_305e: Unknown result type (might be due to invalid IL or missing references) //IL_3063: Unknown result type (might be due to invalid IL or missing references) //IL_3069: Unknown result type (might be due to invalid IL or missing references) //IL_3073: Unknown result type (might be due to invalid IL or missing references) //IL_3078: Unknown result type (might be due to invalid IL or missing references) //IL_307e: Unknown result type (might be due to invalid IL or missing references) //IL_3083: Unknown result type (might be due to invalid IL or missing references) //IL_3089: Unknown result type (might be due to invalid IL or missing references) //IL_308e: Unknown result type (might be due to invalid IL or missing references) //IL_3099: Unknown result type (might be due to invalid IL or missing references) //IL_309f: Unknown result type (might be due to invalid IL or missing references) //IL_30a4: Unknown result type (might be due to invalid IL or missing references) //IL_30aa: Unknown result type (might be due to invalid IL or missing references) //IL_30b4: Unknown result type (might be due to invalid IL or missing references) //IL_30b9: Unknown result type (might be due to invalid IL or missing references) //IL_30bf: Unknown result type (might be due to invalid IL or missing references) //IL_30c9: Unknown result type (might be due to invalid IL or missing references) //IL_30ce: Unknown result type (might be due to invalid IL or missing references) //IL_30d4: Unknown result type (might be due to invalid IL or missing references) //IL_30d9: Unknown result type (might be due to invalid IL or missing references) //IL_30df: Unknown result type (might be due to invalid IL or missing references) //IL_30e4: Unknown result type (might be due to invalid IL or missing references) //IL_30ea: Unknown result type (might be due to invalid IL or missing references) //IL_30f4: Unknown result type (might be due to invalid IL or missing references) //IL_30f9: Unknown result type (might be due to invalid IL or missing references) //IL_30ff: Unknown result type (might be due to invalid IL or missing references) //IL_3109: Unknown result type (might be due to invalid IL or missing references) //IL_310e: Unknown result type (might be due to invalid IL or missing references) //IL_3114: Unknown result type (might be due to invalid IL or missing references) //IL_3119: Unknown result type (might be due to invalid IL or missing references) //IL_311f: Unknown result type (might be due to invalid IL or missing references) //IL_3124: Unknown result type (might be due to invalid IL or missing references) //IL_3130: Unknown result type (might be due to invalid IL or missing references) //IL_1b00: Unknown result type (might be due to invalid IL or missing references) //IL_1b06: Unknown result type (might be due to invalid IL or missing references) //IL_1b0b: Unknown result type (might be due to invalid IL or missing references) //IL_1b16: Unknown result type (might be due to invalid IL or missing references) //IL_1b1c: Unknown result type (might be due to invalid IL or missing references) //IL_1b21: Unknown result type (might be due to invalid IL or missing references) //IL_1b27: Unknown result type (might be due to invalid IL or missing references) //IL_1b31: Unknown result type (might be due to invalid IL or missing references) //IL_1b36: Unknown result type (might be due to invalid IL or missing references) //IL_1b3c: Unknown result type (might be due to invalid IL or missing references) //IL_1b46: Unknown result type (might be due to invalid IL or missing references) //IL_1b4b: Unknown result type (might be due to invalid IL or missing references) //IL_1b51: Unknown result type (might be due to invalid IL or missing references) //IL_1b56: Unknown result type (might be due to invalid IL or missing references) //IL_1b5c: Unknown result type (might be due to invalid IL or missing references) //IL_1b61: Unknown result type (might be due to invalid IL or missing references) //IL_1b79: Unknown result type (might be due to invalid IL or missing references) //IL_1b7e: Unknown result type (might be due to invalid IL or missing references) //IL_1b96: Unknown result type (might be due to invalid IL or missing references) //IL_1b9c: Unknown result type (might be due to invalid IL or missing references) //IL_1ba6: Unknown result type (might be due to invalid IL or missing references) //IL_1bab: Unknown result type (might be due to invalid IL or missing references) //IL_1bb1: Unknown result type (might be due to invalid IL or missing references) //IL_1bb6: Unknown result type (might be due to invalid IL or missing references) //IL_1bc1: Unknown result type (might be due to invalid IL or missing references) //IL_1bc7: Unknown result type (might be due to invalid IL or missing references) //IL_1bcc: Unknown result type (might be due to invalid IL or missing references) //IL_1bd7: Unknown result type (might be due to invalid IL or missing references) //IL_1bdd: Unknown result type (might be due to invalid IL or missing references) //IL_1be2: Unknown result type (might be due to invalid IL or missing references) //IL_1be8: Unknown result type (might be due to invalid IL or missing references) //IL_1bf2: Unknown result type (might be due to invalid IL or missing references) //IL_1bf7: Unknown result type (might be due to invalid IL or missing references) //IL_1bfd: Unknown result type (might be due to invalid IL or missing references) //IL_1c07: Unknown result type (might be due to invalid IL or missing references) //IL_1c0c: Unknown result type (might be due to invalid IL or missing references) //IL_1c12: Unknown result type (might be due to invalid IL or missing references) //IL_1c17: Unknown result type (might be due to invalid IL or missing references) //IL_1c1d: Unknown result type (might be due to invalid IL or missing references) //IL_1c22: Unknown result type (might be due to invalid IL or missing references) //IL_1c3a: Unknown result type (might be due to invalid IL or missing references) //IL_1c3f: Unknown result type (might be due to invalid IL or missing references) //IL_1c57: Unknown result type (might be due to invalid IL or missing references) //IL_1c5d: Unknown result type (might be due to invalid IL or missing references) //IL_1c67: Unknown result type (might be due to invalid IL or missing references) //IL_1c6c: Unknown result type (might be due to invalid IL or missing references) //IL_1c72: Unknown result type (might be due to invalid IL or missing references) //IL_1c77: Unknown result type (might be due to invalid IL or missing references) //IL_1c83: Unknown result type (might be due to invalid IL or missing references) //IL_06be: Unknown result type (might be due to invalid IL or missing references) //IL_06c4: Unknown result type (might be due to invalid IL or missing references) //IL_06c9: Unknown result type (might be due to invalid IL or missing references) //IL_06cf: Unknown result type (might be due to invalid IL or missing references) //IL_06d9: Unknown result type (might be due to invalid IL or missing references) //IL_06de: Unknown result type (might be due to invalid IL or missing references) //IL_06e4: Unknown result type (might be due to invalid IL or missing references) //IL_06e9: Unknown result type (might be due to invalid IL or missing references) //IL_06ef: Unknown result type (might be due to invalid IL or missing references) //IL_06f9: Unknown result type (might be due to invalid IL or missing references) //IL_06fe: Unknown result type (might be due to invalid IL or missing references) //IL_0704: Unknown result type (might be due to invalid IL or missing references) //IL_0709: Unknown result type (might be due to invalid IL or missing references) //IL_0714: Unknown result type (might be due to invalid IL or missing references) //IL_071a: Unknown result type (might be due to invalid IL or missing references) //IL_071f: Unknown result type (might be due to invalid IL or missing references) //IL_0725: Unknown result type (might be due to invalid IL or missing references) //IL_072f: Unknown result type (might be due to invalid IL or missing references) //IL_0734: Unknown result type (might be due to invalid IL or missing references) //IL_073a: Unknown result type (might be due to invalid IL or missing references) //IL_073f: Unknown result type (might be due to invalid IL or missing references) //IL_0745: Unknown result type (might be due to invalid IL or missing references) //IL_074f: Unknown result type (might be due to invalid IL or missing references) //IL_0754: Unknown result type (might be due to invalid IL or missing references) //IL_075a: Unknown result type (might be due to invalid IL or missing references) //IL_075f: Unknown result type (might be due to invalid IL or missing references) //IL_076b: Unknown result type (might be due to invalid IL or missing references) //IL_314a: Unknown result type (might be due to invalid IL or missing references) //IL_3150: Unknown result type (might be due to invalid IL or missing references) //IL_3155: Unknown result type (might be due to invalid IL or missing references) //IL_315b: Unknown result type (might be due to invalid IL or missing references) //IL_3160: Unknown result type (might be due to invalid IL or missing references) //IL_3166: Unknown result type (might be due to invalid IL or missing references) //IL_3170: Unknown result type (might be due to invalid IL or missing references) //IL_3175: Unknown result type (might be due to invalid IL or missing references) //IL_317b: Unknown result type (might be due to invalid IL or missing references) //IL_3180: Unknown result type (might be due to invalid IL or missing references) //IL_3186: Unknown result type (might be due to invalid IL or missing references) //IL_3190: Unknown result type (might be due to invalid IL or missing references) //IL_3195: Unknown result type (might be due to invalid IL or missing references) //IL_319b: Unknown result type (might be due to invalid IL or missing references) //IL_31a5: Unknown result type (might be due to invalid IL or missing references) //IL_31aa: Unknown result type (might be due to invalid IL or missing references) //IL_31b0: Unknown result type (might be due to invalid IL or missing references) //IL_31b5: Unknown result type (might be due to invalid IL or missing references) //IL_31bb: Unknown result type (might be due to invalid IL or missing references) //IL_31c0: Unknown result type (might be due to invalid IL or missing references) //IL_31cb: Unknown result type (might be due to invalid IL or missing references) //IL_31d1: Unknown result type (might be due to invalid IL or missing references) //IL_31d6: Unknown result type (might be due to invalid IL or missing references) //IL_31dc: Unknown result type (might be due to invalid IL or missing references) //IL_31e6: Unknown result type (might be due to invalid IL or missing references) //IL_31eb: Unknown result type (might be due to invalid IL or missing references) //IL_31f1: Unknown result type (might be due to invalid IL or missing references) //IL_31fb: Unknown result type (might be due to invalid IL or missing references) //IL_3200: Unknown result type (might be due to invalid IL or missing references) //IL_3206: Unknown result type (might be due to invalid IL or missing references) //IL_320b: Unknown result type (might be due to invalid IL or missing references) //IL_3211: Unknown result type (might be due to invalid IL or missing references) //IL_3216: Unknown result type (might be due to invalid IL or missing references) //IL_321c: Unknown result type (might be due to invalid IL or missing references) //IL_3226: Unknown result type (might be due to invalid IL or missing references) //IL_322b: Unknown result type (might be due to invalid IL or missing references) //IL_3231: Unknown result type (might be due to invalid IL or missing references) //IL_323b: Unknown result type (might be due to invalid IL or missing references) //IL_3240: Unknown result type (might be due to invalid IL or missing references) //IL_3246: Unknown result type (might be due to invalid IL or missing references) //IL_324b: Unknown result type (might be due to invalid IL or missing references) //IL_3251: Unknown result type (might be due to invalid IL or missing references) //IL_3256: Unknown result type (might be due to invalid IL or missing references) //IL_3262: Unknown result type (might be due to invalid IL or missing references) //IL_1c9d: Unknown result type (might be due to invalid IL or missing references) //IL_1ca3: Unknown result type (might be due to invalid IL or missing references) //IL_1ca8: Unknown result type (might be due to invalid IL or missing references) //IL_1cb3: Unknown result type (might be due to invalid IL or missing references) //IL_1cb9: Unknown result type (might be due to invalid IL or missing references) //IL_1cbe: Unknown result type (might be due to invalid IL or missing references) //IL_1cc4: Unknown result type (might be due to invalid IL or missing references) //IL_1cce: Unknown result type (might be due to invalid IL or missing references) //IL_1cd3: Unknown result type (might be due to invalid IL or missing references) //IL_1cd9: Unknown result type (might be due to invalid IL or missing references) //IL_1ce3: Unknown result type (might be due to invalid IL or missing references) //IL_1ce8: Unknown result type (might be due to invalid IL or missing references) //IL_1cee: Unknown result type (might be due to invalid IL or missing references) //IL_1cf3: Unknown result type (might be due to invalid IL or missing references) //IL_1cf9: Unknown result type (might be due to invalid IL or missing references) //IL_1cfe: Unknown result type (might be due to invalid IL or missing references) //IL_1d16: Unknown result type (might be due to invalid IL or missing references) //IL_1d1b: Unknown result type (might be due to invalid IL or missing references) //IL_1d33: Unknown result type (might be due to invalid IL or missing references) //IL_1d39: Unknown result type (might be due to invalid IL or missing references) //IL_1d43: Unknown result type (might be due to invalid IL or missing references) //IL_1d48: Unknown result type (might be due to invalid IL or missing references) //IL_1d4e: Unknown result type (might be due to invalid IL or missing references) //IL_1d53: Unknown result type (might be due to invalid IL or missing references) //IL_1d5e: Unknown result type (might be due to invalid IL or missing references) //IL_1d64: Unknown result type (might be due to invalid IL or missing references) //IL_1d69: Unknown result type (might be due to invalid IL or missing references) //IL_1d74: Unknown result type (might be due to invalid IL or missing references) //IL_1d7a: Unknown result type (might be due to invalid IL or missing references) //IL_1d7f: Unknown result type (might be due to invalid IL or missing references) //IL_1d85: Unknown result type (might be due to invalid IL or missing references) //IL_1d8f: Unknown result type (might be due to invalid IL or missing references) //IL_1d94: Unknown result type (might be due to invalid IL or missing references) //IL_1d9a: Unknown result type (might be due to invalid IL or missing references) //IL_1da4: Unknown result type (might be due to invalid IL or missing references) //IL_1da9: Unknown result type (might be due to invalid IL or missing references) //IL_1daf: Unknown result type (might be due to invalid IL or missing references) //IL_1db4: Unknown result type (might be due to invalid IL or missing references) //IL_1dba: Unknown result type (might be due to invalid IL or missing references) //IL_1dbf: Unknown result type (might be due to invalid IL or missing references) //IL_1dd7: Unknown result type (might be due to invalid IL or missing references) //IL_1ddc: Unknown result type (might be due to invalid IL or missing references) //IL_1df4: Unknown result type (might be due to invalid IL or missing references) //IL_1dfa: Unknown result type (might be due to invalid IL or missing references) //IL_1e04: Unknown result type (might be due to invalid IL or missing references) //IL_1e09: Unknown result type (might be due to invalid IL or missing references) //IL_1e0f: Unknown result type (might be due to invalid IL or missing references) //IL_1e14: Unknown result type (might be due to invalid IL or missing references) //IL_1e20: Unknown result type (might be due to invalid IL or missing references) //IL_0785: Unknown result type (might be due to invalid IL or missing references) //IL_078b: Unknown result type (might be due to invalid IL or missing references) //IL_0790: Unknown result type (might be due to invalid IL or missing references) //IL_0796: Unknown result type (might be due to invalid IL or missing references) //IL_07a0: Unknown result type (might be due to invalid IL or missing references) //IL_07a5: Unknown result type (might be due to invalid IL or missing references) //IL_07ab: Unknown result type (might be due to invalid IL or missing references) //IL_07b0: Unknown result type (might be due to invalid IL or missing references) //IL_07b6: Unknown result type (might be due to invalid IL or missing references) //IL_07c0: Unknown result type (might be due to invalid IL or missing references) //IL_07c5: Unknown result type (might be due to invalid IL or missing references) //IL_07cb: Unknown result type (might be due to invalid IL or missing references) //IL_07d0: Unknown result type (might be due to invalid IL or missing references) //IL_07db: Unknown result type (might be due to invalid IL or missing references) //IL_07e1: Unknown result type (might be due to invalid IL or missing references) //IL_07e6: Unknown result type (might be due to invalid IL or missing references) //IL_07ec: Unknown result type (might be due to invalid IL or missing references) //IL_07f6: Unknown result type (might be due to invalid IL or missing references) //IL_07fb: Unknown result type (might be due to invalid IL or missing references) //IL_0801: Unknown result type (might be due to invalid IL or missing references) //IL_0806: Unknown result type (might be due to invalid IL or missing references) //IL_080c: Unknown result type (might be due to invalid IL or missing references) //IL_0816: Unknown result type (might be due to invalid IL or missing references) //IL_081b: Unknown result type (might be due to invalid IL or missing references) //IL_0821: Unknown result type (might be due to invalid IL or missing references) //IL_0826: Unknown result type (might be due to invalid IL or missing references) //IL_0832: Unknown result type (might be due to invalid IL or missing references) //IL_327c: Unknown result type (might be due to invalid IL or missing references) //IL_3282: Unknown result type (might be due to invalid IL or missing references) //IL_3287: Unknown result type (might be due to invalid IL or missing references) //IL_3292: Unknown result type (might be due to invalid IL or missing references) //IL_3298: Unknown result type (might be due to invalid IL or missing references) //IL_329d: Unknown result type (might be due to invalid IL or missing references) //IL_32a3: Unknown result type (might be due to invalid IL or missing references) //IL_32ad: Unknown result type (might be due to invalid IL or missing references) //IL_32b2: Unknown result type (might be due to invalid IL or missing references) //IL_32b8: Unknown result type (might be due to invalid IL or missing references) //IL_32c2: Unknown result type (might be due to invalid IL or missing references) //IL_32c7: Unknown result type (might be due to invalid IL or missing references) //IL_32cd: Unknown result type (might be due to invalid IL or missing references) //IL_32d2: Unknown result type (might be due to invalid IL or missing references) //IL_32d8: Unknown result type (might be due to invalid IL or missing references) //IL_32dd: Unknown result type (might be due to invalid IL or missing references) //IL_32f5: Unknown result type (might be due to invalid IL or missing references) //IL_32fa: Unknown result type (might be due to invalid IL or missing references) //IL_3312: Unknown result type (might be due to invalid IL or missing references) //IL_3318: Unknown result type (might be due to invalid IL or missing references) //IL_3322: Unknown result type (might be due to invalid IL or missing references) //IL_3327: Unknown result type (might be due to invalid IL or missing references) //IL_332d: Unknown result type (might be due to invalid IL or missing references) //IL_3332: Unknown result type (might be due to invalid IL or missing references) //IL_333d: Unknown result type (might be due to invalid IL or missing references) //IL_3343: Unknown result type (might be due to invalid IL or missing references) //IL_3348: Unknown result type (might be due to invalid IL or missing references) //IL_3353: Unknown result type (might be due to invalid IL or missing references) //IL_3359: Unknown result type (might be due to invalid IL or missing references) //IL_335e: Unknown result type (might be due to invalid IL or missing references) //IL_3364: Unknown result type (might be due to invalid IL or missing references) //IL_336e: Unknown result type (might be due to invalid IL or missing references) //IL_3373: Unknown result type (might be due to invalid IL or missing references) //IL_3379: Unknown result type (might be due to invalid IL or missing references) //IL_3383: Unknown result type (might be due to invalid IL or missing references) //IL_3388: Unknown result type (might be due to invalid IL or missing references) //IL_338e: Unknown result type (might be due to invalid IL or missing references) //IL_3393: Unknown result type (might be due to invalid IL or missing references) //IL_3399: Unknown result type (might be due to invalid IL or missing references) //IL_339e: Unknown result type (might be due to invalid IL or missing references) //IL_33b6: Unknown result type (might be due to invalid IL or missing references) //IL_33bb: Unknown result type (might be due to invalid IL or missing references) //IL_33d3: Unknown result type (might be due to invalid IL or missing references) //IL_33d9: Unknown result type (might be due to invalid IL or missing references) //IL_33e3: Unknown result type (might be due to invalid IL or missing references) //IL_33e8: Unknown result type (might be due to invalid IL or missing references) //IL_33ee: Unknown result type (might be due to invalid IL or missing references) //IL_33f3: Unknown result type (might be due to invalid IL or missing references) //IL_33ff: Unknown result type (might be due to invalid IL or missing references) //IL_1e3a: Unknown result type (might be due to invalid IL or missing references) //IL_1e40: Unknown result type (might be due to invalid IL or missing references) //IL_1e45: Unknown result type (might be due to invalid IL or missing references) //IL_1e4b: Unknown result type (might be due to invalid IL or missing references) //IL_1e55: Unknown result type (might be due to invalid IL or missing references) //IL_1e5a: Unknown result type (might be due to invalid IL or missing references) //IL_1e60: Unknown result type (might be due to invalid IL or missing references) //IL_1e65: Unknown result type (might be due to invalid IL or missing references) //IL_1e6b: Unknown result type (might be due to invalid IL or missing references) //IL_1e75: Unknown result type (might be due to invalid IL or missing references) //IL_1e7a: Unknown result type (might be due to invalid IL or missing references) //IL_1e80: Unknown result type (might be due to invalid IL or missing references) //IL_1e85: Unknown result type (might be due to invalid IL or missing references) //IL_1e90: Unknown result type (might be due to invalid IL or missing references) //IL_1e96: Unknown result type (might be due to invalid IL or missing references) //IL_1e9b: Unknown result type (might be due to invalid IL or missing references) //IL_1ea1: Unknown result type (might be due to invalid IL or missing references) //IL_1eab: Unknown result type (might be due to invalid IL or missing references) //IL_1eb0: Unknown result type (might be due to invalid IL or missing references) //IL_1eb6: Unknown result type (might be due to invalid IL or missing references) //IL_1ebb: Unknown result type (might be due to invalid IL or missing references) //IL_1ec1: Unknown result type (might be due to invalid IL or missing references) //IL_1ecb: Unknown result type (might be due to invalid IL or missing references) //IL_1ed0: Unknown result type (might be due to invalid IL or missing references) //IL_1ed6: Unknown result type (might be due to invalid IL or missing references) //IL_1edb: Unknown result type (might be due to invalid IL or missing references) //IL_1ee7: Unknown result type (might be due to invalid IL or missing references) //IL_0847: Unknown result type (might be due to invalid IL or missing references) //IL_0852: Unknown result type (might be due to invalid IL or missing references) //IL_0858: Unknown result type (might be due to invalid IL or missing references) //IL_085d: Unknown result type (might be due to invalid IL or missing references) //IL_0863: Unknown result type (might be due to invalid IL or missing references) //IL_0868: Unknown result type (might be due to invalid IL or missing references) //IL_086e: Unknown result type (might be due to invalid IL or missing references) //IL_0873: Unknown result type (might be due to invalid IL or missing references) //IL_0879: Unknown result type (might be due to invalid IL or missing references) //IL_0883: Unknown result type (might be due to invalid IL or missing references) //IL_0888: Unknown result type (might be due to invalid IL or missing references) //IL_088e: Unknown result type (might be due to invalid IL or missing references) //IL_0898: Unknown result type (might be due to invalid IL or missing references) //IL_089d: Unknown result type (might be due to invalid IL or missing references) //IL_08a3: Unknown result type (might be due to invalid IL or missing references) //IL_08a8: Unknown result type (might be due to invalid IL or missing references) //IL_08ae: Unknown result type (might be due to invalid IL or missing references) //IL_08b3: Unknown result type (might be due to invalid IL or missing references) //IL_08bf: Unknown result type (might be due to invalid IL or missing references) //IL_3419: Unknown result type (might be due to invalid IL or missing references) //IL_341f: Unknown result type (might be due to invalid IL or missing references) //IL_3424: Unknown result type (might be due to invalid IL or missing references) //IL_342f: Unknown result type (might be due to invalid IL or missing references) //IL_3435: Unknown result type (might be due to invalid IL or missing references) //IL_343a: Unknown result type (might be due to invalid IL or missing references) //IL_3440: Unknown result type (might be due to invalid IL or missing references) //IL_344a: Unknown result type (might be due to invalid IL or missing references) //IL_344f: Unknown result type (might be due to invalid IL or missing references) //IL_3455: Unknown result type (might be due to invalid IL or missing references) //IL_345f: Unknown result type (might be due to invalid IL or missing references) //IL_3464: Unknown result type (might be due to invalid IL or missing references) //IL_346a: Unknown result type (might be due to invalid IL or missing references) //IL_346f: Unknown result type (might be due to invalid IL or missing references) //IL_3475: Unknown result type (might be due to invalid IL or missing references) //IL_347a: Unknown result type (might be due to invalid IL or missing references) //IL_3492: Unknown result type (might be due to invalid IL or missing references) //IL_3497: Unknown result type (might be due to invalid IL or missing references) //IL_34af: Unknown result type (might be due to invalid IL or missing references) //IL_34b5: Unknown result type (might be due to invalid IL or missing references) //IL_34bf: Unknown result type (might be due to invalid IL or missing references) //IL_34c4: Unknown result type (might be due to invalid IL or missing references) //IL_34ca: Unknown result type (might be due to invalid IL or missing references) //IL_34cf: Unknown result type (might be due to invalid IL or missing references) //IL_34da: Unknown result type (might be due to invalid IL or missing references) //IL_34e0: Unknown result type (might be due to invalid IL or missing references) //IL_34e5: Unknown result type (might be due to invalid IL or missing references) //IL_34f0: Unknown result type (might be due to invalid IL or missing references) //IL_34f6: Unknown result type (might be due to invalid IL or missing references) //IL_34fb: Unknown result type (might be due to invalid IL or missing references) //IL_3501: Unknown result type (might be due to invalid IL or missing references) //IL_350b: Unknown result type (might be due to invalid IL or missing references) //IL_3510: Unknown result type (might be due to invalid IL or missing references) //IL_3516: Unknown result type (might be due to invalid IL or missing references) //IL_3520: Unknown result type (might be due to invalid IL or missing references) //IL_3525: Unknown result type (might be due to invalid IL or missing references) //IL_352b: Unknown result type (might be due to invalid IL or missing references) //IL_3530: Unknown result type (might be due to invalid IL or missing references) //IL_3536: Unknown result type (might be due to invalid IL or missing references) //IL_353b: Unknown result type (might be due to invalid IL or missing references) //IL_3553: Unknown result type (might be due to invalid IL or missing references) //IL_3558: Unknown result type (might be due to invalid IL or missing references) //IL_3570: Unknown result type (might be due to invalid IL or missing references) //IL_3576: Unknown result type (might be due to invalid IL or missing references) //IL_3580: Unknown result type (might be due to invalid IL or missing references) //IL_3585: Unknown result type (might be due to invalid IL or missing references) //IL_358b: Unknown result type (might be due to invalid IL or missing references) //IL_3590: Unknown result type (might be due to invalid IL or missing references) //IL_359c: Unknown result type (might be due to invalid IL or missing references) //IL_1f01: Unknown result type (might be due to invalid IL or missing references) //IL_1f07: Unknown result type (might be due to invalid IL or missing references) //IL_1f0c: Unknown result type (might be due to invalid IL or missing references) //IL_1f12: Unknown result type (might be due to invalid IL or missing references) //IL_1f1c: Unknown result type (might be due to invalid IL or missing references) //IL_1f21: Unknown result type (might be due to invalid IL or missing references) //IL_1f27: Unknown result type (might be due to invalid IL or missing references) //IL_1f2c: Unknown result type (might be due to invalid IL or missing references) //IL_1f32: Unknown result type (might be due to invalid IL or missing references) //IL_1f3c: Unknown result type (might be due to invalid IL or missing references) //IL_1f41: Unknown result type (might be due to invalid IL or missing references) //IL_1f47: Unknown result type (might be due to invalid IL or missing references) //IL_1f4c: Unknown result type (might be due to invalid IL or missing references) //IL_1f57: Unknown result type (might be due to invalid IL or missing references) //IL_1f5d: Unknown result type (might be due to invalid IL or missing references) //IL_1f62: Unknown result type (might be due to invalid IL or missing references) //IL_1f68: Unknown result type (might be due to invalid IL or missing references) //IL_1f72: Unknown result type (might be due to invalid IL or missing references) //IL_1f77: Unknown result type (might be due to invalid IL or missing references) //IL_1f7d: Unknown result type (might be due to invalid IL or missing references) //IL_1f82: Unknown result type (might be due to invalid IL or missing references) //IL_1f88: Unknown result type (might be due to invalid IL or missing references) //IL_1f92: Unknown result type (might be due to invalid IL or missing references) //IL_1f97: Unknown result type (might be due to invalid IL or missing references) //IL_1f9d: Unknown result type (might be due to invalid IL or missing references) //IL_1fa2: Unknown result type (might be due to invalid IL or missing references) //IL_1fae: Unknown result type (might be due to invalid IL or missing references) //IL_08d4: Unknown result type (might be due to invalid IL or missing references) //IL_08da: Unknown result type (might be due to invalid IL or missing references) //IL_08e4: Unknown result type (might be due to invalid IL or missing references) //IL_08e9: Unknown result type (might be due to invalid IL or missing references) //IL_08f4: Unknown result type (might be due to invalid IL or missing references) //IL_08fa: Unknown result type (might be due to invalid IL or missing references) //IL_08ff: Unknown result type (might be due to invalid IL or missing references) //IL_0905: Unknown result type (might be due to invalid IL or missing references) //IL_090a: Unknown result type (might be due to invalid IL or missing references) //IL_0910: Unknown result type (might be due to invalid IL or missing references) //IL_0915: Unknown result type (might be due to invalid IL or missing references) //IL_091b: Unknown result type (might be due to invalid IL or missing references) //IL_0925: Unknown result type (might be due to invalid IL or missing references) //IL_092a: Unknown result type (might be due to invalid IL or missing references) //IL_0930: Unknown result type (might be due to invalid IL or missing references) //IL_093a: Unknown result type (might be due to invalid IL or missing references) //IL_093f: Unknown result type (might be due to invalid IL or missing references) //IL_0945: Unknown result type (might be due to invalid IL or missing references) //IL_094a: Unknown result type (might be due to invalid IL or missing references) //IL_0950: Unknown result type (might be due to invalid IL or missing references) //IL_095a: Unknown result type (might be due to invalid IL or missing references) //IL_095f: Unknown result type (might be due to invalid IL or missing references) //IL_0965: Unknown result type (might be due to invalid IL or missing references) //IL_096a: Unknown result type (might be due to invalid IL or missing references) //IL_0976: Unknown result type (might be due to invalid IL or missing references) //IL_35b6: Unknown result type (might be due to invalid IL or missing references) //IL_35bc: Unknown result type (might be due to invalid IL or missing references) //IL_35c1: Unknown result type (might be due to invalid IL or missing references) //IL_35c7: Unknown result type (might be due to invalid IL or missing references) //IL_35d1: Unknown result type (might be due to invalid IL or missing references) //IL_35d6: Unknown result type (might be due to invalid IL or missing references) //IL_35dc: Unknown result type (might be due to invalid IL or missing references) //IL_35e1: Unknown result type (might be due to invalid IL or missing references) //IL_35e7: Unknown result type (might be due to invalid IL or missing references) //IL_35f1: Unknown result type (might be due to invalid IL or missing references) //IL_35f6: Unknown result type (might be due to invalid IL or missing references) //IL_35fc: Unknown result type (might be due to invalid IL or missing references) //IL_3601: Unknown result type (might be due to invalid IL or missing references) //IL_360c: Unknown result type (might be due to invalid IL or missing references) //IL_3612: Unknown result type (might be due to invalid IL or missing references) //IL_3617: Unknown result type (might be due to invalid IL or missing references) //IL_361d: Unknown result type (might be due to invalid IL or missing references) //IL_3627: Unknown result type (might be due to invalid IL or missing references) //IL_362c: Unknown result type (might be due to invalid IL or missing references) //IL_3632: Unknown result type (might be due to invalid IL or missing references) //IL_3637: Unknown result type (might be due to invalid IL or missing references) //IL_363d: Unknown result type (might be due to invalid IL or missing references) //IL_3647: Unknown result type (might be due to invalid IL or missing references) //IL_364c: Unknown result type (might be due to invalid IL or missing references) //IL_3652: Unknown result type (might be due to invalid IL or missing references) //IL_3657: Unknown result type (might be due to invalid IL or missing references) //IL_3663: Unknown result type (might be due to invalid IL or missing references) //IL_1fc3: Unknown result type (might be due to invalid IL or missing references) //IL_1fce: Unknown result type (might be due to invalid IL or missing references) //IL_1fd4: Unknown result type (might be due to invalid IL or missing references) //IL_1fd9: Unknown result type (might be due to invalid IL or missing references) //IL_1fdf: Unknown result type (might be due to invalid IL or missing references) //IL_1fe4: Unknown result type (might be due to invalid IL or missing references) //IL_1fea: Unknown result type (might be due to invalid IL or missing references) //IL_1fef: Unknown result type (might be due to invalid IL or missing references) //IL_1ff5: Unknown result type (might be due to invalid IL or missing references) //IL_1fff: Unknown result type (might be due to invalid IL or missing references) //IL_2004: Unknown result type (might be due to invalid IL or missing references) //IL_200a: Unknown result type (might be due to invalid IL or missing references) //IL_2014: Unknown result type (might be due to invalid IL or missing references) //IL_2019: Unknown result type (might be due to invalid IL or missing references) //IL_201f: Unknown result type (might be due to invalid IL or missing references) //IL_2024: Unknown result type (might be due to invalid IL or missing references) //IL_202a: Unknown result type (might be due to invalid IL or missing references) //IL_202f: Unknown result type (might be due to invalid IL or missing references) //IL_203b: Unknown result type (might be due to invalid IL or missing references) //IL_098b: Unknown result type (might be due to invalid IL or missing references) //IL_0991: Unknown result type (might be due to invalid IL or missing references) //IL_099b: Unknown result type (might be due to invalid IL or missing references) //IL_09a0: Unknown result type (might be due to invalid IL or missing references) //IL_09ab: Unknown result type (might be due to invalid IL or missing references) //IL_09b1: Unknown result type (might be due to invalid IL or missing references) //IL_09b6: Unknown result type (might be due to invalid IL or missing references) //IL_09bc: Unknown result type (might be due to invalid IL or missing references) //IL_09c1: Unknown result type (might be due to invalid IL or missing references) //IL_09c7: Unknown result type (might be due to invalid IL or missing references) //IL_09cc: Unknown result type (might be due to invalid IL or missing references) //IL_09d2: Unknown result type (might be due to invalid IL or missing references) //IL_09dc: Unknown result type (might be due to invalid IL or missing references) //IL_09e1: Unknown result type (might be due to invalid IL or missing references) //IL_09e7: Unknown result type (might be due to invalid IL or missing references) //IL_09f1: Unknown result type (might be due to invalid IL or missing references) //IL_09f6: Unknown result type (might be due to invalid IL or missing references) //IL_09fc: Unknown result type (might be due to invalid IL or missing references) //IL_0a01: Unknown result type (might be due to invalid IL or missing references) //IL_0a07: Unknown result type (might be due to invalid IL or missing references) //IL_0a11: Unknown result type (might be due to invalid IL or missing references) //IL_0a16: Unknown result type (might be due to invalid IL or missing references) //IL_0a1c: Unknown result type (might be due to invalid IL or missing references) //IL_0a21: Unknown result type (might be due to invalid IL or missing references) //IL_0a2d: Unknown result type (might be due to invalid IL or missing references) //IL_367d: Unknown result type (might be due to invalid IL or missing references) //IL_3683: Unknown result type (might be due to invalid IL or missing references) //IL_3688: Unknown result type (might be due to invalid IL or missing references) //IL_368e: Unknown result type (might be due to invalid IL or missing references) //IL_3698: Unknown result type (might be due to invalid IL or missing references) //IL_369d: Unknown result type (might be due to invalid IL or missing references) //IL_36a3: Unknown result type (might be due to invalid IL or missing references) //IL_36a8: Unknown result type (might be due to invalid IL or missing references) //IL_36ae: Unknown result type (might be due to invalid IL or missing references) //IL_36b8: Unknown result type (might be due to invalid IL or missing references) //IL_36bd: Unknown result type (might be due to invalid IL or missing references) //IL_36c3: Unknown result type (might be due to invalid IL or missing references) //IL_36c8: Unknown result type (might be due to invalid IL or missing references) //IL_36d3: Unknown result type (might be due to invalid IL or missing references) //IL_36d9: Unknown result type (might be due to invalid IL or missing references) //IL_36de: Unknown result type (might be due to invalid IL or missing references) //IL_36e4: Unknown result type (might be due to invalid IL or missing references) //IL_36ee: Unknown result type (might be due to invalid IL or missing references) //IL_36f3: Unknown result type (might be due to invalid IL or missing references) //IL_36f9: Unknown result type (might be due to invalid IL or missing references) //IL_36fe: Unknown result type (might be due to invalid IL or missing references) //IL_3704: Unknown result type (might be due to invalid IL or missing references) //IL_370e: Unknown result type (might be due to invalid IL or missing references) //IL_3713: Unknown result type (might be due to invalid IL or missing references) //IL_3719: Unknown result type (might be due to invalid IL or missing references) //IL_371e: Unknown result type (might be due to invalid IL or missing references) //IL_372a: Unknown result type (might be due to invalid IL or missing references) //IL_2050: Unknown result type (might be due to invalid IL or missing references) //IL_2056: Unknown result type (might be due to invalid IL or missing references) //IL_2060: Unknown result type (might be due to invalid IL or missing references) //IL_2065: Unknown result type (might be due to invalid IL or missing references) //IL_2070: Unknown result type (might be due to invalid IL or missing references) //IL_2076: Unknown result type (might be due to invalid IL or missing references) //IL_207b: Unknown result type (might be due to invalid IL or missing references) //IL_2081: Unknown result type (might be due to invalid IL or missing references) //IL_2086: Unknown result type (might be due to invalid IL or missing references) //IL_208c: Unknown result type (might be due to invalid IL or missing references) //IL_2091: Unknown result type (might be due to invalid IL or missing references) //IL_2097: Unknown result type (might be due to invalid IL or missing references) //IL_20a1: Unknown result type (might be due to invalid IL or missing references) //IL_20a6: Unknown result type (might be due to invalid IL or missing references) //IL_20ac: Unknown result type (might be due to invalid IL or missing references) //IL_20b6: Unknown result type (might be due to invalid IL or missing references) //IL_20bb: Unknown result type (might be due to invalid IL or missing references) //IL_20c1: Unknown result type (might be due to invalid IL or missing references) //IL_20c6: Unknown result type (might be due to invalid IL or missing references) //IL_20cc: Unknown result type (might be due to invalid IL or missing references) //IL_20d6: Unknown result type (might be due to invalid IL or missing references) //IL_20db: Unknown result type (might be due to invalid IL or missing references) //IL_20e1: Unknown result type (might be due to invalid IL or missing references) //IL_20e6: Unknown result type (might be due to invalid IL or missing references) //IL_20f2: Unknown result type (might be due to invalid IL or missing references) //IL_0a42: Unknown result type (might be due to invalid IL or missing references) //IL_0a48: Unknown result type (might be due to invalid IL or missing references) //IL_0a52: Unknown result type (might be due to invalid IL or missing references) //IL_0a57: Unknown result type (might be due to invalid IL or missing references) //IL_0a62: Unknown result type (might be due to invalid IL or missing references) //IL_0a68: Unknown result type (might be due to invalid IL or missing references) //IL_0a6d: Unknown result type (might be due to invalid IL or missing references) //IL_0a73: Unknown result type (might be due to invalid IL or missing references) //IL_0a78: Unknown result type (might be due to invalid IL or missing references) //IL_0a7e: Unknown result type (might be due to invalid IL or missing references) //IL_0a83: Unknown result type (might be due to invalid IL or missing references) //IL_0a89: Unknown result type (might be due to invalid IL or missing references) //IL_0a93: Unknown result type (might be due to invalid IL or missing references) //IL_0a98: Unknown result type (might be due to invalid IL or missing references) //IL_0a9e: Unknown result type (might be due to invalid IL or missing references) //IL_0aa8: Unknown result type (might be due to invalid IL or missing references) //IL_0aad: Unknown result type (might be due to invalid IL or missing references) //IL_0ab3: Unknown result type (might be due to invalid IL or missing references) //IL_0ab8: Unknown result type (might be due to invalid IL or missing references) //IL_0abe: Unknown result type (might be due to invalid IL or missing references) //IL_0ac8: Unknown result type (might be due to invalid IL or missing references) //IL_0acd: Unknown result type (might be due to invalid IL or missing references) //IL_0ad3: Unknown result type (might be due to invalid IL or missing references) //IL_0ad8: Unknown result type (might be due to invalid IL or missing references) //IL_0ae4: Unknown result type (might be due to invalid IL or missing references) //IL_373f: Unknown result type (might be due to invalid IL or missing references) //IL_374a: Unknown result type (might be due to invalid IL or missing references) //IL_3750: Unknown result type (might be due to invalid IL or missing references) //IL_3755: Unknown result type (might be due to invalid IL or missing references) //IL_375b: Unknown result type (might be due to invalid IL or missing references) //IL_3760: Unknown result type (might be due to invalid IL or missing references) //IL_3766: Unknown result type (might be due to invalid IL or missing references) //IL_376b: Unknown result type (might be due to invalid IL or missing references) //IL_3771: Unknown result type (might be due to invalid IL or missing references) //IL_377b: Unknown result type (might be due to invalid IL or missing references) //IL_3780: Unknown result type (might be due to invalid IL or missing references) //IL_3786: Unknown result type (might be due to invalid IL or missing references) //IL_3790: Unknown result type (might be due to invalid IL or missing references) //IL_3795: Unknown result type (might be due to invalid IL or missing references) //IL_379b: Unknown result type (might be due to invalid IL or missing references) //IL_37a0: Unknown result type (might be due to invalid IL or missing references) //IL_37a6: Unknown result type (might be due to invalid IL or missing references) //IL_37ab: Unknown result type (might be due to invalid IL or missing references) //IL_37b7: Unknown result type (might be due to invalid IL or missing references) //IL_2107: Unknown result type (might be due to invalid IL or missing references) //IL_210d: Unknown result type (might be due to invalid IL or missing references) //IL_2117: Unknown result type (might be due to invalid IL or missing references) //IL_211c: Unknown result type (might be due to invalid IL or missing references) //IL_2127: Unknown result type (might be due to invalid IL or missing references) //IL_212d: Unknown result type (might be due to invalid IL or missing references) //IL_2132: Unknown result type (might be due to invalid IL or missing references) //IL_2138: Unknown result type (might be due to invalid IL or missing references) //IL_213d: Unknown result type (might be due to invalid IL or missing references) //IL_2143: Unknown result type (might be due to invalid IL or missing references) //IL_2148: Unknown result type (might be due to invalid IL or missing references) //IL_214e: Unknown result type (might be due to invalid IL or missing references) //IL_2158: Unknown result type (might be due to invalid IL or missing references) //IL_215d: Unknown result type (might be due to invalid IL or missing references) //IL_2163: Unknown result type (might be due to invalid IL or missing references) //IL_216d: Unknown result type (might be due to invalid IL or missing references) //IL_2172: Unknown result type (might be due to invalid IL or missing references) //IL_2178: Unknown result type (might be due to invalid IL or missing references) //IL_217d: Unknown result type (might be due to invalid IL or missing references) //IL_2183: Unknown result type (might be due to invalid IL or missing references) //IL_218d: Unknown result type (might be due to invalid IL or missing references) //IL_2192: Unknown result type (might be due to invalid IL or missing references) //IL_2198: Unknown result type (might be due to invalid IL or missing references) //IL_219d: Unknown result type (might be due to invalid IL or missing references) //IL_21a9: Unknown result type (might be due to invalid IL or missing references) //IL_0afe: Unknown result type (might be due to invalid IL or missing references) //IL_0b04: Unknown result type (might be due to invalid IL or missing references) //IL_0b09: Unknown result type (might be due to invalid IL or missing references) //IL_0b0f: Unknown result type (might be due to invalid IL or missing references) //IL_0b14: Unknown result type (might be due to invalid IL or missing references) //IL_0b1a: Unknown result type (might be due to invalid IL or missing references) //IL_0b24: Unknown result type (might be due to invalid IL or missing references) //IL_0b29: Unknown result type (might be due to invalid IL or missing references) //IL_0b2f: Unknown result type (might be due to invalid IL or missing references) //IL_0b34: Unknown result type (might be due to invalid IL or missing references) //IL_0b3f: Unknown result type (might be due to invalid IL or missing references) //IL_0b45: Unknown result type (might be due to invalid IL or missing references) //IL_0b4a: Unknown result type (might be due to invalid IL or missing references) //IL_0b50: Unknown result type (might be due to invalid IL or missing references) //IL_0b55: Unknown result type (might be due to invalid IL or missing references) //IL_0b5b: Unknown result type (might be due to invalid IL or missing references) //IL_0b65: Unknown result type (might be due to invalid IL or missing references) //IL_0b6a: Unknown result type (might be due to invalid IL or missing references) //IL_0b70: Unknown result type (might be due to invalid IL or missing references) //IL_0b75: Unknown result type (might be due to invalid IL or missing references) //IL_0b81: Unknown result type (might be due to invalid IL or missing references) //IL_37cc: Unknown result type (might be due to invalid IL or missing references) //IL_37d2: Unknown result type (might be due to invalid IL or missing references) //IL_37dc: Unknown result type (might be due to invalid IL or missing references) //IL_37e1: Unknown result type (might be due to invalid IL or missing references) //IL_37ec: Unknown result type (might be due to invalid IL or missing references) //IL_37f2: Unknown result type (might be due to invalid IL or missing references) //IL_37f7: Unknown result type (might be due to invalid IL or missing references) //IL_37fd: Unknown result type (might be due to invalid IL or missing references) //IL_3802: Unknown result type (might be due to invalid IL or missing references) //IL_3808: Unknown result type (might be due to invalid IL or missing references) //IL_380d: Unknown result type (might be due to invalid IL or missing references) //IL_3813: Unknown result type (might be due to invalid IL or missing references) //IL_381d: Unknown result type (might be due to invalid IL or missing references) //IL_3822: Unknown result type (might be due to invalid IL or missing references) //IL_3828: Unknown result type (might be due to invalid IL or missing references) //IL_3832: Unknown result type (might be due to invalid IL or missing references) //IL_3837: Unknown result type (might be due to invalid IL or missing references) //IL_383d: Unknown result type (might be due to invalid IL or missing references) //IL_3842: Unknown result type (might be due to invalid IL or missing references) //IL_3848: Unknown result type (might be due to invalid IL or missing references) //IL_3852: Unknown result type (might be due to invalid IL or missing references) //IL_3857: Unknown result type (might be due to invalid IL or missing references) //IL_385d: Unknown result type (might be due to invalid IL or missing references) //IL_3862: Unknown result type (might be due to invalid IL or missing references) //IL_386e: Unknown result type (might be due to invalid IL or missing references) //IL_21be: Unknown result type (might be due to invalid IL or missing references) //IL_21c4: Unknown result type (might be due to invalid IL or missing references) //IL_21ce: Unknown result type (might be due to invalid IL or missing references) //IL_21d3: Unknown result type (might be due to invalid IL or missing references) //IL_21de: Unknown result type (might be due to invalid IL or missing references) //IL_21e4: Unknown result type (might be due to invalid IL or missing references) //IL_21e9: Unknown result type (might be due to invalid IL or missing references) //IL_21ef: Unknown result type (might be due to invalid IL or missing references) //IL_21f4: Unknown result type (might be due to invalid IL or missing references) //IL_21fa: Unknown result type (might be due to invalid IL or missing references) //IL_21ff: Unknown result type (might be due to invalid IL or missing references) //IL_2205: Unknown result type (might be due to invalid IL or missing references) //IL_220f: Unknown result type (might be due to invalid IL or missing references) //IL_2214: Unknown result type (might be due to invalid IL or missing references) //IL_221a: Unknown result type (might be due to invalid IL or missing references) //IL_2224: Unknown result type (might be due to invalid IL or missing references) //IL_2229: Unknown result type (might be due to invalid IL or missing references) //IL_222f: Unknown result type (might be due to invalid IL or missing references) //IL_2234: Unknown result type (might be due to invalid IL or missing references) //IL_223a: Unknown result type (might be due to invalid IL or missing references) //IL_2244: Unknown result type (might be due to invalid IL or missing references) //IL_2249: Unknown result type (might be due to invalid IL or missing references) //IL_224f: Unknown result type (might be due to invalid IL or missing references) //IL_2254: Unknown result type (might be due to invalid IL or missing references) //IL_2260: Unknown result type (might be due to invalid IL or missing references) //IL_0b9b: Unknown result type (might be due to invalid IL or missing references) //IL_0ba1: Unknown result type (might be due to invalid IL or missing references) //IL_0ba6: Unknown result type (might be due to invalid IL or missing references) //IL_0bac: Unknown result type (might be due to invalid IL or missing references) //IL_0bb1: Unknown result type (might be due to invalid IL or missing references) //IL_0bb7: Unknown result type (might be due to invalid IL or missing references) //IL_0bc1: Unknown result type (might be due to invalid IL or missing references) //IL_0bc6: Unknown result type (might be due to invalid IL or missing references) //IL_0bcc: Unknown result type (might be due to invalid IL or missing references) //IL_0bd1: Unknown result type (might be due to invalid IL or missing references) //IL_0bd7: Unknown result type (might be due to invalid IL or missing references) //IL_0be1: Unknown result type (might be due to invalid IL or missing references) //IL_0be6: Unknown result type (might be due to invalid IL or missing references) //IL_0bf1: Unknown result type (might be due to invalid IL or missing references) //IL_0bf7: Unknown result type (might be due to invalid IL or missing references) //IL_0bfc: Unknown result type (might be due to invalid IL or missing references) //IL_0c02: Unknown result type (might be due to invalid IL or missing references) //IL_0c07: Unknown result type (might be due to invalid IL or missing references) //IL_0c0d: Unknown result type (might be due to invalid IL or missing references) //IL_0c17: Unknown result type (might be due to invalid IL or missing references) //IL_0c1c: Unknown result type (might be due to invalid IL or missing references) //IL_0c22: Unknown result type (might be due to invalid IL or missing references) //IL_0c27: Unknown result type (might be due to invalid IL or missing references) //IL_0c2d: Unknown result type (might be due to invalid IL or missing references) //IL_0c37: Unknown result type (might be due to invalid IL or missing references) //IL_0c3c: Unknown result type (might be due to invalid IL or missing references) //IL_0c48: Unknown result type (might be due to invalid IL or missing references) //IL_3883: Unknown result type (might be due to invalid IL or missing references) //IL_3889: Unknown result type (might be due to invalid IL or missing references) //IL_3893: Unknown result type (might be due to invalid IL or missing references) //IL_3898: Unknown result type (might be due to invalid IL or missing references) //IL_38a3: Unknown result type (might be due to invalid IL or missing references) //IL_38a9: Unknown result type (might be due to invalid IL or missing references) //IL_38ae: Unknown result type (might be due to invalid IL or missing references) //IL_38b4: Unknown result type (might be due to invalid IL or missing references) //IL_38b9: Unknown result type (might be due to invalid IL or missing references) //IL_38bf: Unknown result type (might be due to invalid IL or missing references) //IL_38c4: Unknown result type (might be due to invalid IL or missing references) //IL_38ca: Unknown result type (might be due to invalid IL or missing references) //IL_38d4: Unknown result type (might be due to invalid IL or missing references) //IL_38d9: Unknown result type (might be due to invalid IL or missing references) //IL_38df: Unknown result type (might be due to invalid IL or missing references) //IL_38e9: Unknown result type (might be due to invalid IL or missing references) //IL_38ee: Unknown result type (might be due to invalid IL or missing references) //IL_38f4: Unknown result type (might be due to invalid IL or missing references) //IL_38f9: Unknown result type (might be due to invalid IL or missing references) //IL_38ff: Unknown result type (might be due to invalid IL or missing references) //IL_3909: Unknown result type (might be due to invalid IL or missing references) //IL_390e: Unknown result type (might be due to invalid IL or missing references) //IL_3914: Unknown result type (might be due to invalid IL or missing references) //IL_3919: Unknown result type (might be due to invalid IL or missing references) //IL_3925: Unknown result type (might be due to invalid IL or missing references) //IL_227a: Unknown result type (might be due to invalid IL or missing references) //IL_2280: Unknown result type (might be due to invalid IL or missing references) //IL_2285: Unknown result type (might be due to invalid IL or missing references) //IL_228b: Unknown result type (might be due to invalid IL or missing references) //IL_2290: Unknown result type (might be due to invalid IL or missing references) //IL_2296: Unknown result type (might be due to invalid IL or missing references) //IL_22a0: Unknown result type (might be due to invalid IL or missing references) //IL_22a5: Unknown result type (might be due to invalid IL or missing references) //IL_22ab: Unknown result type (might be due to invalid IL or missing references) //IL_22b0: Unknown result type (might be due to invalid IL or missing references) //IL_22bb: Unknown result type (might be due to invalid IL or missing references) //IL_22c1: Unknown result type (might be due to invalid IL or missing references) //IL_22c6: Unknown result type (might be due to invalid IL or missing references) //IL_22cc: Unknown result type (might be due to invalid IL or missing references) //IL_22d1: Unknown result type (might be due to invalid IL or missing references) //IL_22d7: Unknown result type (might be due to invalid IL or missing references) //IL_22e1: Unknown result type (might be due to invalid IL or missing references) //IL_22e6: Unknown result type (might be due to invalid IL or missing references) //IL_22ec: Unknown result type (might be due to invalid IL or missing references) //IL_22f1: Unknown result type (might be due to invalid IL or missing references) //IL_22fd: Unknown result type (might be due to invalid IL or missing references) //IL_0c62: Unknown result type (might be due to invalid IL or missing references) //IL_0c68: Unknown result type (might be due to invalid IL or missing references) //IL_0c6d: Unknown result type (might be due to invalid IL or missing references) //IL_0c73: Unknown result type (might be due to invalid IL or missing references) //IL_0c78: Unknown result type (might be due to invalid IL or missing references) //IL_0c7e: Unknown result type (might be due to invalid IL or missing references) //IL_0c88: Unknown result type (might be due to invalid IL or missing references) //IL_0c8d: Unknown result type (might be due to invalid IL or missing references) //IL_0c93: Unknown result type (might be due to invalid IL or missing references) //IL_0c98: Unknown result type (might be due to invalid IL or missing references) //IL_0c9e: Unknown result type (might be due to invalid IL or missing references) //IL_0ca8: Unknown result type (might be due to invalid IL or missing references) //IL_0cad: Unknown result type (might be due to invalid IL or missing references) //IL_0cb8: Unknown result type (might be due to invalid IL or missing references) //IL_0cbe: Unknown result type (might be due to invalid IL or missing references) //IL_0cc3: Unknown result type (might be due to invalid IL or missing references) //IL_0cc9: Unknown result type (might be due to invalid IL or missing references) //IL_0cce: Unknown result type (might be due to invalid IL or missing references) //IL_0cd4: Unknown result type (might be due to invalid IL or missing references) //IL_0cde: Unknown result type (might be due to invalid IL or missing references) //IL_0ce3: Unknown result type (might be due to invalid IL or missing references) //IL_0ce9: Unknown result type (might be due to invalid IL or missing references) //IL_0cee: Unknown result type (might be due to invalid IL or missing references) //IL_0cf4: Unknown result type (might be due to invalid IL or missing references) //IL_0cfe: Unknown result type (might be due to invalid IL or missing references) //IL_0d03: Unknown result type (might be due to invalid IL or missing references) //IL_0d0f: Unknown result type (might be due to invalid IL or missing references) //IL_393a: Unknown result type (might be due to invalid IL or missing references) //IL_3940: Unknown result type (might be due to invalid IL or missing references) //IL_394a: Unknown result type (might be due to invalid IL or missing references) //IL_394f: Unknown result type (might be due to invalid IL or missing references) //IL_395a: Unknown result type (might be due to invalid IL or missing references) //IL_3960: Unknown result type (might be due to invalid IL or missing references) //IL_3965: Unknown result type (might be due to invalid IL or missing references) //IL_396b: Unknown result type (might be due to invalid IL or missing references) //IL_3970: Unknown result type (might be due to invalid IL or missing references) //IL_3976: Unknown result type (might be due to invalid IL or missing references) //IL_397b: Unknown result type (might be due to invalid IL or missing references) //IL_3981: Unknown result type (might be due to invalid IL or missing references) //IL_398b: Unknown result type (might be due to invalid IL or missing references) //IL_3990: Unknown result type (might be due to invalid IL or missing references) //IL_3996: Unknown result type (might be due to invalid IL or missing references) //IL_39a0: Unknown result type (might be due to invalid IL or missing references) //IL_39a5: Unknown result type (might be due to invalid IL or missing references) //IL_39ab: Unknown result type (might be due to invalid IL or missing references) //IL_39b0: Unknown result type (might be due to invalid IL or missing references) //IL_39b6: Unknown result type (might be due to invalid IL or missing references) //IL_39c0: Unknown result type (might be due to invalid IL or missing references) //IL_39c5: Unknown result type (might be due to invalid IL or missing references) //IL_39cb: Unknown result type (might be due to invalid IL or missing references) //IL_39d0: Unknown result type (might be due to invalid IL or missing references) //IL_39dc: Unknown result type (might be due to invalid IL or missing references) //IL_2317: Unknown result type (might be due to invalid IL or missing references) //IL_231d: Unknown result type (might be due to invalid IL or missing references) //IL_2322: Unknown result type (might be due to invalid IL or missing references) //IL_2328: Unknown result type (might be due to invalid IL or missing references) //IL_232d: Unknown result type (might be due to invalid IL or missing references) //IL_2333: Unknown result type (might be due to invalid IL or missing references) //IL_233d: Unknown result type (might be due to invalid IL or missing references) //IL_2342: Unknown result type (might be due to invalid IL or missing references) //IL_2348: Unknown result type (might be due to invalid IL or missing references) //IL_234d: Unknown result type (might be due to invalid IL or missing references) //IL_2353: Unknown result type (might be due to invalid IL or missing references) //IL_235d: Unknown result type (might be due to invalid IL or missing references) //IL_2362: Unknown result type (might be due to invalid IL or missing references) //IL_236d: Unknown result type (might be due to invalid IL or missing references) //IL_2373: Unknown result type (might be due to invalid IL or missing references) //IL_2378: Unknown result type (might be due to invalid IL or missing references) //IL_237e: Unknown result type (might be due to invalid IL or missing references) //IL_2383: Unknown result type (might be due to invalid IL or missing references) //IL_2389: Unknown result type (might be due to invalid IL or missing references) //IL_2393: Unknown result type (might be due to invalid IL or missing references) //IL_2398: Unknown result type (might be due to invalid IL or missing references) //IL_239e: Unknown result type (might be due to invalid IL or missing references) //IL_23a3: Unknown result type (might be due to invalid IL or missing references) //IL_23a9: Unknown result type (might be due to invalid IL or missing references) //IL_23b3: Unknown result type (might be due to invalid IL or missing references) //IL_23b8: Unknown result type (might be due to invalid IL or missing references) //IL_23c4: Unknown result type (might be due to invalid IL or missing references) //IL_0d29: Unknown result type (might be due to invalid IL or missing references) //IL_0d2f: Unknown result type (might be due to invalid IL or missing references) //IL_0d34: Unknown result type (might be due to invalid IL or missing references) //IL_0d3a: Unknown result type (might be due to invalid IL or missing references) //IL_0d3f: Unknown result type (might be due to invalid IL or missing references) //IL_0d45: Unknown result type (might be due to invalid IL or missing references) //IL_0d4f: Unknown result type (might be due to invalid IL or missing references) //IL_0d54: Unknown result type (might be due to invalid IL or missing references) //IL_0d5a: Unknown result type (might be due to invalid IL or missing references) //IL_0d5f: Unknown result type (might be due to invalid IL or missing references) //IL_0d65: Unknown result type (might be due to invalid IL or missing references) //IL_0d6f: Unknown result type (might be due to invalid IL or missing references) //IL_0d74: Unknown result type (might be due to invalid IL or missing references) //IL_0d7f: Unknown result type (might be due to invalid IL or missing references) //IL_0d85: Unknown result type (might be due to invalid IL or missing references) //IL_0d8a: Unknown result type (might be due to invalid IL or missing references) //IL_0d90: Unknown result type (might be due to invalid IL or missing references) //IL_0d95: Unknown result type (might be due to invalid IL or missing references) //IL_0d9b: Unknown result type (might be due to invalid IL or missing references) //IL_0da5: Unknown result type (might be due to invalid IL or missing references) //IL_0daa: Unknown result type (might be due to invalid IL or missing references) //IL_0db0: Unknown result type (might be due to invalid IL or missing references) //IL_0db5: Unknown result type (might be due to invalid IL or missing references) //IL_0dbb: Unknown result type (might be due to invalid IL or missing references) //IL_0dc5: Unknown result type (might be due to invalid IL or missing references) //IL_0dca: Unknown result type (might be due to invalid IL or missing references) //IL_0dd6: Unknown result type (might be due to invalid IL or missing references) //IL_39f6: Unknown result type (might be due to invalid IL or missing references) //IL_39fc: Unknown result type (might be due to invalid IL or missing references) //IL_3a01: Unknown result type (might be due to invalid IL or missing references) //IL_3a07: Unknown result type (might be due to invalid IL or missing references) //IL_3a0c: Unknown result type (might be due to invalid IL or missing references) //IL_3a12: Unknown result type (might be due to invalid IL or missing references) //IL_3a1c: Unknown result type (might be due to invalid IL or missing references) //IL_3a21: Unknown result type (might be due to invalid IL or missing references) //IL_3a27: Unknown result type (might be due to invalid IL or missing references) //IL_3a2c: Unknown result type (might be due to invalid IL or missing references) //IL_3a37: Unknown result type (might be due to invalid IL or missing references) //IL_3a3d: Unknown result type (might be due to invalid IL or missing references) //IL_3a42: Unknown result type (might be due to invalid IL or missing references) //IL_3a48: Unknown result type (might be due to invalid IL or missing references) //IL_3a4d: Unknown result type (might be due to invalid IL or missing references) //IL_3a53: Unknown result type (might be due to invalid IL or missing references) //IL_3a5d: Unknown result type (might be due to invalid IL or missing references) //IL_3a62: Unknown result type (might be due to invalid IL or missing references) //IL_3a68: Unknown result type (might be due to invalid IL or missing references) //IL_3a6d: Unknown result type (might be due to invalid IL or missing references) //IL_3a79: Unknown result type (might be due to invalid IL or missing references) //IL_23de: Unknown result type (might be due to invalid IL or missing references) //IL_23e4: Unknown result type (might be due to invalid IL or missing references) //IL_23e9: Unknown result type (might be due to invalid IL or missing references) //IL_23ef: Unknown result type (might be due to invalid IL or missing references) //IL_23f4: Unknown result type (might be due to invalid IL or missing references) //IL_23fa: Unknown result type (might be due to invalid IL or missing references) //IL_2404: Unknown result type (might be due to invalid IL or missing references) //IL_2409: Unknown result type (might be due to invalid IL or missing references) //IL_240f: Unknown result type (might be due to invalid IL or missing references) //IL_2414: Unknown result type (might be due to invalid IL or missing references) //IL_241a: Unknown result type (might be due to invalid IL or missing references) //IL_2424: Unknown result type (might be due to invalid IL or missing references) //IL_2429: Unknown result type (might be due to invalid IL or missing references) //IL_2434: Unknown result type (might be due to invalid IL or missing references) //IL_243a: Unknown result type (might be due to invalid IL or missing references) //IL_243f: Unknown result type (might be due to invalid IL or missing references) //IL_2445: Unknown result type (might be due to invalid IL or missing references) //IL_244a: Unknown result type (might be due to invalid IL or missing references) //IL_2450: Unknown result type (might be due to invalid IL or missing references) //IL_245a: Unknown result type (might be due to invalid IL or missing references) //IL_245f: Unknown result type (might be due to invalid IL or missing references) //IL_2465: Unknown result type (might be due to invalid IL or missing references) //IL_246a: Unknown result type (might be due to invalid IL or missing references) //IL_2470: Unknown result type (might be due to invalid IL or missing references) //IL_247a: Unknown result type (might be due to invalid IL or missing references) //IL_247f: Unknown result type (might be due to invalid IL or missing references) //IL_248b: Unknown result type (might be due to invalid IL or missing references) //IL_0df0: Unknown result type (might be due to invalid IL or missing references) //IL_0df6: Unknown result type (might be due to invalid IL or missing references) //IL_0dfb: Unknown result type (might be due to invalid IL or missing references) //IL_0e01: Unknown result type (might be due to invalid IL or missing references) //IL_0e06: Unknown result type (might be due to invalid IL or missing references) //IL_0e0c: Unknown result type (might be due to invalid IL or missing references) //IL_0e16: Unknown result type (might be due to invalid IL or missing references) //IL_0e1b: Unknown result type (might be due to invalid IL or missing references) //IL_0e21: Unknown result type (might be due to invalid IL or missing references) //IL_0e26: Unknown result type (might be due to invalid IL or missing references) //IL_0e2c: Unknown result type (might be due to invalid IL or missing references) //IL_0e36: Unknown result type (might be due to invalid IL or missing references) //IL_0e3b: Unknown result type (might be due to invalid IL or missing references) //IL_0e46: Unknown result type (might be due to invalid IL or missing references) //IL_0e4c: Unknown result type (might be due to invalid IL or missing references) //IL_0e51: Unknown result type (might be due to invalid IL or missing references) //IL_0e57: Unknown result type (might be due to invalid IL or missing references) //IL_0e5c: Unknown result type (might be due to invalid IL or missing references) //IL_0e62: Unknown result type (might be due to invalid IL or missing references) //IL_0e6c: Unknown result type (might be due to invalid IL or missing references) //IL_0e71: Unknown result type (might be due to invalid IL or missing references) //IL_0e77: Unknown result type (might be due to invalid IL or missing references) //IL_0e7c: Unknown result type (might be due to invalid IL or missing references) //IL_0e82: Unknown result type (might be due to invalid IL or missing references) //IL_0e8c: Unknown result type (might be due to invalid IL or missing references) //IL_0e91: Unknown result type (might be due to invalid IL or missing references) //IL_0e9d: Unknown result type (might be due to invalid IL or missing references) //IL_3a93: Unknown result type (might be due to invalid IL or missing references) //IL_3a99: Unknown result type (might be due to invalid IL or missing references) //IL_3a9e: Unknown result type (might be due to invalid IL or missing references) //IL_3aa4: Unknown result type (might be due to invalid IL or missing references) //IL_3aa9: Unknown result type (might be due to invalid IL or missing references) //IL_3aaf: Unknown result type (might be due to invalid IL or missing references) //IL_3ab9: Unknown result type (might be due to invalid IL or missing references) //IL_3abe: Unknown result type (might be due to invalid IL or missing references) //IL_3ac4: Unknown result type (might be due to invalid IL or missing references) //IL_3ac9: Unknown result type (might be due to invalid IL or missing references) //IL_3acf: Unknown result type (might be due to invalid IL or missing references) //IL_3ad9: Unknown result type (might be due to invalid IL or missing references) //IL_3ade: Unknown result type (might be due to invalid IL or missing references) //IL_3ae9: Unknown result type (might be due to invalid IL or missing references) //IL_3aef: Unknown result type (might be due to invalid IL or missing references) //IL_3af4: Unknown result type (might be due to invalid IL or missing references) //IL_3afa: Unknown result type (might be due to invalid IL or missing references) //IL_3aff: Unknown result type (might be due to invalid IL or missing references) //IL_3b05: Unknown result type (might be due to invalid IL or missing references) //IL_3b0f: Unknown result type (might be due to invalid IL or missing references) //IL_3b14: Unknown result type (might be due to invalid IL or missing references) //IL_3b1a: Unknown result type (might be due to invalid IL or missing references) //IL_3b1f: Unknown result type (might be due to invalid IL or missing references) //IL_3b25: Unknown result type (might be due to invalid IL or missing references) //IL_3b2f: Unknown result type (might be due to invalid IL or missing references) //IL_3b34: Unknown result type (might be due to invalid IL or missing references) //IL_3b40: Unknown result type (might be due to invalid IL or missing references) //IL_24a5: Unknown result type (might be due to invalid IL or missing references) //IL_24ab: Unknown result type (might be due to invalid IL or missing references) //IL_24b0: Unknown result type (might be due to invalid IL or missing references) //IL_24b6: Unknown result type (might be due to invalid IL or missing references) //IL_24bb: Unknown result type (might be due to invalid IL or missing references) //IL_24c1: Unknown result type (might be due to invalid IL or missing references) //IL_24cb: Unknown result type (might be due to invalid IL or missing references) //IL_24d0: Unknown result type (might be due to invalid IL or missing references) //IL_24d6: Unknown result type (might be due to invalid IL or missing references) //IL_24db: Unknown result type (might be due to invalid IL or missing references) //IL_24e1: Unknown result type (might be due to invalid IL or missing references) //IL_24eb: Unknown result type (might be due to invalid IL or missing references) //IL_24f0: Unknown result type (might be due to invalid IL or missing references) //IL_24fb: Unknown result type (might be due to invalid IL or missing references) //IL_2501: Unknown result type (might be due to invalid IL or missing references) //IL_2506: Unknown result type (might be due to invalid IL or missing references) //IL_250c: Unknown result type (might be due to invalid IL or missing references) //IL_2511: Unknown result type (might be due to invalid IL or missing references) //IL_2517: Unknown result type (might be due to invalid IL or missing references) //IL_2521: Unknown result type (might be due to invalid IL or missing references) //IL_2526: Unknown result type (might be due to invalid IL or missing references) //IL_252c: Unknown result type (might be due to invalid IL or missing references) //IL_2531: Unknown result type (might be due to invalid IL or missing references) //IL_2537: Unknown result type (might be due to invalid IL or missing references) //IL_2541: Unknown result type (might be due to invalid IL or missing references) //IL_2546: Unknown result type (might be due to invalid IL or missing references) //IL_2552: Unknown result type (might be due to invalid IL or missing references) //IL_0eb7: Unknown result type (might be due to invalid IL or missing references) //IL_0ebd: Unknown result type (might be due to invalid IL or missing references) //IL_0ec2: Unknown result type (might be due to invalid IL or missing references) //IL_0ec8: Unknown result type (might be due to invalid IL or missing references) //IL_0ecd: Unknown result type (might be due to invalid IL or missing references) //IL_0ed3: Unknown result type (might be due to invalid IL or missing references) //IL_0edd: Unknown result type (might be due to invalid IL or missing references) //IL_0ee2: Unknown result type (might be due to invalid IL or missing references) //IL_0ee8: Unknown result type (might be due to invalid IL or missing references) //IL_0eed: Unknown result type (might be due to invalid IL or missing references) //IL_0ef3: Unknown result type (might be due to invalid IL or missing references) //IL_0efd: Unknown result type (might be due to invalid IL or missing references) //IL_0f02: Unknown result type (might be due to invalid IL or missing references) //IL_0f0d: Unknown result type (might be due to invalid IL or missing references) //IL_0f13: Unknown result type (might be due to invalid IL or missing references) //IL_0f18: Unknown result type (might be due to invalid IL or missing references) //IL_0f1e: Unknown result type (might be due to invalid IL or missing references) //IL_0f23: Unknown result type (might be due to invalid IL or missing references) //IL_0f29: Unknown result type (might be due to invalid IL or missing references) //IL_0f33: Unknown result type (might be due to invalid IL or missing references) //IL_0f38: Unknown result type (might be due to invalid IL or missing references) //IL_0f3e: Unknown result type (might be due to invalid IL or missing references) //IL_0f43: Unknown result type (might be due to invalid IL or missing references) //IL_0f49: Unknown result type (might be due to invalid IL or missing references) //IL_0f53: Unknown result type (might be due to invalid IL or missing references) //IL_0f58: Unknown result type (might be due to invalid IL or missing references) //IL_0f64: Unknown result type (might be due to invalid IL or missing references) //IL_3b5a: Unknown result type (might be due to invalid IL or missing references) //IL_3b60: Unknown result type (might be due to invalid IL or missing references) //IL_3b65: Unknown result type (might be due to invalid IL or missing references) //IL_3b6b: Unknown result type (might be due to invalid IL or missing references) //IL_3b70: Unknown result type (might be due to invalid IL or missing references) //IL_3b76: Unknown result type (might be due to invalid IL or missing references) //IL_3b80: Unknown result type (might be due to invalid IL or missing references) //IL_3b85: Unknown result type (might be due to invalid IL or missing references) //IL_3b8b: Unknown result type (might be due to invalid IL or missing references) //IL_3b90: Unknown result type (might be due to invalid IL or missing references) //IL_3b96: Unknown result type (might be due to invalid IL or missing references) //IL_3ba0: Unknown result type (might be due to invalid IL or missing references) //IL_3ba5: Unknown result type (might be due to invalid IL or missing references) //IL_3bb0: Unknown result type (might be due to invalid IL or missing references) //IL_3bb6: Unknown result type (might be due to invalid IL or missing references) //IL_3bbb: Unknown result type (might be due to invalid IL or missing references) //IL_3bc1: Unknown result type (might be due to invalid IL or missing references) //IL_3bc6: Unknown result type (might be due to invalid IL or missing references) //IL_3bcc: Unknown result type (might be due to invalid IL or missing references) //IL_3bd6: Unknown result type (might be due to invalid IL or missing references) //IL_3bdb: Unknown result type (might be due to invalid IL or missing references) //IL_3be1: Unknown result type (might be due to invalid IL or missing references) //IL_3be6: Unknown result type (might be due to invalid IL or missing references) //IL_3bec: Unknown result type (might be due to invalid IL or missing references) //IL_3bf6: Unknown result type (might be due to invalid IL or missing references) //IL_3bfb: Unknown result type (might be due to invalid IL or missing references) //IL_3c07: Unknown result type (might be due to invalid IL or missing references) //IL_256c: Unknown result type (might be due to invalid IL or missing references) //IL_2572: Unknown result type (might be due to invalid IL or missing references) //IL_2577: Unknown result type (might be due to invalid IL or missing references) //IL_257d: Unknown result type (might be due to invalid IL or missing references) //IL_2582: Unknown result type (might be due to invalid IL or missing references) //IL_2588: Unknown result type (might be due to invalid IL or missing references) //IL_2592: Unknown result type (might be due to invalid IL or missing references) //IL_2597: Unknown result type (might be due to invalid IL or missing references) //IL_259d: Unknown result type (might be due to invalid IL or missing references) //IL_25a2: Unknown result type (might be due to invalid IL or missing references) //IL_25a8: Unknown result type (might be due to invalid IL or missing references) //IL_25b2: Unknown result type (might be due to invalid IL or missing references) //IL_25b7: Unknown result type (might be due to invalid IL or missing references) //IL_25c2: Unknown result type (might be due to invalid IL or missing references) //IL_25c8: Unknown result type (might be due to invalid IL or missing references) //IL_25cd: Unknown result type (might be due to invalid IL or missing references) //IL_25d3: Unknown result type (might be due to invalid IL or missing references) //IL_25d8: Unknown result type (might be due to invalid IL or missing references) //IL_25de: Unknown result type (might be due to invalid IL or missing references) //IL_25e8: Unknown result type (might be due to invalid IL or missing references) //IL_25ed: Unknown result type (might be due to invalid IL or missing references) //IL_25f3: Unknown result type (might be due to invalid IL or missing references) //IL_25f8: Unknown result type (might be due to invalid IL or missing references) //IL_25fe: Unknown result type (might be due to invalid IL or missing references) //IL_2608: Unknown result type (might be due to invalid IL or missing references) //IL_260d: Unknown result type (might be due to invalid IL or missing references) //IL_2619: Unknown result type (might be due to invalid IL or missing references) //IL_0f7e: Unknown result type (might be due to invalid IL or missing references) //IL_0f84: Unknown result type (might be due to invalid IL or missing references) //IL_0f89: Unknown result type (might be due to invalid IL or missing references) //IL_0f8f: Unknown result type (might be due to invalid IL or missing references) //IL_0f94: Unknown result type (might be due to invalid IL or missing references) //IL_0f9a: Unknown result type (might be due to invalid IL or missing references) //IL_0fa4: Unknown result type (might be due to invalid IL or missing references) //IL_0fa9: Unknown result type (might be due to invalid IL or missing references) //IL_0faf: Unknown result type (might be due to invalid IL or missing references) //IL_0fb4: Unknown result type (might be due to invalid IL or missing references) //IL_0fba: Unknown result type (might be due to invalid IL or missing references) //IL_0fc4: Unknown result type (might be due to invalid IL or missing references) //IL_0fc9: Unknown result type (might be due to invalid IL or missing references) //IL_0fd4: Unknown result type (might be due to invalid IL or missing references) //IL_0fda: Unknown result type (might be due to invalid IL or missing references) //IL_0fdf: Unknown result type (might be due to invalid IL or missing references) //IL_0fe5: Unknown result type (might be due to invalid IL or missing references) //IL_0fea: Unknown result type (might be due to invalid IL or missing references) //IL_0ff0: Unknown result type (might be due to invalid IL or missing references) //IL_0ffa: Unknown result type (might be due to invalid IL or missing references) //IL_0fff: Unknown result type (might be due to invalid IL or missing references) //IL_1005: Unknown result type (might be due to invalid IL or missing references) //IL_100a: Unknown result type (might be due to invalid IL or missing references) //IL_1010: Unknown result type (might be due to invalid IL or missing references) //IL_101a: Unknown result type (might be due to invalid IL or missing references) //IL_101f: Unknown result type (might be due to invalid IL or missing references) //IL_102b: Unknown result type (might be due to invalid IL or missing references) //IL_3c21: Unknown result type (might be due to invalid IL or missing references) //IL_3c27: Unknown result type (might be due to invalid IL or missing references) //IL_3c2c: Unknown result type (might be due to invalid IL or missing references) //IL_3c32: Unknown result type (might be due to invalid IL or missing references) //IL_3c37: Unknown result type (might be due to invalid IL or missing references) //IL_3c3d: Unknown result type (might be due to invalid IL or missing references) //IL_3c47: Unknown result type (might be due to invalid IL or missing references) //IL_3c4c: Unknown result type (might be due to invalid IL or missing references) //IL_3c52: Unknown result type (might be due to invalid IL or missing references) //IL_3c57: Unknown result type (might be due to invalid IL or missing references) //IL_3c5d: Unknown result type (might be due to invalid IL or missing references) //IL_3c67: Unknown result type (might be due to invalid IL or missing references) //IL_3c6c: Unknown result type (might be due to invalid IL or missing references) //IL_3c77: Unknown result type (might be due to invalid IL or missing references) //IL_3c7d: Unknown result type (might be due to invalid IL or missing references) //IL_3c82: Unknown result type (might be due to invalid IL or missing references) //IL_3c88: Unknown result type (might be due to invalid IL or missing references) //IL_3c8d: Unknown result type (might be due to invalid IL or missing references) //IL_3c93: Unknown result type (might be due to invalid IL or missing references) //IL_3c9d: Unknown result type (might be due to invalid IL or missing references) //IL_3ca2: Unknown result type (might be due to invalid IL or missing references) //IL_3ca8: Unknown result type (might be due to invalid IL or missing references) //IL_3cad: Unknown result type (might be due to invalid IL or missing references) //IL_3cb3: Unknown result type (might be due to invalid IL or missing references) //IL_3cbd: Unknown result type (might be due to invalid IL or missing references) //IL_3cc2: Unknown result type (might be due to invalid IL or missing references) //IL_3cce: Unknown result type (might be due to invalid IL or missing references) //IL_2633: Unknown result type (might be due to invalid IL or missing references) //IL_2639: Unknown result type (might be due to invalid IL or missing references) //IL_263e: Unknown result type (might be due to invalid IL or missing references) //IL_2644: Unknown result type (might be due to invalid IL or missing references) //IL_2649: Unknown result type (might be due to invalid IL or missing references) //IL_264f: Unknown result type (might be due to invalid IL or missing references) //IL_2659: Unknown result type (might be due to invalid IL or missing references) //IL_265e: Unknown result type (might be due to invalid IL or missing references) //IL_2664: Unknown result type (might be due to invalid IL or missing references) //IL_2669: Unknown result type (might be due to invalid IL or missing references) //IL_266f: Unknown result type (might be due to invalid IL or missing references) //IL_2679: Unknown result type (might be due to invalid IL or missing references) //IL_267e: Unknown result type (might be due to invalid IL or missing references) //IL_2689: Unknown result type (might be due to invalid IL or missing references) //IL_268f: Unknown result type (might be due to invalid IL or missing references) //IL_2694: Unknown result type (might be due to invalid IL or missing references) //IL_269a: Unknown result type (might be due to invalid IL or missing references) //IL_269f: Unknown result type (might be due to invalid IL or missing references) //IL_26a5: Unknown result type (might be due to invalid IL or missing references) //IL_26af: Unknown result type (might be due to invalid IL or missing references) //IL_26b4: Unknown result type (might be due to invalid IL or missing references) //IL_26ba: Unknown result type (might be due to invalid IL or missing references) //IL_26bf: Unknown result type (might be due to invalid IL or missing references) //IL_26c5: Unknown result type (might be due to invalid IL or missing references) //IL_26cf: Unknown result type (might be due to invalid IL or missing references) //IL_26d4: Unknown result type (might be due to invalid IL or missing references) //IL_26e0: Unknown result type (might be due to invalid IL or missing references) //IL_1045: Unknown result type (might be due to invalid IL or missing references) //IL_104b: Unknown result type (might be due to invalid IL or missing references) //IL_1050: Unknown result type (might be due to invalid IL or missing references) //IL_1056: Unknown result type (might be due to invalid IL or missing references) //IL_105b: Unknown result type (might be due to invalid IL or missing references) //IL_1061: Unknown result type (might be due to invalid IL or missing references) //IL_106b: Unknown result type (might be due to invalid IL or missing references) //IL_1070: Unknown result type (might be due to invalid IL or missing references) //IL_1076: Unknown result type (might be due to invalid IL or missing references) //IL_107b: Unknown result type (might be due to invalid IL or missing references) //IL_1081: Unknown result type (might be due to invalid IL or missing references) //IL_108b: Unknown result type (might be due to invalid IL or missing references) //IL_1090: Unknown result type (might be due to invalid IL or missing references) //IL_109b: Unknown result type (might be due to invalid IL or missing references) //IL_10a1: Unknown result type (might be due to invalid IL or missing references) //IL_10a6: Unknown result type (might be due to invalid IL or missing references) //IL_10ac: Unknown result type (might be due to invalid IL or missing references) //IL_10b1: Unknown result type (might be due to invalid IL or missing references) //IL_10b7: Unknown result type (might be due to invalid IL or missing references) //IL_10c1: Unknown result type (might be due to invalid IL or missing references) //IL_10c6: Unknown result type (might be due to invalid IL or missing references) //IL_10cc: Unknown result type (might be due to invalid IL or missing references) //IL_10d1: Unknown result type (might be due to invalid IL or missing references) //IL_10d7: Unknown result type (might be due to invalid IL or missing references) //IL_10e1: Unknown result type (might be due to invalid IL or missing references) //IL_10e6: Unknown result type (might be due to invalid IL or missing references) //IL_10f2: Unknown result type (might be due to invalid IL or missing references) //IL_3ce8: Unknown result type (might be due to invalid IL or missing references) //IL_3cee: Unknown result type (might be due to invalid IL or missing references) //IL_3cf3: Unknown result type (might be due to invalid IL or missing references) //IL_3cf9: Unknown result type (might be due to invalid IL or missing references) //IL_3cfe: Unknown result type (might be due to invalid IL or missing references) //IL_3d04: Unknown result type (might be due to invalid IL or missing references) //IL_3d0e: Unknown result type (might be due to invalid IL or missing references) //IL_3d13: Unknown result type (might be due to invalid IL or missing references) //IL_3d19: Unknown result type (might be due to invalid IL or missing references) //IL_3d1e: Unknown result type (might be due to invalid IL or missing references) //IL_3d24: Unknown result type (might be due to invalid IL or missing references) //IL_3d2e: Unknown result type (might be due to invalid IL or missing references) //IL_3d33: Unknown result type (might be due to invalid IL or missing references) //IL_3d3e: Unknown result type (might be due to invalid IL or missing references) //IL_3d44: Unknown result type (might be due to invalid IL or missing references) //IL_3d49: Unknown result type (might be due to invalid IL or missing references) //IL_3d4f: Unknown result type (might be due to invalid IL or missing references) //IL_3d54: Unknown result type (might be due to invalid IL or missing references) //IL_3d5a: Unknown result type (might be due to invalid IL or missing references) //IL_3d64: Unknown result type (might be due to invalid IL or missing references) //IL_3d69: Unknown result type (might be due to invalid IL or missing references) //IL_3d6f: Unknown result type (might be due to invalid IL or missing references) //IL_3d74: Unknown result type (might be due to invalid IL or missing references) //IL_3d7a: Unknown result type (might be due to invalid IL or missing references) //IL_3d84: Unknown result type (might be due to invalid IL or missing references) //IL_3d89: Unknown result type (might be due to invalid IL or missing references) //IL_3d95: Unknown result type (might be due to invalid IL or missing references) //IL_26fa: Unknown result type (might be due to invalid IL or missing references) //IL_2700: Unknown result type (might be due to invalid IL or missing references) //IL_2705: Unknown result type (might be due to invalid IL or missing references) //IL_270b: Unknown result type (might be due to invalid IL or missing references) //IL_2710: Unknown result type (might be due to invalid IL or missing references) //IL_2716: Unknown result type (might be due to invalid IL or missing references) //IL_2720: Unknown result type (might be due to invalid IL or missing references) //IL_2725: Unknown result type (might be due to invalid IL or missing references) //IL_272b: Unknown result type (might be due to invalid IL or missing references) //IL_2730: Unknown result type (might be due to invalid IL or missing references) //IL_2736: Unknown result type (might be due to invalid IL or missing references) //IL_2740: Unknown result type (might be due to invalid IL or missing references) //IL_2745: Unknown result type (might be due to invalid IL or missing references) //IL_2750: Unknown result type (might be due to invalid IL or missing references) //IL_2756: Unknown result type (might be due to invalid IL or missing references) //IL_275b: Unknown result type (might be due to invalid IL or missing references) //IL_2761: Unknown result type (might be due to invalid IL or missing references) //IL_2766: Unknown result type (might be due to invalid IL or missing references) //IL_276c: Unknown result type (might be due to invalid IL or missing references) //IL_2776: Unknown result type (might be due to invalid IL or missing references) //IL_277b: Unknown result type (might be due to invalid IL or missing references) //IL_2781: Unknown result type (might be due to invalid IL or missing references) //IL_2786: Unknown result type (might be due to invalid IL or missing references) //IL_278c: Unknown result type (might be due to invalid IL or missing references) //IL_2796: Unknown result type (might be due to invalid IL or missing references) //IL_279b: Unknown result type (might be due to invalid IL or missing references) //IL_27a7: Unknown result type (might be due to invalid IL or missing references) //IL_110c: Unknown result type (might be due to invalid IL or missing references) //IL_1112: Unknown result type (might be due to invalid IL or missing references) //IL_1117: Unknown result type (might be due to invalid IL or missing references) //IL_111d: Unknown result type (might be due to invalid IL or missing references) //IL_1122: Unknown result type (might be due to invalid IL or missing references) //IL_1128: Unknown result type (might be due to invalid IL or missing references) //IL_1132: Unknown result type (might be due to invalid IL or missing references) //IL_1137: Unknown result type (might be due to invalid IL or missing references) //IL_113d: Unknown result type (might be due to invalid IL or missing references) //IL_1142: Unknown result type (might be due to invalid IL or missing references) //IL_114d: Unknown result type (might be due to invalid IL or missing references) //IL_1153: Unknown result type (might be due to invalid IL or missing references) //IL_1158: Unknown result type (might be due to invalid IL or missing references) //IL_115e: Unknown result type (might be due to invalid IL or missing references) //IL_1163: Unknown result type (might be due to invalid IL or missing references) //IL_1169: Unknown result type (might be due to invalid IL or missing references) //IL_1173: Unknown result type (might be due to invalid IL or missing references) //IL_1178: Unknown result type (might be due to invalid IL or missing references) //IL_117e: Unknown result type (might be due to invalid IL or missing references) //IL_1183: Unknown result type (might be due to invalid IL or missing references) //IL_118f: Unknown result type (might be due to invalid IL or missing references) //IL_3daf: Unknown result type (might be due to invalid IL or missing references) //IL_3db5: Unknown result type (might be due to invalid IL or missing references) //IL_3dba: Unknown result type (might be due to invalid IL or missing references) //IL_3dc0: Unknown result type (might be due to invalid IL or missing references) //IL_3dc5: Unknown result type (might be due to invalid IL or missing references) //IL_3dcb: Unknown result type (might be due to invalid IL or missing references) //IL_3dd5: Unknown result type (might be due to invalid IL or missing references) //IL_3dda: Unknown result type (might be due to invalid IL or missing references) //IL_3de0: Unknown result type (might be due to invalid IL or missing references) //IL_3de5: Unknown result type (might be due to invalid IL or missing references) //IL_3deb: Unknown result type (might be due to invalid IL or missing references) //IL_3df5: Unknown result type (might be due to invalid IL or missing references) //IL_3dfa: Unknown result type (might be due to invalid IL or missing references) //IL_3e05: Unknown result type (might be due to invalid IL or missing references) //IL_3e0b: Unknown result type (might be due to invalid IL or missing references) //IL_3e10: Unknown result type (might be due to invalid IL or missing references) //IL_3e16: Unknown result type (might be due to invalid IL or missing references) //IL_3e1b: Unknown result type (might be due to invalid IL or missing references) //IL_3e21: Unknown result type (might be due to invalid IL or missing references) //IL_3e2b: Unknown result type (might be due to invalid IL or missing references) //IL_3e30: Unknown result type (might be due to invalid IL or missing references) //IL_3e36: Unknown result type (might be due to invalid IL or missing references) //IL_3e3b: Unknown result type (might be due to invalid IL or missing references) //IL_3e41: Unknown result type (might be due to invalid IL or missing references) //IL_3e4b: Unknown result type (might be due to invalid IL or missing references) //IL_3e50: Unknown result type (might be due to invalid IL or missing references) //IL_3e5c: Unknown result type (might be due to invalid IL or missing references) //IL_27c1: Unknown result type (might be due to invalid IL or missing references) //IL_27c7: Unknown result type (might be due to invalid IL or missing references) //IL_27cc: Unknown result type (might be due to invalid IL or missing references) //IL_27d2: Unknown result type (might be due to invalid IL or missing references) //IL_27d7: Unknown result type (might be due to invalid IL or missing references) //IL_27dd: Unknown result type (might be due to invalid IL or missing references) //IL_27e7: Unknown result type (might be due to invalid IL or missing references) //IL_27ec: Unknown result type (might be due to invalid IL or missing references) //IL_27f2: Unknown result type (might be due to invalid IL or missing references) //IL_27f7: Unknown result type (might be due to invalid IL or missing references) //IL_27fd: Unknown result type (might be due to invalid IL or missing references) //IL_2807: Unknown result type (might be due to invalid IL or missing references) //IL_280c: Unknown result type (might be due to invalid IL or missing references) //IL_2817: Unknown result type (might be due to invalid IL or missing references) //IL_281d: Unknown result type (might be due to invalid IL or missing references) //IL_2822: Unknown result type (might be due to invalid IL or missing references) //IL_2828: Unknown result type (might be due to invalid IL or missing references) //IL_282d: Unknown result type (might be due to invalid IL or missing references) //IL_2833: Unknown result type (might be due to invalid IL or missing references) //IL_283d: Unknown result type (might be due to invalid IL or missing references) //IL_2842: Unknown result type (might be due to invalid IL or missing references) //IL_2848: Unknown result type (might be due to invalid IL or missing references) //IL_284d: Unknown result type (might be due to invalid IL or missing references) //IL_2853: Unknown result type (might be due to invalid IL or missing references) //IL_285d: Unknown result type (might be due to invalid IL or missing references) //IL_2862: Unknown result type (might be due to invalid IL or missing references) //IL_286e: Unknown result type (might be due to invalid IL or missing references) //IL_11a9: Unknown result type (might be due to invalid IL or missing references) //IL_11af: Unknown result type (might be due to invalid IL or missing references) //IL_11b4: Unknown result type (might be due to invalid IL or missing references) //IL_11ba: Unknown result type (might be due to invalid IL or missing references) //IL_11bf: Unknown result type (might be due to invalid IL or missing references) //IL_11c5: Unknown result type (might be due to invalid IL or missing references) //IL_11cf: Unknown result type (might be due to invalid IL or missing references) //IL_11d4: Unknown result type (might be due to invalid IL or missing references) //IL_11da: Unknown result type (might be due to invalid IL or missing references) //IL_11df: Unknown result type (might be due to invalid IL or missing references) //IL_11e5: Unknown result type (might be due to invalid IL or missing references) //IL_11ef: Unknown result type (might be due to invalid IL or missing references) //IL_11f4: Unknown result type (might be due to invalid IL or missing references) //IL_11ff: Unknown result type (might be due to invalid IL or missing references) //IL_1205: Unknown result type (might be due to invalid IL or missing references) //IL_120a: Unknown result type (might be due to invalid IL or missing references) //IL_1210: Unknown result type (might be due to invalid IL or missing references) //IL_1215: Unknown result type (might be due to invalid IL or missing references) //IL_121b: Unknown result type (might be due to invalid IL or missing references) //IL_1225: Unknown result type (might be due to invalid IL or missing references) //IL_122a: Unknown result type (might be due to invalid IL or missing references) //IL_1230: Unknown result type (might be due to invalid IL or missing references) //IL_1235: Unknown result type (might be due to invalid IL or missing references) //IL_123b: Unknown result type (might be due to invalid IL or missing references) //IL_1245: Unknown result type (might be due to invalid IL or missing references) //IL_124a: Unknown result type (might be due to invalid IL or missing references) //IL_1256: Unknown result type (might be due to invalid IL or missing references) //IL_3e76: Unknown result type (might be due to invalid IL or missing references) //IL_3e7c: Unknown result type (might be due to invalid IL or missing references) //IL_3e81: Unknown result type (might be due to invalid IL or missing references) //IL_3e87: Unknown result type (might be due to invalid IL or missing references) //IL_3e8c: Unknown result type (might be due to invalid IL or missing references) //IL_3e92: Unknown result type (might be due to invalid IL or missing references) //IL_3e9c: Unknown result type (might be due to invalid IL or missing references) //IL_3ea1: Unknown result type (might be due to invalid IL or missing references) //IL_3ea7: Unknown result type (might be due to invalid IL or missing references) //IL_3eac: Unknown result type (might be due to invalid IL or missing references) //IL_3eb2: Unknown result type (might be due to invalid IL or missing references) //IL_3ebc: Unknown result type (might be due to invalid IL or missing references) //IL_3ec1: Unknown result type (might be due to invalid IL or missing references) //IL_3ecc: Unknown result type (might be due to invalid IL or missing references) //IL_3ed2: Unknown result type (might be due to invalid IL or missing references) //IL_3ed7: Unknown result type (might be due to invalid IL or missing references) //IL_3edd: Unknown result type (might be due to invalid IL or missing references) //IL_3ee2: Unknown result type (might be due to invalid IL or missing references) //IL_3ee8: Unknown result type (might be due to invalid IL or missing references) //IL_3ef2: Unknown result type (might be due to invalid IL or missing references) //IL_3ef7: Unknown result type (might be due to invalid IL or missing references) //IL_3efd: Unknown result type (might be due to invalid IL or missing references) //IL_3f02: Unknown result type (might be due to invalid IL or missing references) //IL_3f08: Unknown result type (might be due to invalid IL or missing references) //IL_3f12: Unknown result type (might be due to invalid IL or missing references) //IL_3f17: Unknown result type (might be due to invalid IL or missing references) //IL_3f23: Unknown result type (might be due to invalid IL or missing references) //IL_2888: Unknown result type (might be due to invalid IL or missing references) //IL_288e: Unknown result type (might be due to invalid IL or missing references) //IL_2893: Unknown result type (might be due to invalid IL or missing references) //IL_2899: Unknown result type (might be due to invalid IL or missing references) //IL_289e: Unknown result type (might be due to invalid IL or missing references) //IL_28a4: Unknown result type (might be due to invalid IL or missing references) //IL_28ae: Unknown result type (might be due to invalid IL or missing references) //IL_28b3: Unknown result type (might be due to invalid IL or missing references) //IL_28b9: Unknown result type (might be due to invalid IL or missing references) //IL_28be: Unknown result type (might be due to invalid IL or missing references) //IL_28c9: Unknown result type (might be due to invalid IL or missing references) //IL_28cf: Unknown result type (might be due to invalid IL or missing references) //IL_28d4: Unknown result type (might be due to invalid IL or missing references) //IL_28da: Unknown result type (might be due to invalid IL or missing references) //IL_28df: Unknown result type (might be due to invalid IL or missing references) //IL_28e5: Unknown result type (might be due to invalid IL or missing references) //IL_28ef: Unknown result type (might be due to invalid IL or missing references) //IL_28f4: Unknown result type (might be due to invalid IL or missing references) //IL_28fa: Unknown result type (might be due to invalid IL or missing references) //IL_28ff: Unknown result type (might be due to invalid IL or missing references) //IL_290b: Unknown result type (might be due to invalid IL or missing references) //IL_1270: Unknown result type (might be due to invalid IL or missing references) //IL_1276: Unknown result type (might be due to invalid IL or missing references) //IL_127b: Unknown result type (might be due to invalid IL or missing references) //IL_1281: Unknown result type (might be due to invalid IL or missing references) //IL_1286: Unknown result type (might be due to invalid IL or missing references) //IL_128c: Unknown result type (might be due to invalid IL or missing references) //IL_1296: Unknown result type (might be due to invalid IL or missing references) //IL_129b: Unknown result type (might be due to invalid IL or missing references) //IL_12a1: Unknown result type (might be due to invalid IL or missing references) //IL_12a6: Unknown result type (might be due to invalid IL or missing references) //IL_12ac: Unknown result type (might be due to invalid IL or missing references) //IL_12b6: Unknown result type (might be due to invalid IL or missing references) //IL_12bb: Unknown result type (might be due to invalid IL or missing references) //IL_12c6: Unknown result type (might be due to invalid IL or missing references) //IL_12cc: Unknown result type (might be due to invalid IL or missing references) //IL_12d1: Unknown result type (might be due to invalid IL or missing references) //IL_12d7: Unknown result type (might be due to invalid IL or missing references) //IL_12dc: Unknown result type (might be due to invalid IL or missing references) //IL_12e2: Unknown result type (might be due to invalid IL or missing references) //IL_12ec: Unknown result type (might be due to invalid IL or missing references) //IL_12f1: Unknown result type (might be due to invalid IL or missing references) //IL_12f7: Unknown result type (might be due to invalid IL or missing references) //IL_12fc: Unknown result type (might be due to invalid IL or missing references) //IL_1302: Unknown result type (might be due to invalid IL or missing references) //IL_130c: Unknown result type (might be due to invalid IL or missing references) //IL_1311: Unknown result type (might be due to invalid IL or missing references) //IL_131d: Unknown result type (might be due to invalid IL or missing references) //IL_3f3d: Unknown result type (might be due to invalid IL or missing references) //IL_3f43: Unknown result type (might be due to invalid IL or missing references) //IL_3f48: Unknown result type (might be due to invalid IL or missing references) //IL_3f4e: Unknown result type (might be due to invalid IL or missing references) //IL_3f53: Unknown result type (might be due to invalid IL or missing references) //IL_3f59: Unknown result type (might be due to invalid IL or missing references) //IL_3f63: Unknown result type (might be due to invalid IL or missing references) //IL_3f68: Unknown result type (might be due to invalid IL or missing references) //IL_3f6e: Unknown result type (might be due to invalid IL or missing references) //IL_3f73: Unknown result type (might be due to invalid IL or missing references) //IL_3f79: Unknown result type (might be due to invalid IL or missing references) //IL_3f83: Unknown result type (might be due to invalid IL or missing references) //IL_3f88: Unknown result type (might be due to invalid IL or missing references) //IL_3f93: Unknown result type (might be due to invalid IL or missing references) //IL_3f99: Unknown result type (might be due to invalid IL or missing references) //IL_3f9e: Unknown result type (might be due to invalid IL or missing references) //IL_3fa4: Unknown result type (might be due to invalid IL or missing references) //IL_3fa9: Unknown result type (might be due to invalid IL or missing references) //IL_3faf: Unknown result type (might be due to invalid IL or missing references) //IL_3fb9: Unknown result type (might be due to invalid IL or missing references) //IL_3fbe: Unknown result type (might be due to invalid IL or missing references) //IL_3fc4: Unknown result type (might be due to invalid IL or missing references) //IL_3fc9: Unknown result type (might be due to invalid IL or missing references) //IL_3fcf: Unknown result type (might be due to invalid IL or missing references) //IL_3fd9: Unknown result type (might be due to invalid IL or missing references) //IL_3fde: Unknown result type (might be due to invalid IL or missing references) //IL_3fea: Unknown result type (might be due to invalid IL or missing references) //IL_2925: Unknown result type (might be due to invalid IL or missing references) //IL_292b: Unknown result type (might be due to invalid IL or missing references) //IL_2930: Unknown result type (might be due to invalid IL or missing references) //IL_2936: Unknown result type (might be due to invalid IL or missing references) //IL_293b: Unknown result type (might be due to invalid IL or missing references) //IL_2941: Unknown result type (might be due to invalid IL or missing references) //IL_294b: Unknown result type (might be due to invalid IL or missing references) //IL_2950: Unknown result type (might be due to invalid IL or missing references) //IL_2956: Unknown result type (might be due to invalid IL or missing references) //IL_295b: Unknown result type (might be due to invalid IL or missing references) //IL_2961: Unknown result type (might be due to invalid IL or missing references) //IL_296b: Unknown result type (might be due to invalid IL or missing references) //IL_2970: Unknown result type (might be due to invalid IL or missing references) //IL_297b: Unknown result type (might be due to invalid IL or missing references) //IL_2981: Unknown result type (might be due to invalid IL or missing references) //IL_2986: Unknown result type (might be due to invalid IL or missing references) //IL_298c: Unknown result type (might be due to invalid IL or missing references) //IL_2991: Unknown result type (might be due to invalid IL or missing references) //IL_2997: Unknown result type (might be due to invalid IL or missing references) //IL_29a1: Unknown result type (might be due to invalid IL or missing references) //IL_29a6: Unknown result type (might be due to invalid IL or missing references) //IL_29ac: Unknown result type (might be due to invalid IL or missing references) //IL_29b1: Unknown result type (might be due to invalid IL or missing references) //IL_29b7: Unknown result type (might be due to invalid IL or missing references) //IL_29c1: Unknown result type (might be due to invalid IL or missing references) //IL_29c6: Unknown result type (might be due to invalid IL or missing references) //IL_29d2: Unknown result type (might be due to invalid IL or missing references) //IL_1337: Unknown result type (might be due to invalid IL or missing references) //IL_133d: Unknown result type (might be due to invalid IL or missing references) //IL_1342: Unknown result type (might be due to invalid IL or missing references) //IL_1348: Unknown result type (might be due to invalid IL or missing references) //IL_134d: Unknown result type (might be due to invalid IL or missing references) //IL_1353: Unknown result type (might be due to invalid IL or missing references) //IL_135d: Unknown result type (might be due to invalid IL or missing references) //IL_1362: Unknown result type (might be due to invalid IL or missing references) //IL_1368: Unknown result type (might be due to invalid IL or missing references) //IL_136d: Unknown result type (might be due to invalid IL or missing references) //IL_1373: Unknown result type (might be due to invalid IL or missing references) //IL_137d: Unknown result type (might be due to invalid IL or missing references) //IL_1382: Unknown result type (might be due to invalid IL or missing references) //IL_138d: Unknown result type (might be due to invalid IL or missing references) //IL_1393: Unknown result type (might be due to invalid IL or missing references) //IL_1398: Unknown result type (might be due to invalid IL or missing references) //IL_139e: Unknown result type (might be due to invalid IL or missing references) //IL_13a3: Unknown result type (might be due to invalid IL or missing references) //IL_13a9: Unknown result type (might be due to invalid IL or missing references) //IL_13b3: Unknown result type (might be due to invalid IL or missing references) //IL_13b8: Unknown result type (might be due to invalid IL or missing references) //IL_13be: Unknown result type (might be due to invalid IL or missing references) //IL_13c3: Unknown result type (might be due to invalid IL or missing references) //IL_13c9: Unknown result type (might be due to invalid IL or missing references) //IL_13d3: Unknown result type (might be due to invalid IL or missing references) //IL_13d8: Unknown result type (might be due to invalid IL or missing references) //IL_13e4: Unknown result type (might be due to invalid IL or missing references) //IL_4004: Unknown result type (might be due to invalid IL or missing references) //IL_400a: Unknown result type (might be due to invalid IL or missing references) //IL_400f: Unknown result type (might be due to invalid IL or missing references) //IL_4015: Unknown result type (might be due to invalid IL or missing references) //IL_401a: Unknown result type (might be due to invalid IL or missing references) //IL_4020: Unknown result type (might be due to invalid IL or missing references) //IL_402a: Unknown result type (might be due to invalid IL or missing references) //IL_402f: Unknown result type (might be due to invalid IL or missing references) //IL_4035: Unknown result type (might be due to invalid IL or missing references) //IL_403a: Unknown result type (might be due to invalid IL or missing references) //IL_4045: Unknown result type (might be due to invalid IL or missing references) //IL_404b: Unknown result type (might be due to invalid IL or missing references) //IL_4050: Unknown result type (might be due to invalid IL or missing references) //IL_4056: Unknown result type (might be due to invalid IL or missing references) //IL_405b: Unknown result type (might be due to invalid IL or missing references) //IL_4061: Unknown result type (might be due to invalid IL or missing references) //IL_406b: Unknown result type (might be due to invalid IL or missing references) //IL_4070: Unknown result type (might be due to invalid IL or missing references) //IL_4076: Unknown result type (might be due to invalid IL or missing references) //IL_407b: Unknown result type (might be due to invalid IL or missing references) //IL_4087: Unknown result type (might be due to invalid IL or missing references) //IL_29ec: Unknown result type (might be due to invalid IL or missing references) //IL_29f2: Unknown result type (might be due to invalid IL or missing references) //IL_29f7: Unknown result type (might be due to invalid IL or missing references) //IL_29fd: Unknown result type (might be due to invalid IL or missing references) //IL_2a02: Unknown result type (might be due to invalid IL or missing references) //IL_2a08: Unknown result type (might be due to invalid IL or missing references) //IL_2a12: Unknown result type (might be due to invalid IL or missing references) //IL_2a17: Unknown result type (might be due to invalid IL or missing references) //IL_2a1d: Unknown result type (might be due to invalid IL or missing references) //IL_2a22: Unknown result type (might be due to invalid IL or missing references) //IL_2a28: Unknown result type (might be due to invalid IL or missing references) //IL_2a32: Unknown result type (might be due to invalid IL or missing references) //IL_2a37: Unknown result type (might be due to invalid IL or missing references) //IL_2a42: Unknown result type (might be due to invalid IL or missing references) //IL_2a48: Unknown result type (might be due to invalid IL or missing references) //IL_2a4d: Unknown result type (might be due to invalid IL or missing references) //IL_2a53: Unknown result type (might be due to invalid IL or missing references) //IL_2a58: Unknown result type (might be due to invalid IL or missing references) //IL_2a5e: Unknown result type (might be due to invalid IL or missing references) //IL_2a68: Unknown result type (might be due to invalid IL or missing references) //IL_2a6d: Unknown result type (might be due to invalid IL or missing references) //IL_2a73: Unknown result type (might be due to invalid IL or missing references) //IL_2a78: Unknown result type (might be due to invalid IL or missing references) //IL_2a7e: Unknown result type (might be due to invalid IL or missing references) //IL_2a88: Unknown result type (might be due to invalid IL or missing references) //IL_2a8d: Unknown result type (might be due to invalid IL or missing references) //IL_2a99: Unknown result type (might be due to invalid IL or missing references) //IL_13fe: Unknown result type (might be due to invalid IL or missing references) //IL_1404: Unknown result type (might be due to invalid IL or missing references) //IL_1409: Unknown result type (might be due to invalid IL or missing references) //IL_140f: Unknown result type (might be due to invalid IL or missing references) //IL_1414: Unknown result type (might be due to invalid IL or missing references) //IL_141a: Unknown result type (might be due to invalid IL or missing references) //IL_1424: Unknown result type (might be due to invalid IL or missing references) //IL_1429: Unknown result type (might be due to invalid IL or missing references) //IL_142f: Unknown result type (might be due to invalid IL or missing references) //IL_1434: Unknown result type (might be due to invalid IL or missing references) //IL_143a: Unknown result type (might be due to invalid IL or missing references) //IL_1444: Unknown result type (might be due to invalid IL or missing references) //IL_1449: Unknown result type (might be due to invalid IL or missing references) //IL_1454: Unknown result type (might be due to invalid IL or missing references) //IL_145a: Unknown result type (might be due to invalid IL or missing references) //IL_145f: Unknown result type (might be due to invalid IL or missing references) //IL_1465: Unknown result type (might be due to invalid IL or missing references) //IL_146a: Unknown result type (might be due to invalid IL or missing references) //IL_1470: Unknown result type (might be due to invalid IL or missing references) //IL_147a: Unknown result type (might be due to invalid IL or missing references) //IL_147f: Unknown result type (might be due to invalid IL or missing references) //IL_1485: Unknown result type (might be due to invalid IL or missing references) //IL_148a: Unknown result type (might be due to invalid IL or missing references) //IL_1490: Unknown result type (might be due to invalid IL or missing references) //IL_149a: Unknown result type (might be due to invalid IL or missing references) //IL_149f: Unknown result type (might be due to invalid IL or missing references) //IL_14ab: Unknown result type (might be due to invalid IL or missing references) //IL_40a1: Unknown result type (might be due to invalid IL or missing references) //IL_40a7: Unknown result type (might be due to invalid IL or missing references) //IL_40ac: Unknown result type (might be due to invalid IL or missing references) //IL_40b2: Unknown result type (might be due to invalid IL or missing references) //IL_40b7: Unknown result type (might be due to invalid IL or missing references) //IL_40bd: Unknown result type (might be due to invalid IL or missing references) //IL_40c7: Unknown result type (might be due to invalid IL or missing references) //IL_40cc: Unknown result type (might be due to invalid IL or missing references) //IL_40d2: Unknown result type (might be due to invalid IL or missing references) //IL_40d7: Unknown result type (might be due to invalid IL or missing references) //IL_40dd: Unknown result type (might be due to invalid IL or missing references) //IL_40e7: Unknown result type (might be due to invalid IL or missing references) //IL_40ec: Unknown result type (might be due to invalid IL or missing references) //IL_40f7: Unknown result type (might be due to invalid IL or missing references) //IL_40fd: Unknown result type (might be due to invalid IL or missing references) //IL_4102: Unknown result type (might be due to invalid IL or missing references) //IL_4108: Unknown result type (might be due to invalid IL or missing references) //IL_410d: Unknown result type (might be due to invalid IL or missing references) //IL_4113: Unknown result type (might be due to invalid IL or missing references) //IL_411d: Unknown result type (might be due to invalid IL or missing references) //IL_4122: Unknown result type (might be due to invalid IL or missing references) //IL_4128: Unknown result type (might be due to invalid IL or missing references) //IL_412d: Unknown result type (might be due to invalid IL or missing references) //IL_4133: Unknown result type (might be due to invalid IL or missing references) //IL_413d: Unknown result type (might be due to invalid IL or missing references) //IL_4142: Unknown result type (might be due to invalid IL or missing references) //IL_414e: Unknown result type (might be due to invalid IL or missing references) //IL_2ab3: Unknown result type (might be due to invalid IL or missing references) //IL_2ab9: Unknown result type (might be due to invalid IL or missing references) //IL_2abe: Unknown result type (might be due to invalid IL or missing references) //IL_2ac4: Unknown result type (might be due to invalid IL or missing references) //IL_2ac9: Unknown result type (might be due to invalid IL or missing references) //IL_2acf: Unknown result type (might be due to invalid IL or missing references) //IL_2ad9: Unknown result type (might be due to invalid IL or missing references) //IL_2ade: Unknown result type (might be due to invalid IL or missing references) //IL_2ae4: Unknown result type (might be due to invalid IL or missing references) //IL_2ae9: Unknown result type (might be due to invalid IL or missing references) //IL_2aef: Unknown result type (might be due to invalid IL or missing references) //IL_2af9: Unknown result type (might be due to invalid IL or missing references) //IL_2afe: Unknown result type (might be due to invalid IL or missing references) //IL_2b09: Unknown result type (might be due to invalid IL or missing references) //IL_2b0f: Unknown result type (might be due to invalid IL or missing references) //IL_2b14: Unknown result type (might be due to invalid IL or missing references) //IL_2b1a: Unknown result type (might be due to invalid IL or missing references) //IL_2b1f: Unknown result type (might be due to invalid IL or missing references) //IL_2b25: Unknown result type (might be due to invalid IL or missing references) //IL_2b2f: Unknown result type (might be due to invalid IL or missing references) //IL_2b34: Unknown result type (might be due to invalid IL or missing references) //IL_2b3a: Unknown result type (might be due to invalid IL or missing references) //IL_2b3f: Unknown result type (might be due to invalid IL or missing references) //IL_2b45: Unknown result type (might be due to invalid IL or missing references) //IL_2b4f: Unknown result type (might be due to invalid IL or missing references) //IL_2b54: Unknown result type (might be due to invalid IL or missing references) //IL_2b60: Unknown result type (might be due to invalid IL or missing references) //IL_14c5: Unknown result type (might be due to invalid IL or missing references) //IL_14cb: Unknown result type (might be due to invalid IL or missing references) //IL_14d0: Unknown result type (might be due to invalid IL or missing references) //IL_14d6: Unknown result type (might be due to invalid IL or missing references) //IL_14db: Unknown result type (might be due to invalid IL or missing references) //IL_14e1: Unknown result type (might be due to invalid IL or missing references) //IL_14eb: Unknown result type (might be due to invalid IL or missing references) //IL_14f0: Unknown result type (might be due to invalid IL or missing references) //IL_14f6: Unknown result type (might be due to invalid IL or missing references) //IL_14fb: Unknown result type (might be due to invalid IL or missing references) //IL_1501: Unknown result type (might be due to invalid IL or missing references) //IL_150b: Unknown result type (might be due to invalid IL or missing references) //IL_1510: Unknown result type (might be due to invalid IL or missing references) //IL_151b: Unknown result type (might be due to invalid IL or missing references) //IL_1521: Unknown result type (might be due to invalid IL or missing references) //IL_1526: Unknown result type (might be due to invalid IL or missing references) //IL_152c: Unknown result type (might be due to invalid IL or missing references) //IL_1531: Unknown result type (might be due to invalid IL or missing references) //IL_1537: Unknown result type (might be due to invalid IL or missing references) //IL_1541: Unknown result type (might be due to invalid IL or missing references) //IL_1546: Unknown result type (might be due to invalid IL or missing references) //IL_154c: Unknown result type (might be due to invalid IL or missing references) //IL_1551: Unknown result type (might be due to invalid IL or missing references) //IL_1557: Unknown result type (might be due to invalid IL or missing references) //IL_1561: Unknown result type (might be due to invalid IL or missing references) //IL_1566: Unknown result type (might be due to invalid IL or missing references) //IL_1572: Unknown result type (might be due to invalid IL or missing references) //IL_4168: Unknown result type (might be due to invalid IL or missing references) //IL_416e: Unknown result type (might be due to invalid IL or missing references) //IL_4173: Unknown result type (might be due to invalid IL or missing references) //IL_4179: Unknown result type (might be due to invalid IL or missing references) //IL_417e: Unknown result type (might be due to invalid IL or missing references) //IL_4184: Unknown result type (might be due to invalid IL or missing references) //IL_418e: Unknown result type (might be due to invalid IL or missing references) //IL_4193: Unknown result type (might be due to invalid IL or missing references) //IL_4199: Unknown result type (might be due to invalid IL or missing references) //IL_419e: Unknown result type (might be due to invalid IL or missing references) //IL_41a4: Unknown result type (might be due to invalid IL or missing references) //IL_41ae: Unknown result type (might be due to invalid IL or missing references) //IL_41b3: Unknown result type (might be due to invalid IL or missing references) //IL_41be: Unknown result type (might be due to invalid IL or missing references) //IL_41c4: Unknown result type (might be due to invalid IL or missing references) //IL_41c9: Unknown result type (might be due to invalid IL or missing references) //IL_41cf: Unknown result type (might be due to invalid IL or missing references) //IL_41d4: Unknown result type (might be due to invalid IL or missing references) //IL_41da: Unknown result type (might be due to invalid IL or missing references) //IL_41e4: Unknown result type (might be due to invalid IL or missing references) //IL_41e9: Unknown result type (might be due to invalid IL or missing references) //IL_41ef: Unknown result type (might be due to invalid IL or missing references) //IL_41f4: Unknown result type (might be due to invalid IL or missing references) //IL_41fa: Unknown result type (might be due to invalid IL or missing references) //IL_4204: Unknown result type (might be due to invalid IL or missing references) //IL_4209: Unknown result type (might be due to invalid IL or missing references) //IL_4215: Unknown result type (might be due to invalid IL or missing references) //IL_2b7a: Unknown result type (might be due to invalid IL or missing references) //IL_2b80: Unknown result type (might be due to invalid IL or missing references) //IL_2b85: Unknown result type (might be due to invalid IL or missing references) //IL_2b8b: Unknown result type (might be due to invalid IL or missing references) //IL_2b90: Unknown result type (might be due to invalid IL or missing references) //IL_2b96: Unknown result type (might be due to invalid IL or missing references) //IL_2ba0: Unknown result type (might be due to invalid IL or missing references) //IL_2ba5: Unknown result type (might be due to invalid IL or missing references) //IL_2bab: Unknown result type (might be due to invalid IL or missing references) //IL_2bb0: Unknown result type (might be due to invalid IL or missing references) //IL_2bb6: Unknown result type (might be due to invalid IL or missing references) //IL_2bc0: Unknown result type (might be due to invalid IL or missing references) //IL_2bc5: Unknown result type (might be due to invalid IL or missing references) //IL_2bd0: Unknown result type (might be due to invalid IL or missing references) //IL_2bd6: Unknown result type (might be due to invalid IL or missing references) //IL_2bdb: Unknown result type (might be due to invalid IL or missing references) //IL_2be1: Unknown result type (might be due to invalid IL or missing references) //IL_2be6: Unknown result type (might be due to invalid IL or missing references) //IL_2bec: Unknown result type (might be due to invalid IL or missing references) //IL_2bf6: Unknown result type (might be due to invalid IL or missing references) //IL_2bfb: Unknown result type (might be due to invalid IL or missing references) //IL_2c01: Unknown result type (might be due to invalid IL or missing references) //IL_2c06: Unknown result type (might be due to invalid IL or missing references) //IL_2c0c: Unknown result type (might be due to invalid IL or missing references) //IL_2c16: Unknown result type (might be due to invalid IL or missing references) //IL_2c1b: Unknown result type (might be due to invalid IL or missing references) //IL_2c27: Unknown result type (might be due to invalid IL or missing references) //IL_158c: Unknown result type (might be due to invalid IL or missing references) //IL_1592: Unknown result type (might be due to invalid IL or missing references) //IL_1597: Unknown result type (might be due to invalid IL or missing references) //IL_159d: Unknown result type (might be due to invalid IL or missing references) //IL_15a2: Unknown result type (might be due to invalid IL or missing references) //IL_15a8: Unknown result type (might be due to invalid IL or missing references) //IL_15b2: Unknown result type (might be due to invalid IL or missing references) //IL_15b7: Unknown result type (might be due to invalid IL or missing references) //IL_15bd: Unknown result type (might be due to invalid IL or missing references) //IL_15c2: Unknown result type (might be due to invalid IL or missing references) //IL_15c8: Unknown result type (might be due to invalid IL or missing references) //IL_15d2: Unknown result type (might be due to invalid IL or missing references) //IL_15d7: Unknown result type (might be due to invalid IL or missing references) //IL_15e2: Unknown result type (might be due to invalid IL or missing references) //IL_15e8: Unknown result type (might be due to invalid IL or missing references) //IL_15ed: Unknown result type (might be due to invalid IL or missing references) //IL_15f3: Unknown result type (might be due to invalid IL or missing references) //IL_15f8: Unknown result type (might be due to invalid IL or missing references) //IL_15fe: Unknown result type (might be due to invalid IL or missing references) //IL_1608: Unknown result type (might be due to invalid IL or missing references) //IL_160d: Unknown result type (might be due to invalid IL or missing references) //IL_1613: Unknown result type (might be due to invalid IL or missing references) //IL_1618: Unknown result type (might be due to invalid IL or missing references) //IL_161e: Unknown result type (might be due to invalid IL or missing references) //IL_1628: Unknown result type (might be due to invalid IL or missing references) //IL_162d: Unknown result type (might be due to invalid IL or missing references) //IL_1639: Unknown result type (might be due to invalid IL or missing references) //IL_422f: Unknown result type (might be due to invalid IL or missing references) //IL_4235: Unknown result type (might be due to invalid IL or missing references) //IL_423a: Unknown result type (might be due to invalid IL or missing references) //IL_4240: Unknown result type (might be due to invalid IL or missing references) //IL_4245: Unknown result type (might be due to invalid IL or missing references) //IL_424b: Unknown result type (might be due to invalid IL or missing references) //IL_4255: Unknown result type (might be due to invalid IL or missing references) //IL_425a: Unknown result type (might be due to invalid IL or missing references) //IL_4260: Unknown result type (might be due to invalid IL or missing references) //IL_4265: Unknown result type (might be due to invalid IL or missing references) //IL_426b: Unknown result type (might be due to invalid IL or missing references) //IL_4275: Unknown result type (might be due to invalid IL or missing references) //IL_427a: Unknown result type (might be due to invalid IL or missing references) //IL_4285: Unknown result type (might be due to invalid IL or missing references) //IL_428b: Unknown result type (might be due to invalid IL or missing references) //IL_4290: Unknown result type (might be due to invalid IL or missing references) //IL_4296: Unknown result type (might be due to invalid IL or missing references) //IL_429b: Unknown result type (might be due to invalid IL or missing references) //IL_42a1: Unknown result type (might be due to invalid IL or missing references) //IL_42ab: Unknown result type (might be due to invalid IL or missing references) //IL_42b0: Unknown result type (might be due to invalid IL or missing references) //IL_42b6: Unknown result type (might be due to invalid IL or missing references) //IL_42bb: Unknown result type (might be due to invalid IL or missing references) //IL_42c1: Unknown result type (might be due to invalid IL or missing references) //IL_42cb: Unknown result type (might be due to invalid IL or missing references) //IL_42d0: Unknown result type (might be due to invalid IL or missing references) //IL_42dc: Unknown result type (might be due to invalid IL or missing references) //IL_2c41: Unknown result type (might be due to invalid IL or missing references) //IL_2c47: Unknown result type (might be due to invalid IL or missing references) //IL_2c4c: Unknown result type (might be due to invalid IL or missing references) //IL_2c52: Unknown result type (might be due to invalid IL or missing references) //IL_2c57: Unknown result type (might be due to invalid IL or missing references) //IL_2c5d: Unknown result type (might be due to invalid IL or missing references) //IL_2c67: Unknown result type (might be due to invalid IL or missing references) //IL_2c6c: Unknown result type (might be due to invalid IL or missing references) //IL_2c72: Unknown result type (might be due to invalid IL or missing references) //IL_2c77: Unknown result type (might be due to invalid IL or missing references) //IL_2c7d: Unknown result type (might be due to invalid IL or missing references) //IL_2c87: Unknown result type (might be due to invalid IL or missing references) //IL_2c8c: Unknown result type (might be due to invalid IL or missing references) //IL_2c97: Unknown result type (might be due to invalid IL or missing references) //IL_2c9d: Unknown result type (might be due to invalid IL or missing references) //IL_2ca2: Unknown result type (might be due to invalid IL or missing references) //IL_2ca8: Unknown result type (might be due to invalid IL or missing references) //IL_2cad: Unknown result type (might be due to invalid IL or missing references) //IL_2cb3: Unknown result type (might be due to invalid IL or missing references) //IL_2cbd: Unknown result type (might be due to invalid IL or missing references) //IL_2cc2: Unknown result type (might be due to invalid IL or missing references) //IL_2cc8: Unknown result type (might be due to invalid IL or missing references) //IL_2ccd: Unknown result type (might be due to invalid IL or missing references) //IL_2cd3: Unknown result type (might be due to invalid IL or missing references) //IL_2cdd: Unknown result type (might be due to invalid IL or missing references) //IL_2ce2: Unknown result type (might be due to invalid IL or missing references) //IL_2cee: Unknown result type (might be due to invalid IL or missing references) //IL_1653: Unknown result type (might be due to invalid IL or missing references) //IL_1659: Unknown result type (might be due to invalid IL or missing references) //IL_165e: Unknown result type (might be due to invalid IL or missing references) //IL_1664: Unknown result type (might be due to invalid IL or missing references) //IL_1669: Unknown result type (might be due to invalid IL or missing references) //IL_166f: Unknown result type (might be due to invalid IL or missing references) //IL_1679: Unknown result type (might be due to invalid IL or missing references) //IL_167e: Unknown result type (might be due to invalid IL or missing references) //IL_1684: Unknown result type (might be due to invalid IL or missing references) //IL_1689: Unknown result type (might be due to invalid IL or missing references) //IL_168f: Unknown result type (might be due to invalid IL or missing references) //IL_1699: Unknown result type (might be due to invalid IL or missing references) //IL_169e: Unknown result type (might be due to invalid IL or missing references) //IL_16a9: Unknown result type (might be due to invalid IL or missing references) //IL_16af: Unknown result type (might be due to invalid IL or missing references) //IL_16b4: Unknown result type (might be due to invalid IL or missing references) //IL_16ba: Unknown result type (might be due to invalid IL or missing references) //IL_16bf: Unknown result type (might be due to invalid IL or missing references) //IL_16c5: Unknown result type (might be due to invalid IL or missing references) //IL_16cf: Unknown result type (might be due to invalid IL or missing references) //IL_16d4: Unknown result type (might be due to invalid IL or missing references) //IL_16da: Unknown result type (might be due to invalid IL or missing references) //IL_16df: Unknown result type (might be due to invalid IL or missing references) //IL_16e5: Unknown result type (might be due to invalid IL or missing references) //IL_16ef: Unknown result type (might be due to invalid IL or missing references) //IL_16f4: Unknown result type (might be due to invalid IL or missing references) //IL_1700: Unknown result type (might be due to invalid IL or missing references) //IL_42f6: Unknown result type (might be due to invalid IL or missing references) //IL_42fc: Unknown result type (might be due to invalid IL or missing references) //IL_4301: Unknown result type (might be due to invalid IL or missing references) //IL_4307: Unknown result type (might be due to invalid IL or missing references) //IL_430c: Unknown result type (might be due to invalid IL or missing references) //IL_4312: Unknown result type (might be due to invalid IL or missing references) //IL_431c: Unknown result type (might be due to invalid IL or missing references) //IL_4321: Unknown result type (might be due to invalid IL or missing references) //IL_4327: Unknown result type (might be due to invalid IL or missing references) //IL_432c: Unknown result type (might be due to invalid IL or missing references) //IL_4332: Unknown result type (might be due to invalid IL or missing references) //IL_433c: Unknown result type (might be due to invalid IL or missing references) //IL_4341: Unknown result type (might be due to invalid IL or missing references) //IL_434c: Unknown result type (might be due to invalid IL or missing references) //IL_4352: Unknown result type (might be due to invalid IL or missing references) //IL_4357: Unknown result type (might be due to invalid IL or missing references) //IL_435d: Unknown result type (might be due to invalid IL or missing references) //IL_4362: Unknown result type (might be due to invalid IL or missing references) //IL_4368: Unknown result type (might be due to invalid IL or missing references) //IL_4372: Unknown result type (might be due to invalid IL or missing references) //IL_4377: Unknown result type (might be due to invalid IL or missing references) //IL_437d: Unknown result type (might be due to invalid IL or missing references) //IL_4382: Unknown result type (might be due to invalid IL or missing references) //IL_4388: Unknown result type (might be due to invalid IL or missing references) //IL_4392: Unknown result type (might be due to invalid IL or missing references) //IL_4397: Unknown result type (might be due to invalid IL or missing references) //IL_43a3: Unknown result type (might be due to invalid IL or missing references) //IL_2d08: Unknown result type (might be due to invalid IL or missing references) //IL_2d0e: Unknown result type (might be due to invalid IL or missing references) //IL_2d13: Unknown result type (might be due to invalid IL or missing references) //IL_2d19: Unknown result type (might be due to invalid IL or missing references) //IL_2d1e: Unknown result type (might be due to invalid IL or missing references) //IL_2d24: Unknown result type (might be due to invalid IL or missing references) //IL_2d2e: Unknown result type (might be due to invalid IL or missing references) //IL_2d33: Unknown result type (might be due to invalid IL or missing references) //IL_2d39: Unknown result type (might be due to invalid IL or missing references) //IL_2d3e: Unknown result type (might be due to invalid IL or missing references) //IL_2d44: Unknown result type (might be due to invalid IL or missing references) //IL_2d4e: Unknown result type (might be due to invalid IL or missing references) //IL_2d53: Unknown result type (might be due to invalid IL or missing references) //IL_2d5e: Unknown result type (might be due to invalid IL or missing references) //IL_2d64: Unknown result type (might be due to invalid IL or missing references) //IL_2d69: Unknown result type (might be due to invalid IL or missing references) //IL_2d6f: Unknown result type (might be due to invalid IL or missing references) //IL_2d74: Unknown result type (might be due to invalid IL or missing references) //IL_2d7a: Unknown result type (might be due to invalid IL or missing references) //IL_2d84: Unknown result type (might be due to invalid IL or missing references) //IL_2d89: Unknown result type (might be due to invalid IL or missing references) //IL_2d8f: Unknown result type (might be due to invalid IL or missing references) //IL_2d94: Unknown result type (might be due to invalid IL or missing references) //IL_2d9a: Unknown result type (might be due to invalid IL or missing references) //IL_2da4: Unknown result type (might be due to invalid IL or missing references) //IL_2da9: Unknown result type (might be due to invalid IL or missing references) //IL_2db5: Unknown result type (might be due to invalid IL or missing references) //IL_43bd: Unknown result type (might be due to invalid IL or missing references) //IL_43c3: Unknown result type (might be due to invalid IL or missing references) //IL_43c8: Unknown result type (might be due to invalid IL or missing references) //IL_43ce: Unknown result type (might be due to invalid IL or missing references) //IL_43d3: Unknown result type (might be due to invalid IL or missing references) //IL_43d9: Unknown result type (might be due to invalid IL or missing references) //IL_43e3: Unknown result type (might be due to invalid IL or missing references) //IL_43e8: Unknown result type (might be due to invalid IL or missing references) //IL_43ee: Unknown result type (might be due to invalid IL or missing references) //IL_43f3: Unknown result type (might be due to invalid IL or missing references) //IL_43f9: Unknown result type (might be due to invalid IL or missing references) //IL_4403: Unknown result type (might be due to invalid IL or missing references) //IL_4408: Unknown result type (might be due to invalid IL or missing references) //IL_4413: Unknown result type (might be due to invalid IL or missing references) //IL_4419: Unknown result type (might be due to invalid IL or missing references) //IL_441e: Unknown result type (might be due to invalid IL or missing references) //IL_4424: Unknown result type (might be due to invalid IL or missing references) //IL_4429: Unknown result type (might be due to invalid IL or missing references) //IL_442f: Unknown result type (might be due to invalid IL or missing references) //IL_4439: Unknown result type (might be due to invalid IL or missing references) //IL_443e: Unknown result type (might be due to invalid IL or missing references) //IL_4444: Unknown result type (might be due to invalid IL or missing references) //IL_4449: Unknown result type (might be due to invalid IL or missing references) //IL_444f: Unknown result type (might be due to invalid IL or missing references) //IL_4459: Unknown result type (might be due to invalid IL or missing references) //IL_445e: Unknown result type (might be due to invalid IL or missing references) //IL_446a: Unknown result type (might be due to invalid IL or missing references) //IL_2dcf: Unknown result type (might be due to invalid IL or missing references) //IL_2dd5: Unknown result type (might be due to invalid IL or missing references) //IL_2dda: Unknown result type (might be due to invalid IL or missing references) //IL_2de0: Unknown result type (might be due to invalid IL or missing references) //IL_2de5: Unknown result type (might be due to invalid IL or missing references) //IL_2deb: Unknown result type (might be due to invalid IL or missing references) //IL_2df5: Unknown result type (might be due to invalid IL or missing references) //IL_2dfa: Unknown result type (might be due to invalid IL or missing references) //IL_2e00: Unknown result type (might be due to invalid IL or missing references) //IL_2e05: Unknown result type (might be due to invalid IL or missing references) //IL_2e0b: Unknown result type (might be due to invalid IL or missing references) //IL_2e15: Unknown result type (might be due to invalid IL or missing references) //IL_2e1a: Unknown result type (might be due to invalid IL or missing references) //IL_2e25: Unknown result type (might be due to invalid IL or missing references) //IL_2e2b: Unknown result type (might be due to invalid IL or missing references) //IL_2e30: Unknown result type (might be due to invalid IL or missing references) //IL_2e36: Unknown result type (might be due to invalid IL or missing references) //IL_2e3b: Unknown result type (might be due to invalid IL or missing references) //IL_2e41: Unknown result type (might be due to invalid IL or missing references) //IL_2e4b: Unknown result type (might be due to invalid IL or missing references) //IL_2e50: Unknown result type (might be due to invalid IL or missing references) //IL_2e56: Unknown result type (might be due to invalid IL or missing references) //IL_2e5b: Unknown result type (might be due to invalid IL or missing references) //IL_2e61: Unknown result type (might be due to invalid IL or missing references) //IL_2e6b: Unknown result type (might be due to invalid IL or missing references) //IL_2e70: Unknown result type (might be due to invalid IL or missing references) //IL_2e7c: Unknown result type (might be due to invalid IL or missing references) //IL_4484: Unknown result type (might be due to invalid IL or missing references) //IL_448a: Unknown result type (might be due to invalid IL or missing references) //IL_448f: Unknown result type (might be due to invalid IL or missing references) //IL_4495: Unknown result type (might be due to invalid IL or missing references) //IL_449a: Unknown result type (might be due to invalid IL or missing references) //IL_44a0: Unknown result type (might be due to invalid IL or missing references) //IL_44aa: Unknown result type (might be due to invalid IL or missing references) //IL_44af: Unknown result type (might be due to invalid IL or missing references) //IL_44b5: Unknown result type (might be due to invalid IL or missing references) //IL_44ba: Unknown result type (might be due to invalid IL or missing references) //IL_44c0: Unknown result type (might be due to invalid IL or missing references) //IL_44ca: Unknown result type (might be due to invalid IL or missing references) //IL_44cf: Unknown result type (might be due to invalid IL or missing references) //IL_44da: Unknown result type (might be due to invalid IL or missing references) //IL_44e0: Unknown result type (might be due to invalid IL or missing references) //IL_44e5: Unknown result type (might be due to invalid IL or missing references) //IL_44eb: Unknown result type (might be due to invalid IL or missing references) //IL_44f0: Unknown result type (might be due to invalid IL or missing references) //IL_44f6: Unknown result type (might be due to invalid IL or missing references) //IL_4500: Unknown result type (might be due to invalid IL or missing references) //IL_4505: Unknown result type (might be due to invalid IL or missing references) //IL_450b: Unknown result type (might be due to invalid IL or missing references) //IL_4510: Unknown result type (might be due to invalid IL or missing references) //IL_4516: Unknown result type (might be due to invalid IL or missing references) //IL_4520: Unknown result type (might be due to invalid IL or missing references) //IL_4525: Unknown result type (might be due to invalid IL or missing references) //IL_4531: Unknown result type (might be due to invalid IL or missing references) //IL_454b: Unknown result type (might be due to invalid IL or missing references) //IL_4551: Unknown result type (might be due to invalid IL or missing references) //IL_4556: Unknown result type (might be due to invalid IL or missing references) //IL_455c: Unknown result type (might be due to invalid IL or missing references) //IL_4561: Unknown result type (might be due to invalid IL or missing references) //IL_4567: Unknown result type (might be due to invalid IL or missing references) //IL_4571: Unknown result type (might be due to invalid IL or missing references) //IL_4576: Unknown result type (might be due to invalid IL or missing references) //IL_457c: Unknown result type (might be due to invalid IL or missing references) //IL_4581: Unknown result type (might be due to invalid IL or missing references) //IL_4587: Unknown result type (might be due to invalid IL or missing references) //IL_4591: Unknown result type (might be due to invalid IL or missing references) //IL_4596: Unknown result type (might be due to invalid IL or missing references) //IL_45a1: Unknown result type (might be due to invalid IL or missing references) //IL_45a7: Unknown result type (might be due to invalid IL or missing references) //IL_45ac: Unknown result type (might be due to invalid IL or missing references) //IL_45b2: Unknown result type (might be due to invalid IL or missing references) //IL_45b7: Unknown result type (might be due to invalid IL or missing references) //IL_45bd: Unknown result type (might be due to invalid IL or missing references) //IL_45c7: Unknown result type (might be due to invalid IL or missing references) //IL_45cc: Unknown result type (might be due to invalid IL or missing references) //IL_45d2: Unknown result type (might be due to invalid IL or missing references) //IL_45d7: Unknown result type (might be due to invalid IL or missing references) //IL_45dd: Unknown result type (might be due to invalid IL or missing references) //IL_45e7: Unknown result type (might be due to invalid IL or missing references) //IL_45ec: Unknown result type (might be due to invalid IL or missing references) //IL_45f8: Unknown result type (might be due to invalid IL or missing references) if (switching || !ledgeSwitchingDetectors.allowLedgeSwitching || !grabbedOn) { return; } if (!Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + minDistFromGroundHeight2 - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 - ledgeSwitchFirstNoSurfaceLength / 1.75f - rightWidth * 2.394f - firstSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 - ledgeSwitchFirstNoSurfaceLength / 1.75f - rightWidth * 2.394f - firstSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 - ledgeSwitchFirstNoSurfaceLength / 1.75f - rightWidth * 2.394f - firstSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 - ledgeSwitchFirstNoSurfaceLength / 1.75f - rightWidth * 2.394f - firstSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 - ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 - ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 - ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 - ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 0.375f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 0.75f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 1.125f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f - ledgeSwitchFirstWidthBack + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !l1ThirdBackSurfaceDetectorsHit && !l1ThirdBackHit && l1SecondBackSurfaceDetectorsHit && l1SecondBackHit) { l1SecondBackTimer += 0.01f; if (l1SecondBackTimer > 0.1f || rotTimer > 0f) { l1SecondBackClear = true; } else { l1SecondBackClear = false; } } else { l1SecondBackTimer = 0f; l1SecondBackClear = false; } if (!Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + minDistFromGroundHeight2 - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 - ledgeSwitchSecondNoSurfaceLength / 1.75f - rightWidth * 2.394f - secondSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 - ledgeSwitchSecondNoSurfaceLength / 1.75f - rightWidth * 2.394f - secondSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 - ledgeSwitchSecondNoSurfaceLength / 1.75f - rightWidth * 2.394f - secondSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 - ledgeSwitchSecondNoSurfaceLength / 1.75f - rightWidth * 2.394f - secondSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 - ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 - ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 - ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 - ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 0.375f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 0.75f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 1.125f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f - ledgeSwitchSecondWidthBack + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !l2ThirdBackSurfaceDetectorsHit && !l2ThirdBackHit && l2SecondBackSurfaceDetectorsHit && l2SecondBackHit) { l2SecondBackTimer += 0.01f; if (l2SecondBackTimer > 0.1f || rotTimer > 0f) { l2SecondBackClear = true; } else { l2SecondBackClear = false; } } else { l2SecondBackTimer = 0f; l2SecondBackClear = false; } if (!Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + minDistFromGroundHeight2 - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 - ledgeSwitchThirdNoSurfaceLength / 1.75f - rightWidth * 2.394f - thirdSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 - ledgeSwitchThirdNoSurfaceLength / 1.75f - rightWidth * 2.394f - thirdSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 - ledgeSwitchThirdNoSurfaceLength / 1.75f - rightWidth * 2.394f - thirdSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 - ledgeSwitchThirdNoSurfaceLength / 1.75f - rightWidth * 2.394f - thirdSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 - ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 - ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 - ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 - ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 0.375f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 0.75f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(leftSpace + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + ledgeSwitchHeight * 1.125f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !l3ThirdBackSurfaceDetectorsHit && !l3ThirdBackHit && l3SecondBackSurfaceDetectorsHit && l3SecondBackHit) { l3SecondBackTimer += 0.01f; if (l3SecondBackTimer > 0.1f || rotTimer > 0f) { l3SecondBackClear = true; } else { l3SecondBackClear = false; } } else { l3SecondBackTimer = 0f; l3SecondBackClear = false; } } private void LedgeSwitchingClearSecondFrontRight() { //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_0054: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0069: Unknown result type (might be due to invalid IL or missing references) //IL_006e: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_0084: Unknown result type (might be due to invalid IL or missing references) //IL_008f: Unknown result type (might be due to invalid IL or missing references) //IL_0095: Unknown result type (might be due to invalid IL or missing references) //IL_009a: Unknown result type (might be due to invalid IL or missing references) //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_00aa: Unknown result type (might be due to invalid IL or missing references) //IL_00af: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) //IL_00ba: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00ca: Unknown result type (might be due to invalid IL or missing references) //IL_00cf: Unknown result type (might be due to invalid IL or missing references) //IL_00d5: Unknown result type (might be due to invalid IL or missing references) //IL_00df: Unknown result type (might be due to invalid IL or missing references) //IL_00e4: Unknown result type (might be due to invalid IL or missing references) //IL_00ea: Unknown result type (might be due to invalid IL or missing references) //IL_00ef: Unknown result type (might be due to invalid IL or missing references) //IL_00f5: Unknown result type (might be due to invalid IL or missing references) //IL_00fa: Unknown result type (might be due to invalid IL or missing references) //IL_0106: Unknown result type (might be due to invalid IL or missing references) //IL_0120: Unknown result type (might be due to invalid IL or missing references) //IL_0126: Unknown result type (might be due to invalid IL or missing references) //IL_012b: Unknown result type (might be due to invalid IL or missing references) //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_0136: Unknown result type (might be due to invalid IL or missing references) //IL_013c: Unknown result type (might be due to invalid IL or missing references) //IL_0146: Unknown result type (might be due to invalid IL or missing references) //IL_014b: Unknown result type (might be due to invalid IL or missing references) //IL_0151: Unknown result type (might be due to invalid IL or missing references) //IL_0156: Unknown result type (might be due to invalid IL or missing references) //IL_015c: Unknown result type (might be due to invalid IL or missing references) //IL_0166: Unknown result type (might be due to invalid IL or missing references) //IL_016b: Unknown result type (might be due to invalid IL or missing references) //IL_0171: Unknown result type (might be due to invalid IL or missing references) //IL_017b: Unknown result type (might be due to invalid IL or missing references) //IL_0180: Unknown result type (might be due to invalid IL or missing references) //IL_0186: Unknown result type (might be due to invalid IL or missing references) //IL_018b: Unknown result type (might be due to invalid IL or missing references) //IL_0191: Unknown result type (might be due to invalid IL or missing references) //IL_0196: Unknown result type (might be due to invalid IL or missing references) //IL_01a1: Unknown result type (might be due to invalid IL or missing references) //IL_01a7: Unknown result type (might be due to invalid IL or missing references) //IL_01ac: Unknown result type (might be due to invalid IL or missing references) //IL_01b2: Unknown result type (might be due to invalid IL or missing references) //IL_01bc: Unknown result type (might be due to invalid IL or missing references) //IL_01c1: Unknown result type (might be due to invalid IL or missing references) //IL_01c7: Unknown result type (might be due to invalid IL or missing references) //IL_01d1: Unknown result type (might be due to invalid IL or missing references) //IL_01d6: Unknown result type (might be due to invalid IL or missing references) //IL_01dc: Unknown result type (might be due to invalid IL or missing references) //IL_01e1: Unknown result type (might be due to invalid IL or missing references) //IL_01e7: Unknown result type (might be due to invalid IL or missing references) //IL_01ec: Unknown result type (might be due to invalid IL or missing references) //IL_01f2: Unknown result type (might be due to invalid IL or missing references) //IL_01fc: Unknown result type (might be due to invalid IL or missing references) //IL_0201: Unknown result type (might be due to invalid IL or missing references) //IL_0207: Unknown result type (might be due to invalid IL or missing references) //IL_0211: Unknown result type (might be due to invalid IL or missing references) //IL_0216: Unknown result type (might be due to invalid IL or missing references) //IL_021c: Unknown result type (might be due to invalid IL or missing references) //IL_0221: Unknown result type (might be due to invalid IL or missing references) //IL_0227: Unknown result type (might be due to invalid IL or missing references) //IL_022c: Unknown result type (might be due to invalid IL or missing references) //IL_0238: Unknown result type (might be due to invalid IL or missing references) //IL_179f: Unknown result type (might be due to invalid IL or missing references) //IL_17a5: Unknown result type (might be due to invalid IL or missing references) //IL_17aa: Unknown result type (might be due to invalid IL or missing references) //IL_17b0: Unknown result type (might be due to invalid IL or missing references) //IL_17b5: Unknown result type (might be due to invalid IL or missing references) //IL_17bb: Unknown result type (might be due to invalid IL or missing references) //IL_17c5: Unknown result type (might be due to invalid IL or missing references) //IL_17ca: Unknown result type (might be due to invalid IL or missing references) //IL_17d0: Unknown result type (might be due to invalid IL or missing references) //IL_17da: Unknown result type (might be due to invalid IL or missing references) //IL_17df: Unknown result type (might be due to invalid IL or missing references) //IL_17e5: Unknown result type (might be due to invalid IL or missing references) //IL_17ea: Unknown result type (might be due to invalid IL or missing references) //IL_17f0: Unknown result type (might be due to invalid IL or missing references) //IL_17f5: Unknown result type (might be due to invalid IL or missing references) //IL_1800: Unknown result type (might be due to invalid IL or missing references) //IL_1806: Unknown result type (might be due to invalid IL or missing references) //IL_180b: Unknown result type (might be due to invalid IL or missing references) //IL_1811: Unknown result type (might be due to invalid IL or missing references) //IL_181b: Unknown result type (might be due to invalid IL or missing references) //IL_1820: Unknown result type (might be due to invalid IL or missing references) //IL_1826: Unknown result type (might be due to invalid IL or missing references) //IL_182b: Unknown result type (might be due to invalid IL or missing references) //IL_1831: Unknown result type (might be due to invalid IL or missing references) //IL_183b: Unknown result type (might be due to invalid IL or missing references) //IL_1840: Unknown result type (might be due to invalid IL or missing references) //IL_1846: Unknown result type (might be due to invalid IL or missing references) //IL_1850: Unknown result type (might be due to invalid IL or missing references) //IL_1855: Unknown result type (might be due to invalid IL or missing references) //IL_185b: Unknown result type (might be due to invalid IL or missing references) //IL_1860: Unknown result type (might be due to invalid IL or missing references) //IL_1866: Unknown result type (might be due to invalid IL or missing references) //IL_186b: Unknown result type (might be due to invalid IL or missing references) //IL_1877: Unknown result type (might be due to invalid IL or missing references) //IL_0252: Unknown result type (might be due to invalid IL or missing references) //IL_0258: Unknown result type (might be due to invalid IL or missing references) //IL_025d: Unknown result type (might be due to invalid IL or missing references) //IL_0263: Unknown result type (might be due to invalid IL or missing references) //IL_0268: Unknown result type (might be due to invalid IL or missing references) //IL_026e: Unknown result type (might be due to invalid IL or missing references) //IL_0278: Unknown result type (might be due to invalid IL or missing references) //IL_027d: Unknown result type (might be due to invalid IL or missing references) //IL_0283: Unknown result type (might be due to invalid IL or missing references) //IL_0288: Unknown result type (might be due to invalid IL or missing references) //IL_028e: Unknown result type (might be due to invalid IL or missing references) //IL_0298: Unknown result type (might be due to invalid IL or missing references) //IL_029d: Unknown result type (might be due to invalid IL or missing references) //IL_02a3: Unknown result type (might be due to invalid IL or missing references) //IL_02ad: Unknown result type (might be due to invalid IL or missing references) //IL_02b2: Unknown result type (might be due to invalid IL or missing references) //IL_02b8: Unknown result type (might be due to invalid IL or missing references) //IL_02bd: Unknown result type (might be due to invalid IL or missing references) //IL_02c3: Unknown result type (might be due to invalid IL or missing references) //IL_02c8: Unknown result type (might be due to invalid IL or missing references) //IL_02d3: Unknown result type (might be due to invalid IL or missing references) //IL_02d9: Unknown result type (might be due to invalid IL or missing references) //IL_02de: Unknown result type (might be due to invalid IL or missing references) //IL_02e4: Unknown result type (might be due to invalid IL or missing references) //IL_02ee: Unknown result type (might be due to invalid IL or missing references) //IL_02f3: Unknown result type (might be due to invalid IL or missing references) //IL_02f9: Unknown result type (might be due to invalid IL or missing references) //IL_0303: Unknown result type (might be due to invalid IL or missing references) //IL_0308: Unknown result type (might be due to invalid IL or missing references) //IL_030e: Unknown result type (might be due to invalid IL or missing references) //IL_0313: Unknown result type (might be due to invalid IL or missing references) //IL_0319: Unknown result type (might be due to invalid IL or missing references) //IL_031e: Unknown result type (might be due to invalid IL or missing references) //IL_0324: Unknown result type (might be due to invalid IL or missing references) //IL_032e: Unknown result type (might be due to invalid IL or missing references) //IL_0333: Unknown result type (might be due to invalid IL or missing references) //IL_0339: Unknown result type (might be due to invalid IL or missing references) //IL_0343: Unknown result type (might be due to invalid IL or missing references) //IL_0348: Unknown result type (might be due to invalid IL or missing references) //IL_034e: Unknown result type (might be due to invalid IL or missing references) //IL_0353: Unknown result type (might be due to invalid IL or missing references) //IL_0359: Unknown result type (might be due to invalid IL or missing references) //IL_035e: Unknown result type (might be due to invalid IL or missing references) //IL_036a: Unknown result type (might be due to invalid IL or missing references) //IL_1891: Unknown result type (might be due to invalid IL or missing references) //IL_1897: Unknown result type (might be due to invalid IL or missing references) //IL_189c: Unknown result type (might be due to invalid IL or missing references) //IL_18a2: Unknown result type (might be due to invalid IL or missing references) //IL_18a7: Unknown result type (might be due to invalid IL or missing references) //IL_18ad: Unknown result type (might be due to invalid IL or missing references) //IL_18b7: Unknown result type (might be due to invalid IL or missing references) //IL_18bc: Unknown result type (might be due to invalid IL or missing references) //IL_18c2: Unknown result type (might be due to invalid IL or missing references) //IL_18c7: Unknown result type (might be due to invalid IL or missing references) //IL_18cd: Unknown result type (might be due to invalid IL or missing references) //IL_18d7: Unknown result type (might be due to invalid IL or missing references) //IL_18dc: Unknown result type (might be due to invalid IL or missing references) //IL_18e2: Unknown result type (might be due to invalid IL or missing references) //IL_18ec: Unknown result type (might be due to invalid IL or missing references) //IL_18f1: Unknown result type (might be due to invalid IL or missing references) //IL_18f7: Unknown result type (might be due to invalid IL or missing references) //IL_18fc: Unknown result type (might be due to invalid IL or missing references) //IL_1902: Unknown result type (might be due to invalid IL or missing references) //IL_1907: Unknown result type (might be due to invalid IL or missing references) //IL_1912: Unknown result type (might be due to invalid IL or missing references) //IL_1918: Unknown result type (might be due to invalid IL or missing references) //IL_191d: Unknown result type (might be due to invalid IL or missing references) //IL_1923: Unknown result type (might be due to invalid IL or missing references) //IL_192d: Unknown result type (might be due to invalid IL or missing references) //IL_1932: Unknown result type (might be due to invalid IL or missing references) //IL_1938: Unknown result type (might be due to invalid IL or missing references) //IL_1942: Unknown result type (might be due to invalid IL or missing references) //IL_1947: Unknown result type (might be due to invalid IL or missing references) //IL_194d: Unknown result type (might be due to invalid IL or missing references) //IL_1952: Unknown result type (might be due to invalid IL or missing references) //IL_1958: Unknown result type (might be due to invalid IL or missing references) //IL_195d: Unknown result type (might be due to invalid IL or missing references) //IL_1963: Unknown result type (might be due to invalid IL or missing references) //IL_196d: Unknown result type (might be due to invalid IL or missing references) //IL_1972: Unknown result type (might be due to invalid IL or missing references) //IL_1978: Unknown result type (might be due to invalid IL or missing references) //IL_1982: Unknown result type (might be due to invalid IL or missing references) //IL_1987: Unknown result type (might be due to invalid IL or missing references) //IL_198d: Unknown result type (might be due to invalid IL or missing references) //IL_1992: Unknown result type (might be due to invalid IL or missing references) //IL_1998: Unknown result type (might be due to invalid IL or missing references) //IL_199d: Unknown result type (might be due to invalid IL or missing references) //IL_19a9: Unknown result type (might be due to invalid IL or missing references) //IL_0384: Unknown result type (might be due to invalid IL or missing references) //IL_038a: Unknown result type (might be due to invalid IL or missing references) //IL_038f: Unknown result type (might be due to invalid IL or missing references) //IL_039a: Unknown result type (might be due to invalid IL or missing references) //IL_03a0: Unknown result type (might be due to invalid IL or missing references) //IL_03a5: Unknown result type (might be due to invalid IL or missing references) //IL_03ab: Unknown result type (might be due to invalid IL or missing references) //IL_03b5: Unknown result type (might be due to invalid IL or missing references) //IL_03ba: Unknown result type (might be due to invalid IL or missing references) //IL_03c0: Unknown result type (might be due to invalid IL or missing references) //IL_03ca: Unknown result type (might be due to invalid IL or missing references) //IL_03cf: Unknown result type (might be due to invalid IL or missing references) //IL_03d5: Unknown result type (might be due to invalid IL or missing references) //IL_03da: Unknown result type (might be due to invalid IL or missing references) //IL_03e0: Unknown result type (might be due to invalid IL or missing references) //IL_03e5: Unknown result type (might be due to invalid IL or missing references) //IL_03fd: Unknown result type (might be due to invalid IL or missing references) //IL_0402: Unknown result type (might be due to invalid IL or missing references) //IL_041a: Unknown result type (might be due to invalid IL or missing references) //IL_0420: Unknown result type (might be due to invalid IL or missing references) //IL_042a: Unknown result type (might be due to invalid IL or missing references) //IL_042f: Unknown result type (might be due to invalid IL or missing references) //IL_0435: Unknown result type (might be due to invalid IL or missing references) //IL_043a: Unknown result type (might be due to invalid IL or missing references) //IL_0445: Unknown result type (might be due to invalid IL or missing references) //IL_044b: Unknown result type (might be due to invalid IL or missing references) //IL_0450: Unknown result type (might be due to invalid IL or missing references) //IL_045b: Unknown result type (might be due to invalid IL or missing references) //IL_0461: Unknown result type (might be due to invalid IL or missing references) //IL_0466: Unknown result type (might be due to invalid IL or missing references) //IL_046c: Unknown result type (might be due to invalid IL or missing references) //IL_0476: Unknown result type (might be due to invalid IL or missing references) //IL_047b: Unknown result type (might be due to invalid IL or missing references) //IL_0481: Unknown result type (might be due to invalid IL or missing references) //IL_048b: Unknown result type (might be due to invalid IL or missing references) //IL_0490: Unknown result type (might be due to invalid IL or missing references) //IL_0496: Unknown result type (might be due to invalid IL or missing references) //IL_049b: Unknown result type (might be due to invalid IL or missing references) //IL_04a1: Unknown result type (might be due to invalid IL or missing references) //IL_04a6: Unknown result type (might be due to invalid IL or missing references) //IL_04be: Unknown result type (might be due to invalid IL or missing references) //IL_04c3: Unknown result type (might be due to invalid IL or missing references) //IL_04db: Unknown result type (might be due to invalid IL or missing references) //IL_04e1: Unknown result type (might be due to invalid IL or missing references) //IL_04eb: Unknown result type (might be due to invalid IL or missing references) //IL_04f0: Unknown result type (might be due to invalid IL or missing references) //IL_04f6: Unknown result type (might be due to invalid IL or missing references) //IL_04fb: Unknown result type (might be due to invalid IL or missing references) //IL_0507: Unknown result type (might be due to invalid IL or missing references) //IL_2f10: Unknown result type (might be due to invalid IL or missing references) //IL_2f16: Unknown result type (might be due to invalid IL or missing references) //IL_2f1b: Unknown result type (might be due to invalid IL or missing references) //IL_2f21: Unknown result type (might be due to invalid IL or missing references) //IL_2f26: Unknown result type (might be due to invalid IL or missing references) //IL_2f2c: Unknown result type (might be due to invalid IL or missing references) //IL_2f36: Unknown result type (might be due to invalid IL or missing references) //IL_2f3b: Unknown result type (might be due to invalid IL or missing references) //IL_2f41: Unknown result type (might be due to invalid IL or missing references) //IL_2f4b: Unknown result type (might be due to invalid IL or missing references) //IL_2f50: Unknown result type (might be due to invalid IL or missing references) //IL_2f56: Unknown result type (might be due to invalid IL or missing references) //IL_2f5b: Unknown result type (might be due to invalid IL or missing references) //IL_2f61: Unknown result type (might be due to invalid IL or missing references) //IL_2f66: Unknown result type (might be due to invalid IL or missing references) //IL_2f71: Unknown result type (might be due to invalid IL or missing references) //IL_2f77: Unknown result type (might be due to invalid IL or missing references) //IL_2f7c: Unknown result type (might be due to invalid IL or missing references) //IL_2f82: Unknown result type (might be due to invalid IL or missing references) //IL_2f8c: Unknown result type (might be due to invalid IL or missing references) //IL_2f91: Unknown result type (might be due to invalid IL or missing references) //IL_2f97: Unknown result type (might be due to invalid IL or missing references) //IL_2f9c: Unknown result type (might be due to invalid IL or missing references) //IL_2fa2: Unknown result type (might be due to invalid IL or missing references) //IL_2fac: Unknown result type (might be due to invalid IL or missing references) //IL_2fb1: Unknown result type (might be due to invalid IL or missing references) //IL_2fb7: Unknown result type (might be due to invalid IL or missing references) //IL_2fc1: Unknown result type (might be due to invalid IL or missing references) //IL_2fc6: Unknown result type (might be due to invalid IL or missing references) //IL_2fcc: Unknown result type (might be due to invalid IL or missing references) //IL_2fd1: Unknown result type (might be due to invalid IL or missing references) //IL_2fd7: Unknown result type (might be due to invalid IL or missing references) //IL_2fdc: Unknown result type (might be due to invalid IL or missing references) //IL_2fe8: Unknown result type (might be due to invalid IL or missing references) //IL_19c3: Unknown result type (might be due to invalid IL or missing references) //IL_19c9: Unknown result type (might be due to invalid IL or missing references) //IL_19ce: Unknown result type (might be due to invalid IL or missing references) //IL_19d4: Unknown result type (might be due to invalid IL or missing references) //IL_19d9: Unknown result type (might be due to invalid IL or missing references) //IL_19df: Unknown result type (might be due to invalid IL or missing references) //IL_19e9: Unknown result type (might be due to invalid IL or missing references) //IL_19ee: Unknown result type (might be due to invalid IL or missing references) //IL_19f4: Unknown result type (might be due to invalid IL or missing references) //IL_19f9: Unknown result type (might be due to invalid IL or missing references) //IL_19ff: Unknown result type (might be due to invalid IL or missing references) //IL_1a09: Unknown result type (might be due to invalid IL or missing references) //IL_1a0e: Unknown result type (might be due to invalid IL or missing references) //IL_1a14: Unknown result type (might be due to invalid IL or missing references) //IL_1a1e: Unknown result type (might be due to invalid IL or missing references) //IL_1a23: Unknown result type (might be due to invalid IL or missing references) //IL_1a29: Unknown result type (might be due to invalid IL or missing references) //IL_1a2e: Unknown result type (might be due to invalid IL or missing references) //IL_1a34: Unknown result type (might be due to invalid IL or missing references) //IL_1a39: Unknown result type (might be due to invalid IL or missing references) //IL_1a44: Unknown result type (might be due to invalid IL or missing references) //IL_1a4a: Unknown result type (might be due to invalid IL or missing references) //IL_1a4f: Unknown result type (might be due to invalid IL or missing references) //IL_1a55: Unknown result type (might be due to invalid IL or missing references) //IL_1a5f: Unknown result type (might be due to invalid IL or missing references) //IL_1a64: Unknown result type (might be due to invalid IL or missing references) //IL_1a6a: Unknown result type (might be due to invalid IL or missing references) //IL_1a74: Unknown result type (might be due to invalid IL or missing references) //IL_1a79: Unknown result type (might be due to invalid IL or missing references) //IL_1a7f: Unknown result type (might be due to invalid IL or missing references) //IL_1a84: Unknown result type (might be due to invalid IL or missing references) //IL_1a8a: Unknown result type (might be due to invalid IL or missing references) //IL_1a8f: Unknown result type (might be due to invalid IL or missing references) //IL_1a95: Unknown result type (might be due to invalid IL or missing references) //IL_1a9f: Unknown result type (might be due to invalid IL or missing references) //IL_1aa4: Unknown result type (might be due to invalid IL or missing references) //IL_1aaa: Unknown result type (might be due to invalid IL or missing references) //IL_1ab4: Unknown result type (might be due to invalid IL or missing references) //IL_1ab9: Unknown result type (might be due to invalid IL or missing references) //IL_1abf: Unknown result type (might be due to invalid IL or missing references) //IL_1ac4: Unknown result type (might be due to invalid IL or missing references) //IL_1aca: Unknown result type (might be due to invalid IL or missing references) //IL_1acf: Unknown result type (might be due to invalid IL or missing references) //IL_1adb: Unknown result type (might be due to invalid IL or missing references) //IL_0521: Unknown result type (might be due to invalid IL or missing references) //IL_0527: Unknown result type (might be due to invalid IL or missing references) //IL_052c: Unknown result type (might be due to invalid IL or missing references) //IL_0537: Unknown result type (might be due to invalid IL or missing references) //IL_053d: Unknown result type (might be due to invalid IL or missing references) //IL_0542: Unknown result type (might be due to invalid IL or missing references) //IL_0548: Unknown result type (might be due to invalid IL or missing references) //IL_0552: Unknown result type (might be due to invalid IL or missing references) //IL_0557: Unknown result type (might be due to invalid IL or missing references) //IL_055d: Unknown result type (might be due to invalid IL or missing references) //IL_0567: Unknown result type (might be due to invalid IL or missing references) //IL_056c: Unknown result type (might be due to invalid IL or missing references) //IL_0572: Unknown result type (might be due to invalid IL or missing references) //IL_0577: Unknown result type (might be due to invalid IL or missing references) //IL_057d: Unknown result type (might be due to invalid IL or missing references) //IL_0582: Unknown result type (might be due to invalid IL or missing references) //IL_059a: Unknown result type (might be due to invalid IL or missing references) //IL_059f: Unknown result type (might be due to invalid IL or missing references) //IL_05b7: Unknown result type (might be due to invalid IL or missing references) //IL_05bd: Unknown result type (might be due to invalid IL or missing references) //IL_05c7: Unknown result type (might be due to invalid IL or missing references) //IL_05cc: Unknown result type (might be due to invalid IL or missing references) //IL_05d2: Unknown result type (might be due to invalid IL or missing references) //IL_05d7: Unknown result type (might be due to invalid IL or missing references) //IL_05e2: Unknown result type (might be due to invalid IL or missing references) //IL_05e8: Unknown result type (might be due to invalid IL or missing references) //IL_05ed: Unknown result type (might be due to invalid IL or missing references) //IL_05f8: Unknown result type (might be due to invalid IL or missing references) //IL_05fe: Unknown result type (might be due to invalid IL or missing references) //IL_0603: Unknown result type (might be due to invalid IL or missing references) //IL_0609: Unknown result type (might be due to invalid IL or missing references) //IL_0613: Unknown result type (might be due to invalid IL or missing references) //IL_0618: Unknown result type (might be due to invalid IL or missing references) //IL_061e: Unknown result type (might be due to invalid IL or missing references) //IL_0628: Unknown result type (might be due to invalid IL or missing references) //IL_062d: Unknown result type (might be due to invalid IL or missing references) //IL_0633: Unknown result type (might be due to invalid IL or missing references) //IL_0638: Unknown result type (might be due to invalid IL or missing references) //IL_063e: Unknown result type (might be due to invalid IL or missing references) //IL_0643: Unknown result type (might be due to invalid IL or missing references) //IL_065b: Unknown result type (might be due to invalid IL or missing references) //IL_0660: Unknown result type (might be due to invalid IL or missing references) //IL_0678: Unknown result type (might be due to invalid IL or missing references) //IL_067e: Unknown result type (might be due to invalid IL or missing references) //IL_0688: Unknown result type (might be due to invalid IL or missing references) //IL_068d: Unknown result type (might be due to invalid IL or missing references) //IL_0693: Unknown result type (might be due to invalid IL or missing references) //IL_0698: Unknown result type (might be due to invalid IL or missing references) //IL_06a4: Unknown result type (might be due to invalid IL or missing references) //IL_3002: Unknown result type (might be due to invalid IL or missing references) //IL_3008: Unknown result type (might be due to invalid IL or missing references) //IL_300d: Unknown result type (might be due to invalid IL or missing references) //IL_3013: Unknown result type (might be due to invalid IL or missing references) //IL_3018: Unknown result type (might be due to invalid IL or missing references) //IL_301e: Unknown result type (might be due to invalid IL or missing references) //IL_3028: Unknown result type (might be due to invalid IL or missing references) //IL_302d: Unknown result type (might be due to invalid IL or missing references) //IL_3033: Unknown result type (might be due to invalid IL or missing references) //IL_3038: Unknown result type (might be due to invalid IL or missing references) //IL_303e: Unknown result type (might be due to invalid IL or missing references) //IL_3048: Unknown result type (might be due to invalid IL or missing references) //IL_304d: Unknown result type (might be due to invalid IL or missing references) //IL_3053: Unknown result type (might be due to invalid IL or missing references) //IL_305d: Unknown result type (might be due to invalid IL or missing references) //IL_3062: Unknown result type (might be due to invalid IL or missing references) //IL_3068: Unknown result type (might be due to invalid IL or missing references) //IL_306d: Unknown result type (might be due to invalid IL or missing references) //IL_3073: Unknown result type (might be due to invalid IL or missing references) //IL_3078: Unknown result type (might be due to invalid IL or missing references) //IL_3083: Unknown result type (might be due to invalid IL or missing references) //IL_3089: Unknown result type (might be due to invalid IL or missing references) //IL_308e: Unknown result type (might be due to invalid IL or missing references) //IL_3094: Unknown result type (might be due to invalid IL or missing references) //IL_309e: Unknown result type (might be due to invalid IL or missing references) //IL_30a3: Unknown result type (might be due to invalid IL or missing references) //IL_30a9: Unknown result type (might be due to invalid IL or missing references) //IL_30b3: Unknown result type (might be due to invalid IL or missing references) //IL_30b8: Unknown result type (might be due to invalid IL or missing references) //IL_30be: Unknown result type (might be due to invalid IL or missing references) //IL_30c3: Unknown result type (might be due to invalid IL or missing references) //IL_30c9: Unknown result type (might be due to invalid IL or missing references) //IL_30ce: Unknown result type (might be due to invalid IL or missing references) //IL_30d4: Unknown result type (might be due to invalid IL or missing references) //IL_30de: Unknown result type (might be due to invalid IL or missing references) //IL_30e3: Unknown result type (might be due to invalid IL or missing references) //IL_30e9: Unknown result type (might be due to invalid IL or missing references) //IL_30f3: Unknown result type (might be due to invalid IL or missing references) //IL_30f8: Unknown result type (might be due to invalid IL or missing references) //IL_30fe: Unknown result type (might be due to invalid IL or missing references) //IL_3103: Unknown result type (might be due to invalid IL or missing references) //IL_3109: Unknown result type (might be due to invalid IL or missing references) //IL_310e: Unknown result type (might be due to invalid IL or missing references) //IL_311a: Unknown result type (might be due to invalid IL or missing references) //IL_1af5: Unknown result type (might be due to invalid IL or missing references) //IL_1afb: Unknown result type (might be due to invalid IL or missing references) //IL_1b00: Unknown result type (might be due to invalid IL or missing references) //IL_1b0b: Unknown result type (might be due to invalid IL or missing references) //IL_1b11: Unknown result type (might be due to invalid IL or missing references) //IL_1b16: Unknown result type (might be due to invalid IL or missing references) //IL_1b1c: Unknown result type (might be due to invalid IL or missing references) //IL_1b26: Unknown result type (might be due to invalid IL or missing references) //IL_1b2b: Unknown result type (might be due to invalid IL or missing references) //IL_1b31: Unknown result type (might be due to invalid IL or missing references) //IL_1b3b: Unknown result type (might be due to invalid IL or missing references) //IL_1b40: Unknown result type (might be due to invalid IL or missing references) //IL_1b46: Unknown result type (might be due to invalid IL or missing references) //IL_1b4b: Unknown result type (might be due to invalid IL or missing references) //IL_1b51: Unknown result type (might be due to invalid IL or missing references) //IL_1b56: Unknown result type (might be due to invalid IL or missing references) //IL_1b6e: Unknown result type (might be due to invalid IL or missing references) //IL_1b73: Unknown result type (might be due to invalid IL or missing references) //IL_1b8b: Unknown result type (might be due to invalid IL or missing references) //IL_1b91: Unknown result type (might be due to invalid IL or missing references) //IL_1b9b: Unknown result type (might be due to invalid IL or missing references) //IL_1ba0: Unknown result type (might be due to invalid IL or missing references) //IL_1ba6: Unknown result type (might be due to invalid IL or missing references) //IL_1bab: Unknown result type (might be due to invalid IL or missing references) //IL_1bb6: Unknown result type (might be due to invalid IL or missing references) //IL_1bbc: Unknown result type (might be due to invalid IL or missing references) //IL_1bc1: Unknown result type (might be due to invalid IL or missing references) //IL_1bcc: Unknown result type (might be due to invalid IL or missing references) //IL_1bd2: Unknown result type (might be due to invalid IL or missing references) //IL_1bd7: Unknown result type (might be due to invalid IL or missing references) //IL_1bdd: Unknown result type (might be due to invalid IL or missing references) //IL_1be7: Unknown result type (might be due to invalid IL or missing references) //IL_1bec: Unknown result type (might be due to invalid IL or missing references) //IL_1bf2: Unknown result type (might be due to invalid IL or missing references) //IL_1bfc: Unknown result type (might be due to invalid IL or missing references) //IL_1c01: Unknown result type (might be due to invalid IL or missing references) //IL_1c07: Unknown result type (might be due to invalid IL or missing references) //IL_1c0c: Unknown result type (might be due to invalid IL or missing references) //IL_1c12: Unknown result type (might be due to invalid IL or missing references) //IL_1c17: Unknown result type (might be due to invalid IL or missing references) //IL_1c2f: Unknown result type (might be due to invalid IL or missing references) //IL_1c34: Unknown result type (might be due to invalid IL or missing references) //IL_1c4c: Unknown result type (might be due to invalid IL or missing references) //IL_1c52: Unknown result type (might be due to invalid IL or missing references) //IL_1c5c: Unknown result type (might be due to invalid IL or missing references) //IL_1c61: Unknown result type (might be due to invalid IL or missing references) //IL_1c67: Unknown result type (might be due to invalid IL or missing references) //IL_1c6c: Unknown result type (might be due to invalid IL or missing references) //IL_1c78: Unknown result type (might be due to invalid IL or missing references) //IL_06be: Unknown result type (might be due to invalid IL or missing references) //IL_06c4: Unknown result type (might be due to invalid IL or missing references) //IL_06c9: Unknown result type (might be due to invalid IL or missing references) //IL_06cf: Unknown result type (might be due to invalid IL or missing references) //IL_06d9: Unknown result type (might be due to invalid IL or missing references) //IL_06de: Unknown result type (might be due to invalid IL or missing references) //IL_06e4: Unknown result type (might be due to invalid IL or missing references) //IL_06e9: Unknown result type (might be due to invalid IL or missing references) //IL_06ef: Unknown result type (might be due to invalid IL or missing references) //IL_06f9: Unknown result type (might be due to invalid IL or missing references) //IL_06fe: Unknown result type (might be due to invalid IL or missing references) //IL_0704: Unknown result type (might be due to invalid IL or missing references) //IL_0709: Unknown result type (might be due to invalid IL or missing references) //IL_0714: Unknown result type (might be due to invalid IL or missing references) //IL_071a: Unknown result type (might be due to invalid IL or missing references) //IL_071f: Unknown result type (might be due to invalid IL or missing references) //IL_0725: Unknown result type (might be due to invalid IL or missing references) //IL_072f: Unknown result type (might be due to invalid IL or missing references) //IL_0734: Unknown result type (might be due to invalid IL or missing references) //IL_073a: Unknown result type (might be due to invalid IL or missing references) //IL_073f: Unknown result type (might be due to invalid IL or missing references) //IL_0745: Unknown result type (might be due to invalid IL or missing references) //IL_074f: Unknown result type (might be due to invalid IL or missing references) //IL_0754: Unknown result type (might be due to invalid IL or missing references) //IL_075a: Unknown result type (might be due to invalid IL or missing references) //IL_075f: Unknown result type (might be due to invalid IL or missing references) //IL_076b: Unknown result type (might be due to invalid IL or missing references) //IL_3134: Unknown result type (might be due to invalid IL or missing references) //IL_313a: Unknown result type (might be due to invalid IL or missing references) //IL_313f: Unknown result type (might be due to invalid IL or missing references) //IL_3145: Unknown result type (might be due to invalid IL or missing references) //IL_314a: Unknown result type (might be due to invalid IL or missing references) //IL_3150: Unknown result type (might be due to invalid IL or missing references) //IL_315a: Unknown result type (might be due to invalid IL or missing references) //IL_315f: Unknown result type (might be due to invalid IL or missing references) //IL_3165: Unknown result type (might be due to invalid IL or missing references) //IL_316a: Unknown result type (might be due to invalid IL or missing references) //IL_3170: Unknown result type (might be due to invalid IL or missing references) //IL_317a: Unknown result type (might be due to invalid IL or missing references) //IL_317f: Unknown result type (might be due to invalid IL or missing references) //IL_3185: Unknown result type (might be due to invalid IL or missing references) //IL_318f: Unknown result type (might be due to invalid IL or missing references) //IL_3194: Unknown result type (might be due to invalid IL or missing references) //IL_319a: Unknown result type (might be due to invalid IL or missing references) //IL_319f: Unknown result type (might be due to invalid IL or missing references) //IL_31a5: Unknown result type (might be due to invalid IL or missing references) //IL_31aa: Unknown result type (might be due to invalid IL or missing references) //IL_31b5: Unknown result type (might be due to invalid IL or missing references) //IL_31bb: Unknown result type (might be due to invalid IL or missing references) //IL_31c0: Unknown result type (might be due to invalid IL or missing references) //IL_31c6: Unknown result type (might be due to invalid IL or missing references) //IL_31d0: Unknown result type (might be due to invalid IL or missing references) //IL_31d5: Unknown result type (might be due to invalid IL or missing references) //IL_31db: Unknown result type (might be due to invalid IL or missing references) //IL_31e5: Unknown result type (might be due to invalid IL or missing references) //IL_31ea: Unknown result type (might be due to invalid IL or missing references) //IL_31f0: Unknown result type (might be due to invalid IL or missing references) //IL_31f5: Unknown result type (might be due to invalid IL or missing references) //IL_31fb: Unknown result type (might be due to invalid IL or missing references) //IL_3200: Unknown result type (might be due to invalid IL or missing references) //IL_3206: Unknown result type (might be due to invalid IL or missing references) //IL_3210: Unknown result type (might be due to invalid IL or missing references) //IL_3215: Unknown result type (might be due to invalid IL or missing references) //IL_321b: Unknown result type (might be due to invalid IL or missing references) //IL_3225: Unknown result type (might be due to invalid IL or missing references) //IL_322a: Unknown result type (might be due to invalid IL or missing references) //IL_3230: Unknown result type (might be due to invalid IL or missing references) //IL_3235: Unknown result type (might be due to invalid IL or missing references) //IL_323b: Unknown result type (might be due to invalid IL or missing references) //IL_3240: Unknown result type (might be due to invalid IL or missing references) //IL_324c: Unknown result type (might be due to invalid IL or missing references) //IL_1c92: Unknown result type (might be due to invalid IL or missing references) //IL_1c98: Unknown result type (might be due to invalid IL or missing references) //IL_1c9d: Unknown result type (might be due to invalid IL or missing references) //IL_1ca8: Unknown result type (might be due to invalid IL or missing references) //IL_1cae: Unknown result type (might be due to invalid IL or missing references) //IL_1cb3: Unknown result type (might be due to invalid IL or missing references) //IL_1cb9: Unknown result type (might be due to invalid IL or missing references) //IL_1cc3: Unknown result type (might be due to invalid IL or missing references) //IL_1cc8: Unknown result type (might be due to invalid IL or missing references) //IL_1cce: Unknown result type (might be due to invalid IL or missing references) //IL_1cd8: Unknown result type (might be due to invalid IL or missing references) //IL_1cdd: Unknown result type (might be due to invalid IL or missing references) //IL_1ce3: Unknown result type (might be due to invalid IL or missing references) //IL_1ce8: Unknown result type (might be due to invalid IL or missing references) //IL_1cee: Unknown result type (might be due to invalid IL or missing references) //IL_1cf3: Unknown result type (might be due to invalid IL or missing references) //IL_1d0b: Unknown result type (might be due to invalid IL or missing references) //IL_1d10: Unknown result type (might be due to invalid IL or missing references) //IL_1d28: Unknown result type (might be due to invalid IL or missing references) //IL_1d2e: Unknown result type (might be due to invalid IL or missing references) //IL_1d38: Unknown result type (might be due to invalid IL or missing references) //IL_1d3d: Unknown result type (might be due to invalid IL or missing references) //IL_1d43: Unknown result type (might be due to invalid IL or missing references) //IL_1d48: Unknown result type (might be due to invalid IL or missing references) //IL_1d53: Unknown result type (might be due to invalid IL or missing references) //IL_1d59: Unknown result type (might be due to invalid IL or missing references) //IL_1d5e: Unknown result type (might be due to invalid IL or missing references) //IL_1d69: Unknown result type (might be due to invalid IL or missing references) //IL_1d6f: Unknown result type (might be due to invalid IL or missing references) //IL_1d74: Unknown result type (might be due to invalid IL or missing references) //IL_1d7a: Unknown result type (might be due to invalid IL or missing references) //IL_1d84: Unknown result type (might be due to invalid IL or missing references) //IL_1d89: Unknown result type (might be due to invalid IL or missing references) //IL_1d8f: Unknown result type (might be due to invalid IL or missing references) //IL_1d99: Unknown result type (might be due to invalid IL or missing references) //IL_1d9e: Unknown result type (might be due to invalid IL or missing references) //IL_1da4: Unknown result type (might be due to invalid IL or missing references) //IL_1da9: Unknown result type (might be due to invalid IL or missing references) //IL_1daf: Unknown result type (might be due to invalid IL or missing references) //IL_1db4: Unknown result type (might be due to invalid IL or missing references) //IL_1dcc: Unknown result type (might be due to invalid IL or missing references) //IL_1dd1: Unknown result type (might be due to invalid IL or missing references) //IL_1de9: Unknown result type (might be due to invalid IL or missing references) //IL_1def: Unknown result type (might be due to invalid IL or missing references) //IL_1df9: Unknown result type (might be due to invalid IL or missing references) //IL_1dfe: Unknown result type (might be due to invalid IL or missing references) //IL_1e04: Unknown result type (might be due to invalid IL or missing references) //IL_1e09: Unknown result type (might be due to invalid IL or missing references) //IL_1e15: Unknown result type (might be due to invalid IL or missing references) //IL_0785: Unknown result type (might be due to invalid IL or missing references) //IL_078b: Unknown result type (might be due to invalid IL or missing references) //IL_0790: Unknown result type (might be due to invalid IL or missing references) //IL_0796: Unknown result type (might be due to invalid IL or missing references) //IL_07a0: Unknown result type (might be due to invalid IL or missing references) //IL_07a5: Unknown result type (might be due to invalid IL or missing references) //IL_07ab: Unknown result type (might be due to invalid IL or missing references) //IL_07b0: Unknown result type (might be due to invalid IL or missing references) //IL_07b6: Unknown result type (might be due to invalid IL or missing references) //IL_07c0: Unknown result type (might be due to invalid IL or missing references) //IL_07c5: Unknown result type (might be due to invalid IL or missing references) //IL_07cb: Unknown result type (might be due to invalid IL or missing references) //IL_07d0: Unknown result type (might be due to invalid IL or missing references) //IL_07db: Unknown result type (might be due to invalid IL or missing references) //IL_07e1: Unknown result type (might be due to invalid IL or missing references) //IL_07e6: Unknown result type (might be due to invalid IL or missing references) //IL_07ec: Unknown result type (might be due to invalid IL or missing references) //IL_07f6: Unknown result type (might be due to invalid IL or missing references) //IL_07fb: Unknown result type (might be due to invalid IL or missing references) //IL_0801: Unknown result type (might be due to invalid IL or missing references) //IL_0806: Unknown result type (might be due to invalid IL or missing references) //IL_080c: Unknown result type (might be due to invalid IL or missing references) //IL_0816: Unknown result type (might be due to invalid IL or missing references) //IL_081b: Unknown result type (might be due to invalid IL or missing references) //IL_0821: Unknown result type (might be due to invalid IL or missing references) //IL_0826: Unknown result type (might be due to invalid IL or missing references) //IL_0832: Unknown result type (might be due to invalid IL or missing references) //IL_3266: Unknown result type (might be due to invalid IL or missing references) //IL_326c: Unknown result type (might be due to invalid IL or missing references) //IL_3271: Unknown result type (might be due to invalid IL or missing references) //IL_327c: Unknown result type (might be due to invalid IL or missing references) //IL_3282: Unknown result type (might be due to invalid IL or missing references) //IL_3287: Unknown result type (might be due to invalid IL or missing references) //IL_328d: Unknown result type (might be due to invalid IL or missing references) //IL_3297: Unknown result type (might be due to invalid IL or missing references) //IL_329c: Unknown result type (might be due to invalid IL or missing references) //IL_32a2: Unknown result type (might be due to invalid IL or missing references) //IL_32ac: Unknown result type (might be due to invalid IL or missing references) //IL_32b1: Unknown result type (might be due to invalid IL or missing references) //IL_32b7: Unknown result type (might be due to invalid IL or missing references) //IL_32bc: Unknown result type (might be due to invalid IL or missing references) //IL_32c2: Unknown result type (might be due to invalid IL or missing references) //IL_32c7: Unknown result type (might be due to invalid IL or missing references) //IL_32df: Unknown result type (might be due to invalid IL or missing references) //IL_32e4: Unknown result type (might be due to invalid IL or missing references) //IL_32fc: Unknown result type (might be due to invalid IL or missing references) //IL_3302: Unknown result type (might be due to invalid IL or missing references) //IL_330c: Unknown result type (might be due to invalid IL or missing references) //IL_3311: Unknown result type (might be due to invalid IL or missing references) //IL_3317: Unknown result type (might be due to invalid IL or missing references) //IL_331c: Unknown result type (might be due to invalid IL or missing references) //IL_3327: Unknown result type (might be due to invalid IL or missing references) //IL_332d: Unknown result type (might be due to invalid IL or missing references) //IL_3332: Unknown result type (might be due to invalid IL or missing references) //IL_333d: Unknown result type (might be due to invalid IL or missing references) //IL_3343: Unknown result type (might be due to invalid IL or missing references) //IL_3348: Unknown result type (might be due to invalid IL or missing references) //IL_334e: Unknown result type (might be due to invalid IL or missing references) //IL_3358: Unknown result type (might be due to invalid IL or missing references) //IL_335d: Unknown result type (might be due to invalid IL or missing references) //IL_3363: Unknown result type (might be due to invalid IL or missing references) //IL_336d: Unknown result type (might be due to invalid IL or missing references) //IL_3372: Unknown result type (might be due to invalid IL or missing references) //IL_3378: Unknown result type (might be due to invalid IL or missing references) //IL_337d: Unknown result type (might be due to invalid IL or missing references) //IL_3383: Unknown result type (might be due to invalid IL or missing references) //IL_3388: Unknown result type (might be due to invalid IL or missing references) //IL_33a0: Unknown result type (might be due to invalid IL or missing references) //IL_33a5: Unknown result type (might be due to invalid IL or missing references) //IL_33bd: Unknown result type (might be due to invalid IL or missing references) //IL_33c3: Unknown result type (might be due to invalid IL or missing references) //IL_33cd: Unknown result type (might be due to invalid IL or missing references) //IL_33d2: Unknown result type (might be due to invalid IL or missing references) //IL_33d8: Unknown result type (might be due to invalid IL or missing references) //IL_33dd: Unknown result type (might be due to invalid IL or missing references) //IL_33e9: Unknown result type (might be due to invalid IL or missing references) //IL_1e2f: Unknown result type (might be due to invalid IL or missing references) //IL_1e35: Unknown result type (might be due to invalid IL or missing references) //IL_1e3a: Unknown result type (might be due to invalid IL or missing references) //IL_1e40: Unknown result type (might be due to invalid IL or missing references) //IL_1e4a: Unknown result type (might be due to invalid IL or missing references) //IL_1e4f: Unknown result type (might be due to invalid IL or missing references) //IL_1e55: Unknown result type (might be due to invalid IL or missing references) //IL_1e5a: Unknown result type (might be due to invalid IL or missing references) //IL_1e60: Unknown result type (might be due to invalid IL or missing references) //IL_1e6a: Unknown result type (might be due to invalid IL or missing references) //IL_1e6f: Unknown result type (might be due to invalid IL or missing references) //IL_1e75: Unknown result type (might be due to invalid IL or missing references) //IL_1e7a: Unknown result type (might be due to invalid IL or missing references) //IL_1e85: Unknown result type (might be due to invalid IL or missing references) //IL_1e8b: Unknown result type (might be due to invalid IL or missing references) //IL_1e90: Unknown result type (might be due to invalid IL or missing references) //IL_1e96: Unknown result type (might be due to invalid IL or missing references) //IL_1ea0: Unknown result type (might be due to invalid IL or missing references) //IL_1ea5: Unknown result type (might be due to invalid IL or missing references) //IL_1eab: Unknown result type (might be due to invalid IL or missing references) //IL_1eb0: Unknown result type (might be due to invalid IL or missing references) //IL_1eb6: Unknown result type (might be due to invalid IL or missing references) //IL_1ec0: Unknown result type (might be due to invalid IL or missing references) //IL_1ec5: Unknown result type (might be due to invalid IL or missing references) //IL_1ecb: Unknown result type (might be due to invalid IL or missing references) //IL_1ed0: Unknown result type (might be due to invalid IL or missing references) //IL_1edc: Unknown result type (might be due to invalid IL or missing references) //IL_0847: Unknown result type (might be due to invalid IL or missing references) //IL_0852: Unknown result type (might be due to invalid IL or missing references) //IL_0858: Unknown result type (might be due to invalid IL or missing references) //IL_085d: Unknown result type (might be due to invalid IL or missing references) //IL_0863: Unknown result type (might be due to invalid IL or missing references) //IL_0868: Unknown result type (might be due to invalid IL or missing references) //IL_086e: Unknown result type (might be due to invalid IL or missing references) //IL_0873: Unknown result type (might be due to invalid IL or missing references) //IL_0879: Unknown result type (might be due to invalid IL or missing references) //IL_0883: Unknown result type (might be due to invalid IL or missing references) //IL_0888: Unknown result type (might be due to invalid IL or missing references) //IL_088e: Unknown result type (might be due to invalid IL or missing references) //IL_0898: Unknown result type (might be due to invalid IL or missing references) //IL_089d: Unknown result type (might be due to invalid IL or missing references) //IL_08a3: Unknown result type (might be due to invalid IL or missing references) //IL_08a8: Unknown result type (might be due to invalid IL or missing references) //IL_08ae: Unknown result type (might be due to invalid IL or missing references) //IL_08b3: Unknown result type (might be due to invalid IL or missing references) //IL_08bf: Unknown result type (might be due to invalid IL or missing references) //IL_3403: Unknown result type (might be due to invalid IL or missing references) //IL_3409: Unknown result type (might be due to invalid IL or missing references) //IL_340e: Unknown result type (might be due to invalid IL or missing references) //IL_3419: Unknown result type (might be due to invalid IL or missing references) //IL_341f: Unknown result type (might be due to invalid IL or missing references) //IL_3424: Unknown result type (might be due to invalid IL or missing references) //IL_342a: Unknown result type (might be due to invalid IL or missing references) //IL_3434: Unknown result type (might be due to invalid IL or missing references) //IL_3439: Unknown result type (might be due to invalid IL or missing references) //IL_343f: Unknown result type (might be due to invalid IL or missing references) //IL_3449: Unknown result type (might be due to invalid IL or missing references) //IL_344e: Unknown result type (might be due to invalid IL or missing references) //IL_3454: Unknown result type (might be due to invalid IL or missing references) //IL_3459: Unknown result type (might be due to invalid IL or missing references) //IL_345f: Unknown result type (might be due to invalid IL or missing references) //IL_3464: Unknown result type (might be due to invalid IL or missing references) //IL_347c: Unknown result type (might be due to invalid IL or missing references) //IL_3481: Unknown result type (might be due to invalid IL or missing references) //IL_3499: Unknown result type (might be due to invalid IL or missing references) //IL_349f: Unknown result type (might be due to invalid IL or missing references) //IL_34a9: Unknown result type (might be due to invalid IL or missing references) //IL_34ae: Unknown result type (might be due to invalid IL or missing references) //IL_34b4: Unknown result type (might be due to invalid IL or missing references) //IL_34b9: Unknown result type (might be due to invalid IL or missing references) //IL_34c4: Unknown result type (might be due to invalid IL or missing references) //IL_34ca: Unknown result type (might be due to invalid IL or missing references) //IL_34cf: Unknown result type (might be due to invalid IL or missing references) //IL_34da: Unknown result type (might be due to invalid IL or missing references) //IL_34e0: Unknown result type (might be due to invalid IL or missing references) //IL_34e5: Unknown result type (might be due to invalid IL or missing references) //IL_34eb: Unknown result type (might be due to invalid IL or missing references) //IL_34f5: Unknown result type (might be due to invalid IL or missing references) //IL_34fa: Unknown result type (might be due to invalid IL or missing references) //IL_3500: Unknown result type (might be due to invalid IL or missing references) //IL_350a: Unknown result type (might be due to invalid IL or missing references) //IL_350f: Unknown result type (might be due to invalid IL or missing references) //IL_3515: Unknown result type (might be due to invalid IL or missing references) //IL_351a: Unknown result type (might be due to invalid IL or missing references) //IL_3520: Unknown result type (might be due to invalid IL or missing references) //IL_3525: Unknown result type (might be due to invalid IL or missing references) //IL_353d: Unknown result type (might be due to invalid IL or missing references) //IL_3542: Unknown result type (might be due to invalid IL or missing references) //IL_355a: Unknown result type (might be due to invalid IL or missing references) //IL_3560: Unknown result type (might be due to invalid IL or missing references) //IL_356a: Unknown result type (might be due to invalid IL or missing references) //IL_356f: Unknown result type (might be due to invalid IL or missing references) //IL_3575: Unknown result type (might be due to invalid IL or missing references) //IL_357a: Unknown result type (might be due to invalid IL or missing references) //IL_3586: Unknown result type (might be due to invalid IL or missing references) //IL_1ef6: Unknown result type (might be due to invalid IL or missing references) //IL_1efc: Unknown result type (might be due to invalid IL or missing references) //IL_1f01: Unknown result type (might be due to invalid IL or missing references) //IL_1f07: Unknown result type (might be due to invalid IL or missing references) //IL_1f11: Unknown result type (might be due to invalid IL or missing references) //IL_1f16: Unknown result type (might be due to invalid IL or missing references) //IL_1f1c: Unknown result type (might be due to invalid IL or missing references) //IL_1f21: Unknown result type (might be due to invalid IL or missing references) //IL_1f27: Unknown result type (might be due to invalid IL or missing references) //IL_1f31: Unknown result type (might be due to invalid IL or missing references) //IL_1f36: Unknown result type (might be due to invalid IL or missing references) //IL_1f3c: Unknown result type (might be due to invalid IL or missing references) //IL_1f41: Unknown result type (might be due to invalid IL or missing references) //IL_1f4c: Unknown result type (might be due to invalid IL or missing references) //IL_1f52: Unknown result type (might be due to invalid IL or missing references) //IL_1f57: Unknown result type (might be due to invalid IL or missing references) //IL_1f5d: Unknown result type (might be due to invalid IL or missing references) //IL_1f67: Unknown result type (might be due to invalid IL or missing references) //IL_1f6c: Unknown result type (might be due to invalid IL or missing references) //IL_1f72: Unknown result type (might be due to invalid IL or missing references) //IL_1f77: Unknown result type (might be due to invalid IL or missing references) //IL_1f7d: Unknown result type (might be due to invalid IL or missing references) //IL_1f87: Unknown result type (might be due to invalid IL or missing references) //IL_1f8c: Unknown result type (might be due to invalid IL or missing references) //IL_1f92: Unknown result type (might be due to invalid IL or missing references) //IL_1f97: Unknown result type (might be due to invalid IL or missing references) //IL_1fa3: Unknown result type (might be due to invalid IL or missing references) //IL_08d4: Unknown result type (might be due to invalid IL or missing references) //IL_08da: Unknown result type (might be due to invalid IL or missing references) //IL_08e4: Unknown result type (might be due to invalid IL or missing references) //IL_08e9: Unknown result type (might be due to invalid IL or missing references) //IL_08f4: Unknown result type (might be due to invalid IL or missing references) //IL_08fa: Unknown result type (might be due to invalid IL or missing references) //IL_08ff: Unknown result type (might be due to invalid IL or missing references) //IL_0905: Unknown result type (might be due to invalid IL or missing references) //IL_090a: Unknown result type (might be due to invalid IL or missing references) //IL_0910: Unknown result type (might be due to invalid IL or missing references) //IL_0915: Unknown result type (might be due to invalid IL or missing references) //IL_091b: Unknown result type (might be due to invalid IL or missing references) //IL_0925: Unknown result type (might be due to invalid IL or missing references) //IL_092a: Unknown result type (might be due to invalid IL or missing references) //IL_0930: Unknown result type (might be due to invalid IL or missing references) //IL_093a: Unknown result type (might be due to invalid IL or missing references) //IL_093f: Unknown result type (might be due to invalid IL or missing references) //IL_0945: Unknown result type (might be due to invalid IL or missing references) //IL_094a: Unknown result type (might be due to invalid IL or missing references) //IL_0950: Unknown result type (might be due to invalid IL or missing references) //IL_095a: Unknown result type (might be due to invalid IL or missing references) //IL_095f: Unknown result type (might be due to invalid IL or missing references) //IL_0965: Unknown result type (might be due to invalid IL or missing references) //IL_096a: Unknown result type (might be due to invalid IL or missing references) //IL_0976: Unknown result type (might be due to invalid IL or missing references) //IL_35a0: Unknown result type (might be due to invalid IL or missing references) //IL_35a6: Unknown result type (might be due to invalid IL or missing references) //IL_35ab: Unknown result type (might be due to invalid IL or missing references) //IL_35b1: Unknown result type (might be due to invalid IL or missing references) //IL_35bb: Unknown result type (might be due to invalid IL or missing references) //IL_35c0: Unknown result type (might be due to invalid IL or missing references) //IL_35c6: Unknown result type (might be due to invalid IL or missing references) //IL_35cb: Unknown result type (might be due to invalid IL or missing references) //IL_35d1: Unknown result type (might be due to invalid IL or missing references) //IL_35db: Unknown result type (might be due to invalid IL or missing references) //IL_35e0: Unknown result type (might be due to invalid IL or missing references) //IL_35e6: Unknown result type (might be due to invalid IL or missing references) //IL_35eb: Unknown result type (might be due to invalid IL or missing references) //IL_35f6: Unknown result type (might be due to invalid IL or missing references) //IL_35fc: Unknown result type (might be due to invalid IL or missing references) //IL_3601: Unknown result type (might be due to invalid IL or missing references) //IL_3607: Unknown result type (might be due to invalid IL or missing references) //IL_3611: Unknown result type (might be due to invalid IL or missing references) //IL_3616: Unknown result type (might be due to invalid IL or missing references) //IL_361c: Unknown result type (might be due to invalid IL or missing references) //IL_3621: Unknown result type (might be due to invalid IL or missing references) //IL_3627: Unknown result type (might be due to invalid IL or missing references) //IL_3631: Unknown result type (might be due to invalid IL or missing references) //IL_3636: Unknown result type (might be due to invalid IL or missing references) //IL_363c: Unknown result type (might be due to invalid IL or missing references) //IL_3641: Unknown result type (might be due to invalid IL or missing references) //IL_364d: Unknown result type (might be due to invalid IL or missing references) //IL_1fb8: Unknown result type (might be due to invalid IL or missing references) //IL_1fc3: Unknown result type (might be due to invalid IL or missing references) //IL_1fc9: Unknown result type (might be due to invalid IL or missing references) //IL_1fce: Unknown result type (might be due to invalid IL or missing references) //IL_1fd4: Unknown result type (might be due to invalid IL or missing references) //IL_1fd9: Unknown result type (might be due to invalid IL or missing references) //IL_1fdf: Unknown result type (might be due to invalid IL or missing references) //IL_1fe4: Unknown result type (might be due to invalid IL or missing references) //IL_1fea: Unknown result type (might be due to invalid IL or missing references) //IL_1ff4: Unknown result type (might be due to invalid IL or missing references) //IL_1ff9: Unknown result type (might be due to invalid IL or missing references) //IL_1fff: Unknown result type (might be due to invalid IL or missing references) //IL_2009: Unknown result type (might be due to invalid IL or missing references) //IL_200e: Unknown result type (might be due to invalid IL or missing references) //IL_2014: Unknown result type (might be due to invalid IL or missing references) //IL_2019: Unknown result type (might be due to invalid IL or missing references) //IL_201f: Unknown result type (might be due to invalid IL or missing references) //IL_2024: Unknown result type (might be due to invalid IL or missing references) //IL_2030: Unknown result type (might be due to invalid IL or missing references) //IL_098b: Unknown result type (might be due to invalid IL or missing references) //IL_0991: Unknown result type (might be due to invalid IL or missing references) //IL_099b: Unknown result type (might be due to invalid IL or missing references) //IL_09a0: Unknown result type (might be due to invalid IL or missing references) //IL_09ab: Unknown result type (might be due to invalid IL or missing references) //IL_09b1: Unknown result type (might be due to invalid IL or missing references) //IL_09b6: Unknown result type (might be due to invalid IL or missing references) //IL_09bc: Unknown result type (might be due to invalid IL or missing references) //IL_09c1: Unknown result type (might be due to invalid IL or missing references) //IL_09c7: Unknown result type (might be due to invalid IL or missing references) //IL_09cc: Unknown result type (might be due to invalid IL or missing references) //IL_09d2: Unknown result type (might be due to invalid IL or missing references) //IL_09dc: Unknown result type (might be due to invalid IL or missing references) //IL_09e1: Unknown result type (might be due to invalid IL or missing references) //IL_09e7: Unknown result type (might be due to invalid IL or missing references) //IL_09f1: Unknown result type (might be due to invalid IL or missing references) //IL_09f6: Unknown result type (might be due to invalid IL or missing references) //IL_09fc: Unknown result type (might be due to invalid IL or missing references) //IL_0a01: Unknown result type (might be due to invalid IL or missing references) //IL_0a07: Unknown result type (might be due to invalid IL or missing references) //IL_0a11: Unknown result type (might be due to invalid IL or missing references) //IL_0a16: Unknown result type (might be due to invalid IL or missing references) //IL_0a1c: Unknown result type (might be due to invalid IL or missing references) //IL_0a21: Unknown result type (might be due to invalid IL or missing references) //IL_0a2d: Unknown result type (might be due to invalid IL or missing references) //IL_3667: Unknown result type (might be due to invalid IL or missing references) //IL_366d: Unknown result type (might be due to invalid IL or missing references) //IL_3672: Unknown result type (might be due to invalid IL or missing references) //IL_3678: Unknown result type (might be due to invalid IL or missing references) //IL_3682: Unknown result type (might be due to invalid IL or missing references) //IL_3687: Unknown result type (might be due to invalid IL or missing references) //IL_368d: Unknown result type (might be due to invalid IL or missing references) //IL_3692: Unknown result type (might be due to invalid IL or missing references) //IL_3698: Unknown result type (might be due to invalid IL or missing references) //IL_36a2: Unknown result type (might be due to invalid IL or missing references) //IL_36a7: Unknown result type (might be due to invalid IL or missing references) //IL_36ad: Unknown result type (might be due to invalid IL or missing references) //IL_36b2: Unknown result type (might be due to invalid IL or missing references) //IL_36bd: Unknown result type (might be due to invalid IL or missing references) //IL_36c3: Unknown result type (might be due to invalid IL or missing references) //IL_36c8: Unknown result type (might be due to invalid IL or missing references) //IL_36ce: Unknown result type (might be due to invalid IL or missing references) //IL_36d8: Unknown result type (might be due to invalid IL or missing references) //IL_36dd: Unknown result type (might be due to invalid IL or missing references) //IL_36e3: Unknown result type (might be due to invalid IL or missing references) //IL_36e8: Unknown result type (might be due to invalid IL or missing references) //IL_36ee: Unknown result type (might be due to invalid IL or missing references) //IL_36f8: Unknown result type (might be due to invalid IL or missing references) //IL_36fd: Unknown result type (might be due to invalid IL or missing references) //IL_3703: Unknown result type (might be due to invalid IL or missing references) //IL_3708: Unknown result type (might be due to invalid IL or missing references) //IL_3714: Unknown result type (might be due to invalid IL or missing references) //IL_2045: Unknown result type (might be due to invalid IL or missing references) //IL_204b: Unknown result type (might be due to invalid IL or missing references) //IL_2055: Unknown result type (might be due to invalid IL or missing references) //IL_205a: Unknown result type (might be due to invalid IL or missing references) //IL_2065: Unknown result type (might be due to invalid IL or missing references) //IL_206b: Unknown result type (might be due to invalid IL or missing references) //IL_2070: Unknown result type (might be due to invalid IL or missing references) //IL_2076: Unknown result type (might be due to invalid IL or missing references) //IL_207b: Unknown result type (might be due to invalid IL or missing references) //IL_2081: Unknown result type (might be due to invalid IL or missing references) //IL_2086: Unknown result type (might be due to invalid IL or missing references) //IL_208c: Unknown result type (might be due to invalid IL or missing references) //IL_2096: Unknown result type (might be due to invalid IL or missing references) //IL_209b: Unknown result type (might be due to invalid IL or missing references) //IL_20a1: Unknown result type (might be due to invalid IL or missing references) //IL_20ab: Unknown result type (might be due to invalid IL or missing references) //IL_20b0: Unknown result type (might be due to invalid IL or missing references) //IL_20b6: Unknown result type (might be due to invalid IL or missing references) //IL_20bb: Unknown result type (might be due to invalid IL or missing references) //IL_20c1: Unknown result type (might be due to invalid IL or missing references) //IL_20cb: Unknown result type (might be due to invalid IL or missing references) //IL_20d0: Unknown result type (might be due to invalid IL or missing references) //IL_20d6: Unknown result type (might be due to invalid IL or missing references) //IL_20db: Unknown result type (might be due to invalid IL or missing references) //IL_20e7: Unknown result type (might be due to invalid IL or missing references) //IL_0a42: Unknown result type (might be due to invalid IL or missing references) //IL_0a48: Unknown result type (might be due to invalid IL or missing references) //IL_0a52: Unknown result type (might be due to invalid IL or missing references) //IL_0a57: Unknown result type (might be due to invalid IL or missing references) //IL_0a62: Unknown result type (might be due to invalid IL or missing references) //IL_0a68: Unknown result type (might be due to invalid IL or missing references) //IL_0a6d: Unknown result type (might be due to invalid IL or missing references) //IL_0a73: Unknown result type (might be due to invalid IL or missing references) //IL_0a78: Unknown result type (might be due to invalid IL or missing references) //IL_0a7e: Unknown result type (might be due to invalid IL or missing references) //IL_0a83: Unknown result type (might be due to invalid IL or missing references) //IL_0a89: Unknown result type (might be due to invalid IL or missing references) //IL_0a93: Unknown result type (might be due to invalid IL or missing references) //IL_0a98: Unknown result type (might be due to invalid IL or missing references) //IL_0a9e: Unknown result type (might be due to invalid IL or missing references) //IL_0aa8: Unknown result type (might be due to invalid IL or missing references) //IL_0aad: Unknown result type (might be due to invalid IL or missing references) //IL_0ab3: Unknown result type (might be due to invalid IL or missing references) //IL_0ab8: Unknown result type (might be due to invalid IL or missing references) //IL_0abe: Unknown result type (might be due to invalid IL or missing references) //IL_0ac8: Unknown result type (might be due to invalid IL or missing references) //IL_0acd: Unknown result type (might be due to invalid IL or missing references) //IL_0ad3: Unknown result type (might be due to invalid IL or missing references) //IL_0ad8: Unknown result type (might be due to invalid IL or missing references) //IL_0ae4: Unknown result type (might be due to invalid IL or missing references) //IL_3729: Unknown result type (might be due to invalid IL or missing references) //IL_3734: Unknown result type (might be due to invalid IL or missing references) //IL_373a: Unknown result type (might be due to invalid IL or missing references) //IL_373f: Unknown result type (might be due to invalid IL or missing references) //IL_3745: Unknown result type (might be due to invalid IL or missing references) //IL_374a: Unknown result type (might be due to invalid IL or missing references) //IL_3750: Unknown result type (might be due to invalid IL or missing references) //IL_3755: Unknown result type (might be due to invalid IL or missing references) //IL_375b: Unknown result type (might be due to invalid IL or missing references) //IL_3765: Unknown result type (might be due to invalid IL or missing references) //IL_376a: Unknown result type (might be due to invalid IL or missing references) //IL_3770: Unknown result type (might be due to invalid IL or missing references) //IL_377a: Unknown result type (might be due to invalid IL or missing references) //IL_377f: Unknown result type (might be due to invalid IL or missing references) //IL_3785: Unknown result type (might be due to invalid IL or missing references) //IL_378a: Unknown result type (might be due to invalid IL or missing references) //IL_3790: Unknown result type (might be due to invalid IL or missing references) //IL_3795: Unknown result type (might be due to invalid IL or missing references) //IL_37a1: Unknown result type (might be due to invalid IL or missing references) //IL_20fc: Unknown result type (might be due to invalid IL or missing references) //IL_2102: Unknown result type (might be due to invalid IL or missing references) //IL_210c: Unknown result type (might be due to invalid IL or missing references) //IL_2111: Unknown result type (might be due to invalid IL or missing references) //IL_211c: Unknown result type (might be due to invalid IL or missing references) //IL_2122: Unknown result type (might be due to invalid IL or missing references) //IL_2127: Unknown result type (might be due to invalid IL or missing references) //IL_212d: Unknown result type (might be due to invalid IL or missing references) //IL_2132: Unknown result type (might be due to invalid IL or missing references) //IL_2138: Unknown result type (might be due to invalid IL or missing references) //IL_213d: Unknown result type (might be due to invalid IL or missing references) //IL_2143: Unknown result type (might be due to invalid IL or missing references) //IL_214d: Unknown result type (might be due to invalid IL or missing references) //IL_2152: Unknown result type (might be due to invalid IL or missing references) //IL_2158: Unknown result type (might be due to invalid IL or missing references) //IL_2162: Unknown result type (might be due to invalid IL or missing references) //IL_2167: Unknown result type (might be due to invalid IL or missing references) //IL_216d: Unknown result type (might be due to invalid IL or missing references) //IL_2172: Unknown result type (might be due to invalid IL or missing references) //IL_2178: Unknown result type (might be due to invalid IL or missing references) //IL_2182: Unknown result type (might be due to invalid IL or missing references) //IL_2187: Unknown result type (might be due to invalid IL or missing references) //IL_218d: Unknown result type (might be due to invalid IL or missing references) //IL_2192: Unknown result type (might be due to invalid IL or missing references) //IL_219e: Unknown result type (might be due to invalid IL or missing references) //IL_0afe: Unknown result type (might be due to invalid IL or missing references) //IL_0b04: Unknown result type (might be due to invalid IL or missing references) //IL_0b09: Unknown result type (might be due to invalid IL or missing references) //IL_0b0f: Unknown result type (might be due to invalid IL or missing references) //IL_0b14: Unknown result type (might be due to invalid IL or missing references) //IL_0b1a: Unknown result type (might be due to invalid IL or missing references) //IL_0b24: Unknown result type (might be due to invalid IL or missing references) //IL_0b29: Unknown result type (might be due to invalid IL or missing references) //IL_0b2f: Unknown result type (might be due to invalid IL or missing references) //IL_0b34: Unknown result type (might be due to invalid IL or missing references) //IL_0b3f: Unknown result type (might be due to invalid IL or missing references) //IL_0b45: Unknown result type (might be due to invalid IL or missing references) //IL_0b4a: Unknown result type (might be due to invalid IL or missing references) //IL_0b50: Unknown result type (might be due to invalid IL or missing references) //IL_0b55: Unknown result type (might be due to invalid IL or missing references) //IL_0b5b: Unknown result type (might be due to invalid IL or missing references) //IL_0b65: Unknown result type (might be due to invalid IL or missing references) //IL_0b6a: Unknown result type (might be due to invalid IL or missing references) //IL_0b70: Unknown result type (might be due to invalid IL or missing references) //IL_0b75: Unknown result type (might be due to invalid IL or missing references) //IL_0b81: Unknown result type (might be due to invalid IL or missing references) //IL_37b6: Unknown result type (might be due to invalid IL or missing references) //IL_37bc: Unknown result type (might be due to invalid IL or missing references) //IL_37c6: Unknown result type (might be due to invalid IL or missing references) //IL_37cb: Unknown result type (might be due to invalid IL or missing references) //IL_37d6: Unknown result type (might be due to invalid IL or missing references) //IL_37dc: Unknown result type (might be due to invalid IL or missing references) //IL_37e1: Unknown result type (might be due to invalid IL or missing references) //IL_37e7: Unknown result type (might be due to invalid IL or missing references) //IL_37ec: Unknown result type (might be due to invalid IL or missing references) //IL_37f2: Unknown result type (might be due to invalid IL or missing references) //IL_37f7: Unknown result type (might be due to invalid IL or missing references) //IL_37fd: Unknown result type (might be due to invalid IL or missing references) //IL_3807: Unknown result type (might be due to invalid IL or missing references) //IL_380c: Unknown result type (might be due to invalid IL or missing references) //IL_3812: Unknown result type (might be due to invalid IL or missing references) //IL_381c: Unknown result type (might be due to invalid IL or missing references) //IL_3821: Unknown result type (might be due to invalid IL or missing references) //IL_3827: Unknown result type (might be due to invalid IL or missing references) //IL_382c: Unknown result type (might be due to invalid IL or missing references) //IL_3832: Unknown result type (might be due to invalid IL or missing references) //IL_383c: Unknown result type (might be due to invalid IL or missing references) //IL_3841: Unknown result type (might be due to invalid IL or missing references) //IL_3847: Unknown result type (might be due to invalid IL or missing references) //IL_384c: Unknown result type (might be due to invalid IL or missing references) //IL_3858: Unknown result type (might be due to invalid IL or missing references) //IL_21b3: Unknown result type (might be due to invalid IL or missing references) //IL_21b9: Unknown result type (might be due to invalid IL or missing references) //IL_21c3: Unknown result type (might be due to invalid IL or missing references) //IL_21c8: Unknown result type (might be due to invalid IL or missing references) //IL_21d3: Unknown result type (might be due to invalid IL or missing references) //IL_21d9: Unknown result type (might be due to invalid IL or missing references) //IL_21de: Unknown result type (might be due to invalid IL or missing references) //IL_21e4: Unknown result type (might be due to invalid IL or missing references) //IL_21e9: Unknown result type (might be due to invalid IL or missing references) //IL_21ef: Unknown result type (might be due to invalid IL or missing references) //IL_21f4: Unknown result type (might be due to invalid IL or missing references) //IL_21fa: Unknown result type (might be due to invalid IL or missing references) //IL_2204: Unknown result type (might be due to invalid IL or missing references) //IL_2209: Unknown result type (might be due to invalid IL or missing references) //IL_220f: Unknown result type (might be due to invalid IL or missing references) //IL_2219: Unknown result type (might be due to invalid IL or missing references) //IL_221e: Unknown result type (might be due to invalid IL or missing references) //IL_2224: Unknown result type (might be due to invalid IL or missing references) //IL_2229: Unknown result type (might be due to invalid IL or missing references) //IL_222f: Unknown result type (might be due to invalid IL or missing references) //IL_2239: Unknown result type (might be due to invalid IL or missing references) //IL_223e: Unknown result type (might be due to invalid IL or missing references) //IL_2244: Unknown result type (might be due to invalid IL or missing references) //IL_2249: Unknown result type (might be due to invalid IL or missing references) //IL_2255: Unknown result type (might be due to invalid IL or missing references) //IL_0b9b: Unknown result type (might be due to invalid IL or missing references) //IL_0ba1: Unknown result type (might be due to invalid IL or missing references) //IL_0ba6: Unknown result type (might be due to invalid IL or missing references) //IL_0bac: Unknown result type (might be due to invalid IL or missing references) //IL_0bb1: Unknown result type (might be due to invalid IL or missing references) //IL_0bb7: Unknown result type (might be due to invalid IL or missing references) //IL_0bc1: Unknown result type (might be due to invalid IL or missing references) //IL_0bc6: Unknown result type (might be due to invalid IL or missing references) //IL_0bcc: Unknown result type (might be due to invalid IL or missing references) //IL_0bd1: Unknown result type (might be due to invalid IL or missing references) //IL_0bd7: Unknown result type (might be due to invalid IL or missing references) //IL_0be1: Unknown result type (might be due to invalid IL or missing references) //IL_0be6: Unknown result type (might be due to invalid IL or missing references) //IL_0bf1: Unknown result type (might be due to invalid IL or missing references) //IL_0bf7: Unknown result type (might be due to invalid IL or missing references) //IL_0bfc: Unknown result type (might be due to invalid IL or missing references) //IL_0c02: Unknown result type (might be due to invalid IL or missing references) //IL_0c07: Unknown result type (might be due to invalid IL or missing references) //IL_0c0d: Unknown result type (might be due to invalid IL or missing references) //IL_0c17: Unknown result type (might be due to invalid IL or missing references) //IL_0c1c: Unknown result type (might be due to invalid IL or missing references) //IL_0c22: Unknown result type (might be due to invalid IL or missing references) //IL_0c27: Unknown result type (might be due to invalid IL or missing references) //IL_0c2d: Unknown result type (might be due to invalid IL or missing references) //IL_0c37: Unknown result type (might be due to invalid IL or missing references) //IL_0c3c: Unknown result type (might be due to invalid IL or missing references) //IL_0c48: Unknown result type (might be due to invalid IL or missing references) //IL_386d: Unknown result type (might be due to invalid IL or missing references) //IL_3873: Unknown result type (might be due to invalid IL or missing references) //IL_387d: Unknown result type (might be due to invalid IL or missing references) //IL_3882: Unknown result type (might be due to invalid IL or missing references) //IL_388d: Unknown result type (might be due to invalid IL or missing references) //IL_3893: Unknown result type (might be due to invalid IL or missing references) //IL_3898: Unknown result type (might be due to invalid IL or missing references) //IL_389e: Unknown result type (might be due to invalid IL or missing references) //IL_38a3: Unknown result type (might be due to invalid IL or missing references) //IL_38a9: Unknown result type (might be due to invalid IL or missing references) //IL_38ae: Unknown result type (might be due to invalid IL or missing references) //IL_38b4: Unknown result type (might be due to invalid IL or missing references) //IL_38be: Unknown result type (might be due to invalid IL or missing references) //IL_38c3: Unknown result type (might be due to invalid IL or missing references) //IL_38c9: Unknown result type (might be due to invalid IL or missing references) //IL_38d3: Unknown result type (might be due to invalid IL or missing references) //IL_38d8: Unknown result type (might be due to invalid IL or missing references) //IL_38de: Unknown result type (might be due to invalid IL or missing references) //IL_38e3: Unknown result type (might be due to invalid IL or missing references) //IL_38e9: Unknown result type (might be due to invalid IL or missing references) //IL_38f3: Unknown result type (might be due to invalid IL or missing references) //IL_38f8: Unknown result type (might be due to invalid IL or missing references) //IL_38fe: Unknown result type (might be due to invalid IL or missing references) //IL_3903: Unknown result type (might be due to invalid IL or missing references) //IL_390f: Unknown result type (might be due to invalid IL or missing references) //IL_226f: Unknown result type (might be due to invalid IL or missing references) //IL_2275: Unknown result type (might be due to invalid IL or missing references) //IL_227a: Unknown result type (might be due to invalid IL or missing references) //IL_2280: Unknown result type (might be due to invalid IL or missing references) //IL_2285: Unknown result type (might be due to invalid IL or missing references) //IL_228b: Unknown result type (might be due to invalid IL or missing references) //IL_2295: Unknown result type (might be due to invalid IL or missing references) //IL_229a: Unknown result type (might be due to invalid IL or missing references) //IL_22a0: Unknown result type (might be due to invalid IL or missing references) //IL_22a5: Unknown result type (might be due to invalid IL or missing references) //IL_22b0: Unknown result type (might be due to invalid IL or missing references) //IL_22b6: Unknown result type (might be due to invalid IL or missing references) //IL_22bb: Unknown result type (might be due to invalid IL or missing references) //IL_22c1: Unknown result type (might be due to invalid IL or missing references) //IL_22c6: Unknown result type (might be due to invalid IL or missing references) //IL_22cc: Unknown result type (might be due to invalid IL or missing references) //IL_22d6: Unknown result type (might be due to invalid IL or missing references) //IL_22db: Unknown result type (might be due to invalid IL or missing references) //IL_22e1: Unknown result type (might be due to invalid IL or missing references) //IL_22e6: Unknown result type (might be due to invalid IL or missing references) //IL_22f2: Unknown result type (might be due to invalid IL or missing references) //IL_0c62: Unknown result type (might be due to invalid IL or missing references) //IL_0c68: Unknown result type (might be due to invalid IL or missing references) //IL_0c6d: Unknown result type (might be due to invalid IL or missing references) //IL_0c73: Unknown result type (might be due to invalid IL or missing references) //IL_0c78: Unknown result type (might be due to invalid IL or missing references) //IL_0c7e: Unknown result type (might be due to invalid IL or missing references) //IL_0c88: Unknown result type (might be due to invalid IL or missing references) //IL_0c8d: Unknown result type (might be due to invalid IL or missing references) //IL_0c93: Unknown result type (might be due to invalid IL or missing references) //IL_0c98: Unknown result type (might be due to invalid IL or missing references) //IL_0c9e: Unknown result type (might be due to invalid IL or missing references) //IL_0ca8: Unknown result type (might be due to invalid IL or missing references) //IL_0cad: Unknown result type (might be due to invalid IL or missing references) //IL_0cb8: Unknown result type (might be due to invalid IL or missing references) //IL_0cbe: Unknown result type (might be due to invalid IL or missing references) //IL_0cc3: Unknown result type (might be due to invalid IL or missing references) //IL_0cc9: Unknown result type (might be due to invalid IL or missing references) //IL_0cce: Unknown result type (might be due to invalid IL or missing references) //IL_0cd4: Unknown result type (might be due to invalid IL or missing references) //IL_0cde: Unknown result type (might be due to invalid IL or missing references) //IL_0ce3: Unknown result type (might be due to invalid IL or missing references) //IL_0ce9: Unknown result type (might be due to invalid IL or missing references) //IL_0cee: Unknown result type (might be due to invalid IL or missing references) //IL_0cf4: Unknown result type (might be due to invalid IL or missing references) //IL_0cfe: Unknown result type (might be due to invalid IL or missing references) //IL_0d03: Unknown result type (might be due to invalid IL or missing references) //IL_0d0f: Unknown result type (might be due to invalid IL or missing references) //IL_3924: Unknown result type (might be due to invalid IL or missing references) //IL_392a: Unknown result type (might be due to invalid IL or missing references) //IL_3934: Unknown result type (might be due to invalid IL or missing references) //IL_3939: Unknown result type (might be due to invalid IL or missing references) //IL_3944: Unknown result type (might be due to invalid IL or missing references) //IL_394a: Unknown result type (might be due to invalid IL or missing references) //IL_394f: Unknown result type (might be due to invalid IL or missing references) //IL_3955: Unknown result type (might be due to invalid IL or missing references) //IL_395a: Unknown result type (might be due to invalid IL or missing references) //IL_3960: Unknown result type (might be due to invalid IL or missing references) //IL_3965: Unknown result type (might be due to invalid IL or missing references) //IL_396b: Unknown result type (might be due to invalid IL or missing references) //IL_3975: Unknown result type (might be due to invalid IL or missing references) //IL_397a: Unknown result type (might be due to invalid IL or missing references) //IL_3980: Unknown result type (might be due to invalid IL or missing references) //IL_398a: Unknown result type (might be due to invalid IL or missing references) //IL_398f: Unknown result type (might be due to invalid IL or missing references) //IL_3995: Unknown result type (might be due to invalid IL or missing references) //IL_399a: Unknown result type (might be due to invalid IL or missing references) //IL_39a0: Unknown result type (might be due to invalid IL or missing references) //IL_39aa: Unknown result type (might be due to invalid IL or missing references) //IL_39af: Unknown result type (might be due to invalid IL or missing references) //IL_39b5: Unknown result type (might be due to invalid IL or missing references) //IL_39ba: Unknown result type (might be due to invalid IL or missing references) //IL_39c6: Unknown result type (might be due to invalid IL or missing references) //IL_230c: Unknown result type (might be due to invalid IL or missing references) //IL_2312: Unknown result type (might be due to invalid IL or missing references) //IL_2317: Unknown result type (might be due to invalid IL or missing references) //IL_231d: Unknown result type (might be due to invalid IL or missing references) //IL_2322: Unknown result type (might be due to invalid IL or missing references) //IL_2328: Unknown result type (might be due to invalid IL or missing references) //IL_2332: Unknown result type (might be due to invalid IL or missing references) //IL_2337: Unknown result type (might be due to invalid IL or missing references) //IL_233d: Unknown result type (might be due to invalid IL or missing references) //IL_2342: Unknown result type (might be due to invalid IL or missing references) //IL_2348: Unknown result type (might be due to invalid IL or missing references) //IL_2352: Unknown result type (might be due to invalid IL or missing references) //IL_2357: Unknown result type (might be due to invalid IL or missing references) //IL_2362: Unknown result type (might be due to invalid IL or missing references) //IL_2368: Unknown result type (might be due to invalid IL or missing references) //IL_236d: Unknown result type (might be due to invalid IL or missing references) //IL_2373: Unknown result type (might be due to invalid IL or missing references) //IL_2378: Unknown result type (might be due to invalid IL or missing references) //IL_237e: Unknown result type (might be due to invalid IL or missing references) //IL_2388: Unknown result type (might be due to invalid IL or missing references) //IL_238d: Unknown result type (might be due to invalid IL or missing references) //IL_2393: Unknown result type (might be due to invalid IL or missing references) //IL_2398: Unknown result type (might be due to invalid IL or missing references) //IL_239e: Unknown result type (might be due to invalid IL or missing references) //IL_23a8: Unknown result type (might be due to invalid IL or missing references) //IL_23ad: Unknown result type (might be due to invalid IL or missing references) //IL_23b9: Unknown result type (might be due to invalid IL or missing references) //IL_0d29: Unknown result type (might be due to invalid IL or missing references) //IL_0d2f: Unknown result type (might be due to invalid IL or missing references) //IL_0d34: Unknown result type (might be due to invalid IL or missing references) //IL_0d3a: Unknown result type (might be due to invalid IL or missing references) //IL_0d3f: Unknown result type (might be due to invalid IL or missing references) //IL_0d45: Unknown result type (might be due to invalid IL or missing references) //IL_0d4f: Unknown result type (might be due to invalid IL or missing references) //IL_0d54: Unknown result type (might be due to invalid IL or missing references) //IL_0d5a: Unknown result type (might be due to invalid IL or missing references) //IL_0d5f: Unknown result type (might be due to invalid IL or missing references) //IL_0d65: Unknown result type (might be due to invalid IL or missing references) //IL_0d6f: Unknown result type (might be due to invalid IL or missing references) //IL_0d74: Unknown result type (might be due to invalid IL or missing references) //IL_0d7f: Unknown result type (might be due to invalid IL or missing references) //IL_0d85: Unknown result type (might be due to invalid IL or missing references) //IL_0d8a: Unknown result type (might be due to invalid IL or missing references) //IL_0d90: Unknown result type (might be due to invalid IL or missing references) //IL_0d95: Unknown result type (might be due to invalid IL or missing references) //IL_0d9b: Unknown result type (might be due to invalid IL or missing references) //IL_0da5: Unknown result type (might be due to invalid IL or missing references) //IL_0daa: Unknown result type (might be due to invalid IL or missing references) //IL_0db0: Unknown result type (might be due to invalid IL or missing references) //IL_0db5: Unknown result type (might be due to invalid IL or missing references) //IL_0dbb: Unknown result type (might be due to invalid IL or missing references) //IL_0dc5: Unknown result type (might be due to invalid IL or missing references) //IL_0dca: Unknown result type (might be due to invalid IL or missing references) //IL_0dd6: Unknown result type (might be due to invalid IL or missing references) //IL_39e0: Unknown result type (might be due to invalid IL or missing references) //IL_39e6: Unknown result type (might be due to invalid IL or missing references) //IL_39eb: Unknown result type (might be due to invalid IL or missing references) //IL_39f1: Unknown result type (might be due to invalid IL or missing references) //IL_39f6: Unknown result type (might be due to invalid IL or missing references) //IL_39fc: Unknown result type (might be due to invalid IL or missing references) //IL_3a06: Unknown result type (might be due to invalid IL or missing references) //IL_3a0b: Unknown result type (might be due to invalid IL or missing references) //IL_3a11: Unknown result type (might be due to invalid IL or missing references) //IL_3a16: Unknown result type (might be due to invalid IL or missing references) //IL_3a21: Unknown result type (might be due to invalid IL or missing references) //IL_3a27: Unknown result type (might be due to invalid IL or missing references) //IL_3a2c: Unknown result type (might be due to invalid IL or missing references) //IL_3a32: Unknown result type (might be due to invalid IL or missing references) //IL_3a37: Unknown result type (might be due to invalid IL or missing references) //IL_3a3d: Unknown result type (might be due to invalid IL or missing references) //IL_3a47: Unknown result type (might be due to invalid IL or missing references) //IL_3a4c: Unknown result type (might be due to invalid IL or missing references) //IL_3a52: Unknown result type (might be due to invalid IL or missing references) //IL_3a57: Unknown result type (might be due to invalid IL or missing references) //IL_3a63: Unknown result type (might be due to invalid IL or missing references) //IL_23d3: Unknown result type (might be due to invalid IL or missing references) //IL_23d9: Unknown result type (might be due to invalid IL or missing references) //IL_23de: Unknown result type (might be due to invalid IL or missing references) //IL_23e4: Unknown result type (might be due to invalid IL or missing references) //IL_23e9: Unknown result type (might be due to invalid IL or missing references) //IL_23ef: Unknown result type (might be due to invalid IL or missing references) //IL_23f9: Unknown result type (might be due to invalid IL or missing references) //IL_23fe: Unknown result type (might be due to invalid IL or missing references) //IL_2404: Unknown result type (might be due to invalid IL or missing references) //IL_2409: Unknown result type (might be due to invalid IL or missing references) //IL_240f: Unknown result type (might be due to invalid IL or missing references) //IL_2419: Unknown result type (might be due to invalid IL or missing references) //IL_241e: Unknown result type (might be due to invalid IL or missing references) //IL_2429: Unknown result type (might be due to invalid IL or missing references) //IL_242f: Unknown result type (might be due to invalid IL or missing references) //IL_2434: Unknown result type (might be due to invalid IL or missing references) //IL_243a: Unknown result type (might be due to invalid IL or missing references) //IL_243f: Unknown result type (might be due to invalid IL or missing references) //IL_2445: Unknown result type (might be due to invalid IL or missing references) //IL_244f: Unknown result type (might be due to invalid IL or missing references) //IL_2454: Unknown result type (might be due to invalid IL or missing references) //IL_245a: Unknown result type (might be due to invalid IL or missing references) //IL_245f: Unknown result type (might be due to invalid IL or missing references) //IL_2465: Unknown result type (might be due to invalid IL or missing references) //IL_246f: Unknown result type (might be due to invalid IL or missing references) //IL_2474: Unknown result type (might be due to invalid IL or missing references) //IL_2480: Unknown result type (might be due to invalid IL or missing references) //IL_0df0: Unknown result type (might be due to invalid IL or missing references) //IL_0df6: Unknown result type (might be due to invalid IL or missing references) //IL_0dfb: Unknown result type (might be due to invalid IL or missing references) //IL_0e01: Unknown result type (might be due to invalid IL or missing references) //IL_0e06: Unknown result type (might be due to invalid IL or missing references) //IL_0e0c: Unknown result type (might be due to invalid IL or missing references) //IL_0e16: Unknown result type (might be due to invalid IL or missing references) //IL_0e1b: Unknown result type (might be due to invalid IL or missing references) //IL_0e21: Unknown result type (might be due to invalid IL or missing references) //IL_0e26: Unknown result type (might be due to invalid IL or missing references) //IL_0e2c: Unknown result type (might be due to invalid IL or missing references) //IL_0e36: Unknown result type (might be due to invalid IL or missing references) //IL_0e3b: Unknown result type (might be due to invalid IL or missing references) //IL_0e46: Unknown result type (might be due to invalid IL or missing references) //IL_0e4c: Unknown result type (might be due to invalid IL or missing references) //IL_0e51: Unknown result type (might be due to invalid IL or missing references) //IL_0e57: Unknown result type (might be due to invalid IL or missing references) //IL_0e5c: Unknown result type (might be due to invalid IL or missing references) //IL_0e62: Unknown result type (might be due to invalid IL or missing references) //IL_0e6c: Unknown result type (might be due to invalid IL or missing references) //IL_0e71: Unknown result type (might be due to invalid IL or missing references) //IL_0e77: Unknown result type (might be due to invalid IL or missing references) //IL_0e7c: Unknown result type (might be due to invalid IL or missing references) //IL_0e82: Unknown result type (might be due to invalid IL or missing references) //IL_0e8c: Unknown result type (might be due to invalid IL or missing references) //IL_0e91: Unknown result type (might be due to invalid IL or missing references) //IL_0e9d: Unknown result type (might be due to invalid IL or missing references) //IL_3a7d: Unknown result type (might be due to invalid IL or missing references) //IL_3a83: Unknown result type (might be due to invalid IL or missing references) //IL_3a88: Unknown result type (might be due to invalid IL or missing references) //IL_3a8e: Unknown result type (might be due to invalid IL or missing references) //IL_3a93: Unknown result type (might be due to invalid IL or missing references) //IL_3a99: Unknown result type (might be due to invalid IL or missing references) //IL_3aa3: Unknown result type (might be due to invalid IL or missing references) //IL_3aa8: Unknown result type (might be due to invalid IL or missing references) //IL_3aae: Unknown result type (might be due to invalid IL or missing references) //IL_3ab3: Unknown result type (might be due to invalid IL or missing references) //IL_3ab9: Unknown result type (might be due to invalid IL or missing references) //IL_3ac3: Unknown result type (might be due to invalid IL or missing references) //IL_3ac8: Unknown result type (might be due to invalid IL or missing references) //IL_3ad3: Unknown result type (might be due to invalid IL or missing references) //IL_3ad9: Unknown result type (might be due to invalid IL or missing references) //IL_3ade: Unknown result type (might be due to invalid IL or missing references) //IL_3ae4: Unknown result type (might be due to invalid IL or missing references) //IL_3ae9: Unknown result type (might be due to invalid IL or missing references) //IL_3aef: Unknown result type (might be due to invalid IL or missing references) //IL_3af9: Unknown result type (might be due to invalid IL or missing references) //IL_3afe: Unknown result type (might be due to invalid IL or missing references) //IL_3b04: Unknown result type (might be due to invalid IL or missing references) //IL_3b09: Unknown result type (might be due to invalid IL or missing references) //IL_3b0f: Unknown result type (might be due to invalid IL or missing references) //IL_3b19: Unknown result type (might be due to invalid IL or missing references) //IL_3b1e: Unknown result type (might be due to invalid IL or missing references) //IL_3b2a: Unknown result type (might be due to invalid IL or missing references) //IL_249a: Unknown result type (might be due to invalid IL or missing references) //IL_24a0: Unknown result type (might be due to invalid IL or missing references) //IL_24a5: Unknown result type (might be due to invalid IL or missing references) //IL_24ab: Unknown result type (might be due to invalid IL or missing references) //IL_24b0: Unknown result type (might be due to invalid IL or missing references) //IL_24b6: Unknown result type (might be due to invalid IL or missing references) //IL_24c0: Unknown result type (might be due to invalid IL or missing references) //IL_24c5: Unknown result type (might be due to invalid IL or missing references) //IL_24cb: Unknown result type (might be due to invalid IL or missing references) //IL_24d0: Unknown result type (might be due to invalid IL or missing references) //IL_24d6: Unknown result type (might be due to invalid IL or missing references) //IL_24e0: Unknown result type (might be due to invalid IL or missing references) //IL_24e5: Unknown result type (might be due to invalid IL or missing references) //IL_24f0: Unknown result type (might be due to invalid IL or missing references) //IL_24f6: Unknown result type (might be due to invalid IL or missing references) //IL_24fb: Unknown result type (might be due to invalid IL or missing references) //IL_2501: Unknown result type (might be due to invalid IL or missing references) //IL_2506: Unknown result type (might be due to invalid IL or missing references) //IL_250c: Unknown result type (might be due to invalid IL or missing references) //IL_2516: Unknown result type (might be due to invalid IL or missing references) //IL_251b: Unknown result type (might be due to invalid IL or missing references) //IL_2521: Unknown result type (might be due to invalid IL or missing references) //IL_2526: Unknown result type (might be due to invalid IL or missing references) //IL_252c: Unknown result type (might be due to invalid IL or missing references) //IL_2536: Unknown result type (might be due to invalid IL or missing references) //IL_253b: Unknown result type (might be due to invalid IL or missing references) //IL_2547: Unknown result type (might be due to invalid IL or missing references) //IL_0eb7: Unknown result type (might be due to invalid IL or missing references) //IL_0ebd: Unknown result type (might be due to invalid IL or missing references) //IL_0ec2: Unknown result type (might be due to invalid IL or missing references) //IL_0ec8: Unknown result type (might be due to invalid IL or missing references) //IL_0ecd: Unknown result type (might be due to invalid IL or missing references) //IL_0ed3: Unknown result type (might be due to invalid IL or missing references) //IL_0edd: Unknown result type (might be due to invalid IL or missing references) //IL_0ee2: Unknown result type (might be due to invalid IL or missing references) //IL_0ee8: Unknown result type (might be due to invalid IL or missing references) //IL_0eed: Unknown result type (might be due to invalid IL or missing references) //IL_0ef3: Unknown result type (might be due to invalid IL or missing references) //IL_0efd: Unknown result type (might be due to invalid IL or missing references) //IL_0f02: Unknown result type (might be due to invalid IL or missing references) //IL_0f0d: Unknown result type (might be due to invalid IL or missing references) //IL_0f13: Unknown result type (might be due to invalid IL or missing references) //IL_0f18: Unknown result type (might be due to invalid IL or missing references) //IL_0f1e: Unknown result type (might be due to invalid IL or missing references) //IL_0f23: Unknown result type (might be due to invalid IL or missing references) //IL_0f29: Unknown result type (might be due to invalid IL or missing references) //IL_0f33: Unknown result type (might be due to invalid IL or missing references) //IL_0f38: Unknown result type (might be due to invalid IL or missing references) //IL_0f3e: Unknown result type (might be due to invalid IL or missing references) //IL_0f43: Unknown result type (might be due to invalid IL or missing references) //IL_0f49: Unknown result type (might be due to invalid IL or missing references) //IL_0f53: Unknown result type (might be due to invalid IL or missing references) //IL_0f58: Unknown result type (might be due to invalid IL or missing references) //IL_0f64: Unknown result type (might be due to invalid IL or missing references) //IL_3b44: Unknown result type (might be due to invalid IL or missing references) //IL_3b4a: Unknown result type (might be due to invalid IL or missing references) //IL_3b4f: Unknown result type (might be due to invalid IL or missing references) //IL_3b55: Unknown result type (might be due to invalid IL or missing references) //IL_3b5a: Unknown result type (might be due to invalid IL or missing references) //IL_3b60: Unknown result type (might be due to invalid IL or missing references) //IL_3b6a: Unknown result type (might be due to invalid IL or missing references) //IL_3b6f: Unknown result type (might be due to invalid IL or missing references) //IL_3b75: Unknown result type (might be due to invalid IL or missing references) //IL_3b7a: Unknown result type (might be due to invalid IL or missing references) //IL_3b80: Unknown result type (might be due to invalid IL or missing references) //IL_3b8a: Unknown result type (might be due to invalid IL or missing references) //IL_3b8f: Unknown result type (might be due to invalid IL or missing references) //IL_3b9a: Unknown result type (might be due to invalid IL or missing references) //IL_3ba0: Unknown result type (might be due to invalid IL or missing references) //IL_3ba5: Unknown result type (might be due to invalid IL or missing references) //IL_3bab: Unknown result type (might be due to invalid IL or missing references) //IL_3bb0: Unknown result type (might be due to invalid IL or missing references) //IL_3bb6: Unknown result type (might be due to invalid IL or missing references) //IL_3bc0: Unknown result type (might be due to invalid IL or missing references) //IL_3bc5: Unknown result type (might be due to invalid IL or missing references) //IL_3bcb: Unknown result type (might be due to invalid IL or missing references) //IL_3bd0: Unknown result type (might be due to invalid IL or missing references) //IL_3bd6: Unknown result type (might be due to invalid IL or missing references) //IL_3be0: Unknown result type (might be due to invalid IL or missing references) //IL_3be5: Unknown result type (might be due to invalid IL or missing references) //IL_3bf1: Unknown result type (might be due to invalid IL or missing references) //IL_2561: Unknown result type (might be due to invalid IL or missing references) //IL_2567: Unknown result type (might be due to invalid IL or missing references) //IL_256c: Unknown result type (might be due to invalid IL or missing references) //IL_2572: Unknown result type (might be due to invalid IL or missing references) //IL_2577: Unknown result type (might be due to invalid IL or missing references) //IL_257d: Unknown result type (might be due to invalid IL or missing references) //IL_2587: Unknown result type (might be due to invalid IL or missing references) //IL_258c: Unknown result type (might be due to invalid IL or missing references) //IL_2592: Unknown result type (might be due to invalid IL or missing references) //IL_2597: Unknown result type (might be due to invalid IL or missing references) //IL_259d: Unknown result type (might be due to invalid IL or missing references) //IL_25a7: Unknown result type (might be due to invalid IL or missing references) //IL_25ac: Unknown result type (might be due to invalid IL or missing references) //IL_25b7: Unknown result type (might be due to invalid IL or missing references) //IL_25bd: Unknown result type (might be due to invalid IL or missing references) //IL_25c2: Unknown result type (might be due to invalid IL or missing references) //IL_25c8: Unknown result type (might be due to invalid IL or missing references) //IL_25cd: Unknown result type (might be due to invalid IL or missing references) //IL_25d3: Unknown result type (might be due to invalid IL or missing references) //IL_25dd: Unknown result type (might be due to invalid IL or missing references) //IL_25e2: Unknown result type (might be due to invalid IL or missing references) //IL_25e8: Unknown result type (might be due to invalid IL or missing references) //IL_25ed: Unknown result type (might be due to invalid IL or missing references) //IL_25f3: Unknown result type (might be due to invalid IL or missing references) //IL_25fd: Unknown result type (might be due to invalid IL or missing references) //IL_2602: Unknown result type (might be due to invalid IL or missing references) //IL_260e: Unknown result type (might be due to invalid IL or missing references) //IL_0f7e: Unknown result type (might be due to invalid IL or missing references) //IL_0f84: Unknown result type (might be due to invalid IL or missing references) //IL_0f89: Unknown result type (might be due to invalid IL or missing references) //IL_0f8f: Unknown result type (might be due to invalid IL or missing references) //IL_0f94: Unknown result type (might be due to invalid IL or missing references) //IL_0f9a: Unknown result type (might be due to invalid IL or missing references) //IL_0fa4: Unknown result type (might be due to invalid IL or missing references) //IL_0fa9: Unknown result type (might be due to invalid IL or missing references) //IL_0faf: Unknown result type (might be due to invalid IL or missing references) //IL_0fb4: Unknown result type (might be due to invalid IL or missing references) //IL_0fba: Unknown result type (might be due to invalid IL or missing references) //IL_0fc4: Unknown result type (might be due to invalid IL or missing references) //IL_0fc9: Unknown result type (might be due to invalid IL or missing references) //IL_0fd4: Unknown result type (might be due to invalid IL or missing references) //IL_0fda: Unknown result type (might be due to invalid IL or missing references) //IL_0fdf: Unknown result type (might be due to invalid IL or missing references) //IL_0fe5: Unknown result type (might be due to invalid IL or missing references) //IL_0fea: Unknown result type (might be due to invalid IL or missing references) //IL_0ff0: Unknown result type (might be due to invalid IL or missing references) //IL_0ffa: Unknown result type (might be due to invalid IL or missing references) //IL_0fff: Unknown result type (might be due to invalid IL or missing references) //IL_1005: Unknown result type (might be due to invalid IL or missing references) //IL_100a: Unknown result type (might be due to invalid IL or missing references) //IL_1010: Unknown result type (might be due to invalid IL or missing references) //IL_101a: Unknown result type (might be due to invalid IL or missing references) //IL_101f: Unknown result type (might be due to invalid IL or missing references) //IL_102b: Unknown result type (might be due to invalid IL or missing references) //IL_3c0b: Unknown result type (might be due to invalid IL or missing references) //IL_3c11: Unknown result type (might be due to invalid IL or missing references) //IL_3c16: Unknown result type (might be due to invalid IL or missing references) //IL_3c1c: Unknown result type (might be due to invalid IL or missing references) //IL_3c21: Unknown result type (might be due to invalid IL or missing references) //IL_3c27: Unknown result type (might be due to invalid IL or missing references) //IL_3c31: Unknown result type (might be due to invalid IL or missing references) //IL_3c36: Unknown result type (might be due to invalid IL or missing references) //IL_3c3c: Unknown result type (might be due to invalid IL or missing references) //IL_3c41: Unknown result type (might be due to invalid IL or missing references) //IL_3c47: Unknown result type (might be due to invalid IL or missing references) //IL_3c51: Unknown result type (might be due to invalid IL or missing references) //IL_3c56: Unknown result type (might be due to invalid IL or missing references) //IL_3c61: Unknown result type (might be due to invalid IL or missing references) //IL_3c67: Unknown result type (might be due to invalid IL or missing references) //IL_3c6c: Unknown result type (might be due to invalid IL or missing references) //IL_3c72: Unknown result type (might be due to invalid IL or missing references) //IL_3c77: Unknown result type (might be due to invalid IL or missing references) //IL_3c7d: Unknown result type (might be due to invalid IL or missing references) //IL_3c87: Unknown result type (might be due to invalid IL or missing references) //IL_3c8c: Unknown result type (might be due to invalid IL or missing references) //IL_3c92: Unknown result type (might be due to invalid IL or missing references) //IL_3c97: Unknown result type (might be due to invalid IL or missing references) //IL_3c9d: Unknown result type (might be due to invalid IL or missing references) //IL_3ca7: Unknown result type (might be due to invalid IL or missing references) //IL_3cac: Unknown result type (might be due to invalid IL or missing references) //IL_3cb8: Unknown result type (might be due to invalid IL or missing references) //IL_2628: Unknown result type (might be due to invalid IL or missing references) //IL_262e: Unknown result type (might be due to invalid IL or missing references) //IL_2633: Unknown result type (might be due to invalid IL or missing references) //IL_2639: Unknown result type (might be due to invalid IL or missing references) //IL_263e: Unknown result type (might be due to invalid IL or missing references) //IL_2644: Unknown result type (might be due to invalid IL or missing references) //IL_264e: Unknown result type (might be due to invalid IL or missing references) //IL_2653: Unknown result type (might be due to invalid IL or missing references) //IL_2659: Unknown result type (might be due to invalid IL or missing references) //IL_265e: Unknown result type (might be due to invalid IL or missing references) //IL_2664: Unknown result type (might be due to invalid IL or missing references) //IL_266e: Unknown result type (might be due to invalid IL or missing references) //IL_2673: Unknown result type (might be due to invalid IL or missing references) //IL_267e: Unknown result type (might be due to invalid IL or missing references) //IL_2684: Unknown result type (might be due to invalid IL or missing references) //IL_2689: Unknown result type (might be due to invalid IL or missing references) //IL_268f: Unknown result type (might be due to invalid IL or missing references) //IL_2694: Unknown result type (might be due to invalid IL or missing references) //IL_269a: Unknown result type (might be due to invalid IL or missing references) //IL_26a4: Unknown result type (might be due to invalid IL or missing references) //IL_26a9: Unknown result type (might be due to invalid IL or missing references) //IL_26af: Unknown result type (might be due to invalid IL or missing references) //IL_26b4: Unknown result type (might be due to invalid IL or missing references) //IL_26ba: Unknown result type (might be due to invalid IL or missing references) //IL_26c4: Unknown result type (might be due to invalid IL or missing references) //IL_26c9: Unknown result type (might be due to invalid IL or missing references) //IL_26d5: Unknown result type (might be due to invalid IL or missing references) //IL_1045: Unknown result type (might be due to invalid IL or missing references) //IL_104b: Unknown result type (might be due to invalid IL or missing references) //IL_1050: Unknown result type (might be due to invalid IL or missing references) //IL_1056: Unknown result type (might be due to invalid IL or missing references) //IL_105b: Unknown result type (might be due to invalid IL or missing references) //IL_1061: Unknown result type (might be due to invalid IL or missing references) //IL_106b: Unknown result type (might be due to invalid IL or missing references) //IL_1070: Unknown result type (might be due to invalid IL or missing references) //IL_1076: Unknown result type (might be due to invalid IL or missing references) //IL_107b: Unknown result type (might be due to invalid IL or missing references) //IL_1081: Unknown result type (might be due to invalid IL or missing references) //IL_108b: Unknown result type (might be due to invalid IL or missing references) //IL_1090: Unknown result type (might be due to invalid IL or missing references) //IL_109b: Unknown result type (might be due to invalid IL or missing references) //IL_10a1: Unknown result type (might be due to invalid IL or missing references) //IL_10a6: Unknown result type (might be due to invalid IL or missing references) //IL_10ac: Unknown result type (might be due to invalid IL or missing references) //IL_10b1: Unknown result type (might be due to invalid IL or missing references) //IL_10b7: Unknown result type (might be due to invalid IL or missing references) //IL_10c1: Unknown result type (might be due to invalid IL or missing references) //IL_10c6: Unknown result type (might be due to invalid IL or missing references) //IL_10cc: Unknown result type (might be due to invalid IL or missing references) //IL_10d1: Unknown result type (might be due to invalid IL or missing references) //IL_10d7: Unknown result type (might be due to invalid IL or missing references) //IL_10e1: Unknown result type (might be due to invalid IL or missing references) //IL_10e6: Unknown result type (might be due to invalid IL or missing references) //IL_10f2: Unknown result type (might be due to invalid IL or missing references) //IL_3cd2: Unknown result type (might be due to invalid IL or missing references) //IL_3cd8: Unknown result type (might be due to invalid IL or missing references) //IL_3cdd: Unknown result type (might be due to invalid IL or missing references) //IL_3ce3: Unknown result type (might be due to invalid IL or missing references) //IL_3ce8: Unknown result type (might be due to invalid IL or missing references) //IL_3cee: Unknown result type (might be due to invalid IL or missing references) //IL_3cf8: Unknown result type (might be due to invalid IL or missing references) //IL_3cfd: Unknown result type (might be due to invalid IL or missing references) //IL_3d03: Unknown result type (might be due to invalid IL or missing references) //IL_3d08: Unknown result type (might be due to invalid IL or missing references) //IL_3d0e: Unknown result type (might be due to invalid IL or missing references) //IL_3d18: Unknown result type (might be due to invalid IL or missing references) //IL_3d1d: Unknown result type (might be due to invalid IL or missing references) //IL_3d28: Unknown result type (might be due to invalid IL or missing references) //IL_3d2e: Unknown result type (might be due to invalid IL or missing references) //IL_3d33: Unknown result type (might be due to invalid IL or missing references) //IL_3d39: Unknown result type (might be due to invalid IL or missing references) //IL_3d3e: Unknown result type (might be due to invalid IL or missing references) //IL_3d44: Unknown result type (might be due to invalid IL or missing references) //IL_3d4e: Unknown result type (might be due to invalid IL or missing references) //IL_3d53: Unknown result type (might be due to invalid IL or missing references) //IL_3d59: Unknown result type (might be due to invalid IL or missing references) //IL_3d5e: Unknown result type (might be due to invalid IL or missing references) //IL_3d64: Unknown result type (might be due to invalid IL or missing references) //IL_3d6e: Unknown result type (might be due to invalid IL or missing references) //IL_3d73: Unknown result type (might be due to invalid IL or missing references) //IL_3d7f: Unknown result type (might be due to invalid IL or missing references) //IL_26ef: Unknown result type (might be due to invalid IL or missing references) //IL_26f5: Unknown result type (might be due to invalid IL or missing references) //IL_26fa: Unknown result type (might be due to invalid IL or missing references) //IL_2700: Unknown result type (might be due to invalid IL or missing references) //IL_2705: Unknown result type (might be due to invalid IL or missing references) //IL_270b: Unknown result type (might be due to invalid IL or missing references) //IL_2715: Unknown result type (might be due to invalid IL or missing references) //IL_271a: Unknown result type (might be due to invalid IL or missing references) //IL_2720: Unknown result type (might be due to invalid IL or missing references) //IL_2725: Unknown result type (might be due to invalid IL or missing references) //IL_272b: Unknown result type (might be due to invalid IL or missing references) //IL_2735: Unknown result type (might be due to invalid IL or missing references) //IL_273a: Unknown result type (might be due to invalid IL or missing references) //IL_2745: Unknown result type (might be due to invalid IL or missing references) //IL_274b: Unknown result type (might be due to invalid IL or missing references) //IL_2750: Unknown result type (might be due to invalid IL or missing references) //IL_2756: Unknown result type (might be due to invalid IL or missing references) //IL_275b: Unknown result type (might be due to invalid IL or missing references) //IL_2761: Unknown result type (might be due to invalid IL or missing references) //IL_276b: Unknown result type (might be due to invalid IL or missing references) //IL_2770: Unknown result type (might be due to invalid IL or missing references) //IL_2776: Unknown result type (might be due to invalid IL or missing references) //IL_277b: Unknown result type (might be due to invalid IL or missing references) //IL_2781: Unknown result type (might be due to invalid IL or missing references) //IL_278b: Unknown result type (might be due to invalid IL or missing references) //IL_2790: Unknown result type (might be due to invalid IL or missing references) //IL_279c: Unknown result type (might be due to invalid IL or missing references) //IL_110c: Unknown result type (might be due to invalid IL or missing references) //IL_1112: Unknown result type (might be due to invalid IL or missing references) //IL_1117: Unknown result type (might be due to invalid IL or missing references) //IL_111d: Unknown result type (might be due to invalid IL or missing references) //IL_1122: Unknown result type (might be due to invalid IL or missing references) //IL_1128: Unknown result type (might be due to invalid IL or missing references) //IL_1132: Unknown result type (might be due to invalid IL or missing references) //IL_1137: Unknown result type (might be due to invalid IL or missing references) //IL_113d: Unknown result type (might be due to invalid IL or missing references) //IL_1142: Unknown result type (might be due to invalid IL or missing references) //IL_114d: Unknown result type (might be due to invalid IL or missing references) //IL_1153: Unknown result type (might be due to invalid IL or missing references) //IL_1158: Unknown result type (might be due to invalid IL or missing references) //IL_115e: Unknown result type (might be due to invalid IL or missing references) //IL_1163: Unknown result type (might be due to invalid IL or missing references) //IL_1169: Unknown result type (might be due to invalid IL or missing references) //IL_1173: Unknown result type (might be due to invalid IL or missing references) //IL_1178: Unknown result type (might be due to invalid IL or missing references) //IL_117e: Unknown result type (might be due to invalid IL or missing references) //IL_1183: Unknown result type (might be due to invalid IL or missing references) //IL_118f: Unknown result type (might be due to invalid IL or missing references) //IL_3d99: Unknown result type (might be due to invalid IL or missing references) //IL_3d9f: Unknown result type (might be due to invalid IL or missing references) //IL_3da4: Unknown result type (might be due to invalid IL or missing references) //IL_3daa: Unknown result type (might be due to invalid IL or missing references) //IL_3daf: Unknown result type (might be due to invalid IL or missing references) //IL_3db5: Unknown result type (might be due to invalid IL or missing references) //IL_3dbf: Unknown result type (might be due to invalid IL or missing references) //IL_3dc4: Unknown result type (might be due to invalid IL or missing references) //IL_3dca: Unknown result type (might be due to invalid IL or missing references) //IL_3dcf: Unknown result type (might be due to invalid IL or missing references) //IL_3dd5: Unknown result type (might be due to invalid IL or missing references) //IL_3ddf: Unknown result type (might be due to invalid IL or missing references) //IL_3de4: Unknown result type (might be due to invalid IL or missing references) //IL_3def: Unknown result type (might be due to invalid IL or missing references) //IL_3df5: Unknown result type (might be due to invalid IL or missing references) //IL_3dfa: Unknown result type (might be due to invalid IL or missing references) //IL_3e00: Unknown result type (might be due to invalid IL or missing references) //IL_3e05: Unknown result type (might be due to invalid IL or missing references) //IL_3e0b: Unknown result type (might be due to invalid IL or missing references) //IL_3e15: Unknown result type (might be due to invalid IL or missing references) //IL_3e1a: Unknown result type (might be due to invalid IL or missing references) //IL_3e20: Unknown result type (might be due to invalid IL or missing references) //IL_3e25: Unknown result type (might be due to invalid IL or missing references) //IL_3e2b: Unknown result type (might be due to invalid IL or missing references) //IL_3e35: Unknown result type (might be due to invalid IL or missing references) //IL_3e3a: Unknown result type (might be due to invalid IL or missing references) //IL_3e46: Unknown result type (might be due to invalid IL or missing references) //IL_27b6: Unknown result type (might be due to invalid IL or missing references) //IL_27bc: Unknown result type (might be due to invalid IL or missing references) //IL_27c1: Unknown result type (might be due to invalid IL or missing references) //IL_27c7: Unknown result type (might be due to invalid IL or missing references) //IL_27cc: Unknown result type (might be due to invalid IL or missing references) //IL_27d2: Unknown result type (might be due to invalid IL or missing references) //IL_27dc: Unknown result type (might be due to invalid IL or missing references) //IL_27e1: Unknown result type (might be due to invalid IL or missing references) //IL_27e7: Unknown result type (might be due to invalid IL or missing references) //IL_27ec: Unknown result type (might be due to invalid IL or missing references) //IL_27f2: Unknown result type (might be due to invalid IL or missing references) //IL_27fc: Unknown result type (might be due to invalid IL or missing references) //IL_2801: Unknown result type (might be due to invalid IL or missing references) //IL_280c: Unknown result type (might be due to invalid IL or missing references) //IL_2812: Unknown result type (might be due to invalid IL or missing references) //IL_2817: Unknown result type (might be due to invalid IL or missing references) //IL_281d: Unknown result type (might be due to invalid IL or missing references) //IL_2822: Unknown result type (might be due to invalid IL or missing references) //IL_2828: Unknown result type (might be due to invalid IL or missing references) //IL_2832: Unknown result type (might be due to invalid IL or missing references) //IL_2837: Unknown result type (might be due to invalid IL or missing references) //IL_283d: Unknown result type (might be due to invalid IL or missing references) //IL_2842: Unknown result type (might be due to invalid IL or missing references) //IL_2848: Unknown result type (might be due to invalid IL or missing references) //IL_2852: Unknown result type (might be due to invalid IL or missing references) //IL_2857: Unknown result type (might be due to invalid IL or missing references) //IL_2863: Unknown result type (might be due to invalid IL or missing references) //IL_11a9: Unknown result type (might be due to invalid IL or missing references) //IL_11af: Unknown result type (might be due to invalid IL or missing references) //IL_11b4: Unknown result type (might be due to invalid IL or missing references) //IL_11ba: Unknown result type (might be due to invalid IL or missing references) //IL_11bf: Unknown result type (might be due to invalid IL or missing references) //IL_11c5: Unknown result type (might be due to invalid IL or missing references) //IL_11cf: Unknown result type (might be due to invalid IL or missing references) //IL_11d4: Unknown result type (might be due to invalid IL or missing references) //IL_11da: Unknown result type (might be due to invalid IL or missing references) //IL_11df: Unknown result type (might be due to invalid IL or missing references) //IL_11e5: Unknown result type (might be due to invalid IL or missing references) //IL_11ef: Unknown result type (might be due to invalid IL or missing references) //IL_11f4: Unknown result type (might be due to invalid IL or missing references) //IL_11ff: Unknown result type (might be due to invalid IL or missing references) //IL_1205: Unknown result type (might be due to invalid IL or missing references) //IL_120a: Unknown result type (might be due to invalid IL or missing references) //IL_1210: Unknown result type (might be due to invalid IL or missing references) //IL_1215: Unknown result type (might be due to invalid IL or missing references) //IL_121b: Unknown result type (might be due to invalid IL or missing references) //IL_1225: Unknown result type (might be due to invalid IL or missing references) //IL_122a: Unknown result type (might be due to invalid IL or missing references) //IL_1230: Unknown result type (might be due to invalid IL or missing references) //IL_1235: Unknown result type (might be due to invalid IL or missing references) //IL_123b: Unknown result type (might be due to invalid IL or missing references) //IL_1245: Unknown result type (might be due to invalid IL or missing references) //IL_124a: Unknown result type (might be due to invalid IL or missing references) //IL_1256: Unknown result type (might be due to invalid IL or missing references) //IL_3e60: Unknown result type (might be due to invalid IL or missing references) //IL_3e66: Unknown result type (might be due to invalid IL or missing references) //IL_3e6b: Unknown result type (might be due to invalid IL or missing references) //IL_3e71: Unknown result type (might be due to invalid IL or missing references) //IL_3e76: Unknown result type (might be due to invalid IL or missing references) //IL_3e7c: Unknown result type (might be due to invalid IL or missing references) //IL_3e86: Unknown result type (might be due to invalid IL or missing references) //IL_3e8b: Unknown result type (might be due to invalid IL or missing references) //IL_3e91: Unknown result type (might be due to invalid IL or missing references) //IL_3e96: Unknown result type (might be due to invalid IL or missing references) //IL_3e9c: Unknown result type (might be due to invalid IL or missing references) //IL_3ea6: Unknown result type (might be due to invalid IL or missing references) //IL_3eab: Unknown result type (might be due to invalid IL or missing references) //IL_3eb6: Unknown result type (might be due to invalid IL or missing references) //IL_3ebc: Unknown result type (might be due to invalid IL or missing references) //IL_3ec1: Unknown result type (might be due to invalid IL or missing references) //IL_3ec7: Unknown result type (might be due to invalid IL or missing references) //IL_3ecc: Unknown result type (might be due to invalid IL or missing references) //IL_3ed2: Unknown result type (might be due to invalid IL or missing references) //IL_3edc: Unknown result type (might be due to invalid IL or missing references) //IL_3ee1: Unknown result type (might be due to invalid IL or missing references) //IL_3ee7: Unknown result type (might be due to invalid IL or missing references) //IL_3eec: Unknown result type (might be due to invalid IL or missing references) //IL_3ef2: Unknown result type (might be due to invalid IL or missing references) //IL_3efc: Unknown result type (might be due to invalid IL or missing references) //IL_3f01: Unknown result type (might be due to invalid IL or missing references) //IL_3f0d: Unknown result type (might be due to invalid IL or missing references) //IL_287d: Unknown result type (might be due to invalid IL or missing references) //IL_2883: Unknown result type (might be due to invalid IL or missing references) //IL_2888: Unknown result type (might be due to invalid IL or missing references) //IL_288e: Unknown result type (might be due to invalid IL or missing references) //IL_2893: Unknown result type (might be due to invalid IL or missing references) //IL_2899: Unknown result type (might be due to invalid IL or missing references) //IL_28a3: Unknown result type (might be due to invalid IL or missing references) //IL_28a8: Unknown result type (might be due to invalid IL or missing references) //IL_28ae: Unknown result type (might be due to invalid IL or missing references) //IL_28b3: Unknown result type (might be due to invalid IL or missing references) //IL_28be: Unknown result type (might be due to invalid IL or missing references) //IL_28c4: Unknown result type (might be due to invalid IL or missing references) //IL_28c9: Unknown result type (might be due to invalid IL or missing references) //IL_28cf: Unknown result type (might be due to invalid IL or missing references) //IL_28d4: Unknown result type (might be due to invalid IL or missing references) //IL_28da: Unknown result type (might be due to invalid IL or missing references) //IL_28e4: Unknown result type (might be due to invalid IL or missing references) //IL_28e9: Unknown result type (might be due to invalid IL or missing references) //IL_28ef: Unknown result type (might be due to invalid IL or missing references) //IL_28f4: Unknown result type (might be due to invalid IL or missing references) //IL_2900: Unknown result type (might be due to invalid IL or missing references) //IL_1270: Unknown result type (might be due to invalid IL or missing references) //IL_1276: Unknown result type (might be due to invalid IL or missing references) //IL_127b: Unknown result type (might be due to invalid IL or missing references) //IL_1281: Unknown result type (might be due to invalid IL or missing references) //IL_1286: Unknown result type (might be due to invalid IL or missing references) //IL_128c: Unknown result type (might be due to invalid IL or missing references) //IL_1296: Unknown result type (might be due to invalid IL or missing references) //IL_129b: Unknown result type (might be due to invalid IL or missing references) //IL_12a1: Unknown result type (might be due to invalid IL or missing references) //IL_12a6: Unknown result type (might be due to invalid IL or missing references) //IL_12ac: Unknown result type (might be due to invalid IL or missing references) //IL_12b6: Unknown result type (might be due to invalid IL or missing references) //IL_12bb: Unknown result type (might be due to invalid IL or missing references) //IL_12c6: Unknown result type (might be due to invalid IL or missing references) //IL_12cc: Unknown result type (might be due to invalid IL or missing references) //IL_12d1: Unknown result type (might be due to invalid IL or missing references) //IL_12d7: Unknown result type (might be due to invalid IL or missing references) //IL_12dc: Unknown result type (might be due to invalid IL or missing references) //IL_12e2: Unknown result type (might be due to invalid IL or missing references) //IL_12ec: Unknown result type (might be due to invalid IL or missing references) //IL_12f1: Unknown result type (might be due to invalid IL or missing references) //IL_12f7: Unknown result type (might be due to invalid IL or missing references) //IL_12fc: Unknown result type (might be due to invalid IL or missing references) //IL_1302: Unknown result type (might be due to invalid IL or missing references) //IL_130c: Unknown result type (might be due to invalid IL or missing references) //IL_1311: Unknown result type (might be due to invalid IL or missing references) //IL_131d: Unknown result type (might be due to invalid IL or missing references) //IL_3f27: Unknown result type (might be due to invalid IL or missing references) //IL_3f2d: Unknown result type (might be due to invalid IL or missing references) //IL_3f32: Unknown result type (might be due to invalid IL or missing references) //IL_3f38: Unknown result type (might be due to invalid IL or missing references) //IL_3f3d: Unknown result type (might be due to invalid IL or missing references) //IL_3f43: Unknown result type (might be due to invalid IL or missing references) //IL_3f4d: Unknown result type (might be due to invalid IL or missing references) //IL_3f52: Unknown result type (might be due to invalid IL or missing references) //IL_3f58: Unknown result type (might be due to invalid IL or missing references) //IL_3f5d: Unknown result type (might be due to invalid IL or missing references) //IL_3f63: Unknown result type (might be due to invalid IL or missing references) //IL_3f6d: Unknown result type (might be due to invalid IL or missing references) //IL_3f72: Unknown result type (might be due to invalid IL or missing references) //IL_3f7d: Unknown result type (might be due to invalid IL or missing references) //IL_3f83: Unknown result type (might be due to invalid IL or missing references) //IL_3f88: Unknown result type (might be due to invalid IL or missing references) //IL_3f8e: Unknown result type (might be due to invalid IL or missing references) //IL_3f93: Unknown result type (might be due to invalid IL or missing references) //IL_3f99: Unknown result type (might be due to invalid IL or missing references) //IL_3fa3: Unknown result type (might be due to invalid IL or missing references) //IL_3fa8: Unknown result type (might be due to invalid IL or missing references) //IL_3fae: Unknown result type (might be due to invalid IL or missing references) //IL_3fb3: Unknown result type (might be due to invalid IL or missing references) //IL_3fb9: Unknown result type (might be due to invalid IL or missing references) //IL_3fc3: Unknown result type (might be due to invalid IL or missing references) //IL_3fc8: Unknown result type (might be due to invalid IL or missing references) //IL_3fd4: Unknown result type (might be due to invalid IL or missing references) //IL_291a: Unknown result type (might be due to invalid IL or missing references) //IL_2920: Unknown result type (might be due to invalid IL or missing references) //IL_2925: Unknown result type (might be due to invalid IL or missing references) //IL_292b: Unknown result type (might be due to invalid IL or missing references) //IL_2930: Unknown result type (might be due to invalid IL or missing references) //IL_2936: Unknown result type (might be due to invalid IL or missing references) //IL_2940: Unknown result type (might be due to invalid IL or missing references) //IL_2945: Unknown result type (might be due to invalid IL or missing references) //IL_294b: Unknown result type (might be due to invalid IL or missing references) //IL_2950: Unknown result type (might be due to invalid IL or missing references) //IL_2956: Unknown result type (might be due to invalid IL or missing references) //IL_2960: Unknown result type (might be due to invalid IL or missing references) //IL_2965: Unknown result type (might be due to invalid IL or missing references) //IL_2970: Unknown result type (might be due to invalid IL or missing references) //IL_2976: Unknown result type (might be due to invalid IL or missing references) //IL_297b: Unknown result type (might be due to invalid IL or missing references) //IL_2981: Unknown result type (might be due to invalid IL or missing references) //IL_2986: Unknown result type (might be due to invalid IL or missing references) //IL_298c: Unknown result type (might be due to invalid IL or missing references) //IL_2996: Unknown result type (might be due to invalid IL or missing references) //IL_299b: Unknown result type (might be due to invalid IL or missing references) //IL_29a1: Unknown result type (might be due to invalid IL or missing references) //IL_29a6: Unknown result type (might be due to invalid IL or missing references) //IL_29ac: Unknown result type (might be due to invalid IL or missing references) //IL_29b6: Unknown result type (might be due to invalid IL or missing references) //IL_29bb: Unknown result type (might be due to invalid IL or missing references) //IL_29c7: Unknown result type (might be due to invalid IL or missing references) //IL_1337: Unknown result type (might be due to invalid IL or missing references) //IL_133d: Unknown result type (might be due to invalid IL or missing references) //IL_1342: Unknown result type (might be due to invalid IL or missing references) //IL_1348: Unknown result type (might be due to invalid IL or missing references) //IL_134d: Unknown result type (might be due to invalid IL or missing references) //IL_1353: Unknown result type (might be due to invalid IL or missing references) //IL_135d: Unknown result type (might be due to invalid IL or missing references) //IL_1362: Unknown result type (might be due to invalid IL or missing references) //IL_1368: Unknown result type (might be due to invalid IL or missing references) //IL_136d: Unknown result type (might be due to invalid IL or missing references) //IL_1373: Unknown result type (might be due to invalid IL or missing references) //IL_137d: Unknown result type (might be due to invalid IL or missing references) //IL_1382: Unknown result type (might be due to invalid IL or missing references) //IL_138d: Unknown result type (might be due to invalid IL or missing references) //IL_1393: Unknown result type (might be due to invalid IL or missing references) //IL_1398: Unknown result type (might be due to invalid IL or missing references) //IL_139e: Unknown result type (might be due to invalid IL or missing references) //IL_13a3: Unknown result type (might be due to invalid IL or missing references) //IL_13a9: Unknown result type (might be due to invalid IL or missing references) //IL_13b3: Unknown result type (might be due to invalid IL or missing references) //IL_13b8: Unknown result type (might be due to invalid IL or missing references) //IL_13be: Unknown result type (might be due to invalid IL or missing references) //IL_13c3: Unknown result type (might be due to invalid IL or missing references) //IL_13c9: Unknown result type (might be due to invalid IL or missing references) //IL_13d3: Unknown result type (might be due to invalid IL or missing references) //IL_13d8: Unknown result type (might be due to invalid IL or missing references) //IL_13e4: Unknown result type (might be due to invalid IL or missing references) //IL_3fee: Unknown result type (might be due to invalid IL or missing references) //IL_3ff4: Unknown result type (might be due to invalid IL or missing references) //IL_3ff9: Unknown result type (might be due to invalid IL or missing references) //IL_3fff: Unknown result type (might be due to invalid IL or missing references) //IL_4004: Unknown result type (might be due to invalid IL or missing references) //IL_400a: Unknown result type (might be due to invalid IL or missing references) //IL_4014: Unknown result type (might be due to invalid IL or missing references) //IL_4019: Unknown result type (might be due to invalid IL or missing references) //IL_401f: Unknown result type (might be due to invalid IL or missing references) //IL_4024: Unknown result type (might be due to invalid IL or missing references) //IL_402f: Unknown result type (might be due to invalid IL or missing references) //IL_4035: Unknown result type (might be due to invalid IL or missing references) //IL_403a: Unknown result type (might be due to invalid IL or missing references) //IL_4040: Unknown result type (might be due to invalid IL or missing references) //IL_4045: Unknown result type (might be due to invalid IL or missing references) //IL_404b: Unknown result type (might be due to invalid IL or missing references) //IL_4055: Unknown result type (might be due to invalid IL or missing references) //IL_405a: Unknown result type (might be due to invalid IL or missing references) //IL_4060: Unknown result type (might be due to invalid IL or missing references) //IL_4065: Unknown result type (might be due to invalid IL or missing references) //IL_4071: Unknown result type (might be due to invalid IL or missing references) //IL_29e1: Unknown result type (might be due to invalid IL or missing references) //IL_29e7: Unknown result type (might be due to invalid IL or missing references) //IL_29ec: Unknown result type (might be due to invalid IL or missing references) //IL_29f2: Unknown result type (might be due to invalid IL or missing references) //IL_29f7: Unknown result type (might be due to invalid IL or missing references) //IL_29fd: Unknown result type (might be due to invalid IL or missing references) //IL_2a07: Unknown result type (might be due to invalid IL or missing references) //IL_2a0c: Unknown result type (might be due to invalid IL or missing references) //IL_2a12: Unknown result type (might be due to invalid IL or missing references) //IL_2a17: Unknown result type (might be due to invalid IL or missing references) //IL_2a1d: Unknown result type (might be due to invalid IL or missing references) //IL_2a27: Unknown result type (might be due to invalid IL or missing references) //IL_2a2c: Unknown result type (might be due to invalid IL or missing references) //IL_2a37: Unknown result type (might be due to invalid IL or missing references) //IL_2a3d: Unknown result type (might be due to invalid IL or missing references) //IL_2a42: Unknown result type (might be due to invalid IL or missing references) //IL_2a48: Unknown result type (might be due to invalid IL or missing references) //IL_2a4d: Unknown result type (might be due to invalid IL or missing references) //IL_2a53: Unknown result type (might be due to invalid IL or missing references) //IL_2a5d: Unknown result type (might be due to invalid IL or missing references) //IL_2a62: Unknown result type (might be due to invalid IL or missing references) //IL_2a68: Unknown result type (might be due to invalid IL or missing references) //IL_2a6d: Unknown result type (might be due to invalid IL or missing references) //IL_2a73: Unknown result type (might be due to invalid IL or missing references) //IL_2a7d: Unknown result type (might be due to invalid IL or missing references) //IL_2a82: Unknown result type (might be due to invalid IL or missing references) //IL_2a8e: Unknown result type (might be due to invalid IL or missing references) //IL_13fe: Unknown result type (might be due to invalid IL or missing references) //IL_1404: Unknown result type (might be due to invalid IL or missing references) //IL_1409: Unknown result type (might be due to invalid IL or missing references) //IL_140f: Unknown result type (might be due to invalid IL or missing references) //IL_1414: Unknown result type (might be due to invalid IL or missing references) //IL_141a: Unknown result type (might be due to invalid IL or missing references) //IL_1424: Unknown result type (might be due to invalid IL or missing references) //IL_1429: Unknown result type (might be due to invalid IL or missing references) //IL_142f: Unknown result type (might be due to invalid IL or missing references) //IL_1434: Unknown result type (might be due to invalid IL or missing references) //IL_143a: Unknown result type (might be due to invalid IL or missing references) //IL_1444: Unknown result type (might be due to invalid IL or missing references) //IL_1449: Unknown result type (might be due to invalid IL or missing references) //IL_1454: Unknown result type (might be due to invalid IL or missing references) //IL_145a: Unknown result type (might be due to invalid IL or missing references) //IL_145f: Unknown result type (might be due to invalid IL or missing references) //IL_1465: Unknown result type (might be due to invalid IL or missing references) //IL_146a: Unknown result type (might be due to invalid IL or missing references) //IL_1470: Unknown result type (might be due to invalid IL or missing references) //IL_147a: Unknown result type (might be due to invalid IL or missing references) //IL_147f: Unknown result type (might be due to invalid IL or missing references) //IL_1485: Unknown result type (might be due to invalid IL or missing references) //IL_148a: Unknown result type (might be due to invalid IL or missing references) //IL_1490: Unknown result type (might be due to invalid IL or missing references) //IL_149a: Unknown result type (might be due to invalid IL or missing references) //IL_149f: Unknown result type (might be due to invalid IL or missing references) //IL_14ab: Unknown result type (might be due to invalid IL or missing references) //IL_408b: Unknown result type (might be due to invalid IL or missing references) //IL_4091: Unknown result type (might be due to invalid IL or missing references) //IL_4096: Unknown result type (might be due to invalid IL or missing references) //IL_409c: Unknown result type (might be due to invalid IL or missing references) //IL_40a1: Unknown result type (might be due to invalid IL or missing references) //IL_40a7: Unknown result type (might be due to invalid IL or missing references) //IL_40b1: Unknown result type (might be due to invalid IL or missing references) //IL_40b6: Unknown result type (might be due to invalid IL or missing references) //IL_40bc: Unknown result type (might be due to invalid IL or missing references) //IL_40c1: Unknown result type (might be due to invalid IL or missing references) //IL_40c7: Unknown result type (might be due to invalid IL or missing references) //IL_40d1: Unknown result type (might be due to invalid IL or missing references) //IL_40d6: Unknown result type (might be due to invalid IL or missing references) //IL_40e1: Unknown result type (might be due to invalid IL or missing references) //IL_40e7: Unknown result type (might be due to invalid IL or missing references) //IL_40ec: Unknown result type (might be due to invalid IL or missing references) //IL_40f2: Unknown result type (might be due to invalid IL or missing references) //IL_40f7: Unknown result type (might be due to invalid IL or missing references) //IL_40fd: Unknown result type (might be due to invalid IL or missing references) //IL_4107: Unknown result type (might be due to invalid IL or missing references) //IL_410c: Unknown result type (might be due to invalid IL or missing references) //IL_4112: Unknown result type (might be due to invalid IL or missing references) //IL_4117: Unknown result type (might be due to invalid IL or missing references) //IL_411d: Unknown result type (might be due to invalid IL or missing references) //IL_4127: Unknown result type (might be due to invalid IL or missing references) //IL_412c: Unknown result type (might be due to invalid IL or missing references) //IL_4138: Unknown result type (might be due to invalid IL or missing references) //IL_2aa8: Unknown result type (might be due to invalid IL or missing references) //IL_2aae: Unknown result type (might be due to invalid IL or missing references) //IL_2ab3: Unknown result type (might be due to invalid IL or missing references) //IL_2ab9: Unknown result type (might be due to invalid IL or missing references) //IL_2abe: Unknown result type (might be due to invalid IL or missing references) //IL_2ac4: Unknown result type (might be due to invalid IL or missing references) //IL_2ace: Unknown result type (might be due to invalid IL or missing references) //IL_2ad3: Unknown result type (might be due to invalid IL or missing references) //IL_2ad9: Unknown result type (might be due to invalid IL or missing references) //IL_2ade: Unknown result type (might be due to invalid IL or missing references) //IL_2ae4: Unknown result type (might be due to invalid IL or missing references) //IL_2aee: Unknown result type (might be due to invalid IL or missing references) //IL_2af3: Unknown result type (might be due to invalid IL or missing references) //IL_2afe: Unknown result type (might be due to invalid IL or missing references) //IL_2b04: Unknown result type (might be due to invalid IL or missing references) //IL_2b09: Unknown result type (might be due to invalid IL or missing references) //IL_2b0f: Unknown result type (might be due to invalid IL or missing references) //IL_2b14: Unknown result type (might be due to invalid IL or missing references) //IL_2b1a: Unknown result type (might be due to invalid IL or missing references) //IL_2b24: Unknown result type (might be due to invalid IL or missing references) //IL_2b29: Unknown result type (might be due to invalid IL or missing references) //IL_2b2f: Unknown result type (might be due to invalid IL or missing references) //IL_2b34: Unknown result type (might be due to invalid IL or missing references) //IL_2b3a: Unknown result type (might be due to invalid IL or missing references) //IL_2b44: Unknown result type (might be due to invalid IL or missing references) //IL_2b49: Unknown result type (might be due to invalid IL or missing references) //IL_2b55: Unknown result type (might be due to invalid IL or missing references) //IL_14c5: Unknown result type (might be due to invalid IL or missing references) //IL_14cb: Unknown result type (might be due to invalid IL or missing references) //IL_14d0: Unknown result type (might be due to invalid IL or missing references) //IL_14d6: Unknown result type (might be due to invalid IL or missing references) //IL_14db: Unknown result type (might be due to invalid IL or missing references) //IL_14e1: Unknown result type (might be due to invalid IL or missing references) //IL_14eb: Unknown result type (might be due to invalid IL or missing references) //IL_14f0: Unknown result type (might be due to invalid IL or missing references) //IL_14f6: Unknown result type (might be due to invalid IL or missing references) //IL_14fb: Unknown result type (might be due to invalid IL or missing references) //IL_1501: Unknown result type (might be due to invalid IL or missing references) //IL_150b: Unknown result type (might be due to invalid IL or missing references) //IL_1510: Unknown result type (might be due to invalid IL or missing references) //IL_151b: Unknown result type (might be due to invalid IL or missing references) //IL_1521: Unknown result type (might be due to invalid IL or missing references) //IL_1526: Unknown result type (might be due to invalid IL or missing references) //IL_152c: Unknown result type (might be due to invalid IL or missing references) //IL_1531: Unknown result type (might be due to invalid IL or missing references) //IL_1537: Unknown result type (might be due to invalid IL or missing references) //IL_1541: Unknown result type (might be due to invalid IL or missing references) //IL_1546: Unknown result type (might be due to invalid IL or missing references) //IL_154c: Unknown result type (might be due to invalid IL or missing references) //IL_1551: Unknown result type (might be due to invalid IL or missing references) //IL_1557: Unknown result type (might be due to invalid IL or missing references) //IL_1561: Unknown result type (might be due to invalid IL or missing references) //IL_1566: Unknown result type (might be due to invalid IL or missing references) //IL_1572: Unknown result type (might be due to invalid IL or missing references) //IL_4152: Unknown result type (might be due to invalid IL or missing references) //IL_4158: Unknown result type (might be due to invalid IL or missing references) //IL_415d: Unknown result type (might be due to invalid IL or missing references) //IL_4163: Unknown result type (might be due to invalid IL or missing references) //IL_4168: Unknown result type (might be due to invalid IL or missing references) //IL_416e: Unknown result type (might be due to invalid IL or missing references) //IL_4178: Unknown result type (might be due to invalid IL or missing references) //IL_417d: Unknown result type (might be due to invalid IL or missing references) //IL_4183: Unknown result type (might be due to invalid IL or missing references) //IL_4188: Unknown result type (might be due to invalid IL or missing references) //IL_418e: Unknown result type (might be due to invalid IL or missing references) //IL_4198: Unknown result type (might be due to invalid IL or missing references) //IL_419d: Unknown result type (might be due to invalid IL or missing references) //IL_41a8: Unknown result type (might be due to invalid IL or missing references) //IL_41ae: Unknown result type (might be due to invalid IL or missing references) //IL_41b3: Unknown result type (might be due to invalid IL or missing references) //IL_41b9: Unknown result type (might be due to invalid IL or missing references) //IL_41be: Unknown result type (might be due to invalid IL or missing references) //IL_41c4: Unknown result type (might be due to invalid IL or missing references) //IL_41ce: Unknown result type (might be due to invalid IL or missing references) //IL_41d3: Unknown result type (might be due to invalid IL or missing references) //IL_41d9: Unknown result type (might be due to invalid IL or missing references) //IL_41de: Unknown result type (might be due to invalid IL or missing references) //IL_41e4: Unknown result type (might be due to invalid IL or missing references) //IL_41ee: Unknown result type (might be due to invalid IL or missing references) //IL_41f3: Unknown result type (might be due to invalid IL or missing references) //IL_41ff: Unknown result type (might be due to invalid IL or missing references) //IL_2b6f: Unknown result type (might be due to invalid IL or missing references) //IL_2b75: Unknown result type (might be due to invalid IL or missing references) //IL_2b7a: Unknown result type (might be due to invalid IL or missing references) //IL_2b80: Unknown result type (might be due to invalid IL or missing references) //IL_2b85: Unknown result type (might be due to invalid IL or missing references) //IL_2b8b: Unknown result type (might be due to invalid IL or missing references) //IL_2b95: Unknown result type (might be due to invalid IL or missing references) //IL_2b9a: Unknown result type (might be due to invalid IL or missing references) //IL_2ba0: Unknown result type (might be due to invalid IL or missing references) //IL_2ba5: Unknown result type (might be due to invalid IL or missing references) //IL_2bab: Unknown result type (might be due to invalid IL or missing references) //IL_2bb5: Unknown result type (might be due to invalid IL or missing references) //IL_2bba: Unknown result type (might be due to invalid IL or missing references) //IL_2bc5: Unknown result type (might be due to invalid IL or missing references) //IL_2bcb: Unknown result type (might be due to invalid IL or missing references) //IL_2bd0: Unknown result type (might be due to invalid IL or missing references) //IL_2bd6: Unknown result type (might be due to invalid IL or missing references) //IL_2bdb: Unknown result type (might be due to invalid IL or missing references) //IL_2be1: Unknown result type (might be due to invalid IL or missing references) //IL_2beb: Unknown result type (might be due to invalid IL or missing references) //IL_2bf0: Unknown result type (might be due to invalid IL or missing references) //IL_2bf6: Unknown result type (might be due to invalid IL or missing references) //IL_2bfb: Unknown result type (might be due to invalid IL or missing references) //IL_2c01: Unknown result type (might be due to invalid IL or missing references) //IL_2c0b: Unknown result type (might be due to invalid IL or missing references) //IL_2c10: Unknown result type (might be due to invalid IL or missing references) //IL_2c1c: Unknown result type (might be due to invalid IL or missing references) //IL_158c: Unknown result type (might be due to invalid IL or missing references) //IL_1592: Unknown result type (might be due to invalid IL or missing references) //IL_1597: Unknown result type (might be due to invalid IL or missing references) //IL_159d: Unknown result type (might be due to invalid IL or missing references) //IL_15a2: Unknown result type (might be due to invalid IL or missing references) //IL_15a8: Unknown result type (might be due to invalid IL or missing references) //IL_15b2: Unknown result type (might be due to invalid IL or missing references) //IL_15b7: Unknown result type (might be due to invalid IL or missing references) //IL_15bd: Unknown result type (might be due to invalid IL or missing references) //IL_15c2: Unknown result type (might be due to invalid IL or missing references) //IL_15c8: Unknown result type (might be due to invalid IL or missing references) //IL_15d2: Unknown result type (might be due to invalid IL or missing references) //IL_15d7: Unknown result type (might be due to invalid IL or missing references) //IL_15e2: Unknown result type (might be due to invalid IL or missing references) //IL_15e8: Unknown result type (might be due to invalid IL or missing references) //IL_15ed: Unknown result type (might be due to invalid IL or missing references) //IL_15f3: Unknown result type (might be due to invalid IL or missing references) //IL_15f8: Unknown result type (might be due to invalid IL or missing references) //IL_15fe: Unknown result type (might be due to invalid IL or missing references) //IL_1608: Unknown result type (might be due to invalid IL or missing references) //IL_160d: Unknown result type (might be due to invalid IL or missing references) //IL_1613: Unknown result type (might be due to invalid IL or missing references) //IL_1618: Unknown result type (might be due to invalid IL or missing references) //IL_161e: Unknown result type (might be due to invalid IL or missing references) //IL_1628: Unknown result type (might be due to invalid IL or missing references) //IL_162d: Unknown result type (might be due to invalid IL or missing references) //IL_1639: Unknown result type (might be due to invalid IL or missing references) //IL_4219: Unknown result type (might be due to invalid IL or missing references) //IL_421f: Unknown result type (might be due to invalid IL or missing references) //IL_4224: Unknown result type (might be due to invalid IL or missing references) //IL_422a: Unknown result type (might be due to invalid IL or missing references) //IL_422f: Unknown result type (might be due to invalid IL or missing references) //IL_4235: Unknown result type (might be due to invalid IL or missing references) //IL_423f: Unknown result type (might be due to invalid IL or missing references) //IL_4244: Unknown result type (might be due to invalid IL or missing references) //IL_424a: Unknown result type (might be due to invalid IL or missing references) //IL_424f: Unknown result type (might be due to invalid IL or missing references) //IL_4255: Unknown result type (might be due to invalid IL or missing references) //IL_425f: Unknown result type (might be due to invalid IL or missing references) //IL_4264: Unknown result type (might be due to invalid IL or missing references) //IL_426f: Unknown result type (might be due to invalid IL or missing references) //IL_4275: Unknown result type (might be due to invalid IL or missing references) //IL_427a: Unknown result type (might be due to invalid IL or missing references) //IL_4280: Unknown result type (might be due to invalid IL or missing references) //IL_4285: Unknown result type (might be due to invalid IL or missing references) //IL_428b: Unknown result type (might be due to invalid IL or missing references) //IL_4295: Unknown result type (might be due to invalid IL or missing references) //IL_429a: Unknown result type (might be due to invalid IL or missing references) //IL_42a0: Unknown result type (might be due to invalid IL or missing references) //IL_42a5: Unknown result type (might be due to invalid IL or missing references) //IL_42ab: Unknown result type (might be due to invalid IL or missing references) //IL_42b5: Unknown result type (might be due to invalid IL or missing references) //IL_42ba: Unknown result type (might be due to invalid IL or missing references) //IL_42c6: Unknown result type (might be due to invalid IL or missing references) //IL_2c36: Unknown result type (might be due to invalid IL or missing references) //IL_2c3c: Unknown result type (might be due to invalid IL or missing references) //IL_2c41: Unknown result type (might be due to invalid IL or missing references) //IL_2c47: Unknown result type (might be due to invalid IL or missing references) //IL_2c4c: Unknown result type (might be due to invalid IL or missing references) //IL_2c52: Unknown result type (might be due to invalid IL or missing references) //IL_2c5c: Unknown result type (might be due to invalid IL or missing references) //IL_2c61: Unknown result type (might be due to invalid IL or missing references) //IL_2c67: Unknown result type (might be due to invalid IL or missing references) //IL_2c6c: Unknown result type (might be due to invalid IL or missing references) //IL_2c72: Unknown result type (might be due to invalid IL or missing references) //IL_2c7c: Unknown result type (might be due to invalid IL or missing references) //IL_2c81: Unknown result type (might be due to invalid IL or missing references) //IL_2c8c: Unknown result type (might be due to invalid IL or missing references) //IL_2c92: Unknown result type (might be due to invalid IL or missing references) //IL_2c97: Unknown result type (might be due to invalid IL or missing references) //IL_2c9d: Unknown result type (might be due to invalid IL or missing references) //IL_2ca2: Unknown result type (might be due to invalid IL or missing references) //IL_2ca8: Unknown result type (might be due to invalid IL or missing references) //IL_2cb2: Unknown result type (might be due to invalid IL or missing references) //IL_2cb7: Unknown result type (might be due to invalid IL or missing references) //IL_2cbd: Unknown result type (might be due to invalid IL or missing references) //IL_2cc2: Unknown result type (might be due to invalid IL or missing references) //IL_2cc8: Unknown result type (might be due to invalid IL or missing references) //IL_2cd2: Unknown result type (might be due to invalid IL or missing references) //IL_2cd7: Unknown result type (might be due to invalid IL or missing references) //IL_2ce3: Unknown result type (might be due to invalid IL or missing references) //IL_1653: Unknown result type (might be due to invalid IL or missing references) //IL_1659: Unknown result type (might be due to invalid IL or missing references) //IL_165e: Unknown result type (might be due to invalid IL or missing references) //IL_1664: Unknown result type (might be due to invalid IL or missing references) //IL_1669: Unknown result type (might be due to invalid IL or missing references) //IL_166f: Unknown result type (might be due to invalid IL or missing references) //IL_1679: Unknown result type (might be due to invalid IL or missing references) //IL_167e: Unknown result type (might be due to invalid IL or missing references) //IL_1684: Unknown result type (might be due to invalid IL or missing references) //IL_1689: Unknown result type (might be due to invalid IL or missing references) //IL_168f: Unknown result type (might be due to invalid IL or missing references) //IL_1699: Unknown result type (might be due to invalid IL or missing references) //IL_169e: Unknown result type (might be due to invalid IL or missing references) //IL_16a9: Unknown result type (might be due to invalid IL or missing references) //IL_16af: Unknown result type (might be due to invalid IL or missing references) //IL_16b4: Unknown result type (might be due to invalid IL or missing references) //IL_16ba: Unknown result type (might be due to invalid IL or missing references) //IL_16bf: Unknown result type (might be due to invalid IL or missing references) //IL_16c5: Unknown result type (might be due to invalid IL or missing references) //IL_16cf: Unknown result type (might be due to invalid IL or missing references) //IL_16d4: Unknown result type (might be due to invalid IL or missing references) //IL_16da: Unknown result type (might be due to invalid IL or missing references) //IL_16df: Unknown result type (might be due to invalid IL or missing references) //IL_16e5: Unknown result type (might be due to invalid IL or missing references) //IL_16ef: Unknown result type (might be due to invalid IL or missing references) //IL_16f4: Unknown result type (might be due to invalid IL or missing references) //IL_1700: Unknown result type (might be due to invalid IL or missing references) //IL_42e0: Unknown result type (might be due to invalid IL or missing references) //IL_42e6: Unknown result type (might be due to invalid IL or missing references) //IL_42eb: Unknown result type (might be due to invalid IL or missing references) //IL_42f1: Unknown result type (might be due to invalid IL or missing references) //IL_42f6: Unknown result type (might be due to invalid IL or missing references) //IL_42fc: Unknown result type (might be due to invalid IL or missing references) //IL_4306: Unknown result type (might be due to invalid IL or missing references) //IL_430b: Unknown result type (might be due to invalid IL or missing references) //IL_4311: Unknown result type (might be due to invalid IL or missing references) //IL_4316: Unknown result type (might be due to invalid IL or missing references) //IL_431c: Unknown result type (might be due to invalid IL or missing references) //IL_4326: Unknown result type (might be due to invalid IL or missing references) //IL_432b: Unknown result type (might be due to invalid IL or missing references) //IL_4336: Unknown result type (might be due to invalid IL or missing references) //IL_433c: Unknown result type (might be due to invalid IL or missing references) //IL_4341: Unknown result type (might be due to invalid IL or missing references) //IL_4347: Unknown result type (might be due to invalid IL or missing references) //IL_434c: Unknown result type (might be due to invalid IL or missing references) //IL_4352: Unknown result type (might be due to invalid IL or missing references) //IL_435c: Unknown result type (might be due to invalid IL or missing references) //IL_4361: Unknown result type (might be due to invalid IL or missing references) //IL_4367: Unknown result type (might be due to invalid IL or missing references) //IL_436c: Unknown result type (might be due to invalid IL or missing references) //IL_4372: Unknown result type (might be due to invalid IL or missing references) //IL_437c: Unknown result type (might be due to invalid IL or missing references) //IL_4381: Unknown result type (might be due to invalid IL or missing references) //IL_438d: Unknown result type (might be due to invalid IL or missing references) //IL_2cfd: Unknown result type (might be due to invalid IL or missing references) //IL_2d03: Unknown result type (might be due to invalid IL or missing references) //IL_2d08: Unknown result type (might be due to invalid IL or missing references) //IL_2d0e: Unknown result type (might be due to invalid IL or missing references) //IL_2d13: Unknown result type (might be due to invalid IL or missing references) //IL_2d19: Unknown result type (might be due to invalid IL or missing references) //IL_2d23: Unknown result type (might be due to invalid IL or missing references) //IL_2d28: Unknown result type (might be due to invalid IL or missing references) //IL_2d2e: Unknown result type (might be due to invalid IL or missing references) //IL_2d33: Unknown result type (might be due to invalid IL or missing references) //IL_2d39: Unknown result type (might be due to invalid IL or missing references) //IL_2d43: Unknown result type (might be due to invalid IL or missing references) //IL_2d48: Unknown result type (might be due to invalid IL or missing references) //IL_2d53: Unknown result type (might be due to invalid IL or missing references) //IL_2d59: Unknown result type (might be due to invalid IL or missing references) //IL_2d5e: Unknown result type (might be due to invalid IL or missing references) //IL_2d64: Unknown result type (might be due to invalid IL or missing references) //IL_2d69: Unknown result type (might be due to invalid IL or missing references) //IL_2d6f: Unknown result type (might be due to invalid IL or missing references) //IL_2d79: Unknown result type (might be due to invalid IL or missing references) //IL_2d7e: Unknown result type (might be due to invalid IL or missing references) //IL_2d84: Unknown result type (might be due to invalid IL or missing references) //IL_2d89: Unknown result type (might be due to invalid IL or missing references) //IL_2d8f: Unknown result type (might be due to invalid IL or missing references) //IL_2d99: Unknown result type (might be due to invalid IL or missing references) //IL_2d9e: Unknown result type (might be due to invalid IL or missing references) //IL_2daa: Unknown result type (might be due to invalid IL or missing references) //IL_43a7: Unknown result type (might be due to invalid IL or missing references) //IL_43ad: Unknown result type (might be due to invalid IL or missing references) //IL_43b2: Unknown result type (might be due to invalid IL or missing references) //IL_43b8: Unknown result type (might be due to invalid IL or missing references) //IL_43bd: Unknown result type (might be due to invalid IL or missing references) //IL_43c3: Unknown result type (might be due to invalid IL or missing references) //IL_43cd: Unknown result type (might be due to invalid IL or missing references) //IL_43d2: Unknown result type (might be due to invalid IL or missing references) //IL_43d8: Unknown result type (might be due to invalid IL or missing references) //IL_43dd: Unknown result type (might be due to invalid IL or missing references) //IL_43e3: Unknown result type (might be due to invalid IL or missing references) //IL_43ed: Unknown result type (might be due to invalid IL or missing references) //IL_43f2: Unknown result type (might be due to invalid IL or missing references) //IL_43fd: Unknown result type (might be due to invalid IL or missing references) //IL_4403: Unknown result type (might be due to invalid IL or missing references) //IL_4408: Unknown result type (might be due to invalid IL or missing references) //IL_440e: Unknown result type (might be due to invalid IL or missing references) //IL_4413: Unknown result type (might be due to invalid IL or missing references) //IL_4419: Unknown result type (might be due to invalid IL or missing references) //IL_4423: Unknown result type (might be due to invalid IL or missing references) //IL_4428: Unknown result type (might be due to invalid IL or missing references) //IL_442e: Unknown result type (might be due to invalid IL or missing references) //IL_4433: Unknown result type (might be due to invalid IL or missing references) //IL_4439: Unknown result type (might be due to invalid IL or missing references) //IL_4443: Unknown result type (might be due to invalid IL or missing references) //IL_4448: Unknown result type (might be due to invalid IL or missing references) //IL_4454: Unknown result type (might be due to invalid IL or missing references) //IL_2dc4: Unknown result type (might be due to invalid IL or missing references) //IL_2dca: Unknown result type (might be due to invalid IL or missing references) //IL_2dcf: Unknown result type (might be due to invalid IL or missing references) //IL_2dd5: Unknown result type (might be due to invalid IL or missing references) //IL_2dda: Unknown result type (might be due to invalid IL or missing references) //IL_2de0: Unknown result type (might be due to invalid IL or missing references) //IL_2dea: Unknown result type (might be due to invalid IL or missing references) //IL_2def: Unknown result type (might be due to invalid IL or missing references) //IL_2df5: Unknown result type (might be due to invalid IL or missing references) //IL_2dfa: Unknown result type (might be due to invalid IL or missing references) //IL_2e00: Unknown result type (might be due to invalid IL or missing references) //IL_2e0a: Unknown result type (might be due to invalid IL or missing references) //IL_2e0f: Unknown result type (might be due to invalid IL or missing references) //IL_2e1a: Unknown result type (might be due to invalid IL or missing references) //IL_2e20: Unknown result type (might be due to invalid IL or missing references) //IL_2e25: Unknown result type (might be due to invalid IL or missing references) //IL_2e2b: Unknown result type (might be due to invalid IL or missing references) //IL_2e30: Unknown result type (might be due to invalid IL or missing references) //IL_2e36: Unknown result type (might be due to invalid IL or missing references) //IL_2e40: Unknown result type (might be due to invalid IL or missing references) //IL_2e45: Unknown result type (might be due to invalid IL or missing references) //IL_2e4b: Unknown result type (might be due to invalid IL or missing references) //IL_2e50: Unknown result type (might be due to invalid IL or missing references) //IL_2e56: Unknown result type (might be due to invalid IL or missing references) //IL_2e60: Unknown result type (might be due to invalid IL or missing references) //IL_2e65: Unknown result type (might be due to invalid IL or missing references) //IL_2e71: Unknown result type (might be due to invalid IL or missing references) //IL_446e: Unknown result type (might be due to invalid IL or missing references) //IL_4474: Unknown result type (might be due to invalid IL or missing references) //IL_4479: Unknown result type (might be due to invalid IL or missing references) //IL_447f: Unknown result type (might be due to invalid IL or missing references) //IL_4484: Unknown result type (might be due to invalid IL or missing references) //IL_448a: Unknown result type (might be due to invalid IL or missing references) //IL_4494: Unknown result type (might be due to invalid IL or missing references) //IL_4499: Unknown result type (might be due to invalid IL or missing references) //IL_449f: Unknown result type (might be due to invalid IL or missing references) //IL_44a4: Unknown result type (might be due to invalid IL or missing references) //IL_44aa: Unknown result type (might be due to invalid IL or missing references) //IL_44b4: Unknown result type (might be due to invalid IL or missing references) //IL_44b9: Unknown result type (might be due to invalid IL or missing references) //IL_44c4: Unknown result type (might be due to invalid IL or missing references) //IL_44ca: Unknown result type (might be due to invalid IL or missing references) //IL_44cf: Unknown result type (might be due to invalid IL or missing references) //IL_44d5: Unknown result type (might be due to invalid IL or missing references) //IL_44da: Unknown result type (might be due to invalid IL or missing references) //IL_44e0: Unknown result type (might be due to invalid IL or missing references) //IL_44ea: Unknown result type (might be due to invalid IL or missing references) //IL_44ef: Unknown result type (might be due to invalid IL or missing references) //IL_44f5: Unknown result type (might be due to invalid IL or missing references) //IL_44fa: Unknown result type (might be due to invalid IL or missing references) //IL_4500: Unknown result type (might be due to invalid IL or missing references) //IL_450a: Unknown result type (might be due to invalid IL or missing references) //IL_450f: Unknown result type (might be due to invalid IL or missing references) //IL_451b: Unknown result type (might be due to invalid IL or missing references) //IL_4535: Unknown result type (might be due to invalid IL or missing references) //IL_453b: Unknown result type (might be due to invalid IL or missing references) //IL_4540: Unknown result type (might be due to invalid IL or missing references) //IL_4546: Unknown result type (might be due to invalid IL or missing references) //IL_454b: Unknown result type (might be due to invalid IL or missing references) //IL_4551: Unknown result type (might be due to invalid IL or missing references) //IL_455b: Unknown result type (might be due to invalid IL or missing references) //IL_4560: Unknown result type (might be due to invalid IL or missing references) //IL_4566: Unknown result type (might be due to invalid IL or missing references) //IL_456b: Unknown result type (might be due to invalid IL or missing references) //IL_4571: Unknown result type (might be due to invalid IL or missing references) //IL_457b: Unknown result type (might be due to invalid IL or missing references) //IL_4580: Unknown result type (might be due to invalid IL or missing references) //IL_458b: Unknown result type (might be due to invalid IL or missing references) //IL_4591: Unknown result type (might be due to invalid IL or missing references) //IL_4596: Unknown result type (might be due to invalid IL or missing references) //IL_459c: Unknown result type (might be due to invalid IL or missing references) //IL_45a1: Unknown result type (might be due to invalid IL or missing references) //IL_45a7: Unknown result type (might be due to invalid IL or missing references) //IL_45b1: Unknown result type (might be due to invalid IL or missing references) //IL_45b6: Unknown result type (might be due to invalid IL or missing references) //IL_45bc: Unknown result type (might be due to invalid IL or missing references) //IL_45c1: Unknown result type (might be due to invalid IL or missing references) //IL_45c7: Unknown result type (might be due to invalid IL or missing references) //IL_45d1: Unknown result type (might be due to invalid IL or missing references) //IL_45d6: Unknown result type (might be due to invalid IL or missing references) //IL_45e2: Unknown result type (might be due to invalid IL or missing references) if (switching || !ledgeSwitchingDetectors.allowLedgeSwitching || !grabbedOn) { return; } if (!Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + minDistFromGroundHeight2 + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.585f + rightWidth * 1.33f + firstSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.585f + rightWidth * 1.33f + firstSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.585f + rightWidth * 1.33f + firstSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.585f + rightWidth * 1.33f + firstSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.585f + ledgeSwitchFirstWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.585f + ledgeSwitchFirstWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.585f + ledgeSwitchFirstWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.585f + ledgeSwitchFirstWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 0.375f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 0.75f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 1.125f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f + ledgeSwitchFirstWidthForward, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f + ledgeSwitchFirstWidthForward, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.585f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !r1FirstForwardSurfaceDetectorsHit && !r1FirstForwardHit && r1SecondForwardHit) { r1SecondForwardTimer += 0.01f; if (r1SecondForwardTimer > 0.1f || rotTimer > 0f) { r1SecondForwardClear = true; } else { r1SecondForwardClear = false; } } else { r1SecondForwardTimer = 0f; r1SecondForwardClear = false; } if (!Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + minDistFromGroundHeight2 + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.585f + rightWidth * 1.33f + secondSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.585f + rightWidth * 1.33f + secondSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.585f + rightWidth * 1.33f + secondSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.585f + rightWidth * 1.33f + secondSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.585f + ledgeSwitchSecondWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.585f + ledgeSwitchSecondWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.585f + ledgeSwitchSecondWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.585f + ledgeSwitchSecondWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 0.375f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 0.75f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 1.125f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f + ledgeSwitchSecondWidthForward, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f + ledgeSwitchSecondWidthForward, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.585f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !r2FirstForwardSurfaceDetectorsHit && !r2FirstForwardHit && r2SecondForwardHit) { r2SecondForwardTimer += 0.01f; if (r2SecondForwardTimer > 0.1f || rotTimer > 0f) { r2SecondForwardClear = true; } else { r2SecondForwardClear = false; } } else { r2SecondForwardTimer = 0f; r2SecondForwardClear = false; } if (!Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + minDistFromGroundHeight2 + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.585f + rightWidth * 1.33f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.585f + rightWidth * 1.33f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.585f + rightWidth * 1.33f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.585f + rightWidth * 1.33f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.585f + ledgeSwitchThirdWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.585f + ledgeSwitchThirdWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.585f + ledgeSwitchThirdWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.585f + ledgeSwitchThirdWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 0.375f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 0.75f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 1.125f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 1.75f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f - ledgeSwitchThirdWidthBack + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !r3FirstForwardSurfaceDetectorsHit && !r3FirstForwardHit && r3SecondForwardHit) { r3SecondForwardTimer += 0.01f; if (r3SecondForwardTimer > 0.1f || rotTimer > 0f) { r3SecondForwardClear = true; } else { r3SecondForwardClear = false; } } else { r3SecondForwardTimer = 0f; r3SecondForwardClear = false; } } private void LedgeSwitchingClearFirstFrontRight() { //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_0054: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0069: Unknown result type (might be due to invalid IL or missing references) //IL_006e: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_0084: Unknown result type (might be due to invalid IL or missing references) //IL_008f: Unknown result type (might be due to invalid IL or missing references) //IL_0095: Unknown result type (might be due to invalid IL or missing references) //IL_009a: Unknown result type (might be due to invalid IL or missing references) //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_00aa: Unknown result type (might be due to invalid IL or missing references) //IL_00af: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) //IL_00ba: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00ca: Unknown result type (might be due to invalid IL or missing references) //IL_00cf: Unknown result type (might be due to invalid IL or missing references) //IL_00d5: Unknown result type (might be due to invalid IL or missing references) //IL_00df: Unknown result type (might be due to invalid IL or missing references) //IL_00e4: Unknown result type (might be due to invalid IL or missing references) //IL_00ea: Unknown result type (might be due to invalid IL or missing references) //IL_00ef: Unknown result type (might be due to invalid IL or missing references) //IL_00f5: Unknown result type (might be due to invalid IL or missing references) //IL_00fa: Unknown result type (might be due to invalid IL or missing references) //IL_0106: Unknown result type (might be due to invalid IL or missing references) //IL_0120: Unknown result type (might be due to invalid IL or missing references) //IL_0126: Unknown result type (might be due to invalid IL or missing references) //IL_012b: Unknown result type (might be due to invalid IL or missing references) //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_0136: Unknown result type (might be due to invalid IL or missing references) //IL_013c: Unknown result type (might be due to invalid IL or missing references) //IL_0146: Unknown result type (might be due to invalid IL or missing references) //IL_014b: Unknown result type (might be due to invalid IL or missing references) //IL_0151: Unknown result type (might be due to invalid IL or missing references) //IL_0156: Unknown result type (might be due to invalid IL or missing references) //IL_015c: Unknown result type (might be due to invalid IL or missing references) //IL_0166: Unknown result type (might be due to invalid IL or missing references) //IL_016b: Unknown result type (might be due to invalid IL or missing references) //IL_0171: Unknown result type (might be due to invalid IL or missing references) //IL_017b: Unknown result type (might be due to invalid IL or missing references) //IL_0180: Unknown result type (might be due to invalid IL or missing references) //IL_0186: Unknown result type (might be due to invalid IL or missing references) //IL_018b: Unknown result type (might be due to invalid IL or missing references) //IL_0191: Unknown result type (might be due to invalid IL or missing references) //IL_0196: Unknown result type (might be due to invalid IL or missing references) //IL_01a1: Unknown result type (might be due to invalid IL or missing references) //IL_01a7: Unknown result type (might be due to invalid IL or missing references) //IL_01ac: Unknown result type (might be due to invalid IL or missing references) //IL_01b2: Unknown result type (might be due to invalid IL or missing references) //IL_01bc: Unknown result type (might be due to invalid IL or missing references) //IL_01c1: Unknown result type (might be due to invalid IL or missing references) //IL_01c7: Unknown result type (might be due to invalid IL or missing references) //IL_01d1: Unknown result type (might be due to invalid IL or missing references) //IL_01d6: Unknown result type (might be due to invalid IL or missing references) //IL_01dc: Unknown result type (might be due to invalid IL or missing references) //IL_01e1: Unknown result type (might be due to invalid IL or missing references) //IL_01e7: Unknown result type (might be due to invalid IL or missing references) //IL_01ec: Unknown result type (might be due to invalid IL or missing references) //IL_01f2: Unknown result type (might be due to invalid IL or missing references) //IL_01fc: Unknown result type (might be due to invalid IL or missing references) //IL_0201: Unknown result type (might be due to invalid IL or missing references) //IL_0207: Unknown result type (might be due to invalid IL or missing references) //IL_0211: Unknown result type (might be due to invalid IL or missing references) //IL_0216: Unknown result type (might be due to invalid IL or missing references) //IL_021c: Unknown result type (might be due to invalid IL or missing references) //IL_0221: Unknown result type (might be due to invalid IL or missing references) //IL_0227: Unknown result type (might be due to invalid IL or missing references) //IL_022c: Unknown result type (might be due to invalid IL or missing references) //IL_0238: Unknown result type (might be due to invalid IL or missing references) //IL_165a: Unknown result type (might be due to invalid IL or missing references) //IL_1660: Unknown result type (might be due to invalid IL or missing references) //IL_1665: Unknown result type (might be due to invalid IL or missing references) //IL_166b: Unknown result type (might be due to invalid IL or missing references) //IL_1670: Unknown result type (might be due to invalid IL or missing references) //IL_1676: Unknown result type (might be due to invalid IL or missing references) //IL_1680: Unknown result type (might be due to invalid IL or missing references) //IL_1685: Unknown result type (might be due to invalid IL or missing references) //IL_168b: Unknown result type (might be due to invalid IL or missing references) //IL_1695: Unknown result type (might be due to invalid IL or missing references) //IL_169a: Unknown result type (might be due to invalid IL or missing references) //IL_16a0: Unknown result type (might be due to invalid IL or missing references) //IL_16a5: Unknown result type (might be due to invalid IL or missing references) //IL_16ab: Unknown result type (might be due to invalid IL or missing references) //IL_16b0: Unknown result type (might be due to invalid IL or missing references) //IL_16bb: Unknown result type (might be due to invalid IL or missing references) //IL_16c1: Unknown result type (might be due to invalid IL or missing references) //IL_16c6: Unknown result type (might be due to invalid IL or missing references) //IL_16cc: Unknown result type (might be due to invalid IL or missing references) //IL_16d6: Unknown result type (might be due to invalid IL or missing references) //IL_16db: Unknown result type (might be due to invalid IL or missing references) //IL_16e1: Unknown result type (might be due to invalid IL or missing references) //IL_16e6: Unknown result type (might be due to invalid IL or missing references) //IL_16ec: Unknown result type (might be due to invalid IL or missing references) //IL_16f6: Unknown result type (might be due to invalid IL or missing references) //IL_16fb: Unknown result type (might be due to invalid IL or missing references) //IL_1701: Unknown result type (might be due to invalid IL or missing references) //IL_170b: Unknown result type (might be due to invalid IL or missing references) //IL_1710: Unknown result type (might be due to invalid IL or missing references) //IL_1716: Unknown result type (might be due to invalid IL or missing references) //IL_171b: Unknown result type (might be due to invalid IL or missing references) //IL_1721: Unknown result type (might be due to invalid IL or missing references) //IL_1726: Unknown result type (might be due to invalid IL or missing references) //IL_1732: Unknown result type (might be due to invalid IL or missing references) //IL_0252: Unknown result type (might be due to invalid IL or missing references) //IL_0258: Unknown result type (might be due to invalid IL or missing references) //IL_025d: Unknown result type (might be due to invalid IL or missing references) //IL_0263: Unknown result type (might be due to invalid IL or missing references) //IL_0268: Unknown result type (might be due to invalid IL or missing references) //IL_026e: Unknown result type (might be due to invalid IL or missing references) //IL_0278: Unknown result type (might be due to invalid IL or missing references) //IL_027d: Unknown result type (might be due to invalid IL or missing references) //IL_0283: Unknown result type (might be due to invalid IL or missing references) //IL_0288: Unknown result type (might be due to invalid IL or missing references) //IL_028e: Unknown result type (might be due to invalid IL or missing references) //IL_0298: Unknown result type (might be due to invalid IL or missing references) //IL_029d: Unknown result type (might be due to invalid IL or missing references) //IL_02a3: Unknown result type (might be due to invalid IL or missing references) //IL_02ad: Unknown result type (might be due to invalid IL or missing references) //IL_02b2: Unknown result type (might be due to invalid IL or missing references) //IL_02b8: Unknown result type (might be due to invalid IL or missing references) //IL_02bd: Unknown result type (might be due to invalid IL or missing references) //IL_02c3: Unknown result type (might be due to invalid IL or missing references) //IL_02c8: Unknown result type (might be due to invalid IL or missing references) //IL_02d3: Unknown result type (might be due to invalid IL or missing references) //IL_02d9: Unknown result type (might be due to invalid IL or missing references) //IL_02de: Unknown result type (might be due to invalid IL or missing references) //IL_02e4: Unknown result type (might be due to invalid IL or missing references) //IL_02ee: Unknown result type (might be due to invalid IL or missing references) //IL_02f3: Unknown result type (might be due to invalid IL or missing references) //IL_02f9: Unknown result type (might be due to invalid IL or missing references) //IL_0303: Unknown result type (might be due to invalid IL or missing references) //IL_0308: Unknown result type (might be due to invalid IL or missing references) //IL_030e: Unknown result type (might be due to invalid IL or missing references) //IL_0313: Unknown result type (might be due to invalid IL or missing references) //IL_0319: Unknown result type (might be due to invalid IL or missing references) //IL_031e: Unknown result type (might be due to invalid IL or missing references) //IL_0324: Unknown result type (might be due to invalid IL or missing references) //IL_032e: Unknown result type (might be due to invalid IL or missing references) //IL_0333: Unknown result type (might be due to invalid IL or missing references) //IL_0339: Unknown result type (might be due to invalid IL or missing references) //IL_0343: Unknown result type (might be due to invalid IL or missing references) //IL_0348: Unknown result type (might be due to invalid IL or missing references) //IL_034e: Unknown result type (might be due to invalid IL or missing references) //IL_0353: Unknown result type (might be due to invalid IL or missing references) //IL_0359: Unknown result type (might be due to invalid IL or missing references) //IL_035e: Unknown result type (might be due to invalid IL or missing references) //IL_036a: Unknown result type (might be due to invalid IL or missing references) //IL_174c: Unknown result type (might be due to invalid IL or missing references) //IL_1752: Unknown result type (might be due to invalid IL or missing references) //IL_1757: Unknown result type (might be due to invalid IL or missing references) //IL_175d: Unknown result type (might be due to invalid IL or missing references) //IL_1762: Unknown result type (might be due to invalid IL or missing references) //IL_1768: Unknown result type (might be due to invalid IL or missing references) //IL_1772: Unknown result type (might be due to invalid IL or missing references) //IL_1777: Unknown result type (might be due to invalid IL or missing references) //IL_177d: Unknown result type (might be due to invalid IL or missing references) //IL_1782: Unknown result type (might be due to invalid IL or missing references) //IL_1788: Unknown result type (might be due to invalid IL or missing references) //IL_1792: Unknown result type (might be due to invalid IL or missing references) //IL_1797: Unknown result type (might be due to invalid IL or missing references) //IL_179d: Unknown result type (might be due to invalid IL or missing references) //IL_17a7: Unknown result type (might be due to invalid IL or missing references) //IL_17ac: Unknown result type (might be due to invalid IL or missing references) //IL_17b2: Unknown result type (might be due to invalid IL or missing references) //IL_17b7: Unknown result type (might be due to invalid IL or missing references) //IL_17bd: Unknown result type (might be due to invalid IL or missing references) //IL_17c2: Unknown result type (might be due to invalid IL or missing references) //IL_17cd: Unknown result type (might be due to invalid IL or missing references) //IL_17d3: Unknown result type (might be due to invalid IL or missing references) //IL_17d8: Unknown result type (might be due to invalid IL or missing references) //IL_17de: Unknown result type (might be due to invalid IL or missing references) //IL_17e8: Unknown result type (might be due to invalid IL or missing references) //IL_17ed: Unknown result type (might be due to invalid IL or missing references) //IL_17f3: Unknown result type (might be due to invalid IL or missing references) //IL_17fd: Unknown result type (might be due to invalid IL or missing references) //IL_1802: Unknown result type (might be due to invalid IL or missing references) //IL_1808: Unknown result type (might be due to invalid IL or missing references) //IL_180d: Unknown result type (might be due to invalid IL or missing references) //IL_1813: Unknown result type (might be due to invalid IL or missing references) //IL_1818: Unknown result type (might be due to invalid IL or missing references) //IL_181e: Unknown result type (might be due to invalid IL or missing references) //IL_1828: Unknown result type (might be due to invalid IL or missing references) //IL_182d: Unknown result type (might be due to invalid IL or missing references) //IL_1833: Unknown result type (might be due to invalid IL or missing references) //IL_183d: Unknown result type (might be due to invalid IL or missing references) //IL_1842: Unknown result type (might be due to invalid IL or missing references) //IL_1848: Unknown result type (might be due to invalid IL or missing references) //IL_184d: Unknown result type (might be due to invalid IL or missing references) //IL_1853: Unknown result type (might be due to invalid IL or missing references) //IL_1858: Unknown result type (might be due to invalid IL or missing references) //IL_1864: Unknown result type (might be due to invalid IL or missing references) //IL_0384: Unknown result type (might be due to invalid IL or missing references) //IL_038a: Unknown result type (might be due to invalid IL or missing references) //IL_038f: Unknown result type (might be due to invalid IL or missing references) //IL_039a: Unknown result type (might be due to invalid IL or missing references) //IL_03a0: Unknown result type (might be due to invalid IL or missing references) //IL_03a5: Unknown result type (might be due to invalid IL or missing references) //IL_03ab: Unknown result type (might be due to invalid IL or missing references) //IL_03b5: Unknown result type (might be due to invalid IL or missing references) //IL_03ba: Unknown result type (might be due to invalid IL or missing references) //IL_03c0: Unknown result type (might be due to invalid IL or missing references) //IL_03ca: Unknown result type (might be due to invalid IL or missing references) //IL_03cf: Unknown result type (might be due to invalid IL or missing references) //IL_03d5: Unknown result type (might be due to invalid IL or missing references) //IL_03da: Unknown result type (might be due to invalid IL or missing references) //IL_03e0: Unknown result type (might be due to invalid IL or missing references) //IL_03e5: Unknown result type (might be due to invalid IL or missing references) //IL_03fd: Unknown result type (might be due to invalid IL or missing references) //IL_0402: Unknown result type (might be due to invalid IL or missing references) //IL_041a: Unknown result type (might be due to invalid IL or missing references) //IL_0420: Unknown result type (might be due to invalid IL or missing references) //IL_042a: Unknown result type (might be due to invalid IL or missing references) //IL_042f: Unknown result type (might be due to invalid IL or missing references) //IL_0435: Unknown result type (might be due to invalid IL or missing references) //IL_043a: Unknown result type (might be due to invalid IL or missing references) //IL_0445: Unknown result type (might be due to invalid IL or missing references) //IL_044b: Unknown result type (might be due to invalid IL or missing references) //IL_0450: Unknown result type (might be due to invalid IL or missing references) //IL_045b: Unknown result type (might be due to invalid IL or missing references) //IL_0461: Unknown result type (might be due to invalid IL or missing references) //IL_0466: Unknown result type (might be due to invalid IL or missing references) //IL_046c: Unknown result type (might be due to invalid IL or missing references) //IL_0476: Unknown result type (might be due to invalid IL or missing references) //IL_047b: Unknown result type (might be due to invalid IL or missing references) //IL_0481: Unknown result type (might be due to invalid IL or missing references) //IL_048b: Unknown result type (might be due to invalid IL or missing references) //IL_0490: Unknown result type (might be due to invalid IL or missing references) //IL_0496: Unknown result type (might be due to invalid IL or missing references) //IL_049b: Unknown result type (might be due to invalid IL or missing references) //IL_04a1: Unknown result type (might be due to invalid IL or missing references) //IL_04a6: Unknown result type (might be due to invalid IL or missing references) //IL_04be: Unknown result type (might be due to invalid IL or missing references) //IL_04c3: Unknown result type (might be due to invalid IL or missing references) //IL_04db: Unknown result type (might be due to invalid IL or missing references) //IL_04e1: Unknown result type (might be due to invalid IL or missing references) //IL_04eb: Unknown result type (might be due to invalid IL or missing references) //IL_04f0: Unknown result type (might be due to invalid IL or missing references) //IL_04f6: Unknown result type (might be due to invalid IL or missing references) //IL_04fb: Unknown result type (might be due to invalid IL or missing references) //IL_0507: Unknown result type (might be due to invalid IL or missing references) //IL_2c86: Unknown result type (might be due to invalid IL or missing references) //IL_2c8c: Unknown result type (might be due to invalid IL or missing references) //IL_2c91: Unknown result type (might be due to invalid IL or missing references) //IL_2c97: Unknown result type (might be due to invalid IL or missing references) //IL_2c9c: Unknown result type (might be due to invalid IL or missing references) //IL_2ca2: Unknown result type (might be due to invalid IL or missing references) //IL_2cac: Unknown result type (might be due to invalid IL or missing references) //IL_2cb1: Unknown result type (might be due to invalid IL or missing references) //IL_2cb7: Unknown result type (might be due to invalid IL or missing references) //IL_2cc1: Unknown result type (might be due to invalid IL or missing references) //IL_2cc6: Unknown result type (might be due to invalid IL or missing references) //IL_2ccc: Unknown result type (might be due to invalid IL or missing references) //IL_2cd1: Unknown result type (might be due to invalid IL or missing references) //IL_2cd7: Unknown result type (might be due to invalid IL or missing references) //IL_2cdc: Unknown result type (might be due to invalid IL or missing references) //IL_2ce7: Unknown result type (might be due to invalid IL or missing references) //IL_2ced: Unknown result type (might be due to invalid IL or missing references) //IL_2cf2: Unknown result type (might be due to invalid IL or missing references) //IL_2cf8: Unknown result type (might be due to invalid IL or missing references) //IL_2d02: Unknown result type (might be due to invalid IL or missing references) //IL_2d07: Unknown result type (might be due to invalid IL or missing references) //IL_2d0d: Unknown result type (might be due to invalid IL or missing references) //IL_2d12: Unknown result type (might be due to invalid IL or missing references) //IL_2d18: Unknown result type (might be due to invalid IL or missing references) //IL_2d22: Unknown result type (might be due to invalid IL or missing references) //IL_2d27: Unknown result type (might be due to invalid IL or missing references) //IL_2d2d: Unknown result type (might be due to invalid IL or missing references) //IL_2d37: Unknown result type (might be due to invalid IL or missing references) //IL_2d3c: Unknown result type (might be due to invalid IL or missing references) //IL_2d42: Unknown result type (might be due to invalid IL or missing references) //IL_2d47: Unknown result type (might be due to invalid IL or missing references) //IL_2d4d: Unknown result type (might be due to invalid IL or missing references) //IL_2d52: Unknown result type (might be due to invalid IL or missing references) //IL_2d5e: Unknown result type (might be due to invalid IL or missing references) //IL_187e: Unknown result type (might be due to invalid IL or missing references) //IL_1884: Unknown result type (might be due to invalid IL or missing references) //IL_1889: Unknown result type (might be due to invalid IL or missing references) //IL_188f: Unknown result type (might be due to invalid IL or missing references) //IL_1894: Unknown result type (might be due to invalid IL or missing references) //IL_189a: Unknown result type (might be due to invalid IL or missing references) //IL_18a4: Unknown result type (might be due to invalid IL or missing references) //IL_18a9: Unknown result type (might be due to invalid IL or missing references) //IL_18af: Unknown result type (might be due to invalid IL or missing references) //IL_18b4: Unknown result type (might be due to invalid IL or missing references) //IL_18ba: Unknown result type (might be due to invalid IL or missing references) //IL_18c4: Unknown result type (might be due to invalid IL or missing references) //IL_18c9: Unknown result type (might be due to invalid IL or missing references) //IL_18cf: Unknown result type (might be due to invalid IL or missing references) //IL_18d9: Unknown result type (might be due to invalid IL or missing references) //IL_18de: Unknown result type (might be due to invalid IL or missing references) //IL_18e4: Unknown result type (might be due to invalid IL or missing references) //IL_18e9: Unknown result type (might be due to invalid IL or missing references) //IL_18ef: Unknown result type (might be due to invalid IL or missing references) //IL_18f4: Unknown result type (might be due to invalid IL or missing references) //IL_18ff: Unknown result type (might be due to invalid IL or missing references) //IL_1905: Unknown result type (might be due to invalid IL or missing references) //IL_190a: Unknown result type (might be due to invalid IL or missing references) //IL_1910: Unknown result type (might be due to invalid IL or missing references) //IL_191a: Unknown result type (might be due to invalid IL or missing references) //IL_191f: Unknown result type (might be due to invalid IL or missing references) //IL_1925: Unknown result type (might be due to invalid IL or missing references) //IL_192f: Unknown result type (might be due to invalid IL or missing references) //IL_1934: Unknown result type (might be due to invalid IL or missing references) //IL_193a: Unknown result type (might be due to invalid IL or missing references) //IL_193f: Unknown result type (might be due to invalid IL or missing references) //IL_1945: Unknown result type (might be due to invalid IL or missing references) //IL_194a: Unknown result type (might be due to invalid IL or missing references) //IL_1950: Unknown result type (might be due to invalid IL or missing references) //IL_195a: Unknown result type (might be due to invalid IL or missing references) //IL_195f: Unknown result type (might be due to invalid IL or missing references) //IL_1965: Unknown result type (might be due to invalid IL or missing references) //IL_196f: Unknown result type (might be due to invalid IL or missing references) //IL_1974: Unknown result type (might be due to invalid IL or missing references) //IL_197a: Unknown result type (might be due to invalid IL or missing references) //IL_197f: Unknown result type (might be due to invalid IL or missing references) //IL_1985: Unknown result type (might be due to invalid IL or missing references) //IL_198a: Unknown result type (might be due to invalid IL or missing references) //IL_1996: Unknown result type (might be due to invalid IL or missing references) //IL_0521: Unknown result type (might be due to invalid IL or missing references) //IL_0527: Unknown result type (might be due to invalid IL or missing references) //IL_052c: Unknown result type (might be due to invalid IL or missing references) //IL_0537: Unknown result type (might be due to invalid IL or missing references) //IL_053d: Unknown result type (might be due to invalid IL or missing references) //IL_0542: Unknown result type (might be due to invalid IL or missing references) //IL_0548: Unknown result type (might be due to invalid IL or missing references) //IL_0552: Unknown result type (might be due to invalid IL or missing references) //IL_0557: Unknown result type (might be due to invalid IL or missing references) //IL_055d: Unknown result type (might be due to invalid IL or missing references) //IL_0567: Unknown result type (might be due to invalid IL or missing references) //IL_056c: Unknown result type (might be due to invalid IL or missing references) //IL_0572: Unknown result type (might be due to invalid IL or missing references) //IL_0577: Unknown result type (might be due to invalid IL or missing references) //IL_057d: Unknown result type (might be due to invalid IL or missing references) //IL_0582: Unknown result type (might be due to invalid IL or missing references) //IL_059a: Unknown result type (might be due to invalid IL or missing references) //IL_059f: Unknown result type (might be due to invalid IL or missing references) //IL_05b7: Unknown result type (might be due to invalid IL or missing references) //IL_05bd: Unknown result type (might be due to invalid IL or missing references) //IL_05c7: Unknown result type (might be due to invalid IL or missing references) //IL_05cc: Unknown result type (might be due to invalid IL or missing references) //IL_05d2: Unknown result type (might be due to invalid IL or missing references) //IL_05d7: Unknown result type (might be due to invalid IL or missing references) //IL_05e2: Unknown result type (might be due to invalid IL or missing references) //IL_05e8: Unknown result type (might be due to invalid IL or missing references) //IL_05ed: Unknown result type (might be due to invalid IL or missing references) //IL_05f8: Unknown result type (might be due to invalid IL or missing references) //IL_05fe: Unknown result type (might be due to invalid IL or missing references) //IL_0603: Unknown result type (might be due to invalid IL or missing references) //IL_0609: Unknown result type (might be due to invalid IL or missing references) //IL_0613: Unknown result type (might be due to invalid IL or missing references) //IL_0618: Unknown result type (might be due to invalid IL or missing references) //IL_061e: Unknown result type (might be due to invalid IL or missing references) //IL_0628: Unknown result type (might be due to invalid IL or missing references) //IL_062d: Unknown result type (might be due to invalid IL or missing references) //IL_0633: Unknown result type (might be due to invalid IL or missing references) //IL_0638: Unknown result type (might be due to invalid IL or missing references) //IL_063e: Unknown result type (might be due to invalid IL or missing references) //IL_0643: Unknown result type (might be due to invalid IL or missing references) //IL_065b: Unknown result type (might be due to invalid IL or missing references) //IL_0660: Unknown result type (might be due to invalid IL or missing references) //IL_0678: Unknown result type (might be due to invalid IL or missing references) //IL_067e: Unknown result type (might be due to invalid IL or missing references) //IL_0688: Unknown result type (might be due to invalid IL or missing references) //IL_068d: Unknown result type (might be due to invalid IL or missing references) //IL_0693: Unknown result type (might be due to invalid IL or missing references) //IL_0698: Unknown result type (might be due to invalid IL or missing references) //IL_06a4: Unknown result type (might be due to invalid IL or missing references) //IL_2d78: Unknown result type (might be due to invalid IL or missing references) //IL_2d7e: Unknown result type (might be due to invalid IL or missing references) //IL_2d83: Unknown result type (might be due to invalid IL or missing references) //IL_2d89: Unknown result type (might be due to invalid IL or missing references) //IL_2d8e: Unknown result type (might be due to invalid IL or missing references) //IL_2d94: Unknown result type (might be due to invalid IL or missing references) //IL_2d9e: Unknown result type (might be due to invalid IL or missing references) //IL_2da3: Unknown result type (might be due to invalid IL or missing references) //IL_2da9: Unknown result type (might be due to invalid IL or missing references) //IL_2dae: Unknown result type (might be due to invalid IL or missing references) //IL_2db4: Unknown result type (might be due to invalid IL or missing references) //IL_2dbe: Unknown result type (might be due to invalid IL or missing references) //IL_2dc3: Unknown result type (might be due to invalid IL or missing references) //IL_2dc9: Unknown result type (might be due to invalid IL or missing references) //IL_2dd3: Unknown result type (might be due to invalid IL or missing references) //IL_2dd8: Unknown result type (might be due to invalid IL or missing references) //IL_2dde: Unknown result type (might be due to invalid IL or missing references) //IL_2de3: Unknown result type (might be due to invalid IL or missing references) //IL_2de9: Unknown result type (might be due to invalid IL or missing references) //IL_2dee: Unknown result type (might be due to invalid IL or missing references) //IL_2df9: Unknown result type (might be due to invalid IL or missing references) //IL_2dff: Unknown result type (might be due to invalid IL or missing references) //IL_2e04: Unknown result type (might be due to invalid IL or missing references) //IL_2e0a: Unknown result type (might be due to invalid IL or missing references) //IL_2e14: Unknown result type (might be due to invalid IL or missing references) //IL_2e19: Unknown result type (might be due to invalid IL or missing references) //IL_2e1f: Unknown result type (might be due to invalid IL or missing references) //IL_2e29: Unknown result type (might be due to invalid IL or missing references) //IL_2e2e: Unknown result type (might be due to invalid IL or missing references) //IL_2e34: Unknown result type (might be due to invalid IL or missing references) //IL_2e39: Unknown result type (might be due to invalid IL or missing references) //IL_2e3f: Unknown result type (might be due to invalid IL or missing references) //IL_2e44: Unknown result type (might be due to invalid IL or missing references) //IL_2e4a: Unknown result type (might be due to invalid IL or missing references) //IL_2e54: Unknown result type (might be due to invalid IL or missing references) //IL_2e59: Unknown result type (might be due to invalid IL or missing references) //IL_2e5f: Unknown result type (might be due to invalid IL or missing references) //IL_2e69: Unknown result type (might be due to invalid IL or missing references) //IL_2e6e: Unknown result type (might be due to invalid IL or missing references) //IL_2e74: Unknown result type (might be due to invalid IL or missing references) //IL_2e79: Unknown result type (might be due to invalid IL or missing references) //IL_2e7f: Unknown result type (might be due to invalid IL or missing references) //IL_2e84: Unknown result type (might be due to invalid IL or missing references) //IL_2e90: Unknown result type (might be due to invalid IL or missing references) //IL_19b0: Unknown result type (might be due to invalid IL or missing references) //IL_19b6: Unknown result type (might be due to invalid IL or missing references) //IL_19bb: Unknown result type (might be due to invalid IL or missing references) //IL_19c6: Unknown result type (might be due to invalid IL or missing references) //IL_19cc: Unknown result type (might be due to invalid IL or missing references) //IL_19d1: Unknown result type (might be due to invalid IL or missing references) //IL_19d7: Unknown result type (might be due to invalid IL or missing references) //IL_19e1: Unknown result type (might be due to invalid IL or missing references) //IL_19e6: Unknown result type (might be due to invalid IL or missing references) //IL_19ec: Unknown result type (might be due to invalid IL or missing references) //IL_19f6: Unknown result type (might be due to invalid IL or missing references) //IL_19fb: Unknown result type (might be due to invalid IL or missing references) //IL_1a01: Unknown result type (might be due to invalid IL or missing references) //IL_1a06: Unknown result type (might be due to invalid IL or missing references) //IL_1a0c: Unknown result type (might be due to invalid IL or missing references) //IL_1a11: Unknown result type (might be due to invalid IL or missing references) //IL_1a29: Unknown result type (might be due to invalid IL or missing references) //IL_1a2e: Unknown result type (might be due to invalid IL or missing references) //IL_1a46: Unknown result type (might be due to invalid IL or missing references) //IL_1a4c: Unknown result type (might be due to invalid IL or missing references) //IL_1a56: Unknown result type (might be due to invalid IL or missing references) //IL_1a5b: Unknown result type (might be due to invalid IL or missing references) //IL_1a61: Unknown result type (might be due to invalid IL or missing references) //IL_1a66: Unknown result type (might be due to invalid IL or missing references) //IL_1a71: Unknown result type (might be due to invalid IL or missing references) //IL_1a77: Unknown result type (might be due to invalid IL or missing references) //IL_1a7c: Unknown result type (might be due to invalid IL or missing references) //IL_1a87: Unknown result type (might be due to invalid IL or missing references) //IL_1a8d: Unknown result type (might be due to invalid IL or missing references) //IL_1a92: Unknown result type (might be due to invalid IL or missing references) //IL_1a98: Unknown result type (might be due to invalid IL or missing references) //IL_1aa2: Unknown result type (might be due to invalid IL or missing references) //IL_1aa7: Unknown result type (might be due to invalid IL or missing references) //IL_1aad: Unknown result type (might be due to invalid IL or missing references) //IL_1ab7: Unknown result type (might be due to invalid IL or missing references) //IL_1abc: Unknown result type (might be due to invalid IL or missing references) //IL_1ac2: Unknown result type (might be due to invalid IL or missing references) //IL_1ac7: Unknown result type (might be due to invalid IL or missing references) //IL_1acd: Unknown result type (might be due to invalid IL or missing references) //IL_1ad2: Unknown result type (might be due to invalid IL or missing references) //IL_1aea: Unknown result type (might be due to invalid IL or missing references) //IL_1aef: Unknown result type (might be due to invalid IL or missing references) //IL_1b07: Unknown result type (might be due to invalid IL or missing references) //IL_1b0d: Unknown result type (might be due to invalid IL or missing references) //IL_1b17: Unknown result type (might be due to invalid IL or missing references) //IL_1b1c: Unknown result type (might be due to invalid IL or missing references) //IL_1b22: Unknown result type (might be due to invalid IL or missing references) //IL_1b27: Unknown result type (might be due to invalid IL or missing references) //IL_1b33: Unknown result type (might be due to invalid IL or missing references) //IL_06be: Unknown result type (might be due to invalid IL or missing references) //IL_06c4: Unknown result type (might be due to invalid IL or missing references) //IL_06c9: Unknown result type (might be due to invalid IL or missing references) //IL_06cf: Unknown result type (might be due to invalid IL or missing references) //IL_06d9: Unknown result type (might be due to invalid IL or missing references) //IL_06de: Unknown result type (might be due to invalid IL or missing references) //IL_06e4: Unknown result type (might be due to invalid IL or missing references) //IL_06e9: Unknown result type (might be due to invalid IL or missing references) //IL_06ef: Unknown result type (might be due to invalid IL or missing references) //IL_06f9: Unknown result type (might be due to invalid IL or missing references) //IL_06fe: Unknown result type (might be due to invalid IL or missing references) //IL_0704: Unknown result type (might be due to invalid IL or missing references) //IL_0709: Unknown result type (might be due to invalid IL or missing references) //IL_0714: Unknown result type (might be due to invalid IL or missing references) //IL_071a: Unknown result type (might be due to invalid IL or missing references) //IL_071f: Unknown result type (might be due to invalid IL or missing references) //IL_0725: Unknown result type (might be due to invalid IL or missing references) //IL_072f: Unknown result type (might be due to invalid IL or missing references) //IL_0734: Unknown result type (might be due to invalid IL or missing references) //IL_073a: Unknown result type (might be due to invalid IL or missing references) //IL_073f: Unknown result type (might be due to invalid IL or missing references) //IL_0745: Unknown result type (might be due to invalid IL or missing references) //IL_074f: Unknown result type (might be due to invalid IL or missing references) //IL_0754: Unknown result type (might be due to invalid IL or missing references) //IL_075a: Unknown result type (might be due to invalid IL or missing references) //IL_075f: Unknown result type (might be due to invalid IL or missing references) //IL_076b: Unknown result type (might be due to invalid IL or missing references) //IL_2eaa: Unknown result type (might be due to invalid IL or missing references) //IL_2eb0: Unknown result type (might be due to invalid IL or missing references) //IL_2eb5: Unknown result type (might be due to invalid IL or missing references) //IL_2ebb: Unknown result type (might be due to invalid IL or missing references) //IL_2ec0: Unknown result type (might be due to invalid IL or missing references) //IL_2ec6: Unknown result type (might be due to invalid IL or missing references) //IL_2ed0: Unknown result type (might be due to invalid IL or missing references) //IL_2ed5: Unknown result type (might be due to invalid IL or missing references) //IL_2edb: Unknown result type (might be due to invalid IL or missing references) //IL_2ee0: Unknown result type (might be due to invalid IL or missing references) //IL_2ee6: Unknown result type (might be due to invalid IL or missing references) //IL_2ef0: Unknown result type (might be due to invalid IL or missing references) //IL_2ef5: Unknown result type (might be due to invalid IL or missing references) //IL_2efb: Unknown result type (might be due to invalid IL or missing references) //IL_2f05: Unknown result type (might be due to invalid IL or missing references) //IL_2f0a: Unknown result type (might be due to invalid IL or missing references) //IL_2f10: Unknown result type (might be due to invalid IL or missing references) //IL_2f15: Unknown result type (might be due to invalid IL or missing references) //IL_2f1b: Unknown result type (might be due to invalid IL or missing references) //IL_2f20: Unknown result type (might be due to invalid IL or missing references) //IL_2f2b: Unknown result type (might be due to invalid IL or missing references) //IL_2f31: Unknown result type (might be due to invalid IL or missing references) //IL_2f36: Unknown result type (might be due to invalid IL or missing references) //IL_2f3c: Unknown result type (might be due to invalid IL or missing references) //IL_2f46: Unknown result type (might be due to invalid IL or missing references) //IL_2f4b: Unknown result type (might be due to invalid IL or missing references) //IL_2f51: Unknown result type (might be due to invalid IL or missing references) //IL_2f5b: Unknown result type (might be due to invalid IL or missing references) //IL_2f60: Unknown result type (might be due to invalid IL or missing references) //IL_2f66: Unknown result type (might be due to invalid IL or missing references) //IL_2f6b: Unknown result type (might be due to invalid IL or missing references) //IL_2f71: Unknown result type (might be due to invalid IL or missing references) //IL_2f76: Unknown result type (might be due to invalid IL or missing references) //IL_2f7c: Unknown result type (might be due to invalid IL or missing references) //IL_2f86: Unknown result type (might be due to invalid IL or missing references) //IL_2f8b: Unknown result type (might be due to invalid IL or missing references) //IL_2f91: Unknown result type (might be due to invalid IL or missing references) //IL_2f9b: Unknown result type (might be due to invalid IL or missing references) //IL_2fa0: Unknown result type (might be due to invalid IL or missing references) //IL_2fa6: Unknown result type (might be due to invalid IL or missing references) //IL_2fab: Unknown result type (might be due to invalid IL or missing references) //IL_2fb1: Unknown result type (might be due to invalid IL or missing references) //IL_2fb6: Unknown result type (might be due to invalid IL or missing references) //IL_2fc2: Unknown result type (might be due to invalid IL or missing references) //IL_1b4d: Unknown result type (might be due to invalid IL or missing references) //IL_1b53: Unknown result type (might be due to invalid IL or missing references) //IL_1b58: Unknown result type (might be due to invalid IL or missing references) //IL_1b63: Unknown result type (might be due to invalid IL or missing references) //IL_1b69: Unknown result type (might be due to invalid IL or missing references) //IL_1b6e: Unknown result type (might be due to invalid IL or missing references) //IL_1b74: Unknown result type (might be due to invalid IL or missing references) //IL_1b7e: Unknown result type (might be due to invalid IL or missing references) //IL_1b83: Unknown result type (might be due to invalid IL or missing references) //IL_1b89: Unknown result type (might be due to invalid IL or missing references) //IL_1b93: Unknown result type (might be due to invalid IL or missing references) //IL_1b98: Unknown result type (might be due to invalid IL or missing references) //IL_1b9e: Unknown result type (might be due to invalid IL or missing references) //IL_1ba3: Unknown result type (might be due to invalid IL or missing references) //IL_1ba9: Unknown result type (might be due to invalid IL or missing references) //IL_1bae: Unknown result type (might be due to invalid IL or missing references) //IL_1bc6: Unknown result type (might be due to invalid IL or missing references) //IL_1bcb: Unknown result type (might be due to invalid IL or missing references) //IL_1be3: Unknown result type (might be due to invalid IL or missing references) //IL_1be9: Unknown result type (might be due to invalid IL or missing references) //IL_1bf3: Unknown result type (might be due to invalid IL or missing references) //IL_1bf8: Unknown result type (might be due to invalid IL or missing references) //IL_1bfe: Unknown result type (might be due to invalid IL or missing references) //IL_1c03: Unknown result type (might be due to invalid IL or missing references) //IL_1c0e: Unknown result type (might be due to invalid IL or missing references) //IL_1c14: Unknown result type (might be due to invalid IL or missing references) //IL_1c19: Unknown result type (might be due to invalid IL or missing references) //IL_1c24: Unknown result type (might be due to invalid IL or missing references) //IL_1c2a: Unknown result type (might be due to invalid IL or missing references) //IL_1c2f: Unknown result type (might be due to invalid IL or missing references) //IL_1c35: Unknown result type (might be due to invalid IL or missing references) //IL_1c3f: Unknown result type (might be due to invalid IL or missing references) //IL_1c44: Unknown result type (might be due to invalid IL or missing references) //IL_1c4a: Unknown result type (might be due to invalid IL or missing references) //IL_1c54: Unknown result type (might be due to invalid IL or missing references) //IL_1c59: Unknown result type (might be due to invalid IL or missing references) //IL_1c5f: Unknown result type (might be due to invalid IL or missing references) //IL_1c64: Unknown result type (might be due to invalid IL or missing references) //IL_1c6a: Unknown result type (might be due to invalid IL or missing references) //IL_1c6f: Unknown result type (might be due to invalid IL or missing references) //IL_1c87: Unknown result type (might be due to invalid IL or missing references) //IL_1c8c: Unknown result type (might be due to invalid IL or missing references) //IL_1ca4: Unknown result type (might be due to invalid IL or missing references) //IL_1caa: Unknown result type (might be due to invalid IL or missing references) //IL_1cb4: Unknown result type (might be due to invalid IL or missing references) //IL_1cb9: Unknown result type (might be due to invalid IL or missing references) //IL_1cbf: Unknown result type (might be due to invalid IL or missing references) //IL_1cc4: Unknown result type (might be due to invalid IL or missing references) //IL_1cd0: Unknown result type (might be due to invalid IL or missing references) //IL_0785: Unknown result type (might be due to invalid IL or missing references) //IL_078b: Unknown result type (might be due to invalid IL or missing references) //IL_0790: Unknown result type (might be due to invalid IL or missing references) //IL_0796: Unknown result type (might be due to invalid IL or missing references) //IL_07a0: Unknown result type (might be due to invalid IL or missing references) //IL_07a5: Unknown result type (might be due to invalid IL or missing references) //IL_07ab: Unknown result type (might be due to invalid IL or missing references) //IL_07b0: Unknown result type (might be due to invalid IL or missing references) //IL_07b6: Unknown result type (might be due to invalid IL or missing references) //IL_07c0: Unknown result type (might be due to invalid IL or missing references) //IL_07c5: Unknown result type (might be due to invalid IL or missing references) //IL_07cb: Unknown result type (might be due to invalid IL or missing references) //IL_07d0: Unknown result type (might be due to invalid IL or missing references) //IL_07db: Unknown result type (might be due to invalid IL or missing references) //IL_07e1: Unknown result type (might be due to invalid IL or missing references) //IL_07e6: Unknown result type (might be due to invalid IL or missing references) //IL_07ec: Unknown result type (might be due to invalid IL or missing references) //IL_07f6: Unknown result type (might be due to invalid IL or missing references) //IL_07fb: Unknown result type (might be due to invalid IL or missing references) //IL_0801: Unknown result type (might be due to invalid IL or missing references) //IL_0806: Unknown result type (might be due to invalid IL or missing references) //IL_080c: Unknown result type (might be due to invalid IL or missing references) //IL_0816: Unknown result type (might be due to invalid IL or missing references) //IL_081b: Unknown result type (might be due to invalid IL or missing references) //IL_0821: Unknown result type (might be due to invalid IL or missing references) //IL_0826: Unknown result type (might be due to invalid IL or missing references) //IL_0832: Unknown result type (might be due to invalid IL or missing references) //IL_2fdc: Unknown result type (might be due to invalid IL or missing references) //IL_2fe2: Unknown result type (might be due to invalid IL or missing references) //IL_2fe7: Unknown result type (might be due to invalid IL or missing references) //IL_2ff2: Unknown result type (might be due to invalid IL or missing references) //IL_2ff8: Unknown result type (might be due to invalid IL or missing references) //IL_2ffd: Unknown result type (might be due to invalid IL or missing references) //IL_3003: Unknown result type (might be due to invalid IL or missing references) //IL_300d: Unknown result type (might be due to invalid IL or missing references) //IL_3012: Unknown result type (might be due to invalid IL or missing references) //IL_3018: Unknown result type (might be due to invalid IL or missing references) //IL_3022: Unknown result type (might be due to invalid IL or missing references) //IL_3027: Unknown result type (might be due to invalid IL or missing references) //IL_302d: Unknown result type (might be due to invalid IL or missing references) //IL_3032: Unknown result type (might be due to invalid IL or missing references) //IL_3038: Unknown result type (might be due to invalid IL or missing references) //IL_303d: Unknown result type (might be due to invalid IL or missing references) //IL_3055: Unknown result type (might be due to invalid IL or missing references) //IL_305a: Unknown result type (might be due to invalid IL or missing references) //IL_3072: Unknown result type (might be due to invalid IL or missing references) //IL_3078: Unknown result type (might be due to invalid IL or missing references) //IL_3082: Unknown result type (might be due to invalid IL or missing references) //IL_3087: Unknown result type (might be due to invalid IL or missing references) //IL_308d: Unknown result type (might be due to invalid IL or missing references) //IL_3092: Unknown result type (might be due to invalid IL or missing references) //IL_309d: Unknown result type (might be due to invalid IL or missing references) //IL_30a3: Unknown result type (might be due to invalid IL or missing references) //IL_30a8: Unknown result type (might be due to invalid IL or missing references) //IL_30b3: Unknown result type (might be due to invalid IL or missing references) //IL_30b9: Unknown result type (might be due to invalid IL or missing references) //IL_30be: Unknown result type (might be due to invalid IL or missing references) //IL_30c4: Unknown result type (might be due to invalid IL or missing references) //IL_30ce: Unknown result type (might be due to invalid IL or missing references) //IL_30d3: Unknown result type (might be due to invalid IL or missing references) //IL_30d9: Unknown result type (might be due to invalid IL or missing references) //IL_30e3: Unknown result type (might be due to invalid IL or missing references) //IL_30e8: Unknown result type (might be due to invalid IL or missing references) //IL_30ee: Unknown result type (might be due to invalid IL or missing references) //IL_30f3: Unknown result type (might be due to invalid IL or missing references) //IL_30f9: Unknown result type (might be due to invalid IL or missing references) //IL_30fe: Unknown result type (might be due to invalid IL or missing references) //IL_3116: Unknown result type (might be due to invalid IL or missing references) //IL_311b: Unknown result type (might be due to invalid IL or missing references) //IL_3133: Unknown result type (might be due to invalid IL or missing references) //IL_3139: Unknown result type (might be due to invalid IL or missing references) //IL_3143: Unknown result type (might be due to invalid IL or missing references) //IL_3148: Unknown result type (might be due to invalid IL or missing references) //IL_314e: Unknown result type (might be due to invalid IL or missing references) //IL_3153: Unknown result type (might be due to invalid IL or missing references) //IL_315f: Unknown result type (might be due to invalid IL or missing references) //IL_1cea: Unknown result type (might be due to invalid IL or missing references) //IL_1cf0: Unknown result type (might be due to invalid IL or missing references) //IL_1cf5: Unknown result type (might be due to invalid IL or missing references) //IL_1cfb: Unknown result type (might be due to invalid IL or missing references) //IL_1d05: Unknown result type (might be due to invalid IL or missing references) //IL_1d0a: Unknown result type (might be due to invalid IL or missing references) //IL_1d10: Unknown result type (might be due to invalid IL or missing references) //IL_1d15: Unknown result type (might be due to invalid IL or missing references) //IL_1d1b: Unknown result type (might be due to invalid IL or missing references) //IL_1d25: Unknown result type (might be due to invalid IL or missing references) //IL_1d2a: Unknown result type (might be due to invalid IL or missing references) //IL_1d30: Unknown result type (might be due to invalid IL or missing references) //IL_1d35: Unknown result type (might be due to invalid IL or missing references) //IL_1d40: Unknown result type (might be due to invalid IL or missing references) //IL_1d46: Unknown result type (might be due to invalid IL or missing references) //IL_1d4b: Unknown result type (might be due to invalid IL or missing references) //IL_1d51: Unknown result type (might be due to invalid IL or missing references) //IL_1d5b: Unknown result type (might be due to invalid IL or missing references) //IL_1d60: Unknown result type (might be due to invalid IL or missing references) //IL_1d66: Unknown result type (might be due to invalid IL or missing references) //IL_1d6b: Unknown result type (might be due to invalid IL or missing references) //IL_1d71: Unknown result type (might be due to invalid IL or missing references) //IL_1d7b: Unknown result type (might be due to invalid IL or missing references) //IL_1d80: Unknown result type (might be due to invalid IL or missing references) //IL_1d86: Unknown result type (might be due to invalid IL or missing references) //IL_1d8b: Unknown result type (might be due to invalid IL or missing references) //IL_1d97: Unknown result type (might be due to invalid IL or missing references) //IL_0847: Unknown result type (might be due to invalid IL or missing references) //IL_0852: Unknown result type (might be due to invalid IL or missing references) //IL_0858: Unknown result type (might be due to invalid IL or missing references) //IL_085d: Unknown result type (might be due to invalid IL or missing references) //IL_0863: Unknown result type (might be due to invalid IL or missing references) //IL_0868: Unknown result type (might be due to invalid IL or missing references) //IL_086e: Unknown result type (might be due to invalid IL or missing references) //IL_0873: Unknown result type (might be due to invalid IL or missing references) //IL_0879: Unknown result type (might be due to invalid IL or missing references) //IL_0883: Unknown result type (might be due to invalid IL or missing references) //IL_0888: Unknown result type (might be due to invalid IL or missing references) //IL_088e: Unknown result type (might be due to invalid IL or missing references) //IL_0898: Unknown result type (might be due to invalid IL or missing references) //IL_089d: Unknown result type (might be due to invalid IL or missing references) //IL_08a3: Unknown result type (might be due to invalid IL or missing references) //IL_08a8: Unknown result type (might be due to invalid IL or missing references) //IL_08ae: Unknown result type (might be due to invalid IL or missing references) //IL_08b3: Unknown result type (might be due to invalid IL or missing references) //IL_08bf: Unknown result type (might be due to invalid IL or missing references) //IL_3179: Unknown result type (might be due to invalid IL or missing references) //IL_317f: Unknown result type (might be due to invalid IL or missing references) //IL_3184: Unknown result type (might be due to invalid IL or missing references) //IL_318f: Unknown result type (might be due to invalid IL or missing references) //IL_3195: Unknown result type (might be due to invalid IL or missing references) //IL_319a: Unknown result type (might be due to invalid IL or missing references) //IL_31a0: Unknown result type (might be due to invalid IL or missing references) //IL_31aa: Unknown result type (might be due to invalid IL or missing references) //IL_31af: Unknown result type (might be due to invalid IL or missing references) //IL_31b5: Unknown result type (might be due to invalid IL or missing references) //IL_31bf: Unknown result type (might be due to invalid IL or missing references) //IL_31c4: Unknown result type (might be due to invalid IL or missing references) //IL_31ca: Unknown result type (might be due to invalid IL or missing references) //IL_31cf: Unknown result type (might be due to invalid IL or missing references) //IL_31d5: Unknown result type (might be due to invalid IL or missing references) //IL_31da: Unknown result type (might be due to invalid IL or missing references) //IL_31f2: Unknown result type (might be due to invalid IL or missing references) //IL_31f7: Unknown result type (might be due to invalid IL or missing references) //IL_320f: Unknown result type (might be due to invalid IL or missing references) //IL_3215: Unknown result type (might be due to invalid IL or missing references) //IL_321f: Unknown result type (might be due to invalid IL or missing references) //IL_3224: Unknown result type (might be due to invalid IL or missing references) //IL_322a: Unknown result type (might be due to invalid IL or missing references) //IL_322f: Unknown result type (might be due to invalid IL or missing references) //IL_323a: Unknown result type (might be due to invalid IL or missing references) //IL_3240: Unknown result type (might be due to invalid IL or missing references) //IL_3245: Unknown result type (might be due to invalid IL or missing references) //IL_3250: Unknown result type (might be due to invalid IL or missing references) //IL_3256: Unknown result type (might be due to invalid IL or missing references) //IL_325b: Unknown result type (might be due to invalid IL or missing references) //IL_3261: Unknown result type (might be due to invalid IL or missing references) //IL_326b: Unknown result type (might be due to invalid IL or missing references) //IL_3270: Unknown result type (might be due to invalid IL or missing references) //IL_3276: Unknown result type (might be due to invalid IL or missing references) //IL_3280: Unknown result type (might be due to invalid IL or missing references) //IL_3285: Unknown result type (might be due to invalid IL or missing references) //IL_328b: Unknown result type (might be due to invalid IL or missing references) //IL_3290: Unknown result type (might be due to invalid IL or missing references) //IL_3296: Unknown result type (might be due to invalid IL or missing references) //IL_329b: Unknown result type (might be due to invalid IL or missing references) //IL_32b3: Unknown result type (might be due to invalid IL or missing references) //IL_32b8: Unknown result type (might be due to invalid IL or missing references) //IL_32d0: Unknown result type (might be due to invalid IL or missing references) //IL_32d6: Unknown result type (might be due to invalid IL or missing references) //IL_32e0: Unknown result type (might be due to invalid IL or missing references) //IL_32e5: Unknown result type (might be due to invalid IL or missing references) //IL_32eb: Unknown result type (might be due to invalid IL or missing references) //IL_32f0: Unknown result type (might be due to invalid IL or missing references) //IL_32fc: Unknown result type (might be due to invalid IL or missing references) //IL_1db1: Unknown result type (might be due to invalid IL or missing references) //IL_1db7: Unknown result type (might be due to invalid IL or missing references) //IL_1dbc: Unknown result type (might be due to invalid IL or missing references) //IL_1dc2: Unknown result type (might be due to invalid IL or missing references) //IL_1dcc: Unknown result type (might be due to invalid IL or missing references) //IL_1dd1: Unknown result type (might be due to invalid IL or missing references) //IL_1dd7: Unknown result type (might be due to invalid IL or missing references) //IL_1ddc: Unknown result type (might be due to invalid IL or missing references) //IL_1de2: Unknown result type (might be due to invalid IL or missing references) //IL_1dec: Unknown result type (might be due to invalid IL or missing references) //IL_1df1: Unknown result type (might be due to invalid IL or missing references) //IL_1df7: Unknown result type (might be due to invalid IL or missing references) //IL_1dfc: Unknown result type (might be due to invalid IL or missing references) //IL_1e07: Unknown result type (might be due to invalid IL or missing references) //IL_1e0d: Unknown result type (might be due to invalid IL or missing references) //IL_1e12: Unknown result type (might be due to invalid IL or missing references) //IL_1e18: Unknown result type (might be due to invalid IL or missing references) //IL_1e22: Unknown result type (might be due to invalid IL or missing references) //IL_1e27: Unknown result type (might be due to invalid IL or missing references) //IL_1e2d: Unknown result type (might be due to invalid IL or missing references) //IL_1e32: Unknown result type (might be due to invalid IL or missing references) //IL_1e38: Unknown result type (might be due to invalid IL or missing references) //IL_1e42: Unknown result type (might be due to invalid IL or missing references) //IL_1e47: Unknown result type (might be due to invalid IL or missing references) //IL_1e4d: Unknown result type (might be due to invalid IL or missing references) //IL_1e52: Unknown result type (might be due to invalid IL or missing references) //IL_1e5e: Unknown result type (might be due to invalid IL or missing references) //IL_08d4: Unknown result type (might be due to invalid IL or missing references) //IL_08da: Unknown result type (might be due to invalid IL or missing references) //IL_08e4: Unknown result type (might be due to invalid IL or missing references) //IL_08e9: Unknown result type (might be due to invalid IL or missing references) //IL_08f4: Unknown result type (might be due to invalid IL or missing references) //IL_08fa: Unknown result type (might be due to invalid IL or missing references) //IL_08ff: Unknown result type (might be due to invalid IL or missing references) //IL_0905: Unknown result type (might be due to invalid IL or missing references) //IL_090a: Unknown result type (might be due to invalid IL or missing references) //IL_0910: Unknown result type (might be due to invalid IL or missing references) //IL_0915: Unknown result type (might be due to invalid IL or missing references) //IL_091b: Unknown result type (might be due to invalid IL or missing references) //IL_0925: Unknown result type (might be due to invalid IL or missing references) //IL_092a: Unknown result type (might be due to invalid IL or missing references) //IL_0930: Unknown result type (might be due to invalid IL or missing references) //IL_093a: Unknown result type (might be due to invalid IL or missing references) //IL_093f: Unknown result type (might be due to invalid IL or missing references) //IL_0945: Unknown result type (might be due to invalid IL or missing references) //IL_094a: Unknown result type (might be due to invalid IL or missing references) //IL_0950: Unknown result type (might be due to invalid IL or missing references) //IL_095a: Unknown result type (might be due to invalid IL or missing references) //IL_095f: Unknown result type (might be due to invalid IL or missing references) //IL_0965: Unknown result type (might be due to invalid IL or missing references) //IL_096a: Unknown result type (might be due to invalid IL or missing references) //IL_0976: Unknown result type (might be due to invalid IL or missing references) //IL_3316: Unknown result type (might be due to invalid IL or missing references) //IL_331c: Unknown result type (might be due to invalid IL or missing references) //IL_3321: Unknown result type (might be due to invalid IL or missing references) //IL_3327: Unknown result type (might be due to invalid IL or missing references) //IL_3331: Unknown result type (might be due to invalid IL or missing references) //IL_3336: Unknown result type (might be due to invalid IL or missing references) //IL_333c: Unknown result type (might be due to invalid IL or missing references) //IL_3341: Unknown result type (might be due to invalid IL or missing references) //IL_3347: Unknown result type (might be due to invalid IL or missing references) //IL_3351: Unknown result type (might be due to invalid IL or missing references) //IL_3356: Unknown result type (might be due to invalid IL or missing references) //IL_335c: Unknown result type (might be due to invalid IL or missing references) //IL_3361: Unknown result type (might be due to invalid IL or missing references) //IL_336c: Unknown result type (might be due to invalid IL or missing references) //IL_3372: Unknown result type (might be due to invalid IL or missing references) //IL_3377: Unknown result type (might be due to invalid IL or missing references) //IL_337d: Unknown result type (might be due to invalid IL or missing references) //IL_3387: Unknown result type (might be due to invalid IL or missing references) //IL_338c: Unknown result type (might be due to invalid IL or missing references) //IL_3392: Unknown result type (might be due to invalid IL or missing references) //IL_3397: Unknown result type (might be due to invalid IL or missing references) //IL_339d: Unknown result type (might be due to invalid IL or missing references) //IL_33a7: Unknown result type (might be due to invalid IL or missing references) //IL_33ac: Unknown result type (might be due to invalid IL or missing references) //IL_33b2: Unknown result type (might be due to invalid IL or missing references) //IL_33b7: Unknown result type (might be due to invalid IL or missing references) //IL_33c3: Unknown result type (might be due to invalid IL or missing references) //IL_1e73: Unknown result type (might be due to invalid IL or missing references) //IL_1e7e: Unknown result type (might be due to invalid IL or missing references) //IL_1e84: Unknown result type (might be due to invalid IL or missing references) //IL_1e89: Unknown result type (might be due to invalid IL or missing references) //IL_1e8f: Unknown result type (might be due to invalid IL or missing references) //IL_1e94: Unknown result type (might be due to invalid IL or missing references) //IL_1e9a: Unknown result type (might be due to invalid IL or missing references) //IL_1e9f: Unknown result type (might be due to invalid IL or missing references) //IL_1ea5: Unknown result type (might be due to invalid IL or missing references) //IL_1eaf: Unknown result type (might be due to invalid IL or missing references) //IL_1eb4: Unknown result type (might be due to invalid IL or missing references) //IL_1eba: Unknown result type (might be due to invalid IL or missing references) //IL_1ec4: Unknown result type (might be due to invalid IL or missing references) //IL_1ec9: Unknown result type (might be due to invalid IL or missing references) //IL_1ecf: Unknown result type (might be due to invalid IL or missing references) //IL_1ed4: Unknown result type (might be due to invalid IL or missing references) //IL_1eda: Unknown result type (might be due to invalid IL or missing references) //IL_1edf: Unknown result type (might be due to invalid IL or missing references) //IL_1eeb: Unknown result type (might be due to invalid IL or missing references) //IL_098b: Unknown result type (might be due to invalid IL or missing references) //IL_0991: Unknown result type (might be due to invalid IL or missing references) //IL_099b: Unknown result type (might be due to invalid IL or missing references) //IL_09a0: Unknown result type (might be due to invalid IL or missing references) //IL_09ab: Unknown result type (might be due to invalid IL or missing references) //IL_09b1: Unknown result type (might be due to invalid IL or missing references) //IL_09b6: Unknown result type (might be due to invalid IL or missing references) //IL_09bc: Unknown result type (might be due to invalid IL or missing references) //IL_09c1: Unknown result type (might be due to invalid IL or missing references) //IL_09c7: Unknown result type (might be due to invalid IL or missing references) //IL_09cc: Unknown result type (might be due to invalid IL or missing references) //IL_09d2: Unknown result type (might be due to invalid IL or missing references) //IL_09dc: Unknown result type (might be due to invalid IL or missing references) //IL_09e1: Unknown result type (might be due to invalid IL or missing references) //IL_09e7: Unknown result type (might be due to invalid IL or missing references) //IL_09f1: Unknown result type (might be due to invalid IL or missing references) //IL_09f6: Unknown result type (might be due to invalid IL or missing references) //IL_09fc: Unknown result type (might be due to invalid IL or missing references) //IL_0a01: Unknown result type (might be due to invalid IL or missing references) //IL_0a07: Unknown result type (might be due to invalid IL or missing references) //IL_0a11: Unknown result type (might be due to invalid IL or missing references) //IL_0a16: Unknown result type (might be due to invalid IL or missing references) //IL_0a1c: Unknown result type (might be due to invalid IL or missing references) //IL_0a21: Unknown result type (might be due to invalid IL or missing references) //IL_0a2d: Unknown result type (might be due to invalid IL or missing references) //IL_33dd: Unknown result type (might be due to invalid IL or missing references) //IL_33e3: Unknown result type (might be due to invalid IL or missing references) //IL_33e8: Unknown result type (might be due to invalid IL or missing references) //IL_33ee: Unknown result type (might be due to invalid IL or missing references) //IL_33f8: Unknown result type (might be due to invalid IL or missing references) //IL_33fd: Unknown result type (might be due to invalid IL or missing references) //IL_3403: Unknown result type (might be due to invalid IL or missing references) //IL_3408: Unknown result type (might be due to invalid IL or missing references) //IL_340e: Unknown result type (might be due to invalid IL or missing references) //IL_3418: Unknown result type (might be due to invalid IL or missing references) //IL_341d: Unknown result type (might be due to invalid IL or missing references) //IL_3423: Unknown result type (might be due to invalid IL or missing references) //IL_3428: Unknown result type (might be due to invalid IL or missing references) //IL_3433: Unknown result type (might be due to invalid IL or missing references) //IL_3439: Unknown result type (might be due to invalid IL or missing references) //IL_343e: Unknown result type (might be due to invalid IL or missing references) //IL_3444: Unknown result type (might be due to invalid IL or missing references) //IL_344e: Unknown result type (might be due to invalid IL or missing references) //IL_3453: Unknown result type (might be due to invalid IL or missing references) //IL_3459: Unknown result type (might be due to invalid IL or missing references) //IL_345e: Unknown result type (might be due to invalid IL or missing references) //IL_3464: Unknown result type (might be due to invalid IL or missing references) //IL_346e: Unknown result type (might be due to invalid IL or missing references) //IL_3473: Unknown result type (might be due to invalid IL or missing references) //IL_3479: Unknown result type (might be due to invalid IL or missing references) //IL_347e: Unknown result type (might be due to invalid IL or missing references) //IL_348a: Unknown result type (might be due to invalid IL or missing references) //IL_1f00: Unknown result type (might be due to invalid IL or missing references) //IL_1f06: Unknown result type (might be due to invalid IL or missing references) //IL_1f10: Unknown result type (might be due to invalid IL or missing references) //IL_1f15: Unknown result type (might be due to invalid IL or missing references) //IL_1f20: Unknown result type (might be due to invalid IL or missing references) //IL_1f26: Unknown result type (might be due to invalid IL or missing references) //IL_1f2b: Unknown result type (might be due to invalid IL or missing references) //IL_1f31: Unknown result type (might be due to invalid IL or missing references) //IL_1f36: Unknown result type (might be due to invalid IL or missing references) //IL_1f3c: Unknown result type (might be due to invalid IL or missing references) //IL_1f41: Unknown result type (might be due to invalid IL or missing references) //IL_1f47: Unknown result type (might be due to invalid IL or missing references) //IL_1f51: Unknown result type (might be due to invalid IL or missing references) //IL_1f56: Unknown result type (might be due to invalid IL or missing references) //IL_1f5c: Unknown result type (might be due to invalid IL or missing references) //IL_1f66: Unknown result type (might be due to invalid IL or missing references) //IL_1f6b: Unknown result type (might be due to invalid IL or missing references) //IL_1f71: Unknown result type (might be due to invalid IL or missing references) //IL_1f76: Unknown result type (might be due to invalid IL or missing references) //IL_1f7c: Unknown result type (might be due to invalid IL or missing references) //IL_1f86: Unknown result type (might be due to invalid IL or missing references) //IL_1f8b: Unknown result type (might be due to invalid IL or missing references) //IL_1f91: Unknown result type (might be due to invalid IL or missing references) //IL_1f96: Unknown result type (might be due to invalid IL or missing references) //IL_1fa2: Unknown result type (might be due to invalid IL or missing references) //IL_0a42: Unknown result type (might be due to invalid IL or missing references) //IL_0a48: Unknown result type (might be due to invalid IL or missing references) //IL_0a52: Unknown result type (might be due to invalid IL or missing references) //IL_0a57: Unknown result type (might be due to invalid IL or missing references) //IL_0a62: Unknown result type (might be due to invalid IL or missing references) //IL_0a68: Unknown result type (might be due to invalid IL or missing references) //IL_0a6d: Unknown result type (might be due to invalid IL or missing references) //IL_0a73: Unknown result type (might be due to invalid IL or missing references) //IL_0a78: Unknown result type (might be due to invalid IL or missing references) //IL_0a7e: Unknown result type (might be due to invalid IL or missing references) //IL_0a83: Unknown result type (might be due to invalid IL or missing references) //IL_0a89: Unknown result type (might be due to invalid IL or missing references) //IL_0a93: Unknown result type (might be due to invalid IL or missing references) //IL_0a98: Unknown result type (might be due to invalid IL or missing references) //IL_0a9e: Unknown result type (might be due to invalid IL or missing references) //IL_0aa8: Unknown result type (might be due to invalid IL or missing references) //IL_0aad: Unknown result type (might be due to invalid IL or missing references) //IL_0ab3: Unknown result type (might be due to invalid IL or missing references) //IL_0ab8: Unknown result type (might be due to invalid IL or missing references) //IL_0abe: Unknown result type (might be due to invalid IL or missing references) //IL_0ac8: Unknown result type (might be due to invalid IL or missing references) //IL_0acd: Unknown result type (might be due to invalid IL or missing references) //IL_0ad3: Unknown result type (might be due to invalid IL or missing references) //IL_0ad8: Unknown result type (might be due to invalid IL or missing references) //IL_0ae4: Unknown result type (might be due to invalid IL or missing references) //IL_349f: Unknown result type (might be due to invalid IL or missing references) //IL_34aa: Unknown result type (might be due to invalid IL or missing references) //IL_34b0: Unknown result type (might be due to invalid IL or missing references) //IL_34b5: Unknown result type (might be due to invalid IL or missing references) //IL_34bb: Unknown result type (might be due to invalid IL or missing references) //IL_34c0: Unknown result type (might be due to invalid IL or missing references) //IL_34c6: Unknown result type (might be due to invalid IL or missing references) //IL_34cb: Unknown result type (might be due to invalid IL or missing references) //IL_34d1: Unknown result type (might be due to invalid IL or missing references) //IL_34db: Unknown result type (might be due to invalid IL or missing references) //IL_34e0: Unknown result type (might be due to invalid IL or missing references) //IL_34e6: Unknown result type (might be due to invalid IL or missing references) //IL_34f0: Unknown result type (might be due to invalid IL or missing references) //IL_34f5: Unknown result type (might be due to invalid IL or missing references) //IL_34fb: Unknown result type (might be due to invalid IL or missing references) //IL_3500: Unknown result type (might be due to invalid IL or missing references) //IL_3506: Unknown result type (might be due to invalid IL or missing references) //IL_350b: Unknown result type (might be due to invalid IL or missing references) //IL_3517: Unknown result type (might be due to invalid IL or missing references) //IL_1fb7: Unknown result type (might be due to invalid IL or missing references) //IL_1fbd: Unknown result type (might be due to invalid IL or missing references) //IL_1fc7: Unknown result type (might be due to invalid IL or missing references) //IL_1fcc: Unknown result type (might be due to invalid IL or missing references) //IL_1fd7: Unknown result type (might be due to invalid IL or missing references) //IL_1fdd: Unknown result type (might be due to invalid IL or missing references) //IL_1fe2: Unknown result type (might be due to invalid IL or missing references) //IL_1fe8: Unknown result type (might be due to invalid IL or missing references) //IL_1fed: Unknown result type (might be due to invalid IL or missing references) //IL_1ff3: Unknown result type (might be due to invalid IL or missing references) //IL_1ff8: Unknown result type (might be due to invalid IL or missing references) //IL_1ffe: Unknown result type (might be due to invalid IL or missing references) //IL_2008: Unknown result type (might be due to invalid IL or missing references) //IL_200d: Unknown result type (might be due to invalid IL or missing references) //IL_2013: Unknown result type (might be due to invalid IL or missing references) //IL_201d: Unknown result type (might be due to invalid IL or missing references) //IL_2022: Unknown result type (might be due to invalid IL or missing references) //IL_2028: Unknown result type (might be due to invalid IL or missing references) //IL_202d: Unknown result type (might be due to invalid IL or missing references) //IL_2033: Unknown result type (might be due to invalid IL or missing references) //IL_203d: Unknown result type (might be due to invalid IL or missing references) //IL_2042: Unknown result type (might be due to invalid IL or missing references) //IL_2048: Unknown result type (might be due to invalid IL or missing references) //IL_204d: Unknown result type (might be due to invalid IL or missing references) //IL_2059: Unknown result type (might be due to invalid IL or missing references) //IL_0afe: Unknown result type (might be due to invalid IL or missing references) //IL_0b04: Unknown result type (might be due to invalid IL or missing references) //IL_0b09: Unknown result type (might be due to invalid IL or missing references) //IL_0b0f: Unknown result type (might be due to invalid IL or missing references) //IL_0b14: Unknown result type (might be due to invalid IL or missing references) //IL_0b1a: Unknown result type (might be due to invalid IL or missing references) //IL_0b1f: Unknown result type (might be due to invalid IL or missing references) //IL_0b2a: Unknown result type (might be due to invalid IL or missing references) //IL_0b30: Unknown result type (might be due to invalid IL or missing references) //IL_0b35: Unknown result type (might be due to invalid IL or missing references) //IL_0b3b: Unknown result type (might be due to invalid IL or missing references) //IL_0b40: Unknown result type (might be due to invalid IL or missing references) //IL_0b46: Unknown result type (might be due to invalid IL or missing references) //IL_0b50: Unknown result type (might be due to invalid IL or missing references) //IL_0b55: Unknown result type (might be due to invalid IL or missing references) //IL_0b5b: Unknown result type (might be due to invalid IL or missing references) //IL_0b60: Unknown result type (might be due to invalid IL or missing references) //IL_0b6c: Unknown result type (might be due to invalid IL or missing references) //IL_352c: Unknown result type (might be due to invalid IL or missing references) //IL_3532: Unknown result type (might be due to invalid IL or missing references) //IL_353c: Unknown result type (might be due to invalid IL or missing references) //IL_3541: Unknown result type (might be due to invalid IL or missing references) //IL_354c: Unknown result type (might be due to invalid IL or missing references) //IL_3552: Unknown result type (might be due to invalid IL or missing references) //IL_3557: Unknown result type (might be due to invalid IL or missing references) //IL_355d: Unknown result type (might be due to invalid IL or missing references) //IL_3562: Unknown result type (might be due to invalid IL or missing references) //IL_3568: Unknown result type (might be due to invalid IL or missing references) //IL_356d: Unknown result type (might be due to invalid IL or missing references) //IL_3573: Unknown result type (might be due to invalid IL or missing references) //IL_357d: Unknown result type (might be due to invalid IL or missing references) //IL_3582: Unknown result type (might be due to invalid IL or missing references) //IL_3588: Unknown result type (might be due to invalid IL or missing references) //IL_3592: Unknown result type (might be due to invalid IL or missing references) //IL_3597: Unknown result type (might be due to invalid IL or missing references) //IL_359d: Unknown result type (might be due to invalid IL or missing references) //IL_35a2: Unknown result type (might be due to invalid IL or missing references) //IL_35a8: Unknown result type (might be due to invalid IL or missing references) //IL_35b2: Unknown result type (might be due to invalid IL or missing references) //IL_35b7: Unknown result type (might be due to invalid IL or missing references) //IL_35bd: Unknown result type (might be due to invalid IL or missing references) //IL_35c2: Unknown result type (might be due to invalid IL or missing references) //IL_35ce: Unknown result type (might be due to invalid IL or missing references) //IL_206e: Unknown result type (might be due to invalid IL or missing references) //IL_2074: Unknown result type (might be due to invalid IL or missing references) //IL_207e: Unknown result type (might be due to invalid IL or missing references) //IL_2083: Unknown result type (might be due to invalid IL or missing references) //IL_208e: Unknown result type (might be due to invalid IL or missing references) //IL_2094: Unknown result type (might be due to invalid IL or missing references) //IL_2099: Unknown result type (might be due to invalid IL or missing references) //IL_209f: Unknown result type (might be due to invalid IL or missing references) //IL_20a4: Unknown result type (might be due to invalid IL or missing references) //IL_20aa: Unknown result type (might be due to invalid IL or missing references) //IL_20af: Unknown result type (might be due to invalid IL or missing references) //IL_20b5: Unknown result type (might be due to invalid IL or missing references) //IL_20bf: Unknown result type (might be due to invalid IL or missing references) //IL_20c4: Unknown result type (might be due to invalid IL or missing references) //IL_20ca: Unknown result type (might be due to invalid IL or missing references) //IL_20d4: Unknown result type (might be due to invalid IL or missing references) //IL_20d9: Unknown result type (might be due to invalid IL or missing references) //IL_20df: Unknown result type (might be due to invalid IL or missing references) //IL_20e4: Unknown result type (might be due to invalid IL or missing references) //IL_20ea: Unknown result type (might be due to invalid IL or missing references) //IL_20f4: Unknown result type (might be due to invalid IL or missing references) //IL_20f9: Unknown result type (might be due to invalid IL or missing references) //IL_20ff: Unknown result type (might be due to invalid IL or missing references) //IL_2104: Unknown result type (might be due to invalid IL or missing references) //IL_2110: Unknown result type (might be due to invalid IL or missing references) //IL_0b86: Unknown result type (might be due to invalid IL or missing references) //IL_0b8c: Unknown result type (might be due to invalid IL or missing references) //IL_0b91: Unknown result type (might be due to invalid IL or missing references) //IL_0b97: Unknown result type (might be due to invalid IL or missing references) //IL_0b9c: Unknown result type (might be due to invalid IL or missing references) //IL_0ba2: Unknown result type (might be due to invalid IL or missing references) //IL_0ba7: Unknown result type (might be due to invalid IL or missing references) //IL_0bad: Unknown result type (might be due to invalid IL or missing references) //IL_0bb7: Unknown result type (might be due to invalid IL or missing references) //IL_0bbc: Unknown result type (might be due to invalid IL or missing references) //IL_0bc7: Unknown result type (might be due to invalid IL or missing references) //IL_0bcd: Unknown result type (might be due to invalid IL or missing references) //IL_0bd2: Unknown result type (might be due to invalid IL or missing references) //IL_0bd8: Unknown result type (might be due to invalid IL or missing references) //IL_0bdd: Unknown result type (might be due to invalid IL or missing references) //IL_0be3: Unknown result type (might be due to invalid IL or missing references) //IL_0bed: Unknown result type (might be due to invalid IL or missing references) //IL_0bf2: Unknown result type (might be due to invalid IL or missing references) //IL_0bf8: Unknown result type (might be due to invalid IL or missing references) //IL_0bfd: Unknown result type (might be due to invalid IL or missing references) //IL_0c03: Unknown result type (might be due to invalid IL or missing references) //IL_0c0d: Unknown result type (might be due to invalid IL or missing references) //IL_0c12: Unknown result type (might be due to invalid IL or missing references) //IL_0c1e: Unknown result type (might be due to invalid IL or missing references) //IL_35e3: Unknown result type (might be due to invalid IL or missing references) //IL_35e9: Unknown result type (might be due to invalid IL or missing references) //IL_35f3: Unknown result type (might be due to invalid IL or missing references) //IL_35f8: Unknown result type (might be due to invalid IL or missing references) //IL_3603: Unknown result type (might be due to invalid IL or missing references) //IL_3609: Unknown result type (might be due to invalid IL or missing references) //IL_360e: Unknown result type (might be due to invalid IL or missing references) //IL_3614: Unknown result type (might be due to invalid IL or missing references) //IL_3619: Unknown result type (might be due to invalid IL or missing references) //IL_361f: Unknown result type (might be due to invalid IL or missing references) //IL_3624: Unknown result type (might be due to invalid IL or missing references) //IL_362a: Unknown result type (might be due to invalid IL or missing references) //IL_3634: Unknown result type (might be due to invalid IL or missing references) //IL_3639: Unknown result type (might be due to invalid IL or missing references) //IL_363f: Unknown result type (might be due to invalid IL or missing references) //IL_3649: Unknown result type (might be due to invalid IL or missing references) //IL_364e: Unknown result type (might be due to invalid IL or missing references) //IL_3654: Unknown result type (might be due to invalid IL or missing references) //IL_3659: Unknown result type (might be due to invalid IL or missing references) //IL_365f: Unknown result type (might be due to invalid IL or missing references) //IL_3669: Unknown result type (might be due to invalid IL or missing references) //IL_366e: Unknown result type (might be due to invalid IL or missing references) //IL_3674: Unknown result type (might be due to invalid IL or missing references) //IL_3679: Unknown result type (might be due to invalid IL or missing references) //IL_3685: Unknown result type (might be due to invalid IL or missing references) //IL_212a: Unknown result type (might be due to invalid IL or missing references) //IL_2130: Unknown result type (might be due to invalid IL or missing references) //IL_2135: Unknown result type (might be due to invalid IL or missing references) //IL_213b: Unknown result type (might be due to invalid IL or missing references) //IL_2140: Unknown result type (might be due to invalid IL or missing references) //IL_2146: Unknown result type (might be due to invalid IL or missing references) //IL_214b: Unknown result type (might be due to invalid IL or missing references) //IL_2156: Unknown result type (might be due to invalid IL or missing references) //IL_215c: Unknown result type (might be due to invalid IL or missing references) //IL_2161: Unknown result type (might be due to invalid IL or missing references) //IL_2167: Unknown result type (might be due to invalid IL or missing references) //IL_216c: Unknown result type (might be due to invalid IL or missing references) //IL_2172: Unknown result type (might be due to invalid IL or missing references) //IL_217c: Unknown result type (might be due to invalid IL or missing references) //IL_2181: Unknown result type (might be due to invalid IL or missing references) //IL_2187: Unknown result type (might be due to invalid IL or missing references) //IL_218c: Unknown result type (might be due to invalid IL or missing references) //IL_2198: Unknown result type (might be due to invalid IL or missing references) //IL_0c38: Unknown result type (might be due to invalid IL or missing references) //IL_0c3e: Unknown result type (might be due to invalid IL or missing references) //IL_0c43: Unknown result type (might be due to invalid IL or missing references) //IL_0c49: Unknown result type (might be due to invalid IL or missing references) //IL_0c4e: Unknown result type (might be due to invalid IL or missing references) //IL_0c54: Unknown result type (might be due to invalid IL or missing references) //IL_0c59: Unknown result type (might be due to invalid IL or missing references) //IL_0c5f: Unknown result type (might be due to invalid IL or missing references) //IL_0c69: Unknown result type (might be due to invalid IL or missing references) //IL_0c6e: Unknown result type (might be due to invalid IL or missing references) //IL_0c79: Unknown result type (might be due to invalid IL or missing references) //IL_0c7f: Unknown result type (might be due to invalid IL or missing references) //IL_0c84: Unknown result type (might be due to invalid IL or missing references) //IL_0c8a: Unknown result type (might be due to invalid IL or missing references) //IL_0c8f: Unknown result type (might be due to invalid IL or missing references) //IL_0c95: Unknown result type (might be due to invalid IL or missing references) //IL_0c9f: Unknown result type (might be due to invalid IL or missing references) //IL_0ca4: Unknown result type (might be due to invalid IL or missing references) //IL_0caa: Unknown result type (might be due to invalid IL or missing references) //IL_0caf: Unknown result type (might be due to invalid IL or missing references) //IL_0cb5: Unknown result type (might be due to invalid IL or missing references) //IL_0cbf: Unknown result type (might be due to invalid IL or missing references) //IL_0cc4: Unknown result type (might be due to invalid IL or missing references) //IL_0cd0: Unknown result type (might be due to invalid IL or missing references) //IL_369a: Unknown result type (might be due to invalid IL or missing references) //IL_36a0: Unknown result type (might be due to invalid IL or missing references) //IL_36aa: Unknown result type (might be due to invalid IL or missing references) //IL_36af: Unknown result type (might be due to invalid IL or missing references) //IL_36ba: Unknown result type (might be due to invalid IL or missing references) //IL_36c0: Unknown result type (might be due to invalid IL or missing references) //IL_36c5: Unknown result type (might be due to invalid IL or missing references) //IL_36cb: Unknown result type (might be due to invalid IL or missing references) //IL_36d0: Unknown result type (might be due to invalid IL or missing references) //IL_36d6: Unknown result type (might be due to invalid IL or missing references) //IL_36db: Unknown result type (might be due to invalid IL or missing references) //IL_36e1: Unknown result type (might be due to invalid IL or missing references) //IL_36eb: Unknown result type (might be due to invalid IL or missing references) //IL_36f0: Unknown result type (might be due to invalid IL or missing references) //IL_36f6: Unknown result type (might be due to invalid IL or missing references) //IL_3700: Unknown result type (might be due to invalid IL or missing references) //IL_3705: Unknown result type (might be due to invalid IL or missing references) //IL_370b: Unknown result type (might be due to invalid IL or missing references) //IL_3710: Unknown result type (might be due to invalid IL or missing references) //IL_3716: Unknown result type (might be due to invalid IL or missing references) //IL_3720: Unknown result type (might be due to invalid IL or missing references) //IL_3725: Unknown result type (might be due to invalid IL or missing references) //IL_372b: Unknown result type (might be due to invalid IL or missing references) //IL_3730: Unknown result type (might be due to invalid IL or missing references) //IL_373c: Unknown result type (might be due to invalid IL or missing references) //IL_21b2: Unknown result type (might be due to invalid IL or missing references) //IL_21b8: Unknown result type (might be due to invalid IL or missing references) //IL_21bd: Unknown result type (might be due to invalid IL or missing references) //IL_21c3: Unknown result type (might be due to invalid IL or missing references) //IL_21c8: Unknown result type (might be due to invalid IL or missing references) //IL_21ce: Unknown result type (might be due to invalid IL or missing references) //IL_21d3: Unknown result type (might be due to invalid IL or missing references) //IL_21d9: Unknown result type (might be due to invalid IL or missing references) //IL_21e3: Unknown result type (might be due to invalid IL or missing references) //IL_21e8: Unknown result type (might be due to invalid IL or missing references) //IL_21f3: Unknown result type (might be due to invalid IL or missing references) //IL_21f9: Unknown result type (might be due to invalid IL or missing references) //IL_21fe: Unknown result type (might be due to invalid IL or missing references) //IL_2204: Unknown result type (might be due to invalid IL or missing references) //IL_2209: Unknown result type (might be due to invalid IL or missing references) //IL_220f: Unknown result type (might be due to invalid IL or missing references) //IL_2219: Unknown result type (might be due to invalid IL or missing references) //IL_221e: Unknown result type (might be due to invalid IL or missing references) //IL_2224: Unknown result type (might be due to invalid IL or missing references) //IL_2229: Unknown result type (might be due to invalid IL or missing references) //IL_222f: Unknown result type (might be due to invalid IL or missing references) //IL_2239: Unknown result type (might be due to invalid IL or missing references) //IL_223e: Unknown result type (might be due to invalid IL or missing references) //IL_224a: Unknown result type (might be due to invalid IL or missing references) //IL_0cea: Unknown result type (might be due to invalid IL or missing references) //IL_0cf0: Unknown result type (might be due to invalid IL or missing references) //IL_0cf5: Unknown result type (might be due to invalid IL or missing references) //IL_0cfb: Unknown result type (might be due to invalid IL or missing references) //IL_0d00: Unknown result type (might be due to invalid IL or missing references) //IL_0d06: Unknown result type (might be due to invalid IL or missing references) //IL_0d0b: Unknown result type (might be due to invalid IL or missing references) //IL_0d11: Unknown result type (might be due to invalid IL or missing references) //IL_0d1b: Unknown result type (might be due to invalid IL or missing references) //IL_0d20: Unknown result type (might be due to invalid IL or missing references) //IL_0d2b: Unknown result type (might be due to invalid IL or missing references) //IL_0d31: Unknown result type (might be due to invalid IL or missing references) //IL_0d36: Unknown result type (might be due to invalid IL or missing references) //IL_0d3c: Unknown result type (might be due to invalid IL or missing references) //IL_0d41: Unknown result type (might be due to invalid IL or missing references) //IL_0d47: Unknown result type (might be due to invalid IL or missing references) //IL_0d51: Unknown result type (might be due to invalid IL or missing references) //IL_0d56: Unknown result type (might be due to invalid IL or missing references) //IL_0d5c: Unknown result type (might be due to invalid IL or missing references) //IL_0d61: Unknown result type (might be due to invalid IL or missing references) //IL_0d67: Unknown result type (might be due to invalid IL or missing references) //IL_0d71: Unknown result type (might be due to invalid IL or missing references) //IL_0d76: Unknown result type (might be due to invalid IL or missing references) //IL_0d82: Unknown result type (might be due to invalid IL or missing references) //IL_3756: Unknown result type (might be due to invalid IL or missing references) //IL_375c: Unknown result type (might be due to invalid IL or missing references) //IL_3761: Unknown result type (might be due to invalid IL or missing references) //IL_3767: Unknown result type (might be due to invalid IL or missing references) //IL_376c: Unknown result type (might be due to invalid IL or missing references) //IL_3772: Unknown result type (might be due to invalid IL or missing references) //IL_3777: Unknown result type (might be due to invalid IL or missing references) //IL_3782: Unknown result type (might be due to invalid IL or missing references) //IL_3788: Unknown result type (might be due to invalid IL or missing references) //IL_378d: Unknown result type (might be due to invalid IL or missing references) //IL_3793: Unknown result type (might be due to invalid IL or missing references) //IL_3798: Unknown result type (might be due to invalid IL or missing references) //IL_379e: Unknown result type (might be due to invalid IL or missing references) //IL_37a8: Unknown result type (might be due to invalid IL or missing references) //IL_37ad: Unknown result type (might be due to invalid IL or missing references) //IL_37b3: Unknown result type (might be due to invalid IL or missing references) //IL_37b8: Unknown result type (might be due to invalid IL or missing references) //IL_37c4: Unknown result type (might be due to invalid IL or missing references) //IL_2264: Unknown result type (might be due to invalid IL or missing references) //IL_226a: Unknown result type (might be due to invalid IL or missing references) //IL_226f: Unknown result type (might be due to invalid IL or missing references) //IL_2275: Unknown result type (might be due to invalid IL or missing references) //IL_227a: Unknown result type (might be due to invalid IL or missing references) //IL_2280: Unknown result type (might be due to invalid IL or missing references) //IL_2285: Unknown result type (might be due to invalid IL or missing references) //IL_228b: Unknown result type (might be due to invalid IL or missing references) //IL_2295: Unknown result type (might be due to invalid IL or missing references) //IL_229a: Unknown result type (might be due to invalid IL or missing references) //IL_22a5: Unknown result type (might be due to invalid IL or missing references) //IL_22ab: Unknown result type (might be due to invalid IL or missing references) //IL_22b0: Unknown result type (might be due to invalid IL or missing references) //IL_22b6: Unknown result type (might be due to invalid IL or missing references) //IL_22bb: Unknown result type (might be due to invalid IL or missing references) //IL_22c1: Unknown result type (might be due to invalid IL or missing references) //IL_22cb: Unknown result type (might be due to invalid IL or missing references) //IL_22d0: Unknown result type (might be due to invalid IL or missing references) //IL_22d6: Unknown result type (might be due to invalid IL or missing references) //IL_22db: Unknown result type (might be due to invalid IL or missing references) //IL_22e1: Unknown result type (might be due to invalid IL or missing references) //IL_22eb: Unknown result type (might be due to invalid IL or missing references) //IL_22f0: Unknown result type (might be due to invalid IL or missing references) //IL_22fc: Unknown result type (might be due to invalid IL or missing references) //IL_0d9c: Unknown result type (might be due to invalid IL or missing references) //IL_0da2: Unknown result type (might be due to invalid IL or missing references) //IL_0da7: Unknown result type (might be due to invalid IL or missing references) //IL_0dad: Unknown result type (might be due to invalid IL or missing references) //IL_0db2: Unknown result type (might be due to invalid IL or missing references) //IL_0db8: Unknown result type (might be due to invalid IL or missing references) //IL_0dbd: Unknown result type (might be due to invalid IL or missing references) //IL_0dc3: Unknown result type (might be due to invalid IL or missing references) //IL_0dcd: Unknown result type (might be due to invalid IL or missing references) //IL_0dd2: Unknown result type (might be due to invalid IL or missing references) //IL_0ddd: Unknown result type (might be due to invalid IL or missing references) //IL_0de3: Unknown result type (might be due to invalid IL or missing references) //IL_0de8: Unknown result type (might be due to invalid IL or missing references) //IL_0dee: Unknown result type (might be due to invalid IL or missing references) //IL_0df3: Unknown result type (might be due to invalid IL or missing references) //IL_0df9: Unknown result type (might be due to invalid IL or missing references) //IL_0e03: Unknown result type (might be due to invalid IL or missing references) //IL_0e08: Unknown result type (might be due to invalid IL or missing references) //IL_0e0e: Unknown result type (might be due to invalid IL or missing references) //IL_0e13: Unknown result type (might be due to invalid IL or missing references) //IL_0e19: Unknown result type (might be due to invalid IL or missing references) //IL_0e23: Unknown result type (might be due to invalid IL or missing references) //IL_0e28: Unknown result type (might be due to invalid IL or missing references) //IL_0e34: Unknown result type (might be due to invalid IL or missing references) //IL_37de: Unknown result type (might be due to invalid IL or missing references) //IL_37e4: Unknown result type (might be due to invalid IL or missing references) //IL_37e9: Unknown result type (might be due to invalid IL or missing references) //IL_37ef: Unknown result type (might be due to invalid IL or missing references) //IL_37f4: Unknown result type (might be due to invalid IL or missing references) //IL_37fa: Unknown result type (might be due to invalid IL or missing references) //IL_37ff: Unknown result type (might be due to invalid IL or missing references) //IL_3805: Unknown result type (might be due to invalid IL or missing references) //IL_380f: Unknown result type (might be due to invalid IL or missing references) //IL_3814: Unknown result type (might be due to invalid IL or missing references) //IL_381f: Unknown result type (might be due to invalid IL or missing references) //IL_3825: Unknown result type (might be due to invalid IL or missing references) //IL_382a: Unknown result type (might be due to invalid IL or missing references) //IL_3830: Unknown result type (might be due to invalid IL or missing references) //IL_3835: Unknown result type (might be due to invalid IL or missing references) //IL_383b: Unknown result type (might be due to invalid IL or missing references) //IL_3845: Unknown result type (might be due to invalid IL or missing references) //IL_384a: Unknown result type (might be due to invalid IL or missing references) //IL_3850: Unknown result type (might be due to invalid IL or missing references) //IL_3855: Unknown result type (might be due to invalid IL or missing references) //IL_385b: Unknown result type (might be due to invalid IL or missing references) //IL_3865: Unknown result type (might be due to invalid IL or missing references) //IL_386a: Unknown result type (might be due to invalid IL or missing references) //IL_3876: Unknown result type (might be due to invalid IL or missing references) //IL_2316: Unknown result type (might be due to invalid IL or missing references) //IL_231c: Unknown result type (might be due to invalid IL or missing references) //IL_2321: Unknown result type (might be due to invalid IL or missing references) //IL_2327: Unknown result type (might be due to invalid IL or missing references) //IL_232c: Unknown result type (might be due to invalid IL or missing references) //IL_2332: Unknown result type (might be due to invalid IL or missing references) //IL_2337: Unknown result type (might be due to invalid IL or missing references) //IL_233d: Unknown result type (might be due to invalid IL or missing references) //IL_2347: Unknown result type (might be due to invalid IL or missing references) //IL_234c: Unknown result type (might be due to invalid IL or missing references) //IL_2357: Unknown result type (might be due to invalid IL or missing references) //IL_235d: Unknown result type (might be due to invalid IL or missing references) //IL_2362: Unknown result type (might be due to invalid IL or missing references) //IL_2368: Unknown result type (might be due to invalid IL or missing references) //IL_236d: Unknown result type (might be due to invalid IL or missing references) //IL_2373: Unknown result type (might be due to invalid IL or missing references) //IL_237d: Unknown result type (might be due to invalid IL or missing references) //IL_2382: Unknown result type (might be due to invalid IL or missing references) //IL_2388: Unknown result type (might be due to invalid IL or missing references) //IL_238d: Unknown result type (might be due to invalid IL or missing references) //IL_2393: Unknown result type (might be due to invalid IL or missing references) //IL_239d: Unknown result type (might be due to invalid IL or missing references) //IL_23a2: Unknown result type (might be due to invalid IL or missing references) //IL_23ae: Unknown result type (might be due to invalid IL or missing references) //IL_0e4e: Unknown result type (might be due to invalid IL or missing references) //IL_0e54: Unknown result type (might be due to invalid IL or missing references) //IL_0e59: Unknown result type (might be due to invalid IL or missing references) //IL_0e5f: Unknown result type (might be due to invalid IL or missing references) //IL_0e64: Unknown result type (might be due to invalid IL or missing references) //IL_0e6a: Unknown result type (might be due to invalid IL or missing references) //IL_0e6f: Unknown result type (might be due to invalid IL or missing references) //IL_0e75: Unknown result type (might be due to invalid IL or missing references) //IL_0e7f: Unknown result type (might be due to invalid IL or missing references) //IL_0e84: Unknown result type (might be due to invalid IL or missing references) //IL_0e8f: Unknown result type (might be due to invalid IL or missing references) //IL_0e95: Unknown result type (might be due to invalid IL or missing references) //IL_0e9a: Unknown result type (might be due to invalid IL or missing references) //IL_0ea0: Unknown result type (might be due to invalid IL or missing references) //IL_0ea5: Unknown result type (might be due to invalid IL or missing references) //IL_0eab: Unknown result type (might be due to invalid IL or missing references) //IL_0eb5: Unknown result type (might be due to invalid IL or missing references) //IL_0eba: Unknown result type (might be due to invalid IL or missing references) //IL_0ec0: Unknown result type (might be due to invalid IL or missing references) //IL_0ec5: Unknown result type (might be due to invalid IL or missing references) //IL_0ecb: Unknown result type (might be due to invalid IL or missing references) //IL_0ed5: Unknown result type (might be due to invalid IL or missing references) //IL_0eda: Unknown result type (might be due to invalid IL or missing references) //IL_0ee6: Unknown result type (might be due to invalid IL or missing references) //IL_3890: Unknown result type (might be due to invalid IL or missing references) //IL_3896: Unknown result type (might be due to invalid IL or missing references) //IL_389b: Unknown result type (might be due to invalid IL or missing references) //IL_38a1: Unknown result type (might be due to invalid IL or missing references) //IL_38a6: Unknown result type (might be due to invalid IL or missing references) //IL_38ac: Unknown result type (might be due to invalid IL or missing references) //IL_38b1: Unknown result type (might be due to invalid IL or missing references) //IL_38b7: Unknown result type (might be due to invalid IL or missing references) //IL_38c1: Unknown result type (might be due to invalid IL or missing references) //IL_38c6: Unknown result type (might be due to invalid IL or missing references) //IL_38d1: Unknown result type (might be due to invalid IL or missing references) //IL_38d7: Unknown result type (might be due to invalid IL or missing references) //IL_38dc: Unknown result type (might be due to invalid IL or missing references) //IL_38e2: Unknown result type (might be due to invalid IL or missing references) //IL_38e7: Unknown result type (might be due to invalid IL or missing references) //IL_38ed: Unknown result type (might be due to invalid IL or missing references) //IL_38f7: Unknown result type (might be due to invalid IL or missing references) //IL_38fc: Unknown result type (might be due to invalid IL or missing references) //IL_3902: Unknown result type (might be due to invalid IL or missing references) //IL_3907: Unknown result type (might be due to invalid IL or missing references) //IL_390d: Unknown result type (might be due to invalid IL or missing references) //IL_3917: Unknown result type (might be due to invalid IL or missing references) //IL_391c: Unknown result type (might be due to invalid IL or missing references) //IL_3928: Unknown result type (might be due to invalid IL or missing references) //IL_23c8: Unknown result type (might be due to invalid IL or missing references) //IL_23ce: Unknown result type (might be due to invalid IL or missing references) //IL_23d3: Unknown result type (might be due to invalid IL or missing references) //IL_23d9: Unknown result type (might be due to invalid IL or missing references) //IL_23de: Unknown result type (might be due to invalid IL or missing references) //IL_23e4: Unknown result type (might be due to invalid IL or missing references) //IL_23e9: Unknown result type (might be due to invalid IL or missing references) //IL_23ef: Unknown result type (might be due to invalid IL or missing references) //IL_23f9: Unknown result type (might be due to invalid IL or missing references) //IL_23fe: Unknown result type (might be due to invalid IL or missing references) //IL_2409: Unknown result type (might be due to invalid IL or missing references) //IL_240f: Unknown result type (might be due to invalid IL or missing references) //IL_2414: Unknown result type (might be due to invalid IL or missing references) //IL_241a: Unknown result type (might be due to invalid IL or missing references) //IL_241f: Unknown result type (might be due to invalid IL or missing references) //IL_2425: Unknown result type (might be due to invalid IL or missing references) //IL_242f: Unknown result type (might be due to invalid IL or missing references) //IL_2434: Unknown result type (might be due to invalid IL or missing references) //IL_243a: Unknown result type (might be due to invalid IL or missing references) //IL_243f: Unknown result type (might be due to invalid IL or missing references) //IL_2445: Unknown result type (might be due to invalid IL or missing references) //IL_244f: Unknown result type (might be due to invalid IL or missing references) //IL_2454: Unknown result type (might be due to invalid IL or missing references) //IL_2460: Unknown result type (might be due to invalid IL or missing references) //IL_0f00: Unknown result type (might be due to invalid IL or missing references) //IL_0f06: Unknown result type (might be due to invalid IL or missing references) //IL_0f0b: Unknown result type (might be due to invalid IL or missing references) //IL_0f11: Unknown result type (might be due to invalid IL or missing references) //IL_0f16: Unknown result type (might be due to invalid IL or missing references) //IL_0f1c: Unknown result type (might be due to invalid IL or missing references) //IL_0f21: Unknown result type (might be due to invalid IL or missing references) //IL_0f27: Unknown result type (might be due to invalid IL or missing references) //IL_0f31: Unknown result type (might be due to invalid IL or missing references) //IL_0f36: Unknown result type (might be due to invalid IL or missing references) //IL_0f41: Unknown result type (might be due to invalid IL or missing references) //IL_0f47: Unknown result type (might be due to invalid IL or missing references) //IL_0f4c: Unknown result type (might be due to invalid IL or missing references) //IL_0f52: Unknown result type (might be due to invalid IL or missing references) //IL_0f57: Unknown result type (might be due to invalid IL or missing references) //IL_0f5d: Unknown result type (might be due to invalid IL or missing references) //IL_0f67: Unknown result type (might be due to invalid IL or missing references) //IL_0f6c: Unknown result type (might be due to invalid IL or missing references) //IL_0f72: Unknown result type (might be due to invalid IL or missing references) //IL_0f77: Unknown result type (might be due to invalid IL or missing references) //IL_0f7d: Unknown result type (might be due to invalid IL or missing references) //IL_0f87: Unknown result type (might be due to invalid IL or missing references) //IL_0f8c: Unknown result type (might be due to invalid IL or missing references) //IL_0f98: Unknown result type (might be due to invalid IL or missing references) //IL_3942: Unknown result type (might be due to invalid IL or missing references) //IL_3948: Unknown result type (might be due to invalid IL or missing references) //IL_394d: Unknown result type (might be due to invalid IL or missing references) //IL_3953: Unknown result type (might be due to invalid IL or missing references) //IL_3958: Unknown result type (might be due to invalid IL or missing references) //IL_395e: Unknown result type (might be due to invalid IL or missing references) //IL_3963: Unknown result type (might be due to invalid IL or missing references) //IL_3969: Unknown result type (might be due to invalid IL or missing references) //IL_3973: Unknown result type (might be due to invalid IL or missing references) //IL_3978: Unknown result type (might be due to invalid IL or missing references) //IL_3983: Unknown result type (might be due to invalid IL or missing references) //IL_3989: Unknown result type (might be due to invalid IL or missing references) //IL_398e: Unknown result type (might be due to invalid IL or missing references) //IL_3994: Unknown result type (might be due to invalid IL or missing references) //IL_3999: Unknown result type (might be due to invalid IL or missing references) //IL_399f: Unknown result type (might be due to invalid IL or missing references) //IL_39a9: Unknown result type (might be due to invalid IL or missing references) //IL_39ae: Unknown result type (might be due to invalid IL or missing references) //IL_39b4: Unknown result type (might be due to invalid IL or missing references) //IL_39b9: Unknown result type (might be due to invalid IL or missing references) //IL_39bf: Unknown result type (might be due to invalid IL or missing references) //IL_39c9: Unknown result type (might be due to invalid IL or missing references) //IL_39ce: Unknown result type (might be due to invalid IL or missing references) //IL_39da: Unknown result type (might be due to invalid IL or missing references) //IL_247a: Unknown result type (might be due to invalid IL or missing references) //IL_2480: Unknown result type (might be due to invalid IL or missing references) //IL_2485: Unknown result type (might be due to invalid IL or missing references) //IL_248b: Unknown result type (might be due to invalid IL or missing references) //IL_2490: Unknown result type (might be due to invalid IL or missing references) //IL_2496: Unknown result type (might be due to invalid IL or missing references) //IL_249b: Unknown result type (might be due to invalid IL or missing references) //IL_24a1: Unknown result type (might be due to invalid IL or missing references) //IL_24ab: Unknown result type (might be due to invalid IL or missing references) //IL_24b0: Unknown result type (might be due to invalid IL or missing references) //IL_24bb: Unknown result type (might be due to invalid IL or missing references) //IL_24c1: Unknown result type (might be due to invalid IL or missing references) //IL_24c6: Unknown result type (might be due to invalid IL or missing references) //IL_24cc: Unknown result type (might be due to invalid IL or missing references) //IL_24d1: Unknown result type (might be due to invalid IL or missing references) //IL_24d7: Unknown result type (might be due to invalid IL or missing references) //IL_24e1: Unknown result type (might be due to invalid IL or missing references) //IL_24e6: Unknown result type (might be due to invalid IL or missing references) //IL_24ec: Unknown result type (might be due to invalid IL or missing references) //IL_24f1: Unknown result type (might be due to invalid IL or missing references) //IL_24f7: Unknown result type (might be due to invalid IL or missing references) //IL_2501: Unknown result type (might be due to invalid IL or missing references) //IL_2506: Unknown result type (might be due to invalid IL or missing references) //IL_2512: Unknown result type (might be due to invalid IL or missing references) //IL_0fb2: Unknown result type (might be due to invalid IL or missing references) //IL_0fb8: Unknown result type (might be due to invalid IL or missing references) //IL_0fbd: Unknown result type (might be due to invalid IL or missing references) //IL_0fc3: Unknown result type (might be due to invalid IL or missing references) //IL_0fc8: Unknown result type (might be due to invalid IL or missing references) //IL_0fce: Unknown result type (might be due to invalid IL or missing references) //IL_0fd3: Unknown result type (might be due to invalid IL or missing references) //IL_0fd9: Unknown result type (might be due to invalid IL or missing references) //IL_0fe3: Unknown result type (might be due to invalid IL or missing references) //IL_0fe8: Unknown result type (might be due to invalid IL or missing references) //IL_0ff3: Unknown result type (might be due to invalid IL or missing references) //IL_0ff9: Unknown result type (might be due to invalid IL or missing references) //IL_0ffe: Unknown result type (might be due to invalid IL or missing references) //IL_1004: Unknown result type (might be due to invalid IL or missing references) //IL_1009: Unknown result type (might be due to invalid IL or missing references) //IL_100f: Unknown result type (might be due to invalid IL or missing references) //IL_1019: Unknown result type (might be due to invalid IL or missing references) //IL_101e: Unknown result type (might be due to invalid IL or missing references) //IL_1024: Unknown result type (might be due to invalid IL or missing references) //IL_1029: Unknown result type (might be due to invalid IL or missing references) //IL_102f: Unknown result type (might be due to invalid IL or missing references) //IL_1039: Unknown result type (might be due to invalid IL or missing references) //IL_103e: Unknown result type (might be due to invalid IL or missing references) //IL_104a: Unknown result type (might be due to invalid IL or missing references) //IL_39f4: Unknown result type (might be due to invalid IL or missing references) //IL_39fa: Unknown result type (might be due to invalid IL or missing references) //IL_39ff: Unknown result type (might be due to invalid IL or missing references) //IL_3a05: Unknown result type (might be due to invalid IL or missing references) //IL_3a0a: Unknown result type (might be due to invalid IL or missing references) //IL_3a10: Unknown result type (might be due to invalid IL or missing references) //IL_3a15: Unknown result type (might be due to invalid IL or missing references) //IL_3a1b: Unknown result type (might be due to invalid IL or missing references) //IL_3a25: Unknown result type (might be due to invalid IL or missing references) //IL_3a2a: Unknown result type (might be due to invalid IL or missing references) //IL_3a35: Unknown result type (might be due to invalid IL or missing references) //IL_3a3b: Unknown result type (might be due to invalid IL or missing references) //IL_3a40: Unknown result type (might be due to invalid IL or missing references) //IL_3a46: Unknown result type (might be due to invalid IL or missing references) //IL_3a4b: Unknown result type (might be due to invalid IL or missing references) //IL_3a51: Unknown result type (might be due to invalid IL or missing references) //IL_3a5b: Unknown result type (might be due to invalid IL or missing references) //IL_3a60: Unknown result type (might be due to invalid IL or missing references) //IL_3a66: Unknown result type (might be due to invalid IL or missing references) //IL_3a6b: Unknown result type (might be due to invalid IL or missing references) //IL_3a71: Unknown result type (might be due to invalid IL or missing references) //IL_3a7b: Unknown result type (might be due to invalid IL or missing references) //IL_3a80: Unknown result type (might be due to invalid IL or missing references) //IL_3a8c: Unknown result type (might be due to invalid IL or missing references) //IL_252c: Unknown result type (might be due to invalid IL or missing references) //IL_2532: Unknown result type (might be due to invalid IL or missing references) //IL_2537: Unknown result type (might be due to invalid IL or missing references) //IL_253d: Unknown result type (might be due to invalid IL or missing references) //IL_2542: Unknown result type (might be due to invalid IL or missing references) //IL_2548: Unknown result type (might be due to invalid IL or missing references) //IL_254d: Unknown result type (might be due to invalid IL or missing references) //IL_2553: Unknown result type (might be due to invalid IL or missing references) //IL_255d: Unknown result type (might be due to invalid IL or missing references) //IL_2562: Unknown result type (might be due to invalid IL or missing references) //IL_256d: Unknown result type (might be due to invalid IL or missing references) //IL_2573: Unknown result type (might be due to invalid IL or missing references) //IL_2578: Unknown result type (might be due to invalid IL or missing references) //IL_257e: Unknown result type (might be due to invalid IL or missing references) //IL_2583: Unknown result type (might be due to invalid IL or missing references) //IL_2589: Unknown result type (might be due to invalid IL or missing references) //IL_2593: Unknown result type (might be due to invalid IL or missing references) //IL_2598: Unknown result type (might be due to invalid IL or missing references) //IL_259e: Unknown result type (might be due to invalid IL or missing references) //IL_25a3: Unknown result type (might be due to invalid IL or missing references) //IL_25a9: Unknown result type (might be due to invalid IL or missing references) //IL_25b3: Unknown result type (might be due to invalid IL or missing references) //IL_25b8: Unknown result type (might be due to invalid IL or missing references) //IL_25c4: Unknown result type (might be due to invalid IL or missing references) //IL_1064: Unknown result type (might be due to invalid IL or missing references) //IL_106a: Unknown result type (might be due to invalid IL or missing references) //IL_106f: Unknown result type (might be due to invalid IL or missing references) //IL_1075: Unknown result type (might be due to invalid IL or missing references) //IL_107a: Unknown result type (might be due to invalid IL or missing references) //IL_1080: Unknown result type (might be due to invalid IL or missing references) //IL_108a: Unknown result type (might be due to invalid IL or missing references) //IL_108f: Unknown result type (might be due to invalid IL or missing references) //IL_1095: Unknown result type (might be due to invalid IL or missing references) //IL_109a: Unknown result type (might be due to invalid IL or missing references) //IL_10a5: Unknown result type (might be due to invalid IL or missing references) //IL_10ab: Unknown result type (might be due to invalid IL or missing references) //IL_10b0: Unknown result type (might be due to invalid IL or missing references) //IL_10b6: Unknown result type (might be due to invalid IL or missing references) //IL_10bb: Unknown result type (might be due to invalid IL or missing references) //IL_10c1: Unknown result type (might be due to invalid IL or missing references) //IL_10c6: Unknown result type (might be due to invalid IL or missing references) //IL_10d2: Unknown result type (might be due to invalid IL or missing references) //IL_3aa6: Unknown result type (might be due to invalid IL or missing references) //IL_3aac: Unknown result type (might be due to invalid IL or missing references) //IL_3ab1: Unknown result type (might be due to invalid IL or missing references) //IL_3ab7: Unknown result type (might be due to invalid IL or missing references) //IL_3abc: Unknown result type (might be due to invalid IL or missing references) //IL_3ac2: Unknown result type (might be due to invalid IL or missing references) //IL_3ac7: Unknown result type (might be due to invalid IL or missing references) //IL_3acd: Unknown result type (might be due to invalid IL or missing references) //IL_3ad7: Unknown result type (might be due to invalid IL or missing references) //IL_3adc: Unknown result type (might be due to invalid IL or missing references) //IL_3ae7: Unknown result type (might be due to invalid IL or missing references) //IL_3aed: Unknown result type (might be due to invalid IL or missing references) //IL_3af2: Unknown result type (might be due to invalid IL or missing references) //IL_3af8: Unknown result type (might be due to invalid IL or missing references) //IL_3afd: Unknown result type (might be due to invalid IL or missing references) //IL_3b03: Unknown result type (might be due to invalid IL or missing references) //IL_3b0d: Unknown result type (might be due to invalid IL or missing references) //IL_3b12: Unknown result type (might be due to invalid IL or missing references) //IL_3b18: Unknown result type (might be due to invalid IL or missing references) //IL_3b1d: Unknown result type (might be due to invalid IL or missing references) //IL_3b23: Unknown result type (might be due to invalid IL or missing references) //IL_3b2d: Unknown result type (might be due to invalid IL or missing references) //IL_3b32: Unknown result type (might be due to invalid IL or missing references) //IL_3b3e: Unknown result type (might be due to invalid IL or missing references) //IL_25de: Unknown result type (might be due to invalid IL or missing references) //IL_25e4: Unknown result type (might be due to invalid IL or missing references) //IL_25e9: Unknown result type (might be due to invalid IL or missing references) //IL_25ef: Unknown result type (might be due to invalid IL or missing references) //IL_25f4: Unknown result type (might be due to invalid IL or missing references) //IL_25fa: Unknown result type (might be due to invalid IL or missing references) //IL_25ff: Unknown result type (might be due to invalid IL or missing references) //IL_2605: Unknown result type (might be due to invalid IL or missing references) //IL_260f: Unknown result type (might be due to invalid IL or missing references) //IL_2614: Unknown result type (might be due to invalid IL or missing references) //IL_261f: Unknown result type (might be due to invalid IL or missing references) //IL_2625: Unknown result type (might be due to invalid IL or missing references) //IL_262a: Unknown result type (might be due to invalid IL or missing references) //IL_2630: Unknown result type (might be due to invalid IL or missing references) //IL_2635: Unknown result type (might be due to invalid IL or missing references) //IL_263b: Unknown result type (might be due to invalid IL or missing references) //IL_2645: Unknown result type (might be due to invalid IL or missing references) //IL_264a: Unknown result type (might be due to invalid IL or missing references) //IL_2650: Unknown result type (might be due to invalid IL or missing references) //IL_2655: Unknown result type (might be due to invalid IL or missing references) //IL_265b: Unknown result type (might be due to invalid IL or missing references) //IL_2665: Unknown result type (might be due to invalid IL or missing references) //IL_266a: Unknown result type (might be due to invalid IL or missing references) //IL_2676: Unknown result type (might be due to invalid IL or missing references) //IL_10ec: Unknown result type (might be due to invalid IL or missing references) //IL_10f2: Unknown result type (might be due to invalid IL or missing references) //IL_10f7: Unknown result type (might be due to invalid IL or missing references) //IL_10fd: Unknown result type (might be due to invalid IL or missing references) //IL_1102: Unknown result type (might be due to invalid IL or missing references) //IL_1108: Unknown result type (might be due to invalid IL or missing references) //IL_1112: Unknown result type (might be due to invalid IL or missing references) //IL_1117: Unknown result type (might be due to invalid IL or missing references) //IL_111d: Unknown result type (might be due to invalid IL or missing references) //IL_1122: Unknown result type (might be due to invalid IL or missing references) //IL_1128: Unknown result type (might be due to invalid IL or missing references) //IL_1132: Unknown result type (might be due to invalid IL or missing references) //IL_1137: Unknown result type (might be due to invalid IL or missing references) //IL_1142: Unknown result type (might be due to invalid IL or missing references) //IL_1148: Unknown result type (might be due to invalid IL or missing references) //IL_114d: Unknown result type (might be due to invalid IL or missing references) //IL_1153: Unknown result type (might be due to invalid IL or missing references) //IL_1158: Unknown result type (might be due to invalid IL or missing references) //IL_115e: Unknown result type (might be due to invalid IL or missing references) //IL_1163: Unknown result type (might be due to invalid IL or missing references) //IL_1169: Unknown result type (might be due to invalid IL or missing references) //IL_1173: Unknown result type (might be due to invalid IL or missing references) //IL_1178: Unknown result type (might be due to invalid IL or missing references) //IL_1184: Unknown result type (might be due to invalid IL or missing references) //IL_3b58: Unknown result type (might be due to invalid IL or missing references) //IL_3b5e: Unknown result type (might be due to invalid IL or missing references) //IL_3b63: Unknown result type (might be due to invalid IL or missing references) //IL_3b69: Unknown result type (might be due to invalid IL or missing references) //IL_3b6e: Unknown result type (might be due to invalid IL or missing references) //IL_3b74: Unknown result type (might be due to invalid IL or missing references) //IL_3b79: Unknown result type (might be due to invalid IL or missing references) //IL_3b7f: Unknown result type (might be due to invalid IL or missing references) //IL_3b89: Unknown result type (might be due to invalid IL or missing references) //IL_3b8e: Unknown result type (might be due to invalid IL or missing references) //IL_3b99: Unknown result type (might be due to invalid IL or missing references) //IL_3b9f: Unknown result type (might be due to invalid IL or missing references) //IL_3ba4: Unknown result type (might be due to invalid IL or missing references) //IL_3baa: Unknown result type (might be due to invalid IL or missing references) //IL_3baf: Unknown result type (might be due to invalid IL or missing references) //IL_3bb5: Unknown result type (might be due to invalid IL or missing references) //IL_3bbf: Unknown result type (might be due to invalid IL or missing references) //IL_3bc4: Unknown result type (might be due to invalid IL or missing references) //IL_3bca: Unknown result type (might be due to invalid IL or missing references) //IL_3bcf: Unknown result type (might be due to invalid IL or missing references) //IL_3bd5: Unknown result type (might be due to invalid IL or missing references) //IL_3bdf: Unknown result type (might be due to invalid IL or missing references) //IL_3be4: Unknown result type (might be due to invalid IL or missing references) //IL_3bf0: Unknown result type (might be due to invalid IL or missing references) //IL_2690: Unknown result type (might be due to invalid IL or missing references) //IL_2696: Unknown result type (might be due to invalid IL or missing references) //IL_269b: Unknown result type (might be due to invalid IL or missing references) //IL_26a1: Unknown result type (might be due to invalid IL or missing references) //IL_26a6: Unknown result type (might be due to invalid IL or missing references) //IL_26ac: Unknown result type (might be due to invalid IL or missing references) //IL_26b6: Unknown result type (might be due to invalid IL or missing references) //IL_26bb: Unknown result type (might be due to invalid IL or missing references) //IL_26c1: Unknown result type (might be due to invalid IL or missing references) //IL_26c6: Unknown result type (might be due to invalid IL or missing references) //IL_26d1: Unknown result type (might be due to invalid IL or missing references) //IL_26d7: Unknown result type (might be due to invalid IL or missing references) //IL_26dc: Unknown result type (might be due to invalid IL or missing references) //IL_26e2: Unknown result type (might be due to invalid IL or missing references) //IL_26e7: Unknown result type (might be due to invalid IL or missing references) //IL_26ed: Unknown result type (might be due to invalid IL or missing references) //IL_26f2: Unknown result type (might be due to invalid IL or missing references) //IL_26fe: Unknown result type (might be due to invalid IL or missing references) //IL_119e: Unknown result type (might be due to invalid IL or missing references) //IL_11a4: Unknown result type (might be due to invalid IL or missing references) //IL_11a9: Unknown result type (might be due to invalid IL or missing references) //IL_11af: Unknown result type (might be due to invalid IL or missing references) //IL_11b4: Unknown result type (might be due to invalid IL or missing references) //IL_11ba: Unknown result type (might be due to invalid IL or missing references) //IL_11c4: Unknown result type (might be due to invalid IL or missing references) //IL_11c9: Unknown result type (might be due to invalid IL or missing references) //IL_11cf: Unknown result type (might be due to invalid IL or missing references) //IL_11d4: Unknown result type (might be due to invalid IL or missing references) //IL_11da: Unknown result type (might be due to invalid IL or missing references) //IL_11e4: Unknown result type (might be due to invalid IL or missing references) //IL_11e9: Unknown result type (might be due to invalid IL or missing references) //IL_11f4: Unknown result type (might be due to invalid IL or missing references) //IL_11fa: Unknown result type (might be due to invalid IL or missing references) //IL_11ff: Unknown result type (might be due to invalid IL or missing references) //IL_1205: Unknown result type (might be due to invalid IL or missing references) //IL_120a: Unknown result type (might be due to invalid IL or missing references) //IL_1210: Unknown result type (might be due to invalid IL or missing references) //IL_1215: Unknown result type (might be due to invalid IL or missing references) //IL_121b: Unknown result type (might be due to invalid IL or missing references) //IL_1225: Unknown result type (might be due to invalid IL or missing references) //IL_122a: Unknown result type (might be due to invalid IL or missing references) //IL_1236: Unknown result type (might be due to invalid IL or missing references) //IL_3c0a: Unknown result type (might be due to invalid IL or missing references) //IL_3c10: Unknown result type (might be due to invalid IL or missing references) //IL_3c15: Unknown result type (might be due to invalid IL or missing references) //IL_3c1b: Unknown result type (might be due to invalid IL or missing references) //IL_3c20: Unknown result type (might be due to invalid IL or missing references) //IL_3c26: Unknown result type (might be due to invalid IL or missing references) //IL_3c2b: Unknown result type (might be due to invalid IL or missing references) //IL_3c31: Unknown result type (might be due to invalid IL or missing references) //IL_3c3b: Unknown result type (might be due to invalid IL or missing references) //IL_3c40: Unknown result type (might be due to invalid IL or missing references) //IL_3c4b: Unknown result type (might be due to invalid IL or missing references) //IL_3c51: Unknown result type (might be due to invalid IL or missing references) //IL_3c56: Unknown result type (might be due to invalid IL or missing references) //IL_3c5c: Unknown result type (might be due to invalid IL or missing references) //IL_3c61: Unknown result type (might be due to invalid IL or missing references) //IL_3c67: Unknown result type (might be due to invalid IL or missing references) //IL_3c71: Unknown result type (might be due to invalid IL or missing references) //IL_3c76: Unknown result type (might be due to invalid IL or missing references) //IL_3c7c: Unknown result type (might be due to invalid IL or missing references) //IL_3c81: Unknown result type (might be due to invalid IL or missing references) //IL_3c87: Unknown result type (might be due to invalid IL or missing references) //IL_3c91: Unknown result type (might be due to invalid IL or missing references) //IL_3c96: Unknown result type (might be due to invalid IL or missing references) //IL_3ca2: Unknown result type (might be due to invalid IL or missing references) //IL_2718: Unknown result type (might be due to invalid IL or missing references) //IL_271e: Unknown result type (might be due to invalid IL or missing references) //IL_2723: Unknown result type (might be due to invalid IL or missing references) //IL_2729: Unknown result type (might be due to invalid IL or missing references) //IL_272e: Unknown result type (might be due to invalid IL or missing references) //IL_2734: Unknown result type (might be due to invalid IL or missing references) //IL_273e: Unknown result type (might be due to invalid IL or missing references) //IL_2743: Unknown result type (might be due to invalid IL or missing references) //IL_2749: Unknown result type (might be due to invalid IL or missing references) //IL_274e: Unknown result type (might be due to invalid IL or missing references) //IL_2754: Unknown result type (might be due to invalid IL or missing references) //IL_275e: Unknown result type (might be due to invalid IL or missing references) //IL_2763: Unknown result type (might be due to invalid IL or missing references) //IL_276e: Unknown result type (might be due to invalid IL or missing references) //IL_2774: Unknown result type (might be due to invalid IL or missing references) //IL_2779: Unknown result type (might be due to invalid IL or missing references) //IL_277f: Unknown result type (might be due to invalid IL or missing references) //IL_2784: Unknown result type (might be due to invalid IL or missing references) //IL_278a: Unknown result type (might be due to invalid IL or missing references) //IL_278f: Unknown result type (might be due to invalid IL or missing references) //IL_2795: Unknown result type (might be due to invalid IL or missing references) //IL_279f: Unknown result type (might be due to invalid IL or missing references) //IL_27a4: Unknown result type (might be due to invalid IL or missing references) //IL_27b0: Unknown result type (might be due to invalid IL or missing references) //IL_1250: Unknown result type (might be due to invalid IL or missing references) //IL_1256: Unknown result type (might be due to invalid IL or missing references) //IL_125b: Unknown result type (might be due to invalid IL or missing references) //IL_1261: Unknown result type (might be due to invalid IL or missing references) //IL_1266: Unknown result type (might be due to invalid IL or missing references) //IL_126c: Unknown result type (might be due to invalid IL or missing references) //IL_1276: Unknown result type (might be due to invalid IL or missing references) //IL_127b: Unknown result type (might be due to invalid IL or missing references) //IL_1281: Unknown result type (might be due to invalid IL or missing references) //IL_1286: Unknown result type (might be due to invalid IL or missing references) //IL_128c: Unknown result type (might be due to invalid IL or missing references) //IL_1296: Unknown result type (might be due to invalid IL or missing references) //IL_129b: Unknown result type (might be due to invalid IL or missing references) //IL_12a6: Unknown result type (might be due to invalid IL or missing references) //IL_12ac: Unknown result type (might be due to invalid IL or missing references) //IL_12b1: Unknown result type (might be due to invalid IL or missing references) //IL_12b7: Unknown result type (might be due to invalid IL or missing references) //IL_12bc: Unknown result type (might be due to invalid IL or missing references) //IL_12c2: Unknown result type (might be due to invalid IL or missing references) //IL_12c7: Unknown result type (might be due to invalid IL or missing references) //IL_12cd: Unknown result type (might be due to invalid IL or missing references) //IL_12d7: Unknown result type (might be due to invalid IL or missing references) //IL_12dc: Unknown result type (might be due to invalid IL or missing references) //IL_12e8: Unknown result type (might be due to invalid IL or missing references) //IL_3cbc: Unknown result type (might be due to invalid IL or missing references) //IL_3cc2: Unknown result type (might be due to invalid IL or missing references) //IL_3cc7: Unknown result type (might be due to invalid IL or missing references) //IL_3ccd: Unknown result type (might be due to invalid IL or missing references) //IL_3cd2: Unknown result type (might be due to invalid IL or missing references) //IL_3cd8: Unknown result type (might be due to invalid IL or missing references) //IL_3ce2: Unknown result type (might be due to invalid IL or missing references) //IL_3ce7: Unknown result type (might be due to invalid IL or missing references) //IL_3ced: Unknown result type (might be due to invalid IL or missing references) //IL_3cf2: Unknown result type (might be due to invalid IL or missing references) //IL_3cfd: Unknown result type (might be due to invalid IL or missing references) //IL_3d03: Unknown result type (might be due to invalid IL or missing references) //IL_3d08: Unknown result type (might be due to invalid IL or missing references) //IL_3d0e: Unknown result type (might be due to invalid IL or missing references) //IL_3d13: Unknown result type (might be due to invalid IL or missing references) //IL_3d19: Unknown result type (might be due to invalid IL or missing references) //IL_3d1e: Unknown result type (might be due to invalid IL or missing references) //IL_3d2a: Unknown result type (might be due to invalid IL or missing references) //IL_27ca: Unknown result type (might be due to invalid IL or missing references) //IL_27d0: Unknown result type (might be due to invalid IL or missing references) //IL_27d5: Unknown result type (might be due to invalid IL or missing references) //IL_27db: Unknown result type (might be due to invalid IL or missing references) //IL_27e0: Unknown result type (might be due to invalid IL or missing references) //IL_27e6: Unknown result type (might be due to invalid IL or missing references) //IL_27f0: Unknown result type (might be due to invalid IL or missing references) //IL_27f5: Unknown result type (might be due to invalid IL or missing references) //IL_27fb: Unknown result type (might be due to invalid IL or missing references) //IL_2800: Unknown result type (might be due to invalid IL or missing references) //IL_2806: Unknown result type (might be due to invalid IL or missing references) //IL_2810: Unknown result type (might be due to invalid IL or missing references) //IL_2815: Unknown result type (might be due to invalid IL or missing references) //IL_2820: Unknown result type (might be due to invalid IL or missing references) //IL_2826: Unknown result type (might be due to invalid IL or missing references) //IL_282b: Unknown result type (might be due to invalid IL or missing references) //IL_2831: Unknown result type (might be due to invalid IL or missing references) //IL_2836: Unknown result type (might be due to invalid IL or missing references) //IL_283c: Unknown result type (might be due to invalid IL or missing references) //IL_2841: Unknown result type (might be due to invalid IL or missing references) //IL_2847: Unknown result type (might be due to invalid IL or missing references) //IL_2851: Unknown result type (might be due to invalid IL or missing references) //IL_2856: Unknown result type (might be due to invalid IL or missing references) //IL_2862: Unknown result type (might be due to invalid IL or missing references) //IL_1302: Unknown result type (might be due to invalid IL or missing references) //IL_1308: Unknown result type (might be due to invalid IL or missing references) //IL_130d: Unknown result type (might be due to invalid IL or missing references) //IL_1313: Unknown result type (might be due to invalid IL or missing references) //IL_1318: Unknown result type (might be due to invalid IL or missing references) //IL_131e: Unknown result type (might be due to invalid IL or missing references) //IL_1328: Unknown result type (might be due to invalid IL or missing references) //IL_132d: Unknown result type (might be due to invalid IL or missing references) //IL_1333: Unknown result type (might be due to invalid IL or missing references) //IL_1338: Unknown result type (might be due to invalid IL or missing references) //IL_133e: Unknown result type (might be due to invalid IL or missing references) //IL_1348: Unknown result type (might be due to invalid IL or missing references) //IL_134d: Unknown result type (might be due to invalid IL or missing references) //IL_1358: Unknown result type (might be due to invalid IL or missing references) //IL_135e: Unknown result type (might be due to invalid IL or missing references) //IL_1363: Unknown result type (might be due to invalid IL or missing references) //IL_1369: Unknown result type (might be due to invalid IL or missing references) //IL_136e: Unknown result type (might be due to invalid IL or missing references) //IL_1374: Unknown result type (might be due to invalid IL or missing references) //IL_1379: Unknown result type (might be due to invalid IL or missing references) //IL_137f: Unknown result type (might be due to invalid IL or missing references) //IL_1389: Unknown result type (might be due to invalid IL or missing references) //IL_138e: Unknown result type (might be due to invalid IL or missing references) //IL_139a: Unknown result type (might be due to invalid IL or missing references) //IL_3d44: Unknown result type (might be due to invalid IL or missing references) //IL_3d4a: Unknown result type (might be due to invalid IL or missing references) //IL_3d4f: Unknown result type (might be due to invalid IL or missing references) //IL_3d55: Unknown result type (might be due to invalid IL or missing references) //IL_3d5a: Unknown result type (might be due to invalid IL or missing references) //IL_3d60: Unknown result type (might be due to invalid IL or missing references) //IL_3d6a: Unknown result type (might be due to invalid IL or missing references) //IL_3d6f: Unknown result type (might be due to invalid IL or missing references) //IL_3d75: Unknown result type (might be due to invalid IL or missing references) //IL_3d7a: Unknown result type (might be due to invalid IL or missing references) //IL_3d80: Unknown result type (might be due to invalid IL or missing references) //IL_3d8a: Unknown result type (might be due to invalid IL or missing references) //IL_3d8f: Unknown result type (might be due to invalid IL or missing references) //IL_3d9a: Unknown result type (might be due to invalid IL or missing references) //IL_3da0: Unknown result type (might be due to invalid IL or missing references) //IL_3da5: Unknown result type (might be due to invalid IL or missing references) //IL_3dab: Unknown result type (might be due to invalid IL or missing references) //IL_3db0: Unknown result type (might be due to invalid IL or missing references) //IL_3db6: Unknown result type (might be due to invalid IL or missing references) //IL_3dbb: Unknown result type (might be due to invalid IL or missing references) //IL_3dc1: Unknown result type (might be due to invalid IL or missing references) //IL_3dcb: Unknown result type (might be due to invalid IL or missing references) //IL_3dd0: Unknown result type (might be due to invalid IL or missing references) //IL_3ddc: Unknown result type (might be due to invalid IL or missing references) //IL_287c: Unknown result type (might be due to invalid IL or missing references) //IL_2882: Unknown result type (might be due to invalid IL or missing references) //IL_2887: Unknown result type (might be due to invalid IL or missing references) //IL_288d: Unknown result type (might be due to invalid IL or missing references) //IL_2892: Unknown result type (might be due to invalid IL or missing references) //IL_2898: Unknown result type (might be due to invalid IL or missing references) //IL_28a2: Unknown result type (might be due to invalid IL or missing references) //IL_28a7: Unknown result type (might be due to invalid IL or missing references) //IL_28ad: Unknown result type (might be due to invalid IL or missing references) //IL_28b2: Unknown result type (might be due to invalid IL or missing references) //IL_28b8: Unknown result type (might be due to invalid IL or missing references) //IL_28c2: Unknown result type (might be due to invalid IL or missing references) //IL_28c7: Unknown result type (might be due to invalid IL or missing references) //IL_28d2: Unknown result type (might be due to invalid IL or missing references) //IL_28d8: Unknown result type (might be due to invalid IL or missing references) //IL_28dd: Unknown result type (might be due to invalid IL or missing references) //IL_28e3: Unknown result type (might be due to invalid IL or missing references) //IL_28e8: Unknown result type (might be due to invalid IL or missing references) //IL_28ee: Unknown result type (might be due to invalid IL or missing references) //IL_28f3: Unknown result type (might be due to invalid IL or missing references) //IL_28f9: Unknown result type (might be due to invalid IL or missing references) //IL_2903: Unknown result type (might be due to invalid IL or missing references) //IL_2908: Unknown result type (might be due to invalid IL or missing references) //IL_2914: Unknown result type (might be due to invalid IL or missing references) //IL_13b4: Unknown result type (might be due to invalid IL or missing references) //IL_13ba: Unknown result type (might be due to invalid IL or missing references) //IL_13bf: Unknown result type (might be due to invalid IL or missing references) //IL_13c5: Unknown result type (might be due to invalid IL or missing references) //IL_13ca: Unknown result type (might be due to invalid IL or missing references) //IL_13d0: Unknown result type (might be due to invalid IL or missing references) //IL_13da: Unknown result type (might be due to invalid IL or missing references) //IL_13df: Unknown result type (might be due to invalid IL or missing references) //IL_13e5: Unknown result type (might be due to invalid IL or missing references) //IL_13ea: Unknown result type (might be due to invalid IL or missing references) //IL_13f0: Unknown result type (might be due to invalid IL or missing references) //IL_13fa: Unknown result type (might be due to invalid IL or missing references) //IL_13ff: Unknown result type (might be due to invalid IL or missing references) //IL_140a: Unknown result type (might be due to invalid IL or missing references) //IL_1410: Unknown result type (might be due to invalid IL or missing references) //IL_1415: Unknown result type (might be due to invalid IL or missing references) //IL_141b: Unknown result type (might be due to invalid IL or missing references) //IL_1420: Unknown result type (might be due to invalid IL or missing references) //IL_1426: Unknown result type (might be due to invalid IL or missing references) //IL_142b: Unknown result type (might be due to invalid IL or missing references) //IL_1431: Unknown result type (might be due to invalid IL or missing references) //IL_143b: Unknown result type (might be due to invalid IL or missing references) //IL_1440: Unknown result type (might be due to invalid IL or missing references) //IL_144c: Unknown result type (might be due to invalid IL or missing references) //IL_3df6: Unknown result type (might be due to invalid IL or missing references) //IL_3dfc: Unknown result type (might be due to invalid IL or missing references) //IL_3e01: Unknown result type (might be due to invalid IL or missing references) //IL_3e07: Unknown result type (might be due to invalid IL or missing references) //IL_3e0c: Unknown result type (might be due to invalid IL or missing references) //IL_3e12: Unknown result type (might be due to invalid IL or missing references) //IL_3e1c: Unknown result type (might be due to invalid IL or missing references) //IL_3e21: Unknown result type (might be due to invalid IL or missing references) //IL_3e27: Unknown result type (might be due to invalid IL or missing references) //IL_3e2c: Unknown result type (might be due to invalid IL or missing references) //IL_3e32: Unknown result type (might be due to invalid IL or missing references) //IL_3e3c: Unknown result type (might be due to invalid IL or missing references) //IL_3e41: Unknown result type (might be due to invalid IL or missing references) //IL_3e4c: Unknown result type (might be due to invalid IL or missing references) //IL_3e52: Unknown result type (might be due to invalid IL or missing references) //IL_3e57: Unknown result type (might be due to invalid IL or missing references) //IL_3e5d: Unknown result type (might be due to invalid IL or missing references) //IL_3e62: Unknown result type (might be due to invalid IL or missing references) //IL_3e68: Unknown result type (might be due to invalid IL or missing references) //IL_3e6d: Unknown result type (might be due to invalid IL or missing references) //IL_3e73: Unknown result type (might be due to invalid IL or missing references) //IL_3e7d: Unknown result type (might be due to invalid IL or missing references) //IL_3e82: Unknown result type (might be due to invalid IL or missing references) //IL_3e8e: Unknown result type (might be due to invalid IL or missing references) //IL_292e: Unknown result type (might be due to invalid IL or missing references) //IL_2934: Unknown result type (might be due to invalid IL or missing references) //IL_2939: Unknown result type (might be due to invalid IL or missing references) //IL_293f: Unknown result type (might be due to invalid IL or missing references) //IL_2944: Unknown result type (might be due to invalid IL or missing references) //IL_294a: Unknown result type (might be due to invalid IL or missing references) //IL_2954: Unknown result type (might be due to invalid IL or missing references) //IL_2959: Unknown result type (might be due to invalid IL or missing references) //IL_295f: Unknown result type (might be due to invalid IL or missing references) //IL_2964: Unknown result type (might be due to invalid IL or missing references) //IL_296a: Unknown result type (might be due to invalid IL or missing references) //IL_2974: Unknown result type (might be due to invalid IL or missing references) //IL_2979: Unknown result type (might be due to invalid IL or missing references) //IL_2984: Unknown result type (might be due to invalid IL or missing references) //IL_298a: Unknown result type (might be due to invalid IL or missing references) //IL_298f: Unknown result type (might be due to invalid IL or missing references) //IL_2995: Unknown result type (might be due to invalid IL or missing references) //IL_299a: Unknown result type (might be due to invalid IL or missing references) //IL_29a0: Unknown result type (might be due to invalid IL or missing references) //IL_29a5: Unknown result type (might be due to invalid IL or missing references) //IL_29ab: Unknown result type (might be due to invalid IL or missing references) //IL_29b5: Unknown result type (might be due to invalid IL or missing references) //IL_29ba: Unknown result type (might be due to invalid IL or missing references) //IL_29c6: Unknown result type (might be due to invalid IL or missing references) //IL_1466: Unknown result type (might be due to invalid IL or missing references) //IL_146c: Unknown result type (might be due to invalid IL or missing references) //IL_1471: Unknown result type (might be due to invalid IL or missing references) //IL_1477: Unknown result type (might be due to invalid IL or missing references) //IL_147c: Unknown result type (might be due to invalid IL or missing references) //IL_1482: Unknown result type (might be due to invalid IL or missing references) //IL_148c: Unknown result type (might be due to invalid IL or missing references) //IL_1491: Unknown result type (might be due to invalid IL or missing references) //IL_1497: Unknown result type (might be due to invalid IL or missing references) //IL_149c: Unknown result type (might be due to invalid IL or missing references) //IL_14a2: Unknown result type (might be due to invalid IL or missing references) //IL_14ac: Unknown result type (might be due to invalid IL or missing references) //IL_14b1: Unknown result type (might be due to invalid IL or missing references) //IL_14bc: Unknown result type (might be due to invalid IL or missing references) //IL_14c2: Unknown result type (might be due to invalid IL or missing references) //IL_14c7: Unknown result type (might be due to invalid IL or missing references) //IL_14cd: Unknown result type (might be due to invalid IL or missing references) //IL_14d2: Unknown result type (might be due to invalid IL or missing references) //IL_14d8: Unknown result type (might be due to invalid IL or missing references) //IL_14dd: Unknown result type (might be due to invalid IL or missing references) //IL_14e3: Unknown result type (might be due to invalid IL or missing references) //IL_14ed: Unknown result type (might be due to invalid IL or missing references) //IL_14f2: Unknown result type (might be due to invalid IL or missing references) //IL_14fe: Unknown result type (might be due to invalid IL or missing references) //IL_3ea8: Unknown result type (might be due to invalid IL or missing references) //IL_3eae: Unknown result type (might be due to invalid IL or missing references) //IL_3eb3: Unknown result type (might be due to invalid IL or missing references) //IL_3eb9: Unknown result type (might be due to invalid IL or missing references) //IL_3ebe: Unknown result type (might be due to invalid IL or missing references) //IL_3ec4: Unknown result type (might be due to invalid IL or missing references) //IL_3ece: Unknown result type (might be due to invalid IL or missing references) //IL_3ed3: Unknown result type (might be due to invalid IL or missing references) //IL_3ed9: Unknown result type (might be due to invalid IL or missing references) //IL_3ede: Unknown result type (might be due to invalid IL or missing references) //IL_3ee4: Unknown result type (might be due to invalid IL or missing references) //IL_3eee: Unknown result type (might be due to invalid IL or missing references) //IL_3ef3: Unknown result type (might be due to invalid IL or missing references) //IL_3efe: Unknown result type (might be due to invalid IL or missing references) //IL_3f04: Unknown result type (might be due to invalid IL or missing references) //IL_3f09: Unknown result type (might be due to invalid IL or missing references) //IL_3f0f: Unknown result type (might be due to invalid IL or missing references) //IL_3f14: Unknown result type (might be due to invalid IL or missing references) //IL_3f1a: Unknown result type (might be due to invalid IL or missing references) //IL_3f1f: Unknown result type (might be due to invalid IL or missing references) //IL_3f25: Unknown result type (might be due to invalid IL or missing references) //IL_3f2f: Unknown result type (might be due to invalid IL or missing references) //IL_3f34: Unknown result type (might be due to invalid IL or missing references) //IL_3f40: Unknown result type (might be due to invalid IL or missing references) //IL_29e0: Unknown result type (might be due to invalid IL or missing references) //IL_29e6: Unknown result type (might be due to invalid IL or missing references) //IL_29eb: Unknown result type (might be due to invalid IL or missing references) //IL_29f1: Unknown result type (might be due to invalid IL or missing references) //IL_29f6: Unknown result type (might be due to invalid IL or missing references) //IL_29fc: Unknown result type (might be due to invalid IL or missing references) //IL_2a06: Unknown result type (might be due to invalid IL or missing references) //IL_2a0b: Unknown result type (might be due to invalid IL or missing references) //IL_2a11: Unknown result type (might be due to invalid IL or missing references) //IL_2a16: Unknown result type (might be due to invalid IL or missing references) //IL_2a1c: Unknown result type (might be due to invalid IL or missing references) //IL_2a26: Unknown result type (might be due to invalid IL or missing references) //IL_2a2b: Unknown result type (might be due to invalid IL or missing references) //IL_2a36: Unknown result type (might be due to invalid IL or missing references) //IL_2a3c: Unknown result type (might be due to invalid IL or missing references) //IL_2a41: Unknown result type (might be due to invalid IL or missing references) //IL_2a47: Unknown result type (might be due to invalid IL or missing references) //IL_2a4c: Unknown result type (might be due to invalid IL or missing references) //IL_2a52: Unknown result type (might be due to invalid IL or missing references) //IL_2a57: Unknown result type (might be due to invalid IL or missing references) //IL_2a5d: Unknown result type (might be due to invalid IL or missing references) //IL_2a67: Unknown result type (might be due to invalid IL or missing references) //IL_2a6c: Unknown result type (might be due to invalid IL or missing references) //IL_2a78: Unknown result type (might be due to invalid IL or missing references) //IL_1518: Unknown result type (might be due to invalid IL or missing references) //IL_151e: Unknown result type (might be due to invalid IL or missing references) //IL_1523: Unknown result type (might be due to invalid IL or missing references) //IL_1529: Unknown result type (might be due to invalid IL or missing references) //IL_152e: Unknown result type (might be due to invalid IL or missing references) //IL_1534: Unknown result type (might be due to invalid IL or missing references) //IL_153e: Unknown result type (might be due to invalid IL or missing references) //IL_1543: Unknown result type (might be due to invalid IL or missing references) //IL_1549: Unknown result type (might be due to invalid IL or missing references) //IL_154e: Unknown result type (might be due to invalid IL or missing references) //IL_1554: Unknown result type (might be due to invalid IL or missing references) //IL_155e: Unknown result type (might be due to invalid IL or missing references) //IL_1563: Unknown result type (might be due to invalid IL or missing references) //IL_156e: Unknown result type (might be due to invalid IL or missing references) //IL_1574: Unknown result type (might be due to invalid IL or missing references) //IL_1579: Unknown result type (might be due to invalid IL or missing references) //IL_157f: Unknown result type (might be due to invalid IL or missing references) //IL_1584: Unknown result type (might be due to invalid IL or missing references) //IL_158a: Unknown result type (might be due to invalid IL or missing references) //IL_158f: Unknown result type (might be due to invalid IL or missing references) //IL_1595: Unknown result type (might be due to invalid IL or missing references) //IL_159f: Unknown result type (might be due to invalid IL or missing references) //IL_15a4: Unknown result type (might be due to invalid IL or missing references) //IL_15b0: Unknown result type (might be due to invalid IL or missing references) //IL_3f5a: Unknown result type (might be due to invalid IL or missing references) //IL_3f60: Unknown result type (might be due to invalid IL or missing references) //IL_3f65: Unknown result type (might be due to invalid IL or missing references) //IL_3f6b: Unknown result type (might be due to invalid IL or missing references) //IL_3f70: Unknown result type (might be due to invalid IL or missing references) //IL_3f76: Unknown result type (might be due to invalid IL or missing references) //IL_3f80: Unknown result type (might be due to invalid IL or missing references) //IL_3f85: Unknown result type (might be due to invalid IL or missing references) //IL_3f8b: Unknown result type (might be due to invalid IL or missing references) //IL_3f90: Unknown result type (might be due to invalid IL or missing references) //IL_3f96: Unknown result type (might be due to invalid IL or missing references) //IL_3fa0: Unknown result type (might be due to invalid IL or missing references) //IL_3fa5: Unknown result type (might be due to invalid IL or missing references) //IL_3fb0: Unknown result type (might be due to invalid IL or missing references) //IL_3fb6: Unknown result type (might be due to invalid IL or missing references) //IL_3fbb: Unknown result type (might be due to invalid IL or missing references) //IL_3fc1: Unknown result type (might be due to invalid IL or missing references) //IL_3fc6: Unknown result type (might be due to invalid IL or missing references) //IL_3fcc: Unknown result type (might be due to invalid IL or missing references) //IL_3fd1: Unknown result type (might be due to invalid IL or missing references) //IL_3fd7: Unknown result type (might be due to invalid IL or missing references) //IL_3fe1: Unknown result type (might be due to invalid IL or missing references) //IL_3fe6: Unknown result type (might be due to invalid IL or missing references) //IL_3ff2: Unknown result type (might be due to invalid IL or missing references) //IL_2a92: Unknown result type (might be due to invalid IL or missing references) //IL_2a98: Unknown result type (might be due to invalid IL or missing references) //IL_2a9d: Unknown result type (might be due to invalid IL or missing references) //IL_2aa3: Unknown result type (might be due to invalid IL or missing references) //IL_2aa8: Unknown result type (might be due to invalid IL or missing references) //IL_2aae: Unknown result type (might be due to invalid IL or missing references) //IL_2ab8: Unknown result type (might be due to invalid IL or missing references) //IL_2abd: Unknown result type (might be due to invalid IL or missing references) //IL_2ac3: Unknown result type (might be due to invalid IL or missing references) //IL_2ac8: Unknown result type (might be due to invalid IL or missing references) //IL_2ace: Unknown result type (might be due to invalid IL or missing references) //IL_2ad8: Unknown result type (might be due to invalid IL or missing references) //IL_2add: Unknown result type (might be due to invalid IL or missing references) //IL_2ae8: Unknown result type (might be due to invalid IL or missing references) //IL_2aee: Unknown result type (might be due to invalid IL or missing references) //IL_2af3: Unknown result type (might be due to invalid IL or missing references) //IL_2af9: Unknown result type (might be due to invalid IL or missing references) //IL_2afe: Unknown result type (might be due to invalid IL or missing references) //IL_2b04: Unknown result type (might be due to invalid IL or missing references) //IL_2b09: Unknown result type (might be due to invalid IL or missing references) //IL_2b0f: Unknown result type (might be due to invalid IL or missing references) //IL_2b19: Unknown result type (might be due to invalid IL or missing references) //IL_2b1e: Unknown result type (might be due to invalid IL or missing references) //IL_2b2a: Unknown result type (might be due to invalid IL or missing references) //IL_400c: Unknown result type (might be due to invalid IL or missing references) //IL_4012: Unknown result type (might be due to invalid IL or missing references) //IL_4017: Unknown result type (might be due to invalid IL or missing references) //IL_401d: Unknown result type (might be due to invalid IL or missing references) //IL_4022: Unknown result type (might be due to invalid IL or missing references) //IL_4028: Unknown result type (might be due to invalid IL or missing references) //IL_4032: Unknown result type (might be due to invalid IL or missing references) //IL_4037: Unknown result type (might be due to invalid IL or missing references) //IL_403d: Unknown result type (might be due to invalid IL or missing references) //IL_4042: Unknown result type (might be due to invalid IL or missing references) //IL_4048: Unknown result type (might be due to invalid IL or missing references) //IL_4052: Unknown result type (might be due to invalid IL or missing references) //IL_4057: Unknown result type (might be due to invalid IL or missing references) //IL_4062: Unknown result type (might be due to invalid IL or missing references) //IL_4068: Unknown result type (might be due to invalid IL or missing references) //IL_406d: Unknown result type (might be due to invalid IL or missing references) //IL_4073: Unknown result type (might be due to invalid IL or missing references) //IL_4078: Unknown result type (might be due to invalid IL or missing references) //IL_407e: Unknown result type (might be due to invalid IL or missing references) //IL_4083: Unknown result type (might be due to invalid IL or missing references) //IL_4089: Unknown result type (might be due to invalid IL or missing references) //IL_4093: Unknown result type (might be due to invalid IL or missing references) //IL_4098: Unknown result type (might be due to invalid IL or missing references) //IL_40a4: Unknown result type (might be due to invalid IL or missing references) //IL_2b44: Unknown result type (might be due to invalid IL or missing references) //IL_2b4a: Unknown result type (might be due to invalid IL or missing references) //IL_2b4f: Unknown result type (might be due to invalid IL or missing references) //IL_2b55: Unknown result type (might be due to invalid IL or missing references) //IL_2b5a: Unknown result type (might be due to invalid IL or missing references) //IL_2b60: Unknown result type (might be due to invalid IL or missing references) //IL_2b6a: Unknown result type (might be due to invalid IL or missing references) //IL_2b6f: Unknown result type (might be due to invalid IL or missing references) //IL_2b75: Unknown result type (might be due to invalid IL or missing references) //IL_2b7a: Unknown result type (might be due to invalid IL or missing references) //IL_2b80: Unknown result type (might be due to invalid IL or missing references) //IL_2b8a: Unknown result type (might be due to invalid IL or missing references) //IL_2b8f: Unknown result type (might be due to invalid IL or missing references) //IL_2b9a: Unknown result type (might be due to invalid IL or missing references) //IL_2ba0: Unknown result type (might be due to invalid IL or missing references) //IL_2ba5: Unknown result type (might be due to invalid IL or missing references) //IL_2bab: Unknown result type (might be due to invalid IL or missing references) //IL_2bb0: Unknown result type (might be due to invalid IL or missing references) //IL_2bb6: Unknown result type (might be due to invalid IL or missing references) //IL_2bbb: Unknown result type (might be due to invalid IL or missing references) //IL_2bc1: Unknown result type (might be due to invalid IL or missing references) //IL_2bcb: Unknown result type (might be due to invalid IL or missing references) //IL_2bd0: Unknown result type (might be due to invalid IL or missing references) //IL_2bdc: Unknown result type (might be due to invalid IL or missing references) //IL_40be: Unknown result type (might be due to invalid IL or missing references) //IL_40c4: Unknown result type (might be due to invalid IL or missing references) //IL_40c9: Unknown result type (might be due to invalid IL or missing references) //IL_40cf: Unknown result type (might be due to invalid IL or missing references) //IL_40d4: Unknown result type (might be due to invalid IL or missing references) //IL_40da: Unknown result type (might be due to invalid IL or missing references) //IL_40e4: Unknown result type (might be due to invalid IL or missing references) //IL_40e9: Unknown result type (might be due to invalid IL or missing references) //IL_40ef: Unknown result type (might be due to invalid IL or missing references) //IL_40f4: Unknown result type (might be due to invalid IL or missing references) //IL_40fa: Unknown result type (might be due to invalid IL or missing references) //IL_4104: Unknown result type (might be due to invalid IL or missing references) //IL_4109: Unknown result type (might be due to invalid IL or missing references) //IL_4114: Unknown result type (might be due to invalid IL or missing references) //IL_411a: Unknown result type (might be due to invalid IL or missing references) //IL_411f: Unknown result type (might be due to invalid IL or missing references) //IL_4125: Unknown result type (might be due to invalid IL or missing references) //IL_412a: Unknown result type (might be due to invalid IL or missing references) //IL_4130: Unknown result type (might be due to invalid IL or missing references) //IL_4135: Unknown result type (might be due to invalid IL or missing references) //IL_413b: Unknown result type (might be due to invalid IL or missing references) //IL_4145: Unknown result type (might be due to invalid IL or missing references) //IL_414a: Unknown result type (might be due to invalid IL or missing references) //IL_4156: Unknown result type (might be due to invalid IL or missing references) //IL_4170: Unknown result type (might be due to invalid IL or missing references) //IL_4176: Unknown result type (might be due to invalid IL or missing references) //IL_417b: Unknown result type (might be due to invalid IL or missing references) //IL_4181: Unknown result type (might be due to invalid IL or missing references) //IL_4186: Unknown result type (might be due to invalid IL or missing references) //IL_418c: Unknown result type (might be due to invalid IL or missing references) //IL_4196: Unknown result type (might be due to invalid IL or missing references) //IL_419b: Unknown result type (might be due to invalid IL or missing references) //IL_41a1: Unknown result type (might be due to invalid IL or missing references) //IL_41a6: Unknown result type (might be due to invalid IL or missing references) //IL_41ac: Unknown result type (might be due to invalid IL or missing references) //IL_41b6: Unknown result type (might be due to invalid IL or missing references) //IL_41bb: Unknown result type (might be due to invalid IL or missing references) //IL_41c6: Unknown result type (might be due to invalid IL or missing references) //IL_41cc: Unknown result type (might be due to invalid IL or missing references) //IL_41d1: Unknown result type (might be due to invalid IL or missing references) //IL_41d7: Unknown result type (might be due to invalid IL or missing references) //IL_41dc: Unknown result type (might be due to invalid IL or missing references) //IL_41e2: Unknown result type (might be due to invalid IL or missing references) //IL_41e7: Unknown result type (might be due to invalid IL or missing references) //IL_41ed: Unknown result type (might be due to invalid IL or missing references) //IL_41f7: Unknown result type (might be due to invalid IL or missing references) //IL_41fc: Unknown result type (might be due to invalid IL or missing references) //IL_4208: Unknown result type (might be due to invalid IL or missing references) if (switching || !ledgeSwitchingDetectors.allowLedgeSwitching || !grabbedOn) { return; } if (!Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + minDistFromGroundHeight2 + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + rightWidth * 1.596f + firstSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + rightWidth * 1.596f + firstSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + rightWidth * 1.596f + firstSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + rightWidth * 1.596f + firstSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 0.375f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 0.75f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 1.125f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !r1MiddleSurfaceDetectorsHit && !r1MiddleHit && r1FirstForwardSurfaceDetectorsHit && r1FirstForwardHit) { r1FirstForwardTimer += 0.01f; if (r1FirstForwardTimer > 0.1f || rotTimer > 0f) { r1FirstForwardClear = true; } else { r1FirstForwardClear = false; } } else { r1FirstForwardTimer = 0f; r1FirstForwardClear = false; } if (!Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + minDistFromGroundHeight2 + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + rightWidth * 1.596f + secondSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + rightWidth * 1.596f + secondSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + rightWidth * 1.596f + secondSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + rightWidth * 1.596f + secondSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 0.375f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 0.75f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 1.125f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !r2MiddleSurfaceDetectorsHit && !r2MiddleHit && r2FirstForwardSurfaceDetectorsHit && r2FirstForwardHit) { r2FirstForwardTimer += 0.01f; if (r2FirstForwardTimer > 0.1f || rotTimer > 0f) { r2FirstForwardClear = true; } else { r2FirstForwardClear = false; } } else { r2FirstForwardTimer = 0f; r2FirstForwardClear = false; } if (!Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + minDistFromGroundHeight2 + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2 + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + rightWidth * 1.596f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + rightWidth * 1.596f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + rightWidth * 1.596f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + rightWidth * 1.596f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 0.375f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 0.75f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 1.125f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !r3MiddleSurfaceDetectorsHit && !r3MiddleHit && r3FirstForwardSurfaceDetectorsHit && r3FirstForwardHit) { r3FirstForwardTimer += 0.01f; if (r3FirstForwardTimer > 0.1f || rotTimer > 0f) { r3FirstForwardClear = true; } else { r3FirstForwardClear = false; } } else { r3FirstForwardTimer = 0f; r3FirstForwardClear = false; } } private void LedgeSwitchingClearMiddleRight() { //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_0054: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_006a: Unknown result type (might be due to invalid IL or missing references) //IL_006f: Unknown result type (might be due to invalid IL or missing references) //IL_007a: Unknown result type (might be due to invalid IL or missing references) //IL_0080: Unknown result type (might be due to invalid IL or missing references) //IL_0085: Unknown result type (might be due to invalid IL or missing references) //IL_008b: Unknown result type (might be due to invalid IL or missing references) //IL_0095: Unknown result type (might be due to invalid IL or missing references) //IL_009a: Unknown result type (might be due to invalid IL or missing references) //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_00a5: Unknown result type (might be due to invalid IL or missing references) //IL_00ab: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) //IL_00ba: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_00cb: Unknown result type (might be due to invalid IL or missing references) //IL_00d0: Unknown result type (might be due to invalid IL or missing references) //IL_00dc: Unknown result type (might be due to invalid IL or missing references) //IL_00f6: Unknown result type (might be due to invalid IL or missing references) //IL_00fc: Unknown result type (might be due to invalid IL or missing references) //IL_0101: Unknown result type (might be due to invalid IL or missing references) //IL_0107: Unknown result type (might be due to invalid IL or missing references) //IL_010c: Unknown result type (might be due to invalid IL or missing references) //IL_0112: Unknown result type (might be due to invalid IL or missing references) //IL_011c: Unknown result type (might be due to invalid IL or missing references) //IL_0121: Unknown result type (might be due to invalid IL or missing references) //IL_0127: Unknown result type (might be due to invalid IL or missing references) //IL_012c: Unknown result type (might be due to invalid IL or missing references) //IL_0132: Unknown result type (might be due to invalid IL or missing references) //IL_013c: Unknown result type (might be due to invalid IL or missing references) //IL_0141: Unknown result type (might be due to invalid IL or missing references) //IL_0147: Unknown result type (might be due to invalid IL or missing references) //IL_014c: Unknown result type (might be due to invalid IL or missing references) //IL_0152: Unknown result type (might be due to invalid IL or missing references) //IL_0157: Unknown result type (might be due to invalid IL or missing references) //IL_0162: Unknown result type (might be due to invalid IL or missing references) //IL_0168: Unknown result type (might be due to invalid IL or missing references) //IL_016d: Unknown result type (might be due to invalid IL or missing references) //IL_0173: Unknown result type (might be due to invalid IL or missing references) //IL_017d: Unknown result type (might be due to invalid IL or missing references) //IL_0182: Unknown result type (might be due to invalid IL or missing references) //IL_0188: Unknown result type (might be due to invalid IL or missing references) //IL_0192: Unknown result type (might be due to invalid IL or missing references) //IL_0197: Unknown result type (might be due to invalid IL or missing references) //IL_019d: Unknown result type (might be due to invalid IL or missing references) //IL_01a2: Unknown result type (might be due to invalid IL or missing references) //IL_01a8: Unknown result type (might be due to invalid IL or missing references) //IL_01ad: Unknown result type (might be due to invalid IL or missing references) //IL_01b3: Unknown result type (might be due to invalid IL or missing references) //IL_01bd: Unknown result type (might be due to invalid IL or missing references) //IL_01c2: Unknown result type (might be due to invalid IL or missing references) //IL_01c8: Unknown result type (might be due to invalid IL or missing references) //IL_01cd: Unknown result type (might be due to invalid IL or missing references) //IL_01d3: Unknown result type (might be due to invalid IL or missing references) //IL_01d8: Unknown result type (might be due to invalid IL or missing references) //IL_01e4: Unknown result type (might be due to invalid IL or missing references) //IL_1588: Unknown result type (might be due to invalid IL or missing references) //IL_158e: Unknown result type (might be due to invalid IL or missing references) //IL_1593: Unknown result type (might be due to invalid IL or missing references) //IL_1599: Unknown result type (might be due to invalid IL or missing references) //IL_159e: Unknown result type (might be due to invalid IL or missing references) //IL_15a4: Unknown result type (might be due to invalid IL or missing references) //IL_15ae: Unknown result type (might be due to invalid IL or missing references) //IL_15b3: Unknown result type (might be due to invalid IL or missing references) //IL_15b9: Unknown result type (might be due to invalid IL or missing references) //IL_15be: Unknown result type (might be due to invalid IL or missing references) //IL_15c4: Unknown result type (might be due to invalid IL or missing references) //IL_15c9: Unknown result type (might be due to invalid IL or missing references) //IL_15d4: Unknown result type (might be due to invalid IL or missing references) //IL_15da: Unknown result type (might be due to invalid IL or missing references) //IL_15df: Unknown result type (might be due to invalid IL or missing references) //IL_15e5: Unknown result type (might be due to invalid IL or missing references) //IL_15ef: Unknown result type (might be due to invalid IL or missing references) //IL_15f4: Unknown result type (might be due to invalid IL or missing references) //IL_15fa: Unknown result type (might be due to invalid IL or missing references) //IL_15ff: Unknown result type (might be due to invalid IL or missing references) //IL_1605: Unknown result type (might be due to invalid IL or missing references) //IL_160f: Unknown result type (might be due to invalid IL or missing references) //IL_1614: Unknown result type (might be due to invalid IL or missing references) //IL_161a: Unknown result type (might be due to invalid IL or missing references) //IL_161f: Unknown result type (might be due to invalid IL or missing references) //IL_1625: Unknown result type (might be due to invalid IL or missing references) //IL_162a: Unknown result type (might be due to invalid IL or missing references) //IL_1636: Unknown result type (might be due to invalid IL or missing references) //IL_01fe: Unknown result type (might be due to invalid IL or missing references) //IL_0204: Unknown result type (might be due to invalid IL or missing references) //IL_0209: Unknown result type (might be due to invalid IL or missing references) //IL_020f: Unknown result type (might be due to invalid IL or missing references) //IL_0214: Unknown result type (might be due to invalid IL or missing references) //IL_021a: Unknown result type (might be due to invalid IL or missing references) //IL_0224: Unknown result type (might be due to invalid IL or missing references) //IL_0229: Unknown result type (might be due to invalid IL or missing references) //IL_022f: Unknown result type (might be due to invalid IL or missing references) //IL_0234: Unknown result type (might be due to invalid IL or missing references) //IL_023a: Unknown result type (might be due to invalid IL or missing references) //IL_0244: Unknown result type (might be due to invalid IL or missing references) //IL_0249: Unknown result type (might be due to invalid IL or missing references) //IL_024f: Unknown result type (might be due to invalid IL or missing references) //IL_0254: Unknown result type (might be due to invalid IL or missing references) //IL_025a: Unknown result type (might be due to invalid IL or missing references) //IL_025f: Unknown result type (might be due to invalid IL or missing references) //IL_026a: Unknown result type (might be due to invalid IL or missing references) //IL_0270: Unknown result type (might be due to invalid IL or missing references) //IL_0275: Unknown result type (might be due to invalid IL or missing references) //IL_027b: Unknown result type (might be due to invalid IL or missing references) //IL_0285: Unknown result type (might be due to invalid IL or missing references) //IL_028a: Unknown result type (might be due to invalid IL or missing references) //IL_0290: Unknown result type (might be due to invalid IL or missing references) //IL_029a: Unknown result type (might be due to invalid IL or missing references) //IL_029f: Unknown result type (might be due to invalid IL or missing references) //IL_02a5: Unknown result type (might be due to invalid IL or missing references) //IL_02aa: Unknown result type (might be due to invalid IL or missing references) //IL_02b0: Unknown result type (might be due to invalid IL or missing references) //IL_02b5: Unknown result type (might be due to invalid IL or missing references) //IL_02bb: Unknown result type (might be due to invalid IL or missing references) //IL_02c5: Unknown result type (might be due to invalid IL or missing references) //IL_02ca: Unknown result type (might be due to invalid IL or missing references) //IL_02d0: Unknown result type (might be due to invalid IL or missing references) //IL_02d5: Unknown result type (might be due to invalid IL or missing references) //IL_02db: Unknown result type (might be due to invalid IL or missing references) //IL_02e0: Unknown result type (might be due to invalid IL or missing references) //IL_02ec: Unknown result type (might be due to invalid IL or missing references) //IL_1650: Unknown result type (might be due to invalid IL or missing references) //IL_1656: Unknown result type (might be due to invalid IL or missing references) //IL_165b: Unknown result type (might be due to invalid IL or missing references) //IL_1661: Unknown result type (might be due to invalid IL or missing references) //IL_1666: Unknown result type (might be due to invalid IL or missing references) //IL_166c: Unknown result type (might be due to invalid IL or missing references) //IL_1676: Unknown result type (might be due to invalid IL or missing references) //IL_167b: Unknown result type (might be due to invalid IL or missing references) //IL_1681: Unknown result type (might be due to invalid IL or missing references) //IL_1686: Unknown result type (might be due to invalid IL or missing references) //IL_168c: Unknown result type (might be due to invalid IL or missing references) //IL_1696: Unknown result type (might be due to invalid IL or missing references) //IL_169b: Unknown result type (might be due to invalid IL or missing references) //IL_16a1: Unknown result type (might be due to invalid IL or missing references) //IL_16a6: Unknown result type (might be due to invalid IL or missing references) //IL_16ac: Unknown result type (might be due to invalid IL or missing references) //IL_16b1: Unknown result type (might be due to invalid IL or missing references) //IL_16bc: Unknown result type (might be due to invalid IL or missing references) //IL_16c2: Unknown result type (might be due to invalid IL or missing references) //IL_16c7: Unknown result type (might be due to invalid IL or missing references) //IL_16cd: Unknown result type (might be due to invalid IL or missing references) //IL_16d7: Unknown result type (might be due to invalid IL or missing references) //IL_16dc: Unknown result type (might be due to invalid IL or missing references) //IL_16e2: Unknown result type (might be due to invalid IL or missing references) //IL_16ec: Unknown result type (might be due to invalid IL or missing references) //IL_16f1: Unknown result type (might be due to invalid IL or missing references) //IL_16f7: Unknown result type (might be due to invalid IL or missing references) //IL_16fc: Unknown result type (might be due to invalid IL or missing references) //IL_1702: Unknown result type (might be due to invalid IL or missing references) //IL_1707: Unknown result type (might be due to invalid IL or missing references) //IL_170d: Unknown result type (might be due to invalid IL or missing references) //IL_1717: Unknown result type (might be due to invalid IL or missing references) //IL_171c: Unknown result type (might be due to invalid IL or missing references) //IL_1722: Unknown result type (might be due to invalid IL or missing references) //IL_1727: Unknown result type (might be due to invalid IL or missing references) //IL_172d: Unknown result type (might be due to invalid IL or missing references) //IL_1732: Unknown result type (might be due to invalid IL or missing references) //IL_173e: Unknown result type (might be due to invalid IL or missing references) //IL_0306: Unknown result type (might be due to invalid IL or missing references) //IL_030c: Unknown result type (might be due to invalid IL or missing references) //IL_0311: Unknown result type (might be due to invalid IL or missing references) //IL_031c: Unknown result type (might be due to invalid IL or missing references) //IL_0322: Unknown result type (might be due to invalid IL or missing references) //IL_0327: Unknown result type (might be due to invalid IL or missing references) //IL_032d: Unknown result type (might be due to invalid IL or missing references) //IL_0337: Unknown result type (might be due to invalid IL or missing references) //IL_033c: Unknown result type (might be due to invalid IL or missing references) //IL_0342: Unknown result type (might be due to invalid IL or missing references) //IL_034c: Unknown result type (might be due to invalid IL or missing references) //IL_0351: Unknown result type (might be due to invalid IL or missing references) //IL_0357: Unknown result type (might be due to invalid IL or missing references) //IL_035c: Unknown result type (might be due to invalid IL or missing references) //IL_0362: Unknown result type (might be due to invalid IL or missing references) //IL_0367: Unknown result type (might be due to invalid IL or missing references) //IL_037f: Unknown result type (might be due to invalid IL or missing references) //IL_0384: Unknown result type (might be due to invalid IL or missing references) //IL_039c: Unknown result type (might be due to invalid IL or missing references) //IL_03a2: Unknown result type (might be due to invalid IL or missing references) //IL_03ac: Unknown result type (might be due to invalid IL or missing references) //IL_03b1: Unknown result type (might be due to invalid IL or missing references) //IL_03b7: Unknown result type (might be due to invalid IL or missing references) //IL_03bc: Unknown result type (might be due to invalid IL or missing references) //IL_03c7: Unknown result type (might be due to invalid IL or missing references) //IL_03cd: Unknown result type (might be due to invalid IL or missing references) //IL_03d2: Unknown result type (might be due to invalid IL or missing references) //IL_03dd: Unknown result type (might be due to invalid IL or missing references) //IL_03e3: Unknown result type (might be due to invalid IL or missing references) //IL_03e8: Unknown result type (might be due to invalid IL or missing references) //IL_03ee: Unknown result type (might be due to invalid IL or missing references) //IL_03f8: Unknown result type (might be due to invalid IL or missing references) //IL_03fd: Unknown result type (might be due to invalid IL or missing references) //IL_0403: Unknown result type (might be due to invalid IL or missing references) //IL_040d: Unknown result type (might be due to invalid IL or missing references) //IL_0412: Unknown result type (might be due to invalid IL or missing references) //IL_0418: Unknown result type (might be due to invalid IL or missing references) //IL_041d: Unknown result type (might be due to invalid IL or missing references) //IL_0423: Unknown result type (might be due to invalid IL or missing references) //IL_0428: Unknown result type (might be due to invalid IL or missing references) //IL_0440: Unknown result type (might be due to invalid IL or missing references) //IL_0445: Unknown result type (might be due to invalid IL or missing references) //IL_045d: Unknown result type (might be due to invalid IL or missing references) //IL_0463: Unknown result type (might be due to invalid IL or missing references) //IL_046d: Unknown result type (might be due to invalid IL or missing references) //IL_0472: Unknown result type (might be due to invalid IL or missing references) //IL_0478: Unknown result type (might be due to invalid IL or missing references) //IL_047d: Unknown result type (might be due to invalid IL or missing references) //IL_0489: Unknown result type (might be due to invalid IL or missing references) //IL_2ae2: Unknown result type (might be due to invalid IL or missing references) //IL_2ae8: Unknown result type (might be due to invalid IL or missing references) //IL_2aed: Unknown result type (might be due to invalid IL or missing references) //IL_2af3: Unknown result type (might be due to invalid IL or missing references) //IL_2af8: Unknown result type (might be due to invalid IL or missing references) //IL_2afe: Unknown result type (might be due to invalid IL or missing references) //IL_2b08: Unknown result type (might be due to invalid IL or missing references) //IL_2b0d: Unknown result type (might be due to invalid IL or missing references) //IL_2b13: Unknown result type (might be due to invalid IL or missing references) //IL_2b18: Unknown result type (might be due to invalid IL or missing references) //IL_2b1e: Unknown result type (might be due to invalid IL or missing references) //IL_2b23: Unknown result type (might be due to invalid IL or missing references) //IL_2b2e: Unknown result type (might be due to invalid IL or missing references) //IL_2b34: Unknown result type (might be due to invalid IL or missing references) //IL_2b39: Unknown result type (might be due to invalid IL or missing references) //IL_2b3f: Unknown result type (might be due to invalid IL or missing references) //IL_2b49: Unknown result type (might be due to invalid IL or missing references) //IL_2b4e: Unknown result type (might be due to invalid IL or missing references) //IL_2b54: Unknown result type (might be due to invalid IL or missing references) //IL_2b59: Unknown result type (might be due to invalid IL or missing references) //IL_2b5f: Unknown result type (might be due to invalid IL or missing references) //IL_2b69: Unknown result type (might be due to invalid IL or missing references) //IL_2b6e: Unknown result type (might be due to invalid IL or missing references) //IL_2b74: Unknown result type (might be due to invalid IL or missing references) //IL_2b79: Unknown result type (might be due to invalid IL or missing references) //IL_2b7f: Unknown result type (might be due to invalid IL or missing references) //IL_2b84: Unknown result type (might be due to invalid IL or missing references) //IL_2b90: Unknown result type (might be due to invalid IL or missing references) //IL_1758: Unknown result type (might be due to invalid IL or missing references) //IL_175e: Unknown result type (might be due to invalid IL or missing references) //IL_1763: Unknown result type (might be due to invalid IL or missing references) //IL_1769: Unknown result type (might be due to invalid IL or missing references) //IL_176e: Unknown result type (might be due to invalid IL or missing references) //IL_1774: Unknown result type (might be due to invalid IL or missing references) //IL_177e: Unknown result type (might be due to invalid IL or missing references) //IL_1783: Unknown result type (might be due to invalid IL or missing references) //IL_1789: Unknown result type (might be due to invalid IL or missing references) //IL_178e: Unknown result type (might be due to invalid IL or missing references) //IL_1794: Unknown result type (might be due to invalid IL or missing references) //IL_179e: Unknown result type (might be due to invalid IL or missing references) //IL_17a3: Unknown result type (might be due to invalid IL or missing references) //IL_17a9: Unknown result type (might be due to invalid IL or missing references) //IL_17ae: Unknown result type (might be due to invalid IL or missing references) //IL_17b4: Unknown result type (might be due to invalid IL or missing references) //IL_17b9: Unknown result type (might be due to invalid IL or missing references) //IL_17c4: Unknown result type (might be due to invalid IL or missing references) //IL_17ca: Unknown result type (might be due to invalid IL or missing references) //IL_17cf: Unknown result type (might be due to invalid IL or missing references) //IL_17d5: Unknown result type (might be due to invalid IL or missing references) //IL_17df: Unknown result type (might be due to invalid IL or missing references) //IL_17e4: Unknown result type (might be due to invalid IL or missing references) //IL_17ea: Unknown result type (might be due to invalid IL or missing references) //IL_17f4: Unknown result type (might be due to invalid IL or missing references) //IL_17f9: Unknown result type (might be due to invalid IL or missing references) //IL_17ff: Unknown result type (might be due to invalid IL or missing references) //IL_1804: Unknown result type (might be due to invalid IL or missing references) //IL_180a: Unknown result type (might be due to invalid IL or missing references) //IL_180f: Unknown result type (might be due to invalid IL or missing references) //IL_1815: Unknown result type (might be due to invalid IL or missing references) //IL_181f: Unknown result type (might be due to invalid IL or missing references) //IL_1824: Unknown result type (might be due to invalid IL or missing references) //IL_182a: Unknown result type (might be due to invalid IL or missing references) //IL_182f: Unknown result type (might be due to invalid IL or missing references) //IL_1835: Unknown result type (might be due to invalid IL or missing references) //IL_183a: Unknown result type (might be due to invalid IL or missing references) //IL_1846: Unknown result type (might be due to invalid IL or missing references) //IL_04a3: Unknown result type (might be due to invalid IL or missing references) //IL_04a9: Unknown result type (might be due to invalid IL or missing references) //IL_04ae: Unknown result type (might be due to invalid IL or missing references) //IL_04b9: Unknown result type (might be due to invalid IL or missing references) //IL_04bf: Unknown result type (might be due to invalid IL or missing references) //IL_04c4: Unknown result type (might be due to invalid IL or missing references) //IL_04ca: Unknown result type (might be due to invalid IL or missing references) //IL_04d4: Unknown result type (might be due to invalid IL or missing references) //IL_04d9: Unknown result type (might be due to invalid IL or missing references) //IL_04df: Unknown result type (might be due to invalid IL or missing references) //IL_04e9: Unknown result type (might be due to invalid IL or missing references) //IL_04ee: Unknown result type (might be due to invalid IL or missing references) //IL_04f4: Unknown result type (might be due to invalid IL or missing references) //IL_04f9: Unknown result type (might be due to invalid IL or missing references) //IL_04ff: Unknown result type (might be due to invalid IL or missing references) //IL_0504: Unknown result type (might be due to invalid IL or missing references) //IL_051c: Unknown result type (might be due to invalid IL or missing references) //IL_0521: Unknown result type (might be due to invalid IL or missing references) //IL_0539: Unknown result type (might be due to invalid IL or missing references) //IL_053f: Unknown result type (might be due to invalid IL or missing references) //IL_0549: Unknown result type (might be due to invalid IL or missing references) //IL_054e: Unknown result type (might be due to invalid IL or missing references) //IL_0554: Unknown result type (might be due to invalid IL or missing references) //IL_0559: Unknown result type (might be due to invalid IL or missing references) //IL_0564: Unknown result type (might be due to invalid IL or missing references) //IL_056a: Unknown result type (might be due to invalid IL or missing references) //IL_056f: Unknown result type (might be due to invalid IL or missing references) //IL_057a: Unknown result type (might be due to invalid IL or missing references) //IL_0580: Unknown result type (might be due to invalid IL or missing references) //IL_0585: Unknown result type (might be due to invalid IL or missing references) //IL_058b: Unknown result type (might be due to invalid IL or missing references) //IL_0595: Unknown result type (might be due to invalid IL or missing references) //IL_059a: Unknown result type (might be due to invalid IL or missing references) //IL_05a0: Unknown result type (might be due to invalid IL or missing references) //IL_05aa: Unknown result type (might be due to invalid IL or missing references) //IL_05af: Unknown result type (might be due to invalid IL or missing references) //IL_05b5: Unknown result type (might be due to invalid IL or missing references) //IL_05ba: Unknown result type (might be due to invalid IL or missing references) //IL_05c0: Unknown result type (might be due to invalid IL or missing references) //IL_05c5: Unknown result type (might be due to invalid IL or missing references) //IL_05dd: Unknown result type (might be due to invalid IL or missing references) //IL_05e2: Unknown result type (might be due to invalid IL or missing references) //IL_05fa: Unknown result type (might be due to invalid IL or missing references) //IL_0600: Unknown result type (might be due to invalid IL or missing references) //IL_060a: Unknown result type (might be due to invalid IL or missing references) //IL_060f: Unknown result type (might be due to invalid IL or missing references) //IL_0615: Unknown result type (might be due to invalid IL or missing references) //IL_061a: Unknown result type (might be due to invalid IL or missing references) //IL_0626: Unknown result type (might be due to invalid IL or missing references) //IL_2baa: Unknown result type (might be due to invalid IL or missing references) //IL_2bb0: Unknown result type (might be due to invalid IL or missing references) //IL_2bb5: Unknown result type (might be due to invalid IL or missing references) //IL_2bbb: Unknown result type (might be due to invalid IL or missing references) //IL_2bc0: Unknown result type (might be due to invalid IL or missing references) //IL_2bc6: Unknown result type (might be due to invalid IL or missing references) //IL_2bd0: Unknown result type (might be due to invalid IL or missing references) //IL_2bd5: Unknown result type (might be due to invalid IL or missing references) //IL_2bdb: Unknown result type (might be due to invalid IL or missing references) //IL_2be0: Unknown result type (might be due to invalid IL or missing references) //IL_2be6: Unknown result type (might be due to invalid IL or missing references) //IL_2bf0: Unknown result type (might be due to invalid IL or missing references) //IL_2bf5: Unknown result type (might be due to invalid IL or missing references) //IL_2bfb: Unknown result type (might be due to invalid IL or missing references) //IL_2c00: Unknown result type (might be due to invalid IL or missing references) //IL_2c06: Unknown result type (might be due to invalid IL or missing references) //IL_2c0b: Unknown result type (might be due to invalid IL or missing references) //IL_2c16: Unknown result type (might be due to invalid IL or missing references) //IL_2c1c: Unknown result type (might be due to invalid IL or missing references) //IL_2c21: Unknown result type (might be due to invalid IL or missing references) //IL_2c27: Unknown result type (might be due to invalid IL or missing references) //IL_2c31: Unknown result type (might be due to invalid IL or missing references) //IL_2c36: Unknown result type (might be due to invalid IL or missing references) //IL_2c3c: Unknown result type (might be due to invalid IL or missing references) //IL_2c46: Unknown result type (might be due to invalid IL or missing references) //IL_2c4b: Unknown result type (might be due to invalid IL or missing references) //IL_2c51: Unknown result type (might be due to invalid IL or missing references) //IL_2c56: Unknown result type (might be due to invalid IL or missing references) //IL_2c5c: Unknown result type (might be due to invalid IL or missing references) //IL_2c61: Unknown result type (might be due to invalid IL or missing references) //IL_2c67: Unknown result type (might be due to invalid IL or missing references) //IL_2c71: Unknown result type (might be due to invalid IL or missing references) //IL_2c76: Unknown result type (might be due to invalid IL or missing references) //IL_2c7c: Unknown result type (might be due to invalid IL or missing references) //IL_2c81: Unknown result type (might be due to invalid IL or missing references) //IL_2c87: Unknown result type (might be due to invalid IL or missing references) //IL_2c8c: Unknown result type (might be due to invalid IL or missing references) //IL_2c98: Unknown result type (might be due to invalid IL or missing references) //IL_1860: Unknown result type (might be due to invalid IL or missing references) //IL_1866: Unknown result type (might be due to invalid IL or missing references) //IL_186b: Unknown result type (might be due to invalid IL or missing references) //IL_1876: Unknown result type (might be due to invalid IL or missing references) //IL_187c: Unknown result type (might be due to invalid IL or missing references) //IL_1881: Unknown result type (might be due to invalid IL or missing references) //IL_1887: Unknown result type (might be due to invalid IL or missing references) //IL_1891: Unknown result type (might be due to invalid IL or missing references) //IL_1896: Unknown result type (might be due to invalid IL or missing references) //IL_189c: Unknown result type (might be due to invalid IL or missing references) //IL_18a6: Unknown result type (might be due to invalid IL or missing references) //IL_18ab: Unknown result type (might be due to invalid IL or missing references) //IL_18b1: Unknown result type (might be due to invalid IL or missing references) //IL_18b6: Unknown result type (might be due to invalid IL or missing references) //IL_18bc: Unknown result type (might be due to invalid IL or missing references) //IL_18c1: Unknown result type (might be due to invalid IL or missing references) //IL_18d9: Unknown result type (might be due to invalid IL or missing references) //IL_18de: Unknown result type (might be due to invalid IL or missing references) //IL_18f6: Unknown result type (might be due to invalid IL or missing references) //IL_18fc: Unknown result type (might be due to invalid IL or missing references) //IL_1906: Unknown result type (might be due to invalid IL or missing references) //IL_190b: Unknown result type (might be due to invalid IL or missing references) //IL_1911: Unknown result type (might be due to invalid IL or missing references) //IL_1916: Unknown result type (might be due to invalid IL or missing references) //IL_1921: Unknown result type (might be due to invalid IL or missing references) //IL_1927: Unknown result type (might be due to invalid IL or missing references) //IL_192c: Unknown result type (might be due to invalid IL or missing references) //IL_1937: Unknown result type (might be due to invalid IL or missing references) //IL_193d: Unknown result type (might be due to invalid IL or missing references) //IL_1942: Unknown result type (might be due to invalid IL or missing references) //IL_1948: Unknown result type (might be due to invalid IL or missing references) //IL_1952: Unknown result type (might be due to invalid IL or missing references) //IL_1957: Unknown result type (might be due to invalid IL or missing references) //IL_195d: Unknown result type (might be due to invalid IL or missing references) //IL_1967: Unknown result type (might be due to invalid IL or missing references) //IL_196c: Unknown result type (might be due to invalid IL or missing references) //IL_1972: Unknown result type (might be due to invalid IL or missing references) //IL_1977: Unknown result type (might be due to invalid IL or missing references) //IL_197d: Unknown result type (might be due to invalid IL or missing references) //IL_1982: Unknown result type (might be due to invalid IL or missing references) //IL_199a: Unknown result type (might be due to invalid IL or missing references) //IL_199f: Unknown result type (might be due to invalid IL or missing references) //IL_19b7: Unknown result type (might be due to invalid IL or missing references) //IL_19bd: Unknown result type (might be due to invalid IL or missing references) //IL_19c7: Unknown result type (might be due to invalid IL or missing references) //IL_19cc: Unknown result type (might be due to invalid IL or missing references) //IL_19d2: Unknown result type (might be due to invalid IL or missing references) //IL_19d7: Unknown result type (might be due to invalid IL or missing references) //IL_19e3: Unknown result type (might be due to invalid IL or missing references) //IL_0640: Unknown result type (might be due to invalid IL or missing references) //IL_0646: Unknown result type (might be due to invalid IL or missing references) //IL_064b: Unknown result type (might be due to invalid IL or missing references) //IL_0651: Unknown result type (might be due to invalid IL or missing references) //IL_065b: Unknown result type (might be due to invalid IL or missing references) //IL_0660: Unknown result type (might be due to invalid IL or missing references) //IL_0666: Unknown result type (might be due to invalid IL or missing references) //IL_066b: Unknown result type (might be due to invalid IL or missing references) //IL_0671: Unknown result type (might be due to invalid IL or missing references) //IL_067b: Unknown result type (might be due to invalid IL or missing references) //IL_0680: Unknown result type (might be due to invalid IL or missing references) //IL_0686: Unknown result type (might be due to invalid IL or missing references) //IL_068b: Unknown result type (might be due to invalid IL or missing references) //IL_0696: Unknown result type (might be due to invalid IL or missing references) //IL_069c: Unknown result type (might be due to invalid IL or missing references) //IL_06a1: Unknown result type (might be due to invalid IL or missing references) //IL_06a7: Unknown result type (might be due to invalid IL or missing references) //IL_06b1: Unknown result type (might be due to invalid IL or missing references) //IL_06b6: Unknown result type (might be due to invalid IL or missing references) //IL_06bc: Unknown result type (might be due to invalid IL or missing references) //IL_06c1: Unknown result type (might be due to invalid IL or missing references) //IL_06c7: Unknown result type (might be due to invalid IL or missing references) //IL_06d1: Unknown result type (might be due to invalid IL or missing references) //IL_06d6: Unknown result type (might be due to invalid IL or missing references) //IL_06dc: Unknown result type (might be due to invalid IL or missing references) //IL_06e1: Unknown result type (might be due to invalid IL or missing references) //IL_06ed: Unknown result type (might be due to invalid IL or missing references) //IL_2cb2: Unknown result type (might be due to invalid IL or missing references) //IL_2cb8: Unknown result type (might be due to invalid IL or missing references) //IL_2cbd: Unknown result type (might be due to invalid IL or missing references) //IL_2cc3: Unknown result type (might be due to invalid IL or missing references) //IL_2cc8: Unknown result type (might be due to invalid IL or missing references) //IL_2cce: Unknown result type (might be due to invalid IL or missing references) //IL_2cd8: Unknown result type (might be due to invalid IL or missing references) //IL_2cdd: Unknown result type (might be due to invalid IL or missing references) //IL_2ce3: Unknown result type (might be due to invalid IL or missing references) //IL_2ce8: Unknown result type (might be due to invalid IL or missing references) //IL_2cee: Unknown result type (might be due to invalid IL or missing references) //IL_2cf8: Unknown result type (might be due to invalid IL or missing references) //IL_2cfd: Unknown result type (might be due to invalid IL or missing references) //IL_2d03: Unknown result type (might be due to invalid IL or missing references) //IL_2d08: Unknown result type (might be due to invalid IL or missing references) //IL_2d0e: Unknown result type (might be due to invalid IL or missing references) //IL_2d13: Unknown result type (might be due to invalid IL or missing references) //IL_2d1e: Unknown result type (might be due to invalid IL or missing references) //IL_2d24: Unknown result type (might be due to invalid IL or missing references) //IL_2d29: Unknown result type (might be due to invalid IL or missing references) //IL_2d2f: Unknown result type (might be due to invalid IL or missing references) //IL_2d39: Unknown result type (might be due to invalid IL or missing references) //IL_2d3e: Unknown result type (might be due to invalid IL or missing references) //IL_2d44: Unknown result type (might be due to invalid IL or missing references) //IL_2d4e: Unknown result type (might be due to invalid IL or missing references) //IL_2d53: Unknown result type (might be due to invalid IL or missing references) //IL_2d59: Unknown result type (might be due to invalid IL or missing references) //IL_2d5e: Unknown result type (might be due to invalid IL or missing references) //IL_2d64: Unknown result type (might be due to invalid IL or missing references) //IL_2d69: Unknown result type (might be due to invalid IL or missing references) //IL_2d6f: Unknown result type (might be due to invalid IL or missing references) //IL_2d79: Unknown result type (might be due to invalid IL or missing references) //IL_2d7e: Unknown result type (might be due to invalid IL or missing references) //IL_2d84: Unknown result type (might be due to invalid IL or missing references) //IL_2d89: Unknown result type (might be due to invalid IL or missing references) //IL_2d8f: Unknown result type (might be due to invalid IL or missing references) //IL_2d94: Unknown result type (might be due to invalid IL or missing references) //IL_2da0: Unknown result type (might be due to invalid IL or missing references) //IL_19fd: Unknown result type (might be due to invalid IL or missing references) //IL_1a03: Unknown result type (might be due to invalid IL or missing references) //IL_1a08: Unknown result type (might be due to invalid IL or missing references) //IL_1a13: Unknown result type (might be due to invalid IL or missing references) //IL_1a19: Unknown result type (might be due to invalid IL or missing references) //IL_1a1e: Unknown result type (might be due to invalid IL or missing references) //IL_1a24: Unknown result type (might be due to invalid IL or missing references) //IL_1a2e: Unknown result type (might be due to invalid IL or missing references) //IL_1a33: Unknown result type (might be due to invalid IL or missing references) //IL_1a39: Unknown result type (might be due to invalid IL or missing references) //IL_1a43: Unknown result type (might be due to invalid IL or missing references) //IL_1a48: Unknown result type (might be due to invalid IL or missing references) //IL_1a4e: Unknown result type (might be due to invalid IL or missing references) //IL_1a53: Unknown result type (might be due to invalid IL or missing references) //IL_1a59: Unknown result type (might be due to invalid IL or missing references) //IL_1a5e: Unknown result type (might be due to invalid IL or missing references) //IL_1a76: Unknown result type (might be due to invalid IL or missing references) //IL_1a7b: Unknown result type (might be due to invalid IL or missing references) //IL_1a93: Unknown result type (might be due to invalid IL or missing references) //IL_1a99: Unknown result type (might be due to invalid IL or missing references) //IL_1aa3: Unknown result type (might be due to invalid IL or missing references) //IL_1aa8: Unknown result type (might be due to invalid IL or missing references) //IL_1aae: Unknown result type (might be due to invalid IL or missing references) //IL_1ab3: Unknown result type (might be due to invalid IL or missing references) //IL_1abe: Unknown result type (might be due to invalid IL or missing references) //IL_1ac4: Unknown result type (might be due to invalid IL or missing references) //IL_1ac9: Unknown result type (might be due to invalid IL or missing references) //IL_1ad4: Unknown result type (might be due to invalid IL or missing references) //IL_1ada: Unknown result type (might be due to invalid IL or missing references) //IL_1adf: Unknown result type (might be due to invalid IL or missing references) //IL_1ae5: Unknown result type (might be due to invalid IL or missing references) //IL_1aef: Unknown result type (might be due to invalid IL or missing references) //IL_1af4: Unknown result type (might be due to invalid IL or missing references) //IL_1afa: Unknown result type (might be due to invalid IL or missing references) //IL_1b04: Unknown result type (might be due to invalid IL or missing references) //IL_1b09: Unknown result type (might be due to invalid IL or missing references) //IL_1b0f: Unknown result type (might be due to invalid IL or missing references) //IL_1b14: Unknown result type (might be due to invalid IL or missing references) //IL_1b1a: Unknown result type (might be due to invalid IL or missing references) //IL_1b1f: Unknown result type (might be due to invalid IL or missing references) //IL_1b37: Unknown result type (might be due to invalid IL or missing references) //IL_1b3c: Unknown result type (might be due to invalid IL or missing references) //IL_1b54: Unknown result type (might be due to invalid IL or missing references) //IL_1b5a: Unknown result type (might be due to invalid IL or missing references) //IL_1b64: Unknown result type (might be due to invalid IL or missing references) //IL_1b69: Unknown result type (might be due to invalid IL or missing references) //IL_1b6f: Unknown result type (might be due to invalid IL or missing references) //IL_1b74: Unknown result type (might be due to invalid IL or missing references) //IL_1b80: Unknown result type (might be due to invalid IL or missing references) //IL_0707: Unknown result type (might be due to invalid IL or missing references) //IL_070d: Unknown result type (might be due to invalid IL or missing references) //IL_0712: Unknown result type (might be due to invalid IL or missing references) //IL_0718: Unknown result type (might be due to invalid IL or missing references) //IL_0722: Unknown result type (might be due to invalid IL or missing references) //IL_0727: Unknown result type (might be due to invalid IL or missing references) //IL_072d: Unknown result type (might be due to invalid IL or missing references) //IL_0732: Unknown result type (might be due to invalid IL or missing references) //IL_0738: Unknown result type (might be due to invalid IL or missing references) //IL_0742: Unknown result type (might be due to invalid IL or missing references) //IL_0747: Unknown result type (might be due to invalid IL or missing references) //IL_074d: Unknown result type (might be due to invalid IL or missing references) //IL_0752: Unknown result type (might be due to invalid IL or missing references) //IL_075d: Unknown result type (might be due to invalid IL or missing references) //IL_0763: Unknown result type (might be due to invalid IL or missing references) //IL_0768: Unknown result type (might be due to invalid IL or missing references) //IL_076e: Unknown result type (might be due to invalid IL or missing references) //IL_0778: Unknown result type (might be due to invalid IL or missing references) //IL_077d: Unknown result type (might be due to invalid IL or missing references) //IL_0783: Unknown result type (might be due to invalid IL or missing references) //IL_0788: Unknown result type (might be due to invalid IL or missing references) //IL_078e: Unknown result type (might be due to invalid IL or missing references) //IL_0798: Unknown result type (might be due to invalid IL or missing references) //IL_079d: Unknown result type (might be due to invalid IL or missing references) //IL_07a3: Unknown result type (might be due to invalid IL or missing references) //IL_07a8: Unknown result type (might be due to invalid IL or missing references) //IL_07b4: Unknown result type (might be due to invalid IL or missing references) //IL_2dba: Unknown result type (might be due to invalid IL or missing references) //IL_2dc0: Unknown result type (might be due to invalid IL or missing references) //IL_2dc5: Unknown result type (might be due to invalid IL or missing references) //IL_2dd0: Unknown result type (might be due to invalid IL or missing references) //IL_2dd6: Unknown result type (might be due to invalid IL or missing references) //IL_2ddb: Unknown result type (might be due to invalid IL or missing references) //IL_2de1: Unknown result type (might be due to invalid IL or missing references) //IL_2deb: Unknown result type (might be due to invalid IL or missing references) //IL_2df0: Unknown result type (might be due to invalid IL or missing references) //IL_2df6: Unknown result type (might be due to invalid IL or missing references) //IL_2e00: Unknown result type (might be due to invalid IL or missing references) //IL_2e05: Unknown result type (might be due to invalid IL or missing references) //IL_2e0b: Unknown result type (might be due to invalid IL or missing references) //IL_2e10: Unknown result type (might be due to invalid IL or missing references) //IL_2e16: Unknown result type (might be due to invalid IL or missing references) //IL_2e1b: Unknown result type (might be due to invalid IL or missing references) //IL_2e33: Unknown result type (might be due to invalid IL or missing references) //IL_2e38: Unknown result type (might be due to invalid IL or missing references) //IL_2e50: Unknown result type (might be due to invalid IL or missing references) //IL_2e56: Unknown result type (might be due to invalid IL or missing references) //IL_2e60: Unknown result type (might be due to invalid IL or missing references) //IL_2e65: Unknown result type (might be due to invalid IL or missing references) //IL_2e6b: Unknown result type (might be due to invalid IL or missing references) //IL_2e70: Unknown result type (might be due to invalid IL or missing references) //IL_2e7b: Unknown result type (might be due to invalid IL or missing references) //IL_2e81: Unknown result type (might be due to invalid IL or missing references) //IL_2e86: Unknown result type (might be due to invalid IL or missing references) //IL_2e91: Unknown result type (might be due to invalid IL or missing references) //IL_2e97: Unknown result type (might be due to invalid IL or missing references) //IL_2e9c: Unknown result type (might be due to invalid IL or missing references) //IL_2ea2: Unknown result type (might be due to invalid IL or missing references) //IL_2eac: Unknown result type (might be due to invalid IL or missing references) //IL_2eb1: Unknown result type (might be due to invalid IL or missing references) //IL_2eb7: Unknown result type (might be due to invalid IL or missing references) //IL_2ec1: Unknown result type (might be due to invalid IL or missing references) //IL_2ec6: Unknown result type (might be due to invalid IL or missing references) //IL_2ecc: Unknown result type (might be due to invalid IL or missing references) //IL_2ed1: Unknown result type (might be due to invalid IL or missing references) //IL_2ed7: Unknown result type (might be due to invalid IL or missing references) //IL_2edc: Unknown result type (might be due to invalid IL or missing references) //IL_2ef4: Unknown result type (might be due to invalid IL or missing references) //IL_2ef9: Unknown result type (might be due to invalid IL or missing references) //IL_2f11: Unknown result type (might be due to invalid IL or missing references) //IL_2f17: Unknown result type (might be due to invalid IL or missing references) //IL_2f21: Unknown result type (might be due to invalid IL or missing references) //IL_2f26: Unknown result type (might be due to invalid IL or missing references) //IL_2f2c: Unknown result type (might be due to invalid IL or missing references) //IL_2f31: Unknown result type (might be due to invalid IL or missing references) //IL_2f3d: Unknown result type (might be due to invalid IL or missing references) //IL_1b9a: Unknown result type (might be due to invalid IL or missing references) //IL_1ba0: Unknown result type (might be due to invalid IL or missing references) //IL_1ba5: Unknown result type (might be due to invalid IL or missing references) //IL_1bab: Unknown result type (might be due to invalid IL or missing references) //IL_1bb5: Unknown result type (might be due to invalid IL or missing references) //IL_1bba: Unknown result type (might be due to invalid IL or missing references) //IL_1bc0: Unknown result type (might be due to invalid IL or missing references) //IL_1bc5: Unknown result type (might be due to invalid IL or missing references) //IL_1bcb: Unknown result type (might be due to invalid IL or missing references) //IL_1bd5: Unknown result type (might be due to invalid IL or missing references) //IL_1bda: Unknown result type (might be due to invalid IL or missing references) //IL_1be0: Unknown result type (might be due to invalid IL or missing references) //IL_1be5: Unknown result type (might be due to invalid IL or missing references) //IL_1bf0: Unknown result type (might be due to invalid IL or missing references) //IL_1bf6: Unknown result type (might be due to invalid IL or missing references) //IL_1bfb: Unknown result type (might be due to invalid IL or missing references) //IL_1c01: Unknown result type (might be due to invalid IL or missing references) //IL_1c0b: Unknown result type (might be due to invalid IL or missing references) //IL_1c10: Unknown result type (might be due to invalid IL or missing references) //IL_1c16: Unknown result type (might be due to invalid IL or missing references) //IL_1c1b: Unknown result type (might be due to invalid IL or missing references) //IL_1c21: Unknown result type (might be due to invalid IL or missing references) //IL_1c2b: Unknown result type (might be due to invalid IL or missing references) //IL_1c30: Unknown result type (might be due to invalid IL or missing references) //IL_1c36: Unknown result type (might be due to invalid IL or missing references) //IL_1c3b: Unknown result type (might be due to invalid IL or missing references) //IL_1c47: Unknown result type (might be due to invalid IL or missing references) //IL_07c9: Unknown result type (might be due to invalid IL or missing references) //IL_07d4: Unknown result type (might be due to invalid IL or missing references) //IL_07da: Unknown result type (might be due to invalid IL or missing references) //IL_07df: Unknown result type (might be due to invalid IL or missing references) //IL_07e5: Unknown result type (might be due to invalid IL or missing references) //IL_07ea: Unknown result type (might be due to invalid IL or missing references) //IL_07f0: Unknown result type (might be due to invalid IL or missing references) //IL_07f5: Unknown result type (might be due to invalid IL or missing references) //IL_07fb: Unknown result type (might be due to invalid IL or missing references) //IL_0805: Unknown result type (might be due to invalid IL or missing references) //IL_080a: Unknown result type (might be due to invalid IL or missing references) //IL_0810: Unknown result type (might be due to invalid IL or missing references) //IL_0815: Unknown result type (might be due to invalid IL or missing references) //IL_081b: Unknown result type (might be due to invalid IL or missing references) //IL_0820: Unknown result type (might be due to invalid IL or missing references) //IL_082c: Unknown result type (might be due to invalid IL or missing references) //IL_2f57: Unknown result type (might be due to invalid IL or missing references) //IL_2f5d: Unknown result type (might be due to invalid IL or missing references) //IL_2f62: Unknown result type (might be due to invalid IL or missing references) //IL_2f6d: Unknown result type (might be due to invalid IL or missing references) //IL_2f73: Unknown result type (might be due to invalid IL or missing references) //IL_2f78: Unknown result type (might be due to invalid IL or missing references) //IL_2f7e: Unknown result type (might be due to invalid IL or missing references) //IL_2f88: Unknown result type (might be due to invalid IL or missing references) //IL_2f8d: Unknown result type (might be due to invalid IL or missing references) //IL_2f93: Unknown result type (might be due to invalid IL or missing references) //IL_2f9d: Unknown result type (might be due to invalid IL or missing references) //IL_2fa2: Unknown result type (might be due to invalid IL or missing references) //IL_2fa8: Unknown result type (might be due to invalid IL or missing references) //IL_2fad: Unknown result type (might be due to invalid IL or missing references) //IL_2fb3: Unknown result type (might be due to invalid IL or missing references) //IL_2fb8: Unknown result type (might be due to invalid IL or missing references) //IL_2fd0: Unknown result type (might be due to invalid IL or missing references) //IL_2fd5: Unknown result type (might be due to invalid IL or missing references) //IL_2fed: Unknown result type (might be due to invalid IL or missing references) //IL_2ff3: Unknown result type (might be due to invalid IL or missing references) //IL_2ffd: Unknown result type (might be due to invalid IL or missing references) //IL_3002: Unknown result type (might be due to invalid IL or missing references) //IL_3008: Unknown result type (might be due to invalid IL or missing references) //IL_300d: Unknown result type (might be due to invalid IL or missing references) //IL_3018: Unknown result type (might be due to invalid IL or missing references) //IL_301e: Unknown result type (might be due to invalid IL or missing references) //IL_3023: Unknown result type (might be due to invalid IL or missing references) //IL_302e: Unknown result type (might be due to invalid IL or missing references) //IL_3034: Unknown result type (might be due to invalid IL or missing references) //IL_3039: Unknown result type (might be due to invalid IL or missing references) //IL_303f: Unknown result type (might be due to invalid IL or missing references) //IL_3049: Unknown result type (might be due to invalid IL or missing references) //IL_304e: Unknown result type (might be due to invalid IL or missing references) //IL_3054: Unknown result type (might be due to invalid IL or missing references) //IL_305e: Unknown result type (might be due to invalid IL or missing references) //IL_3063: Unknown result type (might be due to invalid IL or missing references) //IL_3069: Unknown result type (might be due to invalid IL or missing references) //IL_306e: Unknown result type (might be due to invalid IL or missing references) //IL_3074: Unknown result type (might be due to invalid IL or missing references) //IL_3079: Unknown result type (might be due to invalid IL or missing references) //IL_3091: Unknown result type (might be due to invalid IL or missing references) //IL_3096: Unknown result type (might be due to invalid IL or missing references) //IL_30ae: Unknown result type (might be due to invalid IL or missing references) //IL_30b4: Unknown result type (might be due to invalid IL or missing references) //IL_30be: Unknown result type (might be due to invalid IL or missing references) //IL_30c3: Unknown result type (might be due to invalid IL or missing references) //IL_30c9: Unknown result type (might be due to invalid IL or missing references) //IL_30ce: Unknown result type (might be due to invalid IL or missing references) //IL_30da: Unknown result type (might be due to invalid IL or missing references) //IL_1c61: Unknown result type (might be due to invalid IL or missing references) //IL_1c67: Unknown result type (might be due to invalid IL or missing references) //IL_1c6c: Unknown result type (might be due to invalid IL or missing references) //IL_1c72: Unknown result type (might be due to invalid IL or missing references) //IL_1c7c: Unknown result type (might be due to invalid IL or missing references) //IL_1c81: Unknown result type (might be due to invalid IL or missing references) //IL_1c87: Unknown result type (might be due to invalid IL or missing references) //IL_1c8c: Unknown result type (might be due to invalid IL or missing references) //IL_1c92: Unknown result type (might be due to invalid IL or missing references) //IL_1c9c: Unknown result type (might be due to invalid IL or missing references) //IL_1ca1: Unknown result type (might be due to invalid IL or missing references) //IL_1ca7: Unknown result type (might be due to invalid IL or missing references) //IL_1cac: Unknown result type (might be due to invalid IL or missing references) //IL_1cb7: Unknown result type (might be due to invalid IL or missing references) //IL_1cbd: Unknown result type (might be due to invalid IL or missing references) //IL_1cc2: Unknown result type (might be due to invalid IL or missing references) //IL_1cc8: Unknown result type (might be due to invalid IL or missing references) //IL_1cd2: Unknown result type (might be due to invalid IL or missing references) //IL_1cd7: Unknown result type (might be due to invalid IL or missing references) //IL_1cdd: Unknown result type (might be due to invalid IL or missing references) //IL_1ce2: Unknown result type (might be due to invalid IL or missing references) //IL_1ce8: Unknown result type (might be due to invalid IL or missing references) //IL_1cf2: Unknown result type (might be due to invalid IL or missing references) //IL_1cf7: Unknown result type (might be due to invalid IL or missing references) //IL_1cfd: Unknown result type (might be due to invalid IL or missing references) //IL_1d02: Unknown result type (might be due to invalid IL or missing references) //IL_1d0e: Unknown result type (might be due to invalid IL or missing references) //IL_0841: Unknown result type (might be due to invalid IL or missing references) //IL_0847: Unknown result type (might be due to invalid IL or missing references) //IL_0851: Unknown result type (might be due to invalid IL or missing references) //IL_0856: Unknown result type (might be due to invalid IL or missing references) //IL_0861: Unknown result type (might be due to invalid IL or missing references) //IL_0867: Unknown result type (might be due to invalid IL or missing references) //IL_086c: Unknown result type (might be due to invalid IL or missing references) //IL_0872: Unknown result type (might be due to invalid IL or missing references) //IL_0877: Unknown result type (might be due to invalid IL or missing references) //IL_087d: Unknown result type (might be due to invalid IL or missing references) //IL_0882: Unknown result type (might be due to invalid IL or missing references) //IL_0888: Unknown result type (might be due to invalid IL or missing references) //IL_0892: Unknown result type (might be due to invalid IL or missing references) //IL_0897: Unknown result type (might be due to invalid IL or missing references) //IL_089d: Unknown result type (might be due to invalid IL or missing references) //IL_08a2: Unknown result type (might be due to invalid IL or missing references) //IL_08a8: Unknown result type (might be due to invalid IL or missing references) //IL_08b2: Unknown result type (might be due to invalid IL or missing references) //IL_08b7: Unknown result type (might be due to invalid IL or missing references) //IL_08bd: Unknown result type (might be due to invalid IL or missing references) //IL_08c2: Unknown result type (might be due to invalid IL or missing references) //IL_08ce: Unknown result type (might be due to invalid IL or missing references) //IL_30f4: Unknown result type (might be due to invalid IL or missing references) //IL_30fa: Unknown result type (might be due to invalid IL or missing references) //IL_30ff: Unknown result type (might be due to invalid IL or missing references) //IL_3105: Unknown result type (might be due to invalid IL or missing references) //IL_310f: Unknown result type (might be due to invalid IL or missing references) //IL_3114: Unknown result type (might be due to invalid IL or missing references) //IL_311a: Unknown result type (might be due to invalid IL or missing references) //IL_311f: Unknown result type (might be due to invalid IL or missing references) //IL_3125: Unknown result type (might be due to invalid IL or missing references) //IL_312f: Unknown result type (might be due to invalid IL or missing references) //IL_3134: Unknown result type (might be due to invalid IL or missing references) //IL_313a: Unknown result type (might be due to invalid IL or missing references) //IL_313f: Unknown result type (might be due to invalid IL or missing references) //IL_314a: Unknown result type (might be due to invalid IL or missing references) //IL_3150: Unknown result type (might be due to invalid IL or missing references) //IL_3155: Unknown result type (might be due to invalid IL or missing references) //IL_315b: Unknown result type (might be due to invalid IL or missing references) //IL_3165: Unknown result type (might be due to invalid IL or missing references) //IL_316a: Unknown result type (might be due to invalid IL or missing references) //IL_3170: Unknown result type (might be due to invalid IL or missing references) //IL_3175: Unknown result type (might be due to invalid IL or missing references) //IL_317b: Unknown result type (might be due to invalid IL or missing references) //IL_3185: Unknown result type (might be due to invalid IL or missing references) //IL_318a: Unknown result type (might be due to invalid IL or missing references) //IL_3190: Unknown result type (might be due to invalid IL or missing references) //IL_3195: Unknown result type (might be due to invalid IL or missing references) //IL_31a1: Unknown result type (might be due to invalid IL or missing references) //IL_1d23: Unknown result type (might be due to invalid IL or missing references) //IL_1d2e: Unknown result type (might be due to invalid IL or missing references) //IL_1d34: Unknown result type (might be due to invalid IL or missing references) //IL_1d39: Unknown result type (might be due to invalid IL or missing references) //IL_1d3f: Unknown result type (might be due to invalid IL or missing references) //IL_1d44: Unknown result type (might be due to invalid IL or missing references) //IL_1d4a: Unknown result type (might be due to invalid IL or missing references) //IL_1d4f: Unknown result type (might be due to invalid IL or missing references) //IL_1d55: Unknown result type (might be due to invalid IL or missing references) //IL_1d5f: Unknown result type (might be due to invalid IL or missing references) //IL_1d64: Unknown result type (might be due to invalid IL or missing references) //IL_1d6a: Unknown result type (might be due to invalid IL or missing references) //IL_1d6f: Unknown result type (might be due to invalid IL or missing references) //IL_1d75: Unknown result type (might be due to invalid IL or missing references) //IL_1d7a: Unknown result type (might be due to invalid IL or missing references) //IL_1d86: Unknown result type (might be due to invalid IL or missing references) //IL_08e3: Unknown result type (might be due to invalid IL or missing references) //IL_08e9: Unknown result type (might be due to invalid IL or missing references) //IL_08f3: Unknown result type (might be due to invalid IL or missing references) //IL_08f8: Unknown result type (might be due to invalid IL or missing references) //IL_0903: Unknown result type (might be due to invalid IL or missing references) //IL_0909: Unknown result type (might be due to invalid IL or missing references) //IL_090e: Unknown result type (might be due to invalid IL or missing references) //IL_0914: Unknown result type (might be due to invalid IL or missing references) //IL_0919: Unknown result type (might be due to invalid IL or missing references) //IL_091f: Unknown result type (might be due to invalid IL or missing references) //IL_0924: Unknown result type (might be due to invalid IL or missing references) //IL_092a: Unknown result type (might be due to invalid IL or missing references) //IL_0934: Unknown result type (might be due to invalid IL or missing references) //IL_0939: Unknown result type (might be due to invalid IL or missing references) //IL_093f: Unknown result type (might be due to invalid IL or missing references) //IL_0944: Unknown result type (might be due to invalid IL or missing references) //IL_094a: Unknown result type (might be due to invalid IL or missing references) //IL_0954: Unknown result type (might be due to invalid IL or missing references) //IL_0959: Unknown result type (might be due to invalid IL or missing references) //IL_095f: Unknown result type (might be due to invalid IL or missing references) //IL_0964: Unknown result type (might be due to invalid IL or missing references) //IL_0970: Unknown result type (might be due to invalid IL or missing references) //IL_31bb: Unknown result type (might be due to invalid IL or missing references) //IL_31c1: Unknown result type (might be due to invalid IL or missing references) //IL_31c6: Unknown result type (might be due to invalid IL or missing references) //IL_31cc: Unknown result type (might be due to invalid IL or missing references) //IL_31d6: Unknown result type (might be due to invalid IL or missing references) //IL_31db: Unknown result type (might be due to invalid IL or missing references) //IL_31e1: Unknown result type (might be due to invalid IL or missing references) //IL_31e6: Unknown result type (might be due to invalid IL or missing references) //IL_31ec: Unknown result type (might be due to invalid IL or missing references) //IL_31f6: Unknown result type (might be due to invalid IL or missing references) //IL_31fb: Unknown result type (might be due to invalid IL or missing references) //IL_3201: Unknown result type (might be due to invalid IL or missing references) //IL_3206: Unknown result type (might be due to invalid IL or missing references) //IL_3211: Unknown result type (might be due to invalid IL or missing references) //IL_3217: Unknown result type (might be due to invalid IL or missing references) //IL_321c: Unknown result type (might be due to invalid IL or missing references) //IL_3222: Unknown result type (might be due to invalid IL or missing references) //IL_322c: Unknown result type (might be due to invalid IL or missing references) //IL_3231: Unknown result type (might be due to invalid IL or missing references) //IL_3237: Unknown result type (might be due to invalid IL or missing references) //IL_323c: Unknown result type (might be due to invalid IL or missing references) //IL_3242: Unknown result type (might be due to invalid IL or missing references) //IL_324c: Unknown result type (might be due to invalid IL or missing references) //IL_3251: Unknown result type (might be due to invalid IL or missing references) //IL_3257: Unknown result type (might be due to invalid IL or missing references) //IL_325c: Unknown result type (might be due to invalid IL or missing references) //IL_3268: Unknown result type (might be due to invalid IL or missing references) //IL_1d9b: Unknown result type (might be due to invalid IL or missing references) //IL_1da1: Unknown result type (might be due to invalid IL or missing references) //IL_1dab: Unknown result type (might be due to invalid IL or missing references) //IL_1db0: Unknown result type (might be due to invalid IL or missing references) //IL_1dbb: Unknown result type (might be due to invalid IL or missing references) //IL_1dc1: Unknown result type (might be due to invalid IL or missing references) //IL_1dc6: Unknown result type (might be due to invalid IL or missing references) //IL_1dcc: Unknown result type (might be due to invalid IL or missing references) //IL_1dd1: Unknown result type (might be due to invalid IL or missing references) //IL_1dd7: Unknown result type (might be due to invalid IL or missing references) //IL_1ddc: Unknown result type (might be due to invalid IL or missing references) //IL_1de2: Unknown result type (might be due to invalid IL or missing references) //IL_1dec: Unknown result type (might be due to invalid IL or missing references) //IL_1df1: Unknown result type (might be due to invalid IL or missing references) //IL_1df7: Unknown result type (might be due to invalid IL or missing references) //IL_1dfc: Unknown result type (might be due to invalid IL or missing references) //IL_1e02: Unknown result type (might be due to invalid IL or missing references) //IL_1e0c: Unknown result type (might be due to invalid IL or missing references) //IL_1e11: Unknown result type (might be due to invalid IL or missing references) //IL_1e17: Unknown result type (might be due to invalid IL or missing references) //IL_1e1c: Unknown result type (might be due to invalid IL or missing references) //IL_1e28: Unknown result type (might be due to invalid IL or missing references) //IL_0985: Unknown result type (might be due to invalid IL or missing references) //IL_098b: Unknown result type (might be due to invalid IL or missing references) //IL_0995: Unknown result type (might be due to invalid IL or missing references) //IL_099a: Unknown result type (might be due to invalid IL or missing references) //IL_09a5: Unknown result type (might be due to invalid IL or missing references) //IL_09ab: Unknown result type (might be due to invalid IL or missing references) //IL_09b0: Unknown result type (might be due to invalid IL or missing references) //IL_09b6: Unknown result type (might be due to invalid IL or missing references) //IL_09bb: Unknown result type (might be due to invalid IL or missing references) //IL_09c1: Unknown result type (might be due to invalid IL or missing references) //IL_09c6: Unknown result type (might be due to invalid IL or missing references) //IL_09cc: Unknown result type (might be due to invalid IL or missing references) //IL_09d6: Unknown result type (might be due to invalid IL or missing references) //IL_09db: Unknown result type (might be due to invalid IL or missing references) //IL_09e1: Unknown result type (might be due to invalid IL or missing references) //IL_09e6: Unknown result type (might be due to invalid IL or missing references) //IL_09ec: Unknown result type (might be due to invalid IL or missing references) //IL_09f6: Unknown result type (might be due to invalid IL or missing references) //IL_09fb: Unknown result type (might be due to invalid IL or missing references) //IL_0a01: Unknown result type (might be due to invalid IL or missing references) //IL_0a06: Unknown result type (might be due to invalid IL or missing references) //IL_0a12: Unknown result type (might be due to invalid IL or missing references) //IL_327d: Unknown result type (might be due to invalid IL or missing references) //IL_3288: Unknown result type (might be due to invalid IL or missing references) //IL_328e: Unknown result type (might be due to invalid IL or missing references) //IL_3293: Unknown result type (might be due to invalid IL or missing references) //IL_3299: Unknown result type (might be due to invalid IL or missing references) //IL_329e: Unknown result type (might be due to invalid IL or missing references) //IL_32a4: Unknown result type (might be due to invalid IL or missing references) //IL_32a9: Unknown result type (might be due to invalid IL or missing references) //IL_32af: Unknown result type (might be due to invalid IL or missing references) //IL_32b9: Unknown result type (might be due to invalid IL or missing references) //IL_32be: Unknown result type (might be due to invalid IL or missing references) //IL_32c4: Unknown result type (might be due to invalid IL or missing references) //IL_32c9: Unknown result type (might be due to invalid IL or missing references) //IL_32cf: Unknown result type (might be due to invalid IL or missing references) //IL_32d4: Unknown result type (might be due to invalid IL or missing references) //IL_32e0: Unknown result type (might be due to invalid IL or missing references) //IL_1e3d: Unknown result type (might be due to invalid IL or missing references) //IL_1e43: Unknown result type (might be due to invalid IL or missing references) //IL_1e4d: Unknown result type (might be due to invalid IL or missing references) //IL_1e52: Unknown result type (might be due to invalid IL or missing references) //IL_1e5d: Unknown result type (might be due to invalid IL or missing references) //IL_1e63: Unknown result type (might be due to invalid IL or missing references) //IL_1e68: Unknown result type (might be due to invalid IL or missing references) //IL_1e6e: Unknown result type (might be due to invalid IL or missing references) //IL_1e73: Unknown result type (might be due to invalid IL or missing references) //IL_1e79: Unknown result type (might be due to invalid IL or missing references) //IL_1e7e: Unknown result type (might be due to invalid IL or missing references) //IL_1e84: Unknown result type (might be due to invalid IL or missing references) //IL_1e8e: Unknown result type (might be due to invalid IL or missing references) //IL_1e93: Unknown result type (might be due to invalid IL or missing references) //IL_1e99: Unknown result type (might be due to invalid IL or missing references) //IL_1e9e: Unknown result type (might be due to invalid IL or missing references) //IL_1ea4: Unknown result type (might be due to invalid IL or missing references) //IL_1eae: Unknown result type (might be due to invalid IL or missing references) //IL_1eb3: Unknown result type (might be due to invalid IL or missing references) //IL_1eb9: Unknown result type (might be due to invalid IL or missing references) //IL_1ebe: Unknown result type (might be due to invalid IL or missing references) //IL_1eca: Unknown result type (might be due to invalid IL or missing references) //IL_0a2c: Unknown result type (might be due to invalid IL or missing references) //IL_0a32: Unknown result type (might be due to invalid IL or missing references) //IL_0a37: Unknown result type (might be due to invalid IL or missing references) //IL_0a3d: Unknown result type (might be due to invalid IL or missing references) //IL_0a42: Unknown result type (might be due to invalid IL or missing references) //IL_0a48: Unknown result type (might be due to invalid IL or missing references) //IL_0a4d: Unknown result type (might be due to invalid IL or missing references) //IL_0a58: Unknown result type (might be due to invalid IL or missing references) //IL_0a5e: Unknown result type (might be due to invalid IL or missing references) //IL_0a63: Unknown result type (might be due to invalid IL or missing references) //IL_0a69: Unknown result type (might be due to invalid IL or missing references) //IL_0a6e: Unknown result type (might be due to invalid IL or missing references) //IL_0a74: Unknown result type (might be due to invalid IL or missing references) //IL_0a7e: Unknown result type (might be due to invalid IL or missing references) //IL_0a83: Unknown result type (might be due to invalid IL or missing references) //IL_0a89: Unknown result type (might be due to invalid IL or missing references) //IL_0a8e: Unknown result type (might be due to invalid IL or missing references) //IL_0a9a: Unknown result type (might be due to invalid IL or missing references) //IL_32f5: Unknown result type (might be due to invalid IL or missing references) //IL_32fb: Unknown result type (might be due to invalid IL or missing references) //IL_3305: Unknown result type (might be due to invalid IL or missing references) //IL_330a: Unknown result type (might be due to invalid IL or missing references) //IL_3315: Unknown result type (might be due to invalid IL or missing references) //IL_331b: Unknown result type (might be due to invalid IL or missing references) //IL_3320: Unknown result type (might be due to invalid IL or missing references) //IL_3326: Unknown result type (might be due to invalid IL or missing references) //IL_332b: Unknown result type (might be due to invalid IL or missing references) //IL_3331: Unknown result type (might be due to invalid IL or missing references) //IL_3336: Unknown result type (might be due to invalid IL or missing references) //IL_333c: Unknown result type (might be due to invalid IL or missing references) //IL_3346: Unknown result type (might be due to invalid IL or missing references) //IL_334b: Unknown result type (might be due to invalid IL or missing references) //IL_3351: Unknown result type (might be due to invalid IL or missing references) //IL_3356: Unknown result type (might be due to invalid IL or missing references) //IL_335c: Unknown result type (might be due to invalid IL or missing references) //IL_3366: Unknown result type (might be due to invalid IL or missing references) //IL_336b: Unknown result type (might be due to invalid IL or missing references) //IL_3371: Unknown result type (might be due to invalid IL or missing references) //IL_3376: Unknown result type (might be due to invalid IL or missing references) //IL_3382: Unknown result type (might be due to invalid IL or missing references) //IL_1edf: Unknown result type (might be due to invalid IL or missing references) //IL_1ee5: Unknown result type (might be due to invalid IL or missing references) //IL_1eef: Unknown result type (might be due to invalid IL or missing references) //IL_1ef4: Unknown result type (might be due to invalid IL or missing references) //IL_1eff: Unknown result type (might be due to invalid IL or missing references) //IL_1f05: Unknown result type (might be due to invalid IL or missing references) //IL_1f0a: Unknown result type (might be due to invalid IL or missing references) //IL_1f10: Unknown result type (might be due to invalid IL or missing references) //IL_1f15: Unknown result type (might be due to invalid IL or missing references) //IL_1f1b: Unknown result type (might be due to invalid IL or missing references) //IL_1f20: Unknown result type (might be due to invalid IL or missing references) //IL_1f26: Unknown result type (might be due to invalid IL or missing references) //IL_1f30: Unknown result type (might be due to invalid IL or missing references) //IL_1f35: Unknown result type (might be due to invalid IL or missing references) //IL_1f3b: Unknown result type (might be due to invalid IL or missing references) //IL_1f40: Unknown result type (might be due to invalid IL or missing references) //IL_1f46: Unknown result type (might be due to invalid IL or missing references) //IL_1f50: Unknown result type (might be due to invalid IL or missing references) //IL_1f55: Unknown result type (might be due to invalid IL or missing references) //IL_1f5b: Unknown result type (might be due to invalid IL or missing references) //IL_1f60: Unknown result type (might be due to invalid IL or missing references) //IL_1f6c: Unknown result type (might be due to invalid IL or missing references) //IL_0ab4: Unknown result type (might be due to invalid IL or missing references) //IL_0aba: Unknown result type (might be due to invalid IL or missing references) //IL_0abf: Unknown result type (might be due to invalid IL or missing references) //IL_0ac5: Unknown result type (might be due to invalid IL or missing references) //IL_0aca: Unknown result type (might be due to invalid IL or missing references) //IL_0ad0: Unknown result type (might be due to invalid IL or missing references) //IL_0ad5: Unknown result type (might be due to invalid IL or missing references) //IL_0adb: Unknown result type (might be due to invalid IL or missing references) //IL_0ae5: Unknown result type (might be due to invalid IL or missing references) //IL_0aea: Unknown result type (might be due to invalid IL or missing references) //IL_0af5: Unknown result type (might be due to invalid IL or missing references) //IL_0afb: Unknown result type (might be due to invalid IL or missing references) //IL_0b00: Unknown result type (might be due to invalid IL or missing references) //IL_0b06: Unknown result type (might be due to invalid IL or missing references) //IL_0b0b: Unknown result type (might be due to invalid IL or missing references) //IL_0b11: Unknown result type (might be due to invalid IL or missing references) //IL_0b1b: Unknown result type (might be due to invalid IL or missing references) //IL_0b20: Unknown result type (might be due to invalid IL or missing references) //IL_0b26: Unknown result type (might be due to invalid IL or missing references) //IL_0b2b: Unknown result type (might be due to invalid IL or missing references) //IL_0b31: Unknown result type (might be due to invalid IL or missing references) //IL_0b3b: Unknown result type (might be due to invalid IL or missing references) //IL_0b40: Unknown result type (might be due to invalid IL or missing references) //IL_0b4c: Unknown result type (might be due to invalid IL or missing references) //IL_3397: Unknown result type (might be due to invalid IL or missing references) //IL_339d: Unknown result type (might be due to invalid IL or missing references) //IL_33a7: Unknown result type (might be due to invalid IL or missing references) //IL_33ac: Unknown result type (might be due to invalid IL or missing references) //IL_33b7: Unknown result type (might be due to invalid IL or missing references) //IL_33bd: Unknown result type (might be due to invalid IL or missing references) //IL_33c2: Unknown result type (might be due to invalid IL or missing references) //IL_33c8: Unknown result type (might be due to invalid IL or missing references) //IL_33cd: Unknown result type (might be due to invalid IL or missing references) //IL_33d3: Unknown result type (might be due to invalid IL or missing references) //IL_33d8: Unknown result type (might be due to invalid IL or missing references) //IL_33de: Unknown result type (might be due to invalid IL or missing references) //IL_33e8: Unknown result type (might be due to invalid IL or missing references) //IL_33ed: Unknown result type (might be due to invalid IL or missing references) //IL_33f3: Unknown result type (might be due to invalid IL or missing references) //IL_33f8: Unknown result type (might be due to invalid IL or missing references) //IL_33fe: Unknown result type (might be due to invalid IL or missing references) //IL_3408: Unknown result type (might be due to invalid IL or missing references) //IL_340d: Unknown result type (might be due to invalid IL or missing references) //IL_3413: Unknown result type (might be due to invalid IL or missing references) //IL_3418: Unknown result type (might be due to invalid IL or missing references) //IL_3424: Unknown result type (might be due to invalid IL or missing references) //IL_1f86: Unknown result type (might be due to invalid IL or missing references) //IL_1f8c: Unknown result type (might be due to invalid IL or missing references) //IL_1f91: Unknown result type (might be due to invalid IL or missing references) //IL_1f97: Unknown result type (might be due to invalid IL or missing references) //IL_1f9c: Unknown result type (might be due to invalid IL or missing references) //IL_1fa2: Unknown result type (might be due to invalid IL or missing references) //IL_1fa7: Unknown result type (might be due to invalid IL or missing references) //IL_1fb2: Unknown result type (might be due to invalid IL or missing references) //IL_1fb8: Unknown result type (might be due to invalid IL or missing references) //IL_1fbd: Unknown result type (might be due to invalid IL or missing references) //IL_1fc3: Unknown result type (might be due to invalid IL or missing references) //IL_1fc8: Unknown result type (might be due to invalid IL or missing references) //IL_1fce: Unknown result type (might be due to invalid IL or missing references) //IL_1fd8: Unknown result type (might be due to invalid IL or missing references) //IL_1fdd: Unknown result type (might be due to invalid IL or missing references) //IL_1fe3: Unknown result type (might be due to invalid IL or missing references) //IL_1fe8: Unknown result type (might be due to invalid IL or missing references) //IL_1ff4: Unknown result type (might be due to invalid IL or missing references) //IL_0b66: Unknown result type (might be due to invalid IL or missing references) //IL_0b6c: Unknown result type (might be due to invalid IL or missing references) //IL_0b71: Unknown result type (might be due to invalid IL or missing references) //IL_0b77: Unknown result type (might be due to invalid IL or missing references) //IL_0b7c: Unknown result type (might be due to invalid IL or missing references) //IL_0b82: Unknown result type (might be due to invalid IL or missing references) //IL_0b87: Unknown result type (might be due to invalid IL or missing references) //IL_0b8d: Unknown result type (might be due to invalid IL or missing references) //IL_0b97: Unknown result type (might be due to invalid IL or missing references) //IL_0b9c: Unknown result type (might be due to invalid IL or missing references) //IL_0ba7: Unknown result type (might be due to invalid IL or missing references) //IL_0bad: Unknown result type (might be due to invalid IL or missing references) //IL_0bb2: Unknown result type (might be due to invalid IL or missing references) //IL_0bb8: Unknown result type (might be due to invalid IL or missing references) //IL_0bbd: Unknown result type (might be due to invalid IL or missing references) //IL_0bc3: Unknown result type (might be due to invalid IL or missing references) //IL_0bcd: Unknown result type (might be due to invalid IL or missing references) //IL_0bd2: Unknown result type (might be due to invalid IL or missing references) //IL_0bd8: Unknown result type (might be due to invalid IL or missing references) //IL_0bdd: Unknown result type (might be due to invalid IL or missing references) //IL_0be3: Unknown result type (might be due to invalid IL or missing references) //IL_0bed: Unknown result type (might be due to invalid IL or missing references) //IL_0bf2: Unknown result type (might be due to invalid IL or missing references) //IL_0bfe: Unknown result type (might be due to invalid IL or missing references) //IL_3439: Unknown result type (might be due to invalid IL or missing references) //IL_343f: Unknown result type (might be due to invalid IL or missing references) //IL_3449: Unknown result type (might be due to invalid IL or missing references) //IL_344e: Unknown result type (might be due to invalid IL or missing references) //IL_3459: Unknown result type (might be due to invalid IL or missing references) //IL_345f: Unknown result type (might be due to invalid IL or missing references) //IL_3464: Unknown result type (might be due to invalid IL or missing references) //IL_346a: Unknown result type (might be due to invalid IL or missing references) //IL_346f: Unknown result type (might be due to invalid IL or missing references) //IL_3475: Unknown result type (might be due to invalid IL or missing references) //IL_347a: Unknown result type (might be due to invalid IL or missing references) //IL_3480: Unknown result type (might be due to invalid IL or missing references) //IL_348a: Unknown result type (might be due to invalid IL or missing references) //IL_348f: Unknown result type (might be due to invalid IL or missing references) //IL_3495: Unknown result type (might be due to invalid IL or missing references) //IL_349a: Unknown result type (might be due to invalid IL or missing references) //IL_34a0: Unknown result type (might be due to invalid IL or missing references) //IL_34aa: Unknown result type (might be due to invalid IL or missing references) //IL_34af: Unknown result type (might be due to invalid IL or missing references) //IL_34b5: Unknown result type (might be due to invalid IL or missing references) //IL_34ba: Unknown result type (might be due to invalid IL or missing references) //IL_34c6: Unknown result type (might be due to invalid IL or missing references) //IL_200e: Unknown result type (might be due to invalid IL or missing references) //IL_2014: Unknown result type (might be due to invalid IL or missing references) //IL_2019: Unknown result type (might be due to invalid IL or missing references) //IL_201f: Unknown result type (might be due to invalid IL or missing references) //IL_2024: Unknown result type (might be due to invalid IL or missing references) //IL_202a: Unknown result type (might be due to invalid IL or missing references) //IL_202f: Unknown result type (might be due to invalid IL or missing references) //IL_2035: Unknown result type (might be due to invalid IL or missing references) //IL_203f: Unknown result type (might be due to invalid IL or missing references) //IL_2044: Unknown result type (might be due to invalid IL or missing references) //IL_204f: Unknown result type (might be due to invalid IL or missing references) //IL_2055: Unknown result type (might be due to invalid IL or missing references) //IL_205a: Unknown result type (might be due to invalid IL or missing references) //IL_2060: Unknown result type (might be due to invalid IL or missing references) //IL_2065: Unknown result type (might be due to invalid IL or missing references) //IL_206b: Unknown result type (might be due to invalid IL or missing references) //IL_2075: Unknown result type (might be due to invalid IL or missing references) //IL_207a: Unknown result type (might be due to invalid IL or missing references) //IL_2080: Unknown result type (might be due to invalid IL or missing references) //IL_2085: Unknown result type (might be due to invalid IL or missing references) //IL_208b: Unknown result type (might be due to invalid IL or missing references) //IL_2095: Unknown result type (might be due to invalid IL or missing references) //IL_209a: Unknown result type (might be due to invalid IL or missing references) //IL_20a6: Unknown result type (might be due to invalid IL or missing references) //IL_0c18: Unknown result type (might be due to invalid IL or missing references) //IL_0c1e: Unknown result type (might be due to invalid IL or missing references) //IL_0c23: Unknown result type (might be due to invalid IL or missing references) //IL_0c29: Unknown result type (might be due to invalid IL or missing references) //IL_0c2e: Unknown result type (might be due to invalid IL or missing references) //IL_0c34: Unknown result type (might be due to invalid IL or missing references) //IL_0c39: Unknown result type (might be due to invalid IL or missing references) //IL_0c3f: Unknown result type (might be due to invalid IL or missing references) //IL_0c49: Unknown result type (might be due to invalid IL or missing references) //IL_0c4e: Unknown result type (might be due to invalid IL or missing references) //IL_0c59: Unknown result type (might be due to invalid IL or missing references) //IL_0c5f: Unknown result type (might be due to invalid IL or missing references) //IL_0c64: Unknown result type (might be due to invalid IL or missing references) //IL_0c6a: Unknown result type (might be due to invalid IL or missing references) //IL_0c6f: Unknown result type (might be due to invalid IL or missing references) //IL_0c75: Unknown result type (might be due to invalid IL or missing references) //IL_0c7f: Unknown result type (might be due to invalid IL or missing references) //IL_0c84: Unknown result type (might be due to invalid IL or missing references) //IL_0c8a: Unknown result type (might be due to invalid IL or missing references) //IL_0c8f: Unknown result type (might be due to invalid IL or missing references) //IL_0c95: Unknown result type (might be due to invalid IL or missing references) //IL_0c9f: Unknown result type (might be due to invalid IL or missing references) //IL_0ca4: Unknown result type (might be due to invalid IL or missing references) //IL_0cb0: Unknown result type (might be due to invalid IL or missing references) //IL_34e0: Unknown result type (might be due to invalid IL or missing references) //IL_34e6: Unknown result type (might be due to invalid IL or missing references) //IL_34eb: Unknown result type (might be due to invalid IL or missing references) //IL_34f1: Unknown result type (might be due to invalid IL or missing references) //IL_34f6: Unknown result type (might be due to invalid IL or missing references) //IL_34fc: Unknown result type (might be due to invalid IL or missing references) //IL_3501: Unknown result type (might be due to invalid IL or missing references) //IL_350c: Unknown result type (might be due to invalid IL or missing references) //IL_3512: Unknown result type (might be due to invalid IL or missing references) //IL_3517: Unknown result type (might be due to invalid IL or missing references) //IL_351d: Unknown result type (might be due to invalid IL or missing references) //IL_3522: Unknown result type (might be due to invalid IL or missing references) //IL_3528: Unknown result type (might be due to invalid IL or missing references) //IL_3532: Unknown result type (might be due to invalid IL or missing references) //IL_3537: Unknown result type (might be due to invalid IL or missing references) //IL_353d: Unknown result type (might be due to invalid IL or missing references) //IL_3542: Unknown result type (might be due to invalid IL or missing references) //IL_354e: Unknown result type (might be due to invalid IL or missing references) //IL_20c0: Unknown result type (might be due to invalid IL or missing references) //IL_20c6: Unknown result type (might be due to invalid IL or missing references) //IL_20cb: Unknown result type (might be due to invalid IL or missing references) //IL_20d1: Unknown result type (might be due to invalid IL or missing references) //IL_20d6: Unknown result type (might be due to invalid IL or missing references) //IL_20dc: Unknown result type (might be due to invalid IL or missing references) //IL_20e1: Unknown result type (might be due to invalid IL or missing references) //IL_20e7: Unknown result type (might be due to invalid IL or missing references) //IL_20f1: Unknown result type (might be due to invalid IL or missing references) //IL_20f6: Unknown result type (might be due to invalid IL or missing references) //IL_2101: Unknown result type (might be due to invalid IL or missing references) //IL_2107: Unknown result type (might be due to invalid IL or missing references) //IL_210c: Unknown result type (might be due to invalid IL or missing references) //IL_2112: Unknown result type (might be due to invalid IL or missing references) //IL_2117: Unknown result type (might be due to invalid IL or missing references) //IL_211d: Unknown result type (might be due to invalid IL or missing references) //IL_2127: Unknown result type (might be due to invalid IL or missing references) //IL_212c: Unknown result type (might be due to invalid IL or missing references) //IL_2132: Unknown result type (might be due to invalid IL or missing references) //IL_2137: Unknown result type (might be due to invalid IL or missing references) //IL_213d: Unknown result type (might be due to invalid IL or missing references) //IL_2147: Unknown result type (might be due to invalid IL or missing references) //IL_214c: Unknown result type (might be due to invalid IL or missing references) //IL_2158: Unknown result type (might be due to invalid IL or missing references) //IL_0cca: Unknown result type (might be due to invalid IL or missing references) //IL_0cd0: Unknown result type (might be due to invalid IL or missing references) //IL_0cd5: Unknown result type (might be due to invalid IL or missing references) //IL_0cdb: Unknown result type (might be due to invalid IL or missing references) //IL_0ce0: Unknown result type (might be due to invalid IL or missing references) //IL_0ce6: Unknown result type (might be due to invalid IL or missing references) //IL_0ceb: Unknown result type (might be due to invalid IL or missing references) //IL_0cf1: Unknown result type (might be due to invalid IL or missing references) //IL_0cfb: Unknown result type (might be due to invalid IL or missing references) //IL_0d00: Unknown result type (might be due to invalid IL or missing references) //IL_0d0b: Unknown result type (might be due to invalid IL or missing references) //IL_0d11: Unknown result type (might be due to invalid IL or missing references) //IL_0d16: Unknown result type (might be due to invalid IL or missing references) //IL_0d1c: Unknown result type (might be due to invalid IL or missing references) //IL_0d21: Unknown result type (might be due to invalid IL or missing references) //IL_0d27: Unknown result type (might be due to invalid IL or missing references) //IL_0d31: Unknown result type (might be due to invalid IL or missing references) //IL_0d36: Unknown result type (might be due to invalid IL or missing references) //IL_0d3c: Unknown result type (might be due to invalid IL or missing references) //IL_0d41: Unknown result type (might be due to invalid IL or missing references) //IL_0d47: Unknown result type (might be due to invalid IL or missing references) //IL_0d51: Unknown result type (might be due to invalid IL or missing references) //IL_0d56: Unknown result type (might be due to invalid IL or missing references) //IL_0d62: Unknown result type (might be due to invalid IL or missing references) //IL_3568: Unknown result type (might be due to invalid IL or missing references) //IL_356e: Unknown result type (might be due to invalid IL or missing references) //IL_3573: Unknown result type (might be due to invalid IL or missing references) //IL_3579: Unknown result type (might be due to invalid IL or missing references) //IL_357e: Unknown result type (might be due to invalid IL or missing references) //IL_3584: Unknown result type (might be due to invalid IL or missing references) //IL_3589: Unknown result type (might be due to invalid IL or missing references) //IL_358f: Unknown result type (might be due to invalid IL or missing references) //IL_3599: Unknown result type (might be due to invalid IL or missing references) //IL_359e: Unknown result type (might be due to invalid IL or missing references) //IL_35a9: Unknown result type (might be due to invalid IL or missing references) //IL_35af: Unknown result type (might be due to invalid IL or missing references) //IL_35b4: Unknown result type (might be due to invalid IL or missing references) //IL_35ba: Unknown result type (might be due to invalid IL or missing references) //IL_35bf: Unknown result type (might be due to invalid IL or missing references) //IL_35c5: Unknown result type (might be due to invalid IL or missing references) //IL_35cf: Unknown result type (might be due to invalid IL or missing references) //IL_35d4: Unknown result type (might be due to invalid IL or missing references) //IL_35da: Unknown result type (might be due to invalid IL or missing references) //IL_35df: Unknown result type (might be due to invalid IL or missing references) //IL_35e5: Unknown result type (might be due to invalid IL or missing references) //IL_35ef: Unknown result type (might be due to invalid IL or missing references) //IL_35f4: Unknown result type (might be due to invalid IL or missing references) //IL_3600: Unknown result type (might be due to invalid IL or missing references) //IL_2172: Unknown result type (might be due to invalid IL or missing references) //IL_2178: Unknown result type (might be due to invalid IL or missing references) //IL_217d: Unknown result type (might be due to invalid IL or missing references) //IL_2183: Unknown result type (might be due to invalid IL or missing references) //IL_2188: Unknown result type (might be due to invalid IL or missing references) //IL_218e: Unknown result type (might be due to invalid IL or missing references) //IL_2193: Unknown result type (might be due to invalid IL or missing references) //IL_2199: Unknown result type (might be due to invalid IL or missing references) //IL_21a3: Unknown result type (might be due to invalid IL or missing references) //IL_21a8: Unknown result type (might be due to invalid IL or missing references) //IL_21b3: Unknown result type (might be due to invalid IL or missing references) //IL_21b9: Unknown result type (might be due to invalid IL or missing references) //IL_21be: Unknown result type (might be due to invalid IL or missing references) //IL_21c4: Unknown result type (might be due to invalid IL or missing references) //IL_21c9: Unknown result type (might be due to invalid IL or missing references) //IL_21cf: Unknown result type (might be due to invalid IL or missing references) //IL_21d9: Unknown result type (might be due to invalid IL or missing references) //IL_21de: Unknown result type (might be due to invalid IL or missing references) //IL_21e4: Unknown result type (might be due to invalid IL or missing references) //IL_21e9: Unknown result type (might be due to invalid IL or missing references) //IL_21ef: Unknown result type (might be due to invalid IL or missing references) //IL_21f9: Unknown result type (might be due to invalid IL or missing references) //IL_21fe: Unknown result type (might be due to invalid IL or missing references) //IL_220a: Unknown result type (might be due to invalid IL or missing references) //IL_0d7c: Unknown result type (might be due to invalid IL or missing references) //IL_0d82: Unknown result type (might be due to invalid IL or missing references) //IL_0d87: Unknown result type (might be due to invalid IL or missing references) //IL_0d8d: Unknown result type (might be due to invalid IL or missing references) //IL_0d92: Unknown result type (might be due to invalid IL or missing references) //IL_0d98: Unknown result type (might be due to invalid IL or missing references) //IL_0d9d: Unknown result type (might be due to invalid IL or missing references) //IL_0da3: Unknown result type (might be due to invalid IL or missing references) //IL_0dad: Unknown result type (might be due to invalid IL or missing references) //IL_0db2: Unknown result type (might be due to invalid IL or missing references) //IL_0dbd: Unknown result type (might be due to invalid IL or missing references) //IL_0dc3: Unknown result type (might be due to invalid IL or missing references) //IL_0dc8: Unknown result type (might be due to invalid IL or missing references) //IL_0dce: Unknown result type (might be due to invalid IL or missing references) //IL_0dd3: Unknown result type (might be due to invalid IL or missing references) //IL_0dd9: Unknown result type (might be due to invalid IL or missing references) //IL_0de3: Unknown result type (might be due to invalid IL or missing references) //IL_0de8: Unknown result type (might be due to invalid IL or missing references) //IL_0dee: Unknown result type (might be due to invalid IL or missing references) //IL_0df3: Unknown result type (might be due to invalid IL or missing references) //IL_0df9: Unknown result type (might be due to invalid IL or missing references) //IL_0e03: Unknown result type (might be due to invalid IL or missing references) //IL_0e08: Unknown result type (might be due to invalid IL or missing references) //IL_0e14: Unknown result type (might be due to invalid IL or missing references) //IL_361a: Unknown result type (might be due to invalid IL or missing references) //IL_3620: Unknown result type (might be due to invalid IL or missing references) //IL_3625: Unknown result type (might be due to invalid IL or missing references) //IL_362b: Unknown result type (might be due to invalid IL or missing references) //IL_3630: Unknown result type (might be due to invalid IL or missing references) //IL_3636: Unknown result type (might be due to invalid IL or missing references) //IL_363b: Unknown result type (might be due to invalid IL or missing references) //IL_3641: Unknown result type (might be due to invalid IL or missing references) //IL_364b: Unknown result type (might be due to invalid IL or missing references) //IL_3650: Unknown result type (might be due to invalid IL or missing references) //IL_365b: Unknown result type (might be due to invalid IL or missing references) //IL_3661: Unknown result type (might be due to invalid IL or missing references) //IL_3666: Unknown result type (might be due to invalid IL or missing references) //IL_366c: Unknown result type (might be due to invalid IL or missing references) //IL_3671: Unknown result type (might be due to invalid IL or missing references) //IL_3677: Unknown result type (might be due to invalid IL or missing references) //IL_3681: Unknown result type (might be due to invalid IL or missing references) //IL_3686: Unknown result type (might be due to invalid IL or missing references) //IL_368c: Unknown result type (might be due to invalid IL or missing references) //IL_3691: Unknown result type (might be due to invalid IL or missing references) //IL_3697: Unknown result type (might be due to invalid IL or missing references) //IL_36a1: Unknown result type (might be due to invalid IL or missing references) //IL_36a6: Unknown result type (might be due to invalid IL or missing references) //IL_36b2: Unknown result type (might be due to invalid IL or missing references) //IL_2224: Unknown result type (might be due to invalid IL or missing references) //IL_222a: Unknown result type (might be due to invalid IL or missing references) //IL_222f: Unknown result type (might be due to invalid IL or missing references) //IL_2235: Unknown result type (might be due to invalid IL or missing references) //IL_223a: Unknown result type (might be due to invalid IL or missing references) //IL_2240: Unknown result type (might be due to invalid IL or missing references) //IL_2245: Unknown result type (might be due to invalid IL or missing references) //IL_224b: Unknown result type (might be due to invalid IL or missing references) //IL_2255: Unknown result type (might be due to invalid IL or missing references) //IL_225a: Unknown result type (might be due to invalid IL or missing references) //IL_2265: Unknown result type (might be due to invalid IL or missing references) //IL_226b: Unknown result type (might be due to invalid IL or missing references) //IL_2270: Unknown result type (might be due to invalid IL or missing references) //IL_2276: Unknown result type (might be due to invalid IL or missing references) //IL_227b: Unknown result type (might be due to invalid IL or missing references) //IL_2281: Unknown result type (might be due to invalid IL or missing references) //IL_228b: Unknown result type (might be due to invalid IL or missing references) //IL_2290: Unknown result type (might be due to invalid IL or missing references) //IL_2296: Unknown result type (might be due to invalid IL or missing references) //IL_229b: Unknown result type (might be due to invalid IL or missing references) //IL_22a1: Unknown result type (might be due to invalid IL or missing references) //IL_22ab: Unknown result type (might be due to invalid IL or missing references) //IL_22b0: Unknown result type (might be due to invalid IL or missing references) //IL_22bc: Unknown result type (might be due to invalid IL or missing references) //IL_0e2e: Unknown result type (might be due to invalid IL or missing references) //IL_0e34: Unknown result type (might be due to invalid IL or missing references) //IL_0e39: Unknown result type (might be due to invalid IL or missing references) //IL_0e3f: Unknown result type (might be due to invalid IL or missing references) //IL_0e44: Unknown result type (might be due to invalid IL or missing references) //IL_0e4a: Unknown result type (might be due to invalid IL or missing references) //IL_0e4f: Unknown result type (might be due to invalid IL or missing references) //IL_0e55: Unknown result type (might be due to invalid IL or missing references) //IL_0e5f: Unknown result type (might be due to invalid IL or missing references) //IL_0e64: Unknown result type (might be due to invalid IL or missing references) //IL_0e6f: Unknown result type (might be due to invalid IL or missing references) //IL_0e75: Unknown result type (might be due to invalid IL or missing references) //IL_0e7a: Unknown result type (might be due to invalid IL or missing references) //IL_0e80: Unknown result type (might be due to invalid IL or missing references) //IL_0e85: Unknown result type (might be due to invalid IL or missing references) //IL_0e8b: Unknown result type (might be due to invalid IL or missing references) //IL_0e95: Unknown result type (might be due to invalid IL or missing references) //IL_0e9a: Unknown result type (might be due to invalid IL or missing references) //IL_0ea0: Unknown result type (might be due to invalid IL or missing references) //IL_0ea5: Unknown result type (might be due to invalid IL or missing references) //IL_0eab: Unknown result type (might be due to invalid IL or missing references) //IL_0eb5: Unknown result type (might be due to invalid IL or missing references) //IL_0eba: Unknown result type (might be due to invalid IL or missing references) //IL_0ec6: Unknown result type (might be due to invalid IL or missing references) //IL_36cc: Unknown result type (might be due to invalid IL or missing references) //IL_36d2: Unknown result type (might be due to invalid IL or missing references) //IL_36d7: Unknown result type (might be due to invalid IL or missing references) //IL_36dd: Unknown result type (might be due to invalid IL or missing references) //IL_36e2: Unknown result type (might be due to invalid IL or missing references) //IL_36e8: Unknown result type (might be due to invalid IL or missing references) //IL_36ed: Unknown result type (might be due to invalid IL or missing references) //IL_36f3: Unknown result type (might be due to invalid IL or missing references) //IL_36fd: Unknown result type (might be due to invalid IL or missing references) //IL_3702: Unknown result type (might be due to invalid IL or missing references) //IL_370d: Unknown result type (might be due to invalid IL or missing references) //IL_3713: Unknown result type (might be due to invalid IL or missing references) //IL_3718: Unknown result type (might be due to invalid IL or missing references) //IL_371e: Unknown result type (might be due to invalid IL or missing references) //IL_3723: Unknown result type (might be due to invalid IL or missing references) //IL_3729: Unknown result type (might be due to invalid IL or missing references) //IL_3733: Unknown result type (might be due to invalid IL or missing references) //IL_3738: Unknown result type (might be due to invalid IL or missing references) //IL_373e: Unknown result type (might be due to invalid IL or missing references) //IL_3743: Unknown result type (might be due to invalid IL or missing references) //IL_3749: Unknown result type (might be due to invalid IL or missing references) //IL_3753: Unknown result type (might be due to invalid IL or missing references) //IL_3758: Unknown result type (might be due to invalid IL or missing references) //IL_3764: Unknown result type (might be due to invalid IL or missing references) //IL_22d6: Unknown result type (might be due to invalid IL or missing references) //IL_22dc: Unknown result type (might be due to invalid IL or missing references) //IL_22e1: Unknown result type (might be due to invalid IL or missing references) //IL_22e7: Unknown result type (might be due to invalid IL or missing references) //IL_22ec: Unknown result type (might be due to invalid IL or missing references) //IL_22f2: Unknown result type (might be due to invalid IL or missing references) //IL_22f7: Unknown result type (might be due to invalid IL or missing references) //IL_22fd: Unknown result type (might be due to invalid IL or missing references) //IL_2307: Unknown result type (might be due to invalid IL or missing references) //IL_230c: Unknown result type (might be due to invalid IL or missing references) //IL_2317: Unknown result type (might be due to invalid IL or missing references) //IL_231d: Unknown result type (might be due to invalid IL or missing references) //IL_2322: Unknown result type (might be due to invalid IL or missing references) //IL_2328: Unknown result type (might be due to invalid IL or missing references) //IL_232d: Unknown result type (might be due to invalid IL or missing references) //IL_2333: Unknown result type (might be due to invalid IL or missing references) //IL_233d: Unknown result type (might be due to invalid IL or missing references) //IL_2342: Unknown result type (might be due to invalid IL or missing references) //IL_2348: Unknown result type (might be due to invalid IL or missing references) //IL_234d: Unknown result type (might be due to invalid IL or missing references) //IL_2353: Unknown result type (might be due to invalid IL or missing references) //IL_235d: Unknown result type (might be due to invalid IL or missing references) //IL_2362: Unknown result type (might be due to invalid IL or missing references) //IL_236e: Unknown result type (might be due to invalid IL or missing references) //IL_0ee0: Unknown result type (might be due to invalid IL or missing references) //IL_0ee6: Unknown result type (might be due to invalid IL or missing references) //IL_0eeb: Unknown result type (might be due to invalid IL or missing references) //IL_0ef1: Unknown result type (might be due to invalid IL or missing references) //IL_0ef6: Unknown result type (might be due to invalid IL or missing references) //IL_0efc: Unknown result type (might be due to invalid IL or missing references) //IL_0f01: Unknown result type (might be due to invalid IL or missing references) //IL_0f07: Unknown result type (might be due to invalid IL or missing references) //IL_0f11: Unknown result type (might be due to invalid IL or missing references) //IL_0f16: Unknown result type (might be due to invalid IL or missing references) //IL_0f21: Unknown result type (might be due to invalid IL or missing references) //IL_0f27: Unknown result type (might be due to invalid IL or missing references) //IL_0f2c: Unknown result type (might be due to invalid IL or missing references) //IL_0f32: Unknown result type (might be due to invalid IL or missing references) //IL_0f37: Unknown result type (might be due to invalid IL or missing references) //IL_0f3d: Unknown result type (might be due to invalid IL or missing references) //IL_0f47: Unknown result type (might be due to invalid IL or missing references) //IL_0f4c: Unknown result type (might be due to invalid IL or missing references) //IL_0f52: Unknown result type (might be due to invalid IL or missing references) //IL_0f57: Unknown result type (might be due to invalid IL or missing references) //IL_0f5d: Unknown result type (might be due to invalid IL or missing references) //IL_0f67: Unknown result type (might be due to invalid IL or missing references) //IL_0f6c: Unknown result type (might be due to invalid IL or missing references) //IL_0f78: Unknown result type (might be due to invalid IL or missing references) //IL_377e: Unknown result type (might be due to invalid IL or missing references) //IL_3784: Unknown result type (might be due to invalid IL or missing references) //IL_3789: Unknown result type (might be due to invalid IL or missing references) //IL_378f: Unknown result type (might be due to invalid IL or missing references) //IL_3794: Unknown result type (might be due to invalid IL or missing references) //IL_379a: Unknown result type (might be due to invalid IL or missing references) //IL_379f: Unknown result type (might be due to invalid IL or missing references) //IL_37a5: Unknown result type (might be due to invalid IL or missing references) //IL_37af: Unknown result type (might be due to invalid IL or missing references) //IL_37b4: Unknown result type (might be due to invalid IL or missing references) //IL_37bf: Unknown result type (might be due to invalid IL or missing references) //IL_37c5: Unknown result type (might be due to invalid IL or missing references) //IL_37ca: Unknown result type (might be due to invalid IL or missing references) //IL_37d0: Unknown result type (might be due to invalid IL or missing references) //IL_37d5: Unknown result type (might be due to invalid IL or missing references) //IL_37db: Unknown result type (might be due to invalid IL or missing references) //IL_37e5: Unknown result type (might be due to invalid IL or missing references) //IL_37ea: Unknown result type (might be due to invalid IL or missing references) //IL_37f0: Unknown result type (might be due to invalid IL or missing references) //IL_37f5: Unknown result type (might be due to invalid IL or missing references) //IL_37fb: Unknown result type (might be due to invalid IL or missing references) //IL_3805: Unknown result type (might be due to invalid IL or missing references) //IL_380a: Unknown result type (might be due to invalid IL or missing references) //IL_3816: Unknown result type (might be due to invalid IL or missing references) //IL_2388: Unknown result type (might be due to invalid IL or missing references) //IL_238e: Unknown result type (might be due to invalid IL or missing references) //IL_2393: Unknown result type (might be due to invalid IL or missing references) //IL_2399: Unknown result type (might be due to invalid IL or missing references) //IL_239e: Unknown result type (might be due to invalid IL or missing references) //IL_23a4: Unknown result type (might be due to invalid IL or missing references) //IL_23a9: Unknown result type (might be due to invalid IL or missing references) //IL_23af: Unknown result type (might be due to invalid IL or missing references) //IL_23b9: Unknown result type (might be due to invalid IL or missing references) //IL_23be: Unknown result type (might be due to invalid IL or missing references) //IL_23c9: Unknown result type (might be due to invalid IL or missing references) //IL_23cf: Unknown result type (might be due to invalid IL or missing references) //IL_23d4: Unknown result type (might be due to invalid IL or missing references) //IL_23da: Unknown result type (might be due to invalid IL or missing references) //IL_23df: Unknown result type (might be due to invalid IL or missing references) //IL_23e5: Unknown result type (might be due to invalid IL or missing references) //IL_23ef: Unknown result type (might be due to invalid IL or missing references) //IL_23f4: Unknown result type (might be due to invalid IL or missing references) //IL_23fa: Unknown result type (might be due to invalid IL or missing references) //IL_23ff: Unknown result type (might be due to invalid IL or missing references) //IL_2405: Unknown result type (might be due to invalid IL or missing references) //IL_240f: Unknown result type (might be due to invalid IL or missing references) //IL_2414: Unknown result type (might be due to invalid IL or missing references) //IL_2420: Unknown result type (might be due to invalid IL or missing references) //IL_0f92: Unknown result type (might be due to invalid IL or missing references) //IL_0f98: Unknown result type (might be due to invalid IL or missing references) //IL_0f9d: Unknown result type (might be due to invalid IL or missing references) //IL_0fa3: Unknown result type (might be due to invalid IL or missing references) //IL_0fa8: Unknown result type (might be due to invalid IL or missing references) //IL_0fae: Unknown result type (might be due to invalid IL or missing references) //IL_0fb8: Unknown result type (might be due to invalid IL or missing references) //IL_0fbd: Unknown result type (might be due to invalid IL or missing references) //IL_0fc3: Unknown result type (might be due to invalid IL or missing references) //IL_0fc8: Unknown result type (might be due to invalid IL or missing references) //IL_0fd3: Unknown result type (might be due to invalid IL or missing references) //IL_0fd9: Unknown result type (might be due to invalid IL or missing references) //IL_0fde: Unknown result type (might be due to invalid IL or missing references) //IL_0fe4: Unknown result type (might be due to invalid IL or missing references) //IL_0fe9: Unknown result type (might be due to invalid IL or missing references) //IL_0fef: Unknown result type (might be due to invalid IL or missing references) //IL_0ff4: Unknown result type (might be due to invalid IL or missing references) //IL_1000: Unknown result type (might be due to invalid IL or missing references) //IL_3830: Unknown result type (might be due to invalid IL or missing references) //IL_3836: Unknown result type (might be due to invalid IL or missing references) //IL_383b: Unknown result type (might be due to invalid IL or missing references) //IL_3841: Unknown result type (might be due to invalid IL or missing references) //IL_3846: Unknown result type (might be due to invalid IL or missing references) //IL_384c: Unknown result type (might be due to invalid IL or missing references) //IL_3851: Unknown result type (might be due to invalid IL or missing references) //IL_3857: Unknown result type (might be due to invalid IL or missing references) //IL_3861: Unknown result type (might be due to invalid IL or missing references) //IL_3866: Unknown result type (might be due to invalid IL or missing references) //IL_3871: Unknown result type (might be due to invalid IL or missing references) //IL_3877: Unknown result type (might be due to invalid IL or missing references) //IL_387c: Unknown result type (might be due to invalid IL or missing references) //IL_3882: Unknown result type (might be due to invalid IL or missing references) //IL_3887: Unknown result type (might be due to invalid IL or missing references) //IL_388d: Unknown result type (might be due to invalid IL or missing references) //IL_3897: Unknown result type (might be due to invalid IL or missing references) //IL_389c: Unknown result type (might be due to invalid IL or missing references) //IL_38a2: Unknown result type (might be due to invalid IL or missing references) //IL_38a7: Unknown result type (might be due to invalid IL or missing references) //IL_38ad: Unknown result type (might be due to invalid IL or missing references) //IL_38b7: Unknown result type (might be due to invalid IL or missing references) //IL_38bc: Unknown result type (might be due to invalid IL or missing references) //IL_38c8: Unknown result type (might be due to invalid IL or missing references) //IL_243a: Unknown result type (might be due to invalid IL or missing references) //IL_2440: Unknown result type (might be due to invalid IL or missing references) //IL_2445: Unknown result type (might be due to invalid IL or missing references) //IL_244b: Unknown result type (might be due to invalid IL or missing references) //IL_2450: Unknown result type (might be due to invalid IL or missing references) //IL_2456: Unknown result type (might be due to invalid IL or missing references) //IL_245b: Unknown result type (might be due to invalid IL or missing references) //IL_2461: Unknown result type (might be due to invalid IL or missing references) //IL_246b: Unknown result type (might be due to invalid IL or missing references) //IL_2470: Unknown result type (might be due to invalid IL or missing references) //IL_247b: Unknown result type (might be due to invalid IL or missing references) //IL_2481: Unknown result type (might be due to invalid IL or missing references) //IL_2486: Unknown result type (might be due to invalid IL or missing references) //IL_248c: Unknown result type (might be due to invalid IL or missing references) //IL_2491: Unknown result type (might be due to invalid IL or missing references) //IL_2497: Unknown result type (might be due to invalid IL or missing references) //IL_24a1: Unknown result type (might be due to invalid IL or missing references) //IL_24a6: Unknown result type (might be due to invalid IL or missing references) //IL_24ac: Unknown result type (might be due to invalid IL or missing references) //IL_24b1: Unknown result type (might be due to invalid IL or missing references) //IL_24b7: Unknown result type (might be due to invalid IL or missing references) //IL_24c1: Unknown result type (might be due to invalid IL or missing references) //IL_24c6: Unknown result type (might be due to invalid IL or missing references) //IL_24d2: Unknown result type (might be due to invalid IL or missing references) //IL_101a: Unknown result type (might be due to invalid IL or missing references) //IL_1020: Unknown result type (might be due to invalid IL or missing references) //IL_1025: Unknown result type (might be due to invalid IL or missing references) //IL_102b: Unknown result type (might be due to invalid IL or missing references) //IL_1030: Unknown result type (might be due to invalid IL or missing references) //IL_1036: Unknown result type (might be due to invalid IL or missing references) //IL_1040: Unknown result type (might be due to invalid IL or missing references) //IL_1045: Unknown result type (might be due to invalid IL or missing references) //IL_104b: Unknown result type (might be due to invalid IL or missing references) //IL_1050: Unknown result type (might be due to invalid IL or missing references) //IL_1056: Unknown result type (might be due to invalid IL or missing references) //IL_1060: Unknown result type (might be due to invalid IL or missing references) //IL_1065: Unknown result type (might be due to invalid IL or missing references) //IL_1070: Unknown result type (might be due to invalid IL or missing references) //IL_1076: Unknown result type (might be due to invalid IL or missing references) //IL_107b: Unknown result type (might be due to invalid IL or missing references) //IL_1081: Unknown result type (might be due to invalid IL or missing references) //IL_1086: Unknown result type (might be due to invalid IL or missing references) //IL_108c: Unknown result type (might be due to invalid IL or missing references) //IL_1091: Unknown result type (might be due to invalid IL or missing references) //IL_1097: Unknown result type (might be due to invalid IL or missing references) //IL_10a1: Unknown result type (might be due to invalid IL or missing references) //IL_10a6: Unknown result type (might be due to invalid IL or missing references) //IL_10b2: Unknown result type (might be due to invalid IL or missing references) //IL_38e2: Unknown result type (might be due to invalid IL or missing references) //IL_38e8: Unknown result type (might be due to invalid IL or missing references) //IL_38ed: Unknown result type (might be due to invalid IL or missing references) //IL_38f3: Unknown result type (might be due to invalid IL or missing references) //IL_38f8: Unknown result type (might be due to invalid IL or missing references) //IL_38fe: Unknown result type (might be due to invalid IL or missing references) //IL_3903: Unknown result type (might be due to invalid IL or missing references) //IL_3909: Unknown result type (might be due to invalid IL or missing references) //IL_3913: Unknown result type (might be due to invalid IL or missing references) //IL_3918: Unknown result type (might be due to invalid IL or missing references) //IL_3923: Unknown result type (might be due to invalid IL or missing references) //IL_3929: Unknown result type (might be due to invalid IL or missing references) //IL_392e: Unknown result type (might be due to invalid IL or missing references) //IL_3934: Unknown result type (might be due to invalid IL or missing references) //IL_3939: Unknown result type (might be due to invalid IL or missing references) //IL_393f: Unknown result type (might be due to invalid IL or missing references) //IL_3949: Unknown result type (might be due to invalid IL or missing references) //IL_394e: Unknown result type (might be due to invalid IL or missing references) //IL_3954: Unknown result type (might be due to invalid IL or missing references) //IL_3959: Unknown result type (might be due to invalid IL or missing references) //IL_395f: Unknown result type (might be due to invalid IL or missing references) //IL_3969: Unknown result type (might be due to invalid IL or missing references) //IL_396e: Unknown result type (might be due to invalid IL or missing references) //IL_397a: Unknown result type (might be due to invalid IL or missing references) //IL_24ec: Unknown result type (might be due to invalid IL or missing references) //IL_24f2: Unknown result type (might be due to invalid IL or missing references) //IL_24f7: Unknown result type (might be due to invalid IL or missing references) //IL_24fd: Unknown result type (might be due to invalid IL or missing references) //IL_2502: Unknown result type (might be due to invalid IL or missing references) //IL_2508: Unknown result type (might be due to invalid IL or missing references) //IL_2512: Unknown result type (might be due to invalid IL or missing references) //IL_2517: Unknown result type (might be due to invalid IL or missing references) //IL_251d: Unknown result type (might be due to invalid IL or missing references) //IL_2522: Unknown result type (might be due to invalid IL or missing references) //IL_252d: Unknown result type (might be due to invalid IL or missing references) //IL_2533: Unknown result type (might be due to invalid IL or missing references) //IL_2538: Unknown result type (might be due to invalid IL or missing references) //IL_253e: Unknown result type (might be due to invalid IL or missing references) //IL_2543: Unknown result type (might be due to invalid IL or missing references) //IL_2549: Unknown result type (might be due to invalid IL or missing references) //IL_254e: Unknown result type (might be due to invalid IL or missing references) //IL_255a: Unknown result type (might be due to invalid IL or missing references) //IL_10cc: Unknown result type (might be due to invalid IL or missing references) //IL_10d2: Unknown result type (might be due to invalid IL or missing references) //IL_10d7: Unknown result type (might be due to invalid IL or missing references) //IL_10dd: Unknown result type (might be due to invalid IL or missing references) //IL_10e2: Unknown result type (might be due to invalid IL or missing references) //IL_10e8: Unknown result type (might be due to invalid IL or missing references) //IL_10f2: Unknown result type (might be due to invalid IL or missing references) //IL_10f7: Unknown result type (might be due to invalid IL or missing references) //IL_10fd: Unknown result type (might be due to invalid IL or missing references) //IL_1102: Unknown result type (might be due to invalid IL or missing references) //IL_1108: Unknown result type (might be due to invalid IL or missing references) //IL_1112: Unknown result type (might be due to invalid IL or missing references) //IL_1117: Unknown result type (might be due to invalid IL or missing references) //IL_1122: Unknown result type (might be due to invalid IL or missing references) //IL_1128: Unknown result type (might be due to invalid IL or missing references) //IL_112d: Unknown result type (might be due to invalid IL or missing references) //IL_1133: Unknown result type (might be due to invalid IL or missing references) //IL_1138: Unknown result type (might be due to invalid IL or missing references) //IL_113e: Unknown result type (might be due to invalid IL or missing references) //IL_1143: Unknown result type (might be due to invalid IL or missing references) //IL_1149: Unknown result type (might be due to invalid IL or missing references) //IL_1153: Unknown result type (might be due to invalid IL or missing references) //IL_1158: Unknown result type (might be due to invalid IL or missing references) //IL_1164: Unknown result type (might be due to invalid IL or missing references) //IL_3994: Unknown result type (might be due to invalid IL or missing references) //IL_399a: Unknown result type (might be due to invalid IL or missing references) //IL_399f: Unknown result type (might be due to invalid IL or missing references) //IL_39a5: Unknown result type (might be due to invalid IL or missing references) //IL_39aa: Unknown result type (might be due to invalid IL or missing references) //IL_39b0: Unknown result type (might be due to invalid IL or missing references) //IL_39b5: Unknown result type (might be due to invalid IL or missing references) //IL_39bb: Unknown result type (might be due to invalid IL or missing references) //IL_39c5: Unknown result type (might be due to invalid IL or missing references) //IL_39ca: Unknown result type (might be due to invalid IL or missing references) //IL_39d5: Unknown result type (might be due to invalid IL or missing references) //IL_39db: Unknown result type (might be due to invalid IL or missing references) //IL_39e0: Unknown result type (might be due to invalid IL or missing references) //IL_39e6: Unknown result type (might be due to invalid IL or missing references) //IL_39eb: Unknown result type (might be due to invalid IL or missing references) //IL_39f1: Unknown result type (might be due to invalid IL or missing references) //IL_39fb: Unknown result type (might be due to invalid IL or missing references) //IL_3a00: Unknown result type (might be due to invalid IL or missing references) //IL_3a06: Unknown result type (might be due to invalid IL or missing references) //IL_3a0b: Unknown result type (might be due to invalid IL or missing references) //IL_3a11: Unknown result type (might be due to invalid IL or missing references) //IL_3a1b: Unknown result type (might be due to invalid IL or missing references) //IL_3a20: Unknown result type (might be due to invalid IL or missing references) //IL_3a2c: Unknown result type (might be due to invalid IL or missing references) //IL_2574: Unknown result type (might be due to invalid IL or missing references) //IL_257a: Unknown result type (might be due to invalid IL or missing references) //IL_257f: Unknown result type (might be due to invalid IL or missing references) //IL_2585: Unknown result type (might be due to invalid IL or missing references) //IL_258a: Unknown result type (might be due to invalid IL or missing references) //IL_2590: Unknown result type (might be due to invalid IL or missing references) //IL_259a: Unknown result type (might be due to invalid IL or missing references) //IL_259f: Unknown result type (might be due to invalid IL or missing references) //IL_25a5: Unknown result type (might be due to invalid IL or missing references) //IL_25aa: Unknown result type (might be due to invalid IL or missing references) //IL_25b0: Unknown result type (might be due to invalid IL or missing references) //IL_25ba: Unknown result type (might be due to invalid IL or missing references) //IL_25bf: Unknown result type (might be due to invalid IL or missing references) //IL_25ca: Unknown result type (might be due to invalid IL or missing references) //IL_25d0: Unknown result type (might be due to invalid IL or missing references) //IL_25d5: Unknown result type (might be due to invalid IL or missing references) //IL_25db: Unknown result type (might be due to invalid IL or missing references) //IL_25e0: Unknown result type (might be due to invalid IL or missing references) //IL_25e6: Unknown result type (might be due to invalid IL or missing references) //IL_25eb: Unknown result type (might be due to invalid IL or missing references) //IL_25f1: Unknown result type (might be due to invalid IL or missing references) //IL_25fb: Unknown result type (might be due to invalid IL or missing references) //IL_2600: Unknown result type (might be due to invalid IL or missing references) //IL_260c: Unknown result type (might be due to invalid IL or missing references) //IL_117e: Unknown result type (might be due to invalid IL or missing references) //IL_1184: Unknown result type (might be due to invalid IL or missing references) //IL_1189: Unknown result type (might be due to invalid IL or missing references) //IL_118f: Unknown result type (might be due to invalid IL or missing references) //IL_1194: Unknown result type (might be due to invalid IL or missing references) //IL_119a: Unknown result type (might be due to invalid IL or missing references) //IL_11a4: Unknown result type (might be due to invalid IL or missing references) //IL_11a9: Unknown result type (might be due to invalid IL or missing references) //IL_11af: Unknown result type (might be due to invalid IL or missing references) //IL_11b4: Unknown result type (might be due to invalid IL or missing references) //IL_11ba: Unknown result type (might be due to invalid IL or missing references) //IL_11c4: Unknown result type (might be due to invalid IL or missing references) //IL_11c9: Unknown result type (might be due to invalid IL or missing references) //IL_11d4: Unknown result type (might be due to invalid IL or missing references) //IL_11da: Unknown result type (might be due to invalid IL or missing references) //IL_11df: Unknown result type (might be due to invalid IL or missing references) //IL_11e5: Unknown result type (might be due to invalid IL or missing references) //IL_11ea: Unknown result type (might be due to invalid IL or missing references) //IL_11f0: Unknown result type (might be due to invalid IL or missing references) //IL_11f5: Unknown result type (might be due to invalid IL or missing references) //IL_11fb: Unknown result type (might be due to invalid IL or missing references) //IL_1205: Unknown result type (might be due to invalid IL or missing references) //IL_120a: Unknown result type (might be due to invalid IL or missing references) //IL_1216: Unknown result type (might be due to invalid IL or missing references) //IL_3a46: Unknown result type (might be due to invalid IL or missing references) //IL_3a4c: Unknown result type (might be due to invalid IL or missing references) //IL_3a51: Unknown result type (might be due to invalid IL or missing references) //IL_3a57: Unknown result type (might be due to invalid IL or missing references) //IL_3a5c: Unknown result type (might be due to invalid IL or missing references) //IL_3a62: Unknown result type (might be due to invalid IL or missing references) //IL_3a6c: Unknown result type (might be due to invalid IL or missing references) //IL_3a71: Unknown result type (might be due to invalid IL or missing references) //IL_3a77: Unknown result type (might be due to invalid IL or missing references) //IL_3a7c: Unknown result type (might be due to invalid IL or missing references) //IL_3a87: Unknown result type (might be due to invalid IL or missing references) //IL_3a8d: Unknown result type (might be due to invalid IL or missing references) //IL_3a92: Unknown result type (might be due to invalid IL or missing references) //IL_3a98: Unknown result type (might be due to invalid IL or missing references) //IL_3a9d: Unknown result type (might be due to invalid IL or missing references) //IL_3aa3: Unknown result type (might be due to invalid IL or missing references) //IL_3aa8: Unknown result type (might be due to invalid IL or missing references) //IL_3ab4: Unknown result type (might be due to invalid IL or missing references) //IL_2626: Unknown result type (might be due to invalid IL or missing references) //IL_262c: Unknown result type (might be due to invalid IL or missing references) //IL_2631: Unknown result type (might be due to invalid IL or missing references) //IL_2637: Unknown result type (might be due to invalid IL or missing references) //IL_263c: Unknown result type (might be due to invalid IL or missing references) //IL_2642: Unknown result type (might be due to invalid IL or missing references) //IL_264c: Unknown result type (might be due to invalid IL or missing references) //IL_2651: Unknown result type (might be due to invalid IL or missing references) //IL_2657: Unknown result type (might be due to invalid IL or missing references) //IL_265c: Unknown result type (might be due to invalid IL or missing references) //IL_2662: Unknown result type (might be due to invalid IL or missing references) //IL_266c: Unknown result type (might be due to invalid IL or missing references) //IL_2671: Unknown result type (might be due to invalid IL or missing references) //IL_267c: Unknown result type (might be due to invalid IL or missing references) //IL_2682: Unknown result type (might be due to invalid IL or missing references) //IL_2687: Unknown result type (might be due to invalid IL or missing references) //IL_268d: Unknown result type (might be due to invalid IL or missing references) //IL_2692: Unknown result type (might be due to invalid IL or missing references) //IL_2698: Unknown result type (might be due to invalid IL or missing references) //IL_269d: Unknown result type (might be due to invalid IL or missing references) //IL_26a3: Unknown result type (might be due to invalid IL or missing references) //IL_26ad: Unknown result type (might be due to invalid IL or missing references) //IL_26b2: Unknown result type (might be due to invalid IL or missing references) //IL_26be: Unknown result type (might be due to invalid IL or missing references) //IL_1230: Unknown result type (might be due to invalid IL or missing references) //IL_1236: Unknown result type (might be due to invalid IL or missing references) //IL_123b: Unknown result type (might be due to invalid IL or missing references) //IL_1241: Unknown result type (might be due to invalid IL or missing references) //IL_1246: Unknown result type (might be due to invalid IL or missing references) //IL_124c: Unknown result type (might be due to invalid IL or missing references) //IL_1256: Unknown result type (might be due to invalid IL or missing references) //IL_125b: Unknown result type (might be due to invalid IL or missing references) //IL_1261: Unknown result type (might be due to invalid IL or missing references) //IL_1266: Unknown result type (might be due to invalid IL or missing references) //IL_126c: Unknown result type (might be due to invalid IL or missing references) //IL_1276: Unknown result type (might be due to invalid IL or missing references) //IL_127b: Unknown result type (might be due to invalid IL or missing references) //IL_1286: Unknown result type (might be due to invalid IL or missing references) //IL_128c: Unknown result type (might be due to invalid IL or missing references) //IL_1291: Unknown result type (might be due to invalid IL or missing references) //IL_1297: Unknown result type (might be due to invalid IL or missing references) //IL_129c: Unknown result type (might be due to invalid IL or missing references) //IL_12a2: Unknown result type (might be due to invalid IL or missing references) //IL_12a7: Unknown result type (might be due to invalid IL or missing references) //IL_12ad: Unknown result type (might be due to invalid IL or missing references) //IL_12b7: Unknown result type (might be due to invalid IL or missing references) //IL_12bc: Unknown result type (might be due to invalid IL or missing references) //IL_12c8: Unknown result type (might be due to invalid IL or missing references) //IL_3ace: Unknown result type (might be due to invalid IL or missing references) //IL_3ad4: Unknown result type (might be due to invalid IL or missing references) //IL_3ad9: Unknown result type (might be due to invalid IL or missing references) //IL_3adf: Unknown result type (might be due to invalid IL or missing references) //IL_3ae4: Unknown result type (might be due to invalid IL or missing references) //IL_3aea: Unknown result type (might be due to invalid IL or missing references) //IL_3af4: Unknown result type (might be due to invalid IL or missing references) //IL_3af9: Unknown result type (might be due to invalid IL or missing references) //IL_3aff: Unknown result type (might be due to invalid IL or missing references) //IL_3b04: Unknown result type (might be due to invalid IL or missing references) //IL_3b0a: Unknown result type (might be due to invalid IL or missing references) //IL_3b14: Unknown result type (might be due to invalid IL or missing references) //IL_3b19: Unknown result type (might be due to invalid IL or missing references) //IL_3b24: Unknown result type (might be due to invalid IL or missing references) //IL_3b2a: Unknown result type (might be due to invalid IL or missing references) //IL_3b2f: Unknown result type (might be due to invalid IL or missing references) //IL_3b35: Unknown result type (might be due to invalid IL or missing references) //IL_3b3a: Unknown result type (might be due to invalid IL or missing references) //IL_3b40: Unknown result type (might be due to invalid IL or missing references) //IL_3b45: Unknown result type (might be due to invalid IL or missing references) //IL_3b4b: Unknown result type (might be due to invalid IL or missing references) //IL_3b55: Unknown result type (might be due to invalid IL or missing references) //IL_3b5a: Unknown result type (might be due to invalid IL or missing references) //IL_3b66: Unknown result type (might be due to invalid IL or missing references) //IL_26d8: Unknown result type (might be due to invalid IL or missing references) //IL_26de: Unknown result type (might be due to invalid IL or missing references) //IL_26e3: Unknown result type (might be due to invalid IL or missing references) //IL_26e9: Unknown result type (might be due to invalid IL or missing references) //IL_26ee: Unknown result type (might be due to invalid IL or missing references) //IL_26f4: Unknown result type (might be due to invalid IL or missing references) //IL_26fe: Unknown result type (might be due to invalid IL or missing references) //IL_2703: Unknown result type (might be due to invalid IL or missing references) //IL_2709: Unknown result type (might be due to invalid IL or missing references) //IL_270e: Unknown result type (might be due to invalid IL or missing references) //IL_2714: Unknown result type (might be due to invalid IL or missing references) //IL_271e: Unknown result type (might be due to invalid IL or missing references) //IL_2723: Unknown result type (might be due to invalid IL or missing references) //IL_272e: Unknown result type (might be due to invalid IL or missing references) //IL_2734: Unknown result type (might be due to invalid IL or missing references) //IL_2739: Unknown result type (might be due to invalid IL or missing references) //IL_273f: Unknown result type (might be due to invalid IL or missing references) //IL_2744: Unknown result type (might be due to invalid IL or missing references) //IL_274a: Unknown result type (might be due to invalid IL or missing references) //IL_274f: Unknown result type (might be due to invalid IL or missing references) //IL_2755: Unknown result type (might be due to invalid IL or missing references) //IL_275f: Unknown result type (might be due to invalid IL or missing references) //IL_2764: Unknown result type (might be due to invalid IL or missing references) //IL_2770: Unknown result type (might be due to invalid IL or missing references) //IL_12e2: Unknown result type (might be due to invalid IL or missing references) //IL_12e8: Unknown result type (might be due to invalid IL or missing references) //IL_12ed: Unknown result type (might be due to invalid IL or missing references) //IL_12f3: Unknown result type (might be due to invalid IL or missing references) //IL_12f8: Unknown result type (might be due to invalid IL or missing references) //IL_12fe: Unknown result type (might be due to invalid IL or missing references) //IL_1308: Unknown result type (might be due to invalid IL or missing references) //IL_130d: Unknown result type (might be due to invalid IL or missing references) //IL_1313: Unknown result type (might be due to invalid IL or missing references) //IL_1318: Unknown result type (might be due to invalid IL or missing references) //IL_131e: Unknown result type (might be due to invalid IL or missing references) //IL_1328: Unknown result type (might be due to invalid IL or missing references) //IL_132d: Unknown result type (might be due to invalid IL or missing references) //IL_1338: Unknown result type (might be due to invalid IL or missing references) //IL_133e: Unknown result type (might be due to invalid IL or missing references) //IL_1343: Unknown result type (might be due to invalid IL or missing references) //IL_1349: Unknown result type (might be due to invalid IL or missing references) //IL_134e: Unknown result type (might be due to invalid IL or missing references) //IL_1354: Unknown result type (might be due to invalid IL or missing references) //IL_1359: Unknown result type (might be due to invalid IL or missing references) //IL_135f: Unknown result type (might be due to invalid IL or missing references) //IL_1369: Unknown result type (might be due to invalid IL or missing references) //IL_136e: Unknown result type (might be due to invalid IL or missing references) //IL_137a: Unknown result type (might be due to invalid IL or missing references) //IL_3b80: Unknown result type (might be due to invalid IL or missing references) //IL_3b86: Unknown result type (might be due to invalid IL or missing references) //IL_3b8b: Unknown result type (might be due to invalid IL or missing references) //IL_3b91: Unknown result type (might be due to invalid IL or missing references) //IL_3b96: Unknown result type (might be due to invalid IL or missing references) //IL_3b9c: Unknown result type (might be due to invalid IL or missing references) //IL_3ba6: Unknown result type (might be due to invalid IL or missing references) //IL_3bab: Unknown result type (might be due to invalid IL or missing references) //IL_3bb1: Unknown result type (might be due to invalid IL or missing references) //IL_3bb6: Unknown result type (might be due to invalid IL or missing references) //IL_3bbc: Unknown result type (might be due to invalid IL or missing references) //IL_3bc6: Unknown result type (might be due to invalid IL or missing references) //IL_3bcb: Unknown result type (might be due to invalid IL or missing references) //IL_3bd6: Unknown result type (might be due to invalid IL or missing references) //IL_3bdc: Unknown result type (might be due to invalid IL or missing references) //IL_3be1: Unknown result type (might be due to invalid IL or missing references) //IL_3be7: Unknown result type (might be due to invalid IL or missing references) //IL_3bec: Unknown result type (might be due to invalid IL or missing references) //IL_3bf2: Unknown result type (might be due to invalid IL or missing references) //IL_3bf7: Unknown result type (might be due to invalid IL or missing references) //IL_3bfd: Unknown result type (might be due to invalid IL or missing references) //IL_3c07: Unknown result type (might be due to invalid IL or missing references) //IL_3c0c: Unknown result type (might be due to invalid IL or missing references) //IL_3c18: Unknown result type (might be due to invalid IL or missing references) //IL_278a: Unknown result type (might be due to invalid IL or missing references) //IL_2790: Unknown result type (might be due to invalid IL or missing references) //IL_2795: Unknown result type (might be due to invalid IL or missing references) //IL_279b: Unknown result type (might be due to invalid IL or missing references) //IL_27a0: Unknown result type (might be due to invalid IL or missing references) //IL_27a6: Unknown result type (might be due to invalid IL or missing references) //IL_27b0: Unknown result type (might be due to invalid IL or missing references) //IL_27b5: Unknown result type (might be due to invalid IL or missing references) //IL_27bb: Unknown result type (might be due to invalid IL or missing references) //IL_27c0: Unknown result type (might be due to invalid IL or missing references) //IL_27c6: Unknown result type (might be due to invalid IL or missing references) //IL_27d0: Unknown result type (might be due to invalid IL or missing references) //IL_27d5: Unknown result type (might be due to invalid IL or missing references) //IL_27e0: Unknown result type (might be due to invalid IL or missing references) //IL_27e6: Unknown result type (might be due to invalid IL or missing references) //IL_27eb: Unknown result type (might be due to invalid IL or missing references) //IL_27f1: Unknown result type (might be due to invalid IL or missing references) //IL_27f6: Unknown result type (might be due to invalid IL or missing references) //IL_27fc: Unknown result type (might be due to invalid IL or missing references) //IL_2801: Unknown result type (might be due to invalid IL or missing references) //IL_2807: Unknown result type (might be due to invalid IL or missing references) //IL_2811: Unknown result type (might be due to invalid IL or missing references) //IL_2816: Unknown result type (might be due to invalid IL or missing references) //IL_2822: Unknown result type (might be due to invalid IL or missing references) //IL_1394: Unknown result type (might be due to invalid IL or missing references) //IL_139a: Unknown result type (might be due to invalid IL or missing references) //IL_139f: Unknown result type (might be due to invalid IL or missing references) //IL_13a5: Unknown result type (might be due to invalid IL or missing references) //IL_13aa: Unknown result type (might be due to invalid IL or missing references) //IL_13b0: Unknown result type (might be due to invalid IL or missing references) //IL_13ba: Unknown result type (might be due to invalid IL or missing references) //IL_13bf: Unknown result type (might be due to invalid IL or missing references) //IL_13c5: Unknown result type (might be due to invalid IL or missing references) //IL_13ca: Unknown result type (might be due to invalid IL or missing references) //IL_13d0: Unknown result type (might be due to invalid IL or missing references) //IL_13da: Unknown result type (might be due to invalid IL or missing references) //IL_13df: Unknown result type (might be due to invalid IL or missing references) //IL_13ea: Unknown result type (might be due to invalid IL or missing references) //IL_13f0: Unknown result type (might be due to invalid IL or missing references) //IL_13f5: Unknown result type (might be due to invalid IL or missing references) //IL_13fb: Unknown result type (might be due to invalid IL or missing references) //IL_1400: Unknown result type (might be due to invalid IL or missing references) //IL_1406: Unknown result type (might be due to invalid IL or missing references) //IL_140b: Unknown result type (might be due to invalid IL or missing references) //IL_1411: Unknown result type (might be due to invalid IL or missing references) //IL_141b: Unknown result type (might be due to invalid IL or missing references) //IL_1420: Unknown result type (might be due to invalid IL or missing references) //IL_142c: Unknown result type (might be due to invalid IL or missing references) //IL_3c32: Unknown result type (might be due to invalid IL or missing references) //IL_3c38: Unknown result type (might be due to invalid IL or missing references) //IL_3c3d: Unknown result type (might be due to invalid IL or missing references) //IL_3c43: Unknown result type (might be due to invalid IL or missing references) //IL_3c48: Unknown result type (might be due to invalid IL or missing references) //IL_3c4e: Unknown result type (might be due to invalid IL or missing references) //IL_3c58: Unknown result type (might be due to invalid IL or missing references) //IL_3c5d: Unknown result type (might be due to invalid IL or missing references) //IL_3c63: Unknown result type (might be due to invalid IL or missing references) //IL_3c68: Unknown result type (might be due to invalid IL or missing references) //IL_3c6e: Unknown result type (might be due to invalid IL or missing references) //IL_3c78: Unknown result type (might be due to invalid IL or missing references) //IL_3c7d: Unknown result type (might be due to invalid IL or missing references) //IL_3c88: Unknown result type (might be due to invalid IL or missing references) //IL_3c8e: Unknown result type (might be due to invalid IL or missing references) //IL_3c93: Unknown result type (might be due to invalid IL or missing references) //IL_3c99: Unknown result type (might be due to invalid IL or missing references) //IL_3c9e: Unknown result type (might be due to invalid IL or missing references) //IL_3ca4: Unknown result type (might be due to invalid IL or missing references) //IL_3ca9: Unknown result type (might be due to invalid IL or missing references) //IL_3caf: Unknown result type (might be due to invalid IL or missing references) //IL_3cb9: Unknown result type (might be due to invalid IL or missing references) //IL_3cbe: Unknown result type (might be due to invalid IL or missing references) //IL_3cca: Unknown result type (might be due to invalid IL or missing references) //IL_283c: Unknown result type (might be due to invalid IL or missing references) //IL_2842: Unknown result type (might be due to invalid IL or missing references) //IL_2847: Unknown result type (might be due to invalid IL or missing references) //IL_284d: Unknown result type (might be due to invalid IL or missing references) //IL_2852: Unknown result type (might be due to invalid IL or missing references) //IL_2858: Unknown result type (might be due to invalid IL or missing references) //IL_2862: Unknown result type (might be due to invalid IL or missing references) //IL_2867: Unknown result type (might be due to invalid IL or missing references) //IL_286d: Unknown result type (might be due to invalid IL or missing references) //IL_2872: Unknown result type (might be due to invalid IL or missing references) //IL_2878: Unknown result type (might be due to invalid IL or missing references) //IL_2882: Unknown result type (might be due to invalid IL or missing references) //IL_2887: Unknown result type (might be due to invalid IL or missing references) //IL_2892: Unknown result type (might be due to invalid IL or missing references) //IL_2898: Unknown result type (might be due to invalid IL or missing references) //IL_289d: Unknown result type (might be due to invalid IL or missing references) //IL_28a3: Unknown result type (might be due to invalid IL or missing references) //IL_28a8: Unknown result type (might be due to invalid IL or missing references) //IL_28ae: Unknown result type (might be due to invalid IL or missing references) //IL_28b3: Unknown result type (might be due to invalid IL or missing references) //IL_28b9: Unknown result type (might be due to invalid IL or missing references) //IL_28c3: Unknown result type (might be due to invalid IL or missing references) //IL_28c8: Unknown result type (might be due to invalid IL or missing references) //IL_28d4: Unknown result type (might be due to invalid IL or missing references) //IL_1446: Unknown result type (might be due to invalid IL or missing references) //IL_144c: Unknown result type (might be due to invalid IL or missing references) //IL_1451: Unknown result type (might be due to invalid IL or missing references) //IL_1457: Unknown result type (might be due to invalid IL or missing references) //IL_145c: Unknown result type (might be due to invalid IL or missing references) //IL_1462: Unknown result type (might be due to invalid IL or missing references) //IL_146c: Unknown result type (might be due to invalid IL or missing references) //IL_1471: Unknown result type (might be due to invalid IL or missing references) //IL_1477: Unknown result type (might be due to invalid IL or missing references) //IL_147c: Unknown result type (might be due to invalid IL or missing references) //IL_1482: Unknown result type (might be due to invalid IL or missing references) //IL_148c: Unknown result type (might be due to invalid IL or missing references) //IL_1491: Unknown result type (might be due to invalid IL or missing references) //IL_149c: Unknown result type (might be due to invalid IL or missing references) //IL_14a2: Unknown result type (might be due to invalid IL or missing references) //IL_14a7: Unknown result type (might be due to invalid IL or missing references) //IL_14ad: Unknown result type (might be due to invalid IL or missing references) //IL_14b2: Unknown result type (might be due to invalid IL or missing references) //IL_14b8: Unknown result type (might be due to invalid IL or missing references) //IL_14bd: Unknown result type (might be due to invalid IL or missing references) //IL_14c3: Unknown result type (might be due to invalid IL or missing references) //IL_14cd: Unknown result type (might be due to invalid IL or missing references) //IL_14d2: Unknown result type (might be due to invalid IL or missing references) //IL_14de: Unknown result type (might be due to invalid IL or missing references) //IL_3ce4: Unknown result type (might be due to invalid IL or missing references) //IL_3cea: Unknown result type (might be due to invalid IL or missing references) //IL_3cef: Unknown result type (might be due to invalid IL or missing references) //IL_3cf5: Unknown result type (might be due to invalid IL or missing references) //IL_3cfa: Unknown result type (might be due to invalid IL or missing references) //IL_3d00: Unknown result type (might be due to invalid IL or missing references) //IL_3d0a: Unknown result type (might be due to invalid IL or missing references) //IL_3d0f: Unknown result type (might be due to invalid IL or missing references) //IL_3d15: Unknown result type (might be due to invalid IL or missing references) //IL_3d1a: Unknown result type (might be due to invalid IL or missing references) //IL_3d20: Unknown result type (might be due to invalid IL or missing references) //IL_3d2a: Unknown result type (might be due to invalid IL or missing references) //IL_3d2f: Unknown result type (might be due to invalid IL or missing references) //IL_3d3a: Unknown result type (might be due to invalid IL or missing references) //IL_3d40: Unknown result type (might be due to invalid IL or missing references) //IL_3d45: Unknown result type (might be due to invalid IL or missing references) //IL_3d4b: Unknown result type (might be due to invalid IL or missing references) //IL_3d50: Unknown result type (might be due to invalid IL or missing references) //IL_3d56: Unknown result type (might be due to invalid IL or missing references) //IL_3d5b: Unknown result type (might be due to invalid IL or missing references) //IL_3d61: Unknown result type (might be due to invalid IL or missing references) //IL_3d6b: Unknown result type (might be due to invalid IL or missing references) //IL_3d70: Unknown result type (might be due to invalid IL or missing references) //IL_3d7c: Unknown result type (might be due to invalid IL or missing references) //IL_28ee: Unknown result type (might be due to invalid IL or missing references) //IL_28f4: Unknown result type (might be due to invalid IL or missing references) //IL_28f9: Unknown result type (might be due to invalid IL or missing references) //IL_28ff: Unknown result type (might be due to invalid IL or missing references) //IL_2904: Unknown result type (might be due to invalid IL or missing references) //IL_290a: Unknown result type (might be due to invalid IL or missing references) //IL_2914: Unknown result type (might be due to invalid IL or missing references) //IL_2919: Unknown result type (might be due to invalid IL or missing references) //IL_291f: Unknown result type (might be due to invalid IL or missing references) //IL_2924: Unknown result type (might be due to invalid IL or missing references) //IL_292a: Unknown result type (might be due to invalid IL or missing references) //IL_2934: Unknown result type (might be due to invalid IL or missing references) //IL_2939: Unknown result type (might be due to invalid IL or missing references) //IL_2944: Unknown result type (might be due to invalid IL or missing references) //IL_294a: Unknown result type (might be due to invalid IL or missing references) //IL_294f: Unknown result type (might be due to invalid IL or missing references) //IL_2955: Unknown result type (might be due to invalid IL or missing references) //IL_295a: Unknown result type (might be due to invalid IL or missing references) //IL_2960: Unknown result type (might be due to invalid IL or missing references) //IL_2965: Unknown result type (might be due to invalid IL or missing references) //IL_296b: Unknown result type (might be due to invalid IL or missing references) //IL_2975: Unknown result type (might be due to invalid IL or missing references) //IL_297a: Unknown result type (might be due to invalid IL or missing references) //IL_2986: Unknown result type (might be due to invalid IL or missing references) //IL_3d96: Unknown result type (might be due to invalid IL or missing references) //IL_3d9c: Unknown result type (might be due to invalid IL or missing references) //IL_3da1: Unknown result type (might be due to invalid IL or missing references) //IL_3da7: Unknown result type (might be due to invalid IL or missing references) //IL_3dac: Unknown result type (might be due to invalid IL or missing references) //IL_3db2: Unknown result type (might be due to invalid IL or missing references) //IL_3dbc: Unknown result type (might be due to invalid IL or missing references) //IL_3dc1: Unknown result type (might be due to invalid IL or missing references) //IL_3dc7: Unknown result type (might be due to invalid IL or missing references) //IL_3dcc: Unknown result type (might be due to invalid IL or missing references) //IL_3dd2: Unknown result type (might be due to invalid IL or missing references) //IL_3ddc: Unknown result type (might be due to invalid IL or missing references) //IL_3de1: Unknown result type (might be due to invalid IL or missing references) //IL_3dec: Unknown result type (might be due to invalid IL or missing references) //IL_3df2: Unknown result type (might be due to invalid IL or missing references) //IL_3df7: Unknown result type (might be due to invalid IL or missing references) //IL_3dfd: Unknown result type (might be due to invalid IL or missing references) //IL_3e02: Unknown result type (might be due to invalid IL or missing references) //IL_3e08: Unknown result type (might be due to invalid IL or missing references) //IL_3e0d: Unknown result type (might be due to invalid IL or missing references) //IL_3e13: Unknown result type (might be due to invalid IL or missing references) //IL_3e1d: Unknown result type (might be due to invalid IL or missing references) //IL_3e22: Unknown result type (might be due to invalid IL or missing references) //IL_3e2e: Unknown result type (might be due to invalid IL or missing references) //IL_29a0: Unknown result type (might be due to invalid IL or missing references) //IL_29a6: Unknown result type (might be due to invalid IL or missing references) //IL_29ab: Unknown result type (might be due to invalid IL or missing references) //IL_29b1: Unknown result type (might be due to invalid IL or missing references) //IL_29b6: Unknown result type (might be due to invalid IL or missing references) //IL_29bc: Unknown result type (might be due to invalid IL or missing references) //IL_29c6: Unknown result type (might be due to invalid IL or missing references) //IL_29cb: Unknown result type (might be due to invalid IL or missing references) //IL_29d1: Unknown result type (might be due to invalid IL or missing references) //IL_29d6: Unknown result type (might be due to invalid IL or missing references) //IL_29dc: Unknown result type (might be due to invalid IL or missing references) //IL_29e6: Unknown result type (might be due to invalid IL or missing references) //IL_29eb: Unknown result type (might be due to invalid IL or missing references) //IL_29f6: Unknown result type (might be due to invalid IL or missing references) //IL_29fc: Unknown result type (might be due to invalid IL or missing references) //IL_2a01: Unknown result type (might be due to invalid IL or missing references) //IL_2a07: Unknown result type (might be due to invalid IL or missing references) //IL_2a0c: Unknown result type (might be due to invalid IL or missing references) //IL_2a12: Unknown result type (might be due to invalid IL or missing references) //IL_2a17: Unknown result type (might be due to invalid IL or missing references) //IL_2a1d: Unknown result type (might be due to invalid IL or missing references) //IL_2a27: Unknown result type (might be due to invalid IL or missing references) //IL_2a2c: Unknown result type (might be due to invalid IL or missing references) //IL_2a38: Unknown result type (might be due to invalid IL or missing references) //IL_3e48: Unknown result type (might be due to invalid IL or missing references) //IL_3e4e: Unknown result type (might be due to invalid IL or missing references) //IL_3e53: Unknown result type (might be due to invalid IL or missing references) //IL_3e59: Unknown result type (might be due to invalid IL or missing references) //IL_3e5e: Unknown result type (might be due to invalid IL or missing references) //IL_3e64: Unknown result type (might be due to invalid IL or missing references) //IL_3e6e: Unknown result type (might be due to invalid IL or missing references) //IL_3e73: Unknown result type (might be due to invalid IL or missing references) //IL_3e79: Unknown result type (might be due to invalid IL or missing references) //IL_3e7e: Unknown result type (might be due to invalid IL or missing references) //IL_3e84: Unknown result type (might be due to invalid IL or missing references) //IL_3e8e: Unknown result type (might be due to invalid IL or missing references) //IL_3e93: Unknown result type (might be due to invalid IL or missing references) //IL_3e9e: Unknown result type (might be due to invalid IL or missing references) //IL_3ea4: Unknown result type (might be due to invalid IL or missing references) //IL_3ea9: Unknown result type (might be due to invalid IL or missing references) //IL_3eaf: Unknown result type (might be due to invalid IL or missing references) //IL_3eb4: Unknown result type (might be due to invalid IL or missing references) //IL_3eba: Unknown result type (might be due to invalid IL or missing references) //IL_3ebf: Unknown result type (might be due to invalid IL or missing references) //IL_3ec5: Unknown result type (might be due to invalid IL or missing references) //IL_3ecf: Unknown result type (might be due to invalid IL or missing references) //IL_3ed4: Unknown result type (might be due to invalid IL or missing references) //IL_3ee0: Unknown result type (might be due to invalid IL or missing references) //IL_3efa: Unknown result type (might be due to invalid IL or missing references) //IL_3f00: Unknown result type (might be due to invalid IL or missing references) //IL_3f05: Unknown result type (might be due to invalid IL or missing references) //IL_3f0b: Unknown result type (might be due to invalid IL or missing references) //IL_3f10: Unknown result type (might be due to invalid IL or missing references) //IL_3f16: Unknown result type (might be due to invalid IL or missing references) //IL_3f20: Unknown result type (might be due to invalid IL or missing references) //IL_3f25: Unknown result type (might be due to invalid IL or missing references) //IL_3f2b: Unknown result type (might be due to invalid IL or missing references) //IL_3f30: Unknown result type (might be due to invalid IL or missing references) //IL_3f36: Unknown result type (might be due to invalid IL or missing references) //IL_3f40: Unknown result type (might be due to invalid IL or missing references) //IL_3f45: Unknown result type (might be due to invalid IL or missing references) //IL_3f50: Unknown result type (might be due to invalid IL or missing references) //IL_3f56: Unknown result type (might be due to invalid IL or missing references) //IL_3f5b: Unknown result type (might be due to invalid IL or missing references) //IL_3f61: Unknown result type (might be due to invalid IL or missing references) //IL_3f66: Unknown result type (might be due to invalid IL or missing references) //IL_3f6c: Unknown result type (might be due to invalid IL or missing references) //IL_3f71: Unknown result type (might be due to invalid IL or missing references) //IL_3f77: Unknown result type (might be due to invalid IL or missing references) //IL_3f81: Unknown result type (might be due to invalid IL or missing references) //IL_3f86: Unknown result type (might be due to invalid IL or missing references) //IL_3f92: Unknown result type (might be due to invalid IL or missing references) if (switching || !ledgeSwitchingDetectors.allowLedgeSwitching || !grabbedOn) { return; } if (!Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + minDistFromGroundHeight2 + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2 + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2 + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2 + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2 + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + rightWidth * 1.862f + firstSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + rightWidth * 1.862f + firstSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + rightWidth * 1.862f + firstSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + rightWidth * 1.862f + firstSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + rightWidth * 2f + surfaceDetectorWidth2 + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 0.375f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 0.75f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 1.125f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !r1FirstBackSurfaceDetectorsHit && !r1FirstBackHit && r1MiddleSurfaceDetectorsHit && r1MiddleHit) { r1MiddleTimer += 0.01f; if (r1MiddleTimer > 0.1f || rotTimer > 0f) { r1MiddleClear = true; } else { r1MiddleClear = false; } } else { r1MiddleTimer = 0f; r1MiddleClear = false; } if (!Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + minDistFromGroundHeight2 + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2 + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2 + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2 + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2 + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + rightWidth * 1.862f + secondSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + rightWidth * 1.862f + secondSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + rightWidth * 1.862f + secondSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + rightWidth * 1.862f + secondSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + rightWidth * 2f + surfaceDetectorWidth2 + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 0.375f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 0.75f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 1.125f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !r2FirstBackSurfaceDetectorsHit && !r2FirstBackHit && r2MiddleSurfaceDetectorsHit && r2MiddleHit) { r2MiddleTimer += 0.01f; if (r2MiddleTimer > 0.1f || rotTimer > 0f) { r2MiddleClear = true; } else { r2MiddleClear = false; } } else { r2MiddleTimer = 0f; r2MiddleClear = false; } if (!Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + minDistFromGroundHeight2 + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2 + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2 + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2 + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2 + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + rightWidth * 1.862f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + rightWidth * 1.862f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + rightWidth * 1.862f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + rightWidth * 1.862f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + rightWidth * 2f + surfaceDetectorWidth2 + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 0.375f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 0.75f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 1.125f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !r3FirstBackSurfaceDetectorsHit && !r3FirstBackHit && r3MiddleSurfaceDetectorsHit && r3MiddleHit) { r3MiddleTimer += 0.01f; if (r3MiddleTimer > 0.1f || rotTimer > 0f) { r3MiddleClear = true; } else { r3MiddleClear = false; } } else { r3MiddleTimer = 0f; r3MiddleClear = false; } } private void LedgeSwitchingClearFirstBackRight() { //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_0054: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0069: Unknown result type (might be due to invalid IL or missing references) //IL_006e: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_0084: Unknown result type (might be due to invalid IL or missing references) //IL_008f: Unknown result type (might be due to invalid IL or missing references) //IL_0095: Unknown result type (might be due to invalid IL or missing references) //IL_009a: Unknown result type (might be due to invalid IL or missing references) //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_00aa: Unknown result type (might be due to invalid IL or missing references) //IL_00af: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) //IL_00ba: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00ca: Unknown result type (might be due to invalid IL or missing references) //IL_00cf: Unknown result type (might be due to invalid IL or missing references) //IL_00d5: Unknown result type (might be due to invalid IL or missing references) //IL_00df: Unknown result type (might be due to invalid IL or missing references) //IL_00e4: Unknown result type (might be due to invalid IL or missing references) //IL_00ea: Unknown result type (might be due to invalid IL or missing references) //IL_00ef: Unknown result type (might be due to invalid IL or missing references) //IL_00f5: Unknown result type (might be due to invalid IL or missing references) //IL_00fa: Unknown result type (might be due to invalid IL or missing references) //IL_0106: Unknown result type (might be due to invalid IL or missing references) //IL_0120: Unknown result type (might be due to invalid IL or missing references) //IL_0126: Unknown result type (might be due to invalid IL or missing references) //IL_012b: Unknown result type (might be due to invalid IL or missing references) //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_0136: Unknown result type (might be due to invalid IL or missing references) //IL_013c: Unknown result type (might be due to invalid IL or missing references) //IL_0146: Unknown result type (might be due to invalid IL or missing references) //IL_014b: Unknown result type (might be due to invalid IL or missing references) //IL_0151: Unknown result type (might be due to invalid IL or missing references) //IL_0156: Unknown result type (might be due to invalid IL or missing references) //IL_015c: Unknown result type (might be due to invalid IL or missing references) //IL_0166: Unknown result type (might be due to invalid IL or missing references) //IL_016b: Unknown result type (might be due to invalid IL or missing references) //IL_0171: Unknown result type (might be due to invalid IL or missing references) //IL_017b: Unknown result type (might be due to invalid IL or missing references) //IL_0180: Unknown result type (might be due to invalid IL or missing references) //IL_0186: Unknown result type (might be due to invalid IL or missing references) //IL_018b: Unknown result type (might be due to invalid IL or missing references) //IL_0191: Unknown result type (might be due to invalid IL or missing references) //IL_0196: Unknown result type (might be due to invalid IL or missing references) //IL_01a1: Unknown result type (might be due to invalid IL or missing references) //IL_01a7: Unknown result type (might be due to invalid IL or missing references) //IL_01ac: Unknown result type (might be due to invalid IL or missing references) //IL_01b2: Unknown result type (might be due to invalid IL or missing references) //IL_01bc: Unknown result type (might be due to invalid IL or missing references) //IL_01c1: Unknown result type (might be due to invalid IL or missing references) //IL_01c7: Unknown result type (might be due to invalid IL or missing references) //IL_01d1: Unknown result type (might be due to invalid IL or missing references) //IL_01d6: Unknown result type (might be due to invalid IL or missing references) //IL_01dc: Unknown result type (might be due to invalid IL or missing references) //IL_01e1: Unknown result type (might be due to invalid IL or missing references) //IL_01e7: Unknown result type (might be due to invalid IL or missing references) //IL_01ec: Unknown result type (might be due to invalid IL or missing references) //IL_01f2: Unknown result type (might be due to invalid IL or missing references) //IL_01fc: Unknown result type (might be due to invalid IL or missing references) //IL_0201: Unknown result type (might be due to invalid IL or missing references) //IL_0207: Unknown result type (might be due to invalid IL or missing references) //IL_0211: Unknown result type (might be due to invalid IL or missing references) //IL_0216: Unknown result type (might be due to invalid IL or missing references) //IL_021c: Unknown result type (might be due to invalid IL or missing references) //IL_0221: Unknown result type (might be due to invalid IL or missing references) //IL_0227: Unknown result type (might be due to invalid IL or missing references) //IL_022c: Unknown result type (might be due to invalid IL or missing references) //IL_0238: Unknown result type (might be due to invalid IL or missing references) //IL_1702: Unknown result type (might be due to invalid IL or missing references) //IL_1708: Unknown result type (might be due to invalid IL or missing references) //IL_170d: Unknown result type (might be due to invalid IL or missing references) //IL_1713: Unknown result type (might be due to invalid IL or missing references) //IL_1718: Unknown result type (might be due to invalid IL or missing references) //IL_171e: Unknown result type (might be due to invalid IL or missing references) //IL_1728: Unknown result type (might be due to invalid IL or missing references) //IL_172d: Unknown result type (might be due to invalid IL or missing references) //IL_1733: Unknown result type (might be due to invalid IL or missing references) //IL_173d: Unknown result type (might be due to invalid IL or missing references) //IL_1742: Unknown result type (might be due to invalid IL or missing references) //IL_1748: Unknown result type (might be due to invalid IL or missing references) //IL_174d: Unknown result type (might be due to invalid IL or missing references) //IL_1753: Unknown result type (might be due to invalid IL or missing references) //IL_1758: Unknown result type (might be due to invalid IL or missing references) //IL_1763: Unknown result type (might be due to invalid IL or missing references) //IL_1769: Unknown result type (might be due to invalid IL or missing references) //IL_176e: Unknown result type (might be due to invalid IL or missing references) //IL_1774: Unknown result type (might be due to invalid IL or missing references) //IL_177e: Unknown result type (might be due to invalid IL or missing references) //IL_1783: Unknown result type (might be due to invalid IL or missing references) //IL_1789: Unknown result type (might be due to invalid IL or missing references) //IL_178e: Unknown result type (might be due to invalid IL or missing references) //IL_1794: Unknown result type (might be due to invalid IL or missing references) //IL_179e: Unknown result type (might be due to invalid IL or missing references) //IL_17a3: Unknown result type (might be due to invalid IL or missing references) //IL_17a9: Unknown result type (might be due to invalid IL or missing references) //IL_17b3: Unknown result type (might be due to invalid IL or missing references) //IL_17b8: Unknown result type (might be due to invalid IL or missing references) //IL_17be: Unknown result type (might be due to invalid IL or missing references) //IL_17c3: Unknown result type (might be due to invalid IL or missing references) //IL_17c9: Unknown result type (might be due to invalid IL or missing references) //IL_17ce: Unknown result type (might be due to invalid IL or missing references) //IL_17da: Unknown result type (might be due to invalid IL or missing references) //IL_0252: Unknown result type (might be due to invalid IL or missing references) //IL_0258: Unknown result type (might be due to invalid IL or missing references) //IL_025d: Unknown result type (might be due to invalid IL or missing references) //IL_0263: Unknown result type (might be due to invalid IL or missing references) //IL_0268: Unknown result type (might be due to invalid IL or missing references) //IL_026e: Unknown result type (might be due to invalid IL or missing references) //IL_0278: Unknown result type (might be due to invalid IL or missing references) //IL_027d: Unknown result type (might be due to invalid IL or missing references) //IL_0283: Unknown result type (might be due to invalid IL or missing references) //IL_0288: Unknown result type (might be due to invalid IL or missing references) //IL_028e: Unknown result type (might be due to invalid IL or missing references) //IL_0298: Unknown result type (might be due to invalid IL or missing references) //IL_029d: Unknown result type (might be due to invalid IL or missing references) //IL_02a3: Unknown result type (might be due to invalid IL or missing references) //IL_02ad: Unknown result type (might be due to invalid IL or missing references) //IL_02b2: Unknown result type (might be due to invalid IL or missing references) //IL_02b8: Unknown result type (might be due to invalid IL or missing references) //IL_02bd: Unknown result type (might be due to invalid IL or missing references) //IL_02c3: Unknown result type (might be due to invalid IL or missing references) //IL_02c8: Unknown result type (might be due to invalid IL or missing references) //IL_02d3: Unknown result type (might be due to invalid IL or missing references) //IL_02d9: Unknown result type (might be due to invalid IL or missing references) //IL_02de: Unknown result type (might be due to invalid IL or missing references) //IL_02e4: Unknown result type (might be due to invalid IL or missing references) //IL_02ee: Unknown result type (might be due to invalid IL or missing references) //IL_02f3: Unknown result type (might be due to invalid IL or missing references) //IL_02f9: Unknown result type (might be due to invalid IL or missing references) //IL_0303: Unknown result type (might be due to invalid IL or missing references) //IL_0308: Unknown result type (might be due to invalid IL or missing references) //IL_030e: Unknown result type (might be due to invalid IL or missing references) //IL_0313: Unknown result type (might be due to invalid IL or missing references) //IL_0319: Unknown result type (might be due to invalid IL or missing references) //IL_031e: Unknown result type (might be due to invalid IL or missing references) //IL_0324: Unknown result type (might be due to invalid IL or missing references) //IL_032e: Unknown result type (might be due to invalid IL or missing references) //IL_0333: Unknown result type (might be due to invalid IL or missing references) //IL_0339: Unknown result type (might be due to invalid IL or missing references) //IL_0343: Unknown result type (might be due to invalid IL or missing references) //IL_0348: Unknown result type (might be due to invalid IL or missing references) //IL_034e: Unknown result type (might be due to invalid IL or missing references) //IL_0353: Unknown result type (might be due to invalid IL or missing references) //IL_0359: Unknown result type (might be due to invalid IL or missing references) //IL_035e: Unknown result type (might be due to invalid IL or missing references) //IL_036a: Unknown result type (might be due to invalid IL or missing references) //IL_17f4: Unknown result type (might be due to invalid IL or missing references) //IL_17fa: Unknown result type (might be due to invalid IL or missing references) //IL_17ff: Unknown result type (might be due to invalid IL or missing references) //IL_1805: Unknown result type (might be due to invalid IL or missing references) //IL_180a: Unknown result type (might be due to invalid IL or missing references) //IL_1810: Unknown result type (might be due to invalid IL or missing references) //IL_181a: Unknown result type (might be due to invalid IL or missing references) //IL_181f: Unknown result type (might be due to invalid IL or missing references) //IL_1825: Unknown result type (might be due to invalid IL or missing references) //IL_182a: Unknown result type (might be due to invalid IL or missing references) //IL_1830: Unknown result type (might be due to invalid IL or missing references) //IL_183a: Unknown result type (might be due to invalid IL or missing references) //IL_183f: Unknown result type (might be due to invalid IL or missing references) //IL_1845: Unknown result type (might be due to invalid IL or missing references) //IL_184f: Unknown result type (might be due to invalid IL or missing references) //IL_1854: Unknown result type (might be due to invalid IL or missing references) //IL_185a: Unknown result type (might be due to invalid IL or missing references) //IL_185f: Unknown result type (might be due to invalid IL or missing references) //IL_1865: Unknown result type (might be due to invalid IL or missing references) //IL_186a: Unknown result type (might be due to invalid IL or missing references) //IL_1875: Unknown result type (might be due to invalid IL or missing references) //IL_187b: Unknown result type (might be due to invalid IL or missing references) //IL_1880: Unknown result type (might be due to invalid IL or missing references) //IL_1886: Unknown result type (might be due to invalid IL or missing references) //IL_1890: Unknown result type (might be due to invalid IL or missing references) //IL_1895: Unknown result type (might be due to invalid IL or missing references) //IL_189b: Unknown result type (might be due to invalid IL or missing references) //IL_18a5: Unknown result type (might be due to invalid IL or missing references) //IL_18aa: Unknown result type (might be due to invalid IL or missing references) //IL_18b0: Unknown result type (might be due to invalid IL or missing references) //IL_18b5: Unknown result type (might be due to invalid IL or missing references) //IL_18bb: Unknown result type (might be due to invalid IL or missing references) //IL_18c0: Unknown result type (might be due to invalid IL or missing references) //IL_18c6: Unknown result type (might be due to invalid IL or missing references) //IL_18d0: Unknown result type (might be due to invalid IL or missing references) //IL_18d5: Unknown result type (might be due to invalid IL or missing references) //IL_18db: Unknown result type (might be due to invalid IL or missing references) //IL_18e5: Unknown result type (might be due to invalid IL or missing references) //IL_18ea: Unknown result type (might be due to invalid IL or missing references) //IL_18f0: Unknown result type (might be due to invalid IL or missing references) //IL_18f5: Unknown result type (might be due to invalid IL or missing references) //IL_18fb: Unknown result type (might be due to invalid IL or missing references) //IL_1900: Unknown result type (might be due to invalid IL or missing references) //IL_190c: Unknown result type (might be due to invalid IL or missing references) //IL_0384: Unknown result type (might be due to invalid IL or missing references) //IL_038a: Unknown result type (might be due to invalid IL or missing references) //IL_038f: Unknown result type (might be due to invalid IL or missing references) //IL_039a: Unknown result type (might be due to invalid IL or missing references) //IL_03a0: Unknown result type (might be due to invalid IL or missing references) //IL_03a5: Unknown result type (might be due to invalid IL or missing references) //IL_03ab: Unknown result type (might be due to invalid IL or missing references) //IL_03b5: Unknown result type (might be due to invalid IL or missing references) //IL_03ba: Unknown result type (might be due to invalid IL or missing references) //IL_03c0: Unknown result type (might be due to invalid IL or missing references) //IL_03c5: Unknown result type (might be due to invalid IL or missing references) //IL_03cb: Unknown result type (might be due to invalid IL or missing references) //IL_03d0: Unknown result type (might be due to invalid IL or missing references) //IL_03e8: Unknown result type (might be due to invalid IL or missing references) //IL_03ed: Unknown result type (might be due to invalid IL or missing references) //IL_0405: Unknown result type (might be due to invalid IL or missing references) //IL_040b: Unknown result type (might be due to invalid IL or missing references) //IL_0415: Unknown result type (might be due to invalid IL or missing references) //IL_041a: Unknown result type (might be due to invalid IL or missing references) //IL_0420: Unknown result type (might be due to invalid IL or missing references) //IL_0425: Unknown result type (might be due to invalid IL or missing references) //IL_0430: Unknown result type (might be due to invalid IL or missing references) //IL_0436: Unknown result type (might be due to invalid IL or missing references) //IL_043b: Unknown result type (might be due to invalid IL or missing references) //IL_0446: Unknown result type (might be due to invalid IL or missing references) //IL_044c: Unknown result type (might be due to invalid IL or missing references) //IL_0451: Unknown result type (might be due to invalid IL or missing references) //IL_0457: Unknown result type (might be due to invalid IL or missing references) //IL_0461: Unknown result type (might be due to invalid IL or missing references) //IL_0466: Unknown result type (might be due to invalid IL or missing references) //IL_046c: Unknown result type (might be due to invalid IL or missing references) //IL_0471: Unknown result type (might be due to invalid IL or missing references) //IL_0477: Unknown result type (might be due to invalid IL or missing references) //IL_047c: Unknown result type (might be due to invalid IL or missing references) //IL_0494: Unknown result type (might be due to invalid IL or missing references) //IL_0499: Unknown result type (might be due to invalid IL or missing references) //IL_04b1: Unknown result type (might be due to invalid IL or missing references) //IL_04b7: Unknown result type (might be due to invalid IL or missing references) //IL_04c1: Unknown result type (might be due to invalid IL or missing references) //IL_04c6: Unknown result type (might be due to invalid IL or missing references) //IL_04cc: Unknown result type (might be due to invalid IL or missing references) //IL_04d1: Unknown result type (might be due to invalid IL or missing references) //IL_04dd: Unknown result type (might be due to invalid IL or missing references) //IL_2dd6: Unknown result type (might be due to invalid IL or missing references) //IL_2ddc: Unknown result type (might be due to invalid IL or missing references) //IL_2de1: Unknown result type (might be due to invalid IL or missing references) //IL_2de7: Unknown result type (might be due to invalid IL or missing references) //IL_2dec: Unknown result type (might be due to invalid IL or missing references) //IL_2df2: Unknown result type (might be due to invalid IL or missing references) //IL_2dfc: Unknown result type (might be due to invalid IL or missing references) //IL_2e01: Unknown result type (might be due to invalid IL or missing references) //IL_2e07: Unknown result type (might be due to invalid IL or missing references) //IL_2e11: Unknown result type (might be due to invalid IL or missing references) //IL_2e16: Unknown result type (might be due to invalid IL or missing references) //IL_2e1c: Unknown result type (might be due to invalid IL or missing references) //IL_2e21: Unknown result type (might be due to invalid IL or missing references) //IL_2e27: Unknown result type (might be due to invalid IL or missing references) //IL_2e2c: Unknown result type (might be due to invalid IL or missing references) //IL_2e37: Unknown result type (might be due to invalid IL or missing references) //IL_2e3d: Unknown result type (might be due to invalid IL or missing references) //IL_2e42: Unknown result type (might be due to invalid IL or missing references) //IL_2e48: Unknown result type (might be due to invalid IL or missing references) //IL_2e52: Unknown result type (might be due to invalid IL or missing references) //IL_2e57: Unknown result type (might be due to invalid IL or missing references) //IL_2e5d: Unknown result type (might be due to invalid IL or missing references) //IL_2e62: Unknown result type (might be due to invalid IL or missing references) //IL_2e68: Unknown result type (might be due to invalid IL or missing references) //IL_2e72: Unknown result type (might be due to invalid IL or missing references) //IL_2e77: Unknown result type (might be due to invalid IL or missing references) //IL_2e7d: Unknown result type (might be due to invalid IL or missing references) //IL_2e87: Unknown result type (might be due to invalid IL or missing references) //IL_2e8c: Unknown result type (might be due to invalid IL or missing references) //IL_2e92: Unknown result type (might be due to invalid IL or missing references) //IL_2e97: Unknown result type (might be due to invalid IL or missing references) //IL_2e9d: Unknown result type (might be due to invalid IL or missing references) //IL_2ea2: Unknown result type (might be due to invalid IL or missing references) //IL_2eae: Unknown result type (might be due to invalid IL or missing references) //IL_1926: Unknown result type (might be due to invalid IL or missing references) //IL_192c: Unknown result type (might be due to invalid IL or missing references) //IL_1931: Unknown result type (might be due to invalid IL or missing references) //IL_1937: Unknown result type (might be due to invalid IL or missing references) //IL_193c: Unknown result type (might be due to invalid IL or missing references) //IL_1942: Unknown result type (might be due to invalid IL or missing references) //IL_194c: Unknown result type (might be due to invalid IL or missing references) //IL_1951: Unknown result type (might be due to invalid IL or missing references) //IL_1957: Unknown result type (might be due to invalid IL or missing references) //IL_195c: Unknown result type (might be due to invalid IL or missing references) //IL_1962: Unknown result type (might be due to invalid IL or missing references) //IL_196c: Unknown result type (might be due to invalid IL or missing references) //IL_1971: Unknown result type (might be due to invalid IL or missing references) //IL_1977: Unknown result type (might be due to invalid IL or missing references) //IL_1981: Unknown result type (might be due to invalid IL or missing references) //IL_1986: Unknown result type (might be due to invalid IL or missing references) //IL_198c: Unknown result type (might be due to invalid IL or missing references) //IL_1991: Unknown result type (might be due to invalid IL or missing references) //IL_1997: Unknown result type (might be due to invalid IL or missing references) //IL_199c: Unknown result type (might be due to invalid IL or missing references) //IL_19a7: Unknown result type (might be due to invalid IL or missing references) //IL_19ad: Unknown result type (might be due to invalid IL or missing references) //IL_19b2: Unknown result type (might be due to invalid IL or missing references) //IL_19b8: Unknown result type (might be due to invalid IL or missing references) //IL_19c2: Unknown result type (might be due to invalid IL or missing references) //IL_19c7: Unknown result type (might be due to invalid IL or missing references) //IL_19cd: Unknown result type (might be due to invalid IL or missing references) //IL_19d7: Unknown result type (might be due to invalid IL or missing references) //IL_19dc: Unknown result type (might be due to invalid IL or missing references) //IL_19e2: Unknown result type (might be due to invalid IL or missing references) //IL_19e7: Unknown result type (might be due to invalid IL or missing references) //IL_19ed: Unknown result type (might be due to invalid IL or missing references) //IL_19f2: Unknown result type (might be due to invalid IL or missing references) //IL_19f8: Unknown result type (might be due to invalid IL or missing references) //IL_1a02: Unknown result type (might be due to invalid IL or missing references) //IL_1a07: Unknown result type (might be due to invalid IL or missing references) //IL_1a0d: Unknown result type (might be due to invalid IL or missing references) //IL_1a17: Unknown result type (might be due to invalid IL or missing references) //IL_1a1c: Unknown result type (might be due to invalid IL or missing references) //IL_1a22: Unknown result type (might be due to invalid IL or missing references) //IL_1a27: Unknown result type (might be due to invalid IL or missing references) //IL_1a2d: Unknown result type (might be due to invalid IL or missing references) //IL_1a32: Unknown result type (might be due to invalid IL or missing references) //IL_1a3e: Unknown result type (might be due to invalid IL or missing references) //IL_04f7: Unknown result type (might be due to invalid IL or missing references) //IL_04fd: Unknown result type (might be due to invalid IL or missing references) //IL_0502: Unknown result type (might be due to invalid IL or missing references) //IL_050d: Unknown result type (might be due to invalid IL or missing references) //IL_0513: Unknown result type (might be due to invalid IL or missing references) //IL_0518: Unknown result type (might be due to invalid IL or missing references) //IL_051e: Unknown result type (might be due to invalid IL or missing references) //IL_0528: Unknown result type (might be due to invalid IL or missing references) //IL_052d: Unknown result type (might be due to invalid IL or missing references) //IL_0533: Unknown result type (might be due to invalid IL or missing references) //IL_0538: Unknown result type (might be due to invalid IL or missing references) //IL_053e: Unknown result type (might be due to invalid IL or missing references) //IL_0543: Unknown result type (might be due to invalid IL or missing references) //IL_055b: Unknown result type (might be due to invalid IL or missing references) //IL_0560: Unknown result type (might be due to invalid IL or missing references) //IL_0578: Unknown result type (might be due to invalid IL or missing references) //IL_057e: Unknown result type (might be due to invalid IL or missing references) //IL_0588: Unknown result type (might be due to invalid IL or missing references) //IL_058d: Unknown result type (might be due to invalid IL or missing references) //IL_0593: Unknown result type (might be due to invalid IL or missing references) //IL_0598: Unknown result type (might be due to invalid IL or missing references) //IL_05a3: Unknown result type (might be due to invalid IL or missing references) //IL_05a9: Unknown result type (might be due to invalid IL or missing references) //IL_05ae: Unknown result type (might be due to invalid IL or missing references) //IL_05b9: Unknown result type (might be due to invalid IL or missing references) //IL_05bf: Unknown result type (might be due to invalid IL or missing references) //IL_05c4: Unknown result type (might be due to invalid IL or missing references) //IL_05ca: Unknown result type (might be due to invalid IL or missing references) //IL_05d4: Unknown result type (might be due to invalid IL or missing references) //IL_05d9: Unknown result type (might be due to invalid IL or missing references) //IL_05df: Unknown result type (might be due to invalid IL or missing references) //IL_05e4: Unknown result type (might be due to invalid IL or missing references) //IL_05ea: Unknown result type (might be due to invalid IL or missing references) //IL_05ef: Unknown result type (might be due to invalid IL or missing references) //IL_0607: Unknown result type (might be due to invalid IL or missing references) //IL_060c: Unknown result type (might be due to invalid IL or missing references) //IL_0624: Unknown result type (might be due to invalid IL or missing references) //IL_062a: Unknown result type (might be due to invalid IL or missing references) //IL_0634: Unknown result type (might be due to invalid IL or missing references) //IL_0639: Unknown result type (might be due to invalid IL or missing references) //IL_063f: Unknown result type (might be due to invalid IL or missing references) //IL_0644: Unknown result type (might be due to invalid IL or missing references) //IL_0650: Unknown result type (might be due to invalid IL or missing references) //IL_2ec8: Unknown result type (might be due to invalid IL or missing references) //IL_2ece: Unknown result type (might be due to invalid IL or missing references) //IL_2ed3: Unknown result type (might be due to invalid IL or missing references) //IL_2ed9: Unknown result type (might be due to invalid IL or missing references) //IL_2ede: Unknown result type (might be due to invalid IL or missing references) //IL_2ee4: Unknown result type (might be due to invalid IL or missing references) //IL_2eee: Unknown result type (might be due to invalid IL or missing references) //IL_2ef3: Unknown result type (might be due to invalid IL or missing references) //IL_2ef9: Unknown result type (might be due to invalid IL or missing references) //IL_2efe: Unknown result type (might be due to invalid IL or missing references) //IL_2f04: Unknown result type (might be due to invalid IL or missing references) //IL_2f0e: Unknown result type (might be due to invalid IL or missing references) //IL_2f13: Unknown result type (might be due to invalid IL or missing references) //IL_2f19: Unknown result type (might be due to invalid IL or missing references) //IL_2f23: Unknown result type (might be due to invalid IL or missing references) //IL_2f28: Unknown result type (might be due to invalid IL or missing references) //IL_2f2e: Unknown result type (might be due to invalid IL or missing references) //IL_2f33: Unknown result type (might be due to invalid IL or missing references) //IL_2f39: Unknown result type (might be due to invalid IL or missing references) //IL_2f3e: Unknown result type (might be due to invalid IL or missing references) //IL_2f49: Unknown result type (might be due to invalid IL or missing references) //IL_2f4f: Unknown result type (might be due to invalid IL or missing references) //IL_2f54: Unknown result type (might be due to invalid IL or missing references) //IL_2f5a: Unknown result type (might be due to invalid IL or missing references) //IL_2f64: Unknown result type (might be due to invalid IL or missing references) //IL_2f69: Unknown result type (might be due to invalid IL or missing references) //IL_2f6f: Unknown result type (might be due to invalid IL or missing references) //IL_2f79: Unknown result type (might be due to invalid IL or missing references) //IL_2f7e: Unknown result type (might be due to invalid IL or missing references) //IL_2f84: Unknown result type (might be due to invalid IL or missing references) //IL_2f89: Unknown result type (might be due to invalid IL or missing references) //IL_2f8f: Unknown result type (might be due to invalid IL or missing references) //IL_2f94: Unknown result type (might be due to invalid IL or missing references) //IL_2f9a: Unknown result type (might be due to invalid IL or missing references) //IL_2fa4: Unknown result type (might be due to invalid IL or missing references) //IL_2fa9: Unknown result type (might be due to invalid IL or missing references) //IL_2faf: Unknown result type (might be due to invalid IL or missing references) //IL_2fb9: Unknown result type (might be due to invalid IL or missing references) //IL_2fbe: Unknown result type (might be due to invalid IL or missing references) //IL_2fc4: Unknown result type (might be due to invalid IL or missing references) //IL_2fc9: Unknown result type (might be due to invalid IL or missing references) //IL_2fcf: Unknown result type (might be due to invalid IL or missing references) //IL_2fd4: Unknown result type (might be due to invalid IL or missing references) //IL_2fe0: Unknown result type (might be due to invalid IL or missing references) //IL_1a58: Unknown result type (might be due to invalid IL or missing references) //IL_1a5e: Unknown result type (might be due to invalid IL or missing references) //IL_1a63: Unknown result type (might be due to invalid IL or missing references) //IL_1a6e: Unknown result type (might be due to invalid IL or missing references) //IL_1a74: Unknown result type (might be due to invalid IL or missing references) //IL_1a79: Unknown result type (might be due to invalid IL or missing references) //IL_1a7f: Unknown result type (might be due to invalid IL or missing references) //IL_1a89: Unknown result type (might be due to invalid IL or missing references) //IL_1a8e: Unknown result type (might be due to invalid IL or missing references) //IL_1a94: Unknown result type (might be due to invalid IL or missing references) //IL_1a99: Unknown result type (might be due to invalid IL or missing references) //IL_1a9f: Unknown result type (might be due to invalid IL or missing references) //IL_1aa4: Unknown result type (might be due to invalid IL or missing references) //IL_1abc: Unknown result type (might be due to invalid IL or missing references) //IL_1ac1: Unknown result type (might be due to invalid IL or missing references) //IL_1ad9: Unknown result type (might be due to invalid IL or missing references) //IL_1adf: Unknown result type (might be due to invalid IL or missing references) //IL_1ae9: Unknown result type (might be due to invalid IL or missing references) //IL_1aee: Unknown result type (might be due to invalid IL or missing references) //IL_1af4: Unknown result type (might be due to invalid IL or missing references) //IL_1af9: Unknown result type (might be due to invalid IL or missing references) //IL_1b04: Unknown result type (might be due to invalid IL or missing references) //IL_1b0a: Unknown result type (might be due to invalid IL or missing references) //IL_1b0f: Unknown result type (might be due to invalid IL or missing references) //IL_1b1a: Unknown result type (might be due to invalid IL or missing references) //IL_1b20: Unknown result type (might be due to invalid IL or missing references) //IL_1b25: Unknown result type (might be due to invalid IL or missing references) //IL_1b2b: Unknown result type (might be due to invalid IL or missing references) //IL_1b35: Unknown result type (might be due to invalid IL or missing references) //IL_1b3a: Unknown result type (might be due to invalid IL or missing references) //IL_1b40: Unknown result type (might be due to invalid IL or missing references) //IL_1b45: Unknown result type (might be due to invalid IL or missing references) //IL_1b4b: Unknown result type (might be due to invalid IL or missing references) //IL_1b50: Unknown result type (might be due to invalid IL or missing references) //IL_1b68: Unknown result type (might be due to invalid IL or missing references) //IL_1b6d: Unknown result type (might be due to invalid IL or missing references) //IL_1b85: Unknown result type (might be due to invalid IL or missing references) //IL_1b8b: Unknown result type (might be due to invalid IL or missing references) //IL_1b95: Unknown result type (might be due to invalid IL or missing references) //IL_1b9a: Unknown result type (might be due to invalid IL or missing references) //IL_1ba0: Unknown result type (might be due to invalid IL or missing references) //IL_1ba5: Unknown result type (might be due to invalid IL or missing references) //IL_1bb1: Unknown result type (might be due to invalid IL or missing references) //IL_066a: Unknown result type (might be due to invalid IL or missing references) //IL_0670: Unknown result type (might be due to invalid IL or missing references) //IL_0675: Unknown result type (might be due to invalid IL or missing references) //IL_067b: Unknown result type (might be due to invalid IL or missing references) //IL_0680: Unknown result type (might be due to invalid IL or missing references) //IL_0686: Unknown result type (might be due to invalid IL or missing references) //IL_0690: Unknown result type (might be due to invalid IL or missing references) //IL_0695: Unknown result type (might be due to invalid IL or missing references) //IL_069b: Unknown result type (might be due to invalid IL or missing references) //IL_06a0: Unknown result type (might be due to invalid IL or missing references) //IL_06ab: Unknown result type (might be due to invalid IL or missing references) //IL_06b1: Unknown result type (might be due to invalid IL or missing references) //IL_06b6: Unknown result type (might be due to invalid IL or missing references) //IL_06bc: Unknown result type (might be due to invalid IL or missing references) //IL_06c1: Unknown result type (might be due to invalid IL or missing references) //IL_06c7: Unknown result type (might be due to invalid IL or missing references) //IL_06d1: Unknown result type (might be due to invalid IL or missing references) //IL_06d6: Unknown result type (might be due to invalid IL or missing references) //IL_06dc: Unknown result type (might be due to invalid IL or missing references) //IL_06e1: Unknown result type (might be due to invalid IL or missing references) //IL_06ed: Unknown result type (might be due to invalid IL or missing references) //IL_2ffa: Unknown result type (might be due to invalid IL or missing references) //IL_3000: Unknown result type (might be due to invalid IL or missing references) //IL_3005: Unknown result type (might be due to invalid IL or missing references) //IL_300b: Unknown result type (might be due to invalid IL or missing references) //IL_3010: Unknown result type (might be due to invalid IL or missing references) //IL_3016: Unknown result type (might be due to invalid IL or missing references) //IL_3020: Unknown result type (might be due to invalid IL or missing references) //IL_3025: Unknown result type (might be due to invalid IL or missing references) //IL_302b: Unknown result type (might be due to invalid IL or missing references) //IL_3030: Unknown result type (might be due to invalid IL or missing references) //IL_3036: Unknown result type (might be due to invalid IL or missing references) //IL_3040: Unknown result type (might be due to invalid IL or missing references) //IL_3045: Unknown result type (might be due to invalid IL or missing references) //IL_304b: Unknown result type (might be due to invalid IL or missing references) //IL_3055: Unknown result type (might be due to invalid IL or missing references) //IL_305a: Unknown result type (might be due to invalid IL or missing references) //IL_3060: Unknown result type (might be due to invalid IL or missing references) //IL_3065: Unknown result type (might be due to invalid IL or missing references) //IL_306b: Unknown result type (might be due to invalid IL or missing references) //IL_3070: Unknown result type (might be due to invalid IL or missing references) //IL_307b: Unknown result type (might be due to invalid IL or missing references) //IL_3081: Unknown result type (might be due to invalid IL or missing references) //IL_3086: Unknown result type (might be due to invalid IL or missing references) //IL_308c: Unknown result type (might be due to invalid IL or missing references) //IL_3096: Unknown result type (might be due to invalid IL or missing references) //IL_309b: Unknown result type (might be due to invalid IL or missing references) //IL_30a1: Unknown result type (might be due to invalid IL or missing references) //IL_30ab: Unknown result type (might be due to invalid IL or missing references) //IL_30b0: Unknown result type (might be due to invalid IL or missing references) //IL_30b6: Unknown result type (might be due to invalid IL or missing references) //IL_30bb: Unknown result type (might be due to invalid IL or missing references) //IL_30c1: Unknown result type (might be due to invalid IL or missing references) //IL_30c6: Unknown result type (might be due to invalid IL or missing references) //IL_30cc: Unknown result type (might be due to invalid IL or missing references) //IL_30d6: Unknown result type (might be due to invalid IL or missing references) //IL_30db: Unknown result type (might be due to invalid IL or missing references) //IL_30e1: Unknown result type (might be due to invalid IL or missing references) //IL_30eb: Unknown result type (might be due to invalid IL or missing references) //IL_30f0: Unknown result type (might be due to invalid IL or missing references) //IL_30f6: Unknown result type (might be due to invalid IL or missing references) //IL_30fb: Unknown result type (might be due to invalid IL or missing references) //IL_3101: Unknown result type (might be due to invalid IL or missing references) //IL_3106: Unknown result type (might be due to invalid IL or missing references) //IL_3112: Unknown result type (might be due to invalid IL or missing references) //IL_1bcb: Unknown result type (might be due to invalid IL or missing references) //IL_1bd1: Unknown result type (might be due to invalid IL or missing references) //IL_1bd6: Unknown result type (might be due to invalid IL or missing references) //IL_1be1: Unknown result type (might be due to invalid IL or missing references) //IL_1be7: Unknown result type (might be due to invalid IL or missing references) //IL_1bec: Unknown result type (might be due to invalid IL or missing references) //IL_1bf2: Unknown result type (might be due to invalid IL or missing references) //IL_1bfc: Unknown result type (might be due to invalid IL or missing references) //IL_1c01: Unknown result type (might be due to invalid IL or missing references) //IL_1c07: Unknown result type (might be due to invalid IL or missing references) //IL_1c0c: Unknown result type (might be due to invalid IL or missing references) //IL_1c12: Unknown result type (might be due to invalid IL or missing references) //IL_1c17: Unknown result type (might be due to invalid IL or missing references) //IL_1c2f: Unknown result type (might be due to invalid IL or missing references) //IL_1c34: Unknown result type (might be due to invalid IL or missing references) //IL_1c4c: Unknown result type (might be due to invalid IL or missing references) //IL_1c52: Unknown result type (might be due to invalid IL or missing references) //IL_1c5c: Unknown result type (might be due to invalid IL or missing references) //IL_1c61: Unknown result type (might be due to invalid IL or missing references) //IL_1c67: Unknown result type (might be due to invalid IL or missing references) //IL_1c6c: Unknown result type (might be due to invalid IL or missing references) //IL_1c77: Unknown result type (might be due to invalid IL or missing references) //IL_1c7d: Unknown result type (might be due to invalid IL or missing references) //IL_1c82: Unknown result type (might be due to invalid IL or missing references) //IL_1c8d: Unknown result type (might be due to invalid IL or missing references) //IL_1c93: Unknown result type (might be due to invalid IL or missing references) //IL_1c98: Unknown result type (might be due to invalid IL or missing references) //IL_1c9e: Unknown result type (might be due to invalid IL or missing references) //IL_1ca8: Unknown result type (might be due to invalid IL or missing references) //IL_1cad: Unknown result type (might be due to invalid IL or missing references) //IL_1cb3: Unknown result type (might be due to invalid IL or missing references) //IL_1cb8: Unknown result type (might be due to invalid IL or missing references) //IL_1cbe: Unknown result type (might be due to invalid IL or missing references) //IL_1cc3: Unknown result type (might be due to invalid IL or missing references) //IL_1cdb: Unknown result type (might be due to invalid IL or missing references) //IL_1ce0: Unknown result type (might be due to invalid IL or missing references) //IL_1cf8: Unknown result type (might be due to invalid IL or missing references) //IL_1cfe: Unknown result type (might be due to invalid IL or missing references) //IL_1d08: Unknown result type (might be due to invalid IL or missing references) //IL_1d0d: Unknown result type (might be due to invalid IL or missing references) //IL_1d13: Unknown result type (might be due to invalid IL or missing references) //IL_1d18: Unknown result type (might be due to invalid IL or missing references) //IL_1d24: Unknown result type (might be due to invalid IL or missing references) //IL_0707: Unknown result type (might be due to invalid IL or missing references) //IL_070d: Unknown result type (might be due to invalid IL or missing references) //IL_0712: Unknown result type (might be due to invalid IL or missing references) //IL_0718: Unknown result type (might be due to invalid IL or missing references) //IL_071d: Unknown result type (might be due to invalid IL or missing references) //IL_0723: Unknown result type (might be due to invalid IL or missing references) //IL_072d: Unknown result type (might be due to invalid IL or missing references) //IL_0732: Unknown result type (might be due to invalid IL or missing references) //IL_0738: Unknown result type (might be due to invalid IL or missing references) //IL_073d: Unknown result type (might be due to invalid IL or missing references) //IL_0748: Unknown result type (might be due to invalid IL or missing references) //IL_074e: Unknown result type (might be due to invalid IL or missing references) //IL_0753: Unknown result type (might be due to invalid IL or missing references) //IL_0759: Unknown result type (might be due to invalid IL or missing references) //IL_075e: Unknown result type (might be due to invalid IL or missing references) //IL_0764: Unknown result type (might be due to invalid IL or missing references) //IL_076e: Unknown result type (might be due to invalid IL or missing references) //IL_0773: Unknown result type (might be due to invalid IL or missing references) //IL_0779: Unknown result type (might be due to invalid IL or missing references) //IL_077e: Unknown result type (might be due to invalid IL or missing references) //IL_078a: Unknown result type (might be due to invalid IL or missing references) //IL_312c: Unknown result type (might be due to invalid IL or missing references) //IL_3132: Unknown result type (might be due to invalid IL or missing references) //IL_3137: Unknown result type (might be due to invalid IL or missing references) //IL_3142: Unknown result type (might be due to invalid IL or missing references) //IL_3148: Unknown result type (might be due to invalid IL or missing references) //IL_314d: Unknown result type (might be due to invalid IL or missing references) //IL_3153: Unknown result type (might be due to invalid IL or missing references) //IL_315d: Unknown result type (might be due to invalid IL or missing references) //IL_3162: Unknown result type (might be due to invalid IL or missing references) //IL_3168: Unknown result type (might be due to invalid IL or missing references) //IL_316d: Unknown result type (might be due to invalid IL or missing references) //IL_3173: Unknown result type (might be due to invalid IL or missing references) //IL_3178: Unknown result type (might be due to invalid IL or missing references) //IL_3190: Unknown result type (might be due to invalid IL or missing references) //IL_3195: Unknown result type (might be due to invalid IL or missing references) //IL_31ad: Unknown result type (might be due to invalid IL or missing references) //IL_31b3: Unknown result type (might be due to invalid IL or missing references) //IL_31bd: Unknown result type (might be due to invalid IL or missing references) //IL_31c2: Unknown result type (might be due to invalid IL or missing references) //IL_31c8: Unknown result type (might be due to invalid IL or missing references) //IL_31cd: Unknown result type (might be due to invalid IL or missing references) //IL_31d8: Unknown result type (might be due to invalid IL or missing references) //IL_31de: Unknown result type (might be due to invalid IL or missing references) //IL_31e3: Unknown result type (might be due to invalid IL or missing references) //IL_31ee: Unknown result type (might be due to invalid IL or missing references) //IL_31f4: Unknown result type (might be due to invalid IL or missing references) //IL_31f9: Unknown result type (might be due to invalid IL or missing references) //IL_31ff: Unknown result type (might be due to invalid IL or missing references) //IL_3209: Unknown result type (might be due to invalid IL or missing references) //IL_320e: Unknown result type (might be due to invalid IL or missing references) //IL_3214: Unknown result type (might be due to invalid IL or missing references) //IL_3219: Unknown result type (might be due to invalid IL or missing references) //IL_321f: Unknown result type (might be due to invalid IL or missing references) //IL_3224: Unknown result type (might be due to invalid IL or missing references) //IL_323c: Unknown result type (might be due to invalid IL or missing references) //IL_3241: Unknown result type (might be due to invalid IL or missing references) //IL_3259: Unknown result type (might be due to invalid IL or missing references) //IL_325f: Unknown result type (might be due to invalid IL or missing references) //IL_3269: Unknown result type (might be due to invalid IL or missing references) //IL_326e: Unknown result type (might be due to invalid IL or missing references) //IL_3274: Unknown result type (might be due to invalid IL or missing references) //IL_3279: Unknown result type (might be due to invalid IL or missing references) //IL_3285: Unknown result type (might be due to invalid IL or missing references) //IL_1d3e: Unknown result type (might be due to invalid IL or missing references) //IL_1d44: Unknown result type (might be due to invalid IL or missing references) //IL_1d49: Unknown result type (might be due to invalid IL or missing references) //IL_1d4f: Unknown result type (might be due to invalid IL or missing references) //IL_1d54: Unknown result type (might be due to invalid IL or missing references) //IL_1d5a: Unknown result type (might be due to invalid IL or missing references) //IL_1d64: Unknown result type (might be due to invalid IL or missing references) //IL_1d69: Unknown result type (might be due to invalid IL or missing references) //IL_1d6f: Unknown result type (might be due to invalid IL or missing references) //IL_1d74: Unknown result type (might be due to invalid IL or missing references) //IL_1d7f: Unknown result type (might be due to invalid IL or missing references) //IL_1d85: Unknown result type (might be due to invalid IL or missing references) //IL_1d8a: Unknown result type (might be due to invalid IL or missing references) //IL_1d90: Unknown result type (might be due to invalid IL or missing references) //IL_1d95: Unknown result type (might be due to invalid IL or missing references) //IL_1d9b: Unknown result type (might be due to invalid IL or missing references) //IL_1da5: Unknown result type (might be due to invalid IL or missing references) //IL_1daa: Unknown result type (might be due to invalid IL or missing references) //IL_1db0: Unknown result type (might be due to invalid IL or missing references) //IL_1db5: Unknown result type (might be due to invalid IL or missing references) //IL_1dc1: Unknown result type (might be due to invalid IL or missing references) //IL_079f: Unknown result type (might be due to invalid IL or missing references) //IL_07aa: Unknown result type (might be due to invalid IL or missing references) //IL_07b0: Unknown result type (might be due to invalid IL or missing references) //IL_07b5: Unknown result type (might be due to invalid IL or missing references) //IL_07bb: Unknown result type (might be due to invalid IL or missing references) //IL_07c0: Unknown result type (might be due to invalid IL or missing references) //IL_07c6: Unknown result type (might be due to invalid IL or missing references) //IL_07cb: Unknown result type (might be due to invalid IL or missing references) //IL_07d1: Unknown result type (might be due to invalid IL or missing references) //IL_07db: Unknown result type (might be due to invalid IL or missing references) //IL_07e0: Unknown result type (might be due to invalid IL or missing references) //IL_07e6: Unknown result type (might be due to invalid IL or missing references) //IL_07f0: Unknown result type (might be due to invalid IL or missing references) //IL_07f5: Unknown result type (might be due to invalid IL or missing references) //IL_07fb: Unknown result type (might be due to invalid IL or missing references) //IL_0800: Unknown result type (might be due to invalid IL or missing references) //IL_0806: Unknown result type (might be due to invalid IL or missing references) //IL_080b: Unknown result type (might be due to invalid IL or missing references) //IL_0817: Unknown result type (might be due to invalid IL or missing references) //IL_329f: Unknown result type (might be due to invalid IL or missing references) //IL_32a5: Unknown result type (might be due to invalid IL or missing references) //IL_32aa: Unknown result type (might be due to invalid IL or missing references) //IL_32b5: Unknown result type (might be due to invalid IL or missing references) //IL_32bb: Unknown result type (might be due to invalid IL or missing references) //IL_32c0: Unknown result type (might be due to invalid IL or missing references) //IL_32c6: Unknown result type (might be due to invalid IL or missing references) //IL_32d0: Unknown result type (might be due to invalid IL or missing references) //IL_32d5: Unknown result type (might be due to invalid IL or missing references) //IL_32db: Unknown result type (might be due to invalid IL or missing references) //IL_32e0: Unknown result type (might be due to invalid IL or missing references) //IL_32e6: Unknown result type (might be due to invalid IL or missing references) //IL_32eb: Unknown result type (might be due to invalid IL or missing references) //IL_3303: Unknown result type (might be due to invalid IL or missing references) //IL_3308: Unknown result type (might be due to invalid IL or missing references) //IL_3320: Unknown result type (might be due to invalid IL or missing references) //IL_3326: Unknown result type (might be due to invalid IL or missing references) //IL_3330: Unknown result type (might be due to invalid IL or missing references) //IL_3335: Unknown result type (might be due to invalid IL or missing references) //IL_333b: Unknown result type (might be due to invalid IL or missing references) //IL_3340: Unknown result type (might be due to invalid IL or missing references) //IL_334b: Unknown result type (might be due to invalid IL or missing references) //IL_3351: Unknown result type (might be due to invalid IL or missing references) //IL_3356: Unknown result type (might be due to invalid IL or missing references) //IL_3361: Unknown result type (might be due to invalid IL or missing references) //IL_3367: Unknown result type (might be due to invalid IL or missing references) //IL_336c: Unknown result type (might be due to invalid IL or missing references) //IL_3372: Unknown result type (might be due to invalid IL or missing references) //IL_337c: Unknown result type (might be due to invalid IL or missing references) //IL_3381: Unknown result type (might be due to invalid IL or missing references) //IL_3387: Unknown result type (might be due to invalid IL or missing references) //IL_338c: Unknown result type (might be due to invalid IL or missing references) //IL_3392: Unknown result type (might be due to invalid IL or missing references) //IL_3397: Unknown result type (might be due to invalid IL or missing references) //IL_33af: Unknown result type (might be due to invalid IL or missing references) //IL_33b4: Unknown result type (might be due to invalid IL or missing references) //IL_33cc: Unknown result type (might be due to invalid IL or missing references) //IL_33d2: Unknown result type (might be due to invalid IL or missing references) //IL_33dc: Unknown result type (might be due to invalid IL or missing references) //IL_33e1: Unknown result type (might be due to invalid IL or missing references) //IL_33e7: Unknown result type (might be due to invalid IL or missing references) //IL_33ec: Unknown result type (might be due to invalid IL or missing references) //IL_33f8: Unknown result type (might be due to invalid IL or missing references) //IL_1ddb: Unknown result type (might be due to invalid IL or missing references) //IL_1de1: Unknown result type (might be due to invalid IL or missing references) //IL_1de6: Unknown result type (might be due to invalid IL or missing references) //IL_1dec: Unknown result type (might be due to invalid IL or missing references) //IL_1df1: Unknown result type (might be due to invalid IL or missing references) //IL_1df7: Unknown result type (might be due to invalid IL or missing references) //IL_1e01: Unknown result type (might be due to invalid IL or missing references) //IL_1e06: Unknown result type (might be due to invalid IL or missing references) //IL_1e0c: Unknown result type (might be due to invalid IL or missing references) //IL_1e11: Unknown result type (might be due to invalid IL or missing references) //IL_1e1c: Unknown result type (might be due to invalid IL or missing references) //IL_1e22: Unknown result type (might be due to invalid IL or missing references) //IL_1e27: Unknown result type (might be due to invalid IL or missing references) //IL_1e2d: Unknown result type (might be due to invalid IL or missing references) //IL_1e32: Unknown result type (might be due to invalid IL or missing references) //IL_1e38: Unknown result type (might be due to invalid IL or missing references) //IL_1e42: Unknown result type (might be due to invalid IL or missing references) //IL_1e47: Unknown result type (might be due to invalid IL or missing references) //IL_1e4d: Unknown result type (might be due to invalid IL or missing references) //IL_1e52: Unknown result type (might be due to invalid IL or missing references) //IL_1e5e: Unknown result type (might be due to invalid IL or missing references) //IL_082c: Unknown result type (might be due to invalid IL or missing references) //IL_0832: Unknown result type (might be due to invalid IL or missing references) //IL_083c: Unknown result type (might be due to invalid IL or missing references) //IL_0841: Unknown result type (might be due to invalid IL or missing references) //IL_084c: Unknown result type (might be due to invalid IL or missing references) //IL_0852: Unknown result type (might be due to invalid IL or missing references) //IL_0857: Unknown result type (might be due to invalid IL or missing references) //IL_085d: Unknown result type (might be due to invalid IL or missing references) //IL_0862: Unknown result type (might be due to invalid IL or missing references) //IL_0868: Unknown result type (might be due to invalid IL or missing references) //IL_086d: Unknown result type (might be due to invalid IL or missing references) //IL_0873: Unknown result type (might be due to invalid IL or missing references) //IL_087d: Unknown result type (might be due to invalid IL or missing references) //IL_0882: Unknown result type (might be due to invalid IL or missing references) //IL_0888: Unknown result type (might be due to invalid IL or missing references) //IL_0892: Unknown result type (might be due to invalid IL or missing references) //IL_0897: Unknown result type (might be due to invalid IL or missing references) //IL_089d: Unknown result type (might be due to invalid IL or missing references) //IL_08a2: Unknown result type (might be due to invalid IL or missing references) //IL_08a8: Unknown result type (might be due to invalid IL or missing references) //IL_08b2: Unknown result type (might be due to invalid IL or missing references) //IL_08b7: Unknown result type (might be due to invalid IL or missing references) //IL_08bd: Unknown result type (might be due to invalid IL or missing references) //IL_08c2: Unknown result type (might be due to invalid IL or missing references) //IL_08ce: Unknown result type (might be due to invalid IL or missing references) //IL_3412: Unknown result type (might be due to invalid IL or missing references) //IL_3418: Unknown result type (might be due to invalid IL or missing references) //IL_341d: Unknown result type (might be due to invalid IL or missing references) //IL_3423: Unknown result type (might be due to invalid IL or missing references) //IL_3428: Unknown result type (might be due to invalid IL or missing references) //IL_342e: Unknown result type (might be due to invalid IL or missing references) //IL_3438: Unknown result type (might be due to invalid IL or missing references) //IL_343d: Unknown result type (might be due to invalid IL or missing references) //IL_3443: Unknown result type (might be due to invalid IL or missing references) //IL_3448: Unknown result type (might be due to invalid IL or missing references) //IL_3453: Unknown result type (might be due to invalid IL or missing references) //IL_3459: Unknown result type (might be due to invalid IL or missing references) //IL_345e: Unknown result type (might be due to invalid IL or missing references) //IL_3464: Unknown result type (might be due to invalid IL or missing references) //IL_3469: Unknown result type (might be due to invalid IL or missing references) //IL_346f: Unknown result type (might be due to invalid IL or missing references) //IL_3479: Unknown result type (might be due to invalid IL or missing references) //IL_347e: Unknown result type (might be due to invalid IL or missing references) //IL_3484: Unknown result type (might be due to invalid IL or missing references) //IL_3489: Unknown result type (might be due to invalid IL or missing references) //IL_3495: Unknown result type (might be due to invalid IL or missing references) //IL_1e73: Unknown result type (might be due to invalid IL or missing references) //IL_1e7e: Unknown result type (might be due to invalid IL or missing references) //IL_1e84: Unknown result type (might be due to invalid IL or missing references) //IL_1e89: Unknown result type (might be due to invalid IL or missing references) //IL_1e8f: Unknown result type (might be due to invalid IL or missing references) //IL_1e94: Unknown result type (might be due to invalid IL or missing references) //IL_1e9a: Unknown result type (might be due to invalid IL or missing references) //IL_1e9f: Unknown result type (might be due to invalid IL or missing references) //IL_1ea5: Unknown result type (might be due to invalid IL or missing references) //IL_1eaf: Unknown result type (might be due to invalid IL or missing references) //IL_1eb4: Unknown result type (might be due to invalid IL or missing references) //IL_1eba: Unknown result type (might be due to invalid IL or missing references) //IL_1ec4: Unknown result type (might be due to invalid IL or missing references) //IL_1ec9: Unknown result type (might be due to invalid IL or missing references) //IL_1ecf: Unknown result type (might be due to invalid IL or missing references) //IL_1ed4: Unknown result type (might be due to invalid IL or missing references) //IL_1eda: Unknown result type (might be due to invalid IL or missing references) //IL_1edf: Unknown result type (might be due to invalid IL or missing references) //IL_1eeb: Unknown result type (might be due to invalid IL or missing references) //IL_08e3: Unknown result type (might be due to invalid IL or missing references) //IL_08e9: Unknown result type (might be due to invalid IL or missing references) //IL_08f3: Unknown result type (might be due to invalid IL or missing references) //IL_08f8: Unknown result type (might be due to invalid IL or missing references) //IL_0903: Unknown result type (might be due to invalid IL or missing references) //IL_0909: Unknown result type (might be due to invalid IL or missing references) //IL_090e: Unknown result type (might be due to invalid IL or missing references) //IL_0914: Unknown result type (might be due to invalid IL or missing references) //IL_0919: Unknown result type (might be due to invalid IL or missing references) //IL_091f: Unknown result type (might be due to invalid IL or missing references) //IL_0924: Unknown result type (might be due to invalid IL or missing references) //IL_092a: Unknown result type (might be due to invalid IL or missing references) //IL_0934: Unknown result type (might be due to invalid IL or missing references) //IL_0939: Unknown result type (might be due to invalid IL or missing references) //IL_093f: Unknown result type (might be due to invalid IL or missing references) //IL_0949: Unknown result type (might be due to invalid IL or missing references) //IL_094e: Unknown result type (might be due to invalid IL or missing references) //IL_0954: Unknown result type (might be due to invalid IL or missing references) //IL_0959: Unknown result type (might be due to invalid IL or missing references) //IL_095f: Unknown result type (might be due to invalid IL or missing references) //IL_0969: Unknown result type (might be due to invalid IL or missing references) //IL_096e: Unknown result type (might be due to invalid IL or missing references) //IL_0974: Unknown result type (might be due to invalid IL or missing references) //IL_0979: Unknown result type (might be due to invalid IL or missing references) //IL_0985: Unknown result type (might be due to invalid IL or missing references) //IL_34af: Unknown result type (might be due to invalid IL or missing references) //IL_34b5: Unknown result type (might be due to invalid IL or missing references) //IL_34ba: Unknown result type (might be due to invalid IL or missing references) //IL_34c0: Unknown result type (might be due to invalid IL or missing references) //IL_34c5: Unknown result type (might be due to invalid IL or missing references) //IL_34cb: Unknown result type (might be due to invalid IL or missing references) //IL_34d5: Unknown result type (might be due to invalid IL or missing references) //IL_34da: Unknown result type (might be due to invalid IL or missing references) //IL_34e0: Unknown result type (might be due to invalid IL or missing references) //IL_34e5: Unknown result type (might be due to invalid IL or missing references) //IL_34f0: Unknown result type (might be due to invalid IL or missing references) //IL_34f6: Unknown result type (might be due to invalid IL or missing references) //IL_34fb: Unknown result type (might be due to invalid IL or missing references) //IL_3501: Unknown result type (might be due to invalid IL or missing references) //IL_3506: Unknown result type (might be due to invalid IL or missing references) //IL_350c: Unknown result type (might be due to invalid IL or missing references) //IL_3516: Unknown result type (might be due to invalid IL or missing references) //IL_351b: Unknown result type (might be due to invalid IL or missing references) //IL_3521: Unknown result type (might be due to invalid IL or missing references) //IL_3526: Unknown result type (might be due to invalid IL or missing references) //IL_3532: Unknown result type (might be due to invalid IL or missing references) //IL_1f00: Unknown result type (might be due to invalid IL or missing references) //IL_1f06: Unknown result type (might be due to invalid IL or missing references) //IL_1f10: Unknown result type (might be due to invalid IL or missing references) //IL_1f15: Unknown result type (might be due to invalid IL or missing references) //IL_1f20: Unknown result type (might be due to invalid IL or missing references) //IL_1f26: Unknown result type (might be due to invalid IL or missing references) //IL_1f2b: Unknown result type (might be due to invalid IL or missing references) //IL_1f31: Unknown result type (might be due to invalid IL or missing references) //IL_1f36: Unknown result type (might be due to invalid IL or missing references) //IL_1f3c: Unknown result type (might be due to invalid IL or missing references) //IL_1f41: Unknown result type (might be due to invalid IL or missing references) //IL_1f47: Unknown result type (might be due to invalid IL or missing references) //IL_1f51: Unknown result type (might be due to invalid IL or missing references) //IL_1f56: Unknown result type (might be due to invalid IL or missing references) //IL_1f5c: Unknown result type (might be due to invalid IL or missing references) //IL_1f66: Unknown result type (might be due to invalid IL or missing references) //IL_1f6b: Unknown result type (might be due to invalid IL or missing references) //IL_1f71: Unknown result type (might be due to invalid IL or missing references) //IL_1f76: Unknown result type (might be due to invalid IL or missing references) //IL_1f7c: Unknown result type (might be due to invalid IL or missing references) //IL_1f86: Unknown result type (might be due to invalid IL or missing references) //IL_1f8b: Unknown result type (might be due to invalid IL or missing references) //IL_1f91: Unknown result type (might be due to invalid IL or missing references) //IL_1f96: Unknown result type (might be due to invalid IL or missing references) //IL_1fa2: Unknown result type (might be due to invalid IL or missing references) //IL_099a: Unknown result type (might be due to invalid IL or missing references) //IL_09a0: Unknown result type (might be due to invalid IL or missing references) //IL_09aa: Unknown result type (might be due to invalid IL or missing references) //IL_09af: Unknown result type (might be due to invalid IL or missing references) //IL_09ba: Unknown result type (might be due to invalid IL or missing references) //IL_09c0: Unknown result type (might be due to invalid IL or missing references) //IL_09c5: Unknown result type (might be due to invalid IL or missing references) //IL_09cb: Unknown result type (might be due to invalid IL or missing references) //IL_09d0: Unknown result type (might be due to invalid IL or missing references) //IL_09d6: Unknown result type (might be due to invalid IL or missing references) //IL_09db: Unknown result type (might be due to invalid IL or missing references) //IL_09e1: Unknown result type (might be due to invalid IL or missing references) //IL_09eb: Unknown result type (might be due to invalid IL or missing references) //IL_09f0: Unknown result type (might be due to invalid IL or missing references) //IL_09f6: Unknown result type (might be due to invalid IL or missing references) //IL_0a00: Unknown result type (might be due to invalid IL or missing references) //IL_0a05: Unknown result type (might be due to invalid IL or missing references) //IL_0a0b: Unknown result type (might be due to invalid IL or missing references) //IL_0a10: Unknown result type (might be due to invalid IL or missing references) //IL_0a16: Unknown result type (might be due to invalid IL or missing references) //IL_0a20: Unknown result type (might be due to invalid IL or missing references) //IL_0a25: Unknown result type (might be due to invalid IL or missing references) //IL_0a2b: Unknown result type (might be due to invalid IL or missing references) //IL_0a30: Unknown result type (might be due to invalid IL or missing references) //IL_0a3c: Unknown result type (might be due to invalid IL or missing references) //IL_3547: Unknown result type (might be due to invalid IL or missing references) //IL_3552: Unknown result type (might be due to invalid IL or missing references) //IL_3558: Unknown result type (might be due to invalid IL or missing references) //IL_355d: Unknown result type (might be due to invalid IL or missing references) //IL_3563: Unknown result type (might be due to invalid IL or missing references) //IL_3568: Unknown result type (might be due to invalid IL or missing references) //IL_356e: Unknown result type (might be due to invalid IL or missing references) //IL_3573: Unknown result type (might be due to invalid IL or missing references) //IL_3579: Unknown result type (might be due to invalid IL or missing references) //IL_3583: Unknown result type (might be due to invalid IL or missing references) //IL_3588: Unknown result type (might be due to invalid IL or missing references) //IL_358e: Unknown result type (might be due to invalid IL or missing references) //IL_3598: Unknown result type (might be due to invalid IL or missing references) //IL_359d: Unknown result type (might be due to invalid IL or missing references) //IL_35a3: Unknown result type (might be due to invalid IL or missing references) //IL_35a8: Unknown result type (might be due to invalid IL or missing references) //IL_35ae: Unknown result type (might be due to invalid IL or missing references) //IL_35b3: Unknown result type (might be due to invalid IL or missing references) //IL_35bf: Unknown result type (might be due to invalid IL or missing references) //IL_1fb7: Unknown result type (might be due to invalid IL or missing references) //IL_1fbd: Unknown result type (might be due to invalid IL or missing references) //IL_1fc7: Unknown result type (might be due to invalid IL or missing references) //IL_1fcc: Unknown result type (might be due to invalid IL or missing references) //IL_1fd7: Unknown result type (might be due to invalid IL or missing references) //IL_1fdd: Unknown result type (might be due to invalid IL or missing references) //IL_1fe2: Unknown result type (might be due to invalid IL or missing references) //IL_1fe8: Unknown result type (might be due to invalid IL or missing references) //IL_1fed: Unknown result type (might be due to invalid IL or missing references) //IL_1ff3: Unknown result type (might be due to invalid IL or missing references) //IL_1ff8: Unknown result type (might be due to invalid IL or missing references) //IL_1ffe: Unknown result type (might be due to invalid IL or missing references) //IL_2008: Unknown result type (might be due to invalid IL or missing references) //IL_200d: Unknown result type (might be due to invalid IL or missing references) //IL_2013: Unknown result type (might be due to invalid IL or missing references) //IL_201d: Unknown result type (might be due to invalid IL or missing references) //IL_2022: Unknown result type (might be due to invalid IL or missing references) //IL_2028: Unknown result type (might be due to invalid IL or missing references) //IL_202d: Unknown result type (might be due to invalid IL or missing references) //IL_2033: Unknown result type (might be due to invalid IL or missing references) //IL_203d: Unknown result type (might be due to invalid IL or missing references) //IL_2042: Unknown result type (might be due to invalid IL or missing references) //IL_2048: Unknown result type (might be due to invalid IL or missing references) //IL_204d: Unknown result type (might be due to invalid IL or missing references) //IL_2059: Unknown result type (might be due to invalid IL or missing references) //IL_0a56: Unknown result type (might be due to invalid IL or missing references) //IL_0a5c: Unknown result type (might be due to invalid IL or missing references) //IL_0a61: Unknown result type (might be due to invalid IL or missing references) //IL_0a67: Unknown result type (might be due to invalid IL or missing references) //IL_0a6c: Unknown result type (might be due to invalid IL or missing references) //IL_0a72: Unknown result type (might be due to invalid IL or missing references) //IL_0a7c: Unknown result type (might be due to invalid IL or missing references) //IL_0a81: Unknown result type (might be due to invalid IL or missing references) //IL_0a87: Unknown result type (might be due to invalid IL or missing references) //IL_0a8c: Unknown result type (might be due to invalid IL or missing references) //IL_0a97: Unknown result type (might be due to invalid IL or missing references) //IL_0a9d: Unknown result type (might be due to invalid IL or missing references) //IL_0aa2: Unknown result type (might be due to invalid IL or missing references) //IL_0aa8: Unknown result type (might be due to invalid IL or missing references) //IL_0aad: Unknown result type (might be due to invalid IL or missing references) //IL_0ab3: Unknown result type (might be due to invalid IL or missing references) //IL_0abd: Unknown result type (might be due to invalid IL or missing references) //IL_0ac2: Unknown result type (might be due to invalid IL or missing references) //IL_0ac8: Unknown result type (might be due to invalid IL or missing references) //IL_0acd: Unknown result type (might be due to invalid IL or missing references) //IL_0ad9: Unknown result type (might be due to invalid IL or missing references) //IL_35d4: Unknown result type (might be due to invalid IL or missing references) //IL_35da: Unknown result type (might be due to invalid IL or missing references) //IL_35e4: Unknown result type (might be due to invalid IL or missing references) //IL_35e9: Unknown result type (might be due to invalid IL or missing references) //IL_35f4: Unknown result type (might be due to invalid IL or missing references) //IL_35fa: Unknown result type (might be due to invalid IL or missing references) //IL_35ff: Unknown result type (might be due to invalid IL or missing references) //IL_3605: Unknown result type (might be due to invalid IL or missing references) //IL_360a: Unknown result type (might be due to invalid IL or missing references) //IL_3610: Unknown result type (might be due to invalid IL or missing references) //IL_3615: Unknown result type (might be due to invalid IL or missing references) //IL_361b: Unknown result type (might be due to invalid IL or missing references) //IL_3625: Unknown result type (might be due to invalid IL or missing references) //IL_362a: Unknown result type (might be due to invalid IL or missing references) //IL_3630: Unknown result type (might be due to invalid IL or missing references) //IL_363a: Unknown result type (might be due to invalid IL or missing references) //IL_363f: Unknown result type (might be due to invalid IL or missing references) //IL_3645: Unknown result type (might be due to invalid IL or missing references) //IL_364a: Unknown result type (might be due to invalid IL or missing references) //IL_3650: Unknown result type (might be due to invalid IL or missing references) //IL_365a: Unknown result type (might be due to invalid IL or missing references) //IL_365f: Unknown result type (might be due to invalid IL or missing references) //IL_3665: Unknown result type (might be due to invalid IL or missing references) //IL_366a: Unknown result type (might be due to invalid IL or missing references) //IL_3676: Unknown result type (might be due to invalid IL or missing references) //IL_206e: Unknown result type (might be due to invalid IL or missing references) //IL_2074: Unknown result type (might be due to invalid IL or missing references) //IL_207e: Unknown result type (might be due to invalid IL or missing references) //IL_2083: Unknown result type (might be due to invalid IL or missing references) //IL_208e: Unknown result type (might be due to invalid IL or missing references) //IL_2094: Unknown result type (might be due to invalid IL or missing references) //IL_2099: Unknown result type (might be due to invalid IL or missing references) //IL_209f: Unknown result type (might be due to invalid IL or missing references) //IL_20a4: Unknown result type (might be due to invalid IL or missing references) //IL_20aa: Unknown result type (might be due to invalid IL or missing references) //IL_20af: Unknown result type (might be due to invalid IL or missing references) //IL_20b5: Unknown result type (might be due to invalid IL or missing references) //IL_20bf: Unknown result type (might be due to invalid IL or missing references) //IL_20c4: Unknown result type (might be due to invalid IL or missing references) //IL_20ca: Unknown result type (might be due to invalid IL or missing references) //IL_20d4: Unknown result type (might be due to invalid IL or missing references) //IL_20d9: Unknown result type (might be due to invalid IL or missing references) //IL_20df: Unknown result type (might be due to invalid IL or missing references) //IL_20e4: Unknown result type (might be due to invalid IL or missing references) //IL_20ea: Unknown result type (might be due to invalid IL or missing references) //IL_20f4: Unknown result type (might be due to invalid IL or missing references) //IL_20f9: Unknown result type (might be due to invalid IL or missing references) //IL_20ff: Unknown result type (might be due to invalid IL or missing references) //IL_2104: Unknown result type (might be due to invalid IL or missing references) //IL_2110: Unknown result type (might be due to invalid IL or missing references) //IL_0af3: Unknown result type (might be due to invalid IL or missing references) //IL_0af9: Unknown result type (might be due to invalid IL or missing references) //IL_0afe: Unknown result type (might be due to invalid IL or missing references) //IL_0b04: Unknown result type (might be due to invalid IL or missing references) //IL_0b09: Unknown result type (might be due to invalid IL or missing references) //IL_0b0f: Unknown result type (might be due to invalid IL or missing references) //IL_0b19: Unknown result type (might be due to invalid IL or missing references) //IL_0b1e: Unknown result type (might be due to invalid IL or missing references) //IL_0b24: Unknown result type (might be due to invalid IL or missing references) //IL_0b29: Unknown result type (might be due to invalid IL or missing references) //IL_0b2f: Unknown result type (might be due to invalid IL or missing references) //IL_0b39: Unknown result type (might be due to invalid IL or missing references) //IL_0b3e: Unknown result type (might be due to invalid IL or missing references) //IL_0b49: Unknown result type (might be due to invalid IL or missing references) //IL_0b4f: Unknown result type (might be due to invalid IL or missing references) //IL_0b54: Unknown result type (might be due to invalid IL or missing references) //IL_0b5a: Unknown result type (might be due to invalid IL or missing references) //IL_0b5f: Unknown result type (might be due to invalid IL or missing references) //IL_0b65: Unknown result type (might be due to invalid IL or missing references) //IL_0b6f: Unknown result type (might be due to invalid IL or missing references) //IL_0b74: Unknown result type (might be due to invalid IL or missing references) //IL_0b7a: Unknown result type (might be due to invalid IL or missing references) //IL_0b7f: Unknown result type (might be due to invalid IL or missing references) //IL_0b85: Unknown result type (might be due to invalid IL or missing references) //IL_0b8f: Unknown result type (might be due to invalid IL or missing references) //IL_0b94: Unknown result type (might be due to invalid IL or missing references) //IL_0ba0: Unknown result type (might be due to invalid IL or missing references) //IL_368b: Unknown result type (might be due to invalid IL or missing references) //IL_3691: Unknown result type (might be due to invalid IL or missing references) //IL_369b: Unknown result type (might be due to invalid IL or missing references) //IL_36a0: Unknown result type (might be due to invalid IL or missing references) //IL_36ab: Unknown result type (might be due to invalid IL or missing references) //IL_36b1: Unknown result type (might be due to invalid IL or missing references) //IL_36b6: Unknown result type (might be due to invalid IL or missing references) //IL_36bc: Unknown result type (might be due to invalid IL or missing references) //IL_36c1: Unknown result type (might be due to invalid IL or missing references) //IL_36c7: Unknown result type (might be due to invalid IL or missing references) //IL_36cc: Unknown result type (might be due to invalid IL or missing references) //IL_36d2: Unknown result type (might be due to invalid IL or missing references) //IL_36dc: Unknown result type (might be due to invalid IL or missing references) //IL_36e1: Unknown result type (might be due to invalid IL or missing references) //IL_36e7: Unknown result type (might be due to invalid IL or missing references) //IL_36f1: Unknown result type (might be due to invalid IL or missing references) //IL_36f6: Unknown result type (might be due to invalid IL or missing references) //IL_36fc: Unknown result type (might be due to invalid IL or missing references) //IL_3701: Unknown result type (might be due to invalid IL or missing references) //IL_3707: Unknown result type (might be due to invalid IL or missing references) //IL_3711: Unknown result type (might be due to invalid IL or missing references) //IL_3716: Unknown result type (might be due to invalid IL or missing references) //IL_371c: Unknown result type (might be due to invalid IL or missing references) //IL_3721: Unknown result type (might be due to invalid IL or missing references) //IL_372d: Unknown result type (might be due to invalid IL or missing references) //IL_212a: Unknown result type (might be due to invalid IL or missing references) //IL_2130: Unknown result type (might be due to invalid IL or missing references) //IL_2135: Unknown result type (might be due to invalid IL or missing references) //IL_213b: Unknown result type (might be due to invalid IL or missing references) //IL_2140: Unknown result type (might be due to invalid IL or missing references) //IL_2146: Unknown result type (might be due to invalid IL or missing references) //IL_2150: Unknown result type (might be due to invalid IL or missing references) //IL_2155: Unknown result type (might be due to invalid IL or missing references) //IL_215b: Unknown result type (might be due to invalid IL or missing references) //IL_2160: Unknown result type (might be due to invalid IL or missing references) //IL_216b: Unknown result type (might be due to invalid IL or missing references) //IL_2171: Unknown result type (might be due to invalid IL or missing references) //IL_2176: Unknown result type (might be due to invalid IL or missing references) //IL_217c: Unknown result type (might be due to invalid IL or missing references) //IL_2181: Unknown result type (might be due to invalid IL or missing references) //IL_2187: Unknown result type (might be due to invalid IL or missing references) //IL_2191: Unknown result type (might be due to invalid IL or missing references) //IL_2196: Unknown result type (might be due to invalid IL or missing references) //IL_219c: Unknown result type (might be due to invalid IL or missing references) //IL_21a1: Unknown result type (might be due to invalid IL or missing references) //IL_21ad: Unknown result type (might be due to invalid IL or missing references) //IL_0bba: Unknown result type (might be due to invalid IL or missing references) //IL_0bc0: Unknown result type (might be due to invalid IL or missing references) //IL_0bc5: Unknown result type (might be due to invalid IL or missing references) //IL_0bcb: Unknown result type (might be due to invalid IL or missing references) //IL_0bd0: Unknown result type (might be due to invalid IL or missing references) //IL_0bd6: Unknown result type (might be due to invalid IL or missing references) //IL_0be0: Unknown result type (might be due to invalid IL or missing references) //IL_0be5: Unknown result type (might be due to invalid IL or missing references) //IL_0beb: Unknown result type (might be due to invalid IL or missing references) //IL_0bf0: Unknown result type (might be due to invalid IL or missing references) //IL_0bf6: Unknown result type (might be due to invalid IL or missing references) //IL_0c00: Unknown result type (might be due to invalid IL or missing references) //IL_0c05: Unknown result type (might be due to invalid IL or missing references) //IL_0c10: Unknown result type (might be due to invalid IL or missing references) //IL_0c16: Unknown result type (might be due to invalid IL or missing references) //IL_0c1b: Unknown result type (might be due to invalid IL or missing references) //IL_0c21: Unknown result type (might be due to invalid IL or missing references) //IL_0c26: Unknown result type (might be due to invalid IL or missing references) //IL_0c2c: Unknown result type (might be due to invalid IL or missing references) //IL_0c36: Unknown result type (might be due to invalid IL or missing references) //IL_0c3b: Unknown result type (might be due to invalid IL or missing references) //IL_0c41: Unknown result type (might be due to invalid IL or missing references) //IL_0c46: Unknown result type (might be due to invalid IL or missing references) //IL_0c4c: Unknown result type (might be due to invalid IL or missing references) //IL_0c56: Unknown result type (might be due to invalid IL or missing references) //IL_0c5b: Unknown result type (might be due to invalid IL or missing references) //IL_0c67: Unknown result type (might be due to invalid IL or missing references) //IL_3742: Unknown result type (might be due to invalid IL or missing references) //IL_3748: Unknown result type (might be due to invalid IL or missing references) //IL_3752: Unknown result type (might be due to invalid IL or missing references) //IL_3757: Unknown result type (might be due to invalid IL or missing references) //IL_3762: Unknown result type (might be due to invalid IL or missing references) //IL_3768: Unknown result type (might be due to invalid IL or missing references) //IL_376d: Unknown result type (might be due to invalid IL or missing references) //IL_3773: Unknown result type (might be due to invalid IL or missing references) //IL_3778: Unknown result type (might be due to invalid IL or missing references) //IL_377e: Unknown result type (might be due to invalid IL or missing references) //IL_3783: Unknown result type (might be due to invalid IL or missing references) //IL_3789: Unknown result type (might be due to invalid IL or missing references) //IL_3793: Unknown result type (might be due to invalid IL or missing references) //IL_3798: Unknown result type (might be due to invalid IL or missing references) //IL_379e: Unknown result type (might be due to invalid IL or missing references) //IL_37a8: Unknown result type (might be due to invalid IL or missing references) //IL_37ad: Unknown result type (might be due to invalid IL or missing references) //IL_37b3: Unknown result type (might be due to invalid IL or missing references) //IL_37b8: Unknown result type (might be due to invalid IL or missing references) //IL_37be: Unknown result type (might be due to invalid IL or missing references) //IL_37c8: Unknown result type (might be due to invalid IL or missing references) //IL_37cd: Unknown result type (might be due to invalid IL or missing references) //IL_37d3: Unknown result type (might be due to invalid IL or missing references) //IL_37d8: Unknown result type (might be due to invalid IL or missing references) //IL_37e4: Unknown result type (might be due to invalid IL or missing references) //IL_21c7: Unknown result type (might be due to invalid IL or missing references) //IL_21cd: Unknown result type (might be due to invalid IL or missing references) //IL_21d2: Unknown result type (might be due to invalid IL or missing references) //IL_21d8: Unknown result type (might be due to invalid IL or missing references) //IL_21dd: Unknown result type (might be due to invalid IL or missing references) //IL_21e3: Unknown result type (might be due to invalid IL or missing references) //IL_21ed: Unknown result type (might be due to invalid IL or missing references) //IL_21f2: Unknown result type (might be due to invalid IL or missing references) //IL_21f8: Unknown result type (might be due to invalid IL or missing references) //IL_21fd: Unknown result type (might be due to invalid IL or missing references) //IL_2203: Unknown result type (might be due to invalid IL or missing references) //IL_220d: Unknown result type (might be due to invalid IL or missing references) //IL_2212: Unknown result type (might be due to invalid IL or missing references) //IL_221d: Unknown result type (might be due to invalid IL or missing references) //IL_2223: Unknown result type (might be due to invalid IL or missing references) //IL_2228: Unknown result type (might be due to invalid IL or missing references) //IL_222e: Unknown result type (might be due to invalid IL or missing references) //IL_2233: Unknown result type (might be due to invalid IL or missing references) //IL_2239: Unknown result type (might be due to invalid IL or missing references) //IL_2243: Unknown result type (might be due to invalid IL or missing references) //IL_2248: Unknown result type (might be due to invalid IL or missing references) //IL_224e: Unknown result type (might be due to invalid IL or missing references) //IL_2253: Unknown result type (might be due to invalid IL or missing references) //IL_2259: Unknown result type (might be due to invalid IL or missing references) //IL_2263: Unknown result type (might be due to invalid IL or missing references) //IL_2268: Unknown result type (might be due to invalid IL or missing references) //IL_2274: Unknown result type (might be due to invalid IL or missing references) //IL_0c81: Unknown result type (might be due to invalid IL or missing references) //IL_0c87: Unknown result type (might be due to invalid IL or missing references) //IL_0c8c: Unknown result type (might be due to invalid IL or missing references) //IL_0c92: Unknown result type (might be due to invalid IL or missing references) //IL_0c97: Unknown result type (might be due to invalid IL or missing references) //IL_0c9d: Unknown result type (might be due to invalid IL or missing references) //IL_0ca7: Unknown result type (might be due to invalid IL or missing references) //IL_0cac: Unknown result type (might be due to invalid IL or missing references) //IL_0cb2: Unknown result type (might be due to invalid IL or missing references) //IL_0cb7: Unknown result type (might be due to invalid IL or missing references) //IL_0cbd: Unknown result type (might be due to invalid IL or missing references) //IL_0cc7: Unknown result type (might be due to invalid IL or missing references) //IL_0ccc: Unknown result type (might be due to invalid IL or missing references) //IL_0cd7: Unknown result type (might be due to invalid IL or missing references) //IL_0cdd: Unknown result type (might be due to invalid IL or missing references) //IL_0ce2: Unknown result type (might be due to invalid IL or missing references) //IL_0ce8: Unknown result type (might be due to invalid IL or missing references) //IL_0ced: Unknown result type (might be due to invalid IL or missing references) //IL_0cf3: Unknown result type (might be due to invalid IL or missing references) //IL_0cfd: Unknown result type (might be due to invalid IL or missing references) //IL_0d02: Unknown result type (might be due to invalid IL or missing references) //IL_0d08: Unknown result type (might be due to invalid IL or missing references) //IL_0d0d: Unknown result type (might be due to invalid IL or missing references) //IL_0d13: Unknown result type (might be due to invalid IL or missing references) //IL_0d1d: Unknown result type (might be due to invalid IL or missing references) //IL_0d22: Unknown result type (might be due to invalid IL or missing references) //IL_0d2e: Unknown result type (might be due to invalid IL or missing references) //IL_37fe: Unknown result type (might be due to invalid IL or missing references) //IL_3804: Unknown result type (might be due to invalid IL or missing references) //IL_3809: Unknown result type (might be due to invalid IL or missing references) //IL_380f: Unknown result type (might be due to invalid IL or missing references) //IL_3814: Unknown result type (might be due to invalid IL or missing references) //IL_381a: Unknown result type (might be due to invalid IL or missing references) //IL_3824: Unknown result type (might be due to invalid IL or missing references) //IL_3829: Unknown result type (might be due to invalid IL or missing references) //IL_382f: Unknown result type (might be due to invalid IL or missing references) //IL_3834: Unknown result type (might be due to invalid IL or missing references) //IL_383f: Unknown result type (might be due to invalid IL or missing references) //IL_3845: Unknown result type (might be due to invalid IL or missing references) //IL_384a: Unknown result type (might be due to invalid IL or missing references) //IL_3850: Unknown result type (might be due to invalid IL or missing references) //IL_3855: Unknown result type (might be due to invalid IL or missing references) //IL_385b: Unknown result type (might be due to invalid IL or missing references) //IL_3865: Unknown result type (might be due to invalid IL or missing references) //IL_386a: Unknown result type (might be due to invalid IL or missing references) //IL_3870: Unknown result type (might be due to invalid IL or missing references) //IL_3875: Unknown result type (might be due to invalid IL or missing references) //IL_3881: Unknown result type (might be due to invalid IL or missing references) //IL_228e: Unknown result type (might be due to invalid IL or missing references) //IL_2294: Unknown result type (might be due to invalid IL or missing references) //IL_2299: Unknown result type (might be due to invalid IL or missing references) //IL_229f: Unknown result type (might be due to invalid IL or missing references) //IL_22a4: Unknown result type (might be due to invalid IL or missing references) //IL_22aa: Unknown result type (might be due to invalid IL or missing references) //IL_22b4: Unknown result type (might be due to invalid IL or missing references) //IL_22b9: Unknown result type (might be due to invalid IL or missing references) //IL_22bf: Unknown result type (might be due to invalid IL or missing references) //IL_22c4: Unknown result type (might be due to invalid IL or missing references) //IL_22ca: Unknown result type (might be due to invalid IL or missing references) //IL_22d4: Unknown result type (might be due to invalid IL or missing references) //IL_22d9: Unknown result type (might be due to invalid IL or missing references) //IL_22e4: Unknown result type (might be due to invalid IL or missing references) //IL_22ea: Unknown result type (might be due to invalid IL or missing references) //IL_22ef: Unknown result type (might be due to invalid IL or missing references) //IL_22f5: Unknown result type (might be due to invalid IL or missing references) //IL_22fa: Unknown result type (might be due to invalid IL or missing references) //IL_2300: Unknown result type (might be due to invalid IL or missing references) //IL_230a: Unknown result type (might be due to invalid IL or missing references) //IL_230f: Unknown result type (might be due to invalid IL or missing references) //IL_2315: Unknown result type (might be due to invalid IL or missing references) //IL_231a: Unknown result type (might be due to invalid IL or missing references) //IL_2320: Unknown result type (might be due to invalid IL or missing references) //IL_232a: Unknown result type (might be due to invalid IL or missing references) //IL_232f: Unknown result type (might be due to invalid IL or missing references) //IL_233b: Unknown result type (might be due to invalid IL or missing references) //IL_0d48: Unknown result type (might be due to invalid IL or missing references) //IL_0d4e: Unknown result type (might be due to invalid IL or missing references) //IL_0d53: Unknown result type (might be due to invalid IL or missing references) //IL_0d59: Unknown result type (might be due to invalid IL or missing references) //IL_0d5e: Unknown result type (might be due to invalid IL or missing references) //IL_0d64: Unknown result type (might be due to invalid IL or missing references) //IL_0d6e: Unknown result type (might be due to invalid IL or missing references) //IL_0d73: Unknown result type (might be due to invalid IL or missing references) //IL_0d79: Unknown result type (might be due to invalid IL or missing references) //IL_0d7e: Unknown result type (might be due to invalid IL or missing references) //IL_0d84: Unknown result type (might be due to invalid IL or missing references) //IL_0d8e: Unknown result type (might be due to invalid IL or missing references) //IL_0d93: Unknown result type (might be due to invalid IL or missing references) //IL_0d9e: Unknown result type (might be due to invalid IL or missing references) //IL_0da4: Unknown result type (might be due to invalid IL or missing references) //IL_0da9: Unknown result type (might be due to invalid IL or missing references) //IL_0daf: Unknown result type (might be due to invalid IL or missing references) //IL_0db4: Unknown result type (might be due to invalid IL or missing references) //IL_0dba: Unknown result type (might be due to invalid IL or missing references) //IL_0dc4: Unknown result type (might be due to invalid IL or missing references) //IL_0dc9: Unknown result type (might be due to invalid IL or missing references) //IL_0dcf: Unknown result type (might be due to invalid IL or missing references) //IL_0dd4: Unknown result type (might be due to invalid IL or missing references) //IL_0dda: Unknown result type (might be due to invalid IL or missing references) //IL_0de4: Unknown result type (might be due to invalid IL or missing references) //IL_0de9: Unknown result type (might be due to invalid IL or missing references) //IL_0df5: Unknown result type (might be due to invalid IL or missing references) //IL_389b: Unknown result type (might be due to invalid IL or missing references) //IL_38a1: Unknown result type (might be due to invalid IL or missing references) //IL_38a6: Unknown result type (might be due to invalid IL or missing references) //IL_38ac: Unknown result type (might be due to invalid IL or missing references) //IL_38b1: Unknown result type (might be due to invalid IL or missing references) //IL_38b7: Unknown result type (might be due to invalid IL or missing references) //IL_38c1: Unknown result type (might be due to invalid IL or missing references) //IL_38c6: Unknown result type (might be due to invalid IL or missing references) //IL_38cc: Unknown result type (might be due to invalid IL or missing references) //IL_38d1: Unknown result type (might be due to invalid IL or missing references) //IL_38d7: Unknown result type (might be due to invalid IL or missing references) //IL_38e1: Unknown result type (might be due to invalid IL or missing references) //IL_38e6: Unknown result type (might be due to invalid IL or missing references) //IL_38f1: Unknown result type (might be due to invalid IL or missing references) //IL_38f7: Unknown result type (might be due to invalid IL or missing references) //IL_38fc: Unknown result type (might be due to invalid IL or missing references) //IL_3902: Unknown result type (might be due to invalid IL or missing references) //IL_3907: Unknown result type (might be due to invalid IL or missing references) //IL_390d: Unknown result type (might be due to invalid IL or missing references) //IL_3917: Unknown result type (might be due to invalid IL or missing references) //IL_391c: Unknown result type (might be due to invalid IL or missing references) //IL_3922: Unknown result type (might be due to invalid IL or missing references) //IL_3927: Unknown result type (might be due to invalid IL or missing references) //IL_392d: Unknown result type (might be due to invalid IL or missing references) //IL_3937: Unknown result type (might be due to invalid IL or missing references) //IL_393c: Unknown result type (might be due to invalid IL or missing references) //IL_3948: Unknown result type (might be due to invalid IL or missing references) //IL_2355: Unknown result type (might be due to invalid IL or missing references) //IL_235b: Unknown result type (might be due to invalid IL or missing references) //IL_2360: Unknown result type (might be due to invalid IL or missing references) //IL_2366: Unknown result type (might be due to invalid IL or missing references) //IL_236b: Unknown result type (might be due to invalid IL or missing references) //IL_2371: Unknown result type (might be due to invalid IL or missing references) //IL_237b: Unknown result type (might be due to invalid IL or missing references) //IL_2380: Unknown result type (might be due to invalid IL or missing references) //IL_2386: Unknown result type (might be due to invalid IL or missing references) //IL_238b: Unknown result type (might be due to invalid IL or missing references) //IL_2391: Unknown result type (might be due to invalid IL or missing references) //IL_239b: Unknown result type (might be due to invalid IL or missing references) //IL_23a0: Unknown result type (might be due to invalid IL or missing references) //IL_23ab: Unknown result type (might be due to invalid IL or missing references) //IL_23b1: Unknown result type (might be due to invalid IL or missing references) //IL_23b6: Unknown result type (might be due to invalid IL or missing references) //IL_23bc: Unknown result type (might be due to invalid IL or missing references) //IL_23c1: Unknown result type (might be due to invalid IL or missing references) //IL_23c7: Unknown result type (might be due to invalid IL or missing references) //IL_23d1: Unknown result type (might be due to invalid IL or missing references) //IL_23d6: Unknown result type (might be due to invalid IL or missing references) //IL_23dc: Unknown result type (might be due to invalid IL or missing references) //IL_23e1: Unknown result type (might be due to invalid IL or missing references) //IL_23e7: Unknown result type (might be due to invalid IL or missing references) //IL_23f1: Unknown result type (might be due to invalid IL or missing references) //IL_23f6: Unknown result type (might be due to invalid IL or missing references) //IL_2402: Unknown result type (might be due to invalid IL or missing references) //IL_0e0f: Unknown result type (might be due to invalid IL or missing references) //IL_0e15: Unknown result type (might be due to invalid IL or missing references) //IL_0e1a: Unknown result type (might be due to invalid IL or missing references) //IL_0e20: Unknown result type (might be due to invalid IL or missing references) //IL_0e25: Unknown result type (might be due to invalid IL or missing references) //IL_0e2b: Unknown result type (might be due to invalid IL or missing references) //IL_0e35: Unknown result type (might be due to invalid IL or missing references) //IL_0e3a: Unknown result type (might be due to invalid IL or missing references) //IL_0e40: Unknown result type (might be due to invalid IL or missing references) //IL_0e45: Unknown result type (might be due to invalid IL or missing references) //IL_0e4b: Unknown result type (might be due to invalid IL or missing references) //IL_0e55: Unknown result type (might be due to invalid IL or missing references) //IL_0e5a: Unknown result type (might be due to invalid IL or missing references) //IL_0e65: Unknown result type (might be due to invalid IL or missing references) //IL_0e6b: Unknown result type (might be due to invalid IL or missing references) //IL_0e70: Unknown result type (might be due to invalid IL or missing references) //IL_0e76: Unknown result type (might be due to invalid IL or missing references) //IL_0e7b: Unknown result type (might be due to invalid IL or missing references) //IL_0e81: Unknown result type (might be due to invalid IL or missing references) //IL_0e8b: Unknown result type (might be due to invalid IL or missing references) //IL_0e90: Unknown result type (might be due to invalid IL or missing references) //IL_0e96: Unknown result type (might be due to invalid IL or missing references) //IL_0e9b: Unknown result type (might be due to invalid IL or missing references) //IL_0ea1: Unknown result type (might be due to invalid IL or missing references) //IL_0eab: Unknown result type (might be due to invalid IL or missing references) //IL_0eb0: Unknown result type (might be due to invalid IL or missing references) //IL_0ebc: Unknown result type (might be due to invalid IL or missing references) //IL_3962: Unknown result type (might be due to invalid IL or missing references) //IL_3968: Unknown result type (might be due to invalid IL or missing references) //IL_396d: Unknown result type (might be due to invalid IL or missing references) //IL_3973: Unknown result type (might be due to invalid IL or missing references) //IL_3978: Unknown result type (might be due to invalid IL or missing references) //IL_397e: Unknown result type (might be due to invalid IL or missing references) //IL_3988: Unknown result type (might be due to invalid IL or missing references) //IL_398d: Unknown result type (might be due to invalid IL or missing references) //IL_3993: Unknown result type (might be due to invalid IL or missing references) //IL_3998: Unknown result type (might be due to invalid IL or missing references) //IL_399e: Unknown result type (might be due to invalid IL or missing references) //IL_39a8: Unknown result type (might be due to invalid IL or missing references) //IL_39ad: Unknown result type (might be due to invalid IL or missing references) //IL_39b8: Unknown result type (might be due to invalid IL or missing references) //IL_39be: Unknown result type (might be due to invalid IL or missing references) //IL_39c3: Unknown result type (might be due to invalid IL or missing references) //IL_39c9: Unknown result type (might be due to invalid IL or missing references) //IL_39ce: Unknown result type (might be due to invalid IL or missing references) //IL_39d4: Unknown result type (might be due to invalid IL or missing references) //IL_39de: Unknown result type (might be due to invalid IL or missing references) //IL_39e3: Unknown result type (might be due to invalid IL or missing references) //IL_39e9: Unknown result type (might be due to invalid IL or missing references) //IL_39ee: Unknown result type (might be due to invalid IL or missing references) //IL_39f4: Unknown result type (might be due to invalid IL or missing references) //IL_39fe: Unknown result type (might be due to invalid IL or missing references) //IL_3a03: Unknown result type (might be due to invalid IL or missing references) //IL_3a0f: Unknown result type (might be due to invalid IL or missing references) //IL_241c: Unknown result type (might be due to invalid IL or missing references) //IL_2422: Unknown result type (might be due to invalid IL or missing references) //IL_2427: Unknown result type (might be due to invalid IL or missing references) //IL_242d: Unknown result type (might be due to invalid IL or missing references) //IL_2432: Unknown result type (might be due to invalid IL or missing references) //IL_2438: Unknown result type (might be due to invalid IL or missing references) //IL_2442: Unknown result type (might be due to invalid IL or missing references) //IL_2447: Unknown result type (might be due to invalid IL or missing references) //IL_244d: Unknown result type (might be due to invalid IL or missing references) //IL_2452: Unknown result type (might be due to invalid IL or missing references) //IL_2458: Unknown result type (might be due to invalid IL or missing references) //IL_2462: Unknown result type (might be due to invalid IL or missing references) //IL_2467: Unknown result type (might be due to invalid IL or missing references) //IL_2472: Unknown result type (might be due to invalid IL or missing references) //IL_2478: Unknown result type (might be due to invalid IL or missing references) //IL_247d: Unknown result type (might be due to invalid IL or missing references) //IL_2483: Unknown result type (might be due to invalid IL or missing references) //IL_2488: Unknown result type (might be due to invalid IL or missing references) //IL_248e: Unknown result type (might be due to invalid IL or missing references) //IL_2498: Unknown result type (might be due to invalid IL or missing references) //IL_249d: Unknown result type (might be due to invalid IL or missing references) //IL_24a3: Unknown result type (might be due to invalid IL or missing references) //IL_24a8: Unknown result type (might be due to invalid IL or missing references) //IL_24ae: Unknown result type (might be due to invalid IL or missing references) //IL_24b8: Unknown result type (might be due to invalid IL or missing references) //IL_24bd: Unknown result type (might be due to invalid IL or missing references) //IL_24c9: Unknown result type (might be due to invalid IL or missing references) //IL_0ed6: Unknown result type (might be due to invalid IL or missing references) //IL_0edc: Unknown result type (might be due to invalid IL or missing references) //IL_0ee1: Unknown result type (might be due to invalid IL or missing references) //IL_0ee7: Unknown result type (might be due to invalid IL or missing references) //IL_0eec: Unknown result type (might be due to invalid IL or missing references) //IL_0ef2: Unknown result type (might be due to invalid IL or missing references) //IL_0efc: Unknown result type (might be due to invalid IL or missing references) //IL_0f01: Unknown result type (might be due to invalid IL or missing references) //IL_0f07: Unknown result type (might be due to invalid IL or missing references) //IL_0f0c: Unknown result type (might be due to invalid IL or missing references) //IL_0f12: Unknown result type (might be due to invalid IL or missing references) //IL_0f1c: Unknown result type (might be due to invalid IL or missing references) //IL_0f21: Unknown result type (might be due to invalid IL or missing references) //IL_0f2c: Unknown result type (might be due to invalid IL or missing references) //IL_0f32: Unknown result type (might be due to invalid IL or missing references) //IL_0f37: Unknown result type (might be due to invalid IL or missing references) //IL_0f3d: Unknown result type (might be due to invalid IL or missing references) //IL_0f42: Unknown result type (might be due to invalid IL or missing references) //IL_0f48: Unknown result type (might be due to invalid IL or missing references) //IL_0f52: Unknown result type (might be due to invalid IL or missing references) //IL_0f57: Unknown result type (might be due to invalid IL or missing references) //IL_0f5d: Unknown result type (might be due to invalid IL or missing references) //IL_0f62: Unknown result type (might be due to invalid IL or missing references) //IL_0f68: Unknown result type (might be due to invalid IL or missing references) //IL_0f72: Unknown result type (might be due to invalid IL or missing references) //IL_0f77: Unknown result type (might be due to invalid IL or missing references) //IL_0f83: Unknown result type (might be due to invalid IL or missing references) //IL_3a29: Unknown result type (might be due to invalid IL or missing references) //IL_3a2f: Unknown result type (might be due to invalid IL or missing references) //IL_3a34: Unknown result type (might be due to invalid IL or missing references) //IL_3a3a: Unknown result type (might be due to invalid IL or missing references) //IL_3a3f: Unknown result type (might be due to invalid IL or missing references) //IL_3a45: Unknown result type (might be due to invalid IL or missing references) //IL_3a4f: Unknown result type (might be due to invalid IL or missing references) //IL_3a54: Unknown result type (might be due to invalid IL or missing references) //IL_3a5a: Unknown result type (might be due to invalid IL or missing references) //IL_3a5f: Unknown result type (might be due to invalid IL or missing references) //IL_3a65: Unknown result type (might be due to invalid IL or missing references) //IL_3a6f: Unknown result type (might be due to invalid IL or missing references) //IL_3a74: Unknown result type (might be due to invalid IL or missing references) //IL_3a7f: Unknown result type (might be due to invalid IL or missing references) //IL_3a85: Unknown result type (might be due to invalid IL or missing references) //IL_3a8a: Unknown result type (might be due to invalid IL or missing references) //IL_3a90: Unknown result type (might be due to invalid IL or missing references) //IL_3a95: Unknown result type (might be due to invalid IL or missing references) //IL_3a9b: Unknown result type (might be due to invalid IL or missing references) //IL_3aa5: Unknown result type (might be due to invalid IL or missing references) //IL_3aaa: Unknown result type (might be due to invalid IL or missing references) //IL_3ab0: Unknown result type (might be due to invalid IL or missing references) //IL_3ab5: Unknown result type (might be due to invalid IL or missing references) //IL_3abb: Unknown result type (might be due to invalid IL or missing references) //IL_3ac5: Unknown result type (might be due to invalid IL or missing references) //IL_3aca: Unknown result type (might be due to invalid IL or missing references) //IL_3ad6: Unknown result type (might be due to invalid IL or missing references) //IL_24e3: Unknown result type (might be due to invalid IL or missing references) //IL_24e9: Unknown result type (might be due to invalid IL or missing references) //IL_24ee: Unknown result type (might be due to invalid IL or missing references) //IL_24f4: Unknown result type (might be due to invalid IL or missing references) //IL_24f9: Unknown result type (might be due to invalid IL or missing references) //IL_24ff: Unknown result type (might be due to invalid IL or missing references) //IL_2509: Unknown result type (might be due to invalid IL or missing references) //IL_250e: Unknown result type (might be due to invalid IL or missing references) //IL_2514: Unknown result type (might be due to invalid IL or missing references) //IL_2519: Unknown result type (might be due to invalid IL or missing references) //IL_251f: Unknown result type (might be due to invalid IL or missing references) //IL_2529: Unknown result type (might be due to invalid IL or missing references) //IL_252e: Unknown result type (might be due to invalid IL or missing references) //IL_2539: Unknown result type (might be due to invalid IL or missing references) //IL_253f: Unknown result type (might be due to invalid IL or missing references) //IL_2544: Unknown result type (might be due to invalid IL or missing references) //IL_254a: Unknown result type (might be due to invalid IL or missing references) //IL_254f: Unknown result type (might be due to invalid IL or missing references) //IL_2555: Unknown result type (might be due to invalid IL or missing references) //IL_255f: Unknown result type (might be due to invalid IL or missing references) //IL_2564: Unknown result type (might be due to invalid IL or missing references) //IL_256a: Unknown result type (might be due to invalid IL or missing references) //IL_256f: Unknown result type (might be due to invalid IL or missing references) //IL_2575: Unknown result type (might be due to invalid IL or missing references) //IL_257f: Unknown result type (might be due to invalid IL or missing references) //IL_2584: Unknown result type (might be due to invalid IL or missing references) //IL_2590: Unknown result type (might be due to invalid IL or missing references) //IL_0f9d: Unknown result type (might be due to invalid IL or missing references) //IL_0fa3: Unknown result type (might be due to invalid IL or missing references) //IL_0fa8: Unknown result type (might be due to invalid IL or missing references) //IL_0fae: Unknown result type (might be due to invalid IL or missing references) //IL_0fb3: Unknown result type (might be due to invalid IL or missing references) //IL_0fb9: Unknown result type (might be due to invalid IL or missing references) //IL_0fc3: Unknown result type (might be due to invalid IL or missing references) //IL_0fc8: Unknown result type (might be due to invalid IL or missing references) //IL_0fce: Unknown result type (might be due to invalid IL or missing references) //IL_0fd3: Unknown result type (might be due to invalid IL or missing references) //IL_0fd9: Unknown result type (might be due to invalid IL or missing references) //IL_0fe3: Unknown result type (might be due to invalid IL or missing references) //IL_0fe8: Unknown result type (might be due to invalid IL or missing references) //IL_0ff3: Unknown result type (might be due to invalid IL or missing references) //IL_0ff9: Unknown result type (might be due to invalid IL or missing references) //IL_0ffe: Unknown result type (might be due to invalid IL or missing references) //IL_1004: Unknown result type (might be due to invalid IL or missing references) //IL_1009: Unknown result type (might be due to invalid IL or missing references) //IL_100f: Unknown result type (might be due to invalid IL or missing references) //IL_1019: Unknown result type (might be due to invalid IL or missing references) //IL_101e: Unknown result type (might be due to invalid IL or missing references) //IL_1024: Unknown result type (might be due to invalid IL or missing references) //IL_1029: Unknown result type (might be due to invalid IL or missing references) //IL_102f: Unknown result type (might be due to invalid IL or missing references) //IL_1039: Unknown result type (might be due to invalid IL or missing references) //IL_103e: Unknown result type (might be due to invalid IL or missing references) //IL_104a: Unknown result type (might be due to invalid IL or missing references) //IL_3af0: Unknown result type (might be due to invalid IL or missing references) //IL_3af6: Unknown result type (might be due to invalid IL or missing references) //IL_3afb: Unknown result type (might be due to invalid IL or missing references) //IL_3b01: Unknown result type (might be due to invalid IL or missing references) //IL_3b06: Unknown result type (might be due to invalid IL or missing references) //IL_3b0c: Unknown result type (might be due to invalid IL or missing references) //IL_3b16: Unknown result type (might be due to invalid IL or missing references) //IL_3b1b: Unknown result type (might be due to invalid IL or missing references) //IL_3b21: Unknown result type (might be due to invalid IL or missing references) //IL_3b26: Unknown result type (might be due to invalid IL or missing references) //IL_3b2c: Unknown result type (might be due to invalid IL or missing references) //IL_3b36: Unknown result type (might be due to invalid IL or missing references) //IL_3b3b: Unknown result type (might be due to invalid IL or missing references) //IL_3b46: Unknown result type (might be due to invalid IL or missing references) //IL_3b4c: Unknown result type (might be due to invalid IL or missing references) //IL_3b51: Unknown result type (might be due to invalid IL or missing references) //IL_3b57: Unknown result type (might be due to invalid IL or missing references) //IL_3b5c: Unknown result type (might be due to invalid IL or missing references) //IL_3b62: Unknown result type (might be due to invalid IL or missing references) //IL_3b6c: Unknown result type (might be due to invalid IL or missing references) //IL_3b71: Unknown result type (might be due to invalid IL or missing references) //IL_3b77: Unknown result type (might be due to invalid IL or missing references) //IL_3b7c: Unknown result type (might be due to invalid IL or missing references) //IL_3b82: Unknown result type (might be due to invalid IL or missing references) //IL_3b8c: Unknown result type (might be due to invalid IL or missing references) //IL_3b91: Unknown result type (might be due to invalid IL or missing references) //IL_3b9d: Unknown result type (might be due to invalid IL or missing references) //IL_25aa: Unknown result type (might be due to invalid IL or missing references) //IL_25b0: Unknown result type (might be due to invalid IL or missing references) //IL_25b5: Unknown result type (might be due to invalid IL or missing references) //IL_25bb: Unknown result type (might be due to invalid IL or missing references) //IL_25c0: Unknown result type (might be due to invalid IL or missing references) //IL_25c6: Unknown result type (might be due to invalid IL or missing references) //IL_25d0: Unknown result type (might be due to invalid IL or missing references) //IL_25d5: Unknown result type (might be due to invalid IL or missing references) //IL_25db: Unknown result type (might be due to invalid IL or missing references) //IL_25e0: Unknown result type (might be due to invalid IL or missing references) //IL_25e6: Unknown result type (might be due to invalid IL or missing references) //IL_25f0: Unknown result type (might be due to invalid IL or missing references) //IL_25f5: Unknown result type (might be due to invalid IL or missing references) //IL_2600: Unknown result type (might be due to invalid IL or missing references) //IL_2606: Unknown result type (might be due to invalid IL or missing references) //IL_260b: Unknown result type (might be due to invalid IL or missing references) //IL_2611: Unknown result type (might be due to invalid IL or missing references) //IL_2616: Unknown result type (might be due to invalid IL or missing references) //IL_261c: Unknown result type (might be due to invalid IL or missing references) //IL_2626: Unknown result type (might be due to invalid IL or missing references) //IL_262b: Unknown result type (might be due to invalid IL or missing references) //IL_2631: Unknown result type (might be due to invalid IL or missing references) //IL_2636: Unknown result type (might be due to invalid IL or missing references) //IL_263c: Unknown result type (might be due to invalid IL or missing references) //IL_2646: Unknown result type (might be due to invalid IL or missing references) //IL_264b: Unknown result type (might be due to invalid IL or missing references) //IL_2657: Unknown result type (might be due to invalid IL or missing references) //IL_1064: Unknown result type (might be due to invalid IL or missing references) //IL_106a: Unknown result type (might be due to invalid IL or missing references) //IL_106f: Unknown result type (might be due to invalid IL or missing references) //IL_1075: Unknown result type (might be due to invalid IL or missing references) //IL_107a: Unknown result type (might be due to invalid IL or missing references) //IL_1080: Unknown result type (might be due to invalid IL or missing references) //IL_108a: Unknown result type (might be due to invalid IL or missing references) //IL_108f: Unknown result type (might be due to invalid IL or missing references) //IL_1095: Unknown result type (might be due to invalid IL or missing references) //IL_109a: Unknown result type (might be due to invalid IL or missing references) //IL_10a5: Unknown result type (might be due to invalid IL or missing references) //IL_10ab: Unknown result type (might be due to invalid IL or missing references) //IL_10b0: Unknown result type (might be due to invalid IL or missing references) //IL_10b6: Unknown result type (might be due to invalid IL or missing references) //IL_10bb: Unknown result type (might be due to invalid IL or missing references) //IL_10c1: Unknown result type (might be due to invalid IL or missing references) //IL_10cb: Unknown result type (might be due to invalid IL or missing references) //IL_10d0: Unknown result type (might be due to invalid IL or missing references) //IL_10d6: Unknown result type (might be due to invalid IL or missing references) //IL_10db: Unknown result type (might be due to invalid IL or missing references) //IL_10e7: Unknown result type (might be due to invalid IL or missing references) //IL_3bb7: Unknown result type (might be due to invalid IL or missing references) //IL_3bbd: Unknown result type (might be due to invalid IL or missing references) //IL_3bc2: Unknown result type (might be due to invalid IL or missing references) //IL_3bc8: Unknown result type (might be due to invalid IL or missing references) //IL_3bcd: Unknown result type (might be due to invalid IL or missing references) //IL_3bd3: Unknown result type (might be due to invalid IL or missing references) //IL_3bdd: Unknown result type (might be due to invalid IL or missing references) //IL_3be2: Unknown result type (might be due to invalid IL or missing references) //IL_3be8: Unknown result type (might be due to invalid IL or missing references) //IL_3bed: Unknown result type (might be due to invalid IL or missing references) //IL_3bf3: Unknown result type (might be due to invalid IL or missing references) //IL_3bfd: Unknown result type (might be due to invalid IL or missing references) //IL_3c02: Unknown result type (might be due to invalid IL or missing references) //IL_3c0d: Unknown result type (might be due to invalid IL or missing references) //IL_3c13: Unknown result type (might be due to invalid IL or missing references) //IL_3c18: Unknown result type (might be due to invalid IL or missing references) //IL_3c1e: Unknown result type (might be due to invalid IL or missing references) //IL_3c23: Unknown result type (might be due to invalid IL or missing references) //IL_3c29: Unknown result type (might be due to invalid IL or missing references) //IL_3c33: Unknown result type (might be due to invalid IL or missing references) //IL_3c38: Unknown result type (might be due to invalid IL or missing references) //IL_3c3e: Unknown result type (might be due to invalid IL or missing references) //IL_3c43: Unknown result type (might be due to invalid IL or missing references) //IL_3c49: Unknown result type (might be due to invalid IL or missing references) //IL_3c53: Unknown result type (might be due to invalid IL or missing references) //IL_3c58: Unknown result type (might be due to invalid IL or missing references) //IL_3c64: Unknown result type (might be due to invalid IL or missing references) //IL_2671: Unknown result type (might be due to invalid IL or missing references) //IL_2677: Unknown result type (might be due to invalid IL or missing references) //IL_267c: Unknown result type (might be due to invalid IL or missing references) //IL_2682: Unknown result type (might be due to invalid IL or missing references) //IL_2687: Unknown result type (might be due to invalid IL or missing references) //IL_268d: Unknown result type (might be due to invalid IL or missing references) //IL_2697: Unknown result type (might be due to invalid IL or missing references) //IL_269c: Unknown result type (might be due to invalid IL or missing references) //IL_26a2: Unknown result type (might be due to invalid IL or missing references) //IL_26a7: Unknown result type (might be due to invalid IL or missing references) //IL_26ad: Unknown result type (might be due to invalid IL or missing references) //IL_26b7: Unknown result type (might be due to invalid IL or missing references) //IL_26bc: Unknown result type (might be due to invalid IL or missing references) //IL_26c7: Unknown result type (might be due to invalid IL or missing references) //IL_26cd: Unknown result type (might be due to invalid IL or missing references) //IL_26d2: Unknown result type (might be due to invalid IL or missing references) //IL_26d8: Unknown result type (might be due to invalid IL or missing references) //IL_26dd: Unknown result type (might be due to invalid IL or missing references) //IL_26e3: Unknown result type (might be due to invalid IL or missing references) //IL_26ed: Unknown result type (might be due to invalid IL or missing references) //IL_26f2: Unknown result type (might be due to invalid IL or missing references) //IL_26f8: Unknown result type (might be due to invalid IL or missing references) //IL_26fd: Unknown result type (might be due to invalid IL or missing references) //IL_2703: Unknown result type (might be due to invalid IL or missing references) //IL_270d: Unknown result type (might be due to invalid IL or missing references) //IL_2712: Unknown result type (might be due to invalid IL or missing references) //IL_271e: Unknown result type (might be due to invalid IL or missing references) //IL_1101: Unknown result type (might be due to invalid IL or missing references) //IL_1107: Unknown result type (might be due to invalid IL or missing references) //IL_110c: Unknown result type (might be due to invalid IL or missing references) //IL_1112: Unknown result type (might be due to invalid IL or missing references) //IL_1117: Unknown result type (might be due to invalid IL or missing references) //IL_111d: Unknown result type (might be due to invalid IL or missing references) //IL_1127: Unknown result type (might be due to invalid IL or missing references) //IL_112c: Unknown result type (might be due to invalid IL or missing references) //IL_1132: Unknown result type (might be due to invalid IL or missing references) //IL_1137: Unknown result type (might be due to invalid IL or missing references) //IL_113d: Unknown result type (might be due to invalid IL or missing references) //IL_1147: Unknown result type (might be due to invalid IL or missing references) //IL_114c: Unknown result type (might be due to invalid IL or missing references) //IL_1157: Unknown result type (might be due to invalid IL or missing references) //IL_115d: Unknown result type (might be due to invalid IL or missing references) //IL_1162: Unknown result type (might be due to invalid IL or missing references) //IL_1168: Unknown result type (might be due to invalid IL or missing references) //IL_116d: Unknown result type (might be due to invalid IL or missing references) //IL_1173: Unknown result type (might be due to invalid IL or missing references) //IL_117d: Unknown result type (might be due to invalid IL or missing references) //IL_1182: Unknown result type (might be due to invalid IL or missing references) //IL_1188: Unknown result type (might be due to invalid IL or missing references) //IL_118d: Unknown result type (might be due to invalid IL or missing references) //IL_1193: Unknown result type (might be due to invalid IL or missing references) //IL_119d: Unknown result type (might be due to invalid IL or missing references) //IL_11a2: Unknown result type (might be due to invalid IL or missing references) //IL_11ae: Unknown result type (might be due to invalid IL or missing references) //IL_3c7e: Unknown result type (might be due to invalid IL or missing references) //IL_3c84: Unknown result type (might be due to invalid IL or missing references) //IL_3c89: Unknown result type (might be due to invalid IL or missing references) //IL_3c8f: Unknown result type (might be due to invalid IL or missing references) //IL_3c94: Unknown result type (might be due to invalid IL or missing references) //IL_3c9a: Unknown result type (might be due to invalid IL or missing references) //IL_3ca4: Unknown result type (might be due to invalid IL or missing references) //IL_3ca9: Unknown result type (might be due to invalid IL or missing references) //IL_3caf: Unknown result type (might be due to invalid IL or missing references) //IL_3cb4: Unknown result type (might be due to invalid IL or missing references) //IL_3cba: Unknown result type (might be due to invalid IL or missing references) //IL_3cc4: Unknown result type (might be due to invalid IL or missing references) //IL_3cc9: Unknown result type (might be due to invalid IL or missing references) //IL_3cd4: Unknown result type (might be due to invalid IL or missing references) //IL_3cda: Unknown result type (might be due to invalid IL or missing references) //IL_3cdf: Unknown result type (might be due to invalid IL or missing references) //IL_3ce5: Unknown result type (might be due to invalid IL or missing references) //IL_3cea: Unknown result type (might be due to invalid IL or missing references) //IL_3cf0: Unknown result type (might be due to invalid IL or missing references) //IL_3cfa: Unknown result type (might be due to invalid IL or missing references) //IL_3cff: Unknown result type (might be due to invalid IL or missing references) //IL_3d05: Unknown result type (might be due to invalid IL or missing references) //IL_3d0a: Unknown result type (might be due to invalid IL or missing references) //IL_3d10: Unknown result type (might be due to invalid IL or missing references) //IL_3d1a: Unknown result type (might be due to invalid IL or missing references) //IL_3d1f: Unknown result type (might be due to invalid IL or missing references) //IL_3d2b: Unknown result type (might be due to invalid IL or missing references) //IL_2738: Unknown result type (might be due to invalid IL or missing references) //IL_273e: Unknown result type (might be due to invalid IL or missing references) //IL_2743: Unknown result type (might be due to invalid IL or missing references) //IL_2749: Unknown result type (might be due to invalid IL or missing references) //IL_274e: Unknown result type (might be due to invalid IL or missing references) //IL_2754: Unknown result type (might be due to invalid IL or missing references) //IL_275e: Unknown result type (might be due to invalid IL or missing references) //IL_2763: Unknown result type (might be due to invalid IL or missing references) //IL_2769: Unknown result type (might be due to invalid IL or missing references) //IL_276e: Unknown result type (might be due to invalid IL or missing references) //IL_2779: Unknown result type (might be due to invalid IL or missing references) //IL_277f: Unknown result type (might be due to invalid IL or missing references) //IL_2784: Unknown result type (might be due to invalid IL or missing references) //IL_278a: Unknown result type (might be due to invalid IL or missing references) //IL_278f: Unknown result type (might be due to invalid IL or missing references) //IL_2795: Unknown result type (might be due to invalid IL or missing references) //IL_279f: Unknown result type (might be due to invalid IL or missing references) //IL_27a4: Unknown result type (might be due to invalid IL or missing references) //IL_27aa: Unknown result type (might be due to invalid IL or missing references) //IL_27af: Unknown result type (might be due to invalid IL or missing references) //IL_27bb: Unknown result type (might be due to invalid IL or missing references) //IL_11c8: Unknown result type (might be due to invalid IL or missing references) //IL_11ce: Unknown result type (might be due to invalid IL or missing references) //IL_11d3: Unknown result type (might be due to invalid IL or missing references) //IL_11d9: Unknown result type (might be due to invalid IL or missing references) //IL_11de: Unknown result type (might be due to invalid IL or missing references) //IL_11e4: Unknown result type (might be due to invalid IL or missing references) //IL_11ee: Unknown result type (might be due to invalid IL or missing references) //IL_11f3: Unknown result type (might be due to invalid IL or missing references) //IL_11f9: Unknown result type (might be due to invalid IL or missing references) //IL_11fe: Unknown result type (might be due to invalid IL or missing references) //IL_1204: Unknown result type (might be due to invalid IL or missing references) //IL_120e: Unknown result type (might be due to invalid IL or missing references) //IL_1213: Unknown result type (might be due to invalid IL or missing references) //IL_121e: Unknown result type (might be due to invalid IL or missing references) //IL_1224: Unknown result type (might be due to invalid IL or missing references) //IL_1229: Unknown result type (might be due to invalid IL or missing references) //IL_122f: Unknown result type (might be due to invalid IL or missing references) //IL_1234: Unknown result type (might be due to invalid IL or missing references) //IL_123a: Unknown result type (might be due to invalid IL or missing references) //IL_1244: Unknown result type (might be due to invalid IL or missing references) //IL_1249: Unknown result type (might be due to invalid IL or missing references) //IL_124f: Unknown result type (might be due to invalid IL or missing references) //IL_1254: Unknown result type (might be due to invalid IL or missing references) //IL_125a: Unknown result type (might be due to invalid IL or missing references) //IL_1264: Unknown result type (might be due to invalid IL or missing references) //IL_1269: Unknown result type (might be due to invalid IL or missing references) //IL_1275: Unknown result type (might be due to invalid IL or missing references) //IL_3d45: Unknown result type (might be due to invalid IL or missing references) //IL_3d4b: Unknown result type (might be due to invalid IL or missing references) //IL_3d50: Unknown result type (might be due to invalid IL or missing references) //IL_3d56: Unknown result type (might be due to invalid IL or missing references) //IL_3d5b: Unknown result type (might be due to invalid IL or missing references) //IL_3d61: Unknown result type (might be due to invalid IL or missing references) //IL_3d6b: Unknown result type (might be due to invalid IL or missing references) //IL_3d70: Unknown result type (might be due to invalid IL or missing references) //IL_3d76: Unknown result type (might be due to invalid IL or missing references) //IL_3d7b: Unknown result type (might be due to invalid IL or missing references) //IL_3d81: Unknown result type (might be due to invalid IL or missing references) //IL_3d8b: Unknown result type (might be due to invalid IL or missing references) //IL_3d90: Unknown result type (might be due to invalid IL or missing references) //IL_3d9b: Unknown result type (might be due to invalid IL or missing references) //IL_3da1: Unknown result type (might be due to invalid IL or missing references) //IL_3da6: Unknown result type (might be due to invalid IL or missing references) //IL_3dac: Unknown result type (might be due to invalid IL or missing references) //IL_3db1: Unknown result type (might be due to invalid IL or missing references) //IL_3db7: Unknown result type (might be due to invalid IL or missing references) //IL_3dc1: Unknown result type (might be due to invalid IL or missing references) //IL_3dc6: Unknown result type (might be due to invalid IL or missing references) //IL_3dcc: Unknown result type (might be due to invalid IL or missing references) //IL_3dd1: Unknown result type (might be due to invalid IL or missing references) //IL_3dd7: Unknown result type (might be due to invalid IL or missing references) //IL_3de1: Unknown result type (might be due to invalid IL or missing references) //IL_3de6: Unknown result type (might be due to invalid IL or missing references) //IL_3df2: Unknown result type (might be due to invalid IL or missing references) //IL_27d5: Unknown result type (might be due to invalid IL or missing references) //IL_27db: Unknown result type (might be due to invalid IL or missing references) //IL_27e0: Unknown result type (might be due to invalid IL or missing references) //IL_27e6: Unknown result type (might be due to invalid IL or missing references) //IL_27eb: Unknown result type (might be due to invalid IL or missing references) //IL_27f1: Unknown result type (might be due to invalid IL or missing references) //IL_27fb: Unknown result type (might be due to invalid IL or missing references) //IL_2800: Unknown result type (might be due to invalid IL or missing references) //IL_2806: Unknown result type (might be due to invalid IL or missing references) //IL_280b: Unknown result type (might be due to invalid IL or missing references) //IL_2811: Unknown result type (might be due to invalid IL or missing references) //IL_281b: Unknown result type (might be due to invalid IL or missing references) //IL_2820: Unknown result type (might be due to invalid IL or missing references) //IL_282b: Unknown result type (might be due to invalid IL or missing references) //IL_2831: Unknown result type (might be due to invalid IL or missing references) //IL_2836: Unknown result type (might be due to invalid IL or missing references) //IL_283c: Unknown result type (might be due to invalid IL or missing references) //IL_2841: Unknown result type (might be due to invalid IL or missing references) //IL_2847: Unknown result type (might be due to invalid IL or missing references) //IL_2851: Unknown result type (might be due to invalid IL or missing references) //IL_2856: Unknown result type (might be due to invalid IL or missing references) //IL_285c: Unknown result type (might be due to invalid IL or missing references) //IL_2861: Unknown result type (might be due to invalid IL or missing references) //IL_2867: Unknown result type (might be due to invalid IL or missing references) //IL_2871: Unknown result type (might be due to invalid IL or missing references) //IL_2876: Unknown result type (might be due to invalid IL or missing references) //IL_2882: Unknown result type (might be due to invalid IL or missing references) //IL_128f: Unknown result type (might be due to invalid IL or missing references) //IL_1295: Unknown result type (might be due to invalid IL or missing references) //IL_129a: Unknown result type (might be due to invalid IL or missing references) //IL_12a0: Unknown result type (might be due to invalid IL or missing references) //IL_12a5: Unknown result type (might be due to invalid IL or missing references) //IL_12ab: Unknown result type (might be due to invalid IL or missing references) //IL_12b5: Unknown result type (might be due to invalid IL or missing references) //IL_12ba: Unknown result type (might be due to invalid IL or missing references) //IL_12c0: Unknown result type (might be due to invalid IL or missing references) //IL_12c5: Unknown result type (might be due to invalid IL or missing references) //IL_12cb: Unknown result type (might be due to invalid IL or missing references) //IL_12d5: Unknown result type (might be due to invalid IL or missing references) //IL_12da: Unknown result type (might be due to invalid IL or missing references) //IL_12e5: Unknown result type (might be due to invalid IL or missing references) //IL_12eb: Unknown result type (might be due to invalid IL or missing references) //IL_12f0: Unknown result type (might be due to invalid IL or missing references) //IL_12f6: Unknown result type (might be due to invalid IL or missing references) //IL_12fb: Unknown result type (might be due to invalid IL or missing references) //IL_1301: Unknown result type (might be due to invalid IL or missing references) //IL_130b: Unknown result type (might be due to invalid IL or missing references) //IL_1310: Unknown result type (might be due to invalid IL or missing references) //IL_1316: Unknown result type (might be due to invalid IL or missing references) //IL_131b: Unknown result type (might be due to invalid IL or missing references) //IL_1321: Unknown result type (might be due to invalid IL or missing references) //IL_132b: Unknown result type (might be due to invalid IL or missing references) //IL_1330: Unknown result type (might be due to invalid IL or missing references) //IL_133c: Unknown result type (might be due to invalid IL or missing references) //IL_3e0c: Unknown result type (might be due to invalid IL or missing references) //IL_3e12: Unknown result type (might be due to invalid IL or missing references) //IL_3e17: Unknown result type (might be due to invalid IL or missing references) //IL_3e1d: Unknown result type (might be due to invalid IL or missing references) //IL_3e22: Unknown result type (might be due to invalid IL or missing references) //IL_3e28: Unknown result type (might be due to invalid IL or missing references) //IL_3e32: Unknown result type (might be due to invalid IL or missing references) //IL_3e37: Unknown result type (might be due to invalid IL or missing references) //IL_3e3d: Unknown result type (might be due to invalid IL or missing references) //IL_3e42: Unknown result type (might be due to invalid IL or missing references) //IL_3e4d: Unknown result type (might be due to invalid IL or missing references) //IL_3e53: Unknown result type (might be due to invalid IL or missing references) //IL_3e58: Unknown result type (might be due to invalid IL or missing references) //IL_3e5e: Unknown result type (might be due to invalid IL or missing references) //IL_3e63: Unknown result type (might be due to invalid IL or missing references) //IL_3e69: Unknown result type (might be due to invalid IL or missing references) //IL_3e73: Unknown result type (might be due to invalid IL or missing references) //IL_3e78: Unknown result type (might be due to invalid IL or missing references) //IL_3e7e: Unknown result type (might be due to invalid IL or missing references) //IL_3e83: Unknown result type (might be due to invalid IL or missing references) //IL_3e8f: Unknown result type (might be due to invalid IL or missing references) //IL_289c: Unknown result type (might be due to invalid IL or missing references) //IL_28a2: Unknown result type (might be due to invalid IL or missing references) //IL_28a7: Unknown result type (might be due to invalid IL or missing references) //IL_28ad: Unknown result type (might be due to invalid IL or missing references) //IL_28b2: Unknown result type (might be due to invalid IL or missing references) //IL_28b8: Unknown result type (might be due to invalid IL or missing references) //IL_28c2: Unknown result type (might be due to invalid IL or missing references) //IL_28c7: Unknown result type (might be due to invalid IL or missing references) //IL_28cd: Unknown result type (might be due to invalid IL or missing references) //IL_28d2: Unknown result type (might be due to invalid IL or missing references) //IL_28d8: Unknown result type (might be due to invalid IL or missing references) //IL_28e2: Unknown result type (might be due to invalid IL or missing references) //IL_28e7: Unknown result type (might be due to invalid IL or missing references) //IL_28f2: Unknown result type (might be due to invalid IL or missing references) //IL_28f8: Unknown result type (might be due to invalid IL or missing references) //IL_28fd: Unknown result type (might be due to invalid IL or missing references) //IL_2903: Unknown result type (might be due to invalid IL or missing references) //IL_2908: Unknown result type (might be due to invalid IL or missing references) //IL_290e: Unknown result type (might be due to invalid IL or missing references) //IL_2918: Unknown result type (might be due to invalid IL or missing references) //IL_291d: Unknown result type (might be due to invalid IL or missing references) //IL_2923: Unknown result type (might be due to invalid IL or missing references) //IL_2928: Unknown result type (might be due to invalid IL or missing references) //IL_292e: Unknown result type (might be due to invalid IL or missing references) //IL_2938: Unknown result type (might be due to invalid IL or missing references) //IL_293d: Unknown result type (might be due to invalid IL or missing references) //IL_2949: Unknown result type (might be due to invalid IL or missing references) //IL_1356: Unknown result type (might be due to invalid IL or missing references) //IL_135c: Unknown result type (might be due to invalid IL or missing references) //IL_1361: Unknown result type (might be due to invalid IL or missing references) //IL_1367: Unknown result type (might be due to invalid IL or missing references) //IL_136c: Unknown result type (might be due to invalid IL or missing references) //IL_1372: Unknown result type (might be due to invalid IL or missing references) //IL_137c: Unknown result type (might be due to invalid IL or missing references) //IL_1381: Unknown result type (might be due to invalid IL or missing references) //IL_1387: Unknown result type (might be due to invalid IL or missing references) //IL_138c: Unknown result type (might be due to invalid IL or missing references) //IL_1392: Unknown result type (might be due to invalid IL or missing references) //IL_139c: Unknown result type (might be due to invalid IL or missing references) //IL_13a1: Unknown result type (might be due to invalid IL or missing references) //IL_13ac: Unknown result type (might be due to invalid IL or missing references) //IL_13b2: Unknown result type (might be due to invalid IL or missing references) //IL_13b7: Unknown result type (might be due to invalid IL or missing references) //IL_13bd: Unknown result type (might be due to invalid IL or missing references) //IL_13c2: Unknown result type (might be due to invalid IL or missing references) //IL_13c8: Unknown result type (might be due to invalid IL or missing references) //IL_13d2: Unknown result type (might be due to invalid IL or missing references) //IL_13d7: Unknown result type (might be due to invalid IL or missing references) //IL_13dd: Unknown result type (might be due to invalid IL or missing references) //IL_13e2: Unknown result type (might be due to invalid IL or missing references) //IL_13e8: Unknown result type (might be due to invalid IL or missing references) //IL_13f2: Unknown result type (might be due to invalid IL or missing references) //IL_13f7: Unknown result type (might be due to invalid IL or missing references) //IL_1403: Unknown result type (might be due to invalid IL or missing references) //IL_3ea9: Unknown result type (might be due to invalid IL or missing references) //IL_3eaf: Unknown result type (might be due to invalid IL or missing references) //IL_3eb4: Unknown result type (might be due to invalid IL or missing references) //IL_3eba: Unknown result type (might be due to invalid IL or missing references) //IL_3ebf: Unknown result type (might be due to invalid IL or missing references) //IL_3ec5: Unknown result type (might be due to invalid IL or missing references) //IL_3ecf: Unknown result type (might be due to invalid IL or missing references) //IL_3ed4: Unknown result type (might be due to invalid IL or missing references) //IL_3eda: Unknown result type (might be due to invalid IL or missing references) //IL_3edf: Unknown result type (might be due to invalid IL or missing references) //IL_3ee5: Unknown result type (might be due to invalid IL or missing references) //IL_3eef: Unknown result type (might be due to invalid IL or missing references) //IL_3ef4: Unknown result type (might be due to invalid IL or missing references) //IL_3eff: Unknown result type (might be due to invalid IL or missing references) //IL_3f05: Unknown result type (might be due to invalid IL or missing references) //IL_3f0a: Unknown result type (might be due to invalid IL or missing references) //IL_3f10: Unknown result type (might be due to invalid IL or missing references) //IL_3f15: Unknown result type (might be due to invalid IL or missing references) //IL_3f1b: Unknown result type (might be due to invalid IL or missing references) //IL_3f25: Unknown result type (might be due to invalid IL or missing references) //IL_3f2a: Unknown result type (might be due to invalid IL or missing references) //IL_3f30: Unknown result type (might be due to invalid IL or missing references) //IL_3f35: Unknown result type (might be due to invalid IL or missing references) //IL_3f3b: Unknown result type (might be due to invalid IL or missing references) //IL_3f45: Unknown result type (might be due to invalid IL or missing references) //IL_3f4a: Unknown result type (might be due to invalid IL or missing references) //IL_3f56: Unknown result type (might be due to invalid IL or missing references) //IL_2963: Unknown result type (might be due to invalid IL or missing references) //IL_2969: Unknown result type (might be due to invalid IL or missing references) //IL_296e: Unknown result type (might be due to invalid IL or missing references) //IL_2974: Unknown result type (might be due to invalid IL or missing references) //IL_2979: Unknown result type (might be due to invalid IL or missing references) //IL_297f: Unknown result type (might be due to invalid IL or missing references) //IL_2989: Unknown result type (might be due to invalid IL or missing references) //IL_298e: Unknown result type (might be due to invalid IL or missing references) //IL_2994: Unknown result type (might be due to invalid IL or missing references) //IL_2999: Unknown result type (might be due to invalid IL or missing references) //IL_299f: Unknown result type (might be due to invalid IL or missing references) //IL_29a9: Unknown result type (might be due to invalid IL or missing references) //IL_29ae: Unknown result type (might be due to invalid IL or missing references) //IL_29b9: Unknown result type (might be due to invalid IL or missing references) //IL_29bf: Unknown result type (might be due to invalid IL or missing references) //IL_29c4: Unknown result type (might be due to invalid IL or missing references) //IL_29ca: Unknown result type (might be due to invalid IL or missing references) //IL_29cf: Unknown result type (might be due to invalid IL or missing references) //IL_29d5: Unknown result type (might be due to invalid IL or missing references) //IL_29df: Unknown result type (might be due to invalid IL or missing references) //IL_29e4: Unknown result type (might be due to invalid IL or missing references) //IL_29ea: Unknown result type (might be due to invalid IL or missing references) //IL_29ef: Unknown result type (might be due to invalid IL or missing references) //IL_29f5: Unknown result type (might be due to invalid IL or missing references) //IL_29ff: Unknown result type (might be due to invalid IL or missing references) //IL_2a04: Unknown result type (might be due to invalid IL or missing references) //IL_2a10: Unknown result type (might be due to invalid IL or missing references) //IL_141d: Unknown result type (might be due to invalid IL or missing references) //IL_1423: Unknown result type (might be due to invalid IL or missing references) //IL_1428: Unknown result type (might be due to invalid IL or missing references) //IL_142e: Unknown result type (might be due to invalid IL or missing references) //IL_1433: Unknown result type (might be due to invalid IL or missing references) //IL_1439: Unknown result type (might be due to invalid IL or missing references) //IL_1443: Unknown result type (might be due to invalid IL or missing references) //IL_1448: Unknown result type (might be due to invalid IL or missing references) //IL_144e: Unknown result type (might be due to invalid IL or missing references) //IL_1453: Unknown result type (might be due to invalid IL or missing references) //IL_1459: Unknown result type (might be due to invalid IL or missing references) //IL_1463: Unknown result type (might be due to invalid IL or missing references) //IL_1468: Unknown result type (might be due to invalid IL or missing references) //IL_1473: Unknown result type (might be due to invalid IL or missing references) //IL_1479: Unknown result type (might be due to invalid IL or missing references) //IL_147e: Unknown result type (might be due to invalid IL or missing references) //IL_1484: Unknown result type (might be due to invalid IL or missing references) //IL_1489: Unknown result type (might be due to invalid IL or missing references) //IL_148f: Unknown result type (might be due to invalid IL or missing references) //IL_1499: Unknown result type (might be due to invalid IL or missing references) //IL_149e: Unknown result type (might be due to invalid IL or missing references) //IL_14a4: Unknown result type (might be due to invalid IL or missing references) //IL_14a9: Unknown result type (might be due to invalid IL or missing references) //IL_14af: Unknown result type (might be due to invalid IL or missing references) //IL_14b9: Unknown result type (might be due to invalid IL or missing references) //IL_14be: Unknown result type (might be due to invalid IL or missing references) //IL_14ca: Unknown result type (might be due to invalid IL or missing references) //IL_3f70: Unknown result type (might be due to invalid IL or missing references) //IL_3f76: Unknown result type (might be due to invalid IL or missing references) //IL_3f7b: Unknown result type (might be due to invalid IL or missing references) //IL_3f81: Unknown result type (might be due to invalid IL or missing references) //IL_3f86: Unknown result type (might be due to invalid IL or missing references) //IL_3f8c: Unknown result type (might be due to invalid IL or missing references) //IL_3f96: Unknown result type (might be due to invalid IL or missing references) //IL_3f9b: Unknown result type (might be due to invalid IL or missing references) //IL_3fa1: Unknown result type (might be due to invalid IL or missing references) //IL_3fa6: Unknown result type (might be due to invalid IL or missing references) //IL_3fac: Unknown result type (might be due to invalid IL or missing references) //IL_3fb6: Unknown result type (might be due to invalid IL or missing references) //IL_3fbb: Unknown result type (might be due to invalid IL or missing references) //IL_3fc6: Unknown result type (might be due to invalid IL or missing references) //IL_3fcc: Unknown result type (might be due to invalid IL or missing references) //IL_3fd1: Unknown result type (might be due to invalid IL or missing references) //IL_3fd7: Unknown result type (might be due to invalid IL or missing references) //IL_3fdc: Unknown result type (might be due to invalid IL or missing references) //IL_3fe2: Unknown result type (might be due to invalid IL or missing references) //IL_3fec: Unknown result type (might be due to invalid IL or missing references) //IL_3ff1: Unknown result type (might be due to invalid IL or missing references) //IL_3ff7: Unknown result type (might be due to invalid IL or missing references) //IL_3ffc: Unknown result type (might be due to invalid IL or missing references) //IL_4002: Unknown result type (might be due to invalid IL or missing references) //IL_400c: Unknown result type (might be due to invalid IL or missing references) //IL_4011: Unknown result type (might be due to invalid IL or missing references) //IL_401d: Unknown result type (might be due to invalid IL or missing references) //IL_2a2a: Unknown result type (might be due to invalid IL or missing references) //IL_2a30: Unknown result type (might be due to invalid IL or missing references) //IL_2a35: Unknown result type (might be due to invalid IL or missing references) //IL_2a3b: Unknown result type (might be due to invalid IL or missing references) //IL_2a40: Unknown result type (might be due to invalid IL or missing references) //IL_2a46: Unknown result type (might be due to invalid IL or missing references) //IL_2a50: Unknown result type (might be due to invalid IL or missing references) //IL_2a55: Unknown result type (might be due to invalid IL or missing references) //IL_2a5b: Unknown result type (might be due to invalid IL or missing references) //IL_2a60: Unknown result type (might be due to invalid IL or missing references) //IL_2a66: Unknown result type (might be due to invalid IL or missing references) //IL_2a70: Unknown result type (might be due to invalid IL or missing references) //IL_2a75: Unknown result type (might be due to invalid IL or missing references) //IL_2a80: Unknown result type (might be due to invalid IL or missing references) //IL_2a86: Unknown result type (might be due to invalid IL or missing references) //IL_2a8b: Unknown result type (might be due to invalid IL or missing references) //IL_2a91: Unknown result type (might be due to invalid IL or missing references) //IL_2a96: Unknown result type (might be due to invalid IL or missing references) //IL_2a9c: Unknown result type (might be due to invalid IL or missing references) //IL_2aa6: Unknown result type (might be due to invalid IL or missing references) //IL_2aab: Unknown result type (might be due to invalid IL or missing references) //IL_2ab1: Unknown result type (might be due to invalid IL or missing references) //IL_2ab6: Unknown result type (might be due to invalid IL or missing references) //IL_2abc: Unknown result type (might be due to invalid IL or missing references) //IL_2ac6: Unknown result type (might be due to invalid IL or missing references) //IL_2acb: Unknown result type (might be due to invalid IL or missing references) //IL_2ad7: Unknown result type (might be due to invalid IL or missing references) //IL_14e4: Unknown result type (might be due to invalid IL or missing references) //IL_14ea: Unknown result type (might be due to invalid IL or missing references) //IL_14ef: Unknown result type (might be due to invalid IL or missing references) //IL_14f5: Unknown result type (might be due to invalid IL or missing references) //IL_14fa: Unknown result type (might be due to invalid IL or missing references) //IL_1500: Unknown result type (might be due to invalid IL or missing references) //IL_150a: Unknown result type (might be due to invalid IL or missing references) //IL_150f: Unknown result type (might be due to invalid IL or missing references) //IL_1515: Unknown result type (might be due to invalid IL or missing references) //IL_151a: Unknown result type (might be due to invalid IL or missing references) //IL_1520: Unknown result type (might be due to invalid IL or missing references) //IL_152a: Unknown result type (might be due to invalid IL or missing references) //IL_152f: Unknown result type (might be due to invalid IL or missing references) //IL_153a: Unknown result type (might be due to invalid IL or missing references) //IL_1540: Unknown result type (might be due to invalid IL or missing references) //IL_1545: Unknown result type (might be due to invalid IL or missing references) //IL_154b: Unknown result type (might be due to invalid IL or missing references) //IL_1550: Unknown result type (might be due to invalid IL or missing references) //IL_1556: Unknown result type (might be due to invalid IL or missing references) //IL_1560: Unknown result type (might be due to invalid IL or missing references) //IL_1565: Unknown result type (might be due to invalid IL or missing references) //IL_156b: Unknown result type (might be due to invalid IL or missing references) //IL_1570: Unknown result type (might be due to invalid IL or missing references) //IL_1576: Unknown result type (might be due to invalid IL or missing references) //IL_1580: Unknown result type (might be due to invalid IL or missing references) //IL_1585: Unknown result type (might be due to invalid IL or missing references) //IL_1591: Unknown result type (might be due to invalid IL or missing references) //IL_4037: Unknown result type (might be due to invalid IL or missing references) //IL_403d: Unknown result type (might be due to invalid IL or missing references) //IL_4042: Unknown result type (might be due to invalid IL or missing references) //IL_4048: Unknown result type (might be due to invalid IL or missing references) //IL_404d: Unknown result type (might be due to invalid IL or missing references) //IL_4053: Unknown result type (might be due to invalid IL or missing references) //IL_405d: Unknown result type (might be due to invalid IL or missing references) //IL_4062: Unknown result type (might be due to invalid IL or missing references) //IL_4068: Unknown result type (might be due to invalid IL or missing references) //IL_406d: Unknown result type (might be due to invalid IL or missing references) //IL_4073: Unknown result type (might be due to invalid IL or missing references) //IL_407d: Unknown result type (might be due to invalid IL or missing references) //IL_4082: Unknown result type (might be due to invalid IL or missing references) //IL_408d: Unknown result type (might be due to invalid IL or missing references) //IL_4093: Unknown result type (might be due to invalid IL or missing references) //IL_4098: Unknown result type (might be due to invalid IL or missing references) //IL_409e: Unknown result type (might be due to invalid IL or missing references) //IL_40a3: Unknown result type (might be due to invalid IL or missing references) //IL_40a9: Unknown result type (might be due to invalid IL or missing references) //IL_40b3: Unknown result type (might be due to invalid IL or missing references) //IL_40b8: Unknown result type (might be due to invalid IL or missing references) //IL_40be: Unknown result type (might be due to invalid IL or missing references) //IL_40c3: Unknown result type (might be due to invalid IL or missing references) //IL_40c9: Unknown result type (might be due to invalid IL or missing references) //IL_40d3: Unknown result type (might be due to invalid IL or missing references) //IL_40d8: Unknown result type (might be due to invalid IL or missing references) //IL_40e4: Unknown result type (might be due to invalid IL or missing references) //IL_2af1: Unknown result type (might be due to invalid IL or missing references) //IL_2af7: Unknown result type (might be due to invalid IL or missing references) //IL_2afc: Unknown result type (might be due to invalid IL or missing references) //IL_2b02: Unknown result type (might be due to invalid IL or missing references) //IL_2b07: Unknown result type (might be due to invalid IL or missing references) //IL_2b0d: Unknown result type (might be due to invalid IL or missing references) //IL_2b17: Unknown result type (might be due to invalid IL or missing references) //IL_2b1c: Unknown result type (might be due to invalid IL or missing references) //IL_2b22: Unknown result type (might be due to invalid IL or missing references) //IL_2b27: Unknown result type (might be due to invalid IL or missing references) //IL_2b2d: Unknown result type (might be due to invalid IL or missing references) //IL_2b37: Unknown result type (might be due to invalid IL or missing references) //IL_2b3c: Unknown result type (might be due to invalid IL or missing references) //IL_2b47: Unknown result type (might be due to invalid IL or missing references) //IL_2b4d: Unknown result type (might be due to invalid IL or missing references) //IL_2b52: Unknown result type (might be due to invalid IL or missing references) //IL_2b58: Unknown result type (might be due to invalid IL or missing references) //IL_2b5d: Unknown result type (might be due to invalid IL or missing references) //IL_2b63: Unknown result type (might be due to invalid IL or missing references) //IL_2b6d: Unknown result type (might be due to invalid IL or missing references) //IL_2b72: Unknown result type (might be due to invalid IL or missing references) //IL_2b78: Unknown result type (might be due to invalid IL or missing references) //IL_2b7d: Unknown result type (might be due to invalid IL or missing references) //IL_2b83: Unknown result type (might be due to invalid IL or missing references) //IL_2b8d: Unknown result type (might be due to invalid IL or missing references) //IL_2b92: Unknown result type (might be due to invalid IL or missing references) //IL_2b9e: Unknown result type (might be due to invalid IL or missing references) //IL_15ab: Unknown result type (might be due to invalid IL or missing references) //IL_15b1: Unknown result type (might be due to invalid IL or missing references) //IL_15b6: Unknown result type (might be due to invalid IL or missing references) //IL_15bc: Unknown result type (might be due to invalid IL or missing references) //IL_15c1: Unknown result type (might be due to invalid IL or missing references) //IL_15c7: Unknown result type (might be due to invalid IL or missing references) //IL_15d1: Unknown result type (might be due to invalid IL or missing references) //IL_15d6: Unknown result type (might be due to invalid IL or missing references) //IL_15dc: Unknown result type (might be due to invalid IL or missing references) //IL_15e1: Unknown result type (might be due to invalid IL or missing references) //IL_15e7: Unknown result type (might be due to invalid IL or missing references) //IL_15f1: Unknown result type (might be due to invalid IL or missing references) //IL_15f6: Unknown result type (might be due to invalid IL or missing references) //IL_1601: Unknown result type (might be due to invalid IL or missing references) //IL_1607: Unknown result type (might be due to invalid IL or missing references) //IL_160c: Unknown result type (might be due to invalid IL or missing references) //IL_1612: Unknown result type (might be due to invalid IL or missing references) //IL_1617: Unknown result type (might be due to invalid IL or missing references) //IL_161d: Unknown result type (might be due to invalid IL or missing references) //IL_1627: Unknown result type (might be due to invalid IL or missing references) //IL_162c: Unknown result type (might be due to invalid IL or missing references) //IL_1632: Unknown result type (might be due to invalid IL or missing references) //IL_1637: Unknown result type (might be due to invalid IL or missing references) //IL_163d: Unknown result type (might be due to invalid IL or missing references) //IL_1647: Unknown result type (might be due to invalid IL or missing references) //IL_164c: Unknown result type (might be due to invalid IL or missing references) //IL_1658: Unknown result type (might be due to invalid IL or missing references) //IL_40fe: Unknown result type (might be due to invalid IL or missing references) //IL_4104: Unknown result type (might be due to invalid IL or missing references) //IL_4109: Unknown result type (might be due to invalid IL or missing references) //IL_410f: Unknown result type (might be due to invalid IL or missing references) //IL_4114: Unknown result type (might be due to invalid IL or missing references) //IL_411a: Unknown result type (might be due to invalid IL or missing references) //IL_4124: Unknown result type (might be due to invalid IL or missing references) //IL_4129: Unknown result type (might be due to invalid IL or missing references) //IL_412f: Unknown result type (might be due to invalid IL or missing references) //IL_4134: Unknown result type (might be due to invalid IL or missing references) //IL_413a: Unknown result type (might be due to invalid IL or missing references) //IL_4144: Unknown result type (might be due to invalid IL or missing references) //IL_4149: Unknown result type (might be due to invalid IL or missing references) //IL_4154: Unknown result type (might be due to invalid IL or missing references) //IL_415a: Unknown result type (might be due to invalid IL or missing references) //IL_415f: Unknown result type (might be due to invalid IL or missing references) //IL_4165: Unknown result type (might be due to invalid IL or missing references) //IL_416a: Unknown result type (might be due to invalid IL or missing references) //IL_4170: Unknown result type (might be due to invalid IL or missing references) //IL_417a: Unknown result type (might be due to invalid IL or missing references) //IL_417f: Unknown result type (might be due to invalid IL or missing references) //IL_4185: Unknown result type (might be due to invalid IL or missing references) //IL_418a: Unknown result type (might be due to invalid IL or missing references) //IL_4190: Unknown result type (might be due to invalid IL or missing references) //IL_419a: Unknown result type (might be due to invalid IL or missing references) //IL_419f: Unknown result type (might be due to invalid IL or missing references) //IL_41ab: Unknown result type (might be due to invalid IL or missing references) //IL_2bb8: Unknown result type (might be due to invalid IL or missing references) //IL_2bbe: Unknown result type (might be due to invalid IL or missing references) //IL_2bc3: Unknown result type (might be due to invalid IL or missing references) //IL_2bc9: Unknown result type (might be due to invalid IL or missing references) //IL_2bce: Unknown result type (might be due to invalid IL or missing references) //IL_2bd4: Unknown result type (might be due to invalid IL or missing references) //IL_2bde: Unknown result type (might be due to invalid IL or missing references) //IL_2be3: Unknown result type (might be due to invalid IL or missing references) //IL_2be9: Unknown result type (might be due to invalid IL or missing references) //IL_2bee: Unknown result type (might be due to invalid IL or missing references) //IL_2bf4: Unknown result type (might be due to invalid IL or missing references) //IL_2bfe: Unknown result type (might be due to invalid IL or missing references) //IL_2c03: Unknown result type (might be due to invalid IL or missing references) //IL_2c0e: Unknown result type (might be due to invalid IL or missing references) //IL_2c14: Unknown result type (might be due to invalid IL or missing references) //IL_2c19: Unknown result type (might be due to invalid IL or missing references) //IL_2c1f: Unknown result type (might be due to invalid IL or missing references) //IL_2c24: Unknown result type (might be due to invalid IL or missing references) //IL_2c2a: Unknown result type (might be due to invalid IL or missing references) //IL_2c34: Unknown result type (might be due to invalid IL or missing references) //IL_2c39: Unknown result type (might be due to invalid IL or missing references) //IL_2c3f: Unknown result type (might be due to invalid IL or missing references) //IL_2c44: Unknown result type (might be due to invalid IL or missing references) //IL_2c4a: Unknown result type (might be due to invalid IL or missing references) //IL_2c54: Unknown result type (might be due to invalid IL or missing references) //IL_2c59: Unknown result type (might be due to invalid IL or missing references) //IL_2c65: Unknown result type (might be due to invalid IL or missing references) //IL_41c5: Unknown result type (might be due to invalid IL or missing references) //IL_41cb: Unknown result type (might be due to invalid IL or missing references) //IL_41d0: Unknown result type (might be due to invalid IL or missing references) //IL_41d6: Unknown result type (might be due to invalid IL or missing references) //IL_41db: Unknown result type (might be due to invalid IL or missing references) //IL_41e1: Unknown result type (might be due to invalid IL or missing references) //IL_41eb: Unknown result type (might be due to invalid IL or missing references) //IL_41f0: Unknown result type (might be due to invalid IL or missing references) //IL_41f6: Unknown result type (might be due to invalid IL or missing references) //IL_41fb: Unknown result type (might be due to invalid IL or missing references) //IL_4201: Unknown result type (might be due to invalid IL or missing references) //IL_420b: Unknown result type (might be due to invalid IL or missing references) //IL_4210: Unknown result type (might be due to invalid IL or missing references) //IL_421b: Unknown result type (might be due to invalid IL or missing references) //IL_4221: Unknown result type (might be due to invalid IL or missing references) //IL_4226: Unknown result type (might be due to invalid IL or missing references) //IL_422c: Unknown result type (might be due to invalid IL or missing references) //IL_4231: Unknown result type (might be due to invalid IL or missing references) //IL_4237: Unknown result type (might be due to invalid IL or missing references) //IL_4241: Unknown result type (might be due to invalid IL or missing references) //IL_4246: Unknown result type (might be due to invalid IL or missing references) //IL_424c: Unknown result type (might be due to invalid IL or missing references) //IL_4251: Unknown result type (might be due to invalid IL or missing references) //IL_4257: Unknown result type (might be due to invalid IL or missing references) //IL_4261: Unknown result type (might be due to invalid IL or missing references) //IL_4266: Unknown result type (might be due to invalid IL or missing references) //IL_4272: Unknown result type (might be due to invalid IL or missing references) //IL_2c7f: Unknown result type (might be due to invalid IL or missing references) //IL_2c85: Unknown result type (might be due to invalid IL or missing references) //IL_2c8a: Unknown result type (might be due to invalid IL or missing references) //IL_2c90: Unknown result type (might be due to invalid IL or missing references) //IL_2c95: Unknown result type (might be due to invalid IL or missing references) //IL_2c9b: Unknown result type (might be due to invalid IL or missing references) //IL_2ca5: Unknown result type (might be due to invalid IL or missing references) //IL_2caa: Unknown result type (might be due to invalid IL or missing references) //IL_2cb0: Unknown result type (might be due to invalid IL or missing references) //IL_2cb5: Unknown result type (might be due to invalid IL or missing references) //IL_2cbb: Unknown result type (might be due to invalid IL or missing references) //IL_2cc5: Unknown result type (might be due to invalid IL or missing references) //IL_2cca: Unknown result type (might be due to invalid IL or missing references) //IL_2cd5: Unknown result type (might be due to invalid IL or missing references) //IL_2cdb: Unknown result type (might be due to invalid IL or missing references) //IL_2ce0: Unknown result type (might be due to invalid IL or missing references) //IL_2ce6: Unknown result type (might be due to invalid IL or missing references) //IL_2ceb: Unknown result type (might be due to invalid IL or missing references) //IL_2cf1: Unknown result type (might be due to invalid IL or missing references) //IL_2cfb: Unknown result type (might be due to invalid IL or missing references) //IL_2d00: Unknown result type (might be due to invalid IL or missing references) //IL_2d06: Unknown result type (might be due to invalid IL or missing references) //IL_2d0b: Unknown result type (might be due to invalid IL or missing references) //IL_2d11: Unknown result type (might be due to invalid IL or missing references) //IL_2d1b: Unknown result type (might be due to invalid IL or missing references) //IL_2d20: Unknown result type (might be due to invalid IL or missing references) //IL_2d2c: Unknown result type (might be due to invalid IL or missing references) //IL_428c: Unknown result type (might be due to invalid IL or missing references) //IL_4292: Unknown result type (might be due to invalid IL or missing references) //IL_4297: Unknown result type (might be due to invalid IL or missing references) //IL_429d: Unknown result type (might be due to invalid IL or missing references) //IL_42a2: Unknown result type (might be due to invalid IL or missing references) //IL_42a8: Unknown result type (might be due to invalid IL or missing references) //IL_42b2: Unknown result type (might be due to invalid IL or missing references) //IL_42b7: Unknown result type (might be due to invalid IL or missing references) //IL_42bd: Unknown result type (might be due to invalid IL or missing references) //IL_42c2: Unknown result type (might be due to invalid IL or missing references) //IL_42c8: Unknown result type (might be due to invalid IL or missing references) //IL_42d2: Unknown result type (might be due to invalid IL or missing references) //IL_42d7: Unknown result type (might be due to invalid IL or missing references) //IL_42e2: Unknown result type (might be due to invalid IL or missing references) //IL_42e8: Unknown result type (might be due to invalid IL or missing references) //IL_42ed: Unknown result type (might be due to invalid IL or missing references) //IL_42f3: Unknown result type (might be due to invalid IL or missing references) //IL_42f8: Unknown result type (might be due to invalid IL or missing references) //IL_42fe: Unknown result type (might be due to invalid IL or missing references) //IL_4308: Unknown result type (might be due to invalid IL or missing references) //IL_430d: Unknown result type (might be due to invalid IL or missing references) //IL_4313: Unknown result type (might be due to invalid IL or missing references) //IL_4318: Unknown result type (might be due to invalid IL or missing references) //IL_431e: Unknown result type (might be due to invalid IL or missing references) //IL_4328: Unknown result type (might be due to invalid IL or missing references) //IL_432d: Unknown result type (might be due to invalid IL or missing references) //IL_4339: Unknown result type (might be due to invalid IL or missing references) //IL_4353: Unknown result type (might be due to invalid IL or missing references) //IL_4359: Unknown result type (might be due to invalid IL or missing references) //IL_435e: Unknown result type (might be due to invalid IL or missing references) //IL_4364: Unknown result type (might be due to invalid IL or missing references) //IL_4369: Unknown result type (might be due to invalid IL or missing references) //IL_436f: Unknown result type (might be due to invalid IL or missing references) //IL_4379: Unknown result type (might be due to invalid IL or missing references) //IL_437e: Unknown result type (might be due to invalid IL or missing references) //IL_4384: Unknown result type (might be due to invalid IL or missing references) //IL_4389: Unknown result type (might be due to invalid IL or missing references) //IL_438f: Unknown result type (might be due to invalid IL or missing references) //IL_4399: Unknown result type (might be due to invalid IL or missing references) //IL_439e: Unknown result type (might be due to invalid IL or missing references) //IL_43a9: Unknown result type (might be due to invalid IL or missing references) //IL_43af: Unknown result type (might be due to invalid IL or missing references) //IL_43b4: Unknown result type (might be due to invalid IL or missing references) //IL_43ba: Unknown result type (might be due to invalid IL or missing references) //IL_43bf: Unknown result type (might be due to invalid IL or missing references) //IL_43c5: Unknown result type (might be due to invalid IL or missing references) //IL_43cf: Unknown result type (might be due to invalid IL or missing references) //IL_43d4: Unknown result type (might be due to invalid IL or missing references) //IL_43da: Unknown result type (might be due to invalid IL or missing references) //IL_43df: Unknown result type (might be due to invalid IL or missing references) //IL_43e5: Unknown result type (might be due to invalid IL or missing references) //IL_43ef: Unknown result type (might be due to invalid IL or missing references) //IL_43f4: Unknown result type (might be due to invalid IL or missing references) //IL_4400: Unknown result type (might be due to invalid IL or missing references) if (switching || !ledgeSwitchingDetectors.allowLedgeSwitching || !grabbedOn) { return; } if (!Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + minDistFromGroundHeight2 - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + rightWidth * 2.128f + firstSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + rightWidth * 2.128f + firstSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + rightWidth * 2.128f + firstSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + rightWidth * 2.128f + firstSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + ledgeSwitchFirstWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchFirstWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + ledgeSwitchFirstWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchFirstWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 0.375f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 0.75f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 1.125f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !r1SecondBackSurfaceDetectorsHit && !r1SecondBackHit && r1FirstBackSurfaceDetectorsHit && r1FirstBackHit) { r1FirstBackTimer += 0.01f; if (r1FirstBackTimer > 0.1f || rotTimer > 0f) { r1FirstBackClear = true; } else { r1FirstBackClear = false; } } else { r1FirstBackTimer = 0f; r1FirstBackClear = false; } if (!Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + minDistFromGroundHeight2 - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + rightWidth * 2.128f + secondSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + rightWidth * 2.128f + secondSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + rightWidth * 2.128f + secondSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + rightWidth * 2.128f + secondSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + ledgeSwitchSecondWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchSecondWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + ledgeSwitchSecondWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchSecondWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 0.375f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 0.75f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 1.125f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !r2SecondBackSurfaceDetectorsHit && !r2SecondBackHit && r2FirstBackSurfaceDetectorsHit && r2FirstBackHit) { r2FirstBackTimer += 0.01f; if (r2FirstBackTimer > 0.1f || rotTimer > 0f) { r2FirstBackClear = true; } else { r2FirstBackClear = false; } } else { r2FirstBackTimer = 0f; r2FirstBackClear = false; } if (!Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + minDistFromGroundHeight2 - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + rightWidth * 2.128f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + rightWidth * 2.128f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + rightWidth * 2.128f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 + rightWidth * 2.128f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + ledgeSwitchThirdWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchThirdWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + ledgeSwitchThirdWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + ledgeSwitchThirdWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 0.375f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 0.75f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 1.125f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !r3SecondBackSurfaceDetectorsHit && !r3SecondBackHit && r3FirstBackSurfaceDetectorsHit && r3FirstBackHit) { r3FirstBackTimer += 0.01f; if (r3FirstBackTimer > 0.1f || rotTimer > 0f) { r3FirstBackClear = true; } else { r3FirstBackClear = false; } } else { r3FirstBackTimer = 0f; r3FirstBackClear = false; } } private void LedgeSwitchingClearSecondBackRight() { //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_0054: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0069: Unknown result type (might be due to invalid IL or missing references) //IL_006e: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_0084: Unknown result type (might be due to invalid IL or missing references) //IL_008f: Unknown result type (might be due to invalid IL or missing references) //IL_0095: Unknown result type (might be due to invalid IL or missing references) //IL_009a: Unknown result type (might be due to invalid IL or missing references) //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_00aa: Unknown result type (might be due to invalid IL or missing references) //IL_00af: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) //IL_00ba: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00ca: Unknown result type (might be due to invalid IL or missing references) //IL_00cf: Unknown result type (might be due to invalid IL or missing references) //IL_00d5: Unknown result type (might be due to invalid IL or missing references) //IL_00df: Unknown result type (might be due to invalid IL or missing references) //IL_00e4: Unknown result type (might be due to invalid IL or missing references) //IL_00ea: Unknown result type (might be due to invalid IL or missing references) //IL_00ef: Unknown result type (might be due to invalid IL or missing references) //IL_00f5: Unknown result type (might be due to invalid IL or missing references) //IL_00fa: Unknown result type (might be due to invalid IL or missing references) //IL_0106: Unknown result type (might be due to invalid IL or missing references) //IL_0120: Unknown result type (might be due to invalid IL or missing references) //IL_0126: Unknown result type (might be due to invalid IL or missing references) //IL_012b: Unknown result type (might be due to invalid IL or missing references) //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_0136: Unknown result type (might be due to invalid IL or missing references) //IL_013c: Unknown result type (might be due to invalid IL or missing references) //IL_0146: Unknown result type (might be due to invalid IL or missing references) //IL_014b: Unknown result type (might be due to invalid IL or missing references) //IL_0151: Unknown result type (might be due to invalid IL or missing references) //IL_0156: Unknown result type (might be due to invalid IL or missing references) //IL_015c: Unknown result type (might be due to invalid IL or missing references) //IL_0166: Unknown result type (might be due to invalid IL or missing references) //IL_016b: Unknown result type (might be due to invalid IL or missing references) //IL_0171: Unknown result type (might be due to invalid IL or missing references) //IL_017b: Unknown result type (might be due to invalid IL or missing references) //IL_0180: Unknown result type (might be due to invalid IL or missing references) //IL_0186: Unknown result type (might be due to invalid IL or missing references) //IL_018b: Unknown result type (might be due to invalid IL or missing references) //IL_0191: Unknown result type (might be due to invalid IL or missing references) //IL_0196: Unknown result type (might be due to invalid IL or missing references) //IL_01a1: Unknown result type (might be due to invalid IL or missing references) //IL_01a7: Unknown result type (might be due to invalid IL or missing references) //IL_01ac: Unknown result type (might be due to invalid IL or missing references) //IL_01b2: Unknown result type (might be due to invalid IL or missing references) //IL_01bc: Unknown result type (might be due to invalid IL or missing references) //IL_01c1: Unknown result type (might be due to invalid IL or missing references) //IL_01c7: Unknown result type (might be due to invalid IL or missing references) //IL_01d1: Unknown result type (might be due to invalid IL or missing references) //IL_01d6: Unknown result type (might be due to invalid IL or missing references) //IL_01dc: Unknown result type (might be due to invalid IL or missing references) //IL_01e1: Unknown result type (might be due to invalid IL or missing references) //IL_01e7: Unknown result type (might be due to invalid IL or missing references) //IL_01ec: Unknown result type (might be due to invalid IL or missing references) //IL_01f2: Unknown result type (might be due to invalid IL or missing references) //IL_01fc: Unknown result type (might be due to invalid IL or missing references) //IL_0201: Unknown result type (might be due to invalid IL or missing references) //IL_0207: Unknown result type (might be due to invalid IL or missing references) //IL_0211: Unknown result type (might be due to invalid IL or missing references) //IL_0216: Unknown result type (might be due to invalid IL or missing references) //IL_021c: Unknown result type (might be due to invalid IL or missing references) //IL_0221: Unknown result type (might be due to invalid IL or missing references) //IL_0227: Unknown result type (might be due to invalid IL or missing references) //IL_022c: Unknown result type (might be due to invalid IL or missing references) //IL_0238: Unknown result type (might be due to invalid IL or missing references) //IL_17aa: Unknown result type (might be due to invalid IL or missing references) //IL_17b0: Unknown result type (might be due to invalid IL or missing references) //IL_17b5: Unknown result type (might be due to invalid IL or missing references) //IL_17bb: Unknown result type (might be due to invalid IL or missing references) //IL_17c0: Unknown result type (might be due to invalid IL or missing references) //IL_17c6: Unknown result type (might be due to invalid IL or missing references) //IL_17d0: Unknown result type (might be due to invalid IL or missing references) //IL_17d5: Unknown result type (might be due to invalid IL or missing references) //IL_17db: Unknown result type (might be due to invalid IL or missing references) //IL_17e5: Unknown result type (might be due to invalid IL or missing references) //IL_17ea: Unknown result type (might be due to invalid IL or missing references) //IL_17f0: Unknown result type (might be due to invalid IL or missing references) //IL_17f5: Unknown result type (might be due to invalid IL or missing references) //IL_17fb: Unknown result type (might be due to invalid IL or missing references) //IL_1800: Unknown result type (might be due to invalid IL or missing references) //IL_180b: Unknown result type (might be due to invalid IL or missing references) //IL_1811: Unknown result type (might be due to invalid IL or missing references) //IL_1816: Unknown result type (might be due to invalid IL or missing references) //IL_181c: Unknown result type (might be due to invalid IL or missing references) //IL_1826: Unknown result type (might be due to invalid IL or missing references) //IL_182b: Unknown result type (might be due to invalid IL or missing references) //IL_1831: Unknown result type (might be due to invalid IL or missing references) //IL_1836: Unknown result type (might be due to invalid IL or missing references) //IL_183c: Unknown result type (might be due to invalid IL or missing references) //IL_1846: Unknown result type (might be due to invalid IL or missing references) //IL_184b: Unknown result type (might be due to invalid IL or missing references) //IL_1851: Unknown result type (might be due to invalid IL or missing references) //IL_185b: Unknown result type (might be due to invalid IL or missing references) //IL_1860: Unknown result type (might be due to invalid IL or missing references) //IL_1866: Unknown result type (might be due to invalid IL or missing references) //IL_186b: Unknown result type (might be due to invalid IL or missing references) //IL_1871: Unknown result type (might be due to invalid IL or missing references) //IL_1876: Unknown result type (might be due to invalid IL or missing references) //IL_1882: Unknown result type (might be due to invalid IL or missing references) //IL_0252: Unknown result type (might be due to invalid IL or missing references) //IL_0258: Unknown result type (might be due to invalid IL or missing references) //IL_025d: Unknown result type (might be due to invalid IL or missing references) //IL_0263: Unknown result type (might be due to invalid IL or missing references) //IL_0268: Unknown result type (might be due to invalid IL or missing references) //IL_026e: Unknown result type (might be due to invalid IL or missing references) //IL_0278: Unknown result type (might be due to invalid IL or missing references) //IL_027d: Unknown result type (might be due to invalid IL or missing references) //IL_0283: Unknown result type (might be due to invalid IL or missing references) //IL_0288: Unknown result type (might be due to invalid IL or missing references) //IL_028e: Unknown result type (might be due to invalid IL or missing references) //IL_0298: Unknown result type (might be due to invalid IL or missing references) //IL_029d: Unknown result type (might be due to invalid IL or missing references) //IL_02a3: Unknown result type (might be due to invalid IL or missing references) //IL_02ad: Unknown result type (might be due to invalid IL or missing references) //IL_02b2: Unknown result type (might be due to invalid IL or missing references) //IL_02b8: Unknown result type (might be due to invalid IL or missing references) //IL_02bd: Unknown result type (might be due to invalid IL or missing references) //IL_02c3: Unknown result type (might be due to invalid IL or missing references) //IL_02c8: Unknown result type (might be due to invalid IL or missing references) //IL_02d3: Unknown result type (might be due to invalid IL or missing references) //IL_02d9: Unknown result type (might be due to invalid IL or missing references) //IL_02de: Unknown result type (might be due to invalid IL or missing references) //IL_02e4: Unknown result type (might be due to invalid IL or missing references) //IL_02ee: Unknown result type (might be due to invalid IL or missing references) //IL_02f3: Unknown result type (might be due to invalid IL or missing references) //IL_02f9: Unknown result type (might be due to invalid IL or missing references) //IL_0303: Unknown result type (might be due to invalid IL or missing references) //IL_0308: Unknown result type (might be due to invalid IL or missing references) //IL_030e: Unknown result type (might be due to invalid IL or missing references) //IL_0313: Unknown result type (might be due to invalid IL or missing references) //IL_0319: Unknown result type (might be due to invalid IL or missing references) //IL_031e: Unknown result type (might be due to invalid IL or missing references) //IL_0324: Unknown result type (might be due to invalid IL or missing references) //IL_032e: Unknown result type (might be due to invalid IL or missing references) //IL_0333: Unknown result type (might be due to invalid IL or missing references) //IL_0339: Unknown result type (might be due to invalid IL or missing references) //IL_0343: Unknown result type (might be due to invalid IL or missing references) //IL_0348: Unknown result type (might be due to invalid IL or missing references) //IL_034e: Unknown result type (might be due to invalid IL or missing references) //IL_0353: Unknown result type (might be due to invalid IL or missing references) //IL_0359: Unknown result type (might be due to invalid IL or missing references) //IL_035e: Unknown result type (might be due to invalid IL or missing references) //IL_036a: Unknown result type (might be due to invalid IL or missing references) //IL_189c: Unknown result type (might be due to invalid IL or missing references) //IL_18a2: Unknown result type (might be due to invalid IL or missing references) //IL_18a7: Unknown result type (might be due to invalid IL or missing references) //IL_18ad: Unknown result type (might be due to invalid IL or missing references) //IL_18b2: Unknown result type (might be due to invalid IL or missing references) //IL_18b8: Unknown result type (might be due to invalid IL or missing references) //IL_18c2: Unknown result type (might be due to invalid IL or missing references) //IL_18c7: Unknown result type (might be due to invalid IL or missing references) //IL_18cd: Unknown result type (might be due to invalid IL or missing references) //IL_18d2: Unknown result type (might be due to invalid IL or missing references) //IL_18d8: Unknown result type (might be due to invalid IL or missing references) //IL_18e2: Unknown result type (might be due to invalid IL or missing references) //IL_18e7: Unknown result type (might be due to invalid IL or missing references) //IL_18ed: Unknown result type (might be due to invalid IL or missing references) //IL_18f7: Unknown result type (might be due to invalid IL or missing references) //IL_18fc: Unknown result type (might be due to invalid IL or missing references) //IL_1902: Unknown result type (might be due to invalid IL or missing references) //IL_1907: Unknown result type (might be due to invalid IL or missing references) //IL_190d: Unknown result type (might be due to invalid IL or missing references) //IL_1912: Unknown result type (might be due to invalid IL or missing references) //IL_191d: Unknown result type (might be due to invalid IL or missing references) //IL_1923: Unknown result type (might be due to invalid IL or missing references) //IL_1928: Unknown result type (might be due to invalid IL or missing references) //IL_192e: Unknown result type (might be due to invalid IL or missing references) //IL_1938: Unknown result type (might be due to invalid IL or missing references) //IL_193d: Unknown result type (might be due to invalid IL or missing references) //IL_1943: Unknown result type (might be due to invalid IL or missing references) //IL_194d: Unknown result type (might be due to invalid IL or missing references) //IL_1952: Unknown result type (might be due to invalid IL or missing references) //IL_1958: Unknown result type (might be due to invalid IL or missing references) //IL_195d: Unknown result type (might be due to invalid IL or missing references) //IL_1963: Unknown result type (might be due to invalid IL or missing references) //IL_1968: Unknown result type (might be due to invalid IL or missing references) //IL_196e: Unknown result type (might be due to invalid IL or missing references) //IL_1978: Unknown result type (might be due to invalid IL or missing references) //IL_197d: Unknown result type (might be due to invalid IL or missing references) //IL_1983: Unknown result type (might be due to invalid IL or missing references) //IL_198d: Unknown result type (might be due to invalid IL or missing references) //IL_1992: Unknown result type (might be due to invalid IL or missing references) //IL_1998: Unknown result type (might be due to invalid IL or missing references) //IL_199d: Unknown result type (might be due to invalid IL or missing references) //IL_19a3: Unknown result type (might be due to invalid IL or missing references) //IL_19a8: Unknown result type (might be due to invalid IL or missing references) //IL_19b4: Unknown result type (might be due to invalid IL or missing references) //IL_0384: Unknown result type (might be due to invalid IL or missing references) //IL_038a: Unknown result type (might be due to invalid IL or missing references) //IL_038f: Unknown result type (might be due to invalid IL or missing references) //IL_039a: Unknown result type (might be due to invalid IL or missing references) //IL_03a0: Unknown result type (might be due to invalid IL or missing references) //IL_03a5: Unknown result type (might be due to invalid IL or missing references) //IL_03ab: Unknown result type (might be due to invalid IL or missing references) //IL_03b5: Unknown result type (might be due to invalid IL or missing references) //IL_03ba: Unknown result type (might be due to invalid IL or missing references) //IL_03c0: Unknown result type (might be due to invalid IL or missing references) //IL_03ca: Unknown result type (might be due to invalid IL or missing references) //IL_03cf: Unknown result type (might be due to invalid IL or missing references) //IL_03d5: Unknown result type (might be due to invalid IL or missing references) //IL_03da: Unknown result type (might be due to invalid IL or missing references) //IL_03e0: Unknown result type (might be due to invalid IL or missing references) //IL_03e5: Unknown result type (might be due to invalid IL or missing references) //IL_03fd: Unknown result type (might be due to invalid IL or missing references) //IL_0402: Unknown result type (might be due to invalid IL or missing references) //IL_041a: Unknown result type (might be due to invalid IL or missing references) //IL_0420: Unknown result type (might be due to invalid IL or missing references) //IL_042a: Unknown result type (might be due to invalid IL or missing references) //IL_042f: Unknown result type (might be due to invalid IL or missing references) //IL_0435: Unknown result type (might be due to invalid IL or missing references) //IL_043a: Unknown result type (might be due to invalid IL or missing references) //IL_0445: Unknown result type (might be due to invalid IL or missing references) //IL_044b: Unknown result type (might be due to invalid IL or missing references) //IL_0450: Unknown result type (might be due to invalid IL or missing references) //IL_045b: Unknown result type (might be due to invalid IL or missing references) //IL_0461: Unknown result type (might be due to invalid IL or missing references) //IL_0466: Unknown result type (might be due to invalid IL or missing references) //IL_046c: Unknown result type (might be due to invalid IL or missing references) //IL_0476: Unknown result type (might be due to invalid IL or missing references) //IL_047b: Unknown result type (might be due to invalid IL or missing references) //IL_0481: Unknown result type (might be due to invalid IL or missing references) //IL_048b: Unknown result type (might be due to invalid IL or missing references) //IL_0490: Unknown result type (might be due to invalid IL or missing references) //IL_0496: Unknown result type (might be due to invalid IL or missing references) //IL_049b: Unknown result type (might be due to invalid IL or missing references) //IL_04a1: Unknown result type (might be due to invalid IL or missing references) //IL_04a6: Unknown result type (might be due to invalid IL or missing references) //IL_04be: Unknown result type (might be due to invalid IL or missing references) //IL_04c3: Unknown result type (might be due to invalid IL or missing references) //IL_04db: Unknown result type (might be due to invalid IL or missing references) //IL_04e1: Unknown result type (might be due to invalid IL or missing references) //IL_04eb: Unknown result type (might be due to invalid IL or missing references) //IL_04f0: Unknown result type (might be due to invalid IL or missing references) //IL_04f6: Unknown result type (might be due to invalid IL or missing references) //IL_04fb: Unknown result type (might be due to invalid IL or missing references) //IL_0507: Unknown result type (might be due to invalid IL or missing references) //IL_2f26: Unknown result type (might be due to invalid IL or missing references) //IL_2f2c: Unknown result type (might be due to invalid IL or missing references) //IL_2f31: Unknown result type (might be due to invalid IL or missing references) //IL_2f37: Unknown result type (might be due to invalid IL or missing references) //IL_2f3c: Unknown result type (might be due to invalid IL or missing references) //IL_2f42: Unknown result type (might be due to invalid IL or missing references) //IL_2f4c: Unknown result type (might be due to invalid IL or missing references) //IL_2f51: Unknown result type (might be due to invalid IL or missing references) //IL_2f57: Unknown result type (might be due to invalid IL or missing references) //IL_2f61: Unknown result type (might be due to invalid IL or missing references) //IL_2f66: Unknown result type (might be due to invalid IL or missing references) //IL_2f6c: Unknown result type (might be due to invalid IL or missing references) //IL_2f71: Unknown result type (might be due to invalid IL or missing references) //IL_2f77: Unknown result type (might be due to invalid IL or missing references) //IL_2f7c: Unknown result type (might be due to invalid IL or missing references) //IL_2f87: Unknown result type (might be due to invalid IL or missing references) //IL_2f8d: Unknown result type (might be due to invalid IL or missing references) //IL_2f92: Unknown result type (might be due to invalid IL or missing references) //IL_2f98: Unknown result type (might be due to invalid IL or missing references) //IL_2fa2: Unknown result type (might be due to invalid IL or missing references) //IL_2fa7: Unknown result type (might be due to invalid IL or missing references) //IL_2fad: Unknown result type (might be due to invalid IL or missing references) //IL_2fb2: Unknown result type (might be due to invalid IL or missing references) //IL_2fb8: Unknown result type (might be due to invalid IL or missing references) //IL_2fc2: Unknown result type (might be due to invalid IL or missing references) //IL_2fc7: Unknown result type (might be due to invalid IL or missing references) //IL_2fcd: Unknown result type (might be due to invalid IL or missing references) //IL_2fd7: Unknown result type (might be due to invalid IL or missing references) //IL_2fdc: Unknown result type (might be due to invalid IL or missing references) //IL_2fe2: Unknown result type (might be due to invalid IL or missing references) //IL_2fe7: Unknown result type (might be due to invalid IL or missing references) //IL_2fed: Unknown result type (might be due to invalid IL or missing references) //IL_2ff2: Unknown result type (might be due to invalid IL or missing references) //IL_2ffe: Unknown result type (might be due to invalid IL or missing references) //IL_19ce: Unknown result type (might be due to invalid IL or missing references) //IL_19d4: Unknown result type (might be due to invalid IL or missing references) //IL_19d9: Unknown result type (might be due to invalid IL or missing references) //IL_19df: Unknown result type (might be due to invalid IL or missing references) //IL_19e4: Unknown result type (might be due to invalid IL or missing references) //IL_19ea: Unknown result type (might be due to invalid IL or missing references) //IL_19f4: Unknown result type (might be due to invalid IL or missing references) //IL_19f9: Unknown result type (might be due to invalid IL or missing references) //IL_19ff: Unknown result type (might be due to invalid IL or missing references) //IL_1a04: Unknown result type (might be due to invalid IL or missing references) //IL_1a0a: Unknown result type (might be due to invalid IL or missing references) //IL_1a14: Unknown result type (might be due to invalid IL or missing references) //IL_1a19: Unknown result type (might be due to invalid IL or missing references) //IL_1a1f: Unknown result type (might be due to invalid IL or missing references) //IL_1a29: Unknown result type (might be due to invalid IL or missing references) //IL_1a2e: Unknown result type (might be due to invalid IL or missing references) //IL_1a34: Unknown result type (might be due to invalid IL or missing references) //IL_1a39: Unknown result type (might be due to invalid IL or missing references) //IL_1a3f: Unknown result type (might be due to invalid IL or missing references) //IL_1a44: Unknown result type (might be due to invalid IL or missing references) //IL_1a4f: Unknown result type (might be due to invalid IL or missing references) //IL_1a55: Unknown result type (might be due to invalid IL or missing references) //IL_1a5a: Unknown result type (might be due to invalid IL or missing references) //IL_1a60: Unknown result type (might be due to invalid IL or missing references) //IL_1a6a: Unknown result type (might be due to invalid IL or missing references) //IL_1a6f: Unknown result type (might be due to invalid IL or missing references) //IL_1a75: Unknown result type (might be due to invalid IL or missing references) //IL_1a7f: Unknown result type (might be due to invalid IL or missing references) //IL_1a84: Unknown result type (might be due to invalid IL or missing references) //IL_1a8a: Unknown result type (might be due to invalid IL or missing references) //IL_1a8f: Unknown result type (might be due to invalid IL or missing references) //IL_1a95: Unknown result type (might be due to invalid IL or missing references) //IL_1a9a: Unknown result type (might be due to invalid IL or missing references) //IL_1aa0: Unknown result type (might be due to invalid IL or missing references) //IL_1aaa: Unknown result type (might be due to invalid IL or missing references) //IL_1aaf: Unknown result type (might be due to invalid IL or missing references) //IL_1ab5: Unknown result type (might be due to invalid IL or missing references) //IL_1abf: Unknown result type (might be due to invalid IL or missing references) //IL_1ac4: Unknown result type (might be due to invalid IL or missing references) //IL_1aca: Unknown result type (might be due to invalid IL or missing references) //IL_1acf: Unknown result type (might be due to invalid IL or missing references) //IL_1ad5: Unknown result type (might be due to invalid IL or missing references) //IL_1ada: Unknown result type (might be due to invalid IL or missing references) //IL_1ae6: Unknown result type (might be due to invalid IL or missing references) //IL_0521: Unknown result type (might be due to invalid IL or missing references) //IL_0527: Unknown result type (might be due to invalid IL or missing references) //IL_052c: Unknown result type (might be due to invalid IL or missing references) //IL_0537: Unknown result type (might be due to invalid IL or missing references) //IL_053d: Unknown result type (might be due to invalid IL or missing references) //IL_0542: Unknown result type (might be due to invalid IL or missing references) //IL_0548: Unknown result type (might be due to invalid IL or missing references) //IL_0552: Unknown result type (might be due to invalid IL or missing references) //IL_0557: Unknown result type (might be due to invalid IL or missing references) //IL_055d: Unknown result type (might be due to invalid IL or missing references) //IL_0567: Unknown result type (might be due to invalid IL or missing references) //IL_056c: Unknown result type (might be due to invalid IL or missing references) //IL_0572: Unknown result type (might be due to invalid IL or missing references) //IL_0577: Unknown result type (might be due to invalid IL or missing references) //IL_057d: Unknown result type (might be due to invalid IL or missing references) //IL_0582: Unknown result type (might be due to invalid IL or missing references) //IL_059a: Unknown result type (might be due to invalid IL or missing references) //IL_059f: Unknown result type (might be due to invalid IL or missing references) //IL_05b7: Unknown result type (might be due to invalid IL or missing references) //IL_05bd: Unknown result type (might be due to invalid IL or missing references) //IL_05c7: Unknown result type (might be due to invalid IL or missing references) //IL_05cc: Unknown result type (might be due to invalid IL or missing references) //IL_05d2: Unknown result type (might be due to invalid IL or missing references) //IL_05d7: Unknown result type (might be due to invalid IL or missing references) //IL_05e2: Unknown result type (might be due to invalid IL or missing references) //IL_05e8: Unknown result type (might be due to invalid IL or missing references) //IL_05ed: Unknown result type (might be due to invalid IL or missing references) //IL_05f8: Unknown result type (might be due to invalid IL or missing references) //IL_05fe: Unknown result type (might be due to invalid IL or missing references) //IL_0603: Unknown result type (might be due to invalid IL or missing references) //IL_0609: Unknown result type (might be due to invalid IL or missing references) //IL_0613: Unknown result type (might be due to invalid IL or missing references) //IL_0618: Unknown result type (might be due to invalid IL or missing references) //IL_061e: Unknown result type (might be due to invalid IL or missing references) //IL_0628: Unknown result type (might be due to invalid IL or missing references) //IL_062d: Unknown result type (might be due to invalid IL or missing references) //IL_0633: Unknown result type (might be due to invalid IL or missing references) //IL_0638: Unknown result type (might be due to invalid IL or missing references) //IL_063e: Unknown result type (might be due to invalid IL or missing references) //IL_0643: Unknown result type (might be due to invalid IL or missing references) //IL_065b: Unknown result type (might be due to invalid IL or missing references) //IL_0660: Unknown result type (might be due to invalid IL or missing references) //IL_0678: Unknown result type (might be due to invalid IL or missing references) //IL_067e: Unknown result type (might be due to invalid IL or missing references) //IL_0688: Unknown result type (might be due to invalid IL or missing references) //IL_068d: Unknown result type (might be due to invalid IL or missing references) //IL_0693: Unknown result type (might be due to invalid IL or missing references) //IL_0698: Unknown result type (might be due to invalid IL or missing references) //IL_06a4: Unknown result type (might be due to invalid IL or missing references) //IL_3018: Unknown result type (might be due to invalid IL or missing references) //IL_301e: Unknown result type (might be due to invalid IL or missing references) //IL_3023: Unknown result type (might be due to invalid IL or missing references) //IL_3029: Unknown result type (might be due to invalid IL or missing references) //IL_302e: Unknown result type (might be due to invalid IL or missing references) //IL_3034: Unknown result type (might be due to invalid IL or missing references) //IL_303e: Unknown result type (might be due to invalid IL or missing references) //IL_3043: Unknown result type (might be due to invalid IL or missing references) //IL_3049: Unknown result type (might be due to invalid IL or missing references) //IL_304e: Unknown result type (might be due to invalid IL or missing references) //IL_3054: Unknown result type (might be due to invalid IL or missing references) //IL_305e: Unknown result type (might be due to invalid IL or missing references) //IL_3063: Unknown result type (might be due to invalid IL or missing references) //IL_3069: Unknown result type (might be due to invalid IL or missing references) //IL_3073: Unknown result type (might be due to invalid IL or missing references) //IL_3078: Unknown result type (might be due to invalid IL or missing references) //IL_307e: Unknown result type (might be due to invalid IL or missing references) //IL_3083: Unknown result type (might be due to invalid IL or missing references) //IL_3089: Unknown result type (might be due to invalid IL or missing references) //IL_308e: Unknown result type (might be due to invalid IL or missing references) //IL_3099: Unknown result type (might be due to invalid IL or missing references) //IL_309f: Unknown result type (might be due to invalid IL or missing references) //IL_30a4: Unknown result type (might be due to invalid IL or missing references) //IL_30aa: Unknown result type (might be due to invalid IL or missing references) //IL_30b4: Unknown result type (might be due to invalid IL or missing references) //IL_30b9: Unknown result type (might be due to invalid IL or missing references) //IL_30bf: Unknown result type (might be due to invalid IL or missing references) //IL_30c9: Unknown result type (might be due to invalid IL or missing references) //IL_30ce: Unknown result type (might be due to invalid IL or missing references) //IL_30d4: Unknown result type (might be due to invalid IL or missing references) //IL_30d9: Unknown result type (might be due to invalid IL or missing references) //IL_30df: Unknown result type (might be due to invalid IL or missing references) //IL_30e4: Unknown result type (might be due to invalid IL or missing references) //IL_30ea: Unknown result type (might be due to invalid IL or missing references) //IL_30f4: Unknown result type (might be due to invalid IL or missing references) //IL_30f9: Unknown result type (might be due to invalid IL or missing references) //IL_30ff: Unknown result type (might be due to invalid IL or missing references) //IL_3109: Unknown result type (might be due to invalid IL or missing references) //IL_310e: Unknown result type (might be due to invalid IL or missing references) //IL_3114: Unknown result type (might be due to invalid IL or missing references) //IL_3119: Unknown result type (might be due to invalid IL or missing references) //IL_311f: Unknown result type (might be due to invalid IL or missing references) //IL_3124: Unknown result type (might be due to invalid IL or missing references) //IL_3130: Unknown result type (might be due to invalid IL or missing references) //IL_1b00: Unknown result type (might be due to invalid IL or missing references) //IL_1b06: Unknown result type (might be due to invalid IL or missing references) //IL_1b0b: Unknown result type (might be due to invalid IL or missing references) //IL_1b16: Unknown result type (might be due to invalid IL or missing references) //IL_1b1c: Unknown result type (might be due to invalid IL or missing references) //IL_1b21: Unknown result type (might be due to invalid IL or missing references) //IL_1b27: Unknown result type (might be due to invalid IL or missing references) //IL_1b31: Unknown result type (might be due to invalid IL or missing references) //IL_1b36: Unknown result type (might be due to invalid IL or missing references) //IL_1b3c: Unknown result type (might be due to invalid IL or missing references) //IL_1b46: Unknown result type (might be due to invalid IL or missing references) //IL_1b4b: Unknown result type (might be due to invalid IL or missing references) //IL_1b51: Unknown result type (might be due to invalid IL or missing references) //IL_1b56: Unknown result type (might be due to invalid IL or missing references) //IL_1b5c: Unknown result type (might be due to invalid IL or missing references) //IL_1b61: Unknown result type (might be due to invalid IL or missing references) //IL_1b79: Unknown result type (might be due to invalid IL or missing references) //IL_1b7e: Unknown result type (might be due to invalid IL or missing references) //IL_1b96: Unknown result type (might be due to invalid IL or missing references) //IL_1b9c: Unknown result type (might be due to invalid IL or missing references) //IL_1ba6: Unknown result type (might be due to invalid IL or missing references) //IL_1bab: Unknown result type (might be due to invalid IL or missing references) //IL_1bb1: Unknown result type (might be due to invalid IL or missing references) //IL_1bb6: Unknown result type (might be due to invalid IL or missing references) //IL_1bc1: Unknown result type (might be due to invalid IL or missing references) //IL_1bc7: Unknown result type (might be due to invalid IL or missing references) //IL_1bcc: Unknown result type (might be due to invalid IL or missing references) //IL_1bd7: Unknown result type (might be due to invalid IL or missing references) //IL_1bdd: Unknown result type (might be due to invalid IL or missing references) //IL_1be2: Unknown result type (might be due to invalid IL or missing references) //IL_1be8: Unknown result type (might be due to invalid IL or missing references) //IL_1bf2: Unknown result type (might be due to invalid IL or missing references) //IL_1bf7: Unknown result type (might be due to invalid IL or missing references) //IL_1bfd: Unknown result type (might be due to invalid IL or missing references) //IL_1c07: Unknown result type (might be due to invalid IL or missing references) //IL_1c0c: Unknown result type (might be due to invalid IL or missing references) //IL_1c12: Unknown result type (might be due to invalid IL or missing references) //IL_1c17: Unknown result type (might be due to invalid IL or missing references) //IL_1c1d: Unknown result type (might be due to invalid IL or missing references) //IL_1c22: Unknown result type (might be due to invalid IL or missing references) //IL_1c3a: Unknown result type (might be due to invalid IL or missing references) //IL_1c3f: Unknown result type (might be due to invalid IL or missing references) //IL_1c57: Unknown result type (might be due to invalid IL or missing references) //IL_1c5d: Unknown result type (might be due to invalid IL or missing references) //IL_1c67: Unknown result type (might be due to invalid IL or missing references) //IL_1c6c: Unknown result type (might be due to invalid IL or missing references) //IL_1c72: Unknown result type (might be due to invalid IL or missing references) //IL_1c77: Unknown result type (might be due to invalid IL or missing references) //IL_1c83: Unknown result type (might be due to invalid IL or missing references) //IL_06be: Unknown result type (might be due to invalid IL or missing references) //IL_06c4: Unknown result type (might be due to invalid IL or missing references) //IL_06c9: Unknown result type (might be due to invalid IL or missing references) //IL_06cf: Unknown result type (might be due to invalid IL or missing references) //IL_06d9: Unknown result type (might be due to invalid IL or missing references) //IL_06de: Unknown result type (might be due to invalid IL or missing references) //IL_06e4: Unknown result type (might be due to invalid IL or missing references) //IL_06e9: Unknown result type (might be due to invalid IL or missing references) //IL_06ef: Unknown result type (might be due to invalid IL or missing references) //IL_06f9: Unknown result type (might be due to invalid IL or missing references) //IL_06fe: Unknown result type (might be due to invalid IL or missing references) //IL_0704: Unknown result type (might be due to invalid IL or missing references) //IL_0709: Unknown result type (might be due to invalid IL or missing references) //IL_0714: Unknown result type (might be due to invalid IL or missing references) //IL_071a: Unknown result type (might be due to invalid IL or missing references) //IL_071f: Unknown result type (might be due to invalid IL or missing references) //IL_0725: Unknown result type (might be due to invalid IL or missing references) //IL_072f: Unknown result type (might be due to invalid IL or missing references) //IL_0734: Unknown result type (might be due to invalid IL or missing references) //IL_073a: Unknown result type (might be due to invalid IL or missing references) //IL_073f: Unknown result type (might be due to invalid IL or missing references) //IL_0745: Unknown result type (might be due to invalid IL or missing references) //IL_074f: Unknown result type (might be due to invalid IL or missing references) //IL_0754: Unknown result type (might be due to invalid IL or missing references) //IL_075a: Unknown result type (might be due to invalid IL or missing references) //IL_075f: Unknown result type (might be due to invalid IL or missing references) //IL_076b: Unknown result type (might be due to invalid IL or missing references) //IL_314a: Unknown result type (might be due to invalid IL or missing references) //IL_3150: Unknown result type (might be due to invalid IL or missing references) //IL_3155: Unknown result type (might be due to invalid IL or missing references) //IL_315b: Unknown result type (might be due to invalid IL or missing references) //IL_3160: Unknown result type (might be due to invalid IL or missing references) //IL_3166: Unknown result type (might be due to invalid IL or missing references) //IL_3170: Unknown result type (might be due to invalid IL or missing references) //IL_3175: Unknown result type (might be due to invalid IL or missing references) //IL_317b: Unknown result type (might be due to invalid IL or missing references) //IL_3180: Unknown result type (might be due to invalid IL or missing references) //IL_3186: Unknown result type (might be due to invalid IL or missing references) //IL_3190: Unknown result type (might be due to invalid IL or missing references) //IL_3195: Unknown result type (might be due to invalid IL or missing references) //IL_319b: Unknown result type (might be due to invalid IL or missing references) //IL_31a5: Unknown result type (might be due to invalid IL or missing references) //IL_31aa: Unknown result type (might be due to invalid IL or missing references) //IL_31b0: Unknown result type (might be due to invalid IL or missing references) //IL_31b5: Unknown result type (might be due to invalid IL or missing references) //IL_31bb: Unknown result type (might be due to invalid IL or missing references) //IL_31c0: Unknown result type (might be due to invalid IL or missing references) //IL_31cb: Unknown result type (might be due to invalid IL or missing references) //IL_31d1: Unknown result type (might be due to invalid IL or missing references) //IL_31d6: Unknown result type (might be due to invalid IL or missing references) //IL_31dc: Unknown result type (might be due to invalid IL or missing references) //IL_31e6: Unknown result type (might be due to invalid IL or missing references) //IL_31eb: Unknown result type (might be due to invalid IL or missing references) //IL_31f1: Unknown result type (might be due to invalid IL or missing references) //IL_31fb: Unknown result type (might be due to invalid IL or missing references) //IL_3200: Unknown result type (might be due to invalid IL or missing references) //IL_3206: Unknown result type (might be due to invalid IL or missing references) //IL_320b: Unknown result type (might be due to invalid IL or missing references) //IL_3211: Unknown result type (might be due to invalid IL or missing references) //IL_3216: Unknown result type (might be due to invalid IL or missing references) //IL_321c: Unknown result type (might be due to invalid IL or missing references) //IL_3226: Unknown result type (might be due to invalid IL or missing references) //IL_322b: Unknown result type (might be due to invalid IL or missing references) //IL_3231: Unknown result type (might be due to invalid IL or missing references) //IL_323b: Unknown result type (might be due to invalid IL or missing references) //IL_3240: Unknown result type (might be due to invalid IL or missing references) //IL_3246: Unknown result type (might be due to invalid IL or missing references) //IL_324b: Unknown result type (might be due to invalid IL or missing references) //IL_3251: Unknown result type (might be due to invalid IL or missing references) //IL_3256: Unknown result type (might be due to invalid IL or missing references) //IL_3262: Unknown result type (might be due to invalid IL or missing references) //IL_1c9d: Unknown result type (might be due to invalid IL or missing references) //IL_1ca3: Unknown result type (might be due to invalid IL or missing references) //IL_1ca8: Unknown result type (might be due to invalid IL or missing references) //IL_1cb3: Unknown result type (might be due to invalid IL or missing references) //IL_1cb9: Unknown result type (might be due to invalid IL or missing references) //IL_1cbe: Unknown result type (might be due to invalid IL or missing references) //IL_1cc4: Unknown result type (might be due to invalid IL or missing references) //IL_1cce: Unknown result type (might be due to invalid IL or missing references) //IL_1cd3: Unknown result type (might be due to invalid IL or missing references) //IL_1cd9: Unknown result type (might be due to invalid IL or missing references) //IL_1ce3: Unknown result type (might be due to invalid IL or missing references) //IL_1ce8: Unknown result type (might be due to invalid IL or missing references) //IL_1cee: Unknown result type (might be due to invalid IL or missing references) //IL_1cf3: Unknown result type (might be due to invalid IL or missing references) //IL_1cf9: Unknown result type (might be due to invalid IL or missing references) //IL_1cfe: Unknown result type (might be due to invalid IL or missing references) //IL_1d16: Unknown result type (might be due to invalid IL or missing references) //IL_1d1b: Unknown result type (might be due to invalid IL or missing references) //IL_1d33: Unknown result type (might be due to invalid IL or missing references) //IL_1d39: Unknown result type (might be due to invalid IL or missing references) //IL_1d43: Unknown result type (might be due to invalid IL or missing references) //IL_1d48: Unknown result type (might be due to invalid IL or missing references) //IL_1d4e: Unknown result type (might be due to invalid IL or missing references) //IL_1d53: Unknown result type (might be due to invalid IL or missing references) //IL_1d5e: Unknown result type (might be due to invalid IL or missing references) //IL_1d64: Unknown result type (might be due to invalid IL or missing references) //IL_1d69: Unknown result type (might be due to invalid IL or missing references) //IL_1d74: Unknown result type (might be due to invalid IL or missing references) //IL_1d7a: Unknown result type (might be due to invalid IL or missing references) //IL_1d7f: Unknown result type (might be due to invalid IL or missing references) //IL_1d85: Unknown result type (might be due to invalid IL or missing references) //IL_1d8f: Unknown result type (might be due to invalid IL or missing references) //IL_1d94: Unknown result type (might be due to invalid IL or missing references) //IL_1d9a: Unknown result type (might be due to invalid IL or missing references) //IL_1da4: Unknown result type (might be due to invalid IL or missing references) //IL_1da9: Unknown result type (might be due to invalid IL or missing references) //IL_1daf: Unknown result type (might be due to invalid IL or missing references) //IL_1db4: Unknown result type (might be due to invalid IL or missing references) //IL_1dba: Unknown result type (might be due to invalid IL or missing references) //IL_1dbf: Unknown result type (might be due to invalid IL or missing references) //IL_1dd7: Unknown result type (might be due to invalid IL or missing references) //IL_1ddc: Unknown result type (might be due to invalid IL or missing references) //IL_1df4: Unknown result type (might be due to invalid IL or missing references) //IL_1dfa: Unknown result type (might be due to invalid IL or missing references) //IL_1e04: Unknown result type (might be due to invalid IL or missing references) //IL_1e09: Unknown result type (might be due to invalid IL or missing references) //IL_1e0f: Unknown result type (might be due to invalid IL or missing references) //IL_1e14: Unknown result type (might be due to invalid IL or missing references) //IL_1e20: Unknown result type (might be due to invalid IL or missing references) //IL_0785: Unknown result type (might be due to invalid IL or missing references) //IL_078b: Unknown result type (might be due to invalid IL or missing references) //IL_0790: Unknown result type (might be due to invalid IL or missing references) //IL_0796: Unknown result type (might be due to invalid IL or missing references) //IL_07a0: Unknown result type (might be due to invalid IL or missing references) //IL_07a5: Unknown result type (might be due to invalid IL or missing references) //IL_07ab: Unknown result type (might be due to invalid IL or missing references) //IL_07b0: Unknown result type (might be due to invalid IL or missing references) //IL_07b6: Unknown result type (might be due to invalid IL or missing references) //IL_07c0: Unknown result type (might be due to invalid IL or missing references) //IL_07c5: Unknown result type (might be due to invalid IL or missing references) //IL_07cb: Unknown result type (might be due to invalid IL or missing references) //IL_07d0: Unknown result type (might be due to invalid IL or missing references) //IL_07db: Unknown result type (might be due to invalid IL or missing references) //IL_07e1: Unknown result type (might be due to invalid IL or missing references) //IL_07e6: Unknown result type (might be due to invalid IL or missing references) //IL_07ec: Unknown result type (might be due to invalid IL or missing references) //IL_07f6: Unknown result type (might be due to invalid IL or missing references) //IL_07fb: Unknown result type (might be due to invalid IL or missing references) //IL_0801: Unknown result type (might be due to invalid IL or missing references) //IL_0806: Unknown result type (might be due to invalid IL or missing references) //IL_080c: Unknown result type (might be due to invalid IL or missing references) //IL_0816: Unknown result type (might be due to invalid IL or missing references) //IL_081b: Unknown result type (might be due to invalid IL or missing references) //IL_0821: Unknown result type (might be due to invalid IL or missing references) //IL_0826: Unknown result type (might be due to invalid IL or missing references) //IL_0832: Unknown result type (might be due to invalid IL or missing references) //IL_327c: Unknown result type (might be due to invalid IL or missing references) //IL_3282: Unknown result type (might be due to invalid IL or missing references) //IL_3287: Unknown result type (might be due to invalid IL or missing references) //IL_3292: Unknown result type (might be due to invalid IL or missing references) //IL_3298: Unknown result type (might be due to invalid IL or missing references) //IL_329d: Unknown result type (might be due to invalid IL or missing references) //IL_32a3: Unknown result type (might be due to invalid IL or missing references) //IL_32ad: Unknown result type (might be due to invalid IL or missing references) //IL_32b2: Unknown result type (might be due to invalid IL or missing references) //IL_32b8: Unknown result type (might be due to invalid IL or missing references) //IL_32c2: Unknown result type (might be due to invalid IL or missing references) //IL_32c7: Unknown result type (might be due to invalid IL or missing references) //IL_32cd: Unknown result type (might be due to invalid IL or missing references) //IL_32d2: Unknown result type (might be due to invalid IL or missing references) //IL_32d8: Unknown result type (might be due to invalid IL or missing references) //IL_32dd: Unknown result type (might be due to invalid IL or missing references) //IL_32f5: Unknown result type (might be due to invalid IL or missing references) //IL_32fa: Unknown result type (might be due to invalid IL or missing references) //IL_3312: Unknown result type (might be due to invalid IL or missing references) //IL_3318: Unknown result type (might be due to invalid IL or missing references) //IL_3322: Unknown result type (might be due to invalid IL or missing references) //IL_3327: Unknown result type (might be due to invalid IL or missing references) //IL_332d: Unknown result type (might be due to invalid IL or missing references) //IL_3332: Unknown result type (might be due to invalid IL or missing references) //IL_333d: Unknown result type (might be due to invalid IL or missing references) //IL_3343: Unknown result type (might be due to invalid IL or missing references) //IL_3348: Unknown result type (might be due to invalid IL or missing references) //IL_3353: Unknown result type (might be due to invalid IL or missing references) //IL_3359: Unknown result type (might be due to invalid IL or missing references) //IL_335e: Unknown result type (might be due to invalid IL or missing references) //IL_3364: Unknown result type (might be due to invalid IL or missing references) //IL_336e: Unknown result type (might be due to invalid IL or missing references) //IL_3373: Unknown result type (might be due to invalid IL or missing references) //IL_3379: Unknown result type (might be due to invalid IL or missing references) //IL_3383: Unknown result type (might be due to invalid IL or missing references) //IL_3388: Unknown result type (might be due to invalid IL or missing references) //IL_338e: Unknown result type (might be due to invalid IL or missing references) //IL_3393: Unknown result type (might be due to invalid IL or missing references) //IL_3399: Unknown result type (might be due to invalid IL or missing references) //IL_339e: Unknown result type (might be due to invalid IL or missing references) //IL_33b6: Unknown result type (might be due to invalid IL or missing references) //IL_33bb: Unknown result type (might be due to invalid IL or missing references) //IL_33d3: Unknown result type (might be due to invalid IL or missing references) //IL_33d9: Unknown result type (might be due to invalid IL or missing references) //IL_33e3: Unknown result type (might be due to invalid IL or missing references) //IL_33e8: Unknown result type (might be due to invalid IL or missing references) //IL_33ee: Unknown result type (might be due to invalid IL or missing references) //IL_33f3: Unknown result type (might be due to invalid IL or missing references) //IL_33ff: Unknown result type (might be due to invalid IL or missing references) //IL_1e3a: Unknown result type (might be due to invalid IL or missing references) //IL_1e40: Unknown result type (might be due to invalid IL or missing references) //IL_1e45: Unknown result type (might be due to invalid IL or missing references) //IL_1e4b: Unknown result type (might be due to invalid IL or missing references) //IL_1e55: Unknown result type (might be due to invalid IL or missing references) //IL_1e5a: Unknown result type (might be due to invalid IL or missing references) //IL_1e60: Unknown result type (might be due to invalid IL or missing references) //IL_1e65: Unknown result type (might be due to invalid IL or missing references) //IL_1e6b: Unknown result type (might be due to invalid IL or missing references) //IL_1e75: Unknown result type (might be due to invalid IL or missing references) //IL_1e7a: Unknown result type (might be due to invalid IL or missing references) //IL_1e80: Unknown result type (might be due to invalid IL or missing references) //IL_1e85: Unknown result type (might be due to invalid IL or missing references) //IL_1e90: Unknown result type (might be due to invalid IL or missing references) //IL_1e96: Unknown result type (might be due to invalid IL or missing references) //IL_1e9b: Unknown result type (might be due to invalid IL or missing references) //IL_1ea1: Unknown result type (might be due to invalid IL or missing references) //IL_1eab: Unknown result type (might be due to invalid IL or missing references) //IL_1eb0: Unknown result type (might be due to invalid IL or missing references) //IL_1eb6: Unknown result type (might be due to invalid IL or missing references) //IL_1ebb: Unknown result type (might be due to invalid IL or missing references) //IL_1ec1: Unknown result type (might be due to invalid IL or missing references) //IL_1ecb: Unknown result type (might be due to invalid IL or missing references) //IL_1ed0: Unknown result type (might be due to invalid IL or missing references) //IL_1ed6: Unknown result type (might be due to invalid IL or missing references) //IL_1edb: Unknown result type (might be due to invalid IL or missing references) //IL_1ee7: Unknown result type (might be due to invalid IL or missing references) //IL_0847: Unknown result type (might be due to invalid IL or missing references) //IL_0852: Unknown result type (might be due to invalid IL or missing references) //IL_0858: Unknown result type (might be due to invalid IL or missing references) //IL_085d: Unknown result type (might be due to invalid IL or missing references) //IL_0863: Unknown result type (might be due to invalid IL or missing references) //IL_0868: Unknown result type (might be due to invalid IL or missing references) //IL_086e: Unknown result type (might be due to invalid IL or missing references) //IL_0873: Unknown result type (might be due to invalid IL or missing references) //IL_0879: Unknown result type (might be due to invalid IL or missing references) //IL_0883: Unknown result type (might be due to invalid IL or missing references) //IL_0888: Unknown result type (might be due to invalid IL or missing references) //IL_088e: Unknown result type (might be due to invalid IL or missing references) //IL_0898: Unknown result type (might be due to invalid IL or missing references) //IL_089d: Unknown result type (might be due to invalid IL or missing references) //IL_08a3: Unknown result type (might be due to invalid IL or missing references) //IL_08a8: Unknown result type (might be due to invalid IL or missing references) //IL_08ae: Unknown result type (might be due to invalid IL or missing references) //IL_08b3: Unknown result type (might be due to invalid IL or missing references) //IL_08bf: Unknown result type (might be due to invalid IL or missing references) //IL_3419: Unknown result type (might be due to invalid IL or missing references) //IL_341f: Unknown result type (might be due to invalid IL or missing references) //IL_3424: Unknown result type (might be due to invalid IL or missing references) //IL_342f: Unknown result type (might be due to invalid IL or missing references) //IL_3435: Unknown result type (might be due to invalid IL or missing references) //IL_343a: Unknown result type (might be due to invalid IL or missing references) //IL_3440: Unknown result type (might be due to invalid IL or missing references) //IL_344a: Unknown result type (might be due to invalid IL or missing references) //IL_344f: Unknown result type (might be due to invalid IL or missing references) //IL_3455: Unknown result type (might be due to invalid IL or missing references) //IL_345f: Unknown result type (might be due to invalid IL or missing references) //IL_3464: Unknown result type (might be due to invalid IL or missing references) //IL_346a: Unknown result type (might be due to invalid IL or missing references) //IL_346f: Unknown result type (might be due to invalid IL or missing references) //IL_3475: Unknown result type (might be due to invalid IL or missing references) //IL_347a: Unknown result type (might be due to invalid IL or missing references) //IL_3492: Unknown result type (might be due to invalid IL or missing references) //IL_3497: Unknown result type (might be due to invalid IL or missing references) //IL_34af: Unknown result type (might be due to invalid IL or missing references) //IL_34b5: Unknown result type (might be due to invalid IL or missing references) //IL_34bf: Unknown result type (might be due to invalid IL or missing references) //IL_34c4: Unknown result type (might be due to invalid IL or missing references) //IL_34ca: Unknown result type (might be due to invalid IL or missing references) //IL_34cf: Unknown result type (might be due to invalid IL or missing references) //IL_34da: Unknown result type (might be due to invalid IL or missing references) //IL_34e0: Unknown result type (might be due to invalid IL or missing references) //IL_34e5: Unknown result type (might be due to invalid IL or missing references) //IL_34f0: Unknown result type (might be due to invalid IL or missing references) //IL_34f6: Unknown result type (might be due to invalid IL or missing references) //IL_34fb: Unknown result type (might be due to invalid IL or missing references) //IL_3501: Unknown result type (might be due to invalid IL or missing references) //IL_350b: Unknown result type (might be due to invalid IL or missing references) //IL_3510: Unknown result type (might be due to invalid IL or missing references) //IL_3516: Unknown result type (might be due to invalid IL or missing references) //IL_3520: Unknown result type (might be due to invalid IL or missing references) //IL_3525: Unknown result type (might be due to invalid IL or missing references) //IL_352b: Unknown result type (might be due to invalid IL or missing references) //IL_3530: Unknown result type (might be due to invalid IL or missing references) //IL_3536: Unknown result type (might be due to invalid IL or missing references) //IL_353b: Unknown result type (might be due to invalid IL or missing references) //IL_3553: Unknown result type (might be due to invalid IL or missing references) //IL_3558: Unknown result type (might be due to invalid IL or missing references) //IL_3570: Unknown result type (might be due to invalid IL or missing references) //IL_3576: Unknown result type (might be due to invalid IL or missing references) //IL_3580: Unknown result type (might be due to invalid IL or missing references) //IL_3585: Unknown result type (might be due to invalid IL or missing references) //IL_358b: Unknown result type (might be due to invalid IL or missing references) //IL_3590: Unknown result type (might be due to invalid IL or missing references) //IL_359c: Unknown result type (might be due to invalid IL or missing references) //IL_1f01: Unknown result type (might be due to invalid IL or missing references) //IL_1f07: Unknown result type (might be due to invalid IL or missing references) //IL_1f0c: Unknown result type (might be due to invalid IL or missing references) //IL_1f12: Unknown result type (might be due to invalid IL or missing references) //IL_1f1c: Unknown result type (might be due to invalid IL or missing references) //IL_1f21: Unknown result type (might be due to invalid IL or missing references) //IL_1f27: Unknown result type (might be due to invalid IL or missing references) //IL_1f2c: Unknown result type (might be due to invalid IL or missing references) //IL_1f32: Unknown result type (might be due to invalid IL or missing references) //IL_1f3c: Unknown result type (might be due to invalid IL or missing references) //IL_1f41: Unknown result type (might be due to invalid IL or missing references) //IL_1f47: Unknown result type (might be due to invalid IL or missing references) //IL_1f4c: Unknown result type (might be due to invalid IL or missing references) //IL_1f57: Unknown result type (might be due to invalid IL or missing references) //IL_1f5d: Unknown result type (might be due to invalid IL or missing references) //IL_1f62: Unknown result type (might be due to invalid IL or missing references) //IL_1f68: Unknown result type (might be due to invalid IL or missing references) //IL_1f72: Unknown result type (might be due to invalid IL or missing references) //IL_1f77: Unknown result type (might be due to invalid IL or missing references) //IL_1f7d: Unknown result type (might be due to invalid IL or missing references) //IL_1f82: Unknown result type (might be due to invalid IL or missing references) //IL_1f88: Unknown result type (might be due to invalid IL or missing references) //IL_1f92: Unknown result type (might be due to invalid IL or missing references) //IL_1f97: Unknown result type (might be due to invalid IL or missing references) //IL_1f9d: Unknown result type (might be due to invalid IL or missing references) //IL_1fa2: Unknown result type (might be due to invalid IL or missing references) //IL_1fae: Unknown result type (might be due to invalid IL or missing references) //IL_08d4: Unknown result type (might be due to invalid IL or missing references) //IL_08da: Unknown result type (might be due to invalid IL or missing references) //IL_08e4: Unknown result type (might be due to invalid IL or missing references) //IL_08e9: Unknown result type (might be due to invalid IL or missing references) //IL_08f4: Unknown result type (might be due to invalid IL or missing references) //IL_08fa: Unknown result type (might be due to invalid IL or missing references) //IL_08ff: Unknown result type (might be due to invalid IL or missing references) //IL_0905: Unknown result type (might be due to invalid IL or missing references) //IL_090a: Unknown result type (might be due to invalid IL or missing references) //IL_0910: Unknown result type (might be due to invalid IL or missing references) //IL_0915: Unknown result type (might be due to invalid IL or missing references) //IL_091b: Unknown result type (might be due to invalid IL or missing references) //IL_0925: Unknown result type (might be due to invalid IL or missing references) //IL_092a: Unknown result type (might be due to invalid IL or missing references) //IL_0930: Unknown result type (might be due to invalid IL or missing references) //IL_093a: Unknown result type (might be due to invalid IL or missing references) //IL_093f: Unknown result type (might be due to invalid IL or missing references) //IL_0945: Unknown result type (might be due to invalid IL or missing references) //IL_094a: Unknown result type (might be due to invalid IL or missing references) //IL_0950: Unknown result type (might be due to invalid IL or missing references) //IL_095a: Unknown result type (might be due to invalid IL or missing references) //IL_095f: Unknown result type (might be due to invalid IL or missing references) //IL_0965: Unknown result type (might be due to invalid IL or missing references) //IL_096a: Unknown result type (might be due to invalid IL or missing references) //IL_0976: Unknown result type (might be due to invalid IL or missing references) //IL_35b6: Unknown result type (might be due to invalid IL or missing references) //IL_35bc: Unknown result type (might be due to invalid IL or missing references) //IL_35c1: Unknown result type (might be due to invalid IL or missing references) //IL_35c7: Unknown result type (might be due to invalid IL or missing references) //IL_35d1: Unknown result type (might be due to invalid IL or missing references) //IL_35d6: Unknown result type (might be due to invalid IL or missing references) //IL_35dc: Unknown result type (might be due to invalid IL or missing references) //IL_35e1: Unknown result type (might be due to invalid IL or missing references) //IL_35e7: Unknown result type (might be due to invalid IL or missing references) //IL_35f1: Unknown result type (might be due to invalid IL or missing references) //IL_35f6: Unknown result type (might be due to invalid IL or missing references) //IL_35fc: Unknown result type (might be due to invalid IL or missing references) //IL_3601: Unknown result type (might be due to invalid IL or missing references) //IL_360c: Unknown result type (might be due to invalid IL or missing references) //IL_3612: Unknown result type (might be due to invalid IL or missing references) //IL_3617: Unknown result type (might be due to invalid IL or missing references) //IL_361d: Unknown result type (might be due to invalid IL or missing references) //IL_3627: Unknown result type (might be due to invalid IL or missing references) //IL_362c: Unknown result type (might be due to invalid IL or missing references) //IL_3632: Unknown result type (might be due to invalid IL or missing references) //IL_3637: Unknown result type (might be due to invalid IL or missing references) //IL_363d: Unknown result type (might be due to invalid IL or missing references) //IL_3647: Unknown result type (might be due to invalid IL or missing references) //IL_364c: Unknown result type (might be due to invalid IL or missing references) //IL_3652: Unknown result type (might be due to invalid IL or missing references) //IL_3657: Unknown result type (might be due to invalid IL or missing references) //IL_3663: Unknown result type (might be due to invalid IL or missing references) //IL_1fc3: Unknown result type (might be due to invalid IL or missing references) //IL_1fce: Unknown result type (might be due to invalid IL or missing references) //IL_1fd4: Unknown result type (might be due to invalid IL or missing references) //IL_1fd9: Unknown result type (might be due to invalid IL or missing references) //IL_1fdf: Unknown result type (might be due to invalid IL or missing references) //IL_1fe4: Unknown result type (might be due to invalid IL or missing references) //IL_1fea: Unknown result type (might be due to invalid IL or missing references) //IL_1fef: Unknown result type (might be due to invalid IL or missing references) //IL_1ff5: Unknown result type (might be due to invalid IL or missing references) //IL_1fff: Unknown result type (might be due to invalid IL or missing references) //IL_2004: Unknown result type (might be due to invalid IL or missing references) //IL_200a: Unknown result type (might be due to invalid IL or missing references) //IL_2014: Unknown result type (might be due to invalid IL or missing references) //IL_2019: Unknown result type (might be due to invalid IL or missing references) //IL_201f: Unknown result type (might be due to invalid IL or missing references) //IL_2024: Unknown result type (might be due to invalid IL or missing references) //IL_202a: Unknown result type (might be due to invalid IL or missing references) //IL_202f: Unknown result type (might be due to invalid IL or missing references) //IL_203b: Unknown result type (might be due to invalid IL or missing references) //IL_098b: Unknown result type (might be due to invalid IL or missing references) //IL_0991: Unknown result type (might be due to invalid IL or missing references) //IL_099b: Unknown result type (might be due to invalid IL or missing references) //IL_09a0: Unknown result type (might be due to invalid IL or missing references) //IL_09ab: Unknown result type (might be due to invalid IL or missing references) //IL_09b1: Unknown result type (might be due to invalid IL or missing references) //IL_09b6: Unknown result type (might be due to invalid IL or missing references) //IL_09bc: Unknown result type (might be due to invalid IL or missing references) //IL_09c1: Unknown result type (might be due to invalid IL or missing references) //IL_09c7: Unknown result type (might be due to invalid IL or missing references) //IL_09cc: Unknown result type (might be due to invalid IL or missing references) //IL_09d2: Unknown result type (might be due to invalid IL or missing references) //IL_09dc: Unknown result type (might be due to invalid IL or missing references) //IL_09e1: Unknown result type (might be due to invalid IL or missing references) //IL_09e7: Unknown result type (might be due to invalid IL or missing references) //IL_09f1: Unknown result type (might be due to invalid IL or missing references) //IL_09f6: Unknown result type (might be due to invalid IL or missing references) //IL_09fc: Unknown result type (might be due to invalid IL or missing references) //IL_0a01: Unknown result type (might be due to invalid IL or missing references) //IL_0a07: Unknown result type (might be due to invalid IL or missing references) //IL_0a11: Unknown result type (might be due to invalid IL or missing references) //IL_0a16: Unknown result type (might be due to invalid IL or missing references) //IL_0a1c: Unknown result type (might be due to invalid IL or missing references) //IL_0a21: Unknown result type (might be due to invalid IL or missing references) //IL_0a2d: Unknown result type (might be due to invalid IL or missing references) //IL_367d: Unknown result type (might be due to invalid IL or missing references) //IL_3683: Unknown result type (might be due to invalid IL or missing references) //IL_3688: Unknown result type (might be due to invalid IL or missing references) //IL_368e: Unknown result type (might be due to invalid IL or missing references) //IL_3698: Unknown result type (might be due to invalid IL or missing references) //IL_369d: Unknown result type (might be due to invalid IL or missing references) //IL_36a3: Unknown result type (might be due to invalid IL or missing references) //IL_36a8: Unknown result type (might be due to invalid IL or missing references) //IL_36ae: Unknown result type (might be due to invalid IL or missing references) //IL_36b8: Unknown result type (might be due to invalid IL or missing references) //IL_36bd: Unknown result type (might be due to invalid IL or missing references) //IL_36c3: Unknown result type (might be due to invalid IL or missing references) //IL_36c8: Unknown result type (might be due to invalid IL or missing references) //IL_36d3: Unknown result type (might be due to invalid IL or missing references) //IL_36d9: Unknown result type (might be due to invalid IL or missing references) //IL_36de: Unknown result type (might be due to invalid IL or missing references) //IL_36e4: Unknown result type (might be due to invalid IL or missing references) //IL_36ee: Unknown result type (might be due to invalid IL or missing references) //IL_36f3: Unknown result type (might be due to invalid IL or missing references) //IL_36f9: Unknown result type (might be due to invalid IL or missing references) //IL_36fe: Unknown result type (might be due to invalid IL or missing references) //IL_3704: Unknown result type (might be due to invalid IL or missing references) //IL_370e: Unknown result type (might be due to invalid IL or missing references) //IL_3713: Unknown result type (might be due to invalid IL or missing references) //IL_3719: Unknown result type (might be due to invalid IL or missing references) //IL_371e: Unknown result type (might be due to invalid IL or missing references) //IL_372a: Unknown result type (might be due to invalid IL or missing references) //IL_2050: Unknown result type (might be due to invalid IL or missing references) //IL_2056: Unknown result type (might be due to invalid IL or missing references) //IL_2060: Unknown result type (might be due to invalid IL or missing references) //IL_2065: Unknown result type (might be due to invalid IL or missing references) //IL_2070: Unknown result type (might be due to invalid IL or missing references) //IL_2076: Unknown result type (might be due to invalid IL or missing references) //IL_207b: Unknown result type (might be due to invalid IL or missing references) //IL_2081: Unknown result type (might be due to invalid IL or missing references) //IL_2086: Unknown result type (might be due to invalid IL or missing references) //IL_208c: Unknown result type (might be due to invalid IL or missing references) //IL_2091: Unknown result type (might be due to invalid IL or missing references) //IL_2097: Unknown result type (might be due to invalid IL or missing references) //IL_20a1: Unknown result type (might be due to invalid IL or missing references) //IL_20a6: Unknown result type (might be due to invalid IL or missing references) //IL_20ac: Unknown result type (might be due to invalid IL or missing references) //IL_20b6: Unknown result type (might be due to invalid IL or missing references) //IL_20bb: Unknown result type (might be due to invalid IL or missing references) //IL_20c1: Unknown result type (might be due to invalid IL or missing references) //IL_20c6: Unknown result type (might be due to invalid IL or missing references) //IL_20cc: Unknown result type (might be due to invalid IL or missing references) //IL_20d6: Unknown result type (might be due to invalid IL or missing references) //IL_20db: Unknown result type (might be due to invalid IL or missing references) //IL_20e1: Unknown result type (might be due to invalid IL or missing references) //IL_20e6: Unknown result type (might be due to invalid IL or missing references) //IL_20f2: Unknown result type (might be due to invalid IL or missing references) //IL_0a42: Unknown result type (might be due to invalid IL or missing references) //IL_0a48: Unknown result type (might be due to invalid IL or missing references) //IL_0a52: Unknown result type (might be due to invalid IL or missing references) //IL_0a57: Unknown result type (might be due to invalid IL or missing references) //IL_0a62: Unknown result type (might be due to invalid IL or missing references) //IL_0a68: Unknown result type (might be due to invalid IL or missing references) //IL_0a6d: Unknown result type (might be due to invalid IL or missing references) //IL_0a73: Unknown result type (might be due to invalid IL or missing references) //IL_0a78: Unknown result type (might be due to invalid IL or missing references) //IL_0a7e: Unknown result type (might be due to invalid IL or missing references) //IL_0a83: Unknown result type (might be due to invalid IL or missing references) //IL_0a89: Unknown result type (might be due to invalid IL or missing references) //IL_0a93: Unknown result type (might be due to invalid IL or missing references) //IL_0a98: Unknown result type (might be due to invalid IL or missing references) //IL_0a9e: Unknown result type (might be due to invalid IL or missing references) //IL_0aa8: Unknown result type (might be due to invalid IL or missing references) //IL_0aad: Unknown result type (might be due to invalid IL or missing references) //IL_0ab3: Unknown result type (might be due to invalid IL or missing references) //IL_0ab8: Unknown result type (might be due to invalid IL or missing references) //IL_0abe: Unknown result type (might be due to invalid IL or missing references) //IL_0ac8: Unknown result type (might be due to invalid IL or missing references) //IL_0acd: Unknown result type (might be due to invalid IL or missing references) //IL_0ad3: Unknown result type (might be due to invalid IL or missing references) //IL_0ad8: Unknown result type (might be due to invalid IL or missing references) //IL_0ae4: Unknown result type (might be due to invalid IL or missing references) //IL_373f: Unknown result type (might be due to invalid IL or missing references) //IL_374a: Unknown result type (might be due to invalid IL or missing references) //IL_3750: Unknown result type (might be due to invalid IL or missing references) //IL_3755: Unknown result type (might be due to invalid IL or missing references) //IL_375b: Unknown result type (might be due to invalid IL or missing references) //IL_3760: Unknown result type (might be due to invalid IL or missing references) //IL_3766: Unknown result type (might be due to invalid IL or missing references) //IL_376b: Unknown result type (might be due to invalid IL or missing references) //IL_3771: Unknown result type (might be due to invalid IL or missing references) //IL_377b: Unknown result type (might be due to invalid IL or missing references) //IL_3780: Unknown result type (might be due to invalid IL or missing references) //IL_3786: Unknown result type (might be due to invalid IL or missing references) //IL_3790: Unknown result type (might be due to invalid IL or missing references) //IL_3795: Unknown result type (might be due to invalid IL or missing references) //IL_379b: Unknown result type (might be due to invalid IL or missing references) //IL_37a0: Unknown result type (might be due to invalid IL or missing references) //IL_37a6: Unknown result type (might be due to invalid IL or missing references) //IL_37ab: Unknown result type (might be due to invalid IL or missing references) //IL_37b7: Unknown result type (might be due to invalid IL or missing references) //IL_2107: Unknown result type (might be due to invalid IL or missing references) //IL_210d: Unknown result type (might be due to invalid IL or missing references) //IL_2117: Unknown result type (might be due to invalid IL or missing references) //IL_211c: Unknown result type (might be due to invalid IL or missing references) //IL_2127: Unknown result type (might be due to invalid IL or missing references) //IL_212d: Unknown result type (might be due to invalid IL or missing references) //IL_2132: Unknown result type (might be due to invalid IL or missing references) //IL_2138: Unknown result type (might be due to invalid IL or missing references) //IL_213d: Unknown result type (might be due to invalid IL or missing references) //IL_2143: Unknown result type (might be due to invalid IL or missing references) //IL_2148: Unknown result type (might be due to invalid IL or missing references) //IL_214e: Unknown result type (might be due to invalid IL or missing references) //IL_2158: Unknown result type (might be due to invalid IL or missing references) //IL_215d: Unknown result type (might be due to invalid IL or missing references) //IL_2163: Unknown result type (might be due to invalid IL or missing references) //IL_216d: Unknown result type (might be due to invalid IL or missing references) //IL_2172: Unknown result type (might be due to invalid IL or missing references) //IL_2178: Unknown result type (might be due to invalid IL or missing references) //IL_217d: Unknown result type (might be due to invalid IL or missing references) //IL_2183: Unknown result type (might be due to invalid IL or missing references) //IL_218d: Unknown result type (might be due to invalid IL or missing references) //IL_2192: Unknown result type (might be due to invalid IL or missing references) //IL_2198: Unknown result type (might be due to invalid IL or missing references) //IL_219d: Unknown result type (might be due to invalid IL or missing references) //IL_21a9: Unknown result type (might be due to invalid IL or missing references) //IL_0afe: Unknown result type (might be due to invalid IL or missing references) //IL_0b04: Unknown result type (might be due to invalid IL or missing references) //IL_0b09: Unknown result type (might be due to invalid IL or missing references) //IL_0b0f: Unknown result type (might be due to invalid IL or missing references) //IL_0b14: Unknown result type (might be due to invalid IL or missing references) //IL_0b1a: Unknown result type (might be due to invalid IL or missing references) //IL_0b24: Unknown result type (might be due to invalid IL or missing references) //IL_0b29: Unknown result type (might be due to invalid IL or missing references) //IL_0b2f: Unknown result type (might be due to invalid IL or missing references) //IL_0b34: Unknown result type (might be due to invalid IL or missing references) //IL_0b3f: Unknown result type (might be due to invalid IL or missing references) //IL_0b45: Unknown result type (might be due to invalid IL or missing references) //IL_0b4a: Unknown result type (might be due to invalid IL or missing references) //IL_0b50: Unknown result type (might be due to invalid IL or missing references) //IL_0b55: Unknown result type (might be due to invalid IL or missing references) //IL_0b5b: Unknown result type (might be due to invalid IL or missing references) //IL_0b65: Unknown result type (might be due to invalid IL or missing references) //IL_0b6a: Unknown result type (might be due to invalid IL or missing references) //IL_0b70: Unknown result type (might be due to invalid IL or missing references) //IL_0b75: Unknown result type (might be due to invalid IL or missing references) //IL_0b81: Unknown result type (might be due to invalid IL or missing references) //IL_37cc: Unknown result type (might be due to invalid IL or missing references) //IL_37d2: Unknown result type (might be due to invalid IL or missing references) //IL_37dc: Unknown result type (might be due to invalid IL or missing references) //IL_37e1: Unknown result type (might be due to invalid IL or missing references) //IL_37ec: Unknown result type (might be due to invalid IL or missing references) //IL_37f2: Unknown result type (might be due to invalid IL or missing references) //IL_37f7: Unknown result type (might be due to invalid IL or missing references) //IL_37fd: Unknown result type (might be due to invalid IL or missing references) //IL_3802: Unknown result type (might be due to invalid IL or missing references) //IL_3808: Unknown result type (might be due to invalid IL or missing references) //IL_380d: Unknown result type (might be due to invalid IL or missing references) //IL_3813: Unknown result type (might be due to invalid IL or missing references) //IL_381d: Unknown result type (might be due to invalid IL or missing references) //IL_3822: Unknown result type (might be due to invalid IL or missing references) //IL_3828: Unknown result type (might be due to invalid IL or missing references) //IL_3832: Unknown result type (might be due to invalid IL or missing references) //IL_3837: Unknown result type (might be due to invalid IL or missing references) //IL_383d: Unknown result type (might be due to invalid IL or missing references) //IL_3842: Unknown result type (might be due to invalid IL or missing references) //IL_3848: Unknown result type (might be due to invalid IL or missing references) //IL_3852: Unknown result type (might be due to invalid IL or missing references) //IL_3857: Unknown result type (might be due to invalid IL or missing references) //IL_385d: Unknown result type (might be due to invalid IL or missing references) //IL_3862: Unknown result type (might be due to invalid IL or missing references) //IL_386e: Unknown result type (might be due to invalid IL or missing references) //IL_21be: Unknown result type (might be due to invalid IL or missing references) //IL_21c4: Unknown result type (might be due to invalid IL or missing references) //IL_21ce: Unknown result type (might be due to invalid IL or missing references) //IL_21d3: Unknown result type (might be due to invalid IL or missing references) //IL_21de: Unknown result type (might be due to invalid IL or missing references) //IL_21e4: Unknown result type (might be due to invalid IL or missing references) //IL_21e9: Unknown result type (might be due to invalid IL or missing references) //IL_21ef: Unknown result type (might be due to invalid IL or missing references) //IL_21f4: Unknown result type (might be due to invalid IL or missing references) //IL_21fa: Unknown result type (might be due to invalid IL or missing references) //IL_21ff: Unknown result type (might be due to invalid IL or missing references) //IL_2205: Unknown result type (might be due to invalid IL or missing references) //IL_220f: Unknown result type (might be due to invalid IL or missing references) //IL_2214: Unknown result type (might be due to invalid IL or missing references) //IL_221a: Unknown result type (might be due to invalid IL or missing references) //IL_2224: Unknown result type (might be due to invalid IL or missing references) //IL_2229: Unknown result type (might be due to invalid IL or missing references) //IL_222f: Unknown result type (might be due to invalid IL or missing references) //IL_2234: Unknown result type (might be due to invalid IL or missing references) //IL_223a: Unknown result type (might be due to invalid IL or missing references) //IL_2244: Unknown result type (might be due to invalid IL or missing references) //IL_2249: Unknown result type (might be due to invalid IL or missing references) //IL_224f: Unknown result type (might be due to invalid IL or missing references) //IL_2254: Unknown result type (might be due to invalid IL or missing references) //IL_2260: Unknown result type (might be due to invalid IL or missing references) //IL_0b9b: Unknown result type (might be due to invalid IL or missing references) //IL_0ba1: Unknown result type (might be due to invalid IL or missing references) //IL_0ba6: Unknown result type (might be due to invalid IL or missing references) //IL_0bac: Unknown result type (might be due to invalid IL or missing references) //IL_0bb1: Unknown result type (might be due to invalid IL or missing references) //IL_0bb7: Unknown result type (might be due to invalid IL or missing references) //IL_0bc1: Unknown result type (might be due to invalid IL or missing references) //IL_0bc6: Unknown result type (might be due to invalid IL or missing references) //IL_0bcc: Unknown result type (might be due to invalid IL or missing references) //IL_0bd1: Unknown result type (might be due to invalid IL or missing references) //IL_0bd7: Unknown result type (might be due to invalid IL or missing references) //IL_0be1: Unknown result type (might be due to invalid IL or missing references) //IL_0be6: Unknown result type (might be due to invalid IL or missing references) //IL_0bf1: Unknown result type (might be due to invalid IL or missing references) //IL_0bf7: Unknown result type (might be due to invalid IL or missing references) //IL_0bfc: Unknown result type (might be due to invalid IL or missing references) //IL_0c02: Unknown result type (might be due to invalid IL or missing references) //IL_0c07: Unknown result type (might be due to invalid IL or missing references) //IL_0c0d: Unknown result type (might be due to invalid IL or missing references) //IL_0c17: Unknown result type (might be due to invalid IL or missing references) //IL_0c1c: Unknown result type (might be due to invalid IL or missing references) //IL_0c22: Unknown result type (might be due to invalid IL or missing references) //IL_0c27: Unknown result type (might be due to invalid IL or missing references) //IL_0c2d: Unknown result type (might be due to invalid IL or missing references) //IL_0c37: Unknown result type (might be due to invalid IL or missing references) //IL_0c3c: Unknown result type (might be due to invalid IL or missing references) //IL_0c48: Unknown result type (might be due to invalid IL or missing references) //IL_3883: Unknown result type (might be due to invalid IL or missing references) //IL_3889: Unknown result type (might be due to invalid IL or missing references) //IL_3893: Unknown result type (might be due to invalid IL or missing references) //IL_3898: Unknown result type (might be due to invalid IL or missing references) //IL_38a3: Unknown result type (might be due to invalid IL or missing references) //IL_38a9: Unknown result type (might be due to invalid IL or missing references) //IL_38ae: Unknown result type (might be due to invalid IL or missing references) //IL_38b4: Unknown result type (might be due to invalid IL or missing references) //IL_38b9: Unknown result type (might be due to invalid IL or missing references) //IL_38bf: Unknown result type (might be due to invalid IL or missing references) //IL_38c4: Unknown result type (might be due to invalid IL or missing references) //IL_38ca: Unknown result type (might be due to invalid IL or missing references) //IL_38d4: Unknown result type (might be due to invalid IL or missing references) //IL_38d9: Unknown result type (might be due to invalid IL or missing references) //IL_38df: Unknown result type (might be due to invalid IL or missing references) //IL_38e9: Unknown result type (might be due to invalid IL or missing references) //IL_38ee: Unknown result type (might be due to invalid IL or missing references) //IL_38f4: Unknown result type (might be due to invalid IL or missing references) //IL_38f9: Unknown result type (might be due to invalid IL or missing references) //IL_38ff: Unknown result type (might be due to invalid IL or missing references) //IL_3909: Unknown result type (might be due to invalid IL or missing references) //IL_390e: Unknown result type (might be due to invalid IL or missing references) //IL_3914: Unknown result type (might be due to invalid IL or missing references) //IL_3919: Unknown result type (might be due to invalid IL or missing references) //IL_3925: Unknown result type (might be due to invalid IL or missing references) //IL_227a: Unknown result type (might be due to invalid IL or missing references) //IL_2280: Unknown result type (might be due to invalid IL or missing references) //IL_2285: Unknown result type (might be due to invalid IL or missing references) //IL_228b: Unknown result type (might be due to invalid IL or missing references) //IL_2290: Unknown result type (might be due to invalid IL or missing references) //IL_2296: Unknown result type (might be due to invalid IL or missing references) //IL_22a0: Unknown result type (might be due to invalid IL or missing references) //IL_22a5: Unknown result type (might be due to invalid IL or missing references) //IL_22ab: Unknown result type (might be due to invalid IL or missing references) //IL_22b0: Unknown result type (might be due to invalid IL or missing references) //IL_22bb: Unknown result type (might be due to invalid IL or missing references) //IL_22c1: Unknown result type (might be due to invalid IL or missing references) //IL_22c6: Unknown result type (might be due to invalid IL or missing references) //IL_22cc: Unknown result type (might be due to invalid IL or missing references) //IL_22d1: Unknown result type (might be due to invalid IL or missing references) //IL_22d7: Unknown result type (might be due to invalid IL or missing references) //IL_22e1: Unknown result type (might be due to invalid IL or missing references) //IL_22e6: Unknown result type (might be due to invalid IL or missing references) //IL_22ec: Unknown result type (might be due to invalid IL or missing references) //IL_22f1: Unknown result type (might be due to invalid IL or missing references) //IL_22fd: Unknown result type (might be due to invalid IL or missing references) //IL_0c62: Unknown result type (might be due to invalid IL or missing references) //IL_0c68: Unknown result type (might be due to invalid IL or missing references) //IL_0c6d: Unknown result type (might be due to invalid IL or missing references) //IL_0c73: Unknown result type (might be due to invalid IL or missing references) //IL_0c78: Unknown result type (might be due to invalid IL or missing references) //IL_0c7e: Unknown result type (might be due to invalid IL or missing references) //IL_0c88: Unknown result type (might be due to invalid IL or missing references) //IL_0c8d: Unknown result type (might be due to invalid IL or missing references) //IL_0c93: Unknown result type (might be due to invalid IL or missing references) //IL_0c98: Unknown result type (might be due to invalid IL or missing references) //IL_0c9e: Unknown result type (might be due to invalid IL or missing references) //IL_0ca8: Unknown result type (might be due to invalid IL or missing references) //IL_0cad: Unknown result type (might be due to invalid IL or missing references) //IL_0cb8: Unknown result type (might be due to invalid IL or missing references) //IL_0cbe: Unknown result type (might be due to invalid IL or missing references) //IL_0cc3: Unknown result type (might be due to invalid IL or missing references) //IL_0cc9: Unknown result type (might be due to invalid IL or missing references) //IL_0cce: Unknown result type (might be due to invalid IL or missing references) //IL_0cd4: Unknown result type (might be due to invalid IL or missing references) //IL_0cde: Unknown result type (might be due to invalid IL or missing references) //IL_0ce3: Unknown result type (might be due to invalid IL or missing references) //IL_0ce9: Unknown result type (might be due to invalid IL or missing references) //IL_0cee: Unknown result type (might be due to invalid IL or missing references) //IL_0cf4: Unknown result type (might be due to invalid IL or missing references) //IL_0cfe: Unknown result type (might be due to invalid IL or missing references) //IL_0d03: Unknown result type (might be due to invalid IL or missing references) //IL_0d0f: Unknown result type (might be due to invalid IL or missing references) //IL_393a: Unknown result type (might be due to invalid IL or missing references) //IL_3940: Unknown result type (might be due to invalid IL or missing references) //IL_394a: Unknown result type (might be due to invalid IL or missing references) //IL_394f: Unknown result type (might be due to invalid IL or missing references) //IL_395a: Unknown result type (might be due to invalid IL or missing references) //IL_3960: Unknown result type (might be due to invalid IL or missing references) //IL_3965: Unknown result type (might be due to invalid IL or missing references) //IL_396b: Unknown result type (might be due to invalid IL or missing references) //IL_3970: Unknown result type (might be due to invalid IL or missing references) //IL_3976: Unknown result type (might be due to invalid IL or missing references) //IL_397b: Unknown result type (might be due to invalid IL or missing references) //IL_3981: Unknown result type (might be due to invalid IL or missing references) //IL_398b: Unknown result type (might be due to invalid IL or missing references) //IL_3990: Unknown result type (might be due to invalid IL or missing references) //IL_3996: Unknown result type (might be due to invalid IL or missing references) //IL_39a0: Unknown result type (might be due to invalid IL or missing references) //IL_39a5: Unknown result type (might be due to invalid IL or missing references) //IL_39ab: Unknown result type (might be due to invalid IL or missing references) //IL_39b0: Unknown result type (might be due to invalid IL or missing references) //IL_39b6: Unknown result type (might be due to invalid IL or missing references) //IL_39c0: Unknown result type (might be due to invalid IL or missing references) //IL_39c5: Unknown result type (might be due to invalid IL or missing references) //IL_39cb: Unknown result type (might be due to invalid IL or missing references) //IL_39d0: Unknown result type (might be due to invalid IL or missing references) //IL_39dc: Unknown result type (might be due to invalid IL or missing references) //IL_2317: Unknown result type (might be due to invalid IL or missing references) //IL_231d: Unknown result type (might be due to invalid IL or missing references) //IL_2322: Unknown result type (might be due to invalid IL or missing references) //IL_2328: Unknown result type (might be due to invalid IL or missing references) //IL_232d: Unknown result type (might be due to invalid IL or missing references) //IL_2333: Unknown result type (might be due to invalid IL or missing references) //IL_233d: Unknown result type (might be due to invalid IL or missing references) //IL_2342: Unknown result type (might be due to invalid IL or missing references) //IL_2348: Unknown result type (might be due to invalid IL or missing references) //IL_234d: Unknown result type (might be due to invalid IL or missing references) //IL_2353: Unknown result type (might be due to invalid IL or missing references) //IL_235d: Unknown result type (might be due to invalid IL or missing references) //IL_2362: Unknown result type (might be due to invalid IL or missing references) //IL_236d: Unknown result type (might be due to invalid IL or missing references) //IL_2373: Unknown result type (might be due to invalid IL or missing references) //IL_2378: Unknown result type (might be due to invalid IL or missing references) //IL_237e: Unknown result type (might be due to invalid IL or missing references) //IL_2383: Unknown result type (might be due to invalid IL or missing references) //IL_2389: Unknown result type (might be due to invalid IL or missing references) //IL_2393: Unknown result type (might be due to invalid IL or missing references) //IL_2398: Unknown result type (might be due to invalid IL or missing references) //IL_239e: Unknown result type (might be due to invalid IL or missing references) //IL_23a3: Unknown result type (might be due to invalid IL or missing references) //IL_23a9: Unknown result type (might be due to invalid IL or missing references) //IL_23b3: Unknown result type (might be due to invalid IL or missing references) //IL_23b8: Unknown result type (might be due to invalid IL or missing references) //IL_23c4: Unknown result type (might be due to invalid IL or missing references) //IL_0d29: Unknown result type (might be due to invalid IL or missing references) //IL_0d2f: Unknown result type (might be due to invalid IL or missing references) //IL_0d34: Unknown result type (might be due to invalid IL or missing references) //IL_0d3a: Unknown result type (might be due to invalid IL or missing references) //IL_0d3f: Unknown result type (might be due to invalid IL or missing references) //IL_0d45: Unknown result type (might be due to invalid IL or missing references) //IL_0d4f: Unknown result type (might be due to invalid IL or missing references) //IL_0d54: Unknown result type (might be due to invalid IL or missing references) //IL_0d5a: Unknown result type (might be due to invalid IL or missing references) //IL_0d5f: Unknown result type (might be due to invalid IL or missing references) //IL_0d65: Unknown result type (might be due to invalid IL or missing references) //IL_0d6f: Unknown result type (might be due to invalid IL or missing references) //IL_0d74: Unknown result type (might be due to invalid IL or missing references) //IL_0d7f: Unknown result type (might be due to invalid IL or missing references) //IL_0d85: Unknown result type (might be due to invalid IL or missing references) //IL_0d8a: Unknown result type (might be due to invalid IL or missing references) //IL_0d90: Unknown result type (might be due to invalid IL or missing references) //IL_0d95: Unknown result type (might be due to invalid IL or missing references) //IL_0d9b: Unknown result type (might be due to invalid IL or missing references) //IL_0da5: Unknown result type (might be due to invalid IL or missing references) //IL_0daa: Unknown result type (might be due to invalid IL or missing references) //IL_0db0: Unknown result type (might be due to invalid IL or missing references) //IL_0db5: Unknown result type (might be due to invalid IL or missing references) //IL_0dbb: Unknown result type (might be due to invalid IL or missing references) //IL_0dc5: Unknown result type (might be due to invalid IL or missing references) //IL_0dca: Unknown result type (might be due to invalid IL or missing references) //IL_0dd6: Unknown result type (might be due to invalid IL or missing references) //IL_39f6: Unknown result type (might be due to invalid IL or missing references) //IL_39fc: Unknown result type (might be due to invalid IL or missing references) //IL_3a01: Unknown result type (might be due to invalid IL or missing references) //IL_3a07: Unknown result type (might be due to invalid IL or missing references) //IL_3a0c: Unknown result type (might be due to invalid IL or missing references) //IL_3a12: Unknown result type (might be due to invalid IL or missing references) //IL_3a1c: Unknown result type (might be due to invalid IL or missing references) //IL_3a21: Unknown result type (might be due to invalid IL or missing references) //IL_3a27: Unknown result type (might be due to invalid IL or missing references) //IL_3a2c: Unknown result type (might be due to invalid IL or missing references) //IL_3a37: Unknown result type (might be due to invalid IL or missing references) //IL_3a3d: Unknown result type (might be due to invalid IL or missing references) //IL_3a42: Unknown result type (might be due to invalid IL or missing references) //IL_3a48: Unknown result type (might be due to invalid IL or missing references) //IL_3a4d: Unknown result type (might be due to invalid IL or missing references) //IL_3a53: Unknown result type (might be due to invalid IL or missing references) //IL_3a5d: Unknown result type (might be due to invalid IL or missing references) //IL_3a62: Unknown result type (might be due to invalid IL or missing references) //IL_3a68: Unknown result type (might be due to invalid IL or missing references) //IL_3a6d: Unknown result type (might be due to invalid IL or missing references) //IL_3a79: Unknown result type (might be due to invalid IL or missing references) //IL_23de: Unknown result type (might be due to invalid IL or missing references) //IL_23e4: Unknown result type (might be due to invalid IL or missing references) //IL_23e9: Unknown result type (might be due to invalid IL or missing references) //IL_23ef: Unknown result type (might be due to invalid IL or missing references) //IL_23f4: Unknown result type (might be due to invalid IL or missing references) //IL_23fa: Unknown result type (might be due to invalid IL or missing references) //IL_2404: Unknown result type (might be due to invalid IL or missing references) //IL_2409: Unknown result type (might be due to invalid IL or missing references) //IL_240f: Unknown result type (might be due to invalid IL or missing references) //IL_2414: Unknown result type (might be due to invalid IL or missing references) //IL_241a: Unknown result type (might be due to invalid IL or missing references) //IL_2424: Unknown result type (might be due to invalid IL or missing references) //IL_2429: Unknown result type (might be due to invalid IL or missing references) //IL_2434: Unknown result type (might be due to invalid IL or missing references) //IL_243a: Unknown result type (might be due to invalid IL or missing references) //IL_243f: Unknown result type (might be due to invalid IL or missing references) //IL_2445: Unknown result type (might be due to invalid IL or missing references) //IL_244a: Unknown result type (might be due to invalid IL or missing references) //IL_2450: Unknown result type (might be due to invalid IL or missing references) //IL_245a: Unknown result type (might be due to invalid IL or missing references) //IL_245f: Unknown result type (might be due to invalid IL or missing references) //IL_2465: Unknown result type (might be due to invalid IL or missing references) //IL_246a: Unknown result type (might be due to invalid IL or missing references) //IL_2470: Unknown result type (might be due to invalid IL or missing references) //IL_247a: Unknown result type (might be due to invalid IL or missing references) //IL_247f: Unknown result type (might be due to invalid IL or missing references) //IL_248b: Unknown result type (might be due to invalid IL or missing references) //IL_0df0: Unknown result type (might be due to invalid IL or missing references) //IL_0df6: Unknown result type (might be due to invalid IL or missing references) //IL_0dfb: Unknown result type (might be due to invalid IL or missing references) //IL_0e01: Unknown result type (might be due to invalid IL or missing references) //IL_0e06: Unknown result type (might be due to invalid IL or missing references) //IL_0e0c: Unknown result type (might be due to invalid IL or missing references) //IL_0e16: Unknown result type (might be due to invalid IL or missing references) //IL_0e1b: Unknown result type (might be due to invalid IL or missing references) //IL_0e21: Unknown result type (might be due to invalid IL or missing references) //IL_0e26: Unknown result type (might be due to invalid IL or missing references) //IL_0e2c: Unknown result type (might be due to invalid IL or missing references) //IL_0e36: Unknown result type (might be due to invalid IL or missing references) //IL_0e3b: Unknown result type (might be due to invalid IL or missing references) //IL_0e46: Unknown result type (might be due to invalid IL or missing references) //IL_0e4c: Unknown result type (might be due to invalid IL or missing references) //IL_0e51: Unknown result type (might be due to invalid IL or missing references) //IL_0e57: Unknown result type (might be due to invalid IL or missing references) //IL_0e5c: Unknown result type (might be due to invalid IL or missing references) //IL_0e62: Unknown result type (might be due to invalid IL or missing references) //IL_0e6c: Unknown result type (might be due to invalid IL or missing references) //IL_0e71: Unknown result type (might be due to invalid IL or missing references) //IL_0e77: Unknown result type (might be due to invalid IL or missing references) //IL_0e7c: Unknown result type (might be due to invalid IL or missing references) //IL_0e82: Unknown result type (might be due to invalid IL or missing references) //IL_0e8c: Unknown result type (might be due to invalid IL or missing references) //IL_0e91: Unknown result type (might be due to invalid IL or missing references) //IL_0e9d: Unknown result type (might be due to invalid IL or missing references) //IL_3a93: Unknown result type (might be due to invalid IL or missing references) //IL_3a99: Unknown result type (might be due to invalid IL or missing references) //IL_3a9e: Unknown result type (might be due to invalid IL or missing references) //IL_3aa4: Unknown result type (might be due to invalid IL or missing references) //IL_3aa9: Unknown result type (might be due to invalid IL or missing references) //IL_3aaf: Unknown result type (might be due to invalid IL or missing references) //IL_3ab9: Unknown result type (might be due to invalid IL or missing references) //IL_3abe: Unknown result type (might be due to invalid IL or missing references) //IL_3ac4: Unknown result type (might be due to invalid IL or missing references) //IL_3ac9: Unknown result type (might be due to invalid IL or missing references) //IL_3acf: Unknown result type (might be due to invalid IL or missing references) //IL_3ad9: Unknown result type (might be due to invalid IL or missing references) //IL_3ade: Unknown result type (might be due to invalid IL or missing references) //IL_3ae9: Unknown result type (might be due to invalid IL or missing references) //IL_3aef: Unknown result type (might be due to invalid IL or missing references) //IL_3af4: Unknown result type (might be due to invalid IL or missing references) //IL_3afa: Unknown result type (might be due to invalid IL or missing references) //IL_3aff: Unknown result type (might be due to invalid IL or missing references) //IL_3b05: Unknown result type (might be due to invalid IL or missing references) //IL_3b0f: Unknown result type (might be due to invalid IL or missing references) //IL_3b14: Unknown result type (might be due to invalid IL or missing references) //IL_3b1a: Unknown result type (might be due to invalid IL or missing references) //IL_3b1f: Unknown result type (might be due to invalid IL or missing references) //IL_3b25: Unknown result type (might be due to invalid IL or missing references) //IL_3b2f: Unknown result type (might be due to invalid IL or missing references) //IL_3b34: Unknown result type (might be due to invalid IL or missing references) //IL_3b40: Unknown result type (might be due to invalid IL or missing references) //IL_24a5: Unknown result type (might be due to invalid IL or missing references) //IL_24ab: Unknown result type (might be due to invalid IL or missing references) //IL_24b0: Unknown result type (might be due to invalid IL or missing references) //IL_24b6: Unknown result type (might be due to invalid IL or missing references) //IL_24bb: Unknown result type (might be due to invalid IL or missing references) //IL_24c1: Unknown result type (might be due to invalid IL or missing references) //IL_24cb: Unknown result type (might be due to invalid IL or missing references) //IL_24d0: Unknown result type (might be due to invalid IL or missing references) //IL_24d6: Unknown result type (might be due to invalid IL or missing references) //IL_24db: Unknown result type (might be due to invalid IL or missing references) //IL_24e1: Unknown result type (might be due to invalid IL or missing references) //IL_24eb: Unknown result type (might be due to invalid IL or missing references) //IL_24f0: Unknown result type (might be due to invalid IL or missing references) //IL_24fb: Unknown result type (might be due to invalid IL or missing references) //IL_2501: Unknown result type (might be due to invalid IL or missing references) //IL_2506: Unknown result type (might be due to invalid IL or missing references) //IL_250c: Unknown result type (might be due to invalid IL or missing references) //IL_2511: Unknown result type (might be due to invalid IL or missing references) //IL_2517: Unknown result type (might be due to invalid IL or missing references) //IL_2521: Unknown result type (might be due to invalid IL or missing references) //IL_2526: Unknown result type (might be due to invalid IL or missing references) //IL_252c: Unknown result type (might be due to invalid IL or missing references) //IL_2531: Unknown result type (might be due to invalid IL or missing references) //IL_2537: Unknown result type (might be due to invalid IL or missing references) //IL_2541: Unknown result type (might be due to invalid IL or missing references) //IL_2546: Unknown result type (might be due to invalid IL or missing references) //IL_2552: Unknown result type (might be due to invalid IL or missing references) //IL_0eb7: Unknown result type (might be due to invalid IL or missing references) //IL_0ebd: Unknown result type (might be due to invalid IL or missing references) //IL_0ec2: Unknown result type (might be due to invalid IL or missing references) //IL_0ec8: Unknown result type (might be due to invalid IL or missing references) //IL_0ecd: Unknown result type (might be due to invalid IL or missing references) //IL_0ed3: Unknown result type (might be due to invalid IL or missing references) //IL_0edd: Unknown result type (might be due to invalid IL or missing references) //IL_0ee2: Unknown result type (might be due to invalid IL or missing references) //IL_0ee8: Unknown result type (might be due to invalid IL or missing references) //IL_0eed: Unknown result type (might be due to invalid IL or missing references) //IL_0ef3: Unknown result type (might be due to invalid IL or missing references) //IL_0efd: Unknown result type (might be due to invalid IL or missing references) //IL_0f02: Unknown result type (might be due to invalid IL or missing references) //IL_0f0d: Unknown result type (might be due to invalid IL or missing references) //IL_0f13: Unknown result type (might be due to invalid IL or missing references) //IL_0f18: Unknown result type (might be due to invalid IL or missing references) //IL_0f1e: Unknown result type (might be due to invalid IL or missing references) //IL_0f23: Unknown result type (might be due to invalid IL or missing references) //IL_0f29: Unknown result type (might be due to invalid IL or missing references) //IL_0f33: Unknown result type (might be due to invalid IL or missing references) //IL_0f38: Unknown result type (might be due to invalid IL or missing references) //IL_0f3e: Unknown result type (might be due to invalid IL or missing references) //IL_0f43: Unknown result type (might be due to invalid IL or missing references) //IL_0f49: Unknown result type (might be due to invalid IL or missing references) //IL_0f53: Unknown result type (might be due to invalid IL or missing references) //IL_0f58: Unknown result type (might be due to invalid IL or missing references) //IL_0f64: Unknown result type (might be due to invalid IL or missing references) //IL_3b5a: Unknown result type (might be due to invalid IL or missing references) //IL_3b60: Unknown result type (might be due to invalid IL or missing references) //IL_3b65: Unknown result type (might be due to invalid IL or missing references) //IL_3b6b: Unknown result type (might be due to invalid IL or missing references) //IL_3b70: Unknown result type (might be due to invalid IL or missing references) //IL_3b76: Unknown result type (might be due to invalid IL or missing references) //IL_3b80: Unknown result type (might be due to invalid IL or missing references) //IL_3b85: Unknown result type (might be due to invalid IL or missing references) //IL_3b8b: Unknown result type (might be due to invalid IL or missing references) //IL_3b90: Unknown result type (might be due to invalid IL or missing references) //IL_3b96: Unknown result type (might be due to invalid IL or missing references) //IL_3ba0: Unknown result type (might be due to invalid IL or missing references) //IL_3ba5: Unknown result type (might be due to invalid IL or missing references) //IL_3bb0: Unknown result type (might be due to invalid IL or missing references) //IL_3bb6: Unknown result type (might be due to invalid IL or missing references) //IL_3bbb: Unknown result type (might be due to invalid IL or missing references) //IL_3bc1: Unknown result type (might be due to invalid IL or missing references) //IL_3bc6: Unknown result type (might be due to invalid IL or missing references) //IL_3bcc: Unknown result type (might be due to invalid IL or missing references) //IL_3bd6: Unknown result type (might be due to invalid IL or missing references) //IL_3bdb: Unknown result type (might be due to invalid IL or missing references) //IL_3be1: Unknown result type (might be due to invalid IL or missing references) //IL_3be6: Unknown result type (might be due to invalid IL or missing references) //IL_3bec: Unknown result type (might be due to invalid IL or missing references) //IL_3bf6: Unknown result type (might be due to invalid IL or missing references) //IL_3bfb: Unknown result type (might be due to invalid IL or missing references) //IL_3c07: Unknown result type (might be due to invalid IL or missing references) //IL_256c: Unknown result type (might be due to invalid IL or missing references) //IL_2572: Unknown result type (might be due to invalid IL or missing references) //IL_2577: Unknown result type (might be due to invalid IL or missing references) //IL_257d: Unknown result type (might be due to invalid IL or missing references) //IL_2582: Unknown result type (might be due to invalid IL or missing references) //IL_2588: Unknown result type (might be due to invalid IL or missing references) //IL_2592: Unknown result type (might be due to invalid IL or missing references) //IL_2597: Unknown result type (might be due to invalid IL or missing references) //IL_259d: Unknown result type (might be due to invalid IL or missing references) //IL_25a2: Unknown result type (might be due to invalid IL or missing references) //IL_25a8: Unknown result type (might be due to invalid IL or missing references) //IL_25b2: Unknown result type (might be due to invalid IL or missing references) //IL_25b7: Unknown result type (might be due to invalid IL or missing references) //IL_25c2: Unknown result type (might be due to invalid IL or missing references) //IL_25c8: Unknown result type (might be due to invalid IL or missing references) //IL_25cd: Unknown result type (might be due to invalid IL or missing references) //IL_25d3: Unknown result type (might be due to invalid IL or missing references) //IL_25d8: Unknown result type (might be due to invalid IL or missing references) //IL_25de: Unknown result type (might be due to invalid IL or missing references) //IL_25e8: Unknown result type (might be due to invalid IL or missing references) //IL_25ed: Unknown result type (might be due to invalid IL or missing references) //IL_25f3: Unknown result type (might be due to invalid IL or missing references) //IL_25f8: Unknown result type (might be due to invalid IL or missing references) //IL_25fe: Unknown result type (might be due to invalid IL or missing references) //IL_2608: Unknown result type (might be due to invalid IL or missing references) //IL_260d: Unknown result type (might be due to invalid IL or missing references) //IL_2619: Unknown result type (might be due to invalid IL or missing references) //IL_0f7e: Unknown result type (might be due to invalid IL or missing references) //IL_0f84: Unknown result type (might be due to invalid IL or missing references) //IL_0f89: Unknown result type (might be due to invalid IL or missing references) //IL_0f8f: Unknown result type (might be due to invalid IL or missing references) //IL_0f94: Unknown result type (might be due to invalid IL or missing references) //IL_0f9a: Unknown result type (might be due to invalid IL or missing references) //IL_0fa4: Unknown result type (might be due to invalid IL or missing references) //IL_0fa9: Unknown result type (might be due to invalid IL or missing references) //IL_0faf: Unknown result type (might be due to invalid IL or missing references) //IL_0fb4: Unknown result type (might be due to invalid IL or missing references) //IL_0fba: Unknown result type (might be due to invalid IL or missing references) //IL_0fc4: Unknown result type (might be due to invalid IL or missing references) //IL_0fc9: Unknown result type (might be due to invalid IL or missing references) //IL_0fd4: Unknown result type (might be due to invalid IL or missing references) //IL_0fda: Unknown result type (might be due to invalid IL or missing references) //IL_0fdf: Unknown result type (might be due to invalid IL or missing references) //IL_0fe5: Unknown result type (might be due to invalid IL or missing references) //IL_0fea: Unknown result type (might be due to invalid IL or missing references) //IL_0ff0: Unknown result type (might be due to invalid IL or missing references) //IL_0ffa: Unknown result type (might be due to invalid IL or missing references) //IL_0fff: Unknown result type (might be due to invalid IL or missing references) //IL_1005: Unknown result type (might be due to invalid IL or missing references) //IL_100a: Unknown result type (might be due to invalid IL or missing references) //IL_1010: Unknown result type (might be due to invalid IL or missing references) //IL_101a: Unknown result type (might be due to invalid IL or missing references) //IL_101f: Unknown result type (might be due to invalid IL or missing references) //IL_102b: Unknown result type (might be due to invalid IL or missing references) //IL_3c21: Unknown result type (might be due to invalid IL or missing references) //IL_3c27: Unknown result type (might be due to invalid IL or missing references) //IL_3c2c: Unknown result type (might be due to invalid IL or missing references) //IL_3c32: Unknown result type (might be due to invalid IL or missing references) //IL_3c37: Unknown result type (might be due to invalid IL or missing references) //IL_3c3d: Unknown result type (might be due to invalid IL or missing references) //IL_3c47: Unknown result type (might be due to invalid IL or missing references) //IL_3c4c: Unknown result type (might be due to invalid IL or missing references) //IL_3c52: Unknown result type (might be due to invalid IL or missing references) //IL_3c57: Unknown result type (might be due to invalid IL or missing references) //IL_3c5d: Unknown result type (might be due to invalid IL or missing references) //IL_3c67: Unknown result type (might be due to invalid IL or missing references) //IL_3c6c: Unknown result type (might be due to invalid IL or missing references) //IL_3c77: Unknown result type (might be due to invalid IL or missing references) //IL_3c7d: Unknown result type (might be due to invalid IL or missing references) //IL_3c82: Unknown result type (might be due to invalid IL or missing references) //IL_3c88: Unknown result type (might be due to invalid IL or missing references) //IL_3c8d: Unknown result type (might be due to invalid IL or missing references) //IL_3c93: Unknown result type (might be due to invalid IL or missing references) //IL_3c9d: Unknown result type (might be due to invalid IL or missing references) //IL_3ca2: Unknown result type (might be due to invalid IL or missing references) //IL_3ca8: Unknown result type (might be due to invalid IL or missing references) //IL_3cad: Unknown result type (might be due to invalid IL or missing references) //IL_3cb3: Unknown result type (might be due to invalid IL or missing references) //IL_3cbd: Unknown result type (might be due to invalid IL or missing references) //IL_3cc2: Unknown result type (might be due to invalid IL or missing references) //IL_3cce: Unknown result type (might be due to invalid IL or missing references) //IL_2633: Unknown result type (might be due to invalid IL or missing references) //IL_2639: Unknown result type (might be due to invalid IL or missing references) //IL_263e: Unknown result type (might be due to invalid IL or missing references) //IL_2644: Unknown result type (might be due to invalid IL or missing references) //IL_2649: Unknown result type (might be due to invalid IL or missing references) //IL_264f: Unknown result type (might be due to invalid IL or missing references) //IL_2659: Unknown result type (might be due to invalid IL or missing references) //IL_265e: Unknown result type (might be due to invalid IL or missing references) //IL_2664: Unknown result type (might be due to invalid IL or missing references) //IL_2669: Unknown result type (might be due to invalid IL or missing references) //IL_266f: Unknown result type (might be due to invalid IL or missing references) //IL_2679: Unknown result type (might be due to invalid IL or missing references) //IL_267e: Unknown result type (might be due to invalid IL or missing references) //IL_2689: Unknown result type (might be due to invalid IL or missing references) //IL_268f: Unknown result type (might be due to invalid IL or missing references) //IL_2694: Unknown result type (might be due to invalid IL or missing references) //IL_269a: Unknown result type (might be due to invalid IL or missing references) //IL_269f: Unknown result type (might be due to invalid IL or missing references) //IL_26a5: Unknown result type (might be due to invalid IL or missing references) //IL_26af: Unknown result type (might be due to invalid IL or missing references) //IL_26b4: Unknown result type (might be due to invalid IL or missing references) //IL_26ba: Unknown result type (might be due to invalid IL or missing references) //IL_26bf: Unknown result type (might be due to invalid IL or missing references) //IL_26c5: Unknown result type (might be due to invalid IL or missing references) //IL_26cf: Unknown result type (might be due to invalid IL or missing references) //IL_26d4: Unknown result type (might be due to invalid IL or missing references) //IL_26e0: Unknown result type (might be due to invalid IL or missing references) //IL_1045: Unknown result type (might be due to invalid IL or missing references) //IL_104b: Unknown result type (might be due to invalid IL or missing references) //IL_1050: Unknown result type (might be due to invalid IL or missing references) //IL_1056: Unknown result type (might be due to invalid IL or missing references) //IL_105b: Unknown result type (might be due to invalid IL or missing references) //IL_1061: Unknown result type (might be due to invalid IL or missing references) //IL_106b: Unknown result type (might be due to invalid IL or missing references) //IL_1070: Unknown result type (might be due to invalid IL or missing references) //IL_1076: Unknown result type (might be due to invalid IL or missing references) //IL_107b: Unknown result type (might be due to invalid IL or missing references) //IL_1081: Unknown result type (might be due to invalid IL or missing references) //IL_108b: Unknown result type (might be due to invalid IL or missing references) //IL_1090: Unknown result type (might be due to invalid IL or missing references) //IL_109b: Unknown result type (might be due to invalid IL or missing references) //IL_10a1: Unknown result type (might be due to invalid IL or missing references) //IL_10a6: Unknown result type (might be due to invalid IL or missing references) //IL_10ac: Unknown result type (might be due to invalid IL or missing references) //IL_10b1: Unknown result type (might be due to invalid IL or missing references) //IL_10b7: Unknown result type (might be due to invalid IL or missing references) //IL_10c1: Unknown result type (might be due to invalid IL or missing references) //IL_10c6: Unknown result type (might be due to invalid IL or missing references) //IL_10cc: Unknown result type (might be due to invalid IL or missing references) //IL_10d1: Unknown result type (might be due to invalid IL or missing references) //IL_10d7: Unknown result type (might be due to invalid IL or missing references) //IL_10e1: Unknown result type (might be due to invalid IL or missing references) //IL_10e6: Unknown result type (might be due to invalid IL or missing references) //IL_10f2: Unknown result type (might be due to invalid IL or missing references) //IL_3ce8: Unknown result type (might be due to invalid IL or missing references) //IL_3cee: Unknown result type (might be due to invalid IL or missing references) //IL_3cf3: Unknown result type (might be due to invalid IL or missing references) //IL_3cf9: Unknown result type (might be due to invalid IL or missing references) //IL_3cfe: Unknown result type (might be due to invalid IL or missing references) //IL_3d04: Unknown result type (might be due to invalid IL or missing references) //IL_3d0e: Unknown result type (might be due to invalid IL or missing references) //IL_3d13: Unknown result type (might be due to invalid IL or missing references) //IL_3d19: Unknown result type (might be due to invalid IL or missing references) //IL_3d1e: Unknown result type (might be due to invalid IL or missing references) //IL_3d24: Unknown result type (might be due to invalid IL or missing references) //IL_3d2e: Unknown result type (might be due to invalid IL or missing references) //IL_3d33: Unknown result type (might be due to invalid IL or missing references) //IL_3d3e: Unknown result type (might be due to invalid IL or missing references) //IL_3d44: Unknown result type (might be due to invalid IL or missing references) //IL_3d49: Unknown result type (might be due to invalid IL or missing references) //IL_3d4f: Unknown result type (might be due to invalid IL or missing references) //IL_3d54: Unknown result type (might be due to invalid IL or missing references) //IL_3d5a: Unknown result type (might be due to invalid IL or missing references) //IL_3d64: Unknown result type (might be due to invalid IL or missing references) //IL_3d69: Unknown result type (might be due to invalid IL or missing references) //IL_3d6f: Unknown result type (might be due to invalid IL or missing references) //IL_3d74: Unknown result type (might be due to invalid IL or missing references) //IL_3d7a: Unknown result type (might be due to invalid IL or missing references) //IL_3d84: Unknown result type (might be due to invalid IL or missing references) //IL_3d89: Unknown result type (might be due to invalid IL or missing references) //IL_3d95: Unknown result type (might be due to invalid IL or missing references) //IL_26fa: Unknown result type (might be due to invalid IL or missing references) //IL_2700: Unknown result type (might be due to invalid IL or missing references) //IL_2705: Unknown result type (might be due to invalid IL or missing references) //IL_270b: Unknown result type (might be due to invalid IL or missing references) //IL_2710: Unknown result type (might be due to invalid IL or missing references) //IL_2716: Unknown result type (might be due to invalid IL or missing references) //IL_2720: Unknown result type (might be due to invalid IL or missing references) //IL_2725: Unknown result type (might be due to invalid IL or missing references) //IL_272b: Unknown result type (might be due to invalid IL or missing references) //IL_2730: Unknown result type (might be due to invalid IL or missing references) //IL_2736: Unknown result type (might be due to invalid IL or missing references) //IL_2740: Unknown result type (might be due to invalid IL or missing references) //IL_2745: Unknown result type (might be due to invalid IL or missing references) //IL_2750: Unknown result type (might be due to invalid IL or missing references) //IL_2756: Unknown result type (might be due to invalid IL or missing references) //IL_275b: Unknown result type (might be due to invalid IL or missing references) //IL_2761: Unknown result type (might be due to invalid IL or missing references) //IL_2766: Unknown result type (might be due to invalid IL or missing references) //IL_276c: Unknown result type (might be due to invalid IL or missing references) //IL_2776: Unknown result type (might be due to invalid IL or missing references) //IL_277b: Unknown result type (might be due to invalid IL or missing references) //IL_2781: Unknown result type (might be due to invalid IL or missing references) //IL_2786: Unknown result type (might be due to invalid IL or missing references) //IL_278c: Unknown result type (might be due to invalid IL or missing references) //IL_2796: Unknown result type (might be due to invalid IL or missing references) //IL_279b: Unknown result type (might be due to invalid IL or missing references) //IL_27a7: Unknown result type (might be due to invalid IL or missing references) //IL_110c: Unknown result type (might be due to invalid IL or missing references) //IL_1112: Unknown result type (might be due to invalid IL or missing references) //IL_1117: Unknown result type (might be due to invalid IL or missing references) //IL_111d: Unknown result type (might be due to invalid IL or missing references) //IL_1122: Unknown result type (might be due to invalid IL or missing references) //IL_1128: Unknown result type (might be due to invalid IL or missing references) //IL_1132: Unknown result type (might be due to invalid IL or missing references) //IL_1137: Unknown result type (might be due to invalid IL or missing references) //IL_113d: Unknown result type (might be due to invalid IL or missing references) //IL_1142: Unknown result type (might be due to invalid IL or missing references) //IL_114d: Unknown result type (might be due to invalid IL or missing references) //IL_1153: Unknown result type (might be due to invalid IL or missing references) //IL_1158: Unknown result type (might be due to invalid IL or missing references) //IL_115e: Unknown result type (might be due to invalid IL or missing references) //IL_1163: Unknown result type (might be due to invalid IL or missing references) //IL_1169: Unknown result type (might be due to invalid IL or missing references) //IL_1173: Unknown result type (might be due to invalid IL or missing references) //IL_1178: Unknown result type (might be due to invalid IL or missing references) //IL_117e: Unknown result type (might be due to invalid IL or missing references) //IL_1183: Unknown result type (might be due to invalid IL or missing references) //IL_118f: Unknown result type (might be due to invalid IL or missing references) //IL_3daf: Unknown result type (might be due to invalid IL or missing references) //IL_3db5: Unknown result type (might be due to invalid IL or missing references) //IL_3dba: Unknown result type (might be due to invalid IL or missing references) //IL_3dc0: Unknown result type (might be due to invalid IL or missing references) //IL_3dc5: Unknown result type (might be due to invalid IL or missing references) //IL_3dcb: Unknown result type (might be due to invalid IL or missing references) //IL_3dd5: Unknown result type (might be due to invalid IL or missing references) //IL_3dda: Unknown result type (might be due to invalid IL or missing references) //IL_3de0: Unknown result type (might be due to invalid IL or missing references) //IL_3de5: Unknown result type (might be due to invalid IL or missing references) //IL_3deb: Unknown result type (might be due to invalid IL or missing references) //IL_3df5: Unknown result type (might be due to invalid IL or missing references) //IL_3dfa: Unknown result type (might be due to invalid IL or missing references) //IL_3e05: Unknown result type (might be due to invalid IL or missing references) //IL_3e0b: Unknown result type (might be due to invalid IL or missing references) //IL_3e10: Unknown result type (might be due to invalid IL or missing references) //IL_3e16: Unknown result type (might be due to invalid IL or missing references) //IL_3e1b: Unknown result type (might be due to invalid IL or missing references) //IL_3e21: Unknown result type (might be due to invalid IL or missing references) //IL_3e2b: Unknown result type (might be due to invalid IL or missing references) //IL_3e30: Unknown result type (might be due to invalid IL or missing references) //IL_3e36: Unknown result type (might be due to invalid IL or missing references) //IL_3e3b: Unknown result type (might be due to invalid IL or missing references) //IL_3e41: Unknown result type (might be due to invalid IL or missing references) //IL_3e4b: Unknown result type (might be due to invalid IL or missing references) //IL_3e50: Unknown result type (might be due to invalid IL or missing references) //IL_3e5c: Unknown result type (might be due to invalid IL or missing references) //IL_27c1: Unknown result type (might be due to invalid IL or missing references) //IL_27c7: Unknown result type (might be due to invalid IL or missing references) //IL_27cc: Unknown result type (might be due to invalid IL or missing references) //IL_27d2: Unknown result type (might be due to invalid IL or missing references) //IL_27d7: Unknown result type (might be due to invalid IL or missing references) //IL_27dd: Unknown result type (might be due to invalid IL or missing references) //IL_27e7: Unknown result type (might be due to invalid IL or missing references) //IL_27ec: Unknown result type (might be due to invalid IL or missing references) //IL_27f2: Unknown result type (might be due to invalid IL or missing references) //IL_27f7: Unknown result type (might be due to invalid IL or missing references) //IL_27fd: Unknown result type (might be due to invalid IL or missing references) //IL_2807: Unknown result type (might be due to invalid IL or missing references) //IL_280c: Unknown result type (might be due to invalid IL or missing references) //IL_2817: Unknown result type (might be due to invalid IL or missing references) //IL_281d: Unknown result type (might be due to invalid IL or missing references) //IL_2822: Unknown result type (might be due to invalid IL or missing references) //IL_2828: Unknown result type (might be due to invalid IL or missing references) //IL_282d: Unknown result type (might be due to invalid IL or missing references) //IL_2833: Unknown result type (might be due to invalid IL or missing references) //IL_283d: Unknown result type (might be due to invalid IL or missing references) //IL_2842: Unknown result type (might be due to invalid IL or missing references) //IL_2848: Unknown result type (might be due to invalid IL or missing references) //IL_284d: Unknown result type (might be due to invalid IL or missing references) //IL_2853: Unknown result type (might be due to invalid IL or missing references) //IL_285d: Unknown result type (might be due to invalid IL or missing references) //IL_2862: Unknown result type (might be due to invalid IL or missing references) //IL_286e: Unknown result type (might be due to invalid IL or missing references) //IL_11a9: Unknown result type (might be due to invalid IL or missing references) //IL_11af: Unknown result type (might be due to invalid IL or missing references) //IL_11b4: Unknown result type (might be due to invalid IL or missing references) //IL_11ba: Unknown result type (might be due to invalid IL or missing references) //IL_11bf: Unknown result type (might be due to invalid IL or missing references) //IL_11c5: Unknown result type (might be due to invalid IL or missing references) //IL_11cf: Unknown result type (might be due to invalid IL or missing references) //IL_11d4: Unknown result type (might be due to invalid IL or missing references) //IL_11da: Unknown result type (might be due to invalid IL or missing references) //IL_11df: Unknown result type (might be due to invalid IL or missing references) //IL_11e5: Unknown result type (might be due to invalid IL or missing references) //IL_11ef: Unknown result type (might be due to invalid IL or missing references) //IL_11f4: Unknown result type (might be due to invalid IL or missing references) //IL_11ff: Unknown result type (might be due to invalid IL or missing references) //IL_1205: Unknown result type (might be due to invalid IL or missing references) //IL_120a: Unknown result type (might be due to invalid IL or missing references) //IL_1210: Unknown result type (might be due to invalid IL or missing references) //IL_1215: Unknown result type (might be due to invalid IL or missing references) //IL_121b: Unknown result type (might be due to invalid IL or missing references) //IL_1225: Unknown result type (might be due to invalid IL or missing references) //IL_122a: Unknown result type (might be due to invalid IL or missing references) //IL_1230: Unknown result type (might be due to invalid IL or missing references) //IL_1235: Unknown result type (might be due to invalid IL or missing references) //IL_123b: Unknown result type (might be due to invalid IL or missing references) //IL_1245: Unknown result type (might be due to invalid IL or missing references) //IL_124a: Unknown result type (might be due to invalid IL or missing references) //IL_1256: Unknown result type (might be due to invalid IL or missing references) //IL_3e76: Unknown result type (might be due to invalid IL or missing references) //IL_3e7c: Unknown result type (might be due to invalid IL or missing references) //IL_3e81: Unknown result type (might be due to invalid IL or missing references) //IL_3e87: Unknown result type (might be due to invalid IL or missing references) //IL_3e8c: Unknown result type (might be due to invalid IL or missing references) //IL_3e92: Unknown result type (might be due to invalid IL or missing references) //IL_3e9c: Unknown result type (might be due to invalid IL or missing references) //IL_3ea1: Unknown result type (might be due to invalid IL or missing references) //IL_3ea7: Unknown result type (might be due to invalid IL or missing references) //IL_3eac: Unknown result type (might be due to invalid IL or missing references) //IL_3eb2: Unknown result type (might be due to invalid IL or missing references) //IL_3ebc: Unknown result type (might be due to invalid IL or missing references) //IL_3ec1: Unknown result type (might be due to invalid IL or missing references) //IL_3ecc: Unknown result type (might be due to invalid IL or missing references) //IL_3ed2: Unknown result type (might be due to invalid IL or missing references) //IL_3ed7: Unknown result type (might be due to invalid IL or missing references) //IL_3edd: Unknown result type (might be due to invalid IL or missing references) //IL_3ee2: Unknown result type (might be due to invalid IL or missing references) //IL_3ee8: Unknown result type (might be due to invalid IL or missing references) //IL_3ef2: Unknown result type (might be due to invalid IL or missing references) //IL_3ef7: Unknown result type (might be due to invalid IL or missing references) //IL_3efd: Unknown result type (might be due to invalid IL or missing references) //IL_3f02: Unknown result type (might be due to invalid IL or missing references) //IL_3f08: Unknown result type (might be due to invalid IL or missing references) //IL_3f12: Unknown result type (might be due to invalid IL or missing references) //IL_3f17: Unknown result type (might be due to invalid IL or missing references) //IL_3f23: Unknown result type (might be due to invalid IL or missing references) //IL_2888: Unknown result type (might be due to invalid IL or missing references) //IL_288e: Unknown result type (might be due to invalid IL or missing references) //IL_2893: Unknown result type (might be due to invalid IL or missing references) //IL_2899: Unknown result type (might be due to invalid IL or missing references) //IL_289e: Unknown result type (might be due to invalid IL or missing references) //IL_28a4: Unknown result type (might be due to invalid IL or missing references) //IL_28ae: Unknown result type (might be due to invalid IL or missing references) //IL_28b3: Unknown result type (might be due to invalid IL or missing references) //IL_28b9: Unknown result type (might be due to invalid IL or missing references) //IL_28be: Unknown result type (might be due to invalid IL or missing references) //IL_28c9: Unknown result type (might be due to invalid IL or missing references) //IL_28cf: Unknown result type (might be due to invalid IL or missing references) //IL_28d4: Unknown result type (might be due to invalid IL or missing references) //IL_28da: Unknown result type (might be due to invalid IL or missing references) //IL_28df: Unknown result type (might be due to invalid IL or missing references) //IL_28e5: Unknown result type (might be due to invalid IL or missing references) //IL_28ef: Unknown result type (might be due to invalid IL or missing references) //IL_28f4: Unknown result type (might be due to invalid IL or missing references) //IL_28fa: Unknown result type (might be due to invalid IL or missing references) //IL_28ff: Unknown result type (might be due to invalid IL or missing references) //IL_290b: Unknown result type (might be due to invalid IL or missing references) //IL_1270: Unknown result type (might be due to invalid IL or missing references) //IL_1276: Unknown result type (might be due to invalid IL or missing references) //IL_127b: Unknown result type (might be due to invalid IL or missing references) //IL_1281: Unknown result type (might be due to invalid IL or missing references) //IL_1286: Unknown result type (might be due to invalid IL or missing references) //IL_128c: Unknown result type (might be due to invalid IL or missing references) //IL_1296: Unknown result type (might be due to invalid IL or missing references) //IL_129b: Unknown result type (might be due to invalid IL or missing references) //IL_12a1: Unknown result type (might be due to invalid IL or missing references) //IL_12a6: Unknown result type (might be due to invalid IL or missing references) //IL_12ac: Unknown result type (might be due to invalid IL or missing references) //IL_12b6: Unknown result type (might be due to invalid IL or missing references) //IL_12bb: Unknown result type (might be due to invalid IL or missing references) //IL_12c6: Unknown result type (might be due to invalid IL or missing references) //IL_12cc: Unknown result type (might be due to invalid IL or missing references) //IL_12d1: Unknown result type (might be due to invalid IL or missing references) //IL_12d7: Unknown result type (might be due to invalid IL or missing references) //IL_12dc: Unknown result type (might be due to invalid IL or missing references) //IL_12e2: Unknown result type (might be due to invalid IL or missing references) //IL_12ec: Unknown result type (might be due to invalid IL or missing references) //IL_12f1: Unknown result type (might be due to invalid IL or missing references) //IL_12f7: Unknown result type (might be due to invalid IL or missing references) //IL_12fc: Unknown result type (might be due to invalid IL or missing references) //IL_1302: Unknown result type (might be due to invalid IL or missing references) //IL_130c: Unknown result type (might be due to invalid IL or missing references) //IL_1311: Unknown result type (might be due to invalid IL or missing references) //IL_131d: Unknown result type (might be due to invalid IL or missing references) //IL_3f3d: Unknown result type (might be due to invalid IL or missing references) //IL_3f43: Unknown result type (might be due to invalid IL or missing references) //IL_3f48: Unknown result type (might be due to invalid IL or missing references) //IL_3f4e: Unknown result type (might be due to invalid IL or missing references) //IL_3f53: Unknown result type (might be due to invalid IL or missing references) //IL_3f59: Unknown result type (might be due to invalid IL or missing references) //IL_3f63: Unknown result type (might be due to invalid IL or missing references) //IL_3f68: Unknown result type (might be due to invalid IL or missing references) //IL_3f6e: Unknown result type (might be due to invalid IL or missing references) //IL_3f73: Unknown result type (might be due to invalid IL or missing references) //IL_3f79: Unknown result type (might be due to invalid IL or missing references) //IL_3f83: Unknown result type (might be due to invalid IL or missing references) //IL_3f88: Unknown result type (might be due to invalid IL or missing references) //IL_3f93: Unknown result type (might be due to invalid IL or missing references) //IL_3f99: Unknown result type (might be due to invalid IL or missing references) //IL_3f9e: Unknown result type (might be due to invalid IL or missing references) //IL_3fa4: Unknown result type (might be due to invalid IL or missing references) //IL_3fa9: Unknown result type (might be due to invalid IL or missing references) //IL_3faf: Unknown result type (might be due to invalid IL or missing references) //IL_3fb9: Unknown result type (might be due to invalid IL or missing references) //IL_3fbe: Unknown result type (might be due to invalid IL or missing references) //IL_3fc4: Unknown result type (might be due to invalid IL or missing references) //IL_3fc9: Unknown result type (might be due to invalid IL or missing references) //IL_3fcf: Unknown result type (might be due to invalid IL or missing references) //IL_3fd9: Unknown result type (might be due to invalid IL or missing references) //IL_3fde: Unknown result type (might be due to invalid IL or missing references) //IL_3fea: Unknown result type (might be due to invalid IL or missing references) //IL_2925: Unknown result type (might be due to invalid IL or missing references) //IL_292b: Unknown result type (might be due to invalid IL or missing references) //IL_2930: Unknown result type (might be due to invalid IL or missing references) //IL_2936: Unknown result type (might be due to invalid IL or missing references) //IL_293b: Unknown result type (might be due to invalid IL or missing references) //IL_2941: Unknown result type (might be due to invalid IL or missing references) //IL_294b: Unknown result type (might be due to invalid IL or missing references) //IL_2950: Unknown result type (might be due to invalid IL or missing references) //IL_2956: Unknown result type (might be due to invalid IL or missing references) //IL_295b: Unknown result type (might be due to invalid IL or missing references) //IL_2961: Unknown result type (might be due to invalid IL or missing references) //IL_296b: Unknown result type (might be due to invalid IL or missing references) //IL_2970: Unknown result type (might be due to invalid IL or missing references) //IL_297b: Unknown result type (might be due to invalid IL or missing references) //IL_2981: Unknown result type (might be due to invalid IL or missing references) //IL_2986: Unknown result type (might be due to invalid IL or missing references) //IL_298c: Unknown result type (might be due to invalid IL or missing references) //IL_2991: Unknown result type (might be due to invalid IL or missing references) //IL_2997: Unknown result type (might be due to invalid IL or missing references) //IL_29a1: Unknown result type (might be due to invalid IL or missing references) //IL_29a6: Unknown result type (might be due to invalid IL or missing references) //IL_29ac: Unknown result type (might be due to invalid IL or missing references) //IL_29b1: Unknown result type (might be due to invalid IL or missing references) //IL_29b7: Unknown result type (might be due to invalid IL or missing references) //IL_29c1: Unknown result type (might be due to invalid IL or missing references) //IL_29c6: Unknown result type (might be due to invalid IL or missing references) //IL_29d2: Unknown result type (might be due to invalid IL or missing references) //IL_1337: Unknown result type (might be due to invalid IL or missing references) //IL_133d: Unknown result type (might be due to invalid IL or missing references) //IL_1342: Unknown result type (might be due to invalid IL or missing references) //IL_1348: Unknown result type (might be due to invalid IL or missing references) //IL_134d: Unknown result type (might be due to invalid IL or missing references) //IL_1353: Unknown result type (might be due to invalid IL or missing references) //IL_135d: Unknown result type (might be due to invalid IL or missing references) //IL_1362: Unknown result type (might be due to invalid IL or missing references) //IL_1368: Unknown result type (might be due to invalid IL or missing references) //IL_136d: Unknown result type (might be due to invalid IL or missing references) //IL_1373: Unknown result type (might be due to invalid IL or missing references) //IL_137d: Unknown result type (might be due to invalid IL or missing references) //IL_1382: Unknown result type (might be due to invalid IL or missing references) //IL_138d: Unknown result type (might be due to invalid IL or missing references) //IL_1393: Unknown result type (might be due to invalid IL or missing references) //IL_1398: Unknown result type (might be due to invalid IL or missing references) //IL_139e: Unknown result type (might be due to invalid IL or missing references) //IL_13a3: Unknown result type (might be due to invalid IL or missing references) //IL_13a9: Unknown result type (might be due to invalid IL or missing references) //IL_13b3: Unknown result type (might be due to invalid IL or missing references) //IL_13b8: Unknown result type (might be due to invalid IL or missing references) //IL_13be: Unknown result type (might be due to invalid IL or missing references) //IL_13c3: Unknown result type (might be due to invalid IL or missing references) //IL_13c9: Unknown result type (might be due to invalid IL or missing references) //IL_13d3: Unknown result type (might be due to invalid IL or missing references) //IL_13d8: Unknown result type (might be due to invalid IL or missing references) //IL_13e4: Unknown result type (might be due to invalid IL or missing references) //IL_4004: Unknown result type (might be due to invalid IL or missing references) //IL_400a: Unknown result type (might be due to invalid IL or missing references) //IL_400f: Unknown result type (might be due to invalid IL or missing references) //IL_4015: Unknown result type (might be due to invalid IL or missing references) //IL_401a: Unknown result type (might be due to invalid IL or missing references) //IL_4020: Unknown result type (might be due to invalid IL or missing references) //IL_402a: Unknown result type (might be due to invalid IL or missing references) //IL_402f: Unknown result type (might be due to invalid IL or missing references) //IL_4035: Unknown result type (might be due to invalid IL or missing references) //IL_403a: Unknown result type (might be due to invalid IL or missing references) //IL_4045: Unknown result type (might be due to invalid IL or missing references) //IL_404b: Unknown result type (might be due to invalid IL or missing references) //IL_4050: Unknown result type (might be due to invalid IL or missing references) //IL_4056: Unknown result type (might be due to invalid IL or missing references) //IL_405b: Unknown result type (might be due to invalid IL or missing references) //IL_4061: Unknown result type (might be due to invalid IL or missing references) //IL_406b: Unknown result type (might be due to invalid IL or missing references) //IL_4070: Unknown result type (might be due to invalid IL or missing references) //IL_4076: Unknown result type (might be due to invalid IL or missing references) //IL_407b: Unknown result type (might be due to invalid IL or missing references) //IL_4087: Unknown result type (might be due to invalid IL or missing references) //IL_29ec: Unknown result type (might be due to invalid IL or missing references) //IL_29f2: Unknown result type (might be due to invalid IL or missing references) //IL_29f7: Unknown result type (might be due to invalid IL or missing references) //IL_29fd: Unknown result type (might be due to invalid IL or missing references) //IL_2a02: Unknown result type (might be due to invalid IL or missing references) //IL_2a08: Unknown result type (might be due to invalid IL or missing references) //IL_2a12: Unknown result type (might be due to invalid IL or missing references) //IL_2a17: Unknown result type (might be due to invalid IL or missing references) //IL_2a1d: Unknown result type (might be due to invalid IL or missing references) //IL_2a22: Unknown result type (might be due to invalid IL or missing references) //IL_2a28: Unknown result type (might be due to invalid IL or missing references) //IL_2a32: Unknown result type (might be due to invalid IL or missing references) //IL_2a37: Unknown result type (might be due to invalid IL or missing references) //IL_2a42: Unknown result type (might be due to invalid IL or missing references) //IL_2a48: Unknown result type (might be due to invalid IL or missing references) //IL_2a4d: Unknown result type (might be due to invalid IL or missing references) //IL_2a53: Unknown result type (might be due to invalid IL or missing references) //IL_2a58: Unknown result type (might be due to invalid IL or missing references) //IL_2a5e: Unknown result type (might be due to invalid IL or missing references) //IL_2a68: Unknown result type (might be due to invalid IL or missing references) //IL_2a6d: Unknown result type (might be due to invalid IL or missing references) //IL_2a73: Unknown result type (might be due to invalid IL or missing references) //IL_2a78: Unknown result type (might be due to invalid IL or missing references) //IL_2a7e: Unknown result type (might be due to invalid IL or missing references) //IL_2a88: Unknown result type (might be due to invalid IL or missing references) //IL_2a8d: Unknown result type (might be due to invalid IL or missing references) //IL_2a99: Unknown result type (might be due to invalid IL or missing references) //IL_13fe: Unknown result type (might be due to invalid IL or missing references) //IL_1404: Unknown result type (might be due to invalid IL or missing references) //IL_1409: Unknown result type (might be due to invalid IL or missing references) //IL_140f: Unknown result type (might be due to invalid IL or missing references) //IL_1414: Unknown result type (might be due to invalid IL or missing references) //IL_141a: Unknown result type (might be due to invalid IL or missing references) //IL_1424: Unknown result type (might be due to invalid IL or missing references) //IL_1429: Unknown result type (might be due to invalid IL or missing references) //IL_142f: Unknown result type (might be due to invalid IL or missing references) //IL_1434: Unknown result type (might be due to invalid IL or missing references) //IL_143a: Unknown result type (might be due to invalid IL or missing references) //IL_1444: Unknown result type (might be due to invalid IL or missing references) //IL_1449: Unknown result type (might be due to invalid IL or missing references) //IL_1454: Unknown result type (might be due to invalid IL or missing references) //IL_145a: Unknown result type (might be due to invalid IL or missing references) //IL_145f: Unknown result type (might be due to invalid IL or missing references) //IL_1465: Unknown result type (might be due to invalid IL or missing references) //IL_146a: Unknown result type (might be due to invalid IL or missing references) //IL_1470: Unknown result type (might be due to invalid IL or missing references) //IL_147a: Unknown result type (might be due to invalid IL or missing references) //IL_147f: Unknown result type (might be due to invalid IL or missing references) //IL_1485: Unknown result type (might be due to invalid IL or missing references) //IL_148a: Unknown result type (might be due to invalid IL or missing references) //IL_1490: Unknown result type (might be due to invalid IL or missing references) //IL_149a: Unknown result type (might be due to invalid IL or missing references) //IL_149f: Unknown result type (might be due to invalid IL or missing references) //IL_14ab: Unknown result type (might be due to invalid IL or missing references) //IL_40a1: Unknown result type (might be due to invalid IL or missing references) //IL_40a7: Unknown result type (might be due to invalid IL or missing references) //IL_40ac: Unknown result type (might be due to invalid IL or missing references) //IL_40b2: Unknown result type (might be due to invalid IL or missing references) //IL_40b7: Unknown result type (might be due to invalid IL or missing references) //IL_40bd: Unknown result type (might be due to invalid IL or missing references) //IL_40c7: Unknown result type (might be due to invalid IL or missing references) //IL_40cc: Unknown result type (might be due to invalid IL or missing references) //IL_40d2: Unknown result type (might be due to invalid IL or missing references) //IL_40d7: Unknown result type (might be due to invalid IL or missing references) //IL_40dd: Unknown result type (might be due to invalid IL or missing references) //IL_40e7: Unknown result type (might be due to invalid IL or missing references) //IL_40ec: Unknown result type (might be due to invalid IL or missing references) //IL_40f7: Unknown result type (might be due to invalid IL or missing references) //IL_40fd: Unknown result type (might be due to invalid IL or missing references) //IL_4102: Unknown result type (might be due to invalid IL or missing references) //IL_4108: Unknown result type (might be due to invalid IL or missing references) //IL_410d: Unknown result type (might be due to invalid IL or missing references) //IL_4113: Unknown result type (might be due to invalid IL or missing references) //IL_411d: Unknown result type (might be due to invalid IL or missing references) //IL_4122: Unknown result type (might be due to invalid IL or missing references) //IL_4128: Unknown result type (might be due to invalid IL or missing references) //IL_412d: Unknown result type (might be due to invalid IL or missing references) //IL_4133: Unknown result type (might be due to invalid IL or missing references) //IL_413d: Unknown result type (might be due to invalid IL or missing references) //IL_4142: Unknown result type (might be due to invalid IL or missing references) //IL_414e: Unknown result type (might be due to invalid IL or missing references) //IL_2ab3: Unknown result type (might be due to invalid IL or missing references) //IL_2ab9: Unknown result type (might be due to invalid IL or missing references) //IL_2abe: Unknown result type (might be due to invalid IL or missing references) //IL_2ac4: Unknown result type (might be due to invalid IL or missing references) //IL_2ac9: Unknown result type (might be due to invalid IL or missing references) //IL_2acf: Unknown result type (might be due to invalid IL or missing references) //IL_2ad9: Unknown result type (might be due to invalid IL or missing references) //IL_2ade: Unknown result type (might be due to invalid IL or missing references) //IL_2ae4: Unknown result type (might be due to invalid IL or missing references) //IL_2ae9: Unknown result type (might be due to invalid IL or missing references) //IL_2aef: Unknown result type (might be due to invalid IL or missing references) //IL_2af9: Unknown result type (might be due to invalid IL or missing references) //IL_2afe: Unknown result type (might be due to invalid IL or missing references) //IL_2b09: Unknown result type (might be due to invalid IL or missing references) //IL_2b0f: Unknown result type (might be due to invalid IL or missing references) //IL_2b14: Unknown result type (might be due to invalid IL or missing references) //IL_2b1a: Unknown result type (might be due to invalid IL or missing references) //IL_2b1f: Unknown result type (might be due to invalid IL or missing references) //IL_2b25: Unknown result type (might be due to invalid IL or missing references) //IL_2b2f: Unknown result type (might be due to invalid IL or missing references) //IL_2b34: Unknown result type (might be due to invalid IL or missing references) //IL_2b3a: Unknown result type (might be due to invalid IL or missing references) //IL_2b3f: Unknown result type (might be due to invalid IL or missing references) //IL_2b45: Unknown result type (might be due to invalid IL or missing references) //IL_2b4f: Unknown result type (might be due to invalid IL or missing references) //IL_2b54: Unknown result type (might be due to invalid IL or missing references) //IL_2b60: Unknown result type (might be due to invalid IL or missing references) //IL_14c5: Unknown result type (might be due to invalid IL or missing references) //IL_14cb: Unknown result type (might be due to invalid IL or missing references) //IL_14d0: Unknown result type (might be due to invalid IL or missing references) //IL_14d6: Unknown result type (might be due to invalid IL or missing references) //IL_14db: Unknown result type (might be due to invalid IL or missing references) //IL_14e1: Unknown result type (might be due to invalid IL or missing references) //IL_14eb: Unknown result type (might be due to invalid IL or missing references) //IL_14f0: Unknown result type (might be due to invalid IL or missing references) //IL_14f6: Unknown result type (might be due to invalid IL or missing references) //IL_14fb: Unknown result type (might be due to invalid IL or missing references) //IL_1501: Unknown result type (might be due to invalid IL or missing references) //IL_150b: Unknown result type (might be due to invalid IL or missing references) //IL_1510: Unknown result type (might be due to invalid IL or missing references) //IL_151b: Unknown result type (might be due to invalid IL or missing references) //IL_1521: Unknown result type (might be due to invalid IL or missing references) //IL_1526: Unknown result type (might be due to invalid IL or missing references) //IL_152c: Unknown result type (might be due to invalid IL or missing references) //IL_1531: Unknown result type (might be due to invalid IL or missing references) //IL_1537: Unknown result type (might be due to invalid IL or missing references) //IL_1541: Unknown result type (might be due to invalid IL or missing references) //IL_1546: Unknown result type (might be due to invalid IL or missing references) //IL_154c: Unknown result type (might be due to invalid IL or missing references) //IL_1551: Unknown result type (might be due to invalid IL or missing references) //IL_1557: Unknown result type (might be due to invalid IL or missing references) //IL_1561: Unknown result type (might be due to invalid IL or missing references) //IL_1566: Unknown result type (might be due to invalid IL or missing references) //IL_1572: Unknown result type (might be due to invalid IL or missing references) //IL_4168: Unknown result type (might be due to invalid IL or missing references) //IL_416e: Unknown result type (might be due to invalid IL or missing references) //IL_4173: Unknown result type (might be due to invalid IL or missing references) //IL_4179: Unknown result type (might be due to invalid IL or missing references) //IL_417e: Unknown result type (might be due to invalid IL or missing references) //IL_4184: Unknown result type (might be due to invalid IL or missing references) //IL_418e: Unknown result type (might be due to invalid IL or missing references) //IL_4193: Unknown result type (might be due to invalid IL or missing references) //IL_4199: Unknown result type (might be due to invalid IL or missing references) //IL_419e: Unknown result type (might be due to invalid IL or missing references) //IL_41a4: Unknown result type (might be due to invalid IL or missing references) //IL_41ae: Unknown result type (might be due to invalid IL or missing references) //IL_41b3: Unknown result type (might be due to invalid IL or missing references) //IL_41be: Unknown result type (might be due to invalid IL or missing references) //IL_41c4: Unknown result type (might be due to invalid IL or missing references) //IL_41c9: Unknown result type (might be due to invalid IL or missing references) //IL_41cf: Unknown result type (might be due to invalid IL or missing references) //IL_41d4: Unknown result type (might be due to invalid IL or missing references) //IL_41da: Unknown result type (might be due to invalid IL or missing references) //IL_41e4: Unknown result type (might be due to invalid IL or missing references) //IL_41e9: Unknown result type (might be due to invalid IL or missing references) //IL_41ef: Unknown result type (might be due to invalid IL or missing references) //IL_41f4: Unknown result type (might be due to invalid IL or missing references) //IL_41fa: Unknown result type (might be due to invalid IL or missing references) //IL_4204: Unknown result type (might be due to invalid IL or missing references) //IL_4209: Unknown result type (might be due to invalid IL or missing references) //IL_4215: Unknown result type (might be due to invalid IL or missing references) //IL_2b7a: Unknown result type (might be due to invalid IL or missing references) //IL_2b80: Unknown result type (might be due to invalid IL or missing references) //IL_2b85: Unknown result type (might be due to invalid IL or missing references) //IL_2b8b: Unknown result type (might be due to invalid IL or missing references) //IL_2b90: Unknown result type (might be due to invalid IL or missing references) //IL_2b96: Unknown result type (might be due to invalid IL or missing references) //IL_2ba0: Unknown result type (might be due to invalid IL or missing references) //IL_2ba5: Unknown result type (might be due to invalid IL or missing references) //IL_2bab: Unknown result type (might be due to invalid IL or missing references) //IL_2bb0: Unknown result type (might be due to invalid IL or missing references) //IL_2bb6: Unknown result type (might be due to invalid IL or missing references) //IL_2bc0: Unknown result type (might be due to invalid IL or missing references) //IL_2bc5: Unknown result type (might be due to invalid IL or missing references) //IL_2bd0: Unknown result type (might be due to invalid IL or missing references) //IL_2bd6: Unknown result type (might be due to invalid IL or missing references) //IL_2bdb: Unknown result type (might be due to invalid IL or missing references) //IL_2be1: Unknown result type (might be due to invalid IL or missing references) //IL_2be6: Unknown result type (might be due to invalid IL or missing references) //IL_2bec: Unknown result type (might be due to invalid IL or missing references) //IL_2bf6: Unknown result type (might be due to invalid IL or missing references) //IL_2bfb: Unknown result type (might be due to invalid IL or missing references) //IL_2c01: Unknown result type (might be due to invalid IL or missing references) //IL_2c06: Unknown result type (might be due to invalid IL or missing references) //IL_2c0c: Unknown result type (might be due to invalid IL or missing references) //IL_2c16: Unknown result type (might be due to invalid IL or missing references) //IL_2c1b: Unknown result type (might be due to invalid IL or missing references) //IL_2c27: Unknown result type (might be due to invalid IL or missing references) //IL_158c: Unknown result type (might be due to invalid IL or missing references) //IL_1592: Unknown result type (might be due to invalid IL or missing references) //IL_1597: Unknown result type (might be due to invalid IL or missing references) //IL_159d: Unknown result type (might be due to invalid IL or missing references) //IL_15a2: Unknown result type (might be due to invalid IL or missing references) //IL_15a8: Unknown result type (might be due to invalid IL or missing references) //IL_15b2: Unknown result type (might be due to invalid IL or missing references) //IL_15b7: Unknown result type (might be due to invalid IL or missing references) //IL_15bd: Unknown result type (might be due to invalid IL or missing references) //IL_15c2: Unknown result type (might be due to invalid IL or missing references) //IL_15c8: Unknown result type (might be due to invalid IL or missing references) //IL_15d2: Unknown result type (might be due to invalid IL or missing references) //IL_15d7: Unknown result type (might be due to invalid IL or missing references) //IL_15e2: Unknown result type (might be due to invalid IL or missing references) //IL_15e8: Unknown result type (might be due to invalid IL or missing references) //IL_15ed: Unknown result type (might be due to invalid IL or missing references) //IL_15f3: Unknown result type (might be due to invalid IL or missing references) //IL_15f8: Unknown result type (might be due to invalid IL or missing references) //IL_15fe: Unknown result type (might be due to invalid IL or missing references) //IL_1608: Unknown result type (might be due to invalid IL or missing references) //IL_160d: Unknown result type (might be due to invalid IL or missing references) //IL_1613: Unknown result type (might be due to invalid IL or missing references) //IL_1618: Unknown result type (might be due to invalid IL or missing references) //IL_161e: Unknown result type (might be due to invalid IL or missing references) //IL_1628: Unknown result type (might be due to invalid IL or missing references) //IL_162d: Unknown result type (might be due to invalid IL or missing references) //IL_1639: Unknown result type (might be due to invalid IL or missing references) //IL_422f: Unknown result type (might be due to invalid IL or missing references) //IL_4235: Unknown result type (might be due to invalid IL or missing references) //IL_423a: Unknown result type (might be due to invalid IL or missing references) //IL_4240: Unknown result type (might be due to invalid IL or missing references) //IL_4245: Unknown result type (might be due to invalid IL or missing references) //IL_424b: Unknown result type (might be due to invalid IL or missing references) //IL_4255: Unknown result type (might be due to invalid IL or missing references) //IL_425a: Unknown result type (might be due to invalid IL or missing references) //IL_4260: Unknown result type (might be due to invalid IL or missing references) //IL_4265: Unknown result type (might be due to invalid IL or missing references) //IL_426b: Unknown result type (might be due to invalid IL or missing references) //IL_4275: Unknown result type (might be due to invalid IL or missing references) //IL_427a: Unknown result type (might be due to invalid IL or missing references) //IL_4285: Unknown result type (might be due to invalid IL or missing references) //IL_428b: Unknown result type (might be due to invalid IL or missing references) //IL_4290: Unknown result type (might be due to invalid IL or missing references) //IL_4296: Unknown result type (might be due to invalid IL or missing references) //IL_429b: Unknown result type (might be due to invalid IL or missing references) //IL_42a1: Unknown result type (might be due to invalid IL or missing references) //IL_42ab: Unknown result type (might be due to invalid IL or missing references) //IL_42b0: Unknown result type (might be due to invalid IL or missing references) //IL_42b6: Unknown result type (might be due to invalid IL or missing references) //IL_42bb: Unknown result type (might be due to invalid IL or missing references) //IL_42c1: Unknown result type (might be due to invalid IL or missing references) //IL_42cb: Unknown result type (might be due to invalid IL or missing references) //IL_42d0: Unknown result type (might be due to invalid IL or missing references) //IL_42dc: Unknown result type (might be due to invalid IL or missing references) //IL_2c41: Unknown result type (might be due to invalid IL or missing references) //IL_2c47: Unknown result type (might be due to invalid IL or missing references) //IL_2c4c: Unknown result type (might be due to invalid IL or missing references) //IL_2c52: Unknown result type (might be due to invalid IL or missing references) //IL_2c57: Unknown result type (might be due to invalid IL or missing references) //IL_2c5d: Unknown result type (might be due to invalid IL or missing references) //IL_2c67: Unknown result type (might be due to invalid IL or missing references) //IL_2c6c: Unknown result type (might be due to invalid IL or missing references) //IL_2c72: Unknown result type (might be due to invalid IL or missing references) //IL_2c77: Unknown result type (might be due to invalid IL or missing references) //IL_2c7d: Unknown result type (might be due to invalid IL or missing references) //IL_2c87: Unknown result type (might be due to invalid IL or missing references) //IL_2c8c: Unknown result type (might be due to invalid IL or missing references) //IL_2c97: Unknown result type (might be due to invalid IL or missing references) //IL_2c9d: Unknown result type (might be due to invalid IL or missing references) //IL_2ca2: Unknown result type (might be due to invalid IL or missing references) //IL_2ca8: Unknown result type (might be due to invalid IL or missing references) //IL_2cad: Unknown result type (might be due to invalid IL or missing references) //IL_2cb3: Unknown result type (might be due to invalid IL or missing references) //IL_2cbd: Unknown result type (might be due to invalid IL or missing references) //IL_2cc2: Unknown result type (might be due to invalid IL or missing references) //IL_2cc8: Unknown result type (might be due to invalid IL or missing references) //IL_2ccd: Unknown result type (might be due to invalid IL or missing references) //IL_2cd3: Unknown result type (might be due to invalid IL or missing references) //IL_2cdd: Unknown result type (might be due to invalid IL or missing references) //IL_2ce2: Unknown result type (might be due to invalid IL or missing references) //IL_2cee: Unknown result type (might be due to invalid IL or missing references) //IL_1653: Unknown result type (might be due to invalid IL or missing references) //IL_1659: Unknown result type (might be due to invalid IL or missing references) //IL_165e: Unknown result type (might be due to invalid IL or missing references) //IL_1664: Unknown result type (might be due to invalid IL or missing references) //IL_1669: Unknown result type (might be due to invalid IL or missing references) //IL_166f: Unknown result type (might be due to invalid IL or missing references) //IL_1679: Unknown result type (might be due to invalid IL or missing references) //IL_167e: Unknown result type (might be due to invalid IL or missing references) //IL_1684: Unknown result type (might be due to invalid IL or missing references) //IL_1689: Unknown result type (might be due to invalid IL or missing references) //IL_168f: Unknown result type (might be due to invalid IL or missing references) //IL_1699: Unknown result type (might be due to invalid IL or missing references) //IL_169e: Unknown result type (might be due to invalid IL or missing references) //IL_16a9: Unknown result type (might be due to invalid IL or missing references) //IL_16af: Unknown result type (might be due to invalid IL or missing references) //IL_16b4: Unknown result type (might be due to invalid IL or missing references) //IL_16ba: Unknown result type (might be due to invalid IL or missing references) //IL_16bf: Unknown result type (might be due to invalid IL or missing references) //IL_16c5: Unknown result type (might be due to invalid IL or missing references) //IL_16cf: Unknown result type (might be due to invalid IL or missing references) //IL_16d4: Unknown result type (might be due to invalid IL or missing references) //IL_16da: Unknown result type (might be due to invalid IL or missing references) //IL_16df: Unknown result type (might be due to invalid IL or missing references) //IL_16e5: Unknown result type (might be due to invalid IL or missing references) //IL_16ef: Unknown result type (might be due to invalid IL or missing references) //IL_16f4: Unknown result type (might be due to invalid IL or missing references) //IL_1700: Unknown result type (might be due to invalid IL or missing references) //IL_42f6: Unknown result type (might be due to invalid IL or missing references) //IL_42fc: Unknown result type (might be due to invalid IL or missing references) //IL_4301: Unknown result type (might be due to invalid IL or missing references) //IL_4307: Unknown result type (might be due to invalid IL or missing references) //IL_430c: Unknown result type (might be due to invalid IL or missing references) //IL_4312: Unknown result type (might be due to invalid IL or missing references) //IL_431c: Unknown result type (might be due to invalid IL or missing references) //IL_4321: Unknown result type (might be due to invalid IL or missing references) //IL_4327: Unknown result type (might be due to invalid IL or missing references) //IL_432c: Unknown result type (might be due to invalid IL or missing references) //IL_4332: Unknown result type (might be due to invalid IL or missing references) //IL_433c: Unknown result type (might be due to invalid IL or missing references) //IL_4341: Unknown result type (might be due to invalid IL or missing references) //IL_434c: Unknown result type (might be due to invalid IL or missing references) //IL_4352: Unknown result type (might be due to invalid IL or missing references) //IL_4357: Unknown result type (might be due to invalid IL or missing references) //IL_435d: Unknown result type (might be due to invalid IL or missing references) //IL_4362: Unknown result type (might be due to invalid IL or missing references) //IL_4368: Unknown result type (might be due to invalid IL or missing references) //IL_4372: Unknown result type (might be due to invalid IL or missing references) //IL_4377: Unknown result type (might be due to invalid IL or missing references) //IL_437d: Unknown result type (might be due to invalid IL or missing references) //IL_4382: Unknown result type (might be due to invalid IL or missing references) //IL_4388: Unknown result type (might be due to invalid IL or missing references) //IL_4392: Unknown result type (might be due to invalid IL or missing references) //IL_4397: Unknown result type (might be due to invalid IL or missing references) //IL_43a3: Unknown result type (might be due to invalid IL or missing references) //IL_2d08: Unknown result type (might be due to invalid IL or missing references) //IL_2d0e: Unknown result type (might be due to invalid IL or missing references) //IL_2d13: Unknown result type (might be due to invalid IL or missing references) //IL_2d19: Unknown result type (might be due to invalid IL or missing references) //IL_2d1e: Unknown result type (might be due to invalid IL or missing references) //IL_2d24: Unknown result type (might be due to invalid IL or missing references) //IL_2d2e: Unknown result type (might be due to invalid IL or missing references) //IL_2d33: Unknown result type (might be due to invalid IL or missing references) //IL_2d39: Unknown result type (might be due to invalid IL or missing references) //IL_2d3e: Unknown result type (might be due to invalid IL or missing references) //IL_2d44: Unknown result type (might be due to invalid IL or missing references) //IL_2d4e: Unknown result type (might be due to invalid IL or missing references) //IL_2d53: Unknown result type (might be due to invalid IL or missing references) //IL_2d5e: Unknown result type (might be due to invalid IL or missing references) //IL_2d64: Unknown result type (might be due to invalid IL or missing references) //IL_2d69: Unknown result type (might be due to invalid IL or missing references) //IL_2d6f: Unknown result type (might be due to invalid IL or missing references) //IL_2d74: Unknown result type (might be due to invalid IL or missing references) //IL_2d7a: Unknown result type (might be due to invalid IL or missing references) //IL_2d84: Unknown result type (might be due to invalid IL or missing references) //IL_2d89: Unknown result type (might be due to invalid IL or missing references) //IL_2d8f: Unknown result type (might be due to invalid IL or missing references) //IL_2d94: Unknown result type (might be due to invalid IL or missing references) //IL_2d9a: Unknown result type (might be due to invalid IL or missing references) //IL_2da4: Unknown result type (might be due to invalid IL or missing references) //IL_2da9: Unknown result type (might be due to invalid IL or missing references) //IL_2db5: Unknown result type (might be due to invalid IL or missing references) //IL_43bd: Unknown result type (might be due to invalid IL or missing references) //IL_43c3: Unknown result type (might be due to invalid IL or missing references) //IL_43c8: Unknown result type (might be due to invalid IL or missing references) //IL_43ce: Unknown result type (might be due to invalid IL or missing references) //IL_43d3: Unknown result type (might be due to invalid IL or missing references) //IL_43d9: Unknown result type (might be due to invalid IL or missing references) //IL_43e3: Unknown result type (might be due to invalid IL or missing references) //IL_43e8: Unknown result type (might be due to invalid IL or missing references) //IL_43ee: Unknown result type (might be due to invalid IL or missing references) //IL_43f3: Unknown result type (might be due to invalid IL or missing references) //IL_43f9: Unknown result type (might be due to invalid IL or missing references) //IL_4403: Unknown result type (might be due to invalid IL or missing references) //IL_4408: Unknown result type (might be due to invalid IL or missing references) //IL_4413: Unknown result type (might be due to invalid IL or missing references) //IL_4419: Unknown result type (might be due to invalid IL or missing references) //IL_441e: Unknown result type (might be due to invalid IL or missing references) //IL_4424: Unknown result type (might be due to invalid IL or missing references) //IL_4429: Unknown result type (might be due to invalid IL or missing references) //IL_442f: Unknown result type (might be due to invalid IL or missing references) //IL_4439: Unknown result type (might be due to invalid IL or missing references) //IL_443e: Unknown result type (might be due to invalid IL or missing references) //IL_4444: Unknown result type (might be due to invalid IL or missing references) //IL_4449: Unknown result type (might be due to invalid IL or missing references) //IL_444f: Unknown result type (might be due to invalid IL or missing references) //IL_4459: Unknown result type (might be due to invalid IL or missing references) //IL_445e: Unknown result type (might be due to invalid IL or missing references) //IL_446a: Unknown result type (might be due to invalid IL or missing references) //IL_2dcf: Unknown result type (might be due to invalid IL or missing references) //IL_2dd5: Unknown result type (might be due to invalid IL or missing references) //IL_2dda: Unknown result type (might be due to invalid IL or missing references) //IL_2de0: Unknown result type (might be due to invalid IL or missing references) //IL_2de5: Unknown result type (might be due to invalid IL or missing references) //IL_2deb: Unknown result type (might be due to invalid IL or missing references) //IL_2df5: Unknown result type (might be due to invalid IL or missing references) //IL_2dfa: Unknown result type (might be due to invalid IL or missing references) //IL_2e00: Unknown result type (might be due to invalid IL or missing references) //IL_2e05: Unknown result type (might be due to invalid IL or missing references) //IL_2e0b: Unknown result type (might be due to invalid IL or missing references) //IL_2e15: Unknown result type (might be due to invalid IL or missing references) //IL_2e1a: Unknown result type (might be due to invalid IL or missing references) //IL_2e25: Unknown result type (might be due to invalid IL or missing references) //IL_2e2b: Unknown result type (might be due to invalid IL or missing references) //IL_2e30: Unknown result type (might be due to invalid IL or missing references) //IL_2e36: Unknown result type (might be due to invalid IL or missing references) //IL_2e3b: Unknown result type (might be due to invalid IL or missing references) //IL_2e41: Unknown result type (might be due to invalid IL or missing references) //IL_2e4b: Unknown result type (might be due to invalid IL or missing references) //IL_2e50: Unknown result type (might be due to invalid IL or missing references) //IL_2e56: Unknown result type (might be due to invalid IL or missing references) //IL_2e5b: Unknown result type (might be due to invalid IL or missing references) //IL_2e61: Unknown result type (might be due to invalid IL or missing references) //IL_2e6b: Unknown result type (might be due to invalid IL or missing references) //IL_2e70: Unknown result type (might be due to invalid IL or missing references) //IL_2e7c: Unknown result type (might be due to invalid IL or missing references) //IL_4484: Unknown result type (might be due to invalid IL or missing references) //IL_448a: Unknown result type (might be due to invalid IL or missing references) //IL_448f: Unknown result type (might be due to invalid IL or missing references) //IL_4495: Unknown result type (might be due to invalid IL or missing references) //IL_449a: Unknown result type (might be due to invalid IL or missing references) //IL_44a0: Unknown result type (might be due to invalid IL or missing references) //IL_44aa: Unknown result type (might be due to invalid IL or missing references) //IL_44af: Unknown result type (might be due to invalid IL or missing references) //IL_44b5: Unknown result type (might be due to invalid IL or missing references) //IL_44ba: Unknown result type (might be due to invalid IL or missing references) //IL_44c0: Unknown result type (might be due to invalid IL or missing references) //IL_44ca: Unknown result type (might be due to invalid IL or missing references) //IL_44cf: Unknown result type (might be due to invalid IL or missing references) //IL_44da: Unknown result type (might be due to invalid IL or missing references) //IL_44e0: Unknown result type (might be due to invalid IL or missing references) //IL_44e5: Unknown result type (might be due to invalid IL or missing references) //IL_44eb: Unknown result type (might be due to invalid IL or missing references) //IL_44f0: Unknown result type (might be due to invalid IL or missing references) //IL_44f6: Unknown result type (might be due to invalid IL or missing references) //IL_4500: Unknown result type (might be due to invalid IL or missing references) //IL_4505: Unknown result type (might be due to invalid IL or missing references) //IL_450b: Unknown result type (might be due to invalid IL or missing references) //IL_4510: Unknown result type (might be due to invalid IL or missing references) //IL_4516: Unknown result type (might be due to invalid IL or missing references) //IL_4520: Unknown result type (might be due to invalid IL or missing references) //IL_4525: Unknown result type (might be due to invalid IL or missing references) //IL_4531: Unknown result type (might be due to invalid IL or missing references) //IL_454b: Unknown result type (might be due to invalid IL or missing references) //IL_4551: Unknown result type (might be due to invalid IL or missing references) //IL_4556: Unknown result type (might be due to invalid IL or missing references) //IL_455c: Unknown result type (might be due to invalid IL or missing references) //IL_4561: Unknown result type (might be due to invalid IL or missing references) //IL_4567: Unknown result type (might be due to invalid IL or missing references) //IL_4571: Unknown result type (might be due to invalid IL or missing references) //IL_4576: Unknown result type (might be due to invalid IL or missing references) //IL_457c: Unknown result type (might be due to invalid IL or missing references) //IL_4581: Unknown result type (might be due to invalid IL or missing references) //IL_4587: Unknown result type (might be due to invalid IL or missing references) //IL_4591: Unknown result type (might be due to invalid IL or missing references) //IL_4596: Unknown result type (might be due to invalid IL or missing references) //IL_45a1: Unknown result type (might be due to invalid IL or missing references) //IL_45a7: Unknown result type (might be due to invalid IL or missing references) //IL_45ac: Unknown result type (might be due to invalid IL or missing references) //IL_45b2: Unknown result type (might be due to invalid IL or missing references) //IL_45b7: Unknown result type (might be due to invalid IL or missing references) //IL_45bd: Unknown result type (might be due to invalid IL or missing references) //IL_45c7: Unknown result type (might be due to invalid IL or missing references) //IL_45cc: Unknown result type (might be due to invalid IL or missing references) //IL_45d2: Unknown result type (might be due to invalid IL or missing references) //IL_45d7: Unknown result type (might be due to invalid IL or missing references) //IL_45dd: Unknown result type (might be due to invalid IL or missing references) //IL_45e7: Unknown result type (might be due to invalid IL or missing references) //IL_45ec: Unknown result type (might be due to invalid IL or missing references) //IL_45f8: Unknown result type (might be due to invalid IL or missing references) if (switching || !ledgeSwitchingDetectors.allowLedgeSwitching || !grabbedOn) { return; } if (!Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + minDistFromGroundHeight2 - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 - ledgeSwitchFirstNoSurfaceLength / 1.75f + rightWidth * 2.394f + firstSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 - ledgeSwitchFirstNoSurfaceLength / 1.75f + rightWidth * 2.394f + firstSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 - ledgeSwitchFirstNoSurfaceLength / 1.75f + rightWidth * 2.394f + firstSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 - ledgeSwitchFirstNoSurfaceLength / 1.75f + rightWidth * 2.394f + firstSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + firstNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 - ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 - ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 - ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 - ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 0.375f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 0.75f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 1.125f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchFirstNoSurfaceLength / 1.75f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchFirstNoSurfaceLength / 0.875f + ledgeSwitchFirstWidthForward + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !r1ThirdBackSurfaceDetectorsHit && !r1ThirdBackHit && r1SecondBackSurfaceDetectorsHit && r1SecondBackHit) { r1SecondBackTimer += 0.01f; if (r1SecondBackTimer > 0.1f || rotTimer > 0f) { r1SecondBackClear = true; } else { r1SecondBackClear = false; } } else { r1SecondBackTimer = 0f; r1SecondBackClear = false; } if (!Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + minDistFromGroundHeight2 - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 - ledgeSwitchSecondNoSurfaceLength / 1.75f + rightWidth * 2.394f + secondSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 - ledgeSwitchSecondNoSurfaceLength / 1.75f + rightWidth * 2.394f + secondSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 - ledgeSwitchSecondNoSurfaceLength / 1.75f + rightWidth * 2.394f + secondSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 - ledgeSwitchSecondNoSurfaceLength / 1.75f + rightWidth * 2.394f + secondSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + secondNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 - ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 - ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 - ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 - ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 0.375f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 0.75f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 1.125f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSecondNoSurfaceLength / 1.75f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSecondNoSurfaceLength / 0.875f + ledgeSwitchSecondWidthForward + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !r2ThirdBackSurfaceDetectorsHit && !r2ThirdBackHit && r2SecondBackSurfaceDetectorsHit && r2SecondBackHit) { r2SecondBackTimer += 0.01f; if (r2SecondBackTimer > 0.1f || rotTimer > 0f) { r2SecondBackClear = true; } else { r2SecondBackClear = false; } } else { r2SecondBackTimer = 0f; r2SecondBackClear = false; } if (!Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + minDistFromGroundHeight2 - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight - rightWidth / 4f - minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f - rightWidth / 4f + minDistFromGroundHeight2 - minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange1 + upHeight + rightWidth / 4f + minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, ((Component)this).transform.position + posChange1 - upHeight / 3f + rightWidth / 4f + minDistFromGroundHeight2 + minDistFromGroundWidth2 - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 - ledgeSwitchThirdNoSurfaceLength / 1.75f + rightWidth * 2.394f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 - ledgeSwitchThirdNoSurfaceLength / 1.75f + rightWidth * 2.394f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast((((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 - ledgeSwitchThirdNoSurfaceLength / 1.75f + rightWidth * 2.394f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2)) + upHeight * 0.3f - noSurfaceDetectorHeight2, (((Component)this).transform.position + posChange2 + (((Component)this).transform.position + posChange2 - ledgeSwitchThirdNoSurfaceLength / 1.75f + rightWidth * 2.394f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) * (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2 + 1f)) / (2f + (noSurfaceDetectorWidth2 + thirdNoSurfaceDetectorWidth2)) + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 - ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 - ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 - ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + upHeight * 0.3f - noSurfaceDetectorHeight2, ((Component)this).transform.position + posChange2 - ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + upHeight * 2.2f + noSurfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 0.375f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 0.75f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(rightSpace + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + ledgeSwitchHeight * 1.125f + wallInFrontDetectorUpAmount2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchThirdNoSurfaceLength / 1.75f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchThirdNoSurfaceLength / 0.875f + ledgeSwitchThirdWidthForward + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !r3ThirdBackSurfaceDetectorsHit && !r3ThirdBackHit && r3SecondBackSurfaceDetectorsHit && r3SecondBackHit) { r3SecondBackTimer += 0.01f; if (r3SecondBackTimer > 0.1f || rotTimer > 0f) { r3SecondBackClear = true; } else { r3SecondBackClear = false; } } else { r3SecondBackTimer = 0f; r3SecondBackClear = false; } } private void LedgeSwitchHitPointsSecondFrontLeft() { //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_006a: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_0089: Unknown result type (might be due to invalid IL or missing references) //IL_008e: Unknown result type (might be due to invalid IL or missing references) //IL_0094: Unknown result type (might be due to invalid IL or missing references) //IL_0099: Unknown result type (might be due to invalid IL or missing references) //IL_009f: Unknown result type (might be due to invalid IL or missing references) //IL_00a4: Unknown result type (might be due to invalid IL or missing references) //IL_00af: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) //IL_00ba: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_00cb: Unknown result type (might be due to invalid IL or missing references) //IL_00d0: Unknown result type (might be due to invalid IL or missing references) //IL_00d6: Unknown result type (might be due to invalid IL or missing references) //IL_00e0: Unknown result type (might be due to invalid IL or missing references) //IL_00e5: Unknown result type (might be due to invalid IL or missing references) //IL_00eb: Unknown result type (might be due to invalid IL or missing references) //IL_00f5: Unknown result type (might be due to invalid IL or missing references) //IL_00fa: Unknown result type (might be due to invalid IL or missing references) //IL_0100: Unknown result type (might be due to invalid IL or missing references) //IL_010a: Unknown result type (might be due to invalid IL or missing references) //IL_010f: Unknown result type (might be due to invalid IL or missing references) //IL_0115: Unknown result type (might be due to invalid IL or missing references) //IL_011a: Unknown result type (might be due to invalid IL or missing references) //IL_0120: Unknown result type (might be due to invalid IL or missing references) //IL_0125: Unknown result type (might be due to invalid IL or missing references) //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_0268: Unknown result type (might be due to invalid IL or missing references) //IL_026e: Unknown result type (might be due to invalid IL or missing references) //IL_0273: Unknown result type (might be due to invalid IL or missing references) //IL_0279: Unknown result type (might be due to invalid IL or missing references) //IL_027e: Unknown result type (might be due to invalid IL or missing references) //IL_0284: Unknown result type (might be due to invalid IL or missing references) //IL_0289: Unknown result type (might be due to invalid IL or missing references) //IL_028f: Unknown result type (might be due to invalid IL or missing references) //IL_0299: Unknown result type (might be due to invalid IL or missing references) //IL_029e: Unknown result type (might be due to invalid IL or missing references) //IL_02a4: Unknown result type (might be due to invalid IL or missing references) //IL_02ae: Unknown result type (might be due to invalid IL or missing references) //IL_02b3: Unknown result type (might be due to invalid IL or missing references) //IL_02b9: Unknown result type (might be due to invalid IL or missing references) //IL_02c3: Unknown result type (might be due to invalid IL or missing references) //IL_02c8: Unknown result type (might be due to invalid IL or missing references) //IL_02ce: Unknown result type (might be due to invalid IL or missing references) //IL_02d3: Unknown result type (might be due to invalid IL or missing references) //IL_02d9: Unknown result type (might be due to invalid IL or missing references) //IL_02de: Unknown result type (might be due to invalid IL or missing references) //IL_02e9: Unknown result type (might be due to invalid IL or missing references) //IL_02ef: Unknown result type (might be due to invalid IL or missing references) //IL_02f4: Unknown result type (might be due to invalid IL or missing references) //IL_02fa: Unknown result type (might be due to invalid IL or missing references) //IL_02ff: Unknown result type (might be due to invalid IL or missing references) //IL_0305: Unknown result type (might be due to invalid IL or missing references) //IL_030a: Unknown result type (might be due to invalid IL or missing references) //IL_0310: Unknown result type (might be due to invalid IL or missing references) //IL_031a: Unknown result type (might be due to invalid IL or missing references) //IL_031f: Unknown result type (might be due to invalid IL or missing references) //IL_0325: Unknown result type (might be due to invalid IL or missing references) //IL_032f: Unknown result type (might be due to invalid IL or missing references) //IL_0334: Unknown result type (might be due to invalid IL or missing references) //IL_033a: Unknown result type (might be due to invalid IL or missing references) //IL_0344: Unknown result type (might be due to invalid IL or missing references) //IL_0349: Unknown result type (might be due to invalid IL or missing references) //IL_034f: Unknown result type (might be due to invalid IL or missing references) //IL_0354: Unknown result type (might be due to invalid IL or missing references) //IL_0360: Unknown result type (might be due to invalid IL or missing references) //IL_014b: Unknown result type (might be due to invalid IL or missing references) //IL_0151: Unknown result type (might be due to invalid IL or missing references) //IL_0156: Unknown result type (might be due to invalid IL or missing references) //IL_015c: Unknown result type (might be due to invalid IL or missing references) //IL_0161: Unknown result type (might be due to invalid IL or missing references) //IL_0167: Unknown result type (might be due to invalid IL or missing references) //IL_016c: Unknown result type (might be due to invalid IL or missing references) //IL_0172: Unknown result type (might be due to invalid IL or missing references) //IL_017c: Unknown result type (might be due to invalid IL or missing references) //IL_0181: Unknown result type (might be due to invalid IL or missing references) //IL_0187: Unknown result type (might be due to invalid IL or missing references) //IL_0191: Unknown result type (might be due to invalid IL or missing references) //IL_0196: Unknown result type (might be due to invalid IL or missing references) //IL_019c: Unknown result type (might be due to invalid IL or missing references) //IL_01a6: Unknown result type (might be due to invalid IL or missing references) //IL_01ab: Unknown result type (might be due to invalid IL or missing references) //IL_01b1: Unknown result type (might be due to invalid IL or missing references) //IL_01b6: Unknown result type (might be due to invalid IL or missing references) //IL_01bc: Unknown result type (might be due to invalid IL or missing references) //IL_01c1: Unknown result type (might be due to invalid IL or missing references) //IL_01cc: Unknown result type (might be due to invalid IL or missing references) //IL_01d2: Unknown result type (might be due to invalid IL or missing references) //IL_01d7: Unknown result type (might be due to invalid IL or missing references) //IL_01dd: Unknown result type (might be due to invalid IL or missing references) //IL_01e2: Unknown result type (might be due to invalid IL or missing references) //IL_01e8: Unknown result type (might be due to invalid IL or missing references) //IL_01ed: Unknown result type (might be due to invalid IL or missing references) //IL_01f3: Unknown result type (might be due to invalid IL or missing references) //IL_01fd: Unknown result type (might be due to invalid IL or missing references) //IL_0202: Unknown result type (might be due to invalid IL or missing references) //IL_0208: Unknown result type (might be due to invalid IL or missing references) //IL_020d: Unknown result type (might be due to invalid IL or missing references) //IL_0213: Unknown result type (might be due to invalid IL or missing references) //IL_021d: Unknown result type (might be due to invalid IL or missing references) //IL_0222: Unknown result type (might be due to invalid IL or missing references) //IL_0228: Unknown result type (might be due to invalid IL or missing references) //IL_0232: Unknown result type (might be due to invalid IL or missing references) //IL_0237: Unknown result type (might be due to invalid IL or missing references) //IL_023d: Unknown result type (might be due to invalid IL or missing references) //IL_0242: Unknown result type (might be due to invalid IL or missing references) //IL_024e: Unknown result type (might be due to invalid IL or missing references) //IL_037b: Unknown result type (might be due to invalid IL or missing references) //IL_0381: Unknown result type (might be due to invalid IL or missing references) //IL_0386: Unknown result type (might be due to invalid IL or missing references) //IL_038c: Unknown result type (might be due to invalid IL or missing references) //IL_0396: Unknown result type (might be due to invalid IL or missing references) //IL_039b: Unknown result type (might be due to invalid IL or missing references) //IL_03a1: Unknown result type (might be due to invalid IL or missing references) //IL_03ab: Unknown result type (might be due to invalid IL or missing references) //IL_03b0: Unknown result type (might be due to invalid IL or missing references) //IL_03b6: Unknown result type (might be due to invalid IL or missing references) //IL_03c0: Unknown result type (might be due to invalid IL or missing references) //IL_03c5: Unknown result type (might be due to invalid IL or missing references) //IL_03cb: Unknown result type (might be due to invalid IL or missing references) //IL_03d0: Unknown result type (might be due to invalid IL or missing references) //IL_03d6: Unknown result type (might be due to invalid IL or missing references) //IL_03db: Unknown result type (might be due to invalid IL or missing references) //IL_03e1: Unknown result type (might be due to invalid IL or missing references) //IL_03e6: Unknown result type (might be due to invalid IL or missing references) //IL_03f1: Unknown result type (might be due to invalid IL or missing references) //IL_03f7: Unknown result type (might be due to invalid IL or missing references) //IL_03fc: Unknown result type (might be due to invalid IL or missing references) //IL_0402: Unknown result type (might be due to invalid IL or missing references) //IL_040c: Unknown result type (might be due to invalid IL or missing references) //IL_0411: Unknown result type (might be due to invalid IL or missing references) //IL_0417: Unknown result type (might be due to invalid IL or missing references) //IL_0421: Unknown result type (might be due to invalid IL or missing references) //IL_0426: Unknown result type (might be due to invalid IL or missing references) //IL_042c: Unknown result type (might be due to invalid IL or missing references) //IL_0436: Unknown result type (might be due to invalid IL or missing references) //IL_043b: Unknown result type (might be due to invalid IL or missing references) //IL_0441: Unknown result type (might be due to invalid IL or missing references) //IL_0446: Unknown result type (might be due to invalid IL or missing references) //IL_044c: Unknown result type (might be due to invalid IL or missing references) //IL_0451: Unknown result type (might be due to invalid IL or missing references) //IL_0457: Unknown result type (might be due to invalid IL or missing references) //IL_045c: Unknown result type (might be due to invalid IL or missing references) //IL_0468: Unknown result type (might be due to invalid IL or missing references) //IL_1586: Unknown result type (might be due to invalid IL or missing references) //IL_158c: Unknown result type (might be due to invalid IL or missing references) //IL_1591: Unknown result type (might be due to invalid IL or missing references) //IL_1597: Unknown result type (might be due to invalid IL or missing references) //IL_15a1: Unknown result type (might be due to invalid IL or missing references) //IL_15a6: Unknown result type (might be due to invalid IL or missing references) //IL_15ac: Unknown result type (might be due to invalid IL or missing references) //IL_15b6: Unknown result type (might be due to invalid IL or missing references) //IL_15bb: Unknown result type (might be due to invalid IL or missing references) //IL_15c1: Unknown result type (might be due to invalid IL or missing references) //IL_15cb: Unknown result type (might be due to invalid IL or missing references) //IL_15d0: Unknown result type (might be due to invalid IL or missing references) //IL_15d6: Unknown result type (might be due to invalid IL or missing references) //IL_15db: Unknown result type (might be due to invalid IL or missing references) //IL_15e1: Unknown result type (might be due to invalid IL or missing references) //IL_15e6: Unknown result type (might be due to invalid IL or missing references) //IL_15ec: Unknown result type (might be due to invalid IL or missing references) //IL_15f1: Unknown result type (might be due to invalid IL or missing references) //IL_15fc: Unknown result type (might be due to invalid IL or missing references) //IL_1602: Unknown result type (might be due to invalid IL or missing references) //IL_1607: Unknown result type (might be due to invalid IL or missing references) //IL_160d: Unknown result type (might be due to invalid IL or missing references) //IL_1617: Unknown result type (might be due to invalid IL or missing references) //IL_161c: Unknown result type (might be due to invalid IL or missing references) //IL_1622: Unknown result type (might be due to invalid IL or missing references) //IL_162c: Unknown result type (might be due to invalid IL or missing references) //IL_1631: Unknown result type (might be due to invalid IL or missing references) //IL_1637: Unknown result type (might be due to invalid IL or missing references) //IL_1641: Unknown result type (might be due to invalid IL or missing references) //IL_1646: Unknown result type (might be due to invalid IL or missing references) //IL_164c: Unknown result type (might be due to invalid IL or missing references) //IL_1651: Unknown result type (might be due to invalid IL or missing references) //IL_1657: Unknown result type (might be due to invalid IL or missing references) //IL_165c: Unknown result type (might be due to invalid IL or missing references) //IL_1662: Unknown result type (might be due to invalid IL or missing references) //IL_1667: Unknown result type (might be due to invalid IL or missing references) //IL_1673: Unknown result type (might be due to invalid IL or missing references) //IL_0589: Unknown result type (might be due to invalid IL or missing references) //IL_058f: Unknown result type (might be due to invalid IL or missing references) //IL_0594: Unknown result type (might be due to invalid IL or missing references) //IL_059a: Unknown result type (might be due to invalid IL or missing references) //IL_05a4: Unknown result type (might be due to invalid IL or missing references) //IL_05a9: Unknown result type (might be due to invalid IL or missing references) //IL_05af: Unknown result type (might be due to invalid IL or missing references) //IL_05b9: Unknown result type (might be due to invalid IL or missing references) //IL_05be: Unknown result type (might be due to invalid IL or missing references) //IL_05c4: Unknown result type (might be due to invalid IL or missing references) //IL_05ce: Unknown result type (might be due to invalid IL or missing references) //IL_05d3: Unknown result type (might be due to invalid IL or missing references) //IL_05d9: Unknown result type (might be due to invalid IL or missing references) //IL_05de: Unknown result type (might be due to invalid IL or missing references) //IL_05e4: Unknown result type (might be due to invalid IL or missing references) //IL_05e9: Unknown result type (might be due to invalid IL or missing references) //IL_05ef: Unknown result type (might be due to invalid IL or missing references) //IL_05f4: Unknown result type (might be due to invalid IL or missing references) //IL_05ff: Unknown result type (might be due to invalid IL or missing references) //IL_0605: Unknown result type (might be due to invalid IL or missing references) //IL_060a: Unknown result type (might be due to invalid IL or missing references) //IL_0610: Unknown result type (might be due to invalid IL or missing references) //IL_061a: Unknown result type (might be due to invalid IL or missing references) //IL_061f: Unknown result type (might be due to invalid IL or missing references) //IL_0625: Unknown result type (might be due to invalid IL or missing references) //IL_062f: Unknown result type (might be due to invalid IL or missing references) //IL_0634: Unknown result type (might be due to invalid IL or missing references) //IL_063a: Unknown result type (might be due to invalid IL or missing references) //IL_0644: Unknown result type (might be due to invalid IL or missing references) //IL_0649: Unknown result type (might be due to invalid IL or missing references) //IL_064f: Unknown result type (might be due to invalid IL or missing references) //IL_0654: Unknown result type (might be due to invalid IL or missing references) //IL_065a: Unknown result type (might be due to invalid IL or missing references) //IL_065f: Unknown result type (might be due to invalid IL or missing references) //IL_066b: Unknown result type (might be due to invalid IL or missing references) //IL_0482: Unknown result type (might be due to invalid IL or missing references) //IL_0488: Unknown result type (might be due to invalid IL or missing references) //IL_048d: Unknown result type (might be due to invalid IL or missing references) //IL_0493: Unknown result type (might be due to invalid IL or missing references) //IL_049d: Unknown result type (might be due to invalid IL or missing references) //IL_04a2: Unknown result type (might be due to invalid IL or missing references) //IL_04a8: Unknown result type (might be due to invalid IL or missing references) //IL_04b2: Unknown result type (might be due to invalid IL or missing references) //IL_04b7: Unknown result type (might be due to invalid IL or missing references) //IL_04bd: Unknown result type (might be due to invalid IL or missing references) //IL_04c7: Unknown result type (might be due to invalid IL or missing references) //IL_04cc: Unknown result type (might be due to invalid IL or missing references) //IL_04d2: Unknown result type (might be due to invalid IL or missing references) //IL_04d7: Unknown result type (might be due to invalid IL or missing references) //IL_04dd: Unknown result type (might be due to invalid IL or missing references) //IL_04e2: Unknown result type (might be due to invalid IL or missing references) //IL_04e8: Unknown result type (might be due to invalid IL or missing references) //IL_04ed: Unknown result type (might be due to invalid IL or missing references) //IL_04f8: Unknown result type (might be due to invalid IL or missing references) //IL_04fe: Unknown result type (might be due to invalid IL or missing references) //IL_0503: Unknown result type (might be due to invalid IL or missing references) //IL_0509: Unknown result type (might be due to invalid IL or missing references) //IL_0513: Unknown result type (might be due to invalid IL or missing references) //IL_0518: Unknown result type (might be due to invalid IL or missing references) //IL_051e: Unknown result type (might be due to invalid IL or missing references) //IL_0523: Unknown result type (might be due to invalid IL or missing references) //IL_0529: Unknown result type (might be due to invalid IL or missing references) //IL_0533: Unknown result type (might be due to invalid IL or missing references) //IL_0538: Unknown result type (might be due to invalid IL or missing references) //IL_053e: Unknown result type (might be due to invalid IL or missing references) //IL_0548: Unknown result type (might be due to invalid IL or missing references) //IL_054d: Unknown result type (might be due to invalid IL or missing references) //IL_0553: Unknown result type (might be due to invalid IL or missing references) //IL_0558: Unknown result type (might be due to invalid IL or missing references) //IL_055e: Unknown result type (might be due to invalid IL or missing references) //IL_0563: Unknown result type (might be due to invalid IL or missing references) //IL_056f: Unknown result type (might be due to invalid IL or missing references) //IL_1794: Unknown result type (might be due to invalid IL or missing references) //IL_179a: Unknown result type (might be due to invalid IL or missing references) //IL_179f: Unknown result type (might be due to invalid IL or missing references) //IL_17a5: Unknown result type (might be due to invalid IL or missing references) //IL_17af: Unknown result type (might be due to invalid IL or missing references) //IL_17b4: Unknown result type (might be due to invalid IL or missing references) //IL_17ba: Unknown result type (might be due to invalid IL or missing references) //IL_17c4: Unknown result type (might be due to invalid IL or missing references) //IL_17c9: Unknown result type (might be due to invalid IL or missing references) //IL_17cf: Unknown result type (might be due to invalid IL or missing references) //IL_17d9: Unknown result type (might be due to invalid IL or missing references) //IL_17de: Unknown result type (might be due to invalid IL or missing references) //IL_17e4: Unknown result type (might be due to invalid IL or missing references) //IL_17e9: Unknown result type (might be due to invalid IL or missing references) //IL_17ef: Unknown result type (might be due to invalid IL or missing references) //IL_17f4: Unknown result type (might be due to invalid IL or missing references) //IL_17fa: Unknown result type (might be due to invalid IL or missing references) //IL_17ff: Unknown result type (might be due to invalid IL or missing references) //IL_180a: Unknown result type (might be due to invalid IL or missing references) //IL_1810: Unknown result type (might be due to invalid IL or missing references) //IL_1815: Unknown result type (might be due to invalid IL or missing references) //IL_181b: Unknown result type (might be due to invalid IL or missing references) //IL_1825: Unknown result type (might be due to invalid IL or missing references) //IL_182a: Unknown result type (might be due to invalid IL or missing references) //IL_1830: Unknown result type (might be due to invalid IL or missing references) //IL_183a: Unknown result type (might be due to invalid IL or missing references) //IL_183f: Unknown result type (might be due to invalid IL or missing references) //IL_1845: Unknown result type (might be due to invalid IL or missing references) //IL_184f: Unknown result type (might be due to invalid IL or missing references) //IL_1854: Unknown result type (might be due to invalid IL or missing references) //IL_185a: Unknown result type (might be due to invalid IL or missing references) //IL_185f: Unknown result type (might be due to invalid IL or missing references) //IL_1865: Unknown result type (might be due to invalid IL or missing references) //IL_186a: Unknown result type (might be due to invalid IL or missing references) //IL_1876: Unknown result type (might be due to invalid IL or missing references) //IL_168d: Unknown result type (might be due to invalid IL or missing references) //IL_1693: Unknown result type (might be due to invalid IL or missing references) //IL_1698: Unknown result type (might be due to invalid IL or missing references) //IL_169e: Unknown result type (might be due to invalid IL or missing references) //IL_16a8: Unknown result type (might be due to invalid IL or missing references) //IL_16ad: Unknown result type (might be due to invalid IL or missing references) //IL_16b3: Unknown result type (might be due to invalid IL or missing references) //IL_16bd: Unknown result type (might be due to invalid IL or missing references) //IL_16c2: Unknown result type (might be due to invalid IL or missing references) //IL_16c8: Unknown result type (might be due to invalid IL or missing references) //IL_16d2: Unknown result type (might be due to invalid IL or missing references) //IL_16d7: Unknown result type (might be due to invalid IL or missing references) //IL_16dd: Unknown result type (might be due to invalid IL or missing references) //IL_16e2: Unknown result type (might be due to invalid IL or missing references) //IL_16e8: Unknown result type (might be due to invalid IL or missing references) //IL_16ed: Unknown result type (might be due to invalid IL or missing references) //IL_16f3: Unknown result type (might be due to invalid IL or missing references) //IL_16f8: Unknown result type (might be due to invalid IL or missing references) //IL_1703: Unknown result type (might be due to invalid IL or missing references) //IL_1709: Unknown result type (might be due to invalid IL or missing references) //IL_170e: Unknown result type (might be due to invalid IL or missing references) //IL_1714: Unknown result type (might be due to invalid IL or missing references) //IL_171e: Unknown result type (might be due to invalid IL or missing references) //IL_1723: Unknown result type (might be due to invalid IL or missing references) //IL_1729: Unknown result type (might be due to invalid IL or missing references) //IL_172e: Unknown result type (might be due to invalid IL or missing references) //IL_1734: Unknown result type (might be due to invalid IL or missing references) //IL_173e: Unknown result type (might be due to invalid IL or missing references) //IL_1743: Unknown result type (might be due to invalid IL or missing references) //IL_1749: Unknown result type (might be due to invalid IL or missing references) //IL_1753: Unknown result type (might be due to invalid IL or missing references) //IL_1758: Unknown result type (might be due to invalid IL or missing references) //IL_175e: Unknown result type (might be due to invalid IL or missing references) //IL_1763: Unknown result type (might be due to invalid IL or missing references) //IL_1769: Unknown result type (might be due to invalid IL or missing references) //IL_176e: Unknown result type (might be due to invalid IL or missing references) //IL_177a: Unknown result type (might be due to invalid IL or missing references) //IL_0686: Unknown result type (might be due to invalid IL or missing references) //IL_068b: Unknown result type (might be due to invalid IL or missing references) //IL_1891: Unknown result type (might be due to invalid IL or missing references) //IL_1896: Unknown result type (might be due to invalid IL or missing references) //IL_06c6: Unknown result type (might be due to invalid IL or missing references) //IL_06cc: Unknown result type (might be due to invalid IL or missing references) //IL_06d1: Unknown result type (might be due to invalid IL or missing references) //IL_06d7: Unknown result type (might be due to invalid IL or missing references) //IL_06dc: Unknown result type (might be due to invalid IL or missing references) //IL_06e2: Unknown result type (might be due to invalid IL or missing references) //IL_06ec: Unknown result type (might be due to invalid IL or missing references) //IL_06f1: Unknown result type (might be due to invalid IL or missing references) //IL_06f7: Unknown result type (might be due to invalid IL or missing references) //IL_0701: Unknown result type (might be due to invalid IL or missing references) //IL_0707: Unknown result type (might be due to invalid IL or missing references) //IL_070c: Unknown result type (might be due to invalid IL or missing references) //IL_0712: Unknown result type (might be due to invalid IL or missing references) //IL_0717: Unknown result type (might be due to invalid IL or missing references) //IL_071c: Unknown result type (might be due to invalid IL or missing references) //IL_0727: Unknown result type (might be due to invalid IL or missing references) //IL_072d: Unknown result type (might be due to invalid IL or missing references) //IL_0732: Unknown result type (might be due to invalid IL or missing references) //IL_0738: Unknown result type (might be due to invalid IL or missing references) //IL_073d: Unknown result type (might be due to invalid IL or missing references) //IL_0743: Unknown result type (might be due to invalid IL or missing references) //IL_074d: Unknown result type (might be due to invalid IL or missing references) //IL_0752: Unknown result type (might be due to invalid IL or missing references) //IL_0758: Unknown result type (might be due to invalid IL or missing references) //IL_0762: Unknown result type (might be due to invalid IL or missing references) //IL_0768: Unknown result type (might be due to invalid IL or missing references) //IL_076d: Unknown result type (might be due to invalid IL or missing references) //IL_0773: Unknown result type (might be due to invalid IL or missing references) //IL_0778: Unknown result type (might be due to invalid IL or missing references) //IL_077d: Unknown result type (might be due to invalid IL or missing references) //IL_0789: Unknown result type (might be due to invalid IL or missing references) //IL_2786: Unknown result type (might be due to invalid IL or missing references) //IL_278c: Unknown result type (might be due to invalid IL or missing references) //IL_2791: Unknown result type (might be due to invalid IL or missing references) //IL_2797: Unknown result type (might be due to invalid IL or missing references) //IL_27a1: Unknown result type (might be due to invalid IL or missing references) //IL_27a6: Unknown result type (might be due to invalid IL or missing references) //IL_27ac: Unknown result type (might be due to invalid IL or missing references) //IL_27b6: Unknown result type (might be due to invalid IL or missing references) //IL_27bb: Unknown result type (might be due to invalid IL or missing references) //IL_27c1: Unknown result type (might be due to invalid IL or missing references) //IL_27cb: Unknown result type (might be due to invalid IL or missing references) //IL_27d0: Unknown result type (might be due to invalid IL or missing references) //IL_27d6: Unknown result type (might be due to invalid IL or missing references) //IL_27db: Unknown result type (might be due to invalid IL or missing references) //IL_27e1: Unknown result type (might be due to invalid IL or missing references) //IL_27e6: Unknown result type (might be due to invalid IL or missing references) //IL_27ec: Unknown result type (might be due to invalid IL or missing references) //IL_27f1: Unknown result type (might be due to invalid IL or missing references) //IL_27fc: Unknown result type (might be due to invalid IL or missing references) //IL_2802: Unknown result type (might be due to invalid IL or missing references) //IL_2807: Unknown result type (might be due to invalid IL or missing references) //IL_280d: Unknown result type (might be due to invalid IL or missing references) //IL_2817: Unknown result type (might be due to invalid IL or missing references) //IL_281c: Unknown result type (might be due to invalid IL or missing references) //IL_2822: Unknown result type (might be due to invalid IL or missing references) //IL_282c: Unknown result type (might be due to invalid IL or missing references) //IL_2831: Unknown result type (might be due to invalid IL or missing references) //IL_2837: Unknown result type (might be due to invalid IL or missing references) //IL_2841: Unknown result type (might be due to invalid IL or missing references) //IL_2846: Unknown result type (might be due to invalid IL or missing references) //IL_284c: Unknown result type (might be due to invalid IL or missing references) //IL_2851: Unknown result type (might be due to invalid IL or missing references) //IL_2857: Unknown result type (might be due to invalid IL or missing references) //IL_285c: Unknown result type (might be due to invalid IL or missing references) //IL_2862: Unknown result type (might be due to invalid IL or missing references) //IL_2867: Unknown result type (might be due to invalid IL or missing references) //IL_2873: Unknown result type (might be due to invalid IL or missing references) //IL_18d2: Unknown result type (might be due to invalid IL or missing references) //IL_18d8: Unknown result type (might be due to invalid IL or missing references) //IL_18dd: Unknown result type (might be due to invalid IL or missing references) //IL_18e3: Unknown result type (might be due to invalid IL or missing references) //IL_18e8: Unknown result type (might be due to invalid IL or missing references) //IL_18ee: Unknown result type (might be due to invalid IL or missing references) //IL_18f8: Unknown result type (might be due to invalid IL or missing references) //IL_18fd: Unknown result type (might be due to invalid IL or missing references) //IL_1903: Unknown result type (might be due to invalid IL or missing references) //IL_190d: Unknown result type (might be due to invalid IL or missing references) //IL_1913: Unknown result type (might be due to invalid IL or missing references) //IL_1918: Unknown result type (might be due to invalid IL or missing references) //IL_191e: Unknown result type (might be due to invalid IL or missing references) //IL_1923: Unknown result type (might be due to invalid IL or missing references) //IL_1928: Unknown result type (might be due to invalid IL or missing references) //IL_1933: Unknown result type (might be due to invalid IL or missing references) //IL_1939: Unknown result type (might be due to invalid IL or missing references) //IL_193e: Unknown result type (might be due to invalid IL or missing references) //IL_1944: Unknown result type (might be due to invalid IL or missing references) //IL_1949: Unknown result type (might be due to invalid IL or missing references) //IL_194f: Unknown result type (might be due to invalid IL or missing references) //IL_1959: Unknown result type (might be due to invalid IL or missing references) //IL_195e: Unknown result type (might be due to invalid IL or missing references) //IL_1964: Unknown result type (might be due to invalid IL or missing references) //IL_196e: Unknown result type (might be due to invalid IL or missing references) //IL_1974: Unknown result type (might be due to invalid IL or missing references) //IL_1979: Unknown result type (might be due to invalid IL or missing references) //IL_197f: Unknown result type (might be due to invalid IL or missing references) //IL_1984: Unknown result type (might be due to invalid IL or missing references) //IL_1989: Unknown result type (might be due to invalid IL or missing references) //IL_1995: Unknown result type (might be due to invalid IL or missing references) //IL_0854: Unknown result type (might be due to invalid IL or missing references) //IL_085a: Unknown result type (might be due to invalid IL or missing references) //IL_085f: Unknown result type (might be due to invalid IL or missing references) //IL_0865: Unknown result type (might be due to invalid IL or missing references) //IL_086a: Unknown result type (might be due to invalid IL or missing references) //IL_0870: Unknown result type (might be due to invalid IL or missing references) //IL_087a: Unknown result type (might be due to invalid IL or missing references) //IL_087f: Unknown result type (might be due to invalid IL or missing references) //IL_0885: Unknown result type (might be due to invalid IL or missing references) //IL_088f: Unknown result type (might be due to invalid IL or missing references) //IL_0895: Unknown result type (might be due to invalid IL or missing references) //IL_089a: Unknown result type (might be due to invalid IL or missing references) //IL_08a0: Unknown result type (might be due to invalid IL or missing references) //IL_08a5: Unknown result type (might be due to invalid IL or missing references) //IL_08aa: Unknown result type (might be due to invalid IL or missing references) //IL_08b0: Unknown result type (might be due to invalid IL or missing references) //IL_08ba: Unknown result type (might be due to invalid IL or missing references) //IL_08bf: Unknown result type (might be due to invalid IL or missing references) //IL_08ca: Unknown result type (might be due to invalid IL or missing references) //IL_08d0: Unknown result type (might be due to invalid IL or missing references) //IL_08d5: Unknown result type (might be due to invalid IL or missing references) //IL_08db: Unknown result type (might be due to invalid IL or missing references) //IL_08e0: Unknown result type (might be due to invalid IL or missing references) //IL_08e6: Unknown result type (might be due to invalid IL or missing references) //IL_08f0: Unknown result type (might be due to invalid IL or missing references) //IL_08f5: Unknown result type (might be due to invalid IL or missing references) //IL_08fb: Unknown result type (might be due to invalid IL or missing references) //IL_0905: Unknown result type (might be due to invalid IL or missing references) //IL_090b: Unknown result type (might be due to invalid IL or missing references) //IL_0910: Unknown result type (might be due to invalid IL or missing references) //IL_0916: Unknown result type (might be due to invalid IL or missing references) //IL_091b: Unknown result type (might be due to invalid IL or missing references) //IL_0920: Unknown result type (might be due to invalid IL or missing references) //IL_0926: Unknown result type (might be due to invalid IL or missing references) //IL_0930: Unknown result type (might be due to invalid IL or missing references) //IL_0935: Unknown result type (might be due to invalid IL or missing references) //IL_0941: Unknown result type (might be due to invalid IL or missing references) //IL_07a3: Unknown result type (might be due to invalid IL or missing references) //IL_07a8: Unknown result type (might be due to invalid IL or missing references) //IL_2994: Unknown result type (might be due to invalid IL or missing references) //IL_299a: Unknown result type (might be due to invalid IL or missing references) //IL_299f: Unknown result type (might be due to invalid IL or missing references) //IL_29a5: Unknown result type (might be due to invalid IL or missing references) //IL_29af: Unknown result type (might be due to invalid IL or missing references) //IL_29b4: Unknown result type (might be due to invalid IL or missing references) //IL_29ba: Unknown result type (might be due to invalid IL or missing references) //IL_29c4: Unknown result type (might be due to invalid IL or missing references) //IL_29c9: Unknown result type (might be due to invalid IL or missing references) //IL_29cf: Unknown result type (might be due to invalid IL or missing references) //IL_29d9: Unknown result type (might be due to invalid IL or missing references) //IL_29de: Unknown result type (might be due to invalid IL or missing references) //IL_29e4: Unknown result type (might be due to invalid IL or missing references) //IL_29e9: Unknown result type (might be due to invalid IL or missing references) //IL_29ef: Unknown result type (might be due to invalid IL or missing references) //IL_29f4: Unknown result type (might be due to invalid IL or missing references) //IL_29fa: Unknown result type (might be due to invalid IL or missing references) //IL_29ff: Unknown result type (might be due to invalid IL or missing references) //IL_2a0a: Unknown result type (might be due to invalid IL or missing references) //IL_2a10: Unknown result type (might be due to invalid IL or missing references) //IL_2a15: Unknown result type (might be due to invalid IL or missing references) //IL_2a1b: Unknown result type (might be due to invalid IL or missing references) //IL_2a25: Unknown result type (might be due to invalid IL or missing references) //IL_2a2a: Unknown result type (might be due to invalid IL or missing references) //IL_2a30: Unknown result type (might be due to invalid IL or missing references) //IL_2a3a: Unknown result type (might be due to invalid IL or missing references) //IL_2a3f: Unknown result type (might be due to invalid IL or missing references) //IL_2a45: Unknown result type (might be due to invalid IL or missing references) //IL_2a4f: Unknown result type (might be due to invalid IL or missing references) //IL_2a54: Unknown result type (might be due to invalid IL or missing references) //IL_2a5a: Unknown result type (might be due to invalid IL or missing references) //IL_2a5f: Unknown result type (might be due to invalid IL or missing references) //IL_2a65: Unknown result type (might be due to invalid IL or missing references) //IL_2a6a: Unknown result type (might be due to invalid IL or missing references) //IL_2a76: Unknown result type (might be due to invalid IL or missing references) //IL_288d: Unknown result type (might be due to invalid IL or missing references) //IL_2893: Unknown result type (might be due to invalid IL or missing references) //IL_2898: Unknown result type (might be due to invalid IL or missing references) //IL_289e: Unknown result type (might be due to invalid IL or missing references) //IL_28a8: Unknown result type (might be due to invalid IL or missing references) //IL_28ad: Unknown result type (might be due to invalid IL or missing references) //IL_28b3: Unknown result type (might be due to invalid IL or missing references) //IL_28bd: Unknown result type (might be due to invalid IL or missing references) //IL_28c2: Unknown result type (might be due to invalid IL or missing references) //IL_28c8: Unknown result type (might be due to invalid IL or missing references) //IL_28d2: Unknown result type (might be due to invalid IL or missing references) //IL_28d7: Unknown result type (might be due to invalid IL or missing references) //IL_28dd: Unknown result type (might be due to invalid IL or missing references) //IL_28e2: Unknown result type (might be due to invalid IL or missing references) //IL_28e8: Unknown result type (might be due to invalid IL or missing references) //IL_28ed: Unknown result type (might be due to invalid IL or missing references) //IL_28f3: Unknown result type (might be due to invalid IL or missing references) //IL_28f8: Unknown result type (might be due to invalid IL or missing references) //IL_2903: Unknown result type (might be due to invalid IL or missing references) //IL_2909: Unknown result type (might be due to invalid IL or missing references) //IL_290e: Unknown result type (might be due to invalid IL or missing references) //IL_2914: Unknown result type (might be due to invalid IL or missing references) //IL_291e: Unknown result type (might be due to invalid IL or missing references) //IL_2923: Unknown result type (might be due to invalid IL or missing references) //IL_2929: Unknown result type (might be due to invalid IL or missing references) //IL_292e: Unknown result type (might be due to invalid IL or missing references) //IL_2934: Unknown result type (might be due to invalid IL or missing references) //IL_293e: Unknown result type (might be due to invalid IL or missing references) //IL_2943: Unknown result type (might be due to invalid IL or missing references) //IL_2949: Unknown result type (might be due to invalid IL or missing references) //IL_2953: Unknown result type (might be due to invalid IL or missing references) //IL_2958: Unknown result type (might be due to invalid IL or missing references) //IL_295e: Unknown result type (might be due to invalid IL or missing references) //IL_2963: Unknown result type (might be due to invalid IL or missing references) //IL_2969: Unknown result type (might be due to invalid IL or missing references) //IL_296e: Unknown result type (might be due to invalid IL or missing references) //IL_297a: Unknown result type (might be due to invalid IL or missing references) //IL_1a63: Unknown result type (might be due to invalid IL or missing references) //IL_1a69: Unknown result type (might be due to invalid IL or missing references) //IL_1a6e: Unknown result type (might be due to invalid IL or missing references) //IL_1a74: Unknown result type (might be due to invalid IL or missing references) //IL_1a79: Unknown result type (might be due to invalid IL or missing references) //IL_1a7f: Unknown result type (might be due to invalid IL or missing references) //IL_1a89: Unknown result type (might be due to invalid IL or missing references) //IL_1a8e: Unknown result type (might be due to invalid IL or missing references) //IL_1a94: Unknown result type (might be due to invalid IL or missing references) //IL_1a9e: Unknown result type (might be due to invalid IL or missing references) //IL_1aa4: Unknown result type (might be due to invalid IL or missing references) //IL_1aa9: Unknown result type (might be due to invalid IL or missing references) //IL_1aaf: Unknown result type (might be due to invalid IL or missing references) //IL_1ab4: Unknown result type (might be due to invalid IL or missing references) //IL_1ab9: Unknown result type (might be due to invalid IL or missing references) //IL_1abf: Unknown result type (might be due to invalid IL or missing references) //IL_1ac9: Unknown result type (might be due to invalid IL or missing references) //IL_1ace: Unknown result type (might be due to invalid IL or missing references) //IL_1ad9: Unknown result type (might be due to invalid IL or missing references) //IL_1adf: Unknown result type (might be due to invalid IL or missing references) //IL_1ae4: Unknown result type (might be due to invalid IL or missing references) //IL_1aea: Unknown result type (might be due to invalid IL or missing references) //IL_1aef: Unknown result type (might be due to invalid IL or missing references) //IL_1af5: Unknown result type (might be due to invalid IL or missing references) //IL_1aff: Unknown result type (might be due to invalid IL or missing references) //IL_1b04: Unknown result type (might be due to invalid IL or missing references) //IL_1b0a: Unknown result type (might be due to invalid IL or missing references) //IL_1b14: Unknown result type (might be due to invalid IL or missing references) //IL_1b1a: Unknown result type (might be due to invalid IL or missing references) //IL_1b1f: Unknown result type (might be due to invalid IL or missing references) //IL_1b25: Unknown result type (might be due to invalid IL or missing references) //IL_1b2a: Unknown result type (might be due to invalid IL or missing references) //IL_1b2f: Unknown result type (might be due to invalid IL or missing references) //IL_1b35: Unknown result type (might be due to invalid IL or missing references) //IL_1b3f: Unknown result type (might be due to invalid IL or missing references) //IL_1b44: Unknown result type (might be due to invalid IL or missing references) //IL_1b50: Unknown result type (might be due to invalid IL or missing references) //IL_19af: Unknown result type (might be due to invalid IL or missing references) //IL_19b4: Unknown result type (might be due to invalid IL or missing references) //IL_0a0f: Unknown result type (might be due to invalid IL or missing references) //IL_0a15: Unknown result type (might be due to invalid IL or missing references) //IL_0a1a: Unknown result type (might be due to invalid IL or missing references) //IL_0a20: Unknown result type (might be due to invalid IL or missing references) //IL_0a25: Unknown result type (might be due to invalid IL or missing references) //IL_0a2b: Unknown result type (might be due to invalid IL or missing references) //IL_0a35: Unknown result type (might be due to invalid IL or missing references) //IL_0a3a: Unknown result type (might be due to invalid IL or missing references) //IL_0a40: Unknown result type (might be due to invalid IL or missing references) //IL_0a4a: Unknown result type (might be due to invalid IL or missing references) //IL_0a50: Unknown result type (might be due to invalid IL or missing references) //IL_0a55: Unknown result type (might be due to invalid IL or missing references) //IL_0a5b: Unknown result type (might be due to invalid IL or missing references) //IL_0a60: Unknown result type (might be due to invalid IL or missing references) //IL_0a65: Unknown result type (might be due to invalid IL or missing references) //IL_0a6b: Unknown result type (might be due to invalid IL or missing references) //IL_0a75: Unknown result type (might be due to invalid IL or missing references) //IL_0a7a: Unknown result type (might be due to invalid IL or missing references) //IL_0a85: Unknown result type (might be due to invalid IL or missing references) //IL_0a8b: Unknown result type (might be due to invalid IL or missing references) //IL_0a90: Unknown result type (might be due to invalid IL or missing references) //IL_0a96: Unknown result type (might be due to invalid IL or missing references) //IL_0a9b: Unknown result type (might be due to invalid IL or missing references) //IL_0aa1: Unknown result type (might be due to invalid IL or missing references) //IL_0aab: Unknown result type (might be due to invalid IL or missing references) //IL_0ab0: Unknown result type (might be due to invalid IL or missing references) //IL_0ab6: Unknown result type (might be due to invalid IL or missing references) //IL_0ac0: Unknown result type (might be due to invalid IL or missing references) //IL_0ac6: Unknown result type (might be due to invalid IL or missing references) //IL_0acb: Unknown result type (might be due to invalid IL or missing references) //IL_0ad1: Unknown result type (might be due to invalid IL or missing references) //IL_0ad6: Unknown result type (might be due to invalid IL or missing references) //IL_0adb: Unknown result type (might be due to invalid IL or missing references) //IL_0ae1: Unknown result type (might be due to invalid IL or missing references) //IL_0aeb: Unknown result type (might be due to invalid IL or missing references) //IL_0af0: Unknown result type (might be due to invalid IL or missing references) //IL_0afc: Unknown result type (might be due to invalid IL or missing references) //IL_095b: Unknown result type (might be due to invalid IL or missing references) //IL_0960: Unknown result type (might be due to invalid IL or missing references) //IL_07dc: Unknown result type (might be due to invalid IL or missing references) //IL_07e1: Unknown result type (might be due to invalid IL or missing references) //IL_07ef: Unknown result type (might be due to invalid IL or missing references) //IL_07f4: Unknown result type (might be due to invalid IL or missing references) //IL_080f: Unknown result type (might be due to invalid IL or missing references) //IL_0814: Unknown result type (might be due to invalid IL or missing references) //IL_081d: Unknown result type (might be due to invalid IL or missing references) //IL_0828: Unknown result type (might be due to invalid IL or missing references) //IL_0839: Unknown result type (might be due to invalid IL or missing references) //IL_083e: Unknown result type (might be due to invalid IL or missing references) //IL_0843: Unknown result type (might be due to invalid IL or missing references) //IL_2a91: Unknown result type (might be due to invalid IL or missing references) //IL_2a96: Unknown result type (might be due to invalid IL or missing references) //IL_1c1e: Unknown result type (might be due to invalid IL or missing references) //IL_1c24: Unknown result type (might be due to invalid IL or missing references) //IL_1c29: Unknown result type (might be due to invalid IL or missing references) //IL_1c2f: Unknown result type (might be due to invalid IL or missing references) //IL_1c34: Unknown result type (might be due to invalid IL or missing references) //IL_1c3a: Unknown result type (might be due to invalid IL or missing references) //IL_1c44: Unknown result type (might be due to invalid IL or missing references) //IL_1c49: Unknown result type (might be due to invalid IL or missing references) //IL_1c4f: Unknown result type (might be due to invalid IL or missing references) //IL_1c59: Unknown result type (might be due to invalid IL or missing references) //IL_1c5f: Unknown result type (might be due to invalid IL or missing references) //IL_1c64: Unknown result type (might be due to invalid IL or missing references) //IL_1c6a: Unknown result type (might be due to invalid IL or missing references) //IL_1c6f: Unknown result type (might be due to invalid IL or missing references) //IL_1c74: Unknown result type (might be due to invalid IL or missing references) //IL_1c7a: Unknown result type (might be due to invalid IL or missing references) //IL_1c84: Unknown result type (might be due to invalid IL or missing references) //IL_1c89: Unknown result type (might be due to invalid IL or missing references) //IL_1c94: Unknown result type (might be due to invalid IL or missing references) //IL_1c9a: Unknown result type (might be due to invalid IL or missing references) //IL_1c9f: Unknown result type (might be due to invalid IL or missing references) //IL_1ca5: Unknown result type (might be due to invalid IL or missing references) //IL_1caa: Unknown result type (might be due to invalid IL or missing references) //IL_1cb0: Unknown result type (might be due to invalid IL or missing references) //IL_1cba: Unknown result type (might be due to invalid IL or missing references) //IL_1cbf: Unknown result type (might be due to invalid IL or missing references) //IL_1cc5: Unknown result type (might be due to invalid IL or missing references) //IL_1ccf: Unknown result type (might be due to invalid IL or missing references) //IL_1cd5: Unknown result type (might be due to invalid IL or missing references) //IL_1cda: Unknown result type (might be due to invalid IL or missing references) //IL_1ce0: Unknown result type (might be due to invalid IL or missing references) //IL_1ce5: Unknown result type (might be due to invalid IL or missing references) //IL_1cea: Unknown result type (might be due to invalid IL or missing references) //IL_1cf0: Unknown result type (might be due to invalid IL or missing references) //IL_1cfa: Unknown result type (might be due to invalid IL or missing references) //IL_1cff: Unknown result type (might be due to invalid IL or missing references) //IL_1d0b: Unknown result type (might be due to invalid IL or missing references) //IL_1b6a: Unknown result type (might be due to invalid IL or missing references) //IL_1b6f: Unknown result type (might be due to invalid IL or missing references) //IL_19e9: Unknown result type (might be due to invalid IL or missing references) //IL_19ee: Unknown result type (might be due to invalid IL or missing references) //IL_19fd: Unknown result type (might be due to invalid IL or missing references) //IL_1a02: Unknown result type (might be due to invalid IL or missing references) //IL_1a1e: Unknown result type (might be due to invalid IL or missing references) //IL_1a23: Unknown result type (might be due to invalid IL or missing references) //IL_1a2c: Unknown result type (might be due to invalid IL or missing references) //IL_1a37: Unknown result type (might be due to invalid IL or missing references) //IL_1a48: Unknown result type (might be due to invalid IL or missing references) //IL_1a4d: Unknown result type (might be due to invalid IL or missing references) //IL_1a52: Unknown result type (might be due to invalid IL or missing references) //IL_0bca: Unknown result type (might be due to invalid IL or missing references) //IL_0bd0: Unknown result type (might be due to invalid IL or missing references) //IL_0bd5: Unknown result type (might be due to invalid IL or missing references) //IL_0bdb: Unknown result type (might be due to invalid IL or missing references) //IL_0be0: Unknown result type (might be due to invalid IL or missing references) //IL_0be6: Unknown result type (might be due to invalid IL or missing references) //IL_0bf0: Unknown result type (might be due to invalid IL or missing references) //IL_0bf5: Unknown result type (might be due to invalid IL or missing references) //IL_0bfb: Unknown result type (might be due to invalid IL or missing references) //IL_0c05: Unknown result type (might be due to invalid IL or missing references) //IL_0c0b: Unknown result type (might be due to invalid IL or missing references) //IL_0c10: Unknown result type (might be due to invalid IL or missing references) //IL_0c16: Unknown result type (might be due to invalid IL or missing references) //IL_0c1b: Unknown result type (might be due to invalid IL or missing references) //IL_0c20: Unknown result type (might be due to invalid IL or missing references) //IL_0c26: Unknown result type (might be due to invalid IL or missing references) //IL_0c30: Unknown result type (might be due to invalid IL or missing references) //IL_0c35: Unknown result type (might be due to invalid IL or missing references) //IL_0c40: Unknown result type (might be due to invalid IL or missing references) //IL_0c46: Unknown result type (might be due to invalid IL or missing references) //IL_0c4b: Unknown result type (might be due to invalid IL or missing references) //IL_0c51: Unknown result type (might be due to invalid IL or missing references) //IL_0c56: Unknown result type (might be due to invalid IL or missing references) //IL_0c5c: Unknown result type (might be due to invalid IL or missing references) //IL_0c66: Unknown result type (might be due to invalid IL or missing references) //IL_0c6b: Unknown result type (might be due to invalid IL or missing references) //IL_0c71: Unknown result type (might be due to invalid IL or missing references) //IL_0c7b: Unknown result type (might be due to invalid IL or missing references) //IL_0c81: Unknown result type (might be due to invalid IL or missing references) //IL_0c86: Unknown result type (might be due to invalid IL or missing references) //IL_0c8c: Unknown result type (might be due to invalid IL or missing references) //IL_0c91: Unknown result type (might be due to invalid IL or missing references) //IL_0c96: Unknown result type (might be due to invalid IL or missing references) //IL_0c9c: Unknown result type (might be due to invalid IL or missing references) //IL_0ca6: Unknown result type (might be due to invalid IL or missing references) //IL_0cab: Unknown result type (might be due to invalid IL or missing references) //IL_0cb7: Unknown result type (might be due to invalid IL or missing references) //IL_0b16: Unknown result type (might be due to invalid IL or missing references) //IL_0b1b: Unknown result type (might be due to invalid IL or missing references) //IL_0995: Unknown result type (might be due to invalid IL or missing references) //IL_099a: Unknown result type (might be due to invalid IL or missing references) //IL_09a9: Unknown result type (might be due to invalid IL or missing references) //IL_09ae: Unknown result type (might be due to invalid IL or missing references) //IL_09ca: Unknown result type (might be due to invalid IL or missing references) //IL_09cf: Unknown result type (might be due to invalid IL or missing references) //IL_09d8: Unknown result type (might be due to invalid IL or missing references) //IL_09e3: Unknown result type (might be due to invalid IL or missing references) //IL_09f4: Unknown result type (might be due to invalid IL or missing references) //IL_09f9: Unknown result type (might be due to invalid IL or missing references) //IL_09fe: Unknown result type (might be due to invalid IL or missing references) //IL_2ad2: Unknown result type (might be due to invalid IL or missing references) //IL_2ad8: Unknown result type (might be due to invalid IL or missing references) //IL_2add: Unknown result type (might be due to invalid IL or missing references) //IL_2ae3: Unknown result type (might be due to invalid IL or missing references) //IL_2ae8: Unknown result type (might be due to invalid IL or missing references) //IL_2aee: Unknown result type (might be due to invalid IL or missing references) //IL_2af8: Unknown result type (might be due to invalid IL or missing references) //IL_2afd: Unknown result type (might be due to invalid IL or missing references) //IL_2b03: Unknown result type (might be due to invalid IL or missing references) //IL_2b0d: Unknown result type (might be due to invalid IL or missing references) //IL_2b13: Unknown result type (might be due to invalid IL or missing references) //IL_2b18: Unknown result type (might be due to invalid IL or missing references) //IL_2b1e: Unknown result type (might be due to invalid IL or missing references) //IL_2b23: Unknown result type (might be due to invalid IL or missing references) //IL_2b28: Unknown result type (might be due to invalid IL or missing references) //IL_2b33: Unknown result type (might be due to invalid IL or missing references) //IL_2b39: Unknown result type (might be due to invalid IL or missing references) //IL_2b3e: Unknown result type (might be due to invalid IL or missing references) //IL_2b44: Unknown result type (might be due to invalid IL or missing references) //IL_2b49: Unknown result type (might be due to invalid IL or missing references) //IL_2b4f: Unknown result type (might be due to invalid IL or missing references) //IL_2b59: Unknown result type (might be due to invalid IL or missing references) //IL_2b5e: Unknown result type (might be due to invalid IL or missing references) //IL_2b64: Unknown result type (might be due to invalid IL or missing references) //IL_2b6e: Unknown result type (might be due to invalid IL or missing references) //IL_2b74: Unknown result type (might be due to invalid IL or missing references) //IL_2b79: Unknown result type (might be due to invalid IL or missing references) //IL_2b7f: Unknown result type (might be due to invalid IL or missing references) //IL_2b84: Unknown result type (might be due to invalid IL or missing references) //IL_2b89: Unknown result type (might be due to invalid IL or missing references) //IL_2b95: Unknown result type (might be due to invalid IL or missing references) //IL_1dd9: Unknown result type (might be due to invalid IL or missing references) //IL_1ddf: Unknown result type (might be due to invalid IL or missing references) //IL_1de4: Unknown result type (might be due to invalid IL or missing references) //IL_1dea: Unknown result type (might be due to invalid IL or missing references) //IL_1def: Unknown result type (might be due to invalid IL or missing references) //IL_1df5: Unknown result type (might be due to invalid IL or missing references) //IL_1dff: Unknown result type (might be due to invalid IL or missing references) //IL_1e04: Unknown result type (might be due to invalid IL or missing references) //IL_1e0a: Unknown result type (might be due to invalid IL or missing references) //IL_1e14: Unknown result type (might be due to invalid IL or missing references) //IL_1e1a: Unknown result type (might be due to invalid IL or missing references) //IL_1e1f: Unknown result type (might be due to invalid IL or missing references) //IL_1e25: Unknown result type (might be due to invalid IL or missing references) //IL_1e2a: Unknown result type (might be due to invalid IL or missing references) //IL_1e2f: Unknown result type (might be due to invalid IL or missing references) //IL_1e35: Unknown result type (might be due to invalid IL or missing references) //IL_1e3f: Unknown result type (might be due to invalid IL or missing references) //IL_1e44: Unknown result type (might be due to invalid IL or missing references) //IL_1e4f: Unknown result type (might be due to invalid IL or missing references) //IL_1e55: Unknown result type (might be due to invalid IL or missing references) //IL_1e5a: Unknown result type (might be due to invalid IL or missing references) //IL_1e60: Unknown result type (might be due to invalid IL or missing references) //IL_1e65: Unknown result type (might be due to invalid IL or missing references) //IL_1e6b: Unknown result type (might be due to invalid IL or missing references) //IL_1e75: Unknown result type (might be due to invalid IL or missing references) //IL_1e7a: Unknown result type (might be due to invalid IL or missing references) //IL_1e80: Unknown result type (might be due to invalid IL or missing references) //IL_1e8a: Unknown result type (might be due to invalid IL or missing references) //IL_1e90: Unknown result type (might be due to invalid IL or missing references) //IL_1e95: Unknown result type (might be due to invalid IL or missing references) //IL_1e9b: Unknown result type (might be due to invalid IL or missing references) //IL_1ea0: Unknown result type (might be due to invalid IL or missing references) //IL_1ea5: Unknown result type (might be due to invalid IL or missing references) //IL_1eab: Unknown result type (might be due to invalid IL or missing references) //IL_1eb5: Unknown result type (might be due to invalid IL or missing references) //IL_1eba: Unknown result type (might be due to invalid IL or missing references) //IL_1ec6: Unknown result type (might be due to invalid IL or missing references) //IL_1d25: Unknown result type (might be due to invalid IL or missing references) //IL_1d2a: Unknown result type (might be due to invalid IL or missing references) //IL_1ba4: Unknown result type (might be due to invalid IL or missing references) //IL_1ba9: Unknown result type (might be due to invalid IL or missing references) //IL_1bb8: Unknown result type (might be due to invalid IL or missing references) //IL_1bbd: Unknown result type (might be due to invalid IL or missing references) //IL_1bd9: Unknown result type (might be due to invalid IL or missing references) //IL_1bde: Unknown result type (might be due to invalid IL or missing references) //IL_1be7: Unknown result type (might be due to invalid IL or missing references) //IL_1bf2: Unknown result type (might be due to invalid IL or missing references) //IL_1c03: Unknown result type (might be due to invalid IL or missing references) //IL_1c08: Unknown result type (might be due to invalid IL or missing references) //IL_1c0d: Unknown result type (might be due to invalid IL or missing references) //IL_0d85: Unknown result type (might be due to invalid IL or missing references) //IL_0d8b: Unknown result type (might be due to invalid IL or missing references) //IL_0d90: Unknown result type (might be due to invalid IL or missing references) //IL_0d96: Unknown result type (might be due to invalid IL or missing references) //IL_0d9b: Unknown result type (might be due to invalid IL or missing references) //IL_0da1: Unknown result type (might be due to invalid IL or missing references) //IL_0dab: Unknown result type (might be due to invalid IL or missing references) //IL_0db0: Unknown result type (might be due to invalid IL or missing references) //IL_0db6: Unknown result type (might be due to invalid IL or missing references) //IL_0dc0: Unknown result type (might be due to invalid IL or missing references) //IL_0dc6: Unknown result type (might be due to invalid IL or missing references) //IL_0dcb: Unknown result type (might be due to invalid IL or missing references) //IL_0dd1: Unknown result type (might be due to invalid IL or missing references) //IL_0dd6: Unknown result type (might be due to invalid IL or missing references) //IL_0ddb: Unknown result type (might be due to invalid IL or missing references) //IL_0de1: Unknown result type (might be due to invalid IL or missing references) //IL_0deb: Unknown result type (might be due to invalid IL or missing references) //IL_0df0: Unknown result type (might be due to invalid IL or missing references) //IL_0dfb: Unknown result type (might be due to invalid IL or missing references) //IL_0e01: Unknown result type (might be due to invalid IL or missing references) //IL_0e06: Unknown result type (might be due to invalid IL or missing references) //IL_0e0c: Unknown result type (might be due to invalid IL or missing references) //IL_0e11: Unknown result type (might be due to invalid IL or missing references) //IL_0e17: Unknown result type (might be due to invalid IL or missing references) //IL_0e21: Unknown result type (might be due to invalid IL or missing references) //IL_0e26: Unknown result type (might be due to invalid IL or missing references) //IL_0e2c: Unknown result type (might be due to invalid IL or missing references) //IL_0e36: Unknown result type (might be due to invalid IL or missing references) //IL_0e3c: Unknown result type (might be due to invalid IL or missing references) //IL_0e41: Unknown result type (might be due to invalid IL or missing references) //IL_0e47: Unknown result type (might be due to invalid IL or missing references) //IL_0e4c: Unknown result type (might be due to invalid IL or missing references) //IL_0e51: Unknown result type (might be due to invalid IL or missing references) //IL_0e57: Unknown result type (might be due to invalid IL or missing references) //IL_0e61: Unknown result type (might be due to invalid IL or missing references) //IL_0e66: Unknown result type (might be due to invalid IL or missing references) //IL_0e72: Unknown result type (might be due to invalid IL or missing references) //IL_0cd1: Unknown result type (might be due to invalid IL or missing references) //IL_0cd6: Unknown result type (might be due to invalid IL or missing references) //IL_0b50: Unknown result type (might be due to invalid IL or missing references) //IL_0b55: Unknown result type (might be due to invalid IL or missing references) //IL_0b64: Unknown result type (might be due to invalid IL or missing references) //IL_0b69: Unknown result type (might be due to invalid IL or missing references) //IL_0b85: Unknown result type (might be due to invalid IL or missing references) //IL_0b8a: Unknown result type (might be due to invalid IL or missing references) //IL_0b93: Unknown result type (might be due to invalid IL or missing references) //IL_0b9e: Unknown result type (might be due to invalid IL or missing references) //IL_0baf: Unknown result type (might be due to invalid IL or missing references) //IL_0bb4: Unknown result type (might be due to invalid IL or missing references) //IL_0bb9: Unknown result type (might be due to invalid IL or missing references) //IL_2c63: Unknown result type (might be due to invalid IL or missing references) //IL_2c69: Unknown result type (might be due to invalid IL or missing references) //IL_2c6e: Unknown result type (might be due to invalid IL or missing references) //IL_2c74: Unknown result type (might be due to invalid IL or missing references) //IL_2c79: Unknown result type (might be due to invalid IL or missing references) //IL_2c7f: Unknown result type (might be due to invalid IL or missing references) //IL_2c89: Unknown result type (might be due to invalid IL or missing references) //IL_2c8e: Unknown result type (might be due to invalid IL or missing references) //IL_2c94: Unknown result type (might be due to invalid IL or missing references) //IL_2c9e: Unknown result type (might be due to invalid IL or missing references) //IL_2ca4: Unknown result type (might be due to invalid IL or missing references) //IL_2ca9: Unknown result type (might be due to invalid IL or missing references) //IL_2caf: Unknown result type (might be due to invalid IL or missing references) //IL_2cb4: Unknown result type (might be due to invalid IL or missing references) //IL_2cb9: Unknown result type (might be due to invalid IL or missing references) //IL_2cbf: Unknown result type (might be due to invalid IL or missing references) //IL_2cc9: Unknown result type (might be due to invalid IL or missing references) //IL_2cce: Unknown result type (might be due to invalid IL or missing references) //IL_2cd9: Unknown result type (might be due to invalid IL or missing references) //IL_2cdf: Unknown result type (might be due to invalid IL or missing references) //IL_2ce4: Unknown result type (might be due to invalid IL or missing references) //IL_2cea: Unknown result type (might be due to invalid IL or missing references) //IL_2cef: Unknown result type (might be due to invalid IL or missing references) //IL_2cf5: Unknown result type (might be due to invalid IL or missing references) //IL_2cff: Unknown result type (might be due to invalid IL or missing references) //IL_2d04: Unknown result type (might be due to invalid IL or missing references) //IL_2d0a: Unknown result type (might be due to invalid IL or missing references) //IL_2d14: Unknown result type (might be due to invalid IL or missing references) //IL_2d1a: Unknown result type (might be due to invalid IL or missing references) //IL_2d1f: Unknown result type (might be due to invalid IL or missing references) //IL_2d25: Unknown result type (might be due to invalid IL or missing references) //IL_2d2a: Unknown result type (might be due to invalid IL or missing references) //IL_2d2f: Unknown result type (might be due to invalid IL or missing references) //IL_2d35: Unknown result type (might be due to invalid IL or missing references) //IL_2d3f: Unknown result type (might be due to invalid IL or missing references) //IL_2d44: Unknown result type (might be due to invalid IL or missing references) //IL_2d50: Unknown result type (might be due to invalid IL or missing references) //IL_2baf: Unknown result type (might be due to invalid IL or missing references) //IL_2bb4: Unknown result type (might be due to invalid IL or missing references) //IL_1f94: Unknown result type (might be due to invalid IL or missing references) //IL_1f9a: Unknown result type (might be due to invalid IL or missing references) //IL_1f9f: Unknown result type (might be due to invalid IL or missing references) //IL_1fa5: Unknown result type (might be due to invalid IL or missing references) //IL_1faa: Unknown result type (might be due to invalid IL or missing references) //IL_1fb0: Unknown result type (might be due to invalid IL or missing references) //IL_1fba: Unknown result type (might be due to invalid IL or missing references) //IL_1fbf: Unknown result type (might be due to invalid IL or missing references) //IL_1fc5: Unknown result type (might be due to invalid IL or missing references) //IL_1fcf: Unknown result type (might be due to invalid IL or missing references) //IL_1fd5: Unknown result type (might be due to invalid IL or missing references) //IL_1fda: Unknown result type (might be due to invalid IL or missing references) //IL_1fe0: Unknown result type (might be due to invalid IL or missing references) //IL_1fe5: Unknown result type (might be due to invalid IL or missing references) //IL_1fea: Unknown result type (might be due to invalid IL or missing references) //IL_1ff0: Unknown result type (might be due to invalid IL or missing references) //IL_1ffa: Unknown result type (might be due to invalid IL or missing references) //IL_1fff: Unknown result type (might be due to invalid IL or missing references) //IL_200a: Unknown result type (might be due to invalid IL or missing references) //IL_2010: Unknown result type (might be due to invalid IL or missing references) //IL_2015: Unknown result type (might be due to invalid IL or missing references) //IL_201b: Unknown result type (might be due to invalid IL or missing references) //IL_2020: Unknown result type (might be due to invalid IL or missing references) //IL_2026: Unknown result type (might be due to invalid IL or missing references) //IL_2030: Unknown result type (might be due to invalid IL or missing references) //IL_2035: Unknown result type (might be due to invalid IL or missing references) //IL_203b: Unknown result type (might be due to invalid IL or missing references) //IL_2045: Unknown result type (might be due to invalid IL or missing references) //IL_204b: Unknown result type (might be due to invalid IL or missing references) //IL_2050: Unknown result type (might be due to invalid IL or missing references) //IL_2056: Unknown result type (might be due to invalid IL or missing references) //IL_205b: Unknown result type (might be due to invalid IL or missing references) //IL_2060: Unknown result type (might be due to invalid IL or missing references) //IL_2066: Unknown result type (might be due to invalid IL or missing references) //IL_2070: Unknown result type (might be due to invalid IL or missing references) //IL_2075: Unknown result type (might be due to invalid IL or missing references) //IL_2081: Unknown result type (might be due to invalid IL or missing references) //IL_1ee0: Unknown result type (might be due to invalid IL or missing references) //IL_1ee5: Unknown result type (might be due to invalid IL or missing references) //IL_1d5f: Unknown result type (might be due to invalid IL or missing references) //IL_1d64: Unknown result type (might be due to invalid IL or missing references) //IL_1d73: Unknown result type (might be due to invalid IL or missing references) //IL_1d78: Unknown result type (might be due to invalid IL or missing references) //IL_1d94: Unknown result type (might be due to invalid IL or missing references) //IL_1d99: Unknown result type (might be due to invalid IL or missing references) //IL_1da2: Unknown result type (might be due to invalid IL or missing references) //IL_1dad: Unknown result type (might be due to invalid IL or missing references) //IL_1dbe: Unknown result type (might be due to invalid IL or missing references) //IL_1dc3: Unknown result type (might be due to invalid IL or missing references) //IL_1dc8: Unknown result type (might be due to invalid IL or missing references) //IL_0f40: Unknown result type (might be due to invalid IL or missing references) //IL_0f46: Unknown result type (might be due to invalid IL or missing references) //IL_0f4b: Unknown result type (might be due to invalid IL or missing references) //IL_0f51: Unknown result type (might be due to invalid IL or missing references) //IL_0f56: Unknown result type (might be due to invalid IL or missing references) //IL_0f5c: Unknown result type (might be due to invalid IL or missing references) //IL_0f66: Unknown result type (might be due to invalid IL or missing references) //IL_0f6b: Unknown result type (might be due to invalid IL or missing references) //IL_0f71: Unknown result type (might be due to invalid IL or missing references) //IL_0f7b: Unknown result type (might be due to invalid IL or missing references) //IL_0f81: Unknown result type (might be due to invalid IL or missing references) //IL_0f86: Unknown result type (might be due to invalid IL or missing references) //IL_0f8c: Unknown result type (might be due to invalid IL or missing references) //IL_0f91: Unknown result type (might be due to invalid IL or missing references) //IL_0f96: Unknown result type (might be due to invalid IL or missing references) //IL_0f9c: Unknown result type (might be due to invalid IL or missing references) //IL_0fa6: Unknown result type (might be due to invalid IL or missing references) //IL_0fab: Unknown result type (might be due to invalid IL or missing references) //IL_0fb6: Unknown result type (might be due to invalid IL or missing references) //IL_0fbc: Unknown result type (might be due to invalid IL or missing references) //IL_0fc1: Unknown result type (might be due to invalid IL or missing references) //IL_0fc7: Unknown result type (might be due to invalid IL or missing references) //IL_0fcc: Unknown result type (might be due to invalid IL or missing references) //IL_0fd2: Unknown result type (might be due to invalid IL or missing references) //IL_0fdc: Unknown result type (might be due to invalid IL or missing references) //IL_0fe1: Unknown result type (might be due to invalid IL or missing references) //IL_0fe7: Unknown result type (might be due to invalid IL or missing references) //IL_0ff1: Unknown result type (might be due to invalid IL or missing references) //IL_0ff7: Unknown result type (might be due to invalid IL or missing references) //IL_0ffc: Unknown result type (might be due to invalid IL or missing references) //IL_1002: Unknown result type (might be due to invalid IL or missing references) //IL_1007: Unknown result type (might be due to invalid IL or missing references) //IL_100c: Unknown result type (might be due to invalid IL or missing references) //IL_1012: Unknown result type (might be due to invalid IL or missing references) //IL_101c: Unknown result type (might be due to invalid IL or missing references) //IL_1021: Unknown result type (might be due to invalid IL or missing references) //IL_102d: Unknown result type (might be due to invalid IL or missing references) //IL_0e8c: Unknown result type (might be due to invalid IL or missing references) //IL_0e91: Unknown result type (might be due to invalid IL or missing references) //IL_0d0b: Unknown result type (might be due to invalid IL or missing references) //IL_0d10: Unknown result type (might be due to invalid IL or missing references) //IL_0d1f: Unknown result type (might be due to invalid IL or missing references) //IL_0d24: Unknown result type (might be due to invalid IL or missing references) //IL_0d40: Unknown result type (might be due to invalid IL or missing references) //IL_0d45: Unknown result type (might be due to invalid IL or missing references) //IL_0d4e: Unknown result type (might be due to invalid IL or missing references) //IL_0d59: Unknown result type (might be due to invalid IL or missing references) //IL_0d6a: Unknown result type (might be due to invalid IL or missing references) //IL_0d6f: Unknown result type (might be due to invalid IL or missing references) //IL_0d74: Unknown result type (might be due to invalid IL or missing references) //IL_2e1e: Unknown result type (might be due to invalid IL or missing references) //IL_2e24: Unknown result type (might be due to invalid IL or missing references) //IL_2e29: Unknown result type (might be due to invalid IL or missing references) //IL_2e2f: Unknown result type (might be due to invalid IL or missing references) //IL_2e34: Unknown result type (might be due to invalid IL or missing references) //IL_2e3a: Unknown result type (might be due to invalid IL or missing references) //IL_2e44: Unknown result type (might be due to invalid IL or missing references) //IL_2e49: Unknown result type (might be due to invalid IL or missing references) //IL_2e4f: Unknown result type (might be due to invalid IL or missing references) //IL_2e59: Unknown result type (might be due to invalid IL or missing references) //IL_2e5f: Unknown result type (might be due to invalid IL or missing references) //IL_2e64: Unknown result type (might be due to invalid IL or missing references) //IL_2e6a: Unknown result type (might be due to invalid IL or missing references) //IL_2e6f: Unknown result type (might be due to invalid IL or missing references) //IL_2e74: Unknown result type (might be due to invalid IL or missing references) //IL_2e7a: Unknown result type (might be due to invalid IL or missing references) //IL_2e84: Unknown result type (might be due to invalid IL or missing references) //IL_2e89: Unknown result type (might be due to invalid IL or missing references) //IL_2e94: Unknown result type (might be due to invalid IL or missing references) //IL_2e9a: Unknown result type (might be due to invalid IL or missing references) //IL_2e9f: Unknown result type (might be due to invalid IL or missing references) //IL_2ea5: Unknown result type (might be due to invalid IL or missing references) //IL_2eaa: Unknown result type (might be due to invalid IL or missing references) //IL_2eb0: Unknown result type (might be due to invalid IL or missing references) //IL_2eba: Unknown result type (might be due to invalid IL or missing references) //IL_2ebf: Unknown result type (might be due to invalid IL or missing references) //IL_2ec5: Unknown result type (might be due to invalid IL or missing references) //IL_2ecf: Unknown result type (might be due to invalid IL or missing references) //IL_2ed5: Unknown result type (might be due to invalid IL or missing references) //IL_2eda: Unknown result type (might be due to invalid IL or missing references) //IL_2ee0: Unknown result type (might be due to invalid IL or missing references) //IL_2ee5: Unknown result type (might be due to invalid IL or missing references) //IL_2eea: Unknown result type (might be due to invalid IL or missing references) //IL_2ef0: Unknown result type (might be due to invalid IL or missing references) //IL_2efa: Unknown result type (might be due to invalid IL or missing references) //IL_2eff: Unknown result type (might be due to invalid IL or missing references) //IL_2f0b: Unknown result type (might be due to invalid IL or missing references) //IL_2d6a: Unknown result type (might be due to invalid IL or missing references) //IL_2d6f: Unknown result type (might be due to invalid IL or missing references) //IL_2be9: Unknown result type (might be due to invalid IL or missing references) //IL_2bee: Unknown result type (might be due to invalid IL or missing references) //IL_2bfd: Unknown result type (might be due to invalid IL or missing references) //IL_2c02: Unknown result type (might be due to invalid IL or missing references) //IL_2c1e: Unknown result type (might be due to invalid IL or missing references) //IL_2c23: Unknown result type (might be due to invalid IL or missing references) //IL_2c2c: Unknown result type (might be due to invalid IL or missing references) //IL_2c37: Unknown result type (might be due to invalid IL or missing references) //IL_2c48: Unknown result type (might be due to invalid IL or missing references) //IL_2c4d: Unknown result type (might be due to invalid IL or missing references) //IL_2c52: Unknown result type (might be due to invalid IL or missing references) //IL_214f: Unknown result type (might be due to invalid IL or missing references) //IL_2155: Unknown result type (might be due to invalid IL or missing references) //IL_215a: Unknown result type (might be due to invalid IL or missing references) //IL_2160: Unknown result type (might be due to invalid IL or missing references) //IL_2165: Unknown result type (might be due to invalid IL or missing references) //IL_216b: Unknown result type (might be due to invalid IL or missing references) //IL_2175: Unknown result type (might be due to invalid IL or missing references) //IL_217a: Unknown result type (might be due to invalid IL or missing references) //IL_2180: Unknown result type (might be due to invalid IL or missing references) //IL_218a: Unknown result type (might be due to invalid IL or missing references) //IL_2190: Unknown result type (might be due to invalid IL or missing references) //IL_2195: Unknown result type (might be due to invalid IL or missing references) //IL_219b: Unknown result type (might be due to invalid IL or missing references) //IL_21a0: Unknown result type (might be due to invalid IL or missing references) //IL_21a5: Unknown result type (might be due to invalid IL or missing references) //IL_21ab: Unknown result type (might be due to invalid IL or missing references) //IL_21b5: Unknown result type (might be due to invalid IL or missing references) //IL_21ba: Unknown result type (might be due to invalid IL or missing references) //IL_21c5: Unknown result type (might be due to invalid IL or missing references) //IL_21cb: Unknown result type (might be due to invalid IL or missing references) //IL_21d0: Unknown result type (might be due to invalid IL or missing references) //IL_21d6: Unknown result type (might be due to invalid IL or missing references) //IL_21db: Unknown result type (might be due to invalid IL or missing references) //IL_21e1: Unknown result type (might be due to invalid IL or missing references) //IL_21eb: Unknown result type (might be due to invalid IL or missing references) //IL_21f0: Unknown result type (might be due to invalid IL or missing references) //IL_21f6: Unknown result type (might be due to invalid IL or missing references) //IL_2200: Unknown result type (might be due to invalid IL or missing references) //IL_2206: Unknown result type (might be due to invalid IL or missing references) //IL_220b: Unknown result type (might be due to invalid IL or missing references) //IL_2211: Unknown result type (might be due to invalid IL or missing references) //IL_2216: Unknown result type (might be due to invalid IL or missing references) //IL_221b: Unknown result type (might be due to invalid IL or missing references) //IL_2221: Unknown result type (might be due to invalid IL or missing references) //IL_222b: Unknown result type (might be due to invalid IL or missing references) //IL_2230: Unknown result type (might be due to invalid IL or missing references) //IL_223c: Unknown result type (might be due to invalid IL or missing references) //IL_209b: Unknown result type (might be due to invalid IL or missing references) //IL_20a0: Unknown result type (might be due to invalid IL or missing references) //IL_1f1a: Unknown result type (might be due to invalid IL or missing references) //IL_1f1f: Unknown result type (might be due to invalid IL or missing references) //IL_1f2e: Unknown result type (might be due to invalid IL or missing references) //IL_1f33: Unknown result type (might be due to invalid IL or missing references) //IL_1f4f: Unknown result type (might be due to invalid IL or missing references) //IL_1f54: Unknown result type (might be due to invalid IL or missing references) //IL_1f5d: Unknown result type (might be due to invalid IL or missing references) //IL_1f68: Unknown result type (might be due to invalid IL or missing references) //IL_1f79: Unknown result type (might be due to invalid IL or missing references) //IL_1f7e: Unknown result type (might be due to invalid IL or missing references) //IL_1f83: Unknown result type (might be due to invalid IL or missing references) //IL_10fb: Unknown result type (might be due to invalid IL or missing references) //IL_1101: Unknown result type (might be due to invalid IL or missing references) //IL_1106: Unknown result type (might be due to invalid IL or missing references) //IL_110c: Unknown result type (might be due to invalid IL or missing references) //IL_1111: Unknown result type (might be due to invalid IL or missing references) //IL_1117: Unknown result type (might be due to invalid IL or missing references) //IL_1121: Unknown result type (might be due to invalid IL or missing references) //IL_1126: Unknown result type (might be due to invalid IL or missing references) //IL_112c: Unknown result type (might be due to invalid IL or missing references) //IL_1136: Unknown result type (might be due to invalid IL or missing references) //IL_113c: Unknown result type (might be due to invalid IL or missing references) //IL_1141: Unknown result type (might be due to invalid IL or missing references) //IL_1147: Unknown result type (might be due to invalid IL or missing references) //IL_114c: Unknown result type (might be due to invalid IL or missing references) //IL_1151: Unknown result type (might be due to invalid IL or missing references) //IL_1157: Unknown result type (might be due to invalid IL or missing references) //IL_1161: Unknown result type (might be due to invalid IL or missing references) //IL_1166: Unknown result type (might be due to invalid IL or missing references) //IL_1171: Unknown result type (might be due to invalid IL or missing references) //IL_1177: Unknown result type (might be due to invalid IL or missing references) //IL_117c: Unknown result type (might be due to invalid IL or missing references) //IL_1182: Unknown result type (might be due to invalid IL or missing references) //IL_1187: Unknown result type (might be due to invalid IL or missing references) //IL_118d: Unknown result type (might be due to invalid IL or missing references) //IL_1197: Unknown result type (might be due to invalid IL or missing references) //IL_119c: Unknown result type (might be due to invalid IL or missing references) //IL_11a2: Unknown result type (might be due to invalid IL or missing references) //IL_11ac: Unknown result type (might be due to invalid IL or missing references) //IL_11b2: Unknown result type (might be due to invalid IL or missing references) //IL_11b7: Unknown result type (might be due to invalid IL or missing references) //IL_11bd: Unknown result type (might be due to invalid IL or missing references) //IL_11c2: Unknown result type (might be due to invalid IL or missing references) //IL_11c7: Unknown result type (might be due to invalid IL or missing references) //IL_11cd: Unknown result type (might be due to invalid IL or missing references) //IL_11d7: Unknown result type (might be due to invalid IL or missing references) //IL_11dc: Unknown result type (might be due to invalid IL or missing references) //IL_11e8: Unknown result type (might be due to invalid IL or missing references) //IL_1047: Unknown result type (might be due to invalid IL or missing references) //IL_104c: Unknown result type (might be due to invalid IL or missing references) //IL_0ec6: Unknown result type (might be due to invalid IL or missing references) //IL_0ecb: Unknown result type (might be due to invalid IL or missing references) //IL_0eda: Unknown result type (might be due to invalid IL or missing references) //IL_0edf: Unknown result type (might be due to invalid IL or missing references) //IL_0efb: Unknown result type (might be due to invalid IL or missing references) //IL_0f00: Unknown result type (might be due to invalid IL or missing references) //IL_0f09: Unknown result type (might be due to invalid IL or missing references) //IL_0f14: Unknown result type (might be due to invalid IL or missing references) //IL_0f25: Unknown result type (might be due to invalid IL or missing references) //IL_0f2a: Unknown result type (might be due to invalid IL or missing references) //IL_0f2f: Unknown result type (might be due to invalid IL or missing references) //IL_2fd9: Unknown result type (might be due to invalid IL or missing references) //IL_2fdf: Unknown result type (might be due to invalid IL or missing references) //IL_2fe4: Unknown result type (might be due to invalid IL or missing references) //IL_2fea: Unknown result type (might be due to invalid IL or missing references) //IL_2fef: Unknown result type (might be due to invalid IL or missing references) //IL_2ff5: Unknown result type (might be due to invalid IL or missing references) //IL_2fff: Unknown result type (might be due to invalid IL or missing references) //IL_3004: Unknown result type (might be due to invalid IL or missing references) //IL_300a: Unknown result type (might be due to invalid IL or missing references) //IL_3014: Unknown result type (might be due to invalid IL or missing references) //IL_301a: Unknown result type (might be due to invalid IL or missing references) //IL_301f: Unknown result type (might be due to invalid IL or missing references) //IL_3025: Unknown result type (might be due to invalid IL or missing references) //IL_302a: Unknown result type (might be due to invalid IL or missing references) //IL_302f: Unknown result type (might be due to invalid IL or missing references) //IL_3035: Unknown result type (might be due to invalid IL or missing references) //IL_303f: Unknown result type (might be due to invalid IL or missing references) //IL_3044: Unknown result type (might be due to invalid IL or missing references) //IL_304f: Unknown result type (might be due to invalid IL or missing references) //IL_3055: Unknown result type (might be due to invalid IL or missing references) //IL_305a: Unknown result type (might be due to invalid IL or missing references) //IL_3060: Unknown result type (might be due to invalid IL or missing references) //IL_3065: Unknown result type (might be due to invalid IL or missing references) //IL_306b: Unknown result type (might be due to invalid IL or missing references) //IL_3075: Unknown result type (might be due to invalid IL or missing references) //IL_307a: Unknown result type (might be due to invalid IL or missing references) //IL_3080: Unknown result type (might be due to invalid IL or missing references) //IL_308a: Unknown result type (might be due to invalid IL or missing references) //IL_3090: Unknown result type (might be due to invalid IL or missing references) //IL_3095: Unknown result type (might be due to invalid IL or missing references) //IL_309b: Unknown result type (might be due to invalid IL or missing references) //IL_30a0: Unknown result type (might be due to invalid IL or missing references) //IL_30a5: Unknown result type (might be due to invalid IL or missing references) //IL_30ab: Unknown result type (might be due to invalid IL or missing references) //IL_30b5: Unknown result type (might be due to invalid IL or missing references) //IL_30ba: Unknown result type (might be due to invalid IL or missing references) //IL_30c6: Unknown result type (might be due to invalid IL or missing references) //IL_2f25: Unknown result type (might be due to invalid IL or missing references) //IL_2f2a: Unknown result type (might be due to invalid IL or missing references) //IL_2da4: Unknown result type (might be due to invalid IL or missing references) //IL_2da9: Unknown result type (might be due to invalid IL or missing references) //IL_2db8: Unknown result type (might be due to invalid IL or missing references) //IL_2dbd: Unknown result type (might be due to invalid IL or missing references) //IL_2dd9: Unknown result type (might be due to invalid IL or missing references) //IL_2dde: Unknown result type (might be due to invalid IL or missing references) //IL_2de7: Unknown result type (might be due to invalid IL or missing references) //IL_2df2: Unknown result type (might be due to invalid IL or missing references) //IL_2e03: Unknown result type (might be due to invalid IL or missing references) //IL_2e08: Unknown result type (might be due to invalid IL or missing references) //IL_2e0d: Unknown result type (might be due to invalid IL or missing references) //IL_230a: Unknown result type (might be due to invalid IL or missing references) //IL_2310: Unknown result type (might be due to invalid IL or missing references) //IL_2315: Unknown result type (might be due to invalid IL or missing references) //IL_231b: Unknown result type (might be due to invalid IL or missing references) //IL_2320: Unknown result type (might be due to invalid IL or missing references) //IL_2326: Unknown result type (might be due to invalid IL or missing references) //IL_2330: Unknown result type (might be due to invalid IL or missing references) //IL_2335: Unknown result type (might be due to invalid IL or missing references) //IL_233b: Unknown result type (might be due to invalid IL or missing references) //IL_2345: Unknown result type (might be due to invalid IL or missing references) //IL_234b: Unknown result type (might be due to invalid IL or missing references) //IL_2350: Unknown result type (might be due to invalid IL or missing references) //IL_2356: Unknown result type (might be due to invalid IL or missing references) //IL_235b: Unknown result type (might be due to invalid IL or missing references) //IL_2360: Unknown result type (might be due to invalid IL or missing references) //IL_2366: Unknown result type (might be due to invalid IL or missing references) //IL_2370: Unknown result type (might be due to invalid IL or missing references) //IL_2375: Unknown result type (might be due to invalid IL or missing references) //IL_2380: Unknown result type (might be due to invalid IL or missing references) //IL_2386: Unknown result type (might be due to invalid IL or missing references) //IL_238b: Unknown result type (might be due to invalid IL or missing references) //IL_2391: Unknown result type (might be due to invalid IL or missing references) //IL_2396: Unknown result type (might be due to invalid IL or missing references) //IL_239c: Unknown result type (might be due to invalid IL or missing references) //IL_23a6: Unknown result type (might be due to invalid IL or missing references) //IL_23ab: Unknown result type (might be due to invalid IL or missing references) //IL_23b1: Unknown result type (might be due to invalid IL or missing references) //IL_23bb: Unknown result type (might be due to invalid IL or missing references) //IL_23c1: Unknown result type (might be due to invalid IL or missing references) //IL_23c6: Unknown result type (might be due to invalid IL or missing references) //IL_23cc: Unknown result type (might be due to invalid IL or missing references) //IL_23d1: Unknown result type (might be due to invalid IL or missing references) //IL_23d6: Unknown result type (might be due to invalid IL or missing references) //IL_23dc: Unknown result type (might be due to invalid IL or missing references) //IL_23e6: Unknown result type (might be due to invalid IL or missing references) //IL_23eb: Unknown result type (might be due to invalid IL or missing references) //IL_23f7: Unknown result type (might be due to invalid IL or missing references) //IL_2256: Unknown result type (might be due to invalid IL or missing references) //IL_225b: Unknown result type (might be due to invalid IL or missing references) //IL_20d5: Unknown result type (might be due to invalid IL or missing references) //IL_20da: Unknown result type (might be due to invalid IL or missing references) //IL_20e9: Unknown result type (might be due to invalid IL or missing references) //IL_20ee: Unknown result type (might be due to invalid IL or missing references) //IL_210a: Unknown result type (might be due to invalid IL or missing references) //IL_210f: Unknown result type (might be due to invalid IL or missing references) //IL_2118: Unknown result type (might be due to invalid IL or missing references) //IL_2123: Unknown result type (might be due to invalid IL or missing references) //IL_2134: Unknown result type (might be due to invalid IL or missing references) //IL_2139: Unknown result type (might be due to invalid IL or missing references) //IL_213e: Unknown result type (might be due to invalid IL or missing references) //IL_12b6: Unknown result type (might be due to invalid IL or missing references) //IL_12bc: Unknown result type (might be due to invalid IL or missing references) //IL_12c1: Unknown result type (might be due to invalid IL or missing references) //IL_12c7: Unknown result type (might be due to invalid IL or missing references) //IL_12cc: Unknown result type (might be due to invalid IL or missing references) //IL_12d2: Unknown result type (might be due to invalid IL or missing references) //IL_12dc: Unknown result type (might be due to invalid IL or missing references) //IL_12e1: Unknown result type (might be due to invalid IL or missing references) //IL_12e7: Unknown result type (might be due to invalid IL or missing references) //IL_12f1: Unknown result type (might be due to invalid IL or missing references) //IL_12f7: Unknown result type (might be due to invalid IL or missing references) //IL_12fc: Unknown result type (might be due to invalid IL or missing references) //IL_1302: Unknown result type (might be due to invalid IL or missing references) //IL_1307: Unknown result type (might be due to invalid IL or missing references) //IL_130c: Unknown result type (might be due to invalid IL or missing references) //IL_1312: Unknown result type (might be due to invalid IL or missing references) //IL_131c: Unknown result type (might be due to invalid IL or missing references) //IL_1321: Unknown result type (might be due to invalid IL or missing references) //IL_132c: Unknown result type (might be due to invalid IL or missing references) //IL_1332: Unknown result type (might be due to invalid IL or missing references) //IL_1337: Unknown result type (might be due to invalid IL or missing references) //IL_133d: Unknown result type (might be due to invalid IL or missing references) //IL_1342: Unknown result type (might be due to invalid IL or missing references) //IL_1348: Unknown result type (might be due to invalid IL or missing references) //IL_1352: Unknown result type (might be due to invalid IL or missing references) //IL_1357: Unknown result type (might be due to invalid IL or missing references) //IL_135d: Unknown result type (might be due to invalid IL or missing references) //IL_1367: Unknown result type (might be due to invalid IL or missing references) //IL_136d: Unknown result type (might be due to invalid IL or missing references) //IL_1372: Unknown result type (might be due to invalid IL or missing references) //IL_1378: Unknown result type (might be due to invalid IL or missing references) //IL_137d: Unknown result type (might be due to invalid IL or missing references) //IL_1382: Unknown result type (might be due to invalid IL or missing references) //IL_1388: Unknown result type (might be due to invalid IL or missing references) //IL_1392: Unknown result type (might be due to invalid IL or missing references) //IL_1397: Unknown result type (might be due to invalid IL or missing references) //IL_13a3: Unknown result type (might be due to invalid IL or missing references) //IL_1202: Unknown result type (might be due to invalid IL or missing references) //IL_1207: Unknown result type (might be due to invalid IL or missing references) //IL_1081: Unknown result type (might be due to invalid IL or missing references) //IL_1086: Unknown result type (might be due to invalid IL or missing references) //IL_1095: Unknown result type (might be due to invalid IL or missing references) //IL_109a: Unknown result type (might be due to invalid IL or missing references) //IL_10b6: Unknown result type (might be due to invalid IL or missing references) //IL_10bb: Unknown result type (might be due to invalid IL or missing references) //IL_10c4: Unknown result type (might be due to invalid IL or missing references) //IL_10cf: Unknown result type (might be due to invalid IL or missing references) //IL_10e0: Unknown result type (might be due to invalid IL or missing references) //IL_10e5: Unknown result type (might be due to invalid IL or missing references) //IL_10ea: Unknown result type (might be due to invalid IL or missing references) //IL_3194: Unknown result type (might be due to invalid IL or missing references) //IL_319a: Unknown result type (might be due to invalid IL or missing references) //IL_319f: Unknown result type (might be due to invalid IL or missing references) //IL_31a5: Unknown result type (might be due to invalid IL or missing references) //IL_31aa: Unknown result type (might be due to invalid IL or missing references) //IL_31b0: Unknown result type (might be due to invalid IL or missing references) //IL_31ba: Unknown result type (might be due to invalid IL or missing references) //IL_31bf: Unknown result type (might be due to invalid IL or missing references) //IL_31c5: Unknown result type (might be due to invalid IL or missing references) //IL_31cf: Unknown result type (might be due to invalid IL or missing references) //IL_31d5: Unknown result type (might be due to invalid IL or missing references) //IL_31da: Unknown result type (might be due to invalid IL or missing references) //IL_31e0: Unknown result type (might be due to invalid IL or missing references) //IL_31e5: Unknown result type (might be due to invalid IL or missing references) //IL_31ea: Unknown result type (might be due to invalid IL or missing references) //IL_31f0: Unknown result type (might be due to invalid IL or missing references) //IL_31fa: Unknown result type (might be due to invalid IL or missing references) //IL_31ff: Unknown result type (might be due to invalid IL or missing references) //IL_320a: Unknown result type (might be due to invalid IL or missing references) //IL_3210: Unknown result type (might be due to invalid IL or missing references) //IL_3215: Unknown result type (might be due to invalid IL or missing references) //IL_321b: Unknown result type (might be due to invalid IL or missing references) //IL_3220: Unknown result type (might be due to invalid IL or missing references) //IL_3226: Unknown result type (might be due to invalid IL or missing references) //IL_3230: Unknown result type (might be due to invalid IL or missing references) //IL_3235: Unknown result type (might be due to invalid IL or missing references) //IL_323b: Unknown result type (might be due to invalid IL or missing references) //IL_3245: Unknown result type (might be due to invalid IL or missing references) //IL_324b: Unknown result type (might be due to invalid IL or missing references) //IL_3250: Unknown result type (might be due to invalid IL or missing references) //IL_3256: Unknown result type (might be due to invalid IL or missing references) //IL_325b: Unknown result type (might be due to invalid IL or missing references) //IL_3260: Unknown result type (might be due to invalid IL or missing references) //IL_3266: Unknown result type (might be due to invalid IL or missing references) //IL_3270: Unknown result type (might be due to invalid IL or missing references) //IL_3275: Unknown result type (might be due to invalid IL or missing references) //IL_3281: Unknown result type (might be due to invalid IL or missing references) //IL_30e0: Unknown result type (might be due to invalid IL or missing references) //IL_30e5: Unknown result type (might be due to invalid IL or missing references) //IL_2f5f: Unknown result type (might be due to invalid IL or missing references) //IL_2f64: Unknown result type (might be due to invalid IL or missing references) //IL_2f73: Unknown result type (might be due to invalid IL or missing references) //IL_2f78: Unknown result type (might be due to invalid IL or missing references) //IL_2f94: Unknown result type (might be due to invalid IL or missing references) //IL_2f99: Unknown result type (might be due to invalid IL or missing references) //IL_2fa2: Unknown result type (might be due to invalid IL or missing references) //IL_2fad: Unknown result type (might be due to invalid IL or missing references) //IL_2fbe: Unknown result type (might be due to invalid IL or missing references) //IL_2fc3: Unknown result type (might be due to invalid IL or missing references) //IL_2fc8: Unknown result type (might be due to invalid IL or missing references) //IL_24c5: Unknown result type (might be due to invalid IL or missing references) //IL_24cb: Unknown result type (might be due to invalid IL or missing references) //IL_24d0: Unknown result type (might be due to invalid IL or missing references) //IL_24d6: Unknown result type (might be due to invalid IL or missing references) //IL_24db: Unknown result type (might be due to invalid IL or missing references) //IL_24e1: Unknown result type (might be due to invalid IL or missing references) //IL_24eb: Unknown result type (might be due to invalid IL or missing references) //IL_24f0: Unknown result type (might be due to invalid IL or missing references) //IL_24f6: Unknown result type (might be due to invalid IL or missing references) //IL_2500: Unknown result type (might be due to invalid IL or missing references) //IL_2506: Unknown result type (might be due to invalid IL or missing references) //IL_250b: Unknown result type (might be due to invalid IL or missing references) //IL_2511: Unknown result type (might be due to invalid IL or missing references) //IL_2516: Unknown result type (might be due to invalid IL or missing references) //IL_251b: Unknown result type (might be due to invalid IL or missing references) //IL_2521: Unknown result type (might be due to invalid IL or missing references) //IL_252b: Unknown result type (might be due to invalid IL or missing references) //IL_2530: Unknown result type (might be due to invalid IL or missing references) //IL_253b: Unknown result type (might be due to invalid IL or missing references) //IL_2541: Unknown result type (might be due to invalid IL or missing references) //IL_2546: Unknown result type (might be due to invalid IL or missing references) //IL_254c: Unknown result type (might be due to invalid IL or missing references) //IL_2551: Unknown result type (might be due to invalid IL or missing references) //IL_2557: Unknown result type (might be due to invalid IL or missing references) //IL_2561: Unknown result type (might be due to invalid IL or missing references) //IL_2566: Unknown result type (might be due to invalid IL or missing references) //IL_256c: Unknown result type (might be due to invalid IL or missing references) //IL_2576: Unknown result type (might be due to invalid IL or missing references) //IL_257c: Unknown result type (might be due to invalid IL or missing references) //IL_2581: Unknown result type (might be due to invalid IL or missing references) //IL_2587: Unknown result type (might be due to invalid IL or missing references) //IL_258c: Unknown result type (might be due to invalid IL or missing references) //IL_2591: Unknown result type (might be due to invalid IL or missing references) //IL_2597: Unknown result type (might be due to invalid IL or missing references) //IL_25a1: Unknown result type (might be due to invalid IL or missing references) //IL_25a6: Unknown result type (might be due to invalid IL or missing references) //IL_25b2: Unknown result type (might be due to invalid IL or missing references) //IL_2411: Unknown result type (might be due to invalid IL or missing references) //IL_2416: Unknown result type (might be due to invalid IL or missing references) //IL_2290: Unknown result type (might be due to invalid IL or missing references) //IL_2295: Unknown result type (might be due to invalid IL or missing references) //IL_22a4: Unknown result type (might be due to invalid IL or missing references) //IL_22a9: Unknown result type (might be due to invalid IL or missing references) //IL_22c5: Unknown result type (might be due to invalid IL or missing references) //IL_22ca: Unknown result type (might be due to invalid IL or missing references) //IL_22d3: Unknown result type (might be due to invalid IL or missing references) //IL_22de: Unknown result type (might be due to invalid IL or missing references) //IL_22ef: Unknown result type (might be due to invalid IL or missing references) //IL_22f4: Unknown result type (might be due to invalid IL or missing references) //IL_22f9: Unknown result type (might be due to invalid IL or missing references) //IL_1473: Unknown result type (might be due to invalid IL or missing references) //IL_1478: Unknown result type (might be due to invalid IL or missing references) //IL_1487: Unknown result type (might be due to invalid IL or missing references) //IL_148c: Unknown result type (might be due to invalid IL or missing references) //IL_14a3: Unknown result type (might be due to invalid IL or missing references) //IL_14a8: Unknown result type (might be due to invalid IL or missing references) //IL_14c4: Unknown result type (might be due to invalid IL or missing references) //IL_14c9: Unknown result type (might be due to invalid IL or missing references) //IL_14d8: Unknown result type (might be due to invalid IL or missing references) //IL_14dd: Unknown result type (might be due to invalid IL or missing references) //IL_14ee: Unknown result type (might be due to invalid IL or missing references) //IL_14f9: Unknown result type (might be due to invalid IL or missing references) //IL_14fe: Unknown result type (might be due to invalid IL or missing references) //IL_1527: Unknown result type (might be due to invalid IL or missing references) //IL_152c: Unknown result type (might be due to invalid IL or missing references) //IL_1543: Unknown result type (might be due to invalid IL or missing references) //IL_1548: Unknown result type (might be due to invalid IL or missing references) //IL_154d: Unknown result type (might be due to invalid IL or missing references) //IL_13bd: Unknown result type (might be due to invalid IL or missing references) //IL_13c2: Unknown result type (might be due to invalid IL or missing references) //IL_123c: Unknown result type (might be due to invalid IL or missing references) //IL_1241: Unknown result type (might be due to invalid IL or missing references) //IL_1250: Unknown result type (might be due to invalid IL or missing references) //IL_1255: Unknown result type (might be due to invalid IL or missing references) //IL_1271: Unknown result type (might be due to invalid IL or missing references) //IL_1276: Unknown result type (might be due to invalid IL or missing references) //IL_127f: Unknown result type (might be due to invalid IL or missing references) //IL_128a: Unknown result type (might be due to invalid IL or missing references) //IL_129b: Unknown result type (might be due to invalid IL or missing references) //IL_12a0: Unknown result type (might be due to invalid IL or missing references) //IL_12a5: Unknown result type (might be due to invalid IL or missing references) //IL_334f: Unknown result type (might be due to invalid IL or missing references) //IL_3355: Unknown result type (might be due to invalid IL or missing references) //IL_335a: Unknown result type (might be due to invalid IL or missing references) //IL_3360: Unknown result type (might be due to invalid IL or missing references) //IL_3365: Unknown result type (might be due to invalid IL or missing references) //IL_336b: Unknown result type (might be due to invalid IL or missing references) //IL_3375: Unknown result type (might be due to invalid IL or missing references) //IL_337a: Unknown result type (might be due to invalid IL or missing references) //IL_3380: Unknown result type (might be due to invalid IL or missing references) //IL_338a: Unknown result type (might be due to invalid IL or missing references) //IL_3390: Unknown result type (might be due to invalid IL or missing references) //IL_3395: Unknown result type (might be due to invalid IL or missing references) //IL_339b: Unknown result type (might be due to invalid IL or missing references) //IL_33a0: Unknown result type (might be due to invalid IL or missing references) //IL_33a5: Unknown result type (might be due to invalid IL or missing references) //IL_33ab: Unknown result type (might be due to invalid IL or missing references) //IL_33b5: Unknown result type (might be due to invalid IL or missing references) //IL_33ba: Unknown result type (might be due to invalid IL or missing references) //IL_33c5: Unknown result type (might be due to invalid IL or missing references) //IL_33cb: Unknown result type (might be due to invalid IL or missing references) //IL_33d0: Unknown result type (might be due to invalid IL or missing references) //IL_33d6: Unknown result type (might be due to invalid IL or missing references) //IL_33db: Unknown result type (might be due to invalid IL or missing references) //IL_33e1: Unknown result type (might be due to invalid IL or missing references) //IL_33eb: Unknown result type (might be due to invalid IL or missing references) //IL_33f0: Unknown result type (might be due to invalid IL or missing references) //IL_33f6: Unknown result type (might be due to invalid IL or missing references) //IL_3400: Unknown result type (might be due to invalid IL or missing references) //IL_3406: Unknown result type (might be due to invalid IL or missing references) //IL_340b: Unknown result type (might be due to invalid IL or missing references) //IL_3411: Unknown result type (might be due to invalid IL or missing references) //IL_3416: Unknown result type (might be due to invalid IL or missing references) //IL_341b: Unknown result type (might be due to invalid IL or missing references) //IL_3421: Unknown result type (might be due to invalid IL or missing references) //IL_342b: Unknown result type (might be due to invalid IL or missing references) //IL_3430: Unknown result type (might be due to invalid IL or missing references) //IL_343c: Unknown result type (might be due to invalid IL or missing references) //IL_329b: Unknown result type (might be due to invalid IL or missing references) //IL_32a0: Unknown result type (might be due to invalid IL or missing references) //IL_311a: Unknown result type (might be due to invalid IL or missing references) //IL_311f: Unknown result type (might be due to invalid IL or missing references) //IL_312e: Unknown result type (might be due to invalid IL or missing references) //IL_3133: Unknown result type (might be due to invalid IL or missing references) //IL_314f: Unknown result type (might be due to invalid IL or missing references) //IL_3154: Unknown result type (might be due to invalid IL or missing references) //IL_315d: Unknown result type (might be due to invalid IL or missing references) //IL_3168: Unknown result type (might be due to invalid IL or missing references) //IL_3179: Unknown result type (might be due to invalid IL or missing references) //IL_317e: Unknown result type (might be due to invalid IL or missing references) //IL_3183: Unknown result type (might be due to invalid IL or missing references) //IL_2682: Unknown result type (might be due to invalid IL or missing references) //IL_2687: Unknown result type (might be due to invalid IL or missing references) //IL_2696: Unknown result type (might be due to invalid IL or missing references) //IL_269b: Unknown result type (might be due to invalid IL or missing references) //IL_26b2: Unknown result type (might be due to invalid IL or missing references) //IL_26b7: Unknown result type (might be due to invalid IL or missing references) //IL_26d3: Unknown result type (might be due to invalid IL or missing references) //IL_26d8: Unknown result type (might be due to invalid IL or missing references) //IL_26e7: Unknown result type (might be due to invalid IL or missing references) //IL_26ec: Unknown result type (might be due to invalid IL or missing references) //IL_26fd: Unknown result type (might be due to invalid IL or missing references) //IL_2708: Unknown result type (might be due to invalid IL or missing references) //IL_270d: Unknown result type (might be due to invalid IL or missing references) //IL_2736: Unknown result type (might be due to invalid IL or missing references) //IL_273b: Unknown result type (might be due to invalid IL or missing references) //IL_2752: Unknown result type (might be due to invalid IL or missing references) //IL_2757: Unknown result type (might be due to invalid IL or missing references) //IL_275c: Unknown result type (might be due to invalid IL or missing references) //IL_25cc: Unknown result type (might be due to invalid IL or missing references) //IL_25d1: Unknown result type (might be due to invalid IL or missing references) //IL_244b: Unknown result type (might be due to invalid IL or missing references) //IL_2450: Unknown result type (might be due to invalid IL or missing references) //IL_245f: Unknown result type (might be due to invalid IL or missing references) //IL_2464: Unknown result type (might be due to invalid IL or missing references) //IL_2480: Unknown result type (might be due to invalid IL or missing references) //IL_2485: Unknown result type (might be due to invalid IL or missing references) //IL_248e: Unknown result type (might be due to invalid IL or missing references) //IL_2499: Unknown result type (might be due to invalid IL or missing references) //IL_24aa: Unknown result type (might be due to invalid IL or missing references) //IL_24af: Unknown result type (might be due to invalid IL or missing references) //IL_24b4: Unknown result type (might be due to invalid IL or missing references) //IL_13f7: Unknown result type (might be due to invalid IL or missing references) //IL_13fc: Unknown result type (might be due to invalid IL or missing references) //IL_140b: Unknown result type (might be due to invalid IL or missing references) //IL_1410: Unknown result type (might be due to invalid IL or missing references) //IL_142c: Unknown result type (might be due to invalid IL or missing references) //IL_1431: Unknown result type (might be due to invalid IL or missing references) //IL_143a: Unknown result type (might be due to invalid IL or missing references) //IL_1445: Unknown result type (might be due to invalid IL or missing references) //IL_1456: Unknown result type (might be due to invalid IL or missing references) //IL_145b: Unknown result type (might be due to invalid IL or missing references) //IL_1460: Unknown result type (might be due to invalid IL or missing references) //IL_350a: Unknown result type (might be due to invalid IL or missing references) //IL_3510: Unknown result type (might be due to invalid IL or missing references) //IL_3515: Unknown result type (might be due to invalid IL or missing references) //IL_351b: Unknown result type (might be due to invalid IL or missing references) //IL_3520: Unknown result type (might be due to invalid IL or missing references) //IL_3526: Unknown result type (might be due to invalid IL or missing references) //IL_3530: Unknown result type (might be due to invalid IL or missing references) //IL_3535: Unknown result type (might be due to invalid IL or missing references) //IL_353b: Unknown result type (might be due to invalid IL or missing references) //IL_3545: Unknown result type (might be due to invalid IL or missing references) //IL_354b: Unknown result type (might be due to invalid IL or missing references) //IL_3550: Unknown result type (might be due to invalid IL or missing references) //IL_3556: Unknown result type (might be due to invalid IL or missing references) //IL_355b: Unknown result type (might be due to invalid IL or missing references) //IL_3560: Unknown result type (might be due to invalid IL or missing references) //IL_3566: Unknown result type (might be due to invalid IL or missing references) //IL_3570: Unknown result type (might be due to invalid IL or missing references) //IL_3575: Unknown result type (might be due to invalid IL or missing references) //IL_3580: Unknown result type (might be due to invalid IL or missing references) //IL_3586: Unknown result type (might be due to invalid IL or missing references) //IL_358b: Unknown result type (might be due to invalid IL or missing references) //IL_3591: Unknown result type (might be due to invalid IL or missing references) //IL_3596: Unknown result type (might be due to invalid IL or missing references) //IL_359c: Unknown result type (might be due to invalid IL or missing references) //IL_35a6: Unknown result type (might be due to invalid IL or missing references) //IL_35ab: Unknown result type (might be due to invalid IL or missing references) //IL_35b1: Unknown result type (might be due to invalid IL or missing references) //IL_35bb: Unknown result type (might be due to invalid IL or missing references) //IL_35c1: Unknown result type (might be due to invalid IL or missing references) //IL_35c6: Unknown result type (might be due to invalid IL or missing references) //IL_35cc: Unknown result type (might be due to invalid IL or missing references) //IL_35d1: Unknown result type (might be due to invalid IL or missing references) //IL_35d6: Unknown result type (might be due to invalid IL or missing references) //IL_35dc: Unknown result type (might be due to invalid IL or missing references) //IL_35e6: Unknown result type (might be due to invalid IL or missing references) //IL_35eb: Unknown result type (might be due to invalid IL or missing references) //IL_35f7: Unknown result type (might be due to invalid IL or missing references) //IL_3456: Unknown result type (might be due to invalid IL or missing references) //IL_345b: Unknown result type (might be due to invalid IL or missing references) //IL_32d5: Unknown result type (might be due to invalid IL or missing references) //IL_32da: Unknown result type (might be due to invalid IL or missing references) //IL_32e9: Unknown result type (might be due to invalid IL or missing references) //IL_32ee: Unknown result type (might be due to invalid IL or missing references) //IL_330a: Unknown result type (might be due to invalid IL or missing references) //IL_330f: Unknown result type (might be due to invalid IL or missing references) //IL_3318: Unknown result type (might be due to invalid IL or missing references) //IL_3323: Unknown result type (might be due to invalid IL or missing references) //IL_3334: Unknown result type (might be due to invalid IL or missing references) //IL_3339: Unknown result type (might be due to invalid IL or missing references) //IL_333e: Unknown result type (might be due to invalid IL or missing references) //IL_2606: Unknown result type (might be due to invalid IL or missing references) //IL_260b: Unknown result type (might be due to invalid IL or missing references) //IL_261a: Unknown result type (might be due to invalid IL or missing references) //IL_261f: Unknown result type (might be due to invalid IL or missing references) //IL_263b: Unknown result type (might be due to invalid IL or missing references) //IL_2640: Unknown result type (might be due to invalid IL or missing references) //IL_2649: Unknown result type (might be due to invalid IL or missing references) //IL_2654: Unknown result type (might be due to invalid IL or missing references) //IL_2665: Unknown result type (might be due to invalid IL or missing references) //IL_266a: Unknown result type (might be due to invalid IL or missing references) //IL_266f: Unknown result type (might be due to invalid IL or missing references) //IL_36c5: Unknown result type (might be due to invalid IL or missing references) //IL_36cb: Unknown result type (might be due to invalid IL or missing references) //IL_36d0: Unknown result type (might be due to invalid IL or missing references) //IL_36d6: Unknown result type (might be due to invalid IL or missing references) //IL_36db: Unknown result type (might be due to invalid IL or missing references) //IL_36e1: Unknown result type (might be due to invalid IL or missing references) //IL_36eb: Unknown result type (might be due to invalid IL or missing references) //IL_36f0: Unknown result type (might be due to invalid IL or missing references) //IL_36f6: Unknown result type (might be due to invalid IL or missing references) //IL_3700: Unknown result type (might be due to invalid IL or missing references) //IL_3706: Unknown result type (might be due to invalid IL or missing references) //IL_370b: Unknown result type (might be due to invalid IL or missing references) //IL_3711: Unknown result type (might be due to invalid IL or missing references) //IL_3716: Unknown result type (might be due to invalid IL or missing references) //IL_371b: Unknown result type (might be due to invalid IL or missing references) //IL_3721: Unknown result type (might be due to invalid IL or missing references) //IL_372b: Unknown result type (might be due to invalid IL or missing references) //IL_3730: Unknown result type (might be due to invalid IL or missing references) //IL_373b: Unknown result type (might be due to invalid IL or missing references) //IL_3741: Unknown result type (might be due to invalid IL or missing references) //IL_3746: Unknown result type (might be due to invalid IL or missing references) //IL_374c: Unknown result type (might be due to invalid IL or missing references) //IL_3751: Unknown result type (might be due to invalid IL or missing references) //IL_3757: Unknown result type (might be due to invalid IL or missing references) //IL_3761: Unknown result type (might be due to invalid IL or missing references) //IL_3766: Unknown result type (might be due to invalid IL or missing references) //IL_376c: Unknown result type (might be due to invalid IL or missing references) //IL_3776: Unknown result type (might be due to invalid IL or missing references) //IL_377c: Unknown result type (might be due to invalid IL or missing references) //IL_3781: Unknown result type (might be due to invalid IL or missing references) //IL_3787: Unknown result type (might be due to invalid IL or missing references) //IL_378c: Unknown result type (might be due to invalid IL or missing references) //IL_3791: Unknown result type (might be due to invalid IL or missing references) //IL_3797: Unknown result type (might be due to invalid IL or missing references) //IL_37a1: Unknown result type (might be due to invalid IL or missing references) //IL_37a6: Unknown result type (might be due to invalid IL or missing references) //IL_37b2: Unknown result type (might be due to invalid IL or missing references) //IL_3611: Unknown result type (might be due to invalid IL or missing references) //IL_3616: Unknown result type (might be due to invalid IL or missing references) //IL_3490: Unknown result type (might be due to invalid IL or missing references) //IL_3495: Unknown result type (might be due to invalid IL or missing references) //IL_34a4: Unknown result type (might be due to invalid IL or missing references) //IL_34a9: Unknown result type (might be due to invalid IL or missing references) //IL_34c5: Unknown result type (might be due to invalid IL or missing references) //IL_34ca: Unknown result type (might be due to invalid IL or missing references) //IL_34d3: Unknown result type (might be due to invalid IL or missing references) //IL_34de: Unknown result type (might be due to invalid IL or missing references) //IL_34ef: Unknown result type (might be due to invalid IL or missing references) //IL_34f4: Unknown result type (might be due to invalid IL or missing references) //IL_34f9: Unknown result type (might be due to invalid IL or missing references) //IL_3882: Unknown result type (might be due to invalid IL or missing references) //IL_3887: Unknown result type (might be due to invalid IL or missing references) //IL_3896: Unknown result type (might be due to invalid IL or missing references) //IL_389b: Unknown result type (might be due to invalid IL or missing references) //IL_38b2: Unknown result type (might be due to invalid IL or missing references) //IL_38b7: Unknown result type (might be due to invalid IL or missing references) //IL_38d3: Unknown result type (might be due to invalid IL or missing references) //IL_38d8: Unknown result type (might be due to invalid IL or missing references) //IL_38e7: Unknown result type (might be due to invalid IL or missing references) //IL_38ec: Unknown result type (might be due to invalid IL or missing references) //IL_38fd: Unknown result type (might be due to invalid IL or missing references) //IL_3908: Unknown result type (might be due to invalid IL or missing references) //IL_390d: Unknown result type (might be due to invalid IL or missing references) //IL_3936: Unknown result type (might be due to invalid IL or missing references) //IL_393b: Unknown result type (might be due to invalid IL or missing references) //IL_3952: Unknown result type (might be due to invalid IL or missing references) //IL_3957: Unknown result type (might be due to invalid IL or missing references) //IL_395c: Unknown result type (might be due to invalid IL or missing references) //IL_37cc: Unknown result type (might be due to invalid IL or missing references) //IL_37d1: Unknown result type (might be due to invalid IL or missing references) //IL_364b: Unknown result type (might be due to invalid IL or missing references) //IL_3650: Unknown result type (might be due to invalid IL or missing references) //IL_365f: Unknown result type (might be due to invalid IL or missing references) //IL_3664: Unknown result type (might be due to invalid IL or missing references) //IL_3680: Unknown result type (might be due to invalid IL or missing references) //IL_3685: Unknown result type (might be due to invalid IL or missing references) //IL_368e: Unknown result type (might be due to invalid IL or missing references) //IL_3699: Unknown result type (might be due to invalid IL or missing references) //IL_36aa: Unknown result type (might be due to invalid IL or missing references) //IL_36af: Unknown result type (might be due to invalid IL or missing references) //IL_36b4: Unknown result type (might be due to invalid IL or missing references) //IL_3806: Unknown result type (might be due to invalid IL or missing references) //IL_380b: Unknown result type (might be due to invalid IL or missing references) //IL_381a: Unknown result type (might be due to invalid IL or missing references) //IL_381f: Unknown result type (might be due to invalid IL or missing references) //IL_383b: Unknown result type (might be due to invalid IL or missing references) //IL_3840: Unknown result type (might be due to invalid IL or missing references) //IL_3849: Unknown result type (might be due to invalid IL or missing references) //IL_3854: Unknown result type (might be due to invalid IL or missing references) //IL_3865: Unknown result type (might be due to invalid IL or missing references) //IL_386a: Unknown result type (might be due to invalid IL or missing references) //IL_386f: Unknown result type (might be due to invalid IL or missing references) if (switching || !ledgeSwitchingDetectors.allowLedgeSwitching || !grabbedOn) { return; } if ((!Physics.Linecast(((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2f - surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.8f + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2f - surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { if ((!Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) { if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref switchHitPoint)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit) { l1SecondForwardHit = true; if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2), ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l1SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l1SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l1SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l1SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l1SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l1SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l1SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l1SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else { l1SecondForwardHitPoint = new Vector3(((RaycastHit)(ref switchHitPoint)).point.x - ((Component)this).transform.forward.x * length2, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref switchHitPoint)).point.z - ((Component)this).transform.forward.x * length2) + new Vector3((0f - ((Component)this).transform.forward.x) * length2 / 10f, onLedgeHeight2 / 10f, (0f - ((Component)this).transform.forward.z) * length2 / 10f); } } else { l1SecondForwardHit = false; } } else { l1SecondForwardHit = false; } } else { l1SecondForwardHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) { if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref switchHitPoint)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit) { l2SecondForwardHit = true; if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2), ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l2SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l2SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l2SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l2SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l2SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l2SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l2SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l2SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else { l2SecondForwardHitPoint = new Vector3(((RaycastHit)(ref switchHitPoint)).point.x - ((Component)this).transform.forward.x * length2, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref switchHitPoint)).point.z - ((Component)this).transform.forward.x * length2) + new Vector3((0f - ((Component)this).transform.forward.x) * length2 / 10f, onLedgeHeight2 / 10f, (0f - ((Component)this).transform.forward.z) * length2 / 10f); } } else { l2SecondForwardHit = false; } } else { l2SecondForwardHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f + ledgeSwitchSurfaceLength / 0.585f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) { if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref switchHitPoint)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit) { l3SecondForwardHit = true; if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2), ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l3SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l3SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l3SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l3SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l3SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l3SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l3SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l3SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else { l3SecondForwardHitPoint = new Vector3(((RaycastHit)(ref switchHitPoint)).point.x - ((Component)this).transform.forward.x * length2, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref switchHitPoint)).point.z - ((Component)this).transform.forward.x * length2) + new Vector3((0f - ((Component)this).transform.forward.x) * length2 / 10f, onLedgeHeight2 / 10f, (0f - ((Component)this).transform.forward.z) * length2 / 10f); } } else { l3SecondForwardHit = false; } } else { l3SecondForwardHit = false; } } private void LedgeSwitchHitPointsFirstFrontLeft() { //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_006a: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_0089: Unknown result type (might be due to invalid IL or missing references) //IL_008e: Unknown result type (might be due to invalid IL or missing references) //IL_0094: Unknown result type (might be due to invalid IL or missing references) //IL_0099: Unknown result type (might be due to invalid IL or missing references) //IL_009f: Unknown result type (might be due to invalid IL or missing references) //IL_00a4: Unknown result type (might be due to invalid IL or missing references) //IL_00af: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) //IL_00ba: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_00cb: Unknown result type (might be due to invalid IL or missing references) //IL_00d0: Unknown result type (might be due to invalid IL or missing references) //IL_00d6: Unknown result type (might be due to invalid IL or missing references) //IL_00e0: Unknown result type (might be due to invalid IL or missing references) //IL_00e5: Unknown result type (might be due to invalid IL or missing references) //IL_00eb: Unknown result type (might be due to invalid IL or missing references) //IL_00f5: Unknown result type (might be due to invalid IL or missing references) //IL_00fa: Unknown result type (might be due to invalid IL or missing references) //IL_0100: Unknown result type (might be due to invalid IL or missing references) //IL_010a: Unknown result type (might be due to invalid IL or missing references) //IL_010f: Unknown result type (might be due to invalid IL or missing references) //IL_0115: Unknown result type (might be due to invalid IL or missing references) //IL_011a: Unknown result type (might be due to invalid IL or missing references) //IL_0120: Unknown result type (might be due to invalid IL or missing references) //IL_0125: Unknown result type (might be due to invalid IL or missing references) //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_0268: Unknown result type (might be due to invalid IL or missing references) //IL_026e: Unknown result type (might be due to invalid IL or missing references) //IL_0273: Unknown result type (might be due to invalid IL or missing references) //IL_0279: Unknown result type (might be due to invalid IL or missing references) //IL_027e: Unknown result type (might be due to invalid IL or missing references) //IL_0284: Unknown result type (might be due to invalid IL or missing references) //IL_0289: Unknown result type (might be due to invalid IL or missing references) //IL_028f: Unknown result type (might be due to invalid IL or missing references) //IL_0299: Unknown result type (might be due to invalid IL or missing references) //IL_029e: Unknown result type (might be due to invalid IL or missing references) //IL_02a4: Unknown result type (might be due to invalid IL or missing references) //IL_02ae: Unknown result type (might be due to invalid IL or missing references) //IL_02b3: Unknown result type (might be due to invalid IL or missing references) //IL_02b9: Unknown result type (might be due to invalid IL or missing references) //IL_02c3: Unknown result type (might be due to invalid IL or missing references) //IL_02c8: Unknown result type (might be due to invalid IL or missing references) //IL_02ce: Unknown result type (might be due to invalid IL or missing references) //IL_02d3: Unknown result type (might be due to invalid IL or missing references) //IL_02d9: Unknown result type (might be due to invalid IL or missing references) //IL_02de: Unknown result type (might be due to invalid IL or missing references) //IL_02e9: Unknown result type (might be due to invalid IL or missing references) //IL_02ef: Unknown result type (might be due to invalid IL or missing references) //IL_02f4: Unknown result type (might be due to invalid IL or missing references) //IL_02fa: Unknown result type (might be due to invalid IL or missing references) //IL_02ff: Unknown result type (might be due to invalid IL or missing references) //IL_0305: Unknown result type (might be due to invalid IL or missing references) //IL_030a: Unknown result type (might be due to invalid IL or missing references) //IL_0310: Unknown result type (might be due to invalid IL or missing references) //IL_031a: Unknown result type (might be due to invalid IL or missing references) //IL_031f: Unknown result type (might be due to invalid IL or missing references) //IL_0325: Unknown result type (might be due to invalid IL or missing references) //IL_032f: Unknown result type (might be due to invalid IL or missing references) //IL_0334: Unknown result type (might be due to invalid IL or missing references) //IL_033a: Unknown result type (might be due to invalid IL or missing references) //IL_0344: Unknown result type (might be due to invalid IL or missing references) //IL_0349: Unknown result type (might be due to invalid IL or missing references) //IL_034f: Unknown result type (might be due to invalid IL or missing references) //IL_0354: Unknown result type (might be due to invalid IL or missing references) //IL_0360: Unknown result type (might be due to invalid IL or missing references) //IL_014b: Unknown result type (might be due to invalid IL or missing references) //IL_0151: Unknown result type (might be due to invalid IL or missing references) //IL_0156: Unknown result type (might be due to invalid IL or missing references) //IL_015c: Unknown result type (might be due to invalid IL or missing references) //IL_0161: Unknown result type (might be due to invalid IL or missing references) //IL_0167: Unknown result type (might be due to invalid IL or missing references) //IL_016c: Unknown result type (might be due to invalid IL or missing references) //IL_0172: Unknown result type (might be due to invalid IL or missing references) //IL_017c: Unknown result type (might be due to invalid IL or missing references) //IL_0181: Unknown result type (might be due to invalid IL or missing references) //IL_0187: Unknown result type (might be due to invalid IL or missing references) //IL_0191: Unknown result type (might be due to invalid IL or missing references) //IL_0196: Unknown result type (might be due to invalid IL or missing references) //IL_019c: Unknown result type (might be due to invalid IL or missing references) //IL_01a6: Unknown result type (might be due to invalid IL or missing references) //IL_01ab: Unknown result type (might be due to invalid IL or missing references) //IL_01b1: Unknown result type (might be due to invalid IL or missing references) //IL_01b6: Unknown result type (might be due to invalid IL or missing references) //IL_01bc: Unknown result type (might be due to invalid IL or missing references) //IL_01c1: Unknown result type (might be due to invalid IL or missing references) //IL_01cc: Unknown result type (might be due to invalid IL or missing references) //IL_01d2: Unknown result type (might be due to invalid IL or missing references) //IL_01d7: Unknown result type (might be due to invalid IL or missing references) //IL_01dd: Unknown result type (might be due to invalid IL or missing references) //IL_01e2: Unknown result type (might be due to invalid IL or missing references) //IL_01e8: Unknown result type (might be due to invalid IL or missing references) //IL_01ed: Unknown result type (might be due to invalid IL or missing references) //IL_01f3: Unknown result type (might be due to invalid IL or missing references) //IL_01fd: Unknown result type (might be due to invalid IL or missing references) //IL_0202: Unknown result type (might be due to invalid IL or missing references) //IL_0208: Unknown result type (might be due to invalid IL or missing references) //IL_020d: Unknown result type (might be due to invalid IL or missing references) //IL_0213: Unknown result type (might be due to invalid IL or missing references) //IL_021d: Unknown result type (might be due to invalid IL or missing references) //IL_0222: Unknown result type (might be due to invalid IL or missing references) //IL_0228: Unknown result type (might be due to invalid IL or missing references) //IL_0232: Unknown result type (might be due to invalid IL or missing references) //IL_0237: Unknown result type (might be due to invalid IL or missing references) //IL_023d: Unknown result type (might be due to invalid IL or missing references) //IL_0242: Unknown result type (might be due to invalid IL or missing references) //IL_024e: Unknown result type (might be due to invalid IL or missing references) //IL_0398: Unknown result type (might be due to invalid IL or missing references) //IL_039e: Unknown result type (might be due to invalid IL or missing references) //IL_03a3: Unknown result type (might be due to invalid IL or missing references) //IL_03a9: Unknown result type (might be due to invalid IL or missing references) //IL_03ae: Unknown result type (might be due to invalid IL or missing references) //IL_03b4: Unknown result type (might be due to invalid IL or missing references) //IL_03b9: Unknown result type (might be due to invalid IL or missing references) //IL_03bf: Unknown result type (might be due to invalid IL or missing references) //IL_03c9: Unknown result type (might be due to invalid IL or missing references) //IL_03ce: Unknown result type (might be due to invalid IL or missing references) //IL_03d4: Unknown result type (might be due to invalid IL or missing references) //IL_03de: Unknown result type (might be due to invalid IL or missing references) //IL_03e3: Unknown result type (might be due to invalid IL or missing references) //IL_03e9: Unknown result type (might be due to invalid IL or missing references) //IL_03f3: Unknown result type (might be due to invalid IL or missing references) //IL_03f8: Unknown result type (might be due to invalid IL or missing references) //IL_03fe: Unknown result type (might be due to invalid IL or missing references) //IL_0403: Unknown result type (might be due to invalid IL or missing references) //IL_0409: Unknown result type (might be due to invalid IL or missing references) //IL_040e: Unknown result type (might be due to invalid IL or missing references) //IL_0419: Unknown result type (might be due to invalid IL or missing references) //IL_041f: Unknown result type (might be due to invalid IL or missing references) //IL_0424: Unknown result type (might be due to invalid IL or missing references) //IL_042a: Unknown result type (might be due to invalid IL or missing references) //IL_042f: Unknown result type (might be due to invalid IL or missing references) //IL_0435: Unknown result type (might be due to invalid IL or missing references) //IL_043a: Unknown result type (might be due to invalid IL or missing references) //IL_0440: Unknown result type (might be due to invalid IL or missing references) //IL_044a: Unknown result type (might be due to invalid IL or missing references) //IL_044f: Unknown result type (might be due to invalid IL or missing references) //IL_0455: Unknown result type (might be due to invalid IL or missing references) //IL_045f: Unknown result type (might be due to invalid IL or missing references) //IL_0464: Unknown result type (might be due to invalid IL or missing references) //IL_046a: Unknown result type (might be due to invalid IL or missing references) //IL_0474: Unknown result type (might be due to invalid IL or missing references) //IL_0479: Unknown result type (might be due to invalid IL or missing references) //IL_047f: Unknown result type (might be due to invalid IL or missing references) //IL_0484: Unknown result type (might be due to invalid IL or missing references) //IL_048a: Unknown result type (might be due to invalid IL or missing references) //IL_048f: Unknown result type (might be due to invalid IL or missing references) //IL_049b: Unknown result type (might be due to invalid IL or missing references) //IL_05d2: Unknown result type (might be due to invalid IL or missing references) //IL_05d8: Unknown result type (might be due to invalid IL or missing references) //IL_05dd: Unknown result type (might be due to invalid IL or missing references) //IL_05e3: Unknown result type (might be due to invalid IL or missing references) //IL_05e8: Unknown result type (might be due to invalid IL or missing references) //IL_05ee: Unknown result type (might be due to invalid IL or missing references) //IL_05f3: Unknown result type (might be due to invalid IL or missing references) //IL_05f9: Unknown result type (might be due to invalid IL or missing references) //IL_0603: Unknown result type (might be due to invalid IL or missing references) //IL_0608: Unknown result type (might be due to invalid IL or missing references) //IL_060e: Unknown result type (might be due to invalid IL or missing references) //IL_0618: Unknown result type (might be due to invalid IL or missing references) //IL_061d: Unknown result type (might be due to invalid IL or missing references) //IL_0623: Unknown result type (might be due to invalid IL or missing references) //IL_062d: Unknown result type (might be due to invalid IL or missing references) //IL_0632: Unknown result type (might be due to invalid IL or missing references) //IL_0638: Unknown result type (might be due to invalid IL or missing references) //IL_063d: Unknown result type (might be due to invalid IL or missing references) //IL_0643: Unknown result type (might be due to invalid IL or missing references) //IL_0648: Unknown result type (might be due to invalid IL or missing references) //IL_0653: Unknown result type (might be due to invalid IL or missing references) //IL_0659: Unknown result type (might be due to invalid IL or missing references) //IL_065e: Unknown result type (might be due to invalid IL or missing references) //IL_0664: Unknown result type (might be due to invalid IL or missing references) //IL_0669: Unknown result type (might be due to invalid IL or missing references) //IL_066f: Unknown result type (might be due to invalid IL or missing references) //IL_0674: Unknown result type (might be due to invalid IL or missing references) //IL_067a: Unknown result type (might be due to invalid IL or missing references) //IL_0684: Unknown result type (might be due to invalid IL or missing references) //IL_0689: Unknown result type (might be due to invalid IL or missing references) //IL_068f: Unknown result type (might be due to invalid IL or missing references) //IL_0699: Unknown result type (might be due to invalid IL or missing references) //IL_069e: Unknown result type (might be due to invalid IL or missing references) //IL_06a4: Unknown result type (might be due to invalid IL or missing references) //IL_06ae: Unknown result type (might be due to invalid IL or missing references) //IL_06b3: Unknown result type (might be due to invalid IL or missing references) //IL_06b9: Unknown result type (might be due to invalid IL or missing references) //IL_06be: Unknown result type (might be due to invalid IL or missing references) //IL_06ca: Unknown result type (might be due to invalid IL or missing references) //IL_04b5: Unknown result type (might be due to invalid IL or missing references) //IL_04bb: Unknown result type (might be due to invalid IL or missing references) //IL_04c0: Unknown result type (might be due to invalid IL or missing references) //IL_04c6: Unknown result type (might be due to invalid IL or missing references) //IL_04cb: Unknown result type (might be due to invalid IL or missing references) //IL_04d1: Unknown result type (might be due to invalid IL or missing references) //IL_04d6: Unknown result type (might be due to invalid IL or missing references) //IL_04dc: Unknown result type (might be due to invalid IL or missing references) //IL_04e6: Unknown result type (might be due to invalid IL or missing references) //IL_04eb: Unknown result type (might be due to invalid IL or missing references) //IL_04f1: Unknown result type (might be due to invalid IL or missing references) //IL_04fb: Unknown result type (might be due to invalid IL or missing references) //IL_0500: Unknown result type (might be due to invalid IL or missing references) //IL_0506: Unknown result type (might be due to invalid IL or missing references) //IL_0510: Unknown result type (might be due to invalid IL or missing references) //IL_0515: Unknown result type (might be due to invalid IL or missing references) //IL_051b: Unknown result type (might be due to invalid IL or missing references) //IL_0520: Unknown result type (might be due to invalid IL or missing references) //IL_0526: Unknown result type (might be due to invalid IL or missing references) //IL_052b: Unknown result type (might be due to invalid IL or missing references) //IL_0536: Unknown result type (might be due to invalid IL or missing references) //IL_053c: Unknown result type (might be due to invalid IL or missing references) //IL_0541: Unknown result type (might be due to invalid IL or missing references) //IL_0547: Unknown result type (might be due to invalid IL or missing references) //IL_054c: Unknown result type (might be due to invalid IL or missing references) //IL_0552: Unknown result type (might be due to invalid IL or missing references) //IL_0557: Unknown result type (might be due to invalid IL or missing references) //IL_055d: Unknown result type (might be due to invalid IL or missing references) //IL_0567: Unknown result type (might be due to invalid IL or missing references) //IL_056c: Unknown result type (might be due to invalid IL or missing references) //IL_0572: Unknown result type (might be due to invalid IL or missing references) //IL_0577: Unknown result type (might be due to invalid IL or missing references) //IL_057d: Unknown result type (might be due to invalid IL or missing references) //IL_0587: Unknown result type (might be due to invalid IL or missing references) //IL_058c: Unknown result type (might be due to invalid IL or missing references) //IL_0592: Unknown result type (might be due to invalid IL or missing references) //IL_059c: Unknown result type (might be due to invalid IL or missing references) //IL_05a1: Unknown result type (might be due to invalid IL or missing references) //IL_05a7: Unknown result type (might be due to invalid IL or missing references) //IL_05ac: Unknown result type (might be due to invalid IL or missing references) //IL_05b8: Unknown result type (might be due to invalid IL or missing references) //IL_0702: Unknown result type (might be due to invalid IL or missing references) //IL_0708: Unknown result type (might be due to invalid IL or missing references) //IL_070d: Unknown result type (might be due to invalid IL or missing references) //IL_0713: Unknown result type (might be due to invalid IL or missing references) //IL_0718: Unknown result type (might be due to invalid IL or missing references) //IL_071e: Unknown result type (might be due to invalid IL or missing references) //IL_0723: Unknown result type (might be due to invalid IL or missing references) //IL_0729: Unknown result type (might be due to invalid IL or missing references) //IL_0733: Unknown result type (might be due to invalid IL or missing references) //IL_0738: Unknown result type (might be due to invalid IL or missing references) //IL_073e: Unknown result type (might be due to invalid IL or missing references) //IL_0748: Unknown result type (might be due to invalid IL or missing references) //IL_074d: Unknown result type (might be due to invalid IL or missing references) //IL_0753: Unknown result type (might be due to invalid IL or missing references) //IL_075d: Unknown result type (might be due to invalid IL or missing references) //IL_0762: Unknown result type (might be due to invalid IL or missing references) //IL_0768: Unknown result type (might be due to invalid IL or missing references) //IL_076d: Unknown result type (might be due to invalid IL or missing references) //IL_0773: Unknown result type (might be due to invalid IL or missing references) //IL_0778: Unknown result type (might be due to invalid IL or missing references) //IL_0783: Unknown result type (might be due to invalid IL or missing references) //IL_0789: Unknown result type (might be due to invalid IL or missing references) //IL_078e: Unknown result type (might be due to invalid IL or missing references) //IL_0794: Unknown result type (might be due to invalid IL or missing references) //IL_0799: Unknown result type (might be due to invalid IL or missing references) //IL_079f: Unknown result type (might be due to invalid IL or missing references) //IL_07a4: Unknown result type (might be due to invalid IL or missing references) //IL_07aa: Unknown result type (might be due to invalid IL or missing references) //IL_07b4: Unknown result type (might be due to invalid IL or missing references) //IL_07b9: Unknown result type (might be due to invalid IL or missing references) //IL_07bf: Unknown result type (might be due to invalid IL or missing references) //IL_07c9: Unknown result type (might be due to invalid IL or missing references) //IL_07ce: Unknown result type (might be due to invalid IL or missing references) //IL_07d4: Unknown result type (might be due to invalid IL or missing references) //IL_07de: Unknown result type (might be due to invalid IL or missing references) //IL_07e3: Unknown result type (might be due to invalid IL or missing references) //IL_07e9: Unknown result type (might be due to invalid IL or missing references) //IL_07ee: Unknown result type (might be due to invalid IL or missing references) //IL_07f4: Unknown result type (might be due to invalid IL or missing references) //IL_07f9: Unknown result type (might be due to invalid IL or missing references) //IL_0805: Unknown result type (might be due to invalid IL or missing references) //IL_093c: Unknown result type (might be due to invalid IL or missing references) //IL_0942: Unknown result type (might be due to invalid IL or missing references) //IL_0947: Unknown result type (might be due to invalid IL or missing references) //IL_094d: Unknown result type (might be due to invalid IL or missing references) //IL_0952: Unknown result type (might be due to invalid IL or missing references) //IL_0958: Unknown result type (might be due to invalid IL or missing references) //IL_095d: Unknown result type (might be due to invalid IL or missing references) //IL_0963: Unknown result type (might be due to invalid IL or missing references) //IL_096d: Unknown result type (might be due to invalid IL or missing references) //IL_0972: Unknown result type (might be due to invalid IL or missing references) //IL_0978: Unknown result type (might be due to invalid IL or missing references) //IL_0982: Unknown result type (might be due to invalid IL or missing references) //IL_0987: Unknown result type (might be due to invalid IL or missing references) //IL_098d: Unknown result type (might be due to invalid IL or missing references) //IL_0997: Unknown result type (might be due to invalid IL or missing references) //IL_099c: Unknown result type (might be due to invalid IL or missing references) //IL_09a2: Unknown result type (might be due to invalid IL or missing references) //IL_09a7: Unknown result type (might be due to invalid IL or missing references) //IL_09ad: Unknown result type (might be due to invalid IL or missing references) //IL_09b2: Unknown result type (might be due to invalid IL or missing references) //IL_09bd: Unknown result type (might be due to invalid IL or missing references) //IL_09c3: Unknown result type (might be due to invalid IL or missing references) //IL_09c8: Unknown result type (might be due to invalid IL or missing references) //IL_09ce: Unknown result type (might be due to invalid IL or missing references) //IL_09d3: Unknown result type (might be due to invalid IL or missing references) //IL_09d9: Unknown result type (might be due to invalid IL or missing references) //IL_09de: Unknown result type (might be due to invalid IL or missing references) //IL_09e4: Unknown result type (might be due to invalid IL or missing references) //IL_09ee: Unknown result type (might be due to invalid IL or missing references) //IL_09f3: Unknown result type (might be due to invalid IL or missing references) //IL_09f9: Unknown result type (might be due to invalid IL or missing references) //IL_0a03: Unknown result type (might be due to invalid IL or missing references) //IL_0a08: Unknown result type (might be due to invalid IL or missing references) //IL_0a0e: Unknown result type (might be due to invalid IL or missing references) //IL_0a18: Unknown result type (might be due to invalid IL or missing references) //IL_0a1d: Unknown result type (might be due to invalid IL or missing references) //IL_0a23: Unknown result type (might be due to invalid IL or missing references) //IL_0a28: Unknown result type (might be due to invalid IL or missing references) //IL_0a34: Unknown result type (might be due to invalid IL or missing references) //IL_081f: Unknown result type (might be due to invalid IL or missing references) //IL_0825: Unknown result type (might be due to invalid IL or missing references) //IL_082a: Unknown result type (might be due to invalid IL or missing references) //IL_0830: Unknown result type (might be due to invalid IL or missing references) //IL_0835: Unknown result type (might be due to invalid IL or missing references) //IL_083b: Unknown result type (might be due to invalid IL or missing references) //IL_0840: Unknown result type (might be due to invalid IL or missing references) //IL_0846: Unknown result type (might be due to invalid IL or missing references) //IL_0850: Unknown result type (might be due to invalid IL or missing references) //IL_0855: Unknown result type (might be due to invalid IL or missing references) //IL_085b: Unknown result type (might be due to invalid IL or missing references) //IL_0865: Unknown result type (might be due to invalid IL or missing references) //IL_086a: Unknown result type (might be due to invalid IL or missing references) //IL_0870: Unknown result type (might be due to invalid IL or missing references) //IL_087a: Unknown result type (might be due to invalid IL or missing references) //IL_087f: Unknown result type (might be due to invalid IL or missing references) //IL_0885: Unknown result type (might be due to invalid IL or missing references) //IL_088a: Unknown result type (might be due to invalid IL or missing references) //IL_0890: Unknown result type (might be due to invalid IL or missing references) //IL_0895: Unknown result type (might be due to invalid IL or missing references) //IL_08a0: Unknown result type (might be due to invalid IL or missing references) //IL_08a6: Unknown result type (might be due to invalid IL or missing references) //IL_08ab: Unknown result type (might be due to invalid IL or missing references) //IL_08b1: Unknown result type (might be due to invalid IL or missing references) //IL_08b6: Unknown result type (might be due to invalid IL or missing references) //IL_08bc: Unknown result type (might be due to invalid IL or missing references) //IL_08c1: Unknown result type (might be due to invalid IL or missing references) //IL_08c7: Unknown result type (might be due to invalid IL or missing references) //IL_08d1: Unknown result type (might be due to invalid IL or missing references) //IL_08d6: Unknown result type (might be due to invalid IL or missing references) //IL_08dc: Unknown result type (might be due to invalid IL or missing references) //IL_08e1: Unknown result type (might be due to invalid IL or missing references) //IL_08e7: Unknown result type (might be due to invalid IL or missing references) //IL_08f1: Unknown result type (might be due to invalid IL or missing references) //IL_08f6: Unknown result type (might be due to invalid IL or missing references) //IL_08fc: Unknown result type (might be due to invalid IL or missing references) //IL_0906: Unknown result type (might be due to invalid IL or missing references) //IL_090b: Unknown result type (might be due to invalid IL or missing references) //IL_0911: Unknown result type (might be due to invalid IL or missing references) //IL_0916: Unknown result type (might be due to invalid IL or missing references) //IL_0922: Unknown result type (might be due to invalid IL or missing references) //IL_0a6c: Unknown result type (might be due to invalid IL or missing references) //IL_0a72: Unknown result type (might be due to invalid IL or missing references) //IL_0a77: Unknown result type (might be due to invalid IL or missing references) //IL_0a7d: Unknown result type (might be due to invalid IL or missing references) //IL_0a87: Unknown result type (might be due to invalid IL or missing references) //IL_0a8c: Unknown result type (might be due to invalid IL or missing references) //IL_0a92: Unknown result type (might be due to invalid IL or missing references) //IL_0a9c: Unknown result type (might be due to invalid IL or missing references) //IL_0aa1: Unknown result type (might be due to invalid IL or missing references) //IL_0aa7: Unknown result type (might be due to invalid IL or missing references) //IL_0ab1: Unknown result type (might be due to invalid IL or missing references) //IL_0ab6: Unknown result type (might be due to invalid IL or missing references) //IL_0abc: Unknown result type (might be due to invalid IL or missing references) //IL_0ac1: Unknown result type (might be due to invalid IL or missing references) //IL_0ac7: Unknown result type (might be due to invalid IL or missing references) //IL_0acc: Unknown result type (might be due to invalid IL or missing references) //IL_0ad2: Unknown result type (might be due to invalid IL or missing references) //IL_0ad7: Unknown result type (might be due to invalid IL or missing references) //IL_0ae2: Unknown result type (might be due to invalid IL or missing references) //IL_0ae8: Unknown result type (might be due to invalid IL or missing references) //IL_0aed: Unknown result type (might be due to invalid IL or missing references) //IL_0af3: Unknown result type (might be due to invalid IL or missing references) //IL_0afd: Unknown result type (might be due to invalid IL or missing references) //IL_0b02: Unknown result type (might be due to invalid IL or missing references) //IL_0b08: Unknown result type (might be due to invalid IL or missing references) //IL_0b12: Unknown result type (might be due to invalid IL or missing references) //IL_0b17: Unknown result type (might be due to invalid IL or missing references) //IL_0b1d: Unknown result type (might be due to invalid IL or missing references) //IL_0b27: Unknown result type (might be due to invalid IL or missing references) //IL_0b2c: Unknown result type (might be due to invalid IL or missing references) //IL_0b32: Unknown result type (might be due to invalid IL or missing references) //IL_0b37: Unknown result type (might be due to invalid IL or missing references) //IL_0b3d: Unknown result type (might be due to invalid IL or missing references) //IL_0b42: Unknown result type (might be due to invalid IL or missing references) //IL_0b48: Unknown result type (might be due to invalid IL or missing references) //IL_0b4d: Unknown result type (might be due to invalid IL or missing references) //IL_0b59: Unknown result type (might be due to invalid IL or missing references) //IL_0c7a: Unknown result type (might be due to invalid IL or missing references) //IL_0c80: Unknown result type (might be due to invalid IL or missing references) //IL_0c85: Unknown result type (might be due to invalid IL or missing references) //IL_0c8b: Unknown result type (might be due to invalid IL or missing references) //IL_0c95: Unknown result type (might be due to invalid IL or missing references) //IL_0c9a: Unknown result type (might be due to invalid IL or missing references) //IL_0ca0: Unknown result type (might be due to invalid IL or missing references) //IL_0caa: Unknown result type (might be due to invalid IL or missing references) //IL_0caf: Unknown result type (might be due to invalid IL or missing references) //IL_0cb5: Unknown result type (might be due to invalid IL or missing references) //IL_0cbf: Unknown result type (might be due to invalid IL or missing references) //IL_0cc4: Unknown result type (might be due to invalid IL or missing references) //IL_0cca: Unknown result type (might be due to invalid IL or missing references) //IL_0ccf: Unknown result type (might be due to invalid IL or missing references) //IL_0cd5: Unknown result type (might be due to invalid IL or missing references) //IL_0cda: Unknown result type (might be due to invalid IL or missing references) //IL_0ce0: Unknown result type (might be due to invalid IL or missing references) //IL_0ce5: Unknown result type (might be due to invalid IL or missing references) //IL_0cf0: Unknown result type (might be due to invalid IL or missing references) //IL_0cf6: Unknown result type (might be due to invalid IL or missing references) //IL_0cfb: Unknown result type (might be due to invalid IL or missing references) //IL_0d01: Unknown result type (might be due to invalid IL or missing references) //IL_0d0b: Unknown result type (might be due to invalid IL or missing references) //IL_0d10: Unknown result type (might be due to invalid IL or missing references) //IL_0d16: Unknown result type (might be due to invalid IL or missing references) //IL_0d20: Unknown result type (might be due to invalid IL or missing references) //IL_0d25: Unknown result type (might be due to invalid IL or missing references) //IL_0d2b: Unknown result type (might be due to invalid IL or missing references) //IL_0d35: Unknown result type (might be due to invalid IL or missing references) //IL_0d3a: Unknown result type (might be due to invalid IL or missing references) //IL_0d40: Unknown result type (might be due to invalid IL or missing references) //IL_0d45: Unknown result type (might be due to invalid IL or missing references) //IL_0d4b: Unknown result type (might be due to invalid IL or missing references) //IL_0d50: Unknown result type (might be due to invalid IL or missing references) //IL_0d5c: Unknown result type (might be due to invalid IL or missing references) //IL_0b73: Unknown result type (might be due to invalid IL or missing references) //IL_0b79: Unknown result type (might be due to invalid IL or missing references) //IL_0b7e: Unknown result type (might be due to invalid IL or missing references) //IL_0b84: Unknown result type (might be due to invalid IL or missing references) //IL_0b8e: Unknown result type (might be due to invalid IL or missing references) //IL_0b93: Unknown result type (might be due to invalid IL or missing references) //IL_0b99: Unknown result type (might be due to invalid IL or missing references) //IL_0ba3: Unknown result type (might be due to invalid IL or missing references) //IL_0ba8: Unknown result type (might be due to invalid IL or missing references) //IL_0bae: Unknown result type (might be due to invalid IL or missing references) //IL_0bb8: Unknown result type (might be due to invalid IL or missing references) //IL_0bbd: Unknown result type (might be due to invalid IL or missing references) //IL_0bc3: Unknown result type (might be due to invalid IL or missing references) //IL_0bc8: Unknown result type (might be due to invalid IL or missing references) //IL_0bce: Unknown result type (might be due to invalid IL or missing references) //IL_0bd3: Unknown result type (might be due to invalid IL or missing references) //IL_0bd9: Unknown result type (might be due to invalid IL or missing references) //IL_0bde: Unknown result type (might be due to invalid IL or missing references) //IL_0be9: Unknown result type (might be due to invalid IL or missing references) //IL_0bef: Unknown result type (might be due to invalid IL or missing references) //IL_0bf4: Unknown result type (might be due to invalid IL or missing references) //IL_0bfa: Unknown result type (might be due to invalid IL or missing references) //IL_0c04: Unknown result type (might be due to invalid IL or missing references) //IL_0c09: Unknown result type (might be due to invalid IL or missing references) //IL_0c0f: Unknown result type (might be due to invalid IL or missing references) //IL_0c14: Unknown result type (might be due to invalid IL or missing references) //IL_0c1a: Unknown result type (might be due to invalid IL or missing references) //IL_0c24: Unknown result type (might be due to invalid IL or missing references) //IL_0c29: Unknown result type (might be due to invalid IL or missing references) //IL_0c2f: Unknown result type (might be due to invalid IL or missing references) //IL_0c39: Unknown result type (might be due to invalid IL or missing references) //IL_0c3e: Unknown result type (might be due to invalid IL or missing references) //IL_0c44: Unknown result type (might be due to invalid IL or missing references) //IL_0c49: Unknown result type (might be due to invalid IL or missing references) //IL_0c4f: Unknown result type (might be due to invalid IL or missing references) //IL_0c54: Unknown result type (might be due to invalid IL or missing references) //IL_0c60: Unknown result type (might be due to invalid IL or missing references) //IL_0d77: Unknown result type (might be due to invalid IL or missing references) //IL_0d7c: Unknown result type (might be due to invalid IL or missing references) //IL_1c1f: Unknown result type (might be due to invalid IL or missing references) //IL_1c25: Unknown result type (might be due to invalid IL or missing references) //IL_1c2a: Unknown result type (might be due to invalid IL or missing references) //IL_1c30: Unknown result type (might be due to invalid IL or missing references) //IL_1c3a: Unknown result type (might be due to invalid IL or missing references) //IL_1c3f: Unknown result type (might be due to invalid IL or missing references) //IL_1c45: Unknown result type (might be due to invalid IL or missing references) //IL_1c4f: Unknown result type (might be due to invalid IL or missing references) //IL_1c54: Unknown result type (might be due to invalid IL or missing references) //IL_1c5a: Unknown result type (might be due to invalid IL or missing references) //IL_1c64: Unknown result type (might be due to invalid IL or missing references) //IL_1c69: Unknown result type (might be due to invalid IL or missing references) //IL_1c6f: Unknown result type (might be due to invalid IL or missing references) //IL_1c74: Unknown result type (might be due to invalid IL or missing references) //IL_1c7a: Unknown result type (might be due to invalid IL or missing references) //IL_1c7f: Unknown result type (might be due to invalid IL or missing references) //IL_1c85: Unknown result type (might be due to invalid IL or missing references) //IL_1c8a: Unknown result type (might be due to invalid IL or missing references) //IL_1c95: Unknown result type (might be due to invalid IL or missing references) //IL_1c9b: Unknown result type (might be due to invalid IL or missing references) //IL_1ca0: Unknown result type (might be due to invalid IL or missing references) //IL_1ca6: Unknown result type (might be due to invalid IL or missing references) //IL_1cb0: Unknown result type (might be due to invalid IL or missing references) //IL_1cb5: Unknown result type (might be due to invalid IL or missing references) //IL_1cbb: Unknown result type (might be due to invalid IL or missing references) //IL_1cc5: Unknown result type (might be due to invalid IL or missing references) //IL_1cca: Unknown result type (might be due to invalid IL or missing references) //IL_1cd0: Unknown result type (might be due to invalid IL or missing references) //IL_1cda: Unknown result type (might be due to invalid IL or missing references) //IL_1cdf: Unknown result type (might be due to invalid IL or missing references) //IL_1ce5: Unknown result type (might be due to invalid IL or missing references) //IL_1cea: Unknown result type (might be due to invalid IL or missing references) //IL_1cf0: Unknown result type (might be due to invalid IL or missing references) //IL_1cf5: Unknown result type (might be due to invalid IL or missing references) //IL_1cfb: Unknown result type (might be due to invalid IL or missing references) //IL_1d00: Unknown result type (might be due to invalid IL or missing references) //IL_1d0c: Unknown result type (might be due to invalid IL or missing references) //IL_1e2d: Unknown result type (might be due to invalid IL or missing references) //IL_1e33: Unknown result type (might be due to invalid IL or missing references) //IL_1e38: Unknown result type (might be due to invalid IL or missing references) //IL_1e3e: Unknown result type (might be due to invalid IL or missing references) //IL_1e48: Unknown result type (might be due to invalid IL or missing references) //IL_1e4d: Unknown result type (might be due to invalid IL or missing references) //IL_1e53: Unknown result type (might be due to invalid IL or missing references) //IL_1e5d: Unknown result type (might be due to invalid IL or missing references) //IL_1e62: Unknown result type (might be due to invalid IL or missing references) //IL_1e68: Unknown result type (might be due to invalid IL or missing references) //IL_1e72: Unknown result type (might be due to invalid IL or missing references) //IL_1e77: Unknown result type (might be due to invalid IL or missing references) //IL_1e7d: Unknown result type (might be due to invalid IL or missing references) //IL_1e82: Unknown result type (might be due to invalid IL or missing references) //IL_1e88: Unknown result type (might be due to invalid IL or missing references) //IL_1e8d: Unknown result type (might be due to invalid IL or missing references) //IL_1e93: Unknown result type (might be due to invalid IL or missing references) //IL_1e98: Unknown result type (might be due to invalid IL or missing references) //IL_1ea3: Unknown result type (might be due to invalid IL or missing references) //IL_1ea9: Unknown result type (might be due to invalid IL or missing references) //IL_1eae: Unknown result type (might be due to invalid IL or missing references) //IL_1eb4: Unknown result type (might be due to invalid IL or missing references) //IL_1ebe: Unknown result type (might be due to invalid IL or missing references) //IL_1ec3: Unknown result type (might be due to invalid IL or missing references) //IL_1ec9: Unknown result type (might be due to invalid IL or missing references) //IL_1ed3: Unknown result type (might be due to invalid IL or missing references) //IL_1ed8: Unknown result type (might be due to invalid IL or missing references) //IL_1ede: Unknown result type (might be due to invalid IL or missing references) //IL_1ee8: Unknown result type (might be due to invalid IL or missing references) //IL_1eed: Unknown result type (might be due to invalid IL or missing references) //IL_1ef3: Unknown result type (might be due to invalid IL or missing references) //IL_1ef8: Unknown result type (might be due to invalid IL or missing references) //IL_1efe: Unknown result type (might be due to invalid IL or missing references) //IL_1f03: Unknown result type (might be due to invalid IL or missing references) //IL_1f0f: Unknown result type (might be due to invalid IL or missing references) //IL_1d26: Unknown result type (might be due to invalid IL or missing references) //IL_1d2c: Unknown result type (might be due to invalid IL or missing references) //IL_1d31: Unknown result type (might be due to invalid IL or missing references) //IL_1d37: Unknown result type (might be due to invalid IL or missing references) //IL_1d41: Unknown result type (might be due to invalid IL or missing references) //IL_1d46: Unknown result type (might be due to invalid IL or missing references) //IL_1d4c: Unknown result type (might be due to invalid IL or missing references) //IL_1d56: Unknown result type (might be due to invalid IL or missing references) //IL_1d5b: Unknown result type (might be due to invalid IL or missing references) //IL_1d61: Unknown result type (might be due to invalid IL or missing references) //IL_1d6b: Unknown result type (might be due to invalid IL or missing references) //IL_1d70: Unknown result type (might be due to invalid IL or missing references) //IL_1d76: Unknown result type (might be due to invalid IL or missing references) //IL_1d7b: Unknown result type (might be due to invalid IL or missing references) //IL_1d81: Unknown result type (might be due to invalid IL or missing references) //IL_1d86: Unknown result type (might be due to invalid IL or missing references) //IL_1d8c: Unknown result type (might be due to invalid IL or missing references) //IL_1d91: Unknown result type (might be due to invalid IL or missing references) //IL_1d9c: Unknown result type (might be due to invalid IL or missing references) //IL_1da2: Unknown result type (might be due to invalid IL or missing references) //IL_1da7: Unknown result type (might be due to invalid IL or missing references) //IL_1dad: Unknown result type (might be due to invalid IL or missing references) //IL_1db7: Unknown result type (might be due to invalid IL or missing references) //IL_1dbc: Unknown result type (might be due to invalid IL or missing references) //IL_1dc2: Unknown result type (might be due to invalid IL or missing references) //IL_1dc7: Unknown result type (might be due to invalid IL or missing references) //IL_1dcd: Unknown result type (might be due to invalid IL or missing references) //IL_1dd7: Unknown result type (might be due to invalid IL or missing references) //IL_1ddc: Unknown result type (might be due to invalid IL or missing references) //IL_1de2: Unknown result type (might be due to invalid IL or missing references) //IL_1dec: Unknown result type (might be due to invalid IL or missing references) //IL_1df1: Unknown result type (might be due to invalid IL or missing references) //IL_1df7: Unknown result type (might be due to invalid IL or missing references) //IL_1dfc: Unknown result type (might be due to invalid IL or missing references) //IL_1e02: Unknown result type (might be due to invalid IL or missing references) //IL_1e07: Unknown result type (might be due to invalid IL or missing references) //IL_1e13: Unknown result type (might be due to invalid IL or missing references) //IL_0dc2: Unknown result type (might be due to invalid IL or missing references) //IL_0dc8: Unknown result type (might be due to invalid IL or missing references) //IL_0dcd: Unknown result type (might be due to invalid IL or missing references) //IL_0dd3: Unknown result type (might be due to invalid IL or missing references) //IL_0dd8: Unknown result type (might be due to invalid IL or missing references) //IL_0dde: Unknown result type (might be due to invalid IL or missing references) //IL_0de8: Unknown result type (might be due to invalid IL or missing references) //IL_0dee: Unknown result type (might be due to invalid IL or missing references) //IL_0df3: Unknown result type (might be due to invalid IL or missing references) //IL_0df9: Unknown result type (might be due to invalid IL or missing references) //IL_0dfe: Unknown result type (might be due to invalid IL or missing references) //IL_0e03: Unknown result type (might be due to invalid IL or missing references) //IL_0e0e: Unknown result type (might be due to invalid IL or missing references) //IL_0e14: Unknown result type (might be due to invalid IL or missing references) //IL_0e19: Unknown result type (might be due to invalid IL or missing references) //IL_0e1f: Unknown result type (might be due to invalid IL or missing references) //IL_0e24: Unknown result type (might be due to invalid IL or missing references) //IL_0e2a: Unknown result type (might be due to invalid IL or missing references) //IL_0e34: Unknown result type (might be due to invalid IL or missing references) //IL_0e39: Unknown result type (might be due to invalid IL or missing references) //IL_0e3f: Unknown result type (might be due to invalid IL or missing references) //IL_0e49: Unknown result type (might be due to invalid IL or missing references) //IL_0e4f: Unknown result type (might be due to invalid IL or missing references) //IL_0e54: Unknown result type (might be due to invalid IL or missing references) //IL_0e5a: Unknown result type (might be due to invalid IL or missing references) //IL_0e5f: Unknown result type (might be due to invalid IL or missing references) //IL_0e64: Unknown result type (might be due to invalid IL or missing references) //IL_0e70: Unknown result type (might be due to invalid IL or missing references) //IL_1f2a: Unknown result type (might be due to invalid IL or missing references) //IL_1f2f: Unknown result type (might be due to invalid IL or missing references) //IL_0f3b: Unknown result type (might be due to invalid IL or missing references) //IL_0f41: Unknown result type (might be due to invalid IL or missing references) //IL_0f46: Unknown result type (might be due to invalid IL or missing references) //IL_0f4c: Unknown result type (might be due to invalid IL or missing references) //IL_0f51: Unknown result type (might be due to invalid IL or missing references) //IL_0f57: Unknown result type (might be due to invalid IL or missing references) //IL_0f61: Unknown result type (might be due to invalid IL or missing references) //IL_0f67: Unknown result type (might be due to invalid IL or missing references) //IL_0f6c: Unknown result type (might be due to invalid IL or missing references) //IL_0f72: Unknown result type (might be due to invalid IL or missing references) //IL_0f77: Unknown result type (might be due to invalid IL or missing references) //IL_0f7c: Unknown result type (might be due to invalid IL or missing references) //IL_0f82: Unknown result type (might be due to invalid IL or missing references) //IL_0f8c: Unknown result type (might be due to invalid IL or missing references) //IL_0f91: Unknown result type (might be due to invalid IL or missing references) //IL_0f9c: Unknown result type (might be due to invalid IL or missing references) //IL_0fa2: Unknown result type (might be due to invalid IL or missing references) //IL_0fa7: Unknown result type (might be due to invalid IL or missing references) //IL_0fad: Unknown result type (might be due to invalid IL or missing references) //IL_0fb2: Unknown result type (might be due to invalid IL or missing references) //IL_0fb8: Unknown result type (might be due to invalid IL or missing references) //IL_0fc2: Unknown result type (might be due to invalid IL or missing references) //IL_0fc7: Unknown result type (might be due to invalid IL or missing references) //IL_0fcd: Unknown result type (might be due to invalid IL or missing references) //IL_0fd7: Unknown result type (might be due to invalid IL or missing references) //IL_0fdd: Unknown result type (might be due to invalid IL or missing references) //IL_0fe2: Unknown result type (might be due to invalid IL or missing references) //IL_0fe8: Unknown result type (might be due to invalid IL or missing references) //IL_0fed: Unknown result type (might be due to invalid IL or missing references) //IL_0ff2: Unknown result type (might be due to invalid IL or missing references) //IL_0ff8: Unknown result type (might be due to invalid IL or missing references) //IL_1002: Unknown result type (might be due to invalid IL or missing references) //IL_1007: Unknown result type (might be due to invalid IL or missing references) //IL_1013: Unknown result type (might be due to invalid IL or missing references) //IL_0e8a: Unknown result type (might be due to invalid IL or missing references) //IL_0e8f: Unknown result type (might be due to invalid IL or missing references) //IL_2dd6: Unknown result type (might be due to invalid IL or missing references) //IL_2ddc: Unknown result type (might be due to invalid IL or missing references) //IL_2de1: Unknown result type (might be due to invalid IL or missing references) //IL_2de7: Unknown result type (might be due to invalid IL or missing references) //IL_2df1: Unknown result type (might be due to invalid IL or missing references) //IL_2df6: Unknown result type (might be due to invalid IL or missing references) //IL_2dfc: Unknown result type (might be due to invalid IL or missing references) //IL_2e06: Unknown result type (might be due to invalid IL or missing references) //IL_2e0b: Unknown result type (might be due to invalid IL or missing references) //IL_2e11: Unknown result type (might be due to invalid IL or missing references) //IL_2e1b: Unknown result type (might be due to invalid IL or missing references) //IL_2e20: Unknown result type (might be due to invalid IL or missing references) //IL_2e26: Unknown result type (might be due to invalid IL or missing references) //IL_2e2b: Unknown result type (might be due to invalid IL or missing references) //IL_2e31: Unknown result type (might be due to invalid IL or missing references) //IL_2e36: Unknown result type (might be due to invalid IL or missing references) //IL_2e3c: Unknown result type (might be due to invalid IL or missing references) //IL_2e41: Unknown result type (might be due to invalid IL or missing references) //IL_2e4c: Unknown result type (might be due to invalid IL or missing references) //IL_2e52: Unknown result type (might be due to invalid IL or missing references) //IL_2e57: Unknown result type (might be due to invalid IL or missing references) //IL_2e5d: Unknown result type (might be due to invalid IL or missing references) //IL_2e67: Unknown result type (might be due to invalid IL or missing references) //IL_2e6c: Unknown result type (might be due to invalid IL or missing references) //IL_2e72: Unknown result type (might be due to invalid IL or missing references) //IL_2e7c: Unknown result type (might be due to invalid IL or missing references) //IL_2e81: Unknown result type (might be due to invalid IL or missing references) //IL_2e87: Unknown result type (might be due to invalid IL or missing references) //IL_2e91: Unknown result type (might be due to invalid IL or missing references) //IL_2e96: Unknown result type (might be due to invalid IL or missing references) //IL_2e9c: Unknown result type (might be due to invalid IL or missing references) //IL_2ea1: Unknown result type (might be due to invalid IL or missing references) //IL_2ea7: Unknown result type (might be due to invalid IL or missing references) //IL_2eac: Unknown result type (might be due to invalid IL or missing references) //IL_2eb2: Unknown result type (might be due to invalid IL or missing references) //IL_2eb7: Unknown result type (might be due to invalid IL or missing references) //IL_2ec3: Unknown result type (might be due to invalid IL or missing references) //IL_10e1: Unknown result type (might be due to invalid IL or missing references) //IL_10e7: Unknown result type (might be due to invalid IL or missing references) //IL_10ec: Unknown result type (might be due to invalid IL or missing references) //IL_10f2: Unknown result type (might be due to invalid IL or missing references) //IL_10f7: Unknown result type (might be due to invalid IL or missing references) //IL_10fd: Unknown result type (might be due to invalid IL or missing references) //IL_1107: Unknown result type (might be due to invalid IL or missing references) //IL_110d: Unknown result type (might be due to invalid IL or missing references) //IL_1112: Unknown result type (might be due to invalid IL or missing references) //IL_1118: Unknown result type (might be due to invalid IL or missing references) //IL_111d: Unknown result type (might be due to invalid IL or missing references) //IL_1122: Unknown result type (might be due to invalid IL or missing references) //IL_1128: Unknown result type (might be due to invalid IL or missing references) //IL_1132: Unknown result type (might be due to invalid IL or missing references) //IL_1137: Unknown result type (might be due to invalid IL or missing references) //IL_1142: Unknown result type (might be due to invalid IL or missing references) //IL_1148: Unknown result type (might be due to invalid IL or missing references) //IL_114d: Unknown result type (might be due to invalid IL or missing references) //IL_1153: Unknown result type (might be due to invalid IL or missing references) //IL_1158: Unknown result type (might be due to invalid IL or missing references) //IL_115e: Unknown result type (might be due to invalid IL or missing references) //IL_1168: Unknown result type (might be due to invalid IL or missing references) //IL_116d: Unknown result type (might be due to invalid IL or missing references) //IL_1173: Unknown result type (might be due to invalid IL or missing references) //IL_117d: Unknown result type (might be due to invalid IL or missing references) //IL_1183: Unknown result type (might be due to invalid IL or missing references) //IL_1188: Unknown result type (might be due to invalid IL or missing references) //IL_118e: Unknown result type (might be due to invalid IL or missing references) //IL_1193: Unknown result type (might be due to invalid IL or missing references) //IL_1198: Unknown result type (might be due to invalid IL or missing references) //IL_119e: Unknown result type (might be due to invalid IL or missing references) //IL_11a8: Unknown result type (might be due to invalid IL or missing references) //IL_11ad: Unknown result type (might be due to invalid IL or missing references) //IL_11b9: Unknown result type (might be due to invalid IL or missing references) //IL_102d: Unknown result type (might be due to invalid IL or missing references) //IL_1032: Unknown result type (might be due to invalid IL or missing references) //IL_0ec3: Unknown result type (might be due to invalid IL or missing references) //IL_0ec8: Unknown result type (might be due to invalid IL or missing references) //IL_0ed6: Unknown result type (might be due to invalid IL or missing references) //IL_0edb: Unknown result type (might be due to invalid IL or missing references) //IL_0ef6: Unknown result type (might be due to invalid IL or missing references) //IL_0efb: Unknown result type (might be due to invalid IL or missing references) //IL_0f04: Unknown result type (might be due to invalid IL or missing references) //IL_0f0f: Unknown result type (might be due to invalid IL or missing references) //IL_0f20: Unknown result type (might be due to invalid IL or missing references) //IL_0f25: Unknown result type (might be due to invalid IL or missing references) //IL_0f2a: Unknown result type (might be due to invalid IL or missing references) //IL_2fe4: Unknown result type (might be due to invalid IL or missing references) //IL_2fea: Unknown result type (might be due to invalid IL or missing references) //IL_2fef: Unknown result type (might be due to invalid IL or missing references) //IL_2ff5: Unknown result type (might be due to invalid IL or missing references) //IL_2fff: Unknown result type (might be due to invalid IL or missing references) //IL_3004: Unknown result type (might be due to invalid IL or missing references) //IL_300a: Unknown result type (might be due to invalid IL or missing references) //IL_3014: Unknown result type (might be due to invalid IL or missing references) //IL_3019: Unknown result type (might be due to invalid IL or missing references) //IL_301f: Unknown result type (might be due to invalid IL or missing references) //IL_3029: Unknown result type (might be due to invalid IL or missing references) //IL_302e: Unknown result type (might be due to invalid IL or missing references) //IL_3034: Unknown result type (might be due to invalid IL or missing references) //IL_3039: Unknown result type (might be due to invalid IL or missing references) //IL_303f: Unknown result type (might be due to invalid IL or missing references) //IL_3044: Unknown result type (might be due to invalid IL or missing references) //IL_304a: Unknown result type (might be due to invalid IL or missing references) //IL_304f: Unknown result type (might be due to invalid IL or missing references) //IL_305a: Unknown result type (might be due to invalid IL or missing references) //IL_3060: Unknown result type (might be due to invalid IL or missing references) //IL_3065: Unknown result type (might be due to invalid IL or missing references) //IL_306b: Unknown result type (might be due to invalid IL or missing references) //IL_3075: Unknown result type (might be due to invalid IL or missing references) //IL_307a: Unknown result type (might be due to invalid IL or missing references) //IL_3080: Unknown result type (might be due to invalid IL or missing references) //IL_308a: Unknown result type (might be due to invalid IL or missing references) //IL_308f: Unknown result type (might be due to invalid IL or missing references) //IL_3095: Unknown result type (might be due to invalid IL or missing references) //IL_309f: Unknown result type (might be due to invalid IL or missing references) //IL_30a4: Unknown result type (might be due to invalid IL or missing references) //IL_30aa: Unknown result type (might be due to invalid IL or missing references) //IL_30af: Unknown result type (might be due to invalid IL or missing references) //IL_30b5: Unknown result type (might be due to invalid IL or missing references) //IL_30ba: Unknown result type (might be due to invalid IL or missing references) //IL_30c6: Unknown result type (might be due to invalid IL or missing references) //IL_2edd: Unknown result type (might be due to invalid IL or missing references) //IL_2ee3: Unknown result type (might be due to invalid IL or missing references) //IL_2ee8: Unknown result type (might be due to invalid IL or missing references) //IL_2eee: Unknown result type (might be due to invalid IL or missing references) //IL_2ef8: Unknown result type (might be due to invalid IL or missing references) //IL_2efd: Unknown result type (might be due to invalid IL or missing references) //IL_2f03: Unknown result type (might be due to invalid IL or missing references) //IL_2f0d: Unknown result type (might be due to invalid IL or missing references) //IL_2f12: Unknown result type (might be due to invalid IL or missing references) //IL_2f18: Unknown result type (might be due to invalid IL or missing references) //IL_2f22: Unknown result type (might be due to invalid IL or missing references) //IL_2f27: Unknown result type (might be due to invalid IL or missing references) //IL_2f2d: Unknown result type (might be due to invalid IL or missing references) //IL_2f32: Unknown result type (might be due to invalid IL or missing references) //IL_2f38: Unknown result type (might be due to invalid IL or missing references) //IL_2f3d: Unknown result type (might be due to invalid IL or missing references) //IL_2f43: Unknown result type (might be due to invalid IL or missing references) //IL_2f48: Unknown result type (might be due to invalid IL or missing references) //IL_2f53: Unknown result type (might be due to invalid IL or missing references) //IL_2f59: Unknown result type (might be due to invalid IL or missing references) //IL_2f5e: Unknown result type (might be due to invalid IL or missing references) //IL_2f64: Unknown result type (might be due to invalid IL or missing references) //IL_2f6e: Unknown result type (might be due to invalid IL or missing references) //IL_2f73: Unknown result type (might be due to invalid IL or missing references) //IL_2f79: Unknown result type (might be due to invalid IL or missing references) //IL_2f7e: Unknown result type (might be due to invalid IL or missing references) //IL_2f84: Unknown result type (might be due to invalid IL or missing references) //IL_2f8e: Unknown result type (might be due to invalid IL or missing references) //IL_2f93: Unknown result type (might be due to invalid IL or missing references) //IL_2f99: Unknown result type (might be due to invalid IL or missing references) //IL_2fa3: Unknown result type (might be due to invalid IL or missing references) //IL_2fa8: Unknown result type (might be due to invalid IL or missing references) //IL_2fae: Unknown result type (might be due to invalid IL or missing references) //IL_2fb3: Unknown result type (might be due to invalid IL or missing references) //IL_2fb9: Unknown result type (might be due to invalid IL or missing references) //IL_2fbe: Unknown result type (might be due to invalid IL or missing references) //IL_2fca: Unknown result type (might be due to invalid IL or missing references) //IL_1f76: Unknown result type (might be due to invalid IL or missing references) //IL_1f7c: Unknown result type (might be due to invalid IL or missing references) //IL_1f81: Unknown result type (might be due to invalid IL or missing references) //IL_1f87: Unknown result type (might be due to invalid IL or missing references) //IL_1f8c: Unknown result type (might be due to invalid IL or missing references) //IL_1f92: Unknown result type (might be due to invalid IL or missing references) //IL_1f9c: Unknown result type (might be due to invalid IL or missing references) //IL_1fa2: Unknown result type (might be due to invalid IL or missing references) //IL_1fa7: Unknown result type (might be due to invalid IL or missing references) //IL_1fad: Unknown result type (might be due to invalid IL or missing references) //IL_1fb2: Unknown result type (might be due to invalid IL or missing references) //IL_1fb7: Unknown result type (might be due to invalid IL or missing references) //IL_1fc2: Unknown result type (might be due to invalid IL or missing references) //IL_1fc8: Unknown result type (might be due to invalid IL or missing references) //IL_1fcd: Unknown result type (might be due to invalid IL or missing references) //IL_1fd3: Unknown result type (might be due to invalid IL or missing references) //IL_1fd8: Unknown result type (might be due to invalid IL or missing references) //IL_1fde: Unknown result type (might be due to invalid IL or missing references) //IL_1fe8: Unknown result type (might be due to invalid IL or missing references) //IL_1fed: Unknown result type (might be due to invalid IL or missing references) //IL_1ff3: Unknown result type (might be due to invalid IL or missing references) //IL_1ffd: Unknown result type (might be due to invalid IL or missing references) //IL_2003: Unknown result type (might be due to invalid IL or missing references) //IL_2008: Unknown result type (might be due to invalid IL or missing references) //IL_200e: Unknown result type (might be due to invalid IL or missing references) //IL_2013: Unknown result type (might be due to invalid IL or missing references) //IL_2018: Unknown result type (might be due to invalid IL or missing references) //IL_2024: Unknown result type (might be due to invalid IL or missing references) //IL_1287: Unknown result type (might be due to invalid IL or missing references) //IL_128d: Unknown result type (might be due to invalid IL or missing references) //IL_1292: Unknown result type (might be due to invalid IL or missing references) //IL_1298: Unknown result type (might be due to invalid IL or missing references) //IL_129d: Unknown result type (might be due to invalid IL or missing references) //IL_12a3: Unknown result type (might be due to invalid IL or missing references) //IL_12ad: Unknown result type (might be due to invalid IL or missing references) //IL_12b3: Unknown result type (might be due to invalid IL or missing references) //IL_12b8: Unknown result type (might be due to invalid IL or missing references) //IL_12be: Unknown result type (might be due to invalid IL or missing references) //IL_12c3: Unknown result type (might be due to invalid IL or missing references) //IL_12c8: Unknown result type (might be due to invalid IL or missing references) //IL_12ce: Unknown result type (might be due to invalid IL or missing references) //IL_12d8: Unknown result type (might be due to invalid IL or missing references) //IL_12dd: Unknown result type (might be due to invalid IL or missing references) //IL_12e8: Unknown result type (might be due to invalid IL or missing references) //IL_12ee: Unknown result type (might be due to invalid IL or missing references) //IL_12f3: Unknown result type (might be due to invalid IL or missing references) //IL_12f9: Unknown result type (might be due to invalid IL or missing references) //IL_12fe: Unknown result type (might be due to invalid IL or missing references) //IL_1304: Unknown result type (might be due to invalid IL or missing references) //IL_130e: Unknown result type (might be due to invalid IL or missing references) //IL_1313: Unknown result type (might be due to invalid IL or missing references) //IL_1319: Unknown result type (might be due to invalid IL or missing references) //IL_1323: Unknown result type (might be due to invalid IL or missing references) //IL_1329: Unknown result type (might be due to invalid IL or missing references) //IL_132e: Unknown result type (might be due to invalid IL or missing references) //IL_1334: Unknown result type (might be due to invalid IL or missing references) //IL_1339: Unknown result type (might be due to invalid IL or missing references) //IL_133e: Unknown result type (might be due to invalid IL or missing references) //IL_1344: Unknown result type (might be due to invalid IL or missing references) //IL_134e: Unknown result type (might be due to invalid IL or missing references) //IL_1353: Unknown result type (might be due to invalid IL or missing references) //IL_135f: Unknown result type (might be due to invalid IL or missing references) //IL_11d3: Unknown result type (might be due to invalid IL or missing references) //IL_11d8: Unknown result type (might be due to invalid IL or missing references) //IL_1067: Unknown result type (might be due to invalid IL or missing references) //IL_106c: Unknown result type (might be due to invalid IL or missing references) //IL_107b: Unknown result type (might be due to invalid IL or missing references) //IL_1080: Unknown result type (might be due to invalid IL or missing references) //IL_109c: Unknown result type (might be due to invalid IL or missing references) //IL_10a1: Unknown result type (might be due to invalid IL or missing references) //IL_10aa: Unknown result type (might be due to invalid IL or missing references) //IL_10b5: Unknown result type (might be due to invalid IL or missing references) //IL_10c6: Unknown result type (might be due to invalid IL or missing references) //IL_10cb: Unknown result type (might be due to invalid IL or missing references) //IL_10d0: Unknown result type (might be due to invalid IL or missing references) //IL_30e1: Unknown result type (might be due to invalid IL or missing references) //IL_30e6: Unknown result type (might be due to invalid IL or missing references) //IL_20f2: Unknown result type (might be due to invalid IL or missing references) //IL_20f8: Unknown result type (might be due to invalid IL or missing references) //IL_20fd: Unknown result type (might be due to invalid IL or missing references) //IL_2103: Unknown result type (might be due to invalid IL or missing references) //IL_2108: Unknown result type (might be due to invalid IL or missing references) //IL_210e: Unknown result type (might be due to invalid IL or missing references) //IL_2118: Unknown result type (might be due to invalid IL or missing references) //IL_211e: Unknown result type (might be due to invalid IL or missing references) //IL_2123: Unknown result type (might be due to invalid IL or missing references) //IL_2129: Unknown result type (might be due to invalid IL or missing references) //IL_212e: Unknown result type (might be due to invalid IL or missing references) //IL_2133: Unknown result type (might be due to invalid IL or missing references) //IL_2139: Unknown result type (might be due to invalid IL or missing references) //IL_2143: Unknown result type (might be due to invalid IL or missing references) //IL_2148: Unknown result type (might be due to invalid IL or missing references) //IL_2153: Unknown result type (might be due to invalid IL or missing references) //IL_2159: Unknown result type (might be due to invalid IL or missing references) //IL_215e: Unknown result type (might be due to invalid IL or missing references) //IL_2164: Unknown result type (might be due to invalid IL or missing references) //IL_2169: Unknown result type (might be due to invalid IL or missing references) //IL_216f: Unknown result type (might be due to invalid IL or missing references) //IL_2179: Unknown result type (might be due to invalid IL or missing references) //IL_217e: Unknown result type (might be due to invalid IL or missing references) //IL_2184: Unknown result type (might be due to invalid IL or missing references) //IL_218e: Unknown result type (might be due to invalid IL or missing references) //IL_2194: Unknown result type (might be due to invalid IL or missing references) //IL_2199: Unknown result type (might be due to invalid IL or missing references) //IL_219f: Unknown result type (might be due to invalid IL or missing references) //IL_21a4: Unknown result type (might be due to invalid IL or missing references) //IL_21a9: Unknown result type (might be due to invalid IL or missing references) //IL_21af: Unknown result type (might be due to invalid IL or missing references) //IL_21b9: Unknown result type (might be due to invalid IL or missing references) //IL_21be: Unknown result type (might be due to invalid IL or missing references) //IL_21ca: Unknown result type (might be due to invalid IL or missing references) //IL_203e: Unknown result type (might be due to invalid IL or missing references) //IL_2043: Unknown result type (might be due to invalid IL or missing references) //IL_142d: Unknown result type (might be due to invalid IL or missing references) //IL_1433: Unknown result type (might be due to invalid IL or missing references) //IL_1438: Unknown result type (might be due to invalid IL or missing references) //IL_143e: Unknown result type (might be due to invalid IL or missing references) //IL_1443: Unknown result type (might be due to invalid IL or missing references) //IL_1449: Unknown result type (might be due to invalid IL or missing references) //IL_1453: Unknown result type (might be due to invalid IL or missing references) //IL_1458: Unknown result type (might be due to invalid IL or missing references) //IL_145e: Unknown result type (might be due to invalid IL or missing references) //IL_1468: Unknown result type (might be due to invalid IL or missing references) //IL_146e: Unknown result type (might be due to invalid IL or missing references) //IL_1473: Unknown result type (might be due to invalid IL or missing references) //IL_1479: Unknown result type (might be due to invalid IL or missing references) //IL_147e: Unknown result type (might be due to invalid IL or missing references) //IL_1483: Unknown result type (might be due to invalid IL or missing references) //IL_1489: Unknown result type (might be due to invalid IL or missing references) //IL_1493: Unknown result type (might be due to invalid IL or missing references) //IL_1498: Unknown result type (might be due to invalid IL or missing references) //IL_14a3: Unknown result type (might be due to invalid IL or missing references) //IL_14a9: Unknown result type (might be due to invalid IL or missing references) //IL_14ae: Unknown result type (might be due to invalid IL or missing references) //IL_14b4: Unknown result type (might be due to invalid IL or missing references) //IL_14b9: Unknown result type (might be due to invalid IL or missing references) //IL_14bf: Unknown result type (might be due to invalid IL or missing references) //IL_14c9: Unknown result type (might be due to invalid IL or missing references) //IL_14ce: Unknown result type (might be due to invalid IL or missing references) //IL_14d4: Unknown result type (might be due to invalid IL or missing references) //IL_14de: Unknown result type (might be due to invalid IL or missing references) //IL_14e4: Unknown result type (might be due to invalid IL or missing references) //IL_14e9: Unknown result type (might be due to invalid IL or missing references) //IL_14ef: Unknown result type (might be due to invalid IL or missing references) //IL_14f4: Unknown result type (might be due to invalid IL or missing references) //IL_14f9: Unknown result type (might be due to invalid IL or missing references) //IL_14ff: Unknown result type (might be due to invalid IL or missing references) //IL_1509: Unknown result type (might be due to invalid IL or missing references) //IL_150e: Unknown result type (might be due to invalid IL or missing references) //IL_151a: Unknown result type (might be due to invalid IL or missing references) //IL_1379: Unknown result type (might be due to invalid IL or missing references) //IL_137e: Unknown result type (might be due to invalid IL or missing references) //IL_120d: Unknown result type (might be due to invalid IL or missing references) //IL_1212: Unknown result type (might be due to invalid IL or missing references) //IL_1221: Unknown result type (might be due to invalid IL or missing references) //IL_1226: Unknown result type (might be due to invalid IL or missing references) //IL_1242: Unknown result type (might be due to invalid IL or missing references) //IL_1247: Unknown result type (might be due to invalid IL or missing references) //IL_1250: Unknown result type (might be due to invalid IL or missing references) //IL_125b: Unknown result type (might be due to invalid IL or missing references) //IL_126c: Unknown result type (might be due to invalid IL or missing references) //IL_1271: Unknown result type (might be due to invalid IL or missing references) //IL_1276: Unknown result type (might be due to invalid IL or missing references) //IL_2298: Unknown result type (might be due to invalid IL or missing references) //IL_229e: Unknown result type (might be due to invalid IL or missing references) //IL_22a3: Unknown result type (might be due to invalid IL or missing references) //IL_22a9: Unknown result type (might be due to invalid IL or missing references) //IL_22ae: Unknown result type (might be due to invalid IL or missing references) //IL_22b4: Unknown result type (might be due to invalid IL or missing references) //IL_22be: Unknown result type (might be due to invalid IL or missing references) //IL_22c4: Unknown result type (might be due to invalid IL or missing references) //IL_22c9: Unknown result type (might be due to invalid IL or missing references) //IL_22cf: Unknown result type (might be due to invalid IL or missing references) //IL_22d4: Unknown result type (might be due to invalid IL or missing references) //IL_22d9: Unknown result type (might be due to invalid IL or missing references) //IL_22df: Unknown result type (might be due to invalid IL or missing references) //IL_22e9: Unknown result type (might be due to invalid IL or missing references) //IL_22ee: Unknown result type (might be due to invalid IL or missing references) //IL_22f9: Unknown result type (might be due to invalid IL or missing references) //IL_22ff: Unknown result type (might be due to invalid IL or missing references) //IL_2304: Unknown result type (might be due to invalid IL or missing references) //IL_230a: Unknown result type (might be due to invalid IL or missing references) //IL_230f: Unknown result type (might be due to invalid IL or missing references) //IL_2315: Unknown result type (might be due to invalid IL or missing references) //IL_231f: Unknown result type (might be due to invalid IL or missing references) //IL_2324: Unknown result type (might be due to invalid IL or missing references) //IL_232a: Unknown result type (might be due to invalid IL or missing references) //IL_2334: Unknown result type (might be due to invalid IL or missing references) //IL_233a: Unknown result type (might be due to invalid IL or missing references) //IL_233f: Unknown result type (might be due to invalid IL or missing references) //IL_2345: Unknown result type (might be due to invalid IL or missing references) //IL_234a: Unknown result type (might be due to invalid IL or missing references) //IL_234f: Unknown result type (might be due to invalid IL or missing references) //IL_2355: Unknown result type (might be due to invalid IL or missing references) //IL_235f: Unknown result type (might be due to invalid IL or missing references) //IL_2364: Unknown result type (might be due to invalid IL or missing references) //IL_2370: Unknown result type (might be due to invalid IL or missing references) //IL_21e4: Unknown result type (might be due to invalid IL or missing references) //IL_21e9: Unknown result type (might be due to invalid IL or missing references) //IL_2078: Unknown result type (might be due to invalid IL or missing references) //IL_207d: Unknown result type (might be due to invalid IL or missing references) //IL_208c: Unknown result type (might be due to invalid IL or missing references) //IL_2091: Unknown result type (might be due to invalid IL or missing references) //IL_20ad: Unknown result type (might be due to invalid IL or missing references) //IL_20b2: Unknown result type (might be due to invalid IL or missing references) //IL_20bb: Unknown result type (might be due to invalid IL or missing references) //IL_20c6: Unknown result type (might be due to invalid IL or missing references) //IL_20d7: Unknown result type (might be due to invalid IL or missing references) //IL_20dc: Unknown result type (might be due to invalid IL or missing references) //IL_20e1: Unknown result type (might be due to invalid IL or missing references) //IL_15e8: Unknown result type (might be due to invalid IL or missing references) //IL_15ee: Unknown result type (might be due to invalid IL or missing references) //IL_15f3: Unknown result type (might be due to invalid IL or missing references) //IL_15f9: Unknown result type (might be due to invalid IL or missing references) //IL_15fe: Unknown result type (might be due to invalid IL or missing references) //IL_1604: Unknown result type (might be due to invalid IL or missing references) //IL_160e: Unknown result type (might be due to invalid IL or missing references) //IL_1613: Unknown result type (might be due to invalid IL or missing references) //IL_1619: Unknown result type (might be due to invalid IL or missing references) //IL_1623: Unknown result type (might be due to invalid IL or missing references) //IL_1629: Unknown result type (might be due to invalid IL or missing references) //IL_162e: Unknown result type (might be due to invalid IL or missing references) //IL_1634: Unknown result type (might be due to invalid IL or missing references) //IL_1639: Unknown result type (might be due to invalid IL or missing references) //IL_163e: Unknown result type (might be due to invalid IL or missing references) //IL_1644: Unknown result type (might be due to invalid IL or missing references) //IL_164e: Unknown result type (might be due to invalid IL or missing references) //IL_1653: Unknown result type (might be due to invalid IL or missing references) //IL_165e: Unknown result type (might be due to invalid IL or missing references) //IL_1664: Unknown result type (might be due to invalid IL or missing references) //IL_1669: Unknown result type (might be due to invalid IL or missing references) //IL_166f: Unknown result type (might be due to invalid IL or missing references) //IL_1674: Unknown result type (might be due to invalid IL or missing references) //IL_167a: Unknown result type (might be due to invalid IL or missing references) //IL_1684: Unknown result type (might be due to invalid IL or missing references) //IL_1689: Unknown result type (might be due to invalid IL or missing references) //IL_168f: Unknown result type (might be due to invalid IL or missing references) //IL_1699: Unknown result type (might be due to invalid IL or missing references) //IL_169f: Unknown result type (might be due to invalid IL or missing references) //IL_16a4: Unknown result type (might be due to invalid IL or missing references) //IL_16aa: Unknown result type (might be due to invalid IL or missing references) //IL_16af: Unknown result type (might be due to invalid IL or missing references) //IL_16b4: Unknown result type (might be due to invalid IL or missing references) //IL_16ba: Unknown result type (might be due to invalid IL or missing references) //IL_16c4: Unknown result type (might be due to invalid IL or missing references) //IL_16c9: Unknown result type (might be due to invalid IL or missing references) //IL_16d5: Unknown result type (might be due to invalid IL or missing references) //IL_1534: Unknown result type (might be due to invalid IL or missing references) //IL_1539: Unknown result type (might be due to invalid IL or missing references) //IL_13b3: Unknown result type (might be due to invalid IL or missing references) //IL_13b8: Unknown result type (might be due to invalid IL or missing references) //IL_13c7: Unknown result type (might be due to invalid IL or missing references) //IL_13cc: Unknown result type (might be due to invalid IL or missing references) //IL_13e8: Unknown result type (might be due to invalid IL or missing references) //IL_13ed: Unknown result type (might be due to invalid IL or missing references) //IL_13f6: Unknown result type (might be due to invalid IL or missing references) //IL_1401: Unknown result type (might be due to invalid IL or missing references) //IL_1412: Unknown result type (might be due to invalid IL or missing references) //IL_1417: Unknown result type (might be due to invalid IL or missing references) //IL_141c: Unknown result type (might be due to invalid IL or missing references) //IL_312d: Unknown result type (might be due to invalid IL or missing references) //IL_3133: Unknown result type (might be due to invalid IL or missing references) //IL_3138: Unknown result type (might be due to invalid IL or missing references) //IL_313e: Unknown result type (might be due to invalid IL or missing references) //IL_3143: Unknown result type (might be due to invalid IL or missing references) //IL_3149: Unknown result type (might be due to invalid IL or missing references) //IL_3153: Unknown result type (might be due to invalid IL or missing references) //IL_3159: Unknown result type (might be due to invalid IL or missing references) //IL_315e: Unknown result type (might be due to invalid IL or missing references) //IL_3164: Unknown result type (might be due to invalid IL or missing references) //IL_3169: Unknown result type (might be due to invalid IL or missing references) //IL_316e: Unknown result type (might be due to invalid IL or missing references) //IL_3179: Unknown result type (might be due to invalid IL or missing references) //IL_317f: Unknown result type (might be due to invalid IL or missing references) //IL_3184: Unknown result type (might be due to invalid IL or missing references) //IL_318a: Unknown result type (might be due to invalid IL or missing references) //IL_318f: Unknown result type (might be due to invalid IL or missing references) //IL_3195: Unknown result type (might be due to invalid IL or missing references) //IL_319f: Unknown result type (might be due to invalid IL or missing references) //IL_31a4: Unknown result type (might be due to invalid IL or missing references) //IL_31aa: Unknown result type (might be due to invalid IL or missing references) //IL_31b4: Unknown result type (might be due to invalid IL or missing references) //IL_31ba: Unknown result type (might be due to invalid IL or missing references) //IL_31bf: Unknown result type (might be due to invalid IL or missing references) //IL_31c5: Unknown result type (might be due to invalid IL or missing references) //IL_31ca: Unknown result type (might be due to invalid IL or missing references) //IL_31cf: Unknown result type (might be due to invalid IL or missing references) //IL_31db: Unknown result type (might be due to invalid IL or missing references) //IL_243e: Unknown result type (might be due to invalid IL or missing references) //IL_2444: Unknown result type (might be due to invalid IL or missing references) //IL_2449: Unknown result type (might be due to invalid IL or missing references) //IL_244f: Unknown result type (might be due to invalid IL or missing references) //IL_2454: Unknown result type (might be due to invalid IL or missing references) //IL_245a: Unknown result type (might be due to invalid IL or missing references) //IL_2464: Unknown result type (might be due to invalid IL or missing references) //IL_246a: Unknown result type (might be due to invalid IL or missing references) //IL_246f: Unknown result type (might be due to invalid IL or missing references) //IL_2475: Unknown result type (might be due to invalid IL or missing references) //IL_247a: Unknown result type (might be due to invalid IL or missing references) //IL_247f: Unknown result type (might be due to invalid IL or missing references) //IL_2485: Unknown result type (might be due to invalid IL or missing references) //IL_248f: Unknown result type (might be due to invalid IL or missing references) //IL_2494: Unknown result type (might be due to invalid IL or missing references) //IL_249f: Unknown result type (might be due to invalid IL or missing references) //IL_24a5: Unknown result type (might be due to invalid IL or missing references) //IL_24aa: Unknown result type (might be due to invalid IL or missing references) //IL_24b0: Unknown result type (might be due to invalid IL or missing references) //IL_24b5: Unknown result type (might be due to invalid IL or missing references) //IL_24bb: Unknown result type (might be due to invalid IL or missing references) //IL_24c5: Unknown result type (might be due to invalid IL or missing references) //IL_24ca: Unknown result type (might be due to invalid IL or missing references) //IL_24d0: Unknown result type (might be due to invalid IL or missing references) //IL_24da: Unknown result type (might be due to invalid IL or missing references) //IL_24e0: Unknown result type (might be due to invalid IL or missing references) //IL_24e5: Unknown result type (might be due to invalid IL or missing references) //IL_24eb: Unknown result type (might be due to invalid IL or missing references) //IL_24f0: Unknown result type (might be due to invalid IL or missing references) //IL_24f5: Unknown result type (might be due to invalid IL or missing references) //IL_24fb: Unknown result type (might be due to invalid IL or missing references) //IL_2505: Unknown result type (might be due to invalid IL or missing references) //IL_250a: Unknown result type (might be due to invalid IL or missing references) //IL_2516: Unknown result type (might be due to invalid IL or missing references) //IL_238a: Unknown result type (might be due to invalid IL or missing references) //IL_238f: Unknown result type (might be due to invalid IL or missing references) //IL_221e: Unknown result type (might be due to invalid IL or missing references) //IL_2223: Unknown result type (might be due to invalid IL or missing references) //IL_2232: Unknown result type (might be due to invalid IL or missing references) //IL_2237: Unknown result type (might be due to invalid IL or missing references) //IL_2253: Unknown result type (might be due to invalid IL or missing references) //IL_2258: Unknown result type (might be due to invalid IL or missing references) //IL_2261: Unknown result type (might be due to invalid IL or missing references) //IL_226c: Unknown result type (might be due to invalid IL or missing references) //IL_227d: Unknown result type (might be due to invalid IL or missing references) //IL_2282: Unknown result type (might be due to invalid IL or missing references) //IL_2287: Unknown result type (might be due to invalid IL or missing references) //IL_17a3: Unknown result type (might be due to invalid IL or missing references) //IL_17a9: Unknown result type (might be due to invalid IL or missing references) //IL_17ae: Unknown result type (might be due to invalid IL or missing references) //IL_17b4: Unknown result type (might be due to invalid IL or missing references) //IL_17b9: Unknown result type (might be due to invalid IL or missing references) //IL_17bf: Unknown result type (might be due to invalid IL or missing references) //IL_17c9: Unknown result type (might be due to invalid IL or missing references) //IL_17ce: Unknown result type (might be due to invalid IL or missing references) //IL_17d4: Unknown result type (might be due to invalid IL or missing references) //IL_17de: Unknown result type (might be due to invalid IL or missing references) //IL_17e4: Unknown result type (might be due to invalid IL or missing references) //IL_17e9: Unknown result type (might be due to invalid IL or missing references) //IL_17ef: Unknown result type (might be due to invalid IL or missing references) //IL_17f4: Unknown result type (might be due to invalid IL or missing references) //IL_17f9: Unknown result type (might be due to invalid IL or missing references) //IL_17ff: Unknown result type (might be due to invalid IL or missing references) //IL_1809: Unknown result type (might be due to invalid IL or missing references) //IL_180e: Unknown result type (might be due to invalid IL or missing references) //IL_1819: Unknown result type (might be due to invalid IL or missing references) //IL_181f: Unknown result type (might be due to invalid IL or missing references) //IL_1824: Unknown result type (might be due to invalid IL or missing references) //IL_182a: Unknown result type (might be due to invalid IL or missing references) //IL_182f: Unknown result type (might be due to invalid IL or missing references) //IL_1835: Unknown result type (might be due to invalid IL or missing references) //IL_183f: Unknown result type (might be due to invalid IL or missing references) //IL_1844: Unknown result type (might be due to invalid IL or missing references) //IL_184a: Unknown result type (might be due to invalid IL or missing references) //IL_1854: Unknown result type (might be due to invalid IL or missing references) //IL_185a: Unknown result type (might be due to invalid IL or missing references) //IL_185f: Unknown result type (might be due to invalid IL or missing references) //IL_1865: Unknown result type (might be due to invalid IL or missing references) //IL_186a: Unknown result type (might be due to invalid IL or missing references) //IL_186f: Unknown result type (might be due to invalid IL or missing references) //IL_1875: Unknown result type (might be due to invalid IL or missing references) //IL_187f: Unknown result type (might be due to invalid IL or missing references) //IL_1884: Unknown result type (might be due to invalid IL or missing references) //IL_1890: Unknown result type (might be due to invalid IL or missing references) //IL_16ef: Unknown result type (might be due to invalid IL or missing references) //IL_16f4: Unknown result type (might be due to invalid IL or missing references) //IL_156e: Unknown result type (might be due to invalid IL or missing references) //IL_1573: Unknown result type (might be due to invalid IL or missing references) //IL_1582: Unknown result type (might be due to invalid IL or missing references) //IL_1587: Unknown result type (might be due to invalid IL or missing references) //IL_15a3: Unknown result type (might be due to invalid IL or missing references) //IL_15a8: Unknown result type (might be due to invalid IL or missing references) //IL_15b1: Unknown result type (might be due to invalid IL or missing references) //IL_15bc: Unknown result type (might be due to invalid IL or missing references) //IL_15cd: Unknown result type (might be due to invalid IL or missing references) //IL_15d2: Unknown result type (might be due to invalid IL or missing references) //IL_15d7: Unknown result type (might be due to invalid IL or missing references) //IL_32a9: Unknown result type (might be due to invalid IL or missing references) //IL_32af: Unknown result type (might be due to invalid IL or missing references) //IL_32b4: Unknown result type (might be due to invalid IL or missing references) //IL_32ba: Unknown result type (might be due to invalid IL or missing references) //IL_32bf: Unknown result type (might be due to invalid IL or missing references) //IL_32c5: Unknown result type (might be due to invalid IL or missing references) //IL_32cf: Unknown result type (might be due to invalid IL or missing references) //IL_32d5: Unknown result type (might be due to invalid IL or missing references) //IL_32da: Unknown result type (might be due to invalid IL or missing references) //IL_32e0: Unknown result type (might be due to invalid IL or missing references) //IL_32e5: Unknown result type (might be due to invalid IL or missing references) //IL_32ea: Unknown result type (might be due to invalid IL or missing references) //IL_32f0: Unknown result type (might be due to invalid IL or missing references) //IL_32fa: Unknown result type (might be due to invalid IL or missing references) //IL_32ff: Unknown result type (might be due to invalid IL or missing references) //IL_330a: Unknown result type (might be due to invalid IL or missing references) //IL_3310: Unknown result type (might be due to invalid IL or missing references) //IL_3315: Unknown result type (might be due to invalid IL or missing references) //IL_331b: Unknown result type (might be due to invalid IL or missing references) //IL_3320: Unknown result type (might be due to invalid IL or missing references) //IL_3326: Unknown result type (might be due to invalid IL or missing references) //IL_3330: Unknown result type (might be due to invalid IL or missing references) //IL_3335: Unknown result type (might be due to invalid IL or missing references) //IL_333b: Unknown result type (might be due to invalid IL or missing references) //IL_3345: Unknown result type (might be due to invalid IL or missing references) //IL_334b: Unknown result type (might be due to invalid IL or missing references) //IL_3350: Unknown result type (might be due to invalid IL or missing references) //IL_3356: Unknown result type (might be due to invalid IL or missing references) //IL_335b: Unknown result type (might be due to invalid IL or missing references) //IL_3360: Unknown result type (might be due to invalid IL or missing references) //IL_3366: Unknown result type (might be due to invalid IL or missing references) //IL_3370: Unknown result type (might be due to invalid IL or missing references) //IL_3375: Unknown result type (might be due to invalid IL or missing references) //IL_3381: Unknown result type (might be due to invalid IL or missing references) //IL_31f5: Unknown result type (might be due to invalid IL or missing references) //IL_31fa: Unknown result type (might be due to invalid IL or missing references) //IL_25e4: Unknown result type (might be due to invalid IL or missing references) //IL_25ea: Unknown result type (might be due to invalid IL or missing references) //IL_25ef: Unknown result type (might be due to invalid IL or missing references) //IL_25f5: Unknown result type (might be due to invalid IL or missing references) //IL_25fa: Unknown result type (might be due to invalid IL or missing references) //IL_2600: Unknown result type (might be due to invalid IL or missing references) //IL_260a: Unknown result type (might be due to invalid IL or missing references) //IL_260f: Unknown result type (might be due to invalid IL or missing references) //IL_2615: Unknown result type (might be due to invalid IL or missing references) //IL_261f: Unknown result type (might be due to invalid IL or missing references) //IL_2625: Unknown result type (might be due to invalid IL or missing references) //IL_262a: Unknown result type (might be due to invalid IL or missing references) //IL_2630: Unknown result type (might be due to invalid IL or missing references) //IL_2635: Unknown result type (might be due to invalid IL or missing references) //IL_263a: Unknown result type (might be due to invalid IL or missing references) //IL_2640: Unknown result type (might be due to invalid IL or missing references) //IL_264a: Unknown result type (might be due to invalid IL or missing references) //IL_264f: Unknown result type (might be due to invalid IL or missing references) //IL_265a: Unknown result type (might be due to invalid IL or missing references) //IL_2660: Unknown result type (might be due to invalid IL or missing references) //IL_2665: Unknown result type (might be due to invalid IL or missing references) //IL_266b: Unknown result type (might be due to invalid IL or missing references) //IL_2670: Unknown result type (might be due to invalid IL or missing references) //IL_2676: Unknown result type (might be due to invalid IL or missing references) //IL_2680: Unknown result type (might be due to invalid IL or missing references) //IL_2685: Unknown result type (might be due to invalid IL or missing references) //IL_268b: Unknown result type (might be due to invalid IL or missing references) //IL_2695: Unknown result type (might be due to invalid IL or missing references) //IL_269b: Unknown result type (might be due to invalid IL or missing references) //IL_26a0: Unknown result type (might be due to invalid IL or missing references) //IL_26a6: Unknown result type (might be due to invalid IL or missing references) //IL_26ab: Unknown result type (might be due to invalid IL or missing references) //IL_26b0: Unknown result type (might be due to invalid IL or missing references) //IL_26b6: Unknown result type (might be due to invalid IL or missing references) //IL_26c0: Unknown result type (might be due to invalid IL or missing references) //IL_26c5: Unknown result type (might be due to invalid IL or missing references) //IL_26d1: Unknown result type (might be due to invalid IL or missing references) //IL_2530: Unknown result type (might be due to invalid IL or missing references) //IL_2535: Unknown result type (might be due to invalid IL or missing references) //IL_23c4: Unknown result type (might be due to invalid IL or missing references) //IL_23c9: Unknown result type (might be due to invalid IL or missing references) //IL_23d8: Unknown result type (might be due to invalid IL or missing references) //IL_23dd: Unknown result type (might be due to invalid IL or missing references) //IL_23f9: Unknown result type (might be due to invalid IL or missing references) //IL_23fe: Unknown result type (might be due to invalid IL or missing references) //IL_2407: Unknown result type (might be due to invalid IL or missing references) //IL_2412: Unknown result type (might be due to invalid IL or missing references) //IL_2423: Unknown result type (might be due to invalid IL or missing references) //IL_2428: Unknown result type (might be due to invalid IL or missing references) //IL_242d: Unknown result type (might be due to invalid IL or missing references) //IL_195e: Unknown result type (might be due to invalid IL or missing references) //IL_1964: Unknown result type (might be due to invalid IL or missing references) //IL_1969: Unknown result type (might be due to invalid IL or missing references) //IL_196f: Unknown result type (might be due to invalid IL or missing references) //IL_1974: Unknown result type (might be due to invalid IL or missing references) //IL_197a: Unknown result type (might be due to invalid IL or missing references) //IL_1984: Unknown result type (might be due to invalid IL or missing references) //IL_1989: Unknown result type (might be due to invalid IL or missing references) //IL_198f: Unknown result type (might be due to invalid IL or missing references) //IL_1999: Unknown result type (might be due to invalid IL or missing references) //IL_199f: Unknown result type (might be due to invalid IL or missing references) //IL_19a4: Unknown result type (might be due to invalid IL or missing references) //IL_19aa: Unknown result type (might be due to invalid IL or missing references) //IL_19af: Unknown result type (might be due to invalid IL or missing references) //IL_19b4: Unknown result type (might be due to invalid IL or missing references) //IL_19ba: Unknown result type (might be due to invalid IL or missing references) //IL_19c4: Unknown result type (might be due to invalid IL or missing references) //IL_19c9: Unknown result type (might be due to invalid IL or missing references) //IL_19d4: Unknown result type (might be due to invalid IL or missing references) //IL_19da: Unknown result type (might be due to invalid IL or missing references) //IL_19df: Unknown result type (might be due to invalid IL or missing references) //IL_19e5: Unknown result type (might be due to invalid IL or missing references) //IL_19ea: Unknown result type (might be due to invalid IL or missing references) //IL_19f0: Unknown result type (might be due to invalid IL or missing references) //IL_19fa: Unknown result type (might be due to invalid IL or missing references) //IL_19ff: Unknown result type (might be due to invalid IL or missing references) //IL_1a05: Unknown result type (might be due to invalid IL or missing references) //IL_1a0f: Unknown result type (might be due to invalid IL or missing references) //IL_1a15: Unknown result type (might be due to invalid IL or missing references) //IL_1a1a: Unknown result type (might be due to invalid IL or missing references) //IL_1a20: Unknown result type (might be due to invalid IL or missing references) //IL_1a25: Unknown result type (might be due to invalid IL or missing references) //IL_1a2a: Unknown result type (might be due to invalid IL or missing references) //IL_1a30: Unknown result type (might be due to invalid IL or missing references) //IL_1a3a: Unknown result type (might be due to invalid IL or missing references) //IL_1a3f: Unknown result type (might be due to invalid IL or missing references) //IL_1a4b: Unknown result type (might be due to invalid IL or missing references) //IL_18aa: Unknown result type (might be due to invalid IL or missing references) //IL_18af: Unknown result type (might be due to invalid IL or missing references) //IL_1729: Unknown result type (might be due to invalid IL or missing references) //IL_172e: Unknown result type (might be due to invalid IL or missing references) //IL_173d: Unknown result type (might be due to invalid IL or missing references) //IL_1742: Unknown result type (might be due to invalid IL or missing references) //IL_175e: Unknown result type (might be due to invalid IL or missing references) //IL_1763: Unknown result type (might be due to invalid IL or missing references) //IL_176c: Unknown result type (might be due to invalid IL or missing references) //IL_1777: Unknown result type (might be due to invalid IL or missing references) //IL_1788: Unknown result type (might be due to invalid IL or missing references) //IL_178d: Unknown result type (might be due to invalid IL or missing references) //IL_1792: Unknown result type (might be due to invalid IL or missing references) //IL_344f: Unknown result type (might be due to invalid IL or missing references) //IL_3455: Unknown result type (might be due to invalid IL or missing references) //IL_345a: Unknown result type (might be due to invalid IL or missing references) //IL_3460: Unknown result type (might be due to invalid IL or missing references) //IL_3465: Unknown result type (might be due to invalid IL or missing references) //IL_346b: Unknown result type (might be due to invalid IL or missing references) //IL_3475: Unknown result type (might be due to invalid IL or missing references) //IL_347b: Unknown result type (might be due to invalid IL or missing references) //IL_3480: Unknown result type (might be due to invalid IL or missing references) //IL_3486: Unknown result type (might be due to invalid IL or missing references) //IL_348b: Unknown result type (might be due to invalid IL or missing references) //IL_3490: Unknown result type (might be due to invalid IL or missing references) //IL_3496: Unknown result type (might be due to invalid IL or missing references) //IL_34a0: Unknown result type (might be due to invalid IL or missing references) //IL_34a5: Unknown result type (might be due to invalid IL or missing references) //IL_34b0: Unknown result type (might be due to invalid IL or missing references) //IL_34b6: Unknown result type (might be due to invalid IL or missing references) //IL_34bb: Unknown result type (might be due to invalid IL or missing references) //IL_34c1: Unknown result type (might be due to invalid IL or missing references) //IL_34c6: Unknown result type (might be due to invalid IL or missing references) //IL_34cc: Unknown result type (might be due to invalid IL or missing references) //IL_34d6: Unknown result type (might be due to invalid IL or missing references) //IL_34db: Unknown result type (might be due to invalid IL or missing references) //IL_34e1: Unknown result type (might be due to invalid IL or missing references) //IL_34eb: Unknown result type (might be due to invalid IL or missing references) //IL_34f1: Unknown result type (might be due to invalid IL or missing references) //IL_34f6: Unknown result type (might be due to invalid IL or missing references) //IL_34fc: Unknown result type (might be due to invalid IL or missing references) //IL_3501: Unknown result type (might be due to invalid IL or missing references) //IL_3506: Unknown result type (might be due to invalid IL or missing references) //IL_350c: Unknown result type (might be due to invalid IL or missing references) //IL_3516: Unknown result type (might be due to invalid IL or missing references) //IL_351b: Unknown result type (might be due to invalid IL or missing references) //IL_3527: Unknown result type (might be due to invalid IL or missing references) //IL_339b: Unknown result type (might be due to invalid IL or missing references) //IL_33a0: Unknown result type (might be due to invalid IL or missing references) //IL_322f: Unknown result type (might be due to invalid IL or missing references) //IL_3234: Unknown result type (might be due to invalid IL or missing references) //IL_3243: Unknown result type (might be due to invalid IL or missing references) //IL_3248: Unknown result type (might be due to invalid IL or missing references) //IL_3264: Unknown result type (might be due to invalid IL or missing references) //IL_3269: Unknown result type (might be due to invalid IL or missing references) //IL_3272: Unknown result type (might be due to invalid IL or missing references) //IL_327d: Unknown result type (might be due to invalid IL or missing references) //IL_328e: Unknown result type (might be due to invalid IL or missing references) //IL_3293: Unknown result type (might be due to invalid IL or missing references) //IL_3298: Unknown result type (might be due to invalid IL or missing references) //IL_279f: Unknown result type (might be due to invalid IL or missing references) //IL_27a5: Unknown result type (might be due to invalid IL or missing references) //IL_27aa: Unknown result type (might be due to invalid IL or missing references) //IL_27b0: Unknown result type (might be due to invalid IL or missing references) //IL_27b5: Unknown result type (might be due to invalid IL or missing references) //IL_27bb: Unknown result type (might be due to invalid IL or missing references) //IL_27c5: Unknown result type (might be due to invalid IL or missing references) //IL_27ca: Unknown result type (might be due to invalid IL or missing references) //IL_27d0: Unknown result type (might be due to invalid IL or missing references) //IL_27da: Unknown result type (might be due to invalid IL or missing references) //IL_27e0: Unknown result type (might be due to invalid IL or missing references) //IL_27e5: Unknown result type (might be due to invalid IL or missing references) //IL_27eb: Unknown result type (might be due to invalid IL or missing references) //IL_27f0: Unknown result type (might be due to invalid IL or missing references) //IL_27f5: Unknown result type (might be due to invalid IL or missing references) //IL_27fb: Unknown result type (might be due to invalid IL or missing references) //IL_2805: Unknown result type (might be due to invalid IL or missing references) //IL_280a: Unknown result type (might be due to invalid IL or missing references) //IL_2815: Unknown result type (might be due to invalid IL or missing references) //IL_281b: Unknown result type (might be due to invalid IL or missing references) //IL_2820: Unknown result type (might be due to invalid IL or missing references) //IL_2826: Unknown result type (might be due to invalid IL or missing references) //IL_282b: Unknown result type (might be due to invalid IL or missing references) //IL_2831: Unknown result type (might be due to invalid IL or missing references) //IL_283b: Unknown result type (might be due to invalid IL or missing references) //IL_2840: Unknown result type (might be due to invalid IL or missing references) //IL_2846: Unknown result type (might be due to invalid IL or missing references) //IL_2850: Unknown result type (might be due to invalid IL or missing references) //IL_2856: Unknown result type (might be due to invalid IL or missing references) //IL_285b: Unknown result type (might be due to invalid IL or missing references) //IL_2861: Unknown result type (might be due to invalid IL or missing references) //IL_2866: Unknown result type (might be due to invalid IL or missing references) //IL_286b: Unknown result type (might be due to invalid IL or missing references) //IL_2871: Unknown result type (might be due to invalid IL or missing references) //IL_287b: Unknown result type (might be due to invalid IL or missing references) //IL_2880: Unknown result type (might be due to invalid IL or missing references) //IL_288c: Unknown result type (might be due to invalid IL or missing references) //IL_26eb: Unknown result type (might be due to invalid IL or missing references) //IL_26f0: Unknown result type (might be due to invalid IL or missing references) //IL_256a: Unknown result type (might be due to invalid IL or missing references) //IL_256f: Unknown result type (might be due to invalid IL or missing references) //IL_257e: Unknown result type (might be due to invalid IL or missing references) //IL_2583: Unknown result type (might be due to invalid IL or missing references) //IL_259f: Unknown result type (might be due to invalid IL or missing references) //IL_25a4: Unknown result type (might be due to invalid IL or missing references) //IL_25ad: Unknown result type (might be due to invalid IL or missing references) //IL_25b8: Unknown result type (might be due to invalid IL or missing references) //IL_25c9: Unknown result type (might be due to invalid IL or missing references) //IL_25ce: Unknown result type (might be due to invalid IL or missing references) //IL_25d3: Unknown result type (might be due to invalid IL or missing references) //IL_1b1b: Unknown result type (might be due to invalid IL or missing references) //IL_1b20: Unknown result type (might be due to invalid IL or missing references) //IL_1b2f: Unknown result type (might be due to invalid IL or missing references) //IL_1b34: Unknown result type (might be due to invalid IL or missing references) //IL_1b4b: Unknown result type (might be due to invalid IL or missing references) //IL_1b50: Unknown result type (might be due to invalid IL or missing references) //IL_1b6c: Unknown result type (might be due to invalid IL or missing references) //IL_1b71: Unknown result type (might be due to invalid IL or missing references) //IL_1b80: Unknown result type (might be due to invalid IL or missing references) //IL_1b85: Unknown result type (might be due to invalid IL or missing references) //IL_1b96: Unknown result type (might be due to invalid IL or missing references) //IL_1ba1: Unknown result type (might be due to invalid IL or missing references) //IL_1ba6: Unknown result type (might be due to invalid IL or missing references) //IL_1bcf: Unknown result type (might be due to invalid IL or missing references) //IL_1bd4: Unknown result type (might be due to invalid IL or missing references) //IL_1beb: Unknown result type (might be due to invalid IL or missing references) //IL_1bf0: Unknown result type (might be due to invalid IL or missing references) //IL_1bf5: Unknown result type (might be due to invalid IL or missing references) //IL_1a65: Unknown result type (might be due to invalid IL or missing references) //IL_1a6a: Unknown result type (might be due to invalid IL or missing references) //IL_18e4: Unknown result type (might be due to invalid IL or missing references) //IL_18e9: Unknown result type (might be due to invalid IL or missing references) //IL_18f8: Unknown result type (might be due to invalid IL or missing references) //IL_18fd: Unknown result type (might be due to invalid IL or missing references) //IL_1919: Unknown result type (might be due to invalid IL or missing references) //IL_191e: Unknown result type (might be due to invalid IL or missing references) //IL_1927: Unknown result type (might be due to invalid IL or missing references) //IL_1932: Unknown result type (might be due to invalid IL or missing references) //IL_1943: Unknown result type (might be due to invalid IL or missing references) //IL_1948: Unknown result type (might be due to invalid IL or missing references) //IL_194d: Unknown result type (might be due to invalid IL or missing references) //IL_35f5: Unknown result type (might be due to invalid IL or missing references) //IL_35fb: Unknown result type (might be due to invalid IL or missing references) //IL_3600: Unknown result type (might be due to invalid IL or missing references) //IL_3606: Unknown result type (might be due to invalid IL or missing references) //IL_360b: Unknown result type (might be due to invalid IL or missing references) //IL_3611: Unknown result type (might be due to invalid IL or missing references) //IL_361b: Unknown result type (might be due to invalid IL or missing references) //IL_3621: Unknown result type (might be due to invalid IL or missing references) //IL_3626: Unknown result type (might be due to invalid IL or missing references) //IL_362c: Unknown result type (might be due to invalid IL or missing references) //IL_3631: Unknown result type (might be due to invalid IL or missing references) //IL_3636: Unknown result type (might be due to invalid IL or missing references) //IL_363c: Unknown result type (might be due to invalid IL or missing references) //IL_3646: Unknown result type (might be due to invalid IL or missing references) //IL_364b: Unknown result type (might be due to invalid IL or missing references) //IL_3656: Unknown result type (might be due to invalid IL or missing references) //IL_365c: Unknown result type (might be due to invalid IL or missing references) //IL_3661: Unknown result type (might be due to invalid IL or missing references) //IL_3667: Unknown result type (might be due to invalid IL or missing references) //IL_366c: Unknown result type (might be due to invalid IL or missing references) //IL_3672: Unknown result type (might be due to invalid IL or missing references) //IL_367c: Unknown result type (might be due to invalid IL or missing references) //IL_3681: Unknown result type (might be due to invalid IL or missing references) //IL_3687: Unknown result type (might be due to invalid IL or missing references) //IL_3691: Unknown result type (might be due to invalid IL or missing references) //IL_3697: Unknown result type (might be due to invalid IL or missing references) //IL_369c: Unknown result type (might be due to invalid IL or missing references) //IL_36a2: Unknown result type (might be due to invalid IL or missing references) //IL_36a7: Unknown result type (might be due to invalid IL or missing references) //IL_36ac: Unknown result type (might be due to invalid IL or missing references) //IL_36b2: Unknown result type (might be due to invalid IL or missing references) //IL_36bc: Unknown result type (might be due to invalid IL or missing references) //IL_36c1: Unknown result type (might be due to invalid IL or missing references) //IL_36cd: Unknown result type (might be due to invalid IL or missing references) //IL_3541: Unknown result type (might be due to invalid IL or missing references) //IL_3546: Unknown result type (might be due to invalid IL or missing references) //IL_33d5: Unknown result type (might be due to invalid IL or missing references) //IL_33da: Unknown result type (might be due to invalid IL or missing references) //IL_33e9: Unknown result type (might be due to invalid IL or missing references) //IL_33ee: Unknown result type (might be due to invalid IL or missing references) //IL_340a: Unknown result type (might be due to invalid IL or missing references) //IL_340f: Unknown result type (might be due to invalid IL or missing references) //IL_3418: Unknown result type (might be due to invalid IL or missing references) //IL_3423: Unknown result type (might be due to invalid IL or missing references) //IL_3434: Unknown result type (might be due to invalid IL or missing references) //IL_3439: Unknown result type (might be due to invalid IL or missing references) //IL_343e: Unknown result type (might be due to invalid IL or missing references) //IL_295a: Unknown result type (might be due to invalid IL or missing references) //IL_2960: Unknown result type (might be due to invalid IL or missing references) //IL_2965: Unknown result type (might be due to invalid IL or missing references) //IL_296b: Unknown result type (might be due to invalid IL or missing references) //IL_2970: Unknown result type (might be due to invalid IL or missing references) //IL_2976: Unknown result type (might be due to invalid IL or missing references) //IL_2980: Unknown result type (might be due to invalid IL or missing references) //IL_2985: Unknown result type (might be due to invalid IL or missing references) //IL_298b: Unknown result type (might be due to invalid IL or missing references) //IL_2995: Unknown result type (might be due to invalid IL or missing references) //IL_299b: Unknown result type (might be due to invalid IL or missing references) //IL_29a0: Unknown result type (might be due to invalid IL or missing references) //IL_29a6: Unknown result type (might be due to invalid IL or missing references) //IL_29ab: Unknown result type (might be due to invalid IL or missing references) //IL_29b0: Unknown result type (might be due to invalid IL or missing references) //IL_29b6: Unknown result type (might be due to invalid IL or missing references) //IL_29c0: Unknown result type (might be due to invalid IL or missing references) //IL_29c5: Unknown result type (might be due to invalid IL or missing references) //IL_29d0: Unknown result type (might be due to invalid IL or missing references) //IL_29d6: Unknown result type (might be due to invalid IL or missing references) //IL_29db: Unknown result type (might be due to invalid IL or missing references) //IL_29e1: Unknown result type (might be due to invalid IL or missing references) //IL_29e6: Unknown result type (might be due to invalid IL or missing references) //IL_29ec: Unknown result type (might be due to invalid IL or missing references) //IL_29f6: Unknown result type (might be due to invalid IL or missing references) //IL_29fb: Unknown result type (might be due to invalid IL or missing references) //IL_2a01: Unknown result type (might be due to invalid IL or missing references) //IL_2a0b: Unknown result type (might be due to invalid IL or missing references) //IL_2a11: Unknown result type (might be due to invalid IL or missing references) //IL_2a16: Unknown result type (might be due to invalid IL or missing references) //IL_2a1c: Unknown result type (might be due to invalid IL or missing references) //IL_2a21: Unknown result type (might be due to invalid IL or missing references) //IL_2a26: Unknown result type (might be due to invalid IL or missing references) //IL_2a2c: Unknown result type (might be due to invalid IL or missing references) //IL_2a36: Unknown result type (might be due to invalid IL or missing references) //IL_2a3b: Unknown result type (might be due to invalid IL or missing references) //IL_2a47: Unknown result type (might be due to invalid IL or missing references) //IL_28a6: Unknown result type (might be due to invalid IL or missing references) //IL_28ab: Unknown result type (might be due to invalid IL or missing references) //IL_2725: Unknown result type (might be due to invalid IL or missing references) //IL_272a: Unknown result type (might be due to invalid IL or missing references) //IL_2739: Unknown result type (might be due to invalid IL or missing references) //IL_273e: Unknown result type (might be due to invalid IL or missing references) //IL_275a: Unknown result type (might be due to invalid IL or missing references) //IL_275f: Unknown result type (might be due to invalid IL or missing references) //IL_2768: Unknown result type (might be due to invalid IL or missing references) //IL_2773: Unknown result type (might be due to invalid IL or missing references) //IL_2784: Unknown result type (might be due to invalid IL or missing references) //IL_2789: Unknown result type (might be due to invalid IL or missing references) //IL_278e: Unknown result type (might be due to invalid IL or missing references) //IL_1a9f: Unknown result type (might be due to invalid IL or missing references) //IL_1aa4: Unknown result type (might be due to invalid IL or missing references) //IL_1ab3: Unknown result type (might be due to invalid IL or missing references) //IL_1ab8: Unknown result type (might be due to invalid IL or missing references) //IL_1ad4: Unknown result type (might be due to invalid IL or missing references) //IL_1ad9: Unknown result type (might be due to invalid IL or missing references) //IL_1ae2: Unknown result type (might be due to invalid IL or missing references) //IL_1aed: Unknown result type (might be due to invalid IL or missing references) //IL_1afe: Unknown result type (might be due to invalid IL or missing references) //IL_1b03: Unknown result type (might be due to invalid IL or missing references) //IL_1b08: Unknown result type (might be due to invalid IL or missing references) //IL_379b: Unknown result type (might be due to invalid IL or missing references) //IL_37a1: Unknown result type (might be due to invalid IL or missing references) //IL_37a6: Unknown result type (might be due to invalid IL or missing references) //IL_37ac: Unknown result type (might be due to invalid IL or missing references) //IL_37b1: Unknown result type (might be due to invalid IL or missing references) //IL_37b7: Unknown result type (might be due to invalid IL or missing references) //IL_37c1: Unknown result type (might be due to invalid IL or missing references) //IL_37c6: Unknown result type (might be due to invalid IL or missing references) //IL_37cc: Unknown result type (might be due to invalid IL or missing references) //IL_37d6: Unknown result type (might be due to invalid IL or missing references) //IL_37dc: Unknown result type (might be due to invalid IL or missing references) //IL_37e1: Unknown result type (might be due to invalid IL or missing references) //IL_37e7: Unknown result type (might be due to invalid IL or missing references) //IL_37ec: Unknown result type (might be due to invalid IL or missing references) //IL_37f1: Unknown result type (might be due to invalid IL or missing references) //IL_37f7: Unknown result type (might be due to invalid IL or missing references) //IL_3801: Unknown result type (might be due to invalid IL or missing references) //IL_3806: Unknown result type (might be due to invalid IL or missing references) //IL_3811: Unknown result type (might be due to invalid IL or missing references) //IL_3817: Unknown result type (might be due to invalid IL or missing references) //IL_381c: Unknown result type (might be due to invalid IL or missing references) //IL_3822: Unknown result type (might be due to invalid IL or missing references) //IL_3827: Unknown result type (might be due to invalid IL or missing references) //IL_382d: Unknown result type (might be due to invalid IL or missing references) //IL_3837: Unknown result type (might be due to invalid IL or missing references) //IL_383c: Unknown result type (might be due to invalid IL or missing references) //IL_3842: Unknown result type (might be due to invalid IL or missing references) //IL_384c: Unknown result type (might be due to invalid IL or missing references) //IL_3852: Unknown result type (might be due to invalid IL or missing references) //IL_3857: Unknown result type (might be due to invalid IL or missing references) //IL_385d: Unknown result type (might be due to invalid IL or missing references) //IL_3862: Unknown result type (might be due to invalid IL or missing references) //IL_3867: Unknown result type (might be due to invalid IL or missing references) //IL_386d: Unknown result type (might be due to invalid IL or missing references) //IL_3877: Unknown result type (might be due to invalid IL or missing references) //IL_387c: Unknown result type (might be due to invalid IL or missing references) //IL_3888: Unknown result type (might be due to invalid IL or missing references) //IL_36e7: Unknown result type (might be due to invalid IL or missing references) //IL_36ec: Unknown result type (might be due to invalid IL or missing references) //IL_357b: Unknown result type (might be due to invalid IL or missing references) //IL_3580: Unknown result type (might be due to invalid IL or missing references) //IL_358f: Unknown result type (might be due to invalid IL or missing references) //IL_3594: Unknown result type (might be due to invalid IL or missing references) //IL_35b0: Unknown result type (might be due to invalid IL or missing references) //IL_35b5: Unknown result type (might be due to invalid IL or missing references) //IL_35be: Unknown result type (might be due to invalid IL or missing references) //IL_35c9: Unknown result type (might be due to invalid IL or missing references) //IL_35da: Unknown result type (might be due to invalid IL or missing references) //IL_35df: Unknown result type (might be due to invalid IL or missing references) //IL_35e4: Unknown result type (might be due to invalid IL or missing references) //IL_2b15: Unknown result type (might be due to invalid IL or missing references) //IL_2b1b: Unknown result type (might be due to invalid IL or missing references) //IL_2b20: Unknown result type (might be due to invalid IL or missing references) //IL_2b26: Unknown result type (might be due to invalid IL or missing references) //IL_2b2b: Unknown result type (might be due to invalid IL or missing references) //IL_2b31: Unknown result type (might be due to invalid IL or missing references) //IL_2b3b: Unknown result type (might be due to invalid IL or missing references) //IL_2b40: Unknown result type (might be due to invalid IL or missing references) //IL_2b46: Unknown result type (might be due to invalid IL or missing references) //IL_2b50: Unknown result type (might be due to invalid IL or missing references) //IL_2b56: Unknown result type (might be due to invalid IL or missing references) //IL_2b5b: Unknown result type (might be due to invalid IL or missing references) //IL_2b61: Unknown result type (might be due to invalid IL or missing references) //IL_2b66: Unknown result type (might be due to invalid IL or missing references) //IL_2b6b: Unknown result type (might be due to invalid IL or missing references) //IL_2b71: Unknown result type (might be due to invalid IL or missing references) //IL_2b7b: Unknown result type (might be due to invalid IL or missing references) //IL_2b80: Unknown result type (might be due to invalid IL or missing references) //IL_2b8b: Unknown result type (might be due to invalid IL or missing references) //IL_2b91: Unknown result type (might be due to invalid IL or missing references) //IL_2b96: Unknown result type (might be due to invalid IL or missing references) //IL_2b9c: Unknown result type (might be due to invalid IL or missing references) //IL_2ba1: Unknown result type (might be due to invalid IL or missing references) //IL_2ba7: Unknown result type (might be due to invalid IL or missing references) //IL_2bb1: Unknown result type (might be due to invalid IL or missing references) //IL_2bb6: Unknown result type (might be due to invalid IL or missing references) //IL_2bbc: Unknown result type (might be due to invalid IL or missing references) //IL_2bc6: Unknown result type (might be due to invalid IL or missing references) //IL_2bcc: Unknown result type (might be due to invalid IL or missing references) //IL_2bd1: Unknown result type (might be due to invalid IL or missing references) //IL_2bd7: Unknown result type (might be due to invalid IL or missing references) //IL_2bdc: Unknown result type (might be due to invalid IL or missing references) //IL_2be1: Unknown result type (might be due to invalid IL or missing references) //IL_2be7: Unknown result type (might be due to invalid IL or missing references) //IL_2bf1: Unknown result type (might be due to invalid IL or missing references) //IL_2bf6: Unknown result type (might be due to invalid IL or missing references) //IL_2c02: Unknown result type (might be due to invalid IL or missing references) //IL_2a61: Unknown result type (might be due to invalid IL or missing references) //IL_2a66: Unknown result type (might be due to invalid IL or missing references) //IL_28e0: Unknown result type (might be due to invalid IL or missing references) //IL_28e5: Unknown result type (might be due to invalid IL or missing references) //IL_28f4: Unknown result type (might be due to invalid IL or missing references) //IL_28f9: Unknown result type (might be due to invalid IL or missing references) //IL_2915: Unknown result type (might be due to invalid IL or missing references) //IL_291a: Unknown result type (might be due to invalid IL or missing references) //IL_2923: Unknown result type (might be due to invalid IL or missing references) //IL_292e: Unknown result type (might be due to invalid IL or missing references) //IL_293f: Unknown result type (might be due to invalid IL or missing references) //IL_2944: Unknown result type (might be due to invalid IL or missing references) //IL_2949: Unknown result type (might be due to invalid IL or missing references) //IL_3956: Unknown result type (might be due to invalid IL or missing references) //IL_395c: Unknown result type (might be due to invalid IL or missing references) //IL_3961: Unknown result type (might be due to invalid IL or missing references) //IL_3967: Unknown result type (might be due to invalid IL or missing references) //IL_396c: Unknown result type (might be due to invalid IL or missing references) //IL_3972: Unknown result type (might be due to invalid IL or missing references) //IL_397c: Unknown result type (might be due to invalid IL or missing references) //IL_3981: Unknown result type (might be due to invalid IL or missing references) //IL_3987: Unknown result type (might be due to invalid IL or missing references) //IL_3991: Unknown result type (might be due to invalid IL or missing references) //IL_3997: Unknown result type (might be due to invalid IL or missing references) //IL_399c: Unknown result type (might be due to invalid IL or missing references) //IL_39a2: Unknown result type (might be due to invalid IL or missing references) //IL_39a7: Unknown result type (might be due to invalid IL or missing references) //IL_39ac: Unknown result type (might be due to invalid IL or missing references) //IL_39b2: Unknown result type (might be due to invalid IL or missing references) //IL_39bc: Unknown result type (might be due to invalid IL or missing references) //IL_39c1: Unknown result type (might be due to invalid IL or missing references) //IL_39cc: Unknown result type (might be due to invalid IL or missing references) //IL_39d2: Unknown result type (might be due to invalid IL or missing references) //IL_39d7: Unknown result type (might be due to invalid IL or missing references) //IL_39dd: Unknown result type (might be due to invalid IL or missing references) //IL_39e2: Unknown result type (might be due to invalid IL or missing references) //IL_39e8: Unknown result type (might be due to invalid IL or missing references) //IL_39f2: Unknown result type (might be due to invalid IL or missing references) //IL_39f7: Unknown result type (might be due to invalid IL or missing references) //IL_39fd: Unknown result type (might be due to invalid IL or missing references) //IL_3a07: Unknown result type (might be due to invalid IL or missing references) //IL_3a0d: Unknown result type (might be due to invalid IL or missing references) //IL_3a12: Unknown result type (might be due to invalid IL or missing references) //IL_3a18: Unknown result type (might be due to invalid IL or missing references) //IL_3a1d: Unknown result type (might be due to invalid IL or missing references) //IL_3a22: Unknown result type (might be due to invalid IL or missing references) //IL_3a28: Unknown result type (might be due to invalid IL or missing references) //IL_3a32: Unknown result type (might be due to invalid IL or missing references) //IL_3a37: Unknown result type (might be due to invalid IL or missing references) //IL_3a43: Unknown result type (might be due to invalid IL or missing references) //IL_38a2: Unknown result type (might be due to invalid IL or missing references) //IL_38a7: Unknown result type (might be due to invalid IL or missing references) //IL_3721: Unknown result type (might be due to invalid IL or missing references) //IL_3726: Unknown result type (might be due to invalid IL or missing references) //IL_3735: Unknown result type (might be due to invalid IL or missing references) //IL_373a: Unknown result type (might be due to invalid IL or missing references) //IL_3756: Unknown result type (might be due to invalid IL or missing references) //IL_375b: Unknown result type (might be due to invalid IL or missing references) //IL_3764: Unknown result type (might be due to invalid IL or missing references) //IL_376f: Unknown result type (might be due to invalid IL or missing references) //IL_3780: Unknown result type (might be due to invalid IL or missing references) //IL_3785: Unknown result type (might be due to invalid IL or missing references) //IL_378a: Unknown result type (might be due to invalid IL or missing references) //IL_2cd2: Unknown result type (might be due to invalid IL or missing references) //IL_2cd7: Unknown result type (might be due to invalid IL or missing references) //IL_2ce6: Unknown result type (might be due to invalid IL or missing references) //IL_2ceb: Unknown result type (might be due to invalid IL or missing references) //IL_2d02: Unknown result type (might be due to invalid IL or missing references) //IL_2d07: Unknown result type (might be due to invalid IL or missing references) //IL_2d23: Unknown result type (might be due to invalid IL or missing references) //IL_2d28: Unknown result type (might be due to invalid IL or missing references) //IL_2d37: Unknown result type (might be due to invalid IL or missing references) //IL_2d3c: Unknown result type (might be due to invalid IL or missing references) //IL_2d4d: Unknown result type (might be due to invalid IL or missing references) //IL_2d58: Unknown result type (might be due to invalid IL or missing references) //IL_2d5d: Unknown result type (might be due to invalid IL or missing references) //IL_2d86: Unknown result type (might be due to invalid IL or missing references) //IL_2d8b: Unknown result type (might be due to invalid IL or missing references) //IL_2da2: Unknown result type (might be due to invalid IL or missing references) //IL_2da7: Unknown result type (might be due to invalid IL or missing references) //IL_2dac: Unknown result type (might be due to invalid IL or missing references) //IL_2c1c: Unknown result type (might be due to invalid IL or missing references) //IL_2c21: Unknown result type (might be due to invalid IL or missing references) //IL_2a9b: Unknown result type (might be due to invalid IL or missing references) //IL_2aa0: Unknown result type (might be due to invalid IL or missing references) //IL_2aaf: Unknown result type (might be due to invalid IL or missing references) //IL_2ab4: Unknown result type (might be due to invalid IL or missing references) //IL_2ad0: Unknown result type (might be due to invalid IL or missing references) //IL_2ad5: Unknown result type (might be due to invalid IL or missing references) //IL_2ade: Unknown result type (might be due to invalid IL or missing references) //IL_2ae9: Unknown result type (might be due to invalid IL or missing references) //IL_2afa: Unknown result type (might be due to invalid IL or missing references) //IL_2aff: Unknown result type (might be due to invalid IL or missing references) //IL_2b04: Unknown result type (might be due to invalid IL or missing references) //IL_3b11: Unknown result type (might be due to invalid IL or missing references) //IL_3b17: Unknown result type (might be due to invalid IL or missing references) //IL_3b1c: Unknown result type (might be due to invalid IL or missing references) //IL_3b22: Unknown result type (might be due to invalid IL or missing references) //IL_3b27: Unknown result type (might be due to invalid IL or missing references) //IL_3b2d: Unknown result type (might be due to invalid IL or missing references) //IL_3b37: Unknown result type (might be due to invalid IL or missing references) //IL_3b3c: Unknown result type (might be due to invalid IL or missing references) //IL_3b42: Unknown result type (might be due to invalid IL or missing references) //IL_3b4c: Unknown result type (might be due to invalid IL or missing references) //IL_3b52: Unknown result type (might be due to invalid IL or missing references) //IL_3b57: Unknown result type (might be due to invalid IL or missing references) //IL_3b5d: Unknown result type (might be due to invalid IL or missing references) //IL_3b62: Unknown result type (might be due to invalid IL or missing references) //IL_3b67: Unknown result type (might be due to invalid IL or missing references) //IL_3b6d: Unknown result type (might be due to invalid IL or missing references) //IL_3b77: Unknown result type (might be due to invalid IL or missing references) //IL_3b7c: Unknown result type (might be due to invalid IL or missing references) //IL_3b87: Unknown result type (might be due to invalid IL or missing references) //IL_3b8d: Unknown result type (might be due to invalid IL or missing references) //IL_3b92: Unknown result type (might be due to invalid IL or missing references) //IL_3b98: Unknown result type (might be due to invalid IL or missing references) //IL_3b9d: Unknown result type (might be due to invalid IL or missing references) //IL_3ba3: Unknown result type (might be due to invalid IL or missing references) //IL_3bad: Unknown result type (might be due to invalid IL or missing references) //IL_3bb2: Unknown result type (might be due to invalid IL or missing references) //IL_3bb8: Unknown result type (might be due to invalid IL or missing references) //IL_3bc2: Unknown result type (might be due to invalid IL or missing references) //IL_3bc8: Unknown result type (might be due to invalid IL or missing references) //IL_3bcd: Unknown result type (might be due to invalid IL or missing references) //IL_3bd3: Unknown result type (might be due to invalid IL or missing references) //IL_3bd8: Unknown result type (might be due to invalid IL or missing references) //IL_3bdd: Unknown result type (might be due to invalid IL or missing references) //IL_3be3: Unknown result type (might be due to invalid IL or missing references) //IL_3bed: Unknown result type (might be due to invalid IL or missing references) //IL_3bf2: Unknown result type (might be due to invalid IL or missing references) //IL_3bfe: Unknown result type (might be due to invalid IL or missing references) //IL_3a5d: Unknown result type (might be due to invalid IL or missing references) //IL_3a62: Unknown result type (might be due to invalid IL or missing references) //IL_38dc: Unknown result type (might be due to invalid IL or missing references) //IL_38e1: Unknown result type (might be due to invalid IL or missing references) //IL_38f0: Unknown result type (might be due to invalid IL or missing references) //IL_38f5: Unknown result type (might be due to invalid IL or missing references) //IL_3911: Unknown result type (might be due to invalid IL or missing references) //IL_3916: Unknown result type (might be due to invalid IL or missing references) //IL_391f: Unknown result type (might be due to invalid IL or missing references) //IL_392a: Unknown result type (might be due to invalid IL or missing references) //IL_393b: Unknown result type (might be due to invalid IL or missing references) //IL_3940: Unknown result type (might be due to invalid IL or missing references) //IL_3945: Unknown result type (might be due to invalid IL or missing references) //IL_2c56: Unknown result type (might be due to invalid IL or missing references) //IL_2c5b: Unknown result type (might be due to invalid IL or missing references) //IL_2c6a: Unknown result type (might be due to invalid IL or missing references) //IL_2c6f: Unknown result type (might be due to invalid IL or missing references) //IL_2c8b: Unknown result type (might be due to invalid IL or missing references) //IL_2c90: Unknown result type (might be due to invalid IL or missing references) //IL_2c99: Unknown result type (might be due to invalid IL or missing references) //IL_2ca4: Unknown result type (might be due to invalid IL or missing references) //IL_2cb5: Unknown result type (might be due to invalid IL or missing references) //IL_2cba: Unknown result type (might be due to invalid IL or missing references) //IL_2cbf: Unknown result type (might be due to invalid IL or missing references) //IL_3ccc: Unknown result type (might be due to invalid IL or missing references) //IL_3cd2: Unknown result type (might be due to invalid IL or missing references) //IL_3cd7: Unknown result type (might be due to invalid IL or missing references) //IL_3cdd: Unknown result type (might be due to invalid IL or missing references) //IL_3ce2: Unknown result type (might be due to invalid IL or missing references) //IL_3ce8: Unknown result type (might be due to invalid IL or missing references) //IL_3cf2: Unknown result type (might be due to invalid IL or missing references) //IL_3cf7: Unknown result type (might be due to invalid IL or missing references) //IL_3cfd: Unknown result type (might be due to invalid IL or missing references) //IL_3d07: Unknown result type (might be due to invalid IL or missing references) //IL_3d0d: Unknown result type (might be due to invalid IL or missing references) //IL_3d12: Unknown result type (might be due to invalid IL or missing references) //IL_3d18: Unknown result type (might be due to invalid IL or missing references) //IL_3d1d: Unknown result type (might be due to invalid IL or missing references) //IL_3d22: Unknown result type (might be due to invalid IL or missing references) //IL_3d28: Unknown result type (might be due to invalid IL or missing references) //IL_3d32: Unknown result type (might be due to invalid IL or missing references) //IL_3d37: Unknown result type (might be due to invalid IL or missing references) //IL_3d42: Unknown result type (might be due to invalid IL or missing references) //IL_3d48: Unknown result type (might be due to invalid IL or missing references) //IL_3d4d: Unknown result type (might be due to invalid IL or missing references) //IL_3d53: Unknown result type (might be due to invalid IL or missing references) //IL_3d58: Unknown result type (might be due to invalid IL or missing references) //IL_3d5e: Unknown result type (might be due to invalid IL or missing references) //IL_3d68: Unknown result type (might be due to invalid IL or missing references) //IL_3d6d: Unknown result type (might be due to invalid IL or missing references) //IL_3d73: Unknown result type (might be due to invalid IL or missing references) //IL_3d7d: Unknown result type (might be due to invalid IL or missing references) //IL_3d83: Unknown result type (might be due to invalid IL or missing references) //IL_3d88: Unknown result type (might be due to invalid IL or missing references) //IL_3d8e: Unknown result type (might be due to invalid IL or missing references) //IL_3d93: Unknown result type (might be due to invalid IL or missing references) //IL_3d98: Unknown result type (might be due to invalid IL or missing references) //IL_3d9e: Unknown result type (might be due to invalid IL or missing references) //IL_3da8: Unknown result type (might be due to invalid IL or missing references) //IL_3dad: Unknown result type (might be due to invalid IL or missing references) //IL_3db9: Unknown result type (might be due to invalid IL or missing references) //IL_3c18: Unknown result type (might be due to invalid IL or missing references) //IL_3c1d: Unknown result type (might be due to invalid IL or missing references) //IL_3a97: Unknown result type (might be due to invalid IL or missing references) //IL_3a9c: Unknown result type (might be due to invalid IL or missing references) //IL_3aab: Unknown result type (might be due to invalid IL or missing references) //IL_3ab0: Unknown result type (might be due to invalid IL or missing references) //IL_3acc: Unknown result type (might be due to invalid IL or missing references) //IL_3ad1: Unknown result type (might be due to invalid IL or missing references) //IL_3ada: Unknown result type (might be due to invalid IL or missing references) //IL_3ae5: Unknown result type (might be due to invalid IL or missing references) //IL_3af6: Unknown result type (might be due to invalid IL or missing references) //IL_3afb: Unknown result type (might be due to invalid IL or missing references) //IL_3b00: Unknown result type (might be due to invalid IL or missing references) //IL_3e89: Unknown result type (might be due to invalid IL or missing references) //IL_3e8e: Unknown result type (might be due to invalid IL or missing references) //IL_3e9d: Unknown result type (might be due to invalid IL or missing references) //IL_3ea2: Unknown result type (might be due to invalid IL or missing references) //IL_3eb9: Unknown result type (might be due to invalid IL or missing references) //IL_3ebe: Unknown result type (might be due to invalid IL or missing references) //IL_3eda: Unknown result type (might be due to invalid IL or missing references) //IL_3edf: Unknown result type (might be due to invalid IL or missing references) //IL_3eee: Unknown result type (might be due to invalid IL or missing references) //IL_3ef3: Unknown result type (might be due to invalid IL or missing references) //IL_3f04: Unknown result type (might be due to invalid IL or missing references) //IL_3f0f: Unknown result type (might be due to invalid IL or missing references) //IL_3f14: Unknown result type (might be due to invalid IL or missing references) //IL_3f3d: Unknown result type (might be due to invalid IL or missing references) //IL_3f42: Unknown result type (might be due to invalid IL or missing references) //IL_3f59: Unknown result type (might be due to invalid IL or missing references) //IL_3f5e: Unknown result type (might be due to invalid IL or missing references) //IL_3f63: Unknown result type (might be due to invalid IL or missing references) //IL_3dd3: Unknown result type (might be due to invalid IL or missing references) //IL_3dd8: Unknown result type (might be due to invalid IL or missing references) //IL_3c52: Unknown result type (might be due to invalid IL or missing references) //IL_3c57: Unknown result type (might be due to invalid IL or missing references) //IL_3c66: Unknown result type (might be due to invalid IL or missing references) //IL_3c6b: Unknown result type (might be due to invalid IL or missing references) //IL_3c87: Unknown result type (might be due to invalid IL or missing references) //IL_3c8c: Unknown result type (might be due to invalid IL or missing references) //IL_3c95: Unknown result type (might be due to invalid IL or missing references) //IL_3ca0: Unknown result type (might be due to invalid IL or missing references) //IL_3cb1: Unknown result type (might be due to invalid IL or missing references) //IL_3cb6: Unknown result type (might be due to invalid IL or missing references) //IL_3cbb: Unknown result type (might be due to invalid IL or missing references) //IL_3e0d: Unknown result type (might be due to invalid IL or missing references) //IL_3e12: Unknown result type (might be due to invalid IL or missing references) //IL_3e21: Unknown result type (might be due to invalid IL or missing references) //IL_3e26: Unknown result type (might be due to invalid IL or missing references) //IL_3e42: Unknown result type (might be due to invalid IL or missing references) //IL_3e47: Unknown result type (might be due to invalid IL or missing references) //IL_3e50: Unknown result type (might be due to invalid IL or missing references) //IL_3e5b: Unknown result type (might be due to invalid IL or missing references) //IL_3e6c: Unknown result type (might be due to invalid IL or missing references) //IL_3e71: Unknown result type (might be due to invalid IL or missing references) //IL_3e76: Unknown result type (might be due to invalid IL or missing references) if (switching || !ledgeSwitchingDetectors.allowLedgeSwitching || !grabbedOn) { return; } if ((!Physics.Linecast(((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.8f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { l1FirstForwardSurfaceDetectorsHit = true; } else { l1FirstForwardSurfaceDetectorsHit = false; l1FirstForwardHit = false; } if ((!Physics.Linecast(((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.8f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { l2FirstForwardSurfaceDetectorsHit = true; } else { l2FirstForwardSurfaceDetectorsHit = false; l2FirstForwardHit = false; } if ((!Physics.Linecast(((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.8f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { l3FirstForwardSurfaceDetectorsHit = true; } else { l3FirstForwardSurfaceDetectorsHit = false; l3FirstForwardHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) { if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref switchHitPoint)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit && !switching) { l1FirstForwardHit = true; if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2), ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l1FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l1FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l1FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l1FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l1FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l1FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l1FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l1FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else { l1FirstForwardHitPoint = new Vector3(((RaycastHit)(ref switchHitPoint)).point.x - ((Component)this).transform.forward.x * length2, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref switchHitPoint)).point.z - ((Component)this).transform.forward.x * length2) + new Vector3((0f - ((Component)this).transform.forward.x) * length2 / 10f, onLedgeHeight2 / 10f, (0f - ((Component)this).transform.forward.z) * length2 / 10f); } } else { l1FirstForwardHit = false; } } else { l1FirstForwardHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) { if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref switchHitPoint)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit && !switching) { l2FirstForwardHit = true; if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2), ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l2FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l2FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l2FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l2FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l2FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l2FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l2FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l2FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else { l2FirstForwardHitPoint = new Vector3(((RaycastHit)(ref switchHitPoint)).point.x - ((Component)this).transform.forward.x * length2, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref switchHitPoint)).point.z - ((Component)this).transform.forward.x * length2) + new Vector3((0f - ((Component)this).transform.forward.x) * length2 / 10f, onLedgeHeight2 / 10f, (0f - ((Component)this).transform.forward.z) * length2 / 10f); } } else { l2FirstForwardHit = false; } } else { l2FirstForwardHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f + ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) { if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref switchHitPoint)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit && !switching) { l3FirstForwardHit = true; if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2), ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l3FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l3FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l3FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l3FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l3FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l3FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l3FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l3FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else { l3FirstForwardHitPoint = new Vector3(((RaycastHit)(ref switchHitPoint)).point.x - ((Component)this).transform.forward.x * length2, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref switchHitPoint)).point.z - ((Component)this).transform.forward.x * length2) + new Vector3((0f - ((Component)this).transform.forward.x) * length2 / 10f, onLedgeHeight2 / 10f, (0f - ((Component)this).transform.forward.z) * length2 / 10f); } } else { l3FirstForwardHit = false; } } else { l3FirstForwardHit = false; } } private void LedgeSwitchHitPointsMiddleLeft() { //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_006a: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_0089: Unknown result type (might be due to invalid IL or missing references) //IL_008e: Unknown result type (might be due to invalid IL or missing references) //IL_0094: Unknown result type (might be due to invalid IL or missing references) //IL_0099: Unknown result type (might be due to invalid IL or missing references) //IL_009f: Unknown result type (might be due to invalid IL or missing references) //IL_00a4: Unknown result type (might be due to invalid IL or missing references) //IL_00af: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) //IL_00ba: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_00cb: Unknown result type (might be due to invalid IL or missing references) //IL_00d0: Unknown result type (might be due to invalid IL or missing references) //IL_00d6: Unknown result type (might be due to invalid IL or missing references) //IL_00e0: Unknown result type (might be due to invalid IL or missing references) //IL_00e5: Unknown result type (might be due to invalid IL or missing references) //IL_00eb: Unknown result type (might be due to invalid IL or missing references) //IL_00f5: Unknown result type (might be due to invalid IL or missing references) //IL_00fa: Unknown result type (might be due to invalid IL or missing references) //IL_0100: Unknown result type (might be due to invalid IL or missing references) //IL_010a: Unknown result type (might be due to invalid IL or missing references) //IL_010f: Unknown result type (might be due to invalid IL or missing references) //IL_0115: Unknown result type (might be due to invalid IL or missing references) //IL_011a: Unknown result type (might be due to invalid IL or missing references) //IL_0120: Unknown result type (might be due to invalid IL or missing references) //IL_0125: Unknown result type (might be due to invalid IL or missing references) //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_0268: Unknown result type (might be due to invalid IL or missing references) //IL_026e: Unknown result type (might be due to invalid IL or missing references) //IL_0273: Unknown result type (might be due to invalid IL or missing references) //IL_0279: Unknown result type (might be due to invalid IL or missing references) //IL_027e: Unknown result type (might be due to invalid IL or missing references) //IL_0284: Unknown result type (might be due to invalid IL or missing references) //IL_0289: Unknown result type (might be due to invalid IL or missing references) //IL_028f: Unknown result type (might be due to invalid IL or missing references) //IL_0299: Unknown result type (might be due to invalid IL or missing references) //IL_029e: Unknown result type (might be due to invalid IL or missing references) //IL_02a4: Unknown result type (might be due to invalid IL or missing references) //IL_02ae: Unknown result type (might be due to invalid IL or missing references) //IL_02b3: Unknown result type (might be due to invalid IL or missing references) //IL_02b9: Unknown result type (might be due to invalid IL or missing references) //IL_02c3: Unknown result type (might be due to invalid IL or missing references) //IL_02c8: Unknown result type (might be due to invalid IL or missing references) //IL_02ce: Unknown result type (might be due to invalid IL or missing references) //IL_02d3: Unknown result type (might be due to invalid IL or missing references) //IL_02d9: Unknown result type (might be due to invalid IL or missing references) //IL_02de: Unknown result type (might be due to invalid IL or missing references) //IL_02e9: Unknown result type (might be due to invalid IL or missing references) //IL_02ef: Unknown result type (might be due to invalid IL or missing references) //IL_02f4: Unknown result type (might be due to invalid IL or missing references) //IL_02fa: Unknown result type (might be due to invalid IL or missing references) //IL_02ff: Unknown result type (might be due to invalid IL or missing references) //IL_0305: Unknown result type (might be due to invalid IL or missing references) //IL_030a: Unknown result type (might be due to invalid IL or missing references) //IL_0310: Unknown result type (might be due to invalid IL or missing references) //IL_031a: Unknown result type (might be due to invalid IL or missing references) //IL_031f: Unknown result type (might be due to invalid IL or missing references) //IL_0325: Unknown result type (might be due to invalid IL or missing references) //IL_032f: Unknown result type (might be due to invalid IL or missing references) //IL_0334: Unknown result type (might be due to invalid IL or missing references) //IL_033a: Unknown result type (might be due to invalid IL or missing references) //IL_0344: Unknown result type (might be due to invalid IL or missing references) //IL_0349: Unknown result type (might be due to invalid IL or missing references) //IL_034f: Unknown result type (might be due to invalid IL or missing references) //IL_0354: Unknown result type (might be due to invalid IL or missing references) //IL_0360: Unknown result type (might be due to invalid IL or missing references) //IL_014b: Unknown result type (might be due to invalid IL or missing references) //IL_0151: Unknown result type (might be due to invalid IL or missing references) //IL_0156: Unknown result type (might be due to invalid IL or missing references) //IL_015c: Unknown result type (might be due to invalid IL or missing references) //IL_0161: Unknown result type (might be due to invalid IL or missing references) //IL_0167: Unknown result type (might be due to invalid IL or missing references) //IL_016c: Unknown result type (might be due to invalid IL or missing references) //IL_0172: Unknown result type (might be due to invalid IL or missing references) //IL_017c: Unknown result type (might be due to invalid IL or missing references) //IL_0181: Unknown result type (might be due to invalid IL or missing references) //IL_0187: Unknown result type (might be due to invalid IL or missing references) //IL_0191: Unknown result type (might be due to invalid IL or missing references) //IL_0196: Unknown result type (might be due to invalid IL or missing references) //IL_019c: Unknown result type (might be due to invalid IL or missing references) //IL_01a6: Unknown result type (might be due to invalid IL or missing references) //IL_01ab: Unknown result type (might be due to invalid IL or missing references) //IL_01b1: Unknown result type (might be due to invalid IL or missing references) //IL_01b6: Unknown result type (might be due to invalid IL or missing references) //IL_01bc: Unknown result type (might be due to invalid IL or missing references) //IL_01c1: Unknown result type (might be due to invalid IL or missing references) //IL_01cc: Unknown result type (might be due to invalid IL or missing references) //IL_01d2: Unknown result type (might be due to invalid IL or missing references) //IL_01d7: Unknown result type (might be due to invalid IL or missing references) //IL_01dd: Unknown result type (might be due to invalid IL or missing references) //IL_01e2: Unknown result type (might be due to invalid IL or missing references) //IL_01e8: Unknown result type (might be due to invalid IL or missing references) //IL_01ed: Unknown result type (might be due to invalid IL or missing references) //IL_01f3: Unknown result type (might be due to invalid IL or missing references) //IL_01fd: Unknown result type (might be due to invalid IL or missing references) //IL_0202: Unknown result type (might be due to invalid IL or missing references) //IL_0208: Unknown result type (might be due to invalid IL or missing references) //IL_020d: Unknown result type (might be due to invalid IL or missing references) //IL_0213: Unknown result type (might be due to invalid IL or missing references) //IL_021d: Unknown result type (might be due to invalid IL or missing references) //IL_0222: Unknown result type (might be due to invalid IL or missing references) //IL_0228: Unknown result type (might be due to invalid IL or missing references) //IL_0232: Unknown result type (might be due to invalid IL or missing references) //IL_0237: Unknown result type (might be due to invalid IL or missing references) //IL_023d: Unknown result type (might be due to invalid IL or missing references) //IL_0242: Unknown result type (might be due to invalid IL or missing references) //IL_024e: Unknown result type (might be due to invalid IL or missing references) //IL_0398: Unknown result type (might be due to invalid IL or missing references) //IL_039e: Unknown result type (might be due to invalid IL or missing references) //IL_03a3: Unknown result type (might be due to invalid IL or missing references) //IL_03a9: Unknown result type (might be due to invalid IL or missing references) //IL_03ae: Unknown result type (might be due to invalid IL or missing references) //IL_03b4: Unknown result type (might be due to invalid IL or missing references) //IL_03b9: Unknown result type (might be due to invalid IL or missing references) //IL_03bf: Unknown result type (might be due to invalid IL or missing references) //IL_03c9: Unknown result type (might be due to invalid IL or missing references) //IL_03ce: Unknown result type (might be due to invalid IL or missing references) //IL_03d4: Unknown result type (might be due to invalid IL or missing references) //IL_03de: Unknown result type (might be due to invalid IL or missing references) //IL_03e3: Unknown result type (might be due to invalid IL or missing references) //IL_03e9: Unknown result type (might be due to invalid IL or missing references) //IL_03f3: Unknown result type (might be due to invalid IL or missing references) //IL_03f8: Unknown result type (might be due to invalid IL or missing references) //IL_03fe: Unknown result type (might be due to invalid IL or missing references) //IL_0403: Unknown result type (might be due to invalid IL or missing references) //IL_0409: Unknown result type (might be due to invalid IL or missing references) //IL_040e: Unknown result type (might be due to invalid IL or missing references) //IL_0419: Unknown result type (might be due to invalid IL or missing references) //IL_041f: Unknown result type (might be due to invalid IL or missing references) //IL_0424: Unknown result type (might be due to invalid IL or missing references) //IL_042a: Unknown result type (might be due to invalid IL or missing references) //IL_042f: Unknown result type (might be due to invalid IL or missing references) //IL_0435: Unknown result type (might be due to invalid IL or missing references) //IL_043a: Unknown result type (might be due to invalid IL or missing references) //IL_0440: Unknown result type (might be due to invalid IL or missing references) //IL_044a: Unknown result type (might be due to invalid IL or missing references) //IL_044f: Unknown result type (might be due to invalid IL or missing references) //IL_0455: Unknown result type (might be due to invalid IL or missing references) //IL_045f: Unknown result type (might be due to invalid IL or missing references) //IL_0464: Unknown result type (might be due to invalid IL or missing references) //IL_046a: Unknown result type (might be due to invalid IL or missing references) //IL_0474: Unknown result type (might be due to invalid IL or missing references) //IL_0479: Unknown result type (might be due to invalid IL or missing references) //IL_047f: Unknown result type (might be due to invalid IL or missing references) //IL_0484: Unknown result type (might be due to invalid IL or missing references) //IL_048a: Unknown result type (might be due to invalid IL or missing references) //IL_048f: Unknown result type (might be due to invalid IL or missing references) //IL_049b: Unknown result type (might be due to invalid IL or missing references) //IL_05d2: Unknown result type (might be due to invalid IL or missing references) //IL_05d8: Unknown result type (might be due to invalid IL or missing references) //IL_05dd: Unknown result type (might be due to invalid IL or missing references) //IL_05e3: Unknown result type (might be due to invalid IL or missing references) //IL_05e8: Unknown result type (might be due to invalid IL or missing references) //IL_05ee: Unknown result type (might be due to invalid IL or missing references) //IL_05f3: Unknown result type (might be due to invalid IL or missing references) //IL_05f9: Unknown result type (might be due to invalid IL or missing references) //IL_0603: Unknown result type (might be due to invalid IL or missing references) //IL_0608: Unknown result type (might be due to invalid IL or missing references) //IL_060e: Unknown result type (might be due to invalid IL or missing references) //IL_0618: Unknown result type (might be due to invalid IL or missing references) //IL_061d: Unknown result type (might be due to invalid IL or missing references) //IL_0623: Unknown result type (might be due to invalid IL or missing references) //IL_062d: Unknown result type (might be due to invalid IL or missing references) //IL_0632: Unknown result type (might be due to invalid IL or missing references) //IL_0638: Unknown result type (might be due to invalid IL or missing references) //IL_063d: Unknown result type (might be due to invalid IL or missing references) //IL_0643: Unknown result type (might be due to invalid IL or missing references) //IL_0648: Unknown result type (might be due to invalid IL or missing references) //IL_0653: Unknown result type (might be due to invalid IL or missing references) //IL_0659: Unknown result type (might be due to invalid IL or missing references) //IL_065e: Unknown result type (might be due to invalid IL or missing references) //IL_0664: Unknown result type (might be due to invalid IL or missing references) //IL_0669: Unknown result type (might be due to invalid IL or missing references) //IL_066f: Unknown result type (might be due to invalid IL or missing references) //IL_0674: Unknown result type (might be due to invalid IL or missing references) //IL_067a: Unknown result type (might be due to invalid IL or missing references) //IL_0684: Unknown result type (might be due to invalid IL or missing references) //IL_0689: Unknown result type (might be due to invalid IL or missing references) //IL_068f: Unknown result type (might be due to invalid IL or missing references) //IL_0699: Unknown result type (might be due to invalid IL or missing references) //IL_069e: Unknown result type (might be due to invalid IL or missing references) //IL_06a4: Unknown result type (might be due to invalid IL or missing references) //IL_06ae: Unknown result type (might be due to invalid IL or missing references) //IL_06b3: Unknown result type (might be due to invalid IL or missing references) //IL_06b9: Unknown result type (might be due to invalid IL or missing references) //IL_06be: Unknown result type (might be due to invalid IL or missing references) //IL_06ca: Unknown result type (might be due to invalid IL or missing references) //IL_04b5: Unknown result type (might be due to invalid IL or missing references) //IL_04bb: Unknown result type (might be due to invalid IL or missing references) //IL_04c0: Unknown result type (might be due to invalid IL or missing references) //IL_04c6: Unknown result type (might be due to invalid IL or missing references) //IL_04cb: Unknown result type (might be due to invalid IL or missing references) //IL_04d1: Unknown result type (might be due to invalid IL or missing references) //IL_04d6: Unknown result type (might be due to invalid IL or missing references) //IL_04dc: Unknown result type (might be due to invalid IL or missing references) //IL_04e6: Unknown result type (might be due to invalid IL or missing references) //IL_04eb: Unknown result type (might be due to invalid IL or missing references) //IL_04f1: Unknown result type (might be due to invalid IL or missing references) //IL_04fb: Unknown result type (might be due to invalid IL or missing references) //IL_0500: Unknown result type (might be due to invalid IL or missing references) //IL_0506: Unknown result type (might be due to invalid IL or missing references) //IL_0510: Unknown result type (might be due to invalid IL or missing references) //IL_0515: Unknown result type (might be due to invalid IL or missing references) //IL_051b: Unknown result type (might be due to invalid IL or missing references) //IL_0520: Unknown result type (might be due to invalid IL or missing references) //IL_0526: Unknown result type (might be due to invalid IL or missing references) //IL_052b: Unknown result type (might be due to invalid IL or missing references) //IL_0536: Unknown result type (might be due to invalid IL or missing references) //IL_053c: Unknown result type (might be due to invalid IL or missing references) //IL_0541: Unknown result type (might be due to invalid IL or missing references) //IL_0547: Unknown result type (might be due to invalid IL or missing references) //IL_054c: Unknown result type (might be due to invalid IL or missing references) //IL_0552: Unknown result type (might be due to invalid IL or missing references) //IL_0557: Unknown result type (might be due to invalid IL or missing references) //IL_055d: Unknown result type (might be due to invalid IL or missing references) //IL_0567: Unknown result type (might be due to invalid IL or missing references) //IL_056c: Unknown result type (might be due to invalid IL or missing references) //IL_0572: Unknown result type (might be due to invalid IL or missing references) //IL_0577: Unknown result type (might be due to invalid IL or missing references) //IL_057d: Unknown result type (might be due to invalid IL or missing references) //IL_0587: Unknown result type (might be due to invalid IL or missing references) //IL_058c: Unknown result type (might be due to invalid IL or missing references) //IL_0592: Unknown result type (might be due to invalid IL or missing references) //IL_059c: Unknown result type (might be due to invalid IL or missing references) //IL_05a1: Unknown result type (might be due to invalid IL or missing references) //IL_05a7: Unknown result type (might be due to invalid IL or missing references) //IL_05ac: Unknown result type (might be due to invalid IL or missing references) //IL_05b8: Unknown result type (might be due to invalid IL or missing references) //IL_0702: Unknown result type (might be due to invalid IL or missing references) //IL_0708: Unknown result type (might be due to invalid IL or missing references) //IL_070d: Unknown result type (might be due to invalid IL or missing references) //IL_0713: Unknown result type (might be due to invalid IL or missing references) //IL_0718: Unknown result type (might be due to invalid IL or missing references) //IL_071e: Unknown result type (might be due to invalid IL or missing references) //IL_0723: Unknown result type (might be due to invalid IL or missing references) //IL_0729: Unknown result type (might be due to invalid IL or missing references) //IL_0733: Unknown result type (might be due to invalid IL or missing references) //IL_0738: Unknown result type (might be due to invalid IL or missing references) //IL_073e: Unknown result type (might be due to invalid IL or missing references) //IL_0748: Unknown result type (might be due to invalid IL or missing references) //IL_074d: Unknown result type (might be due to invalid IL or missing references) //IL_0753: Unknown result type (might be due to invalid IL or missing references) //IL_075d: Unknown result type (might be due to invalid IL or missing references) //IL_0762: Unknown result type (might be due to invalid IL or missing references) //IL_0768: Unknown result type (might be due to invalid IL or missing references) //IL_076d: Unknown result type (might be due to invalid IL or missing references) //IL_0773: Unknown result type (might be due to invalid IL or missing references) //IL_0778: Unknown result type (might be due to invalid IL or missing references) //IL_0783: Unknown result type (might be due to invalid IL or missing references) //IL_0789: Unknown result type (might be due to invalid IL or missing references) //IL_078e: Unknown result type (might be due to invalid IL or missing references) //IL_0794: Unknown result type (might be due to invalid IL or missing references) //IL_0799: Unknown result type (might be due to invalid IL or missing references) //IL_079f: Unknown result type (might be due to invalid IL or missing references) //IL_07a4: Unknown result type (might be due to invalid IL or missing references) //IL_07aa: Unknown result type (might be due to invalid IL or missing references) //IL_07b4: Unknown result type (might be due to invalid IL or missing references) //IL_07b9: Unknown result type (might be due to invalid IL or missing references) //IL_07bf: Unknown result type (might be due to invalid IL or missing references) //IL_07c9: Unknown result type (might be due to invalid IL or missing references) //IL_07ce: Unknown result type (might be due to invalid IL or missing references) //IL_07d4: Unknown result type (might be due to invalid IL or missing references) //IL_07de: Unknown result type (might be due to invalid IL or missing references) //IL_07e3: Unknown result type (might be due to invalid IL or missing references) //IL_07e9: Unknown result type (might be due to invalid IL or missing references) //IL_07ee: Unknown result type (might be due to invalid IL or missing references) //IL_07f4: Unknown result type (might be due to invalid IL or missing references) //IL_07f9: Unknown result type (might be due to invalid IL or missing references) //IL_0805: Unknown result type (might be due to invalid IL or missing references) //IL_093c: Unknown result type (might be due to invalid IL or missing references) //IL_0942: Unknown result type (might be due to invalid IL or missing references) //IL_0947: Unknown result type (might be due to invalid IL or missing references) //IL_094d: Unknown result type (might be due to invalid IL or missing references) //IL_0952: Unknown result type (might be due to invalid IL or missing references) //IL_0958: Unknown result type (might be due to invalid IL or missing references) //IL_095d: Unknown result type (might be due to invalid IL or missing references) //IL_0963: Unknown result type (might be due to invalid IL or missing references) //IL_096d: Unknown result type (might be due to invalid IL or missing references) //IL_0972: Unknown result type (might be due to invalid IL or missing references) //IL_0978: Unknown result type (might be due to invalid IL or missing references) //IL_0982: Unknown result type (might be due to invalid IL or missing references) //IL_0987: Unknown result type (might be due to invalid IL or missing references) //IL_098d: Unknown result type (might be due to invalid IL or missing references) //IL_0997: Unknown result type (might be due to invalid IL or missing references) //IL_099c: Unknown result type (might be due to invalid IL or missing references) //IL_09a2: Unknown result type (might be due to invalid IL or missing references) //IL_09a7: Unknown result type (might be due to invalid IL or missing references) //IL_09ad: Unknown result type (might be due to invalid IL or missing references) //IL_09b2: Unknown result type (might be due to invalid IL or missing references) //IL_09bd: Unknown result type (might be due to invalid IL or missing references) //IL_09c3: Unknown result type (might be due to invalid IL or missing references) //IL_09c8: Unknown result type (might be due to invalid IL or missing references) //IL_09ce: Unknown result type (might be due to invalid IL or missing references) //IL_09d3: Unknown result type (might be due to invalid IL or missing references) //IL_09d9: Unknown result type (might be due to invalid IL or missing references) //IL_09de: Unknown result type (might be due to invalid IL or missing references) //IL_09e4: Unknown result type (might be due to invalid IL or missing references) //IL_09ee: Unknown result type (might be due to invalid IL or missing references) //IL_09f3: Unknown result type (might be due to invalid IL or missing references) //IL_09f9: Unknown result type (might be due to invalid IL or missing references) //IL_0a03: Unknown result type (might be due to invalid IL or missing references) //IL_0a08: Unknown result type (might be due to invalid IL or missing references) //IL_0a0e: Unknown result type (might be due to invalid IL or missing references) //IL_0a18: Unknown result type (might be due to invalid IL or missing references) //IL_0a1d: Unknown result type (might be due to invalid IL or missing references) //IL_0a23: Unknown result type (might be due to invalid IL or missing references) //IL_0a28: Unknown result type (might be due to invalid IL or missing references) //IL_0a34: Unknown result type (might be due to invalid IL or missing references) //IL_081f: Unknown result type (might be due to invalid IL or missing references) //IL_0825: Unknown result type (might be due to invalid IL or missing references) //IL_082a: Unknown result type (might be due to invalid IL or missing references) //IL_0830: Unknown result type (might be due to invalid IL or missing references) //IL_0835: Unknown result type (might be due to invalid IL or missing references) //IL_083b: Unknown result type (might be due to invalid IL or missing references) //IL_0840: Unknown result type (might be due to invalid IL or missing references) //IL_0846: Unknown result type (might be due to invalid IL or missing references) //IL_0850: Unknown result type (might be due to invalid IL or missing references) //IL_0855: Unknown result type (might be due to invalid IL or missing references) //IL_085b: Unknown result type (might be due to invalid IL or missing references) //IL_0865: Unknown result type (might be due to invalid IL or missing references) //IL_086a: Unknown result type (might be due to invalid IL or missing references) //IL_0870: Unknown result type (might be due to invalid IL or missing references) //IL_087a: Unknown result type (might be due to invalid IL or missing references) //IL_087f: Unknown result type (might be due to invalid IL or missing references) //IL_0885: Unknown result type (might be due to invalid IL or missing references) //IL_088a: Unknown result type (might be due to invalid IL or missing references) //IL_0890: Unknown result type (might be due to invalid IL or missing references) //IL_0895: Unknown result type (might be due to invalid IL or missing references) //IL_08a0: Unknown result type (might be due to invalid IL or missing references) //IL_08a6: Unknown result type (might be due to invalid IL or missing references) //IL_08ab: Unknown result type (might be due to invalid IL or missing references) //IL_08b1: Unknown result type (might be due to invalid IL or missing references) //IL_08b6: Unknown result type (might be due to invalid IL or missing references) //IL_08bc: Unknown result type (might be due to invalid IL or missing references) //IL_08c1: Unknown result type (might be due to invalid IL or missing references) //IL_08c7: Unknown result type (might be due to invalid IL or missing references) //IL_08d1: Unknown result type (might be due to invalid IL or missing references) //IL_08d6: Unknown result type (might be due to invalid IL or missing references) //IL_08dc: Unknown result type (might be due to invalid IL or missing references) //IL_08e1: Unknown result type (might be due to invalid IL or missing references) //IL_08e7: Unknown result type (might be due to invalid IL or missing references) //IL_08f1: Unknown result type (might be due to invalid IL or missing references) //IL_08f6: Unknown result type (might be due to invalid IL or missing references) //IL_08fc: Unknown result type (might be due to invalid IL or missing references) //IL_0906: Unknown result type (might be due to invalid IL or missing references) //IL_090b: Unknown result type (might be due to invalid IL or missing references) //IL_0911: Unknown result type (might be due to invalid IL or missing references) //IL_0916: Unknown result type (might be due to invalid IL or missing references) //IL_0922: Unknown result type (might be due to invalid IL or missing references) //IL_0a6c: Unknown result type (might be due to invalid IL or missing references) //IL_0a72: Unknown result type (might be due to invalid IL or missing references) //IL_0a77: Unknown result type (might be due to invalid IL or missing references) //IL_0a7d: Unknown result type (might be due to invalid IL or missing references) //IL_0a87: Unknown result type (might be due to invalid IL or missing references) //IL_0a8c: Unknown result type (might be due to invalid IL or missing references) //IL_0a92: Unknown result type (might be due to invalid IL or missing references) //IL_0a9c: Unknown result type (might be due to invalid IL or missing references) //IL_0aa1: Unknown result type (might be due to invalid IL or missing references) //IL_0aa7: Unknown result type (might be due to invalid IL or missing references) //IL_0ab1: Unknown result type (might be due to invalid IL or missing references) //IL_0ab6: Unknown result type (might be due to invalid IL or missing references) //IL_0abc: Unknown result type (might be due to invalid IL or missing references) //IL_0ac1: Unknown result type (might be due to invalid IL or missing references) //IL_0ac7: Unknown result type (might be due to invalid IL or missing references) //IL_0acc: Unknown result type (might be due to invalid IL or missing references) //IL_0ad2: Unknown result type (might be due to invalid IL or missing references) //IL_0ad7: Unknown result type (might be due to invalid IL or missing references) //IL_0ae2: Unknown result type (might be due to invalid IL or missing references) //IL_0ae8: Unknown result type (might be due to invalid IL or missing references) //IL_0aed: Unknown result type (might be due to invalid IL or missing references) //IL_0af3: Unknown result type (might be due to invalid IL or missing references) //IL_0afd: Unknown result type (might be due to invalid IL or missing references) //IL_0b02: Unknown result type (might be due to invalid IL or missing references) //IL_0b08: Unknown result type (might be due to invalid IL or missing references) //IL_0b12: Unknown result type (might be due to invalid IL or missing references) //IL_0b17: Unknown result type (might be due to invalid IL or missing references) //IL_0b1d: Unknown result type (might be due to invalid IL or missing references) //IL_0b27: Unknown result type (might be due to invalid IL or missing references) //IL_0b2c: Unknown result type (might be due to invalid IL or missing references) //IL_0b32: Unknown result type (might be due to invalid IL or missing references) //IL_0b37: Unknown result type (might be due to invalid IL or missing references) //IL_0b3d: Unknown result type (might be due to invalid IL or missing references) //IL_0b42: Unknown result type (might be due to invalid IL or missing references) //IL_0b48: Unknown result type (might be due to invalid IL or missing references) //IL_0b4d: Unknown result type (might be due to invalid IL or missing references) //IL_0b59: Unknown result type (might be due to invalid IL or missing references) //IL_0c7a: Unknown result type (might be due to invalid IL or missing references) //IL_0c80: Unknown result type (might be due to invalid IL or missing references) //IL_0c85: Unknown result type (might be due to invalid IL or missing references) //IL_0c8b: Unknown result type (might be due to invalid IL or missing references) //IL_0c95: Unknown result type (might be due to invalid IL or missing references) //IL_0c9a: Unknown result type (might be due to invalid IL or missing references) //IL_0ca0: Unknown result type (might be due to invalid IL or missing references) //IL_0caa: Unknown result type (might be due to invalid IL or missing references) //IL_0caf: Unknown result type (might be due to invalid IL or missing references) //IL_0cb5: Unknown result type (might be due to invalid IL or missing references) //IL_0cbf: Unknown result type (might be due to invalid IL or missing references) //IL_0cc4: Unknown result type (might be due to invalid IL or missing references) //IL_0cca: Unknown result type (might be due to invalid IL or missing references) //IL_0ccf: Unknown result type (might be due to invalid IL or missing references) //IL_0cd5: Unknown result type (might be due to invalid IL or missing references) //IL_0cda: Unknown result type (might be due to invalid IL or missing references) //IL_0ce0: Unknown result type (might be due to invalid IL or missing references) //IL_0ce5: Unknown result type (might be due to invalid IL or missing references) //IL_0cf0: Unknown result type (might be due to invalid IL or missing references) //IL_0cf6: Unknown result type (might be due to invalid IL or missing references) //IL_0cfb: Unknown result type (might be due to invalid IL or missing references) //IL_0d01: Unknown result type (might be due to invalid IL or missing references) //IL_0d0b: Unknown result type (might be due to invalid IL or missing references) //IL_0d10: Unknown result type (might be due to invalid IL or missing references) //IL_0d16: Unknown result type (might be due to invalid IL or missing references) //IL_0d20: Unknown result type (might be due to invalid IL or missing references) //IL_0d25: Unknown result type (might be due to invalid IL or missing references) //IL_0d2b: Unknown result type (might be due to invalid IL or missing references) //IL_0d35: Unknown result type (might be due to invalid IL or missing references) //IL_0d3a: Unknown result type (might be due to invalid IL or missing references) //IL_0d40: Unknown result type (might be due to invalid IL or missing references) //IL_0d45: Unknown result type (might be due to invalid IL or missing references) //IL_0d4b: Unknown result type (might be due to invalid IL or missing references) //IL_0d50: Unknown result type (might be due to invalid IL or missing references) //IL_0d5c: Unknown result type (might be due to invalid IL or missing references) //IL_0b73: Unknown result type (might be due to invalid IL or missing references) //IL_0b79: Unknown result type (might be due to invalid IL or missing references) //IL_0b7e: Unknown result type (might be due to invalid IL or missing references) //IL_0b84: Unknown result type (might be due to invalid IL or missing references) //IL_0b8e: Unknown result type (might be due to invalid IL or missing references) //IL_0b93: Unknown result type (might be due to invalid IL or missing references) //IL_0b99: Unknown result type (might be due to invalid IL or missing references) //IL_0ba3: Unknown result type (might be due to invalid IL or missing references) //IL_0ba8: Unknown result type (might be due to invalid IL or missing references) //IL_0bae: Unknown result type (might be due to invalid IL or missing references) //IL_0bb8: Unknown result type (might be due to invalid IL or missing references) //IL_0bbd: Unknown result type (might be due to invalid IL or missing references) //IL_0bc3: Unknown result type (might be due to invalid IL or missing references) //IL_0bc8: Unknown result type (might be due to invalid IL or missing references) //IL_0bce: Unknown result type (might be due to invalid IL or missing references) //IL_0bd3: Unknown result type (might be due to invalid IL or missing references) //IL_0bd9: Unknown result type (might be due to invalid IL or missing references) //IL_0bde: Unknown result type (might be due to invalid IL or missing references) //IL_0be9: Unknown result type (might be due to invalid IL or missing references) //IL_0bef: Unknown result type (might be due to invalid IL or missing references) //IL_0bf4: Unknown result type (might be due to invalid IL or missing references) //IL_0bfa: Unknown result type (might be due to invalid IL or missing references) //IL_0c04: Unknown result type (might be due to invalid IL or missing references) //IL_0c09: Unknown result type (might be due to invalid IL or missing references) //IL_0c0f: Unknown result type (might be due to invalid IL or missing references) //IL_0c14: Unknown result type (might be due to invalid IL or missing references) //IL_0c1a: Unknown result type (might be due to invalid IL or missing references) //IL_0c24: Unknown result type (might be due to invalid IL or missing references) //IL_0c29: Unknown result type (might be due to invalid IL or missing references) //IL_0c2f: Unknown result type (might be due to invalid IL or missing references) //IL_0c39: Unknown result type (might be due to invalid IL or missing references) //IL_0c3e: Unknown result type (might be due to invalid IL or missing references) //IL_0c44: Unknown result type (might be due to invalid IL or missing references) //IL_0c49: Unknown result type (might be due to invalid IL or missing references) //IL_0c4f: Unknown result type (might be due to invalid IL or missing references) //IL_0c54: Unknown result type (might be due to invalid IL or missing references) //IL_0c60: Unknown result type (might be due to invalid IL or missing references) //IL_0d77: Unknown result type (might be due to invalid IL or missing references) //IL_0d7c: Unknown result type (might be due to invalid IL or missing references) //IL_1c14: Unknown result type (might be due to invalid IL or missing references) //IL_1c1a: Unknown result type (might be due to invalid IL or missing references) //IL_1c1f: Unknown result type (might be due to invalid IL or missing references) //IL_1c25: Unknown result type (might be due to invalid IL or missing references) //IL_1c2f: Unknown result type (might be due to invalid IL or missing references) //IL_1c34: Unknown result type (might be due to invalid IL or missing references) //IL_1c3a: Unknown result type (might be due to invalid IL or missing references) //IL_1c44: Unknown result type (might be due to invalid IL or missing references) //IL_1c49: Unknown result type (might be due to invalid IL or missing references) //IL_1c4f: Unknown result type (might be due to invalid IL or missing references) //IL_1c59: Unknown result type (might be due to invalid IL or missing references) //IL_1c5e: Unknown result type (might be due to invalid IL or missing references) //IL_1c64: Unknown result type (might be due to invalid IL or missing references) //IL_1c69: Unknown result type (might be due to invalid IL or missing references) //IL_1c6f: Unknown result type (might be due to invalid IL or missing references) //IL_1c74: Unknown result type (might be due to invalid IL or missing references) //IL_1c7a: Unknown result type (might be due to invalid IL or missing references) //IL_1c7f: Unknown result type (might be due to invalid IL or missing references) //IL_1c8a: Unknown result type (might be due to invalid IL or missing references) //IL_1c90: Unknown result type (might be due to invalid IL or missing references) //IL_1c95: Unknown result type (might be due to invalid IL or missing references) //IL_1c9b: Unknown result type (might be due to invalid IL or missing references) //IL_1ca5: Unknown result type (might be due to invalid IL or missing references) //IL_1caa: Unknown result type (might be due to invalid IL or missing references) //IL_1cb0: Unknown result type (might be due to invalid IL or missing references) //IL_1cba: Unknown result type (might be due to invalid IL or missing references) //IL_1cbf: Unknown result type (might be due to invalid IL or missing references) //IL_1cc5: Unknown result type (might be due to invalid IL or missing references) //IL_1ccf: Unknown result type (might be due to invalid IL or missing references) //IL_1cd4: Unknown result type (might be due to invalid IL or missing references) //IL_1cda: Unknown result type (might be due to invalid IL or missing references) //IL_1cdf: Unknown result type (might be due to invalid IL or missing references) //IL_1ce5: Unknown result type (might be due to invalid IL or missing references) //IL_1cea: Unknown result type (might be due to invalid IL or missing references) //IL_1cf0: Unknown result type (might be due to invalid IL or missing references) //IL_1cf5: Unknown result type (might be due to invalid IL or missing references) //IL_1d01: Unknown result type (might be due to invalid IL or missing references) //IL_0db7: Unknown result type (might be due to invalid IL or missing references) //IL_0dbd: Unknown result type (might be due to invalid IL or missing references) //IL_0dc2: Unknown result type (might be due to invalid IL or missing references) //IL_0dc8: Unknown result type (might be due to invalid IL or missing references) //IL_0dcd: Unknown result type (might be due to invalid IL or missing references) //IL_0dd3: Unknown result type (might be due to invalid IL or missing references) //IL_0ddd: Unknown result type (might be due to invalid IL or missing references) //IL_0de2: Unknown result type (might be due to invalid IL or missing references) //IL_0de8: Unknown result type (might be due to invalid IL or missing references) //IL_0df2: Unknown result type (might be due to invalid IL or missing references) //IL_0df8: Unknown result type (might be due to invalid IL or missing references) //IL_0dfd: Unknown result type (might be due to invalid IL or missing references) //IL_0e03: Unknown result type (might be due to invalid IL or missing references) //IL_0e08: Unknown result type (might be due to invalid IL or missing references) //IL_0e0d: Unknown result type (might be due to invalid IL or missing references) //IL_0e18: Unknown result type (might be due to invalid IL or missing references) //IL_0e1e: Unknown result type (might be due to invalid IL or missing references) //IL_0e23: Unknown result type (might be due to invalid IL or missing references) //IL_0e29: Unknown result type (might be due to invalid IL or missing references) //IL_0e2e: Unknown result type (might be due to invalid IL or missing references) //IL_0e34: Unknown result type (might be due to invalid IL or missing references) //IL_0e3e: Unknown result type (might be due to invalid IL or missing references) //IL_0e43: Unknown result type (might be due to invalid IL or missing references) //IL_0e49: Unknown result type (might be due to invalid IL or missing references) //IL_0e53: Unknown result type (might be due to invalid IL or missing references) //IL_0e59: Unknown result type (might be due to invalid IL or missing references) //IL_0e5e: Unknown result type (might be due to invalid IL or missing references) //IL_0e64: Unknown result type (might be due to invalid IL or missing references) //IL_0e69: Unknown result type (might be due to invalid IL or missing references) //IL_0e6e: Unknown result type (might be due to invalid IL or missing references) //IL_0e7a: Unknown result type (might be due to invalid IL or missing references) //IL_1e22: Unknown result type (might be due to invalid IL or missing references) //IL_1e28: Unknown result type (might be due to invalid IL or missing references) //IL_1e2d: Unknown result type (might be due to invalid IL or missing references) //IL_1e33: Unknown result type (might be due to invalid IL or missing references) //IL_1e3d: Unknown result type (might be due to invalid IL or missing references) //IL_1e42: Unknown result type (might be due to invalid IL or missing references) //IL_1e48: Unknown result type (might be due to invalid IL or missing references) //IL_1e52: Unknown result type (might be due to invalid IL or missing references) //IL_1e57: Unknown result type (might be due to invalid IL or missing references) //IL_1e5d: Unknown result type (might be due to invalid IL or missing references) //IL_1e67: Unknown result type (might be due to invalid IL or missing references) //IL_1e6c: Unknown result type (might be due to invalid IL or missing references) //IL_1e72: Unknown result type (might be due to invalid IL or missing references) //IL_1e77: Unknown result type (might be due to invalid IL or missing references) //IL_1e7d: Unknown result type (might be due to invalid IL or missing references) //IL_1e82: Unknown result type (might be due to invalid IL or missing references) //IL_1e88: Unknown result type (might be due to invalid IL or missing references) //IL_1e8d: Unknown result type (might be due to invalid IL or missing references) //IL_1e98: Unknown result type (might be due to invalid IL or missing references) //IL_1e9e: Unknown result type (might be due to invalid IL or missing references) //IL_1ea3: Unknown result type (might be due to invalid IL or missing references) //IL_1ea9: Unknown result type (might be due to invalid IL or missing references) //IL_1eb3: Unknown result type (might be due to invalid IL or missing references) //IL_1eb8: Unknown result type (might be due to invalid IL or missing references) //IL_1ebe: Unknown result type (might be due to invalid IL or missing references) //IL_1ec8: Unknown result type (might be due to invalid IL or missing references) //IL_1ecd: Unknown result type (might be due to invalid IL or missing references) //IL_1ed3: Unknown result type (might be due to invalid IL or missing references) //IL_1edd: Unknown result type (might be due to invalid IL or missing references) //IL_1ee2: Unknown result type (might be due to invalid IL or missing references) //IL_1ee8: Unknown result type (might be due to invalid IL or missing references) //IL_1eed: Unknown result type (might be due to invalid IL or missing references) //IL_1ef3: Unknown result type (might be due to invalid IL or missing references) //IL_1ef8: Unknown result type (might be due to invalid IL or missing references) //IL_1f04: Unknown result type (might be due to invalid IL or missing references) //IL_1d1b: Unknown result type (might be due to invalid IL or missing references) //IL_1d21: Unknown result type (might be due to invalid IL or missing references) //IL_1d26: Unknown result type (might be due to invalid IL or missing references) //IL_1d2c: Unknown result type (might be due to invalid IL or missing references) //IL_1d36: Unknown result type (might be due to invalid IL or missing references) //IL_1d3b: Unknown result type (might be due to invalid IL or missing references) //IL_1d41: Unknown result type (might be due to invalid IL or missing references) //IL_1d4b: Unknown result type (might be due to invalid IL or missing references) //IL_1d50: Unknown result type (might be due to invalid IL or missing references) //IL_1d56: Unknown result type (might be due to invalid IL or missing references) //IL_1d60: Unknown result type (might be due to invalid IL or missing references) //IL_1d65: Unknown result type (might be due to invalid IL or missing references) //IL_1d6b: Unknown result type (might be due to invalid IL or missing references) //IL_1d70: Unknown result type (might be due to invalid IL or missing references) //IL_1d76: Unknown result type (might be due to invalid IL or missing references) //IL_1d7b: Unknown result type (might be due to invalid IL or missing references) //IL_1d81: Unknown result type (might be due to invalid IL or missing references) //IL_1d86: Unknown result type (might be due to invalid IL or missing references) //IL_1d91: Unknown result type (might be due to invalid IL or missing references) //IL_1d97: Unknown result type (might be due to invalid IL or missing references) //IL_1d9c: Unknown result type (might be due to invalid IL or missing references) //IL_1da2: Unknown result type (might be due to invalid IL or missing references) //IL_1dac: Unknown result type (might be due to invalid IL or missing references) //IL_1db1: Unknown result type (might be due to invalid IL or missing references) //IL_1db7: Unknown result type (might be due to invalid IL or missing references) //IL_1dbc: Unknown result type (might be due to invalid IL or missing references) //IL_1dc2: Unknown result type (might be due to invalid IL or missing references) //IL_1dcc: Unknown result type (might be due to invalid IL or missing references) //IL_1dd1: Unknown result type (might be due to invalid IL or missing references) //IL_1dd7: Unknown result type (might be due to invalid IL or missing references) //IL_1de1: Unknown result type (might be due to invalid IL or missing references) //IL_1de6: Unknown result type (might be due to invalid IL or missing references) //IL_1dec: Unknown result type (might be due to invalid IL or missing references) //IL_1df1: Unknown result type (might be due to invalid IL or missing references) //IL_1df7: Unknown result type (might be due to invalid IL or missing references) //IL_1dfc: Unknown result type (might be due to invalid IL or missing references) //IL_1e08: Unknown result type (might be due to invalid IL or missing references) //IL_0f45: Unknown result type (might be due to invalid IL or missing references) //IL_0f4b: Unknown result type (might be due to invalid IL or missing references) //IL_0f50: Unknown result type (might be due to invalid IL or missing references) //IL_0f56: Unknown result type (might be due to invalid IL or missing references) //IL_0f5b: Unknown result type (might be due to invalid IL or missing references) //IL_0f61: Unknown result type (might be due to invalid IL or missing references) //IL_0f6b: Unknown result type (might be due to invalid IL or missing references) //IL_0f70: Unknown result type (might be due to invalid IL or missing references) //IL_0f76: Unknown result type (might be due to invalid IL or missing references) //IL_0f80: Unknown result type (might be due to invalid IL or missing references) //IL_0f86: Unknown result type (might be due to invalid IL or missing references) //IL_0f8b: Unknown result type (might be due to invalid IL or missing references) //IL_0f91: Unknown result type (might be due to invalid IL or missing references) //IL_0f96: Unknown result type (might be due to invalid IL or missing references) //IL_0f9b: Unknown result type (might be due to invalid IL or missing references) //IL_0fa1: Unknown result type (might be due to invalid IL or missing references) //IL_0fab: Unknown result type (might be due to invalid IL or missing references) //IL_0fb0: Unknown result type (might be due to invalid IL or missing references) //IL_0fbb: Unknown result type (might be due to invalid IL or missing references) //IL_0fc1: Unknown result type (might be due to invalid IL or missing references) //IL_0fc6: Unknown result type (might be due to invalid IL or missing references) //IL_0fcc: Unknown result type (might be due to invalid IL or missing references) //IL_0fd1: Unknown result type (might be due to invalid IL or missing references) //IL_0fd7: Unknown result type (might be due to invalid IL or missing references) //IL_0fe1: Unknown result type (might be due to invalid IL or missing references) //IL_0fe6: Unknown result type (might be due to invalid IL or missing references) //IL_0fec: Unknown result type (might be due to invalid IL or missing references) //IL_0ff6: Unknown result type (might be due to invalid IL or missing references) //IL_0ffc: Unknown result type (might be due to invalid IL or missing references) //IL_1001: Unknown result type (might be due to invalid IL or missing references) //IL_1007: Unknown result type (might be due to invalid IL or missing references) //IL_100c: Unknown result type (might be due to invalid IL or missing references) //IL_1011: Unknown result type (might be due to invalid IL or missing references) //IL_1017: Unknown result type (might be due to invalid IL or missing references) //IL_1021: Unknown result type (might be due to invalid IL or missing references) //IL_1026: Unknown result type (might be due to invalid IL or missing references) //IL_1032: Unknown result type (might be due to invalid IL or missing references) //IL_0e94: Unknown result type (might be due to invalid IL or missing references) //IL_0e99: Unknown result type (might be due to invalid IL or missing references) //IL_1f1f: Unknown result type (might be due to invalid IL or missing references) //IL_1f24: Unknown result type (might be due to invalid IL or missing references) //IL_1100: Unknown result type (might be due to invalid IL or missing references) //IL_1106: Unknown result type (might be due to invalid IL or missing references) //IL_110b: Unknown result type (might be due to invalid IL or missing references) //IL_1111: Unknown result type (might be due to invalid IL or missing references) //IL_1116: Unknown result type (might be due to invalid IL or missing references) //IL_111c: Unknown result type (might be due to invalid IL or missing references) //IL_1126: Unknown result type (might be due to invalid IL or missing references) //IL_112b: Unknown result type (might be due to invalid IL or missing references) //IL_1131: Unknown result type (might be due to invalid IL or missing references) //IL_113b: Unknown result type (might be due to invalid IL or missing references) //IL_1141: Unknown result type (might be due to invalid IL or missing references) //IL_1146: Unknown result type (might be due to invalid IL or missing references) //IL_114c: Unknown result type (might be due to invalid IL or missing references) //IL_1151: Unknown result type (might be due to invalid IL or missing references) //IL_1156: Unknown result type (might be due to invalid IL or missing references) //IL_115c: Unknown result type (might be due to invalid IL or missing references) //IL_1166: Unknown result type (might be due to invalid IL or missing references) //IL_116b: Unknown result type (might be due to invalid IL or missing references) //IL_1176: Unknown result type (might be due to invalid IL or missing references) //IL_117c: Unknown result type (might be due to invalid IL or missing references) //IL_1181: Unknown result type (might be due to invalid IL or missing references) //IL_1187: Unknown result type (might be due to invalid IL or missing references) //IL_118c: Unknown result type (might be due to invalid IL or missing references) //IL_1192: Unknown result type (might be due to invalid IL or missing references) //IL_119c: Unknown result type (might be due to invalid IL or missing references) //IL_11a1: Unknown result type (might be due to invalid IL or missing references) //IL_11a7: Unknown result type (might be due to invalid IL or missing references) //IL_11b1: Unknown result type (might be due to invalid IL or missing references) //IL_11b7: Unknown result type (might be due to invalid IL or missing references) //IL_11bc: Unknown result type (might be due to invalid IL or missing references) //IL_11c2: Unknown result type (might be due to invalid IL or missing references) //IL_11c7: Unknown result type (might be due to invalid IL or missing references) //IL_11cc: Unknown result type (might be due to invalid IL or missing references) //IL_11d2: Unknown result type (might be due to invalid IL or missing references) //IL_11dc: Unknown result type (might be due to invalid IL or missing references) //IL_11e1: Unknown result type (might be due to invalid IL or missing references) //IL_11ed: Unknown result type (might be due to invalid IL or missing references) //IL_104c: Unknown result type (might be due to invalid IL or missing references) //IL_1051: Unknown result type (might be due to invalid IL or missing references) //IL_0ecd: Unknown result type (might be due to invalid IL or missing references) //IL_0ed2: Unknown result type (might be due to invalid IL or missing references) //IL_0ee0: Unknown result type (might be due to invalid IL or missing references) //IL_0ee5: Unknown result type (might be due to invalid IL or missing references) //IL_0f00: Unknown result type (might be due to invalid IL or missing references) //IL_0f05: Unknown result type (might be due to invalid IL or missing references) //IL_0f0e: Unknown result type (might be due to invalid IL or missing references) //IL_0f19: Unknown result type (might be due to invalid IL or missing references) //IL_0f2a: Unknown result type (might be due to invalid IL or missing references) //IL_0f2f: Unknown result type (might be due to invalid IL or missing references) //IL_0f34: Unknown result type (might be due to invalid IL or missing references) //IL_2dc0: Unknown result type (might be due to invalid IL or missing references) //IL_2dc6: Unknown result type (might be due to invalid IL or missing references) //IL_2dcb: Unknown result type (might be due to invalid IL or missing references) //IL_2dd1: Unknown result type (might be due to invalid IL or missing references) //IL_2ddb: Unknown result type (might be due to invalid IL or missing references) //IL_2de0: Unknown result type (might be due to invalid IL or missing references) //IL_2de6: Unknown result type (might be due to invalid IL or missing references) //IL_2df0: Unknown result type (might be due to invalid IL or missing references) //IL_2df5: Unknown result type (might be due to invalid IL or missing references) //IL_2dfb: Unknown result type (might be due to invalid IL or missing references) //IL_2e05: Unknown result type (might be due to invalid IL or missing references) //IL_2e0a: Unknown result type (might be due to invalid IL or missing references) //IL_2e10: Unknown result type (might be due to invalid IL or missing references) //IL_2e15: Unknown result type (might be due to invalid IL or missing references) //IL_2e1b: Unknown result type (might be due to invalid IL or missing references) //IL_2e20: Unknown result type (might be due to invalid IL or missing references) //IL_2e26: Unknown result type (might be due to invalid IL or missing references) //IL_2e2b: Unknown result type (might be due to invalid IL or missing references) //IL_2e36: Unknown result type (might be due to invalid IL or missing references) //IL_2e3c: Unknown result type (might be due to invalid IL or missing references) //IL_2e41: Unknown result type (might be due to invalid IL or missing references) //IL_2e47: Unknown result type (might be due to invalid IL or missing references) //IL_2e51: Unknown result type (might be due to invalid IL or missing references) //IL_2e56: Unknown result type (might be due to invalid IL or missing references) //IL_2e5c: Unknown result type (might be due to invalid IL or missing references) //IL_2e66: Unknown result type (might be due to invalid IL or missing references) //IL_2e6b: Unknown result type (might be due to invalid IL or missing references) //IL_2e71: Unknown result type (might be due to invalid IL or missing references) //IL_2e7b: Unknown result type (might be due to invalid IL or missing references) //IL_2e80: Unknown result type (might be due to invalid IL or missing references) //IL_2e86: Unknown result type (might be due to invalid IL or missing references) //IL_2e8b: Unknown result type (might be due to invalid IL or missing references) //IL_2e91: Unknown result type (might be due to invalid IL or missing references) //IL_2e96: Unknown result type (might be due to invalid IL or missing references) //IL_2e9c: Unknown result type (might be due to invalid IL or missing references) //IL_2ea1: Unknown result type (might be due to invalid IL or missing references) //IL_2ead: Unknown result type (might be due to invalid IL or missing references) //IL_1f60: Unknown result type (might be due to invalid IL or missing references) //IL_1f66: Unknown result type (might be due to invalid IL or missing references) //IL_1f6b: Unknown result type (might be due to invalid IL or missing references) //IL_1f71: Unknown result type (might be due to invalid IL or missing references) //IL_1f76: Unknown result type (might be due to invalid IL or missing references) //IL_1f7c: Unknown result type (might be due to invalid IL or missing references) //IL_1f86: Unknown result type (might be due to invalid IL or missing references) //IL_1f8b: Unknown result type (might be due to invalid IL or missing references) //IL_1f91: Unknown result type (might be due to invalid IL or missing references) //IL_1f9b: Unknown result type (might be due to invalid IL or missing references) //IL_1fa1: Unknown result type (might be due to invalid IL or missing references) //IL_1fa6: Unknown result type (might be due to invalid IL or missing references) //IL_1fac: Unknown result type (might be due to invalid IL or missing references) //IL_1fb1: Unknown result type (might be due to invalid IL or missing references) //IL_1fb6: Unknown result type (might be due to invalid IL or missing references) //IL_1fc1: Unknown result type (might be due to invalid IL or missing references) //IL_1fc7: Unknown result type (might be due to invalid IL or missing references) //IL_1fcc: Unknown result type (might be due to invalid IL or missing references) //IL_1fd2: Unknown result type (might be due to invalid IL or missing references) //IL_1fd7: Unknown result type (might be due to invalid IL or missing references) //IL_1fdd: Unknown result type (might be due to invalid IL or missing references) //IL_1fe7: Unknown result type (might be due to invalid IL or missing references) //IL_1fec: Unknown result type (might be due to invalid IL or missing references) //IL_1ff2: Unknown result type (might be due to invalid IL or missing references) //IL_1ffc: Unknown result type (might be due to invalid IL or missing references) //IL_2002: Unknown result type (might be due to invalid IL or missing references) //IL_2007: Unknown result type (might be due to invalid IL or missing references) //IL_200d: Unknown result type (might be due to invalid IL or missing references) //IL_2012: Unknown result type (might be due to invalid IL or missing references) //IL_2017: Unknown result type (might be due to invalid IL or missing references) //IL_2023: Unknown result type (might be due to invalid IL or missing references) //IL_12bb: Unknown result type (might be due to invalid IL or missing references) //IL_12c1: Unknown result type (might be due to invalid IL or missing references) //IL_12c6: Unknown result type (might be due to invalid IL or missing references) //IL_12cc: Unknown result type (might be due to invalid IL or missing references) //IL_12d1: Unknown result type (might be due to invalid IL or missing references) //IL_12d7: Unknown result type (might be due to invalid IL or missing references) //IL_12e1: Unknown result type (might be due to invalid IL or missing references) //IL_12e6: Unknown result type (might be due to invalid IL or missing references) //IL_12ec: Unknown result type (might be due to invalid IL or missing references) //IL_12f6: Unknown result type (might be due to invalid IL or missing references) //IL_12fc: Unknown result type (might be due to invalid IL or missing references) //IL_1301: Unknown result type (might be due to invalid IL or missing references) //IL_1307: Unknown result type (might be due to invalid IL or missing references) //IL_130c: Unknown result type (might be due to invalid IL or missing references) //IL_1311: Unknown result type (might be due to invalid IL or missing references) //IL_1317: Unknown result type (might be due to invalid IL or missing references) //IL_1321: Unknown result type (might be due to invalid IL or missing references) //IL_1326: Unknown result type (might be due to invalid IL or missing references) //IL_1331: Unknown result type (might be due to invalid IL or missing references) //IL_1337: Unknown result type (might be due to invalid IL or missing references) //IL_133c: Unknown result type (might be due to invalid IL or missing references) //IL_1342: Unknown result type (might be due to invalid IL or missing references) //IL_1347: Unknown result type (might be due to invalid IL or missing references) //IL_134d: Unknown result type (might be due to invalid IL or missing references) //IL_1357: Unknown result type (might be due to invalid IL or missing references) //IL_135c: Unknown result type (might be due to invalid IL or missing references) //IL_1362: Unknown result type (might be due to invalid IL or missing references) //IL_136c: Unknown result type (might be due to invalid IL or missing references) //IL_1372: Unknown result type (might be due to invalid IL or missing references) //IL_1377: Unknown result type (might be due to invalid IL or missing references) //IL_137d: Unknown result type (might be due to invalid IL or missing references) //IL_1382: Unknown result type (might be due to invalid IL or missing references) //IL_1387: Unknown result type (might be due to invalid IL or missing references) //IL_138d: Unknown result type (might be due to invalid IL or missing references) //IL_1397: Unknown result type (might be due to invalid IL or missing references) //IL_139c: Unknown result type (might be due to invalid IL or missing references) //IL_13a8: Unknown result type (might be due to invalid IL or missing references) //IL_1207: Unknown result type (might be due to invalid IL or missing references) //IL_120c: Unknown result type (might be due to invalid IL or missing references) //IL_1086: Unknown result type (might be due to invalid IL or missing references) //IL_108b: Unknown result type (might be due to invalid IL or missing references) //IL_109a: Unknown result type (might be due to invalid IL or missing references) //IL_109f: Unknown result type (might be due to invalid IL or missing references) //IL_10bb: Unknown result type (might be due to invalid IL or missing references) //IL_10c0: Unknown result type (might be due to invalid IL or missing references) //IL_10c9: Unknown result type (might be due to invalid IL or missing references) //IL_10d4: Unknown result type (might be due to invalid IL or missing references) //IL_10e5: Unknown result type (might be due to invalid IL or missing references) //IL_10ea: Unknown result type (might be due to invalid IL or missing references) //IL_10ef: Unknown result type (might be due to invalid IL or missing references) //IL_2fce: Unknown result type (might be due to invalid IL or missing references) //IL_2fd4: Unknown result type (might be due to invalid IL or missing references) //IL_2fd9: Unknown result type (might be due to invalid IL or missing references) //IL_2fdf: Unknown result type (might be due to invalid IL or missing references) //IL_2fe9: Unknown result type (might be due to invalid IL or missing references) //IL_2fee: Unknown result type (might be due to invalid IL or missing references) //IL_2ff4: Unknown result type (might be due to invalid IL or missing references) //IL_2ffe: Unknown result type (might be due to invalid IL or missing references) //IL_3003: Unknown result type (might be due to invalid IL or missing references) //IL_3009: Unknown result type (might be due to invalid IL or missing references) //IL_3013: Unknown result type (might be due to invalid IL or missing references) //IL_3018: Unknown result type (might be due to invalid IL or missing references) //IL_301e: Unknown result type (might be due to invalid IL or missing references) //IL_3023: Unknown result type (might be due to invalid IL or missing references) //IL_3029: Unknown result type (might be due to invalid IL or missing references) //IL_302e: Unknown result type (might be due to invalid IL or missing references) //IL_3034: Unknown result type (might be due to invalid IL or missing references) //IL_3039: Unknown result type (might be due to invalid IL or missing references) //IL_3044: Unknown result type (might be due to invalid IL or missing references) //IL_304a: Unknown result type (might be due to invalid IL or missing references) //IL_304f: Unknown result type (might be due to invalid IL or missing references) //IL_3055: Unknown result type (might be due to invalid IL or missing references) //IL_305f: Unknown result type (might be due to invalid IL or missing references) //IL_3064: Unknown result type (might be due to invalid IL or missing references) //IL_306a: Unknown result type (might be due to invalid IL or missing references) //IL_3074: Unknown result type (might be due to invalid IL or missing references) //IL_3079: Unknown result type (might be due to invalid IL or missing references) //IL_307f: Unknown result type (might be due to invalid IL or missing references) //IL_3089: Unknown result type (might be due to invalid IL or missing references) //IL_308e: Unknown result type (might be due to invalid IL or missing references) //IL_3094: Unknown result type (might be due to invalid IL or missing references) //IL_3099: Unknown result type (might be due to invalid IL or missing references) //IL_309f: Unknown result type (might be due to invalid IL or missing references) //IL_30a4: Unknown result type (might be due to invalid IL or missing references) //IL_30b0: Unknown result type (might be due to invalid IL or missing references) //IL_2ec7: Unknown result type (might be due to invalid IL or missing references) //IL_2ecd: Unknown result type (might be due to invalid IL or missing references) //IL_2ed2: Unknown result type (might be due to invalid IL or missing references) //IL_2ed8: Unknown result type (might be due to invalid IL or missing references) //IL_2ee2: Unknown result type (might be due to invalid IL or missing references) //IL_2ee7: Unknown result type (might be due to invalid IL or missing references) //IL_2eed: Unknown result type (might be due to invalid IL or missing references) //IL_2ef7: Unknown result type (might be due to invalid IL or missing references) //IL_2efc: Unknown result type (might be due to invalid IL or missing references) //IL_2f02: Unknown result type (might be due to invalid IL or missing references) //IL_2f0c: Unknown result type (might be due to invalid IL or missing references) //IL_2f11: Unknown result type (might be due to invalid IL or missing references) //IL_2f17: Unknown result type (might be due to invalid IL or missing references) //IL_2f1c: Unknown result type (might be due to invalid IL or missing references) //IL_2f22: Unknown result type (might be due to invalid IL or missing references) //IL_2f27: Unknown result type (might be due to invalid IL or missing references) //IL_2f2d: Unknown result type (might be due to invalid IL or missing references) //IL_2f32: Unknown result type (might be due to invalid IL or missing references) //IL_2f3d: Unknown result type (might be due to invalid IL or missing references) //IL_2f43: Unknown result type (might be due to invalid IL or missing references) //IL_2f48: Unknown result type (might be due to invalid IL or missing references) //IL_2f4e: Unknown result type (might be due to invalid IL or missing references) //IL_2f58: Unknown result type (might be due to invalid IL or missing references) //IL_2f5d: Unknown result type (might be due to invalid IL or missing references) //IL_2f63: Unknown result type (might be due to invalid IL or missing references) //IL_2f68: Unknown result type (might be due to invalid IL or missing references) //IL_2f6e: Unknown result type (might be due to invalid IL or missing references) //IL_2f78: Unknown result type (might be due to invalid IL or missing references) //IL_2f7d: Unknown result type (might be due to invalid IL or missing references) //IL_2f83: Unknown result type (might be due to invalid IL or missing references) //IL_2f8d: Unknown result type (might be due to invalid IL or missing references) //IL_2f92: Unknown result type (might be due to invalid IL or missing references) //IL_2f98: Unknown result type (might be due to invalid IL or missing references) //IL_2f9d: Unknown result type (might be due to invalid IL or missing references) //IL_2fa3: Unknown result type (might be due to invalid IL or missing references) //IL_2fa8: Unknown result type (might be due to invalid IL or missing references) //IL_2fb4: Unknown result type (might be due to invalid IL or missing references) //IL_20f1: Unknown result type (might be due to invalid IL or missing references) //IL_20f7: Unknown result type (might be due to invalid IL or missing references) //IL_20fc: Unknown result type (might be due to invalid IL or missing references) //IL_2102: Unknown result type (might be due to invalid IL or missing references) //IL_2107: Unknown result type (might be due to invalid IL or missing references) //IL_210d: Unknown result type (might be due to invalid IL or missing references) //IL_2117: Unknown result type (might be due to invalid IL or missing references) //IL_211c: Unknown result type (might be due to invalid IL or missing references) //IL_2122: Unknown result type (might be due to invalid IL or missing references) //IL_212c: Unknown result type (might be due to invalid IL or missing references) //IL_2132: Unknown result type (might be due to invalid IL or missing references) //IL_2137: Unknown result type (might be due to invalid IL or missing references) //IL_213d: Unknown result type (might be due to invalid IL or missing references) //IL_2142: Unknown result type (might be due to invalid IL or missing references) //IL_2147: Unknown result type (might be due to invalid IL or missing references) //IL_214d: Unknown result type (might be due to invalid IL or missing references) //IL_2157: Unknown result type (might be due to invalid IL or missing references) //IL_215c: Unknown result type (might be due to invalid IL or missing references) //IL_2167: Unknown result type (might be due to invalid IL or missing references) //IL_216d: Unknown result type (might be due to invalid IL or missing references) //IL_2172: Unknown result type (might be due to invalid IL or missing references) //IL_2178: Unknown result type (might be due to invalid IL or missing references) //IL_217d: Unknown result type (might be due to invalid IL or missing references) //IL_2183: Unknown result type (might be due to invalid IL or missing references) //IL_218d: Unknown result type (might be due to invalid IL or missing references) //IL_2192: Unknown result type (might be due to invalid IL or missing references) //IL_2198: Unknown result type (might be due to invalid IL or missing references) //IL_21a2: Unknown result type (might be due to invalid IL or missing references) //IL_21a8: Unknown result type (might be due to invalid IL or missing references) //IL_21ad: Unknown result type (might be due to invalid IL or missing references) //IL_21b3: Unknown result type (might be due to invalid IL or missing references) //IL_21b8: Unknown result type (might be due to invalid IL or missing references) //IL_21bd: Unknown result type (might be due to invalid IL or missing references) //IL_21c3: Unknown result type (might be due to invalid IL or missing references) //IL_21cd: Unknown result type (might be due to invalid IL or missing references) //IL_21d2: Unknown result type (might be due to invalid IL or missing references) //IL_21de: Unknown result type (might be due to invalid IL or missing references) //IL_203d: Unknown result type (might be due to invalid IL or missing references) //IL_2042: Unknown result type (might be due to invalid IL or missing references) //IL_1476: Unknown result type (might be due to invalid IL or missing references) //IL_147c: Unknown result type (might be due to invalid IL or missing references) //IL_1481: Unknown result type (might be due to invalid IL or missing references) //IL_1487: Unknown result type (might be due to invalid IL or missing references) //IL_148c: Unknown result type (might be due to invalid IL or missing references) //IL_1492: Unknown result type (might be due to invalid IL or missing references) //IL_149c: Unknown result type (might be due to invalid IL or missing references) //IL_14a2: Unknown result type (might be due to invalid IL or missing references) //IL_14a7: Unknown result type (might be due to invalid IL or missing references) //IL_14ad: Unknown result type (might be due to invalid IL or missing references) //IL_14b2: Unknown result type (might be due to invalid IL or missing references) //IL_14b7: Unknown result type (might be due to invalid IL or missing references) //IL_14bd: Unknown result type (might be due to invalid IL or missing references) //IL_14c7: Unknown result type (might be due to invalid IL or missing references) //IL_14cc: Unknown result type (might be due to invalid IL or missing references) //IL_14d7: Unknown result type (might be due to invalid IL or missing references) //IL_14dd: Unknown result type (might be due to invalid IL or missing references) //IL_14e2: Unknown result type (might be due to invalid IL or missing references) //IL_14e8: Unknown result type (might be due to invalid IL or missing references) //IL_14ed: Unknown result type (might be due to invalid IL or missing references) //IL_14f3: Unknown result type (might be due to invalid IL or missing references) //IL_14fd: Unknown result type (might be due to invalid IL or missing references) //IL_1502: Unknown result type (might be due to invalid IL or missing references) //IL_1508: Unknown result type (might be due to invalid IL or missing references) //IL_1512: Unknown result type (might be due to invalid IL or missing references) //IL_1518: Unknown result type (might be due to invalid IL or missing references) //IL_151d: Unknown result type (might be due to invalid IL or missing references) //IL_1523: Unknown result type (might be due to invalid IL or missing references) //IL_1528: Unknown result type (might be due to invalid IL or missing references) //IL_152d: Unknown result type (might be due to invalid IL or missing references) //IL_1533: Unknown result type (might be due to invalid IL or missing references) //IL_153d: Unknown result type (might be due to invalid IL or missing references) //IL_1542: Unknown result type (might be due to invalid IL or missing references) //IL_154e: Unknown result type (might be due to invalid IL or missing references) //IL_13c2: Unknown result type (might be due to invalid IL or missing references) //IL_13c7: Unknown result type (might be due to invalid IL or missing references) //IL_1241: Unknown result type (might be due to invalid IL or missing references) //IL_1246: Unknown result type (might be due to invalid IL or missing references) //IL_1255: Unknown result type (might be due to invalid IL or missing references) //IL_125a: Unknown result type (might be due to invalid IL or missing references) //IL_1276: Unknown result type (might be due to invalid IL or missing references) //IL_127b: Unknown result type (might be due to invalid IL or missing references) //IL_1284: Unknown result type (might be due to invalid IL or missing references) //IL_128f: Unknown result type (might be due to invalid IL or missing references) //IL_12a0: Unknown result type (might be due to invalid IL or missing references) //IL_12a5: Unknown result type (might be due to invalid IL or missing references) //IL_12aa: Unknown result type (might be due to invalid IL or missing references) //IL_30cb: Unknown result type (might be due to invalid IL or missing references) //IL_30d0: Unknown result type (might be due to invalid IL or missing references) //IL_22ac: Unknown result type (might be due to invalid IL or missing references) //IL_22b2: Unknown result type (might be due to invalid IL or missing references) //IL_22b7: Unknown result type (might be due to invalid IL or missing references) //IL_22bd: Unknown result type (might be due to invalid IL or missing references) //IL_22c2: Unknown result type (might be due to invalid IL or missing references) //IL_22c8: Unknown result type (might be due to invalid IL or missing references) //IL_22d2: Unknown result type (might be due to invalid IL or missing references) //IL_22d7: Unknown result type (might be due to invalid IL or missing references) //IL_22dd: Unknown result type (might be due to invalid IL or missing references) //IL_22e7: Unknown result type (might be due to invalid IL or missing references) //IL_22ed: Unknown result type (might be due to invalid IL or missing references) //IL_22f2: Unknown result type (might be due to invalid IL or missing references) //IL_22f8: Unknown result type (might be due to invalid IL or missing references) //IL_22fd: Unknown result type (might be due to invalid IL or missing references) //IL_2302: Unknown result type (might be due to invalid IL or missing references) //IL_2308: Unknown result type (might be due to invalid IL or missing references) //IL_2312: Unknown result type (might be due to invalid IL or missing references) //IL_2317: Unknown result type (might be due to invalid IL or missing references) //IL_2322: Unknown result type (might be due to invalid IL or missing references) //IL_2328: Unknown result type (might be due to invalid IL or missing references) //IL_232d: Unknown result type (might be due to invalid IL or missing references) //IL_2333: Unknown result type (might be due to invalid IL or missing references) //IL_2338: Unknown result type (might be due to invalid IL or missing references) //IL_233e: Unknown result type (might be due to invalid IL or missing references) //IL_2348: Unknown result type (might be due to invalid IL or missing references) //IL_234d: Unknown result type (might be due to invalid IL or missing references) //IL_2353: Unknown result type (might be due to invalid IL or missing references) //IL_235d: Unknown result type (might be due to invalid IL or missing references) //IL_2363: Unknown result type (might be due to invalid IL or missing references) //IL_2368: Unknown result type (might be due to invalid IL or missing references) //IL_236e: Unknown result type (might be due to invalid IL or missing references) //IL_2373: Unknown result type (might be due to invalid IL or missing references) //IL_2378: Unknown result type (might be due to invalid IL or missing references) //IL_237e: Unknown result type (might be due to invalid IL or missing references) //IL_2388: Unknown result type (might be due to invalid IL or missing references) //IL_238d: Unknown result type (might be due to invalid IL or missing references) //IL_2399: Unknown result type (might be due to invalid IL or missing references) //IL_21f8: Unknown result type (might be due to invalid IL or missing references) //IL_21fd: Unknown result type (might be due to invalid IL or missing references) //IL_2077: Unknown result type (might be due to invalid IL or missing references) //IL_207c: Unknown result type (might be due to invalid IL or missing references) //IL_208b: Unknown result type (might be due to invalid IL or missing references) //IL_2090: Unknown result type (might be due to invalid IL or missing references) //IL_20ac: Unknown result type (might be due to invalid IL or missing references) //IL_20b1: Unknown result type (might be due to invalid IL or missing references) //IL_20ba: Unknown result type (might be due to invalid IL or missing references) //IL_20c5: Unknown result type (might be due to invalid IL or missing references) //IL_20d6: Unknown result type (might be due to invalid IL or missing references) //IL_20db: Unknown result type (might be due to invalid IL or missing references) //IL_20e0: Unknown result type (might be due to invalid IL or missing references) //IL_161c: Unknown result type (might be due to invalid IL or missing references) //IL_1622: Unknown result type (might be due to invalid IL or missing references) //IL_1627: Unknown result type (might be due to invalid IL or missing references) //IL_162d: Unknown result type (might be due to invalid IL or missing references) //IL_1632: Unknown result type (might be due to invalid IL or missing references) //IL_1638: Unknown result type (might be due to invalid IL or missing references) //IL_1642: Unknown result type (might be due to invalid IL or missing references) //IL_1648: Unknown result type (might be due to invalid IL or missing references) //IL_164d: Unknown result type (might be due to invalid IL or missing references) //IL_1653: Unknown result type (might be due to invalid IL or missing references) //IL_1658: Unknown result type (might be due to invalid IL or missing references) //IL_165d: Unknown result type (might be due to invalid IL or missing references) //IL_1663: Unknown result type (might be due to invalid IL or missing references) //IL_166d: Unknown result type (might be due to invalid IL or missing references) //IL_1672: Unknown result type (might be due to invalid IL or missing references) //IL_167d: Unknown result type (might be due to invalid IL or missing references) //IL_1683: Unknown result type (might be due to invalid IL or missing references) //IL_1688: Unknown result type (might be due to invalid IL or missing references) //IL_168e: Unknown result type (might be due to invalid IL or missing references) //IL_1693: Unknown result type (might be due to invalid IL or missing references) //IL_1699: Unknown result type (might be due to invalid IL or missing references) //IL_16a3: Unknown result type (might be due to invalid IL or missing references) //IL_16a8: Unknown result type (might be due to invalid IL or missing references) //IL_16ae: Unknown result type (might be due to invalid IL or missing references) //IL_16b8: Unknown result type (might be due to invalid IL or missing references) //IL_16be: Unknown result type (might be due to invalid IL or missing references) //IL_16c3: Unknown result type (might be due to invalid IL or missing references) //IL_16c9: Unknown result type (might be due to invalid IL or missing references) //IL_16ce: Unknown result type (might be due to invalid IL or missing references) //IL_16d3: Unknown result type (might be due to invalid IL or missing references) //IL_16d9: Unknown result type (might be due to invalid IL or missing references) //IL_16e3: Unknown result type (might be due to invalid IL or missing references) //IL_16e8: Unknown result type (might be due to invalid IL or missing references) //IL_16f4: Unknown result type (might be due to invalid IL or missing references) //IL_1568: Unknown result type (might be due to invalid IL or missing references) //IL_156d: Unknown result type (might be due to invalid IL or missing references) //IL_13fc: Unknown result type (might be due to invalid IL or missing references) //IL_1401: Unknown result type (might be due to invalid IL or missing references) //IL_1410: Unknown result type (might be due to invalid IL or missing references) //IL_1415: Unknown result type (might be due to invalid IL or missing references) //IL_1431: Unknown result type (might be due to invalid IL or missing references) //IL_1436: Unknown result type (might be due to invalid IL or missing references) //IL_143f: Unknown result type (might be due to invalid IL or missing references) //IL_144a: Unknown result type (might be due to invalid IL or missing references) //IL_145b: Unknown result type (might be due to invalid IL or missing references) //IL_1460: Unknown result type (might be due to invalid IL or missing references) //IL_1465: Unknown result type (might be due to invalid IL or missing references) //IL_310c: Unknown result type (might be due to invalid IL or missing references) //IL_3112: Unknown result type (might be due to invalid IL or missing references) //IL_3117: Unknown result type (might be due to invalid IL or missing references) //IL_311d: Unknown result type (might be due to invalid IL or missing references) //IL_3122: Unknown result type (might be due to invalid IL or missing references) //IL_3128: Unknown result type (might be due to invalid IL or missing references) //IL_3132: Unknown result type (might be due to invalid IL or missing references) //IL_3137: Unknown result type (might be due to invalid IL or missing references) //IL_313d: Unknown result type (might be due to invalid IL or missing references) //IL_3147: Unknown result type (might be due to invalid IL or missing references) //IL_314d: Unknown result type (might be due to invalid IL or missing references) //IL_3152: Unknown result type (might be due to invalid IL or missing references) //IL_3158: Unknown result type (might be due to invalid IL or missing references) //IL_315d: Unknown result type (might be due to invalid IL or missing references) //IL_3162: Unknown result type (might be due to invalid IL or missing references) //IL_316d: Unknown result type (might be due to invalid IL or missing references) //IL_3173: Unknown result type (might be due to invalid IL or missing references) //IL_3178: Unknown result type (might be due to invalid IL or missing references) //IL_317e: Unknown result type (might be due to invalid IL or missing references) //IL_3183: Unknown result type (might be due to invalid IL or missing references) //IL_3189: Unknown result type (might be due to invalid IL or missing references) //IL_3193: Unknown result type (might be due to invalid IL or missing references) //IL_3198: Unknown result type (might be due to invalid IL or missing references) //IL_319e: Unknown result type (might be due to invalid IL or missing references) //IL_31a8: Unknown result type (might be due to invalid IL or missing references) //IL_31ae: Unknown result type (might be due to invalid IL or missing references) //IL_31b3: Unknown result type (might be due to invalid IL or missing references) //IL_31b9: Unknown result type (might be due to invalid IL or missing references) //IL_31be: Unknown result type (might be due to invalid IL or missing references) //IL_31c3: Unknown result type (might be due to invalid IL or missing references) //IL_31cf: Unknown result type (might be due to invalid IL or missing references) //IL_2467: Unknown result type (might be due to invalid IL or missing references) //IL_246d: Unknown result type (might be due to invalid IL or missing references) //IL_2472: Unknown result type (might be due to invalid IL or missing references) //IL_2478: Unknown result type (might be due to invalid IL or missing references) //IL_247d: Unknown result type (might be due to invalid IL or missing references) //IL_2483: Unknown result type (might be due to invalid IL or missing references) //IL_248d: Unknown result type (might be due to invalid IL or missing references) //IL_2492: Unknown result type (might be due to invalid IL or missing references) //IL_2498: Unknown result type (might be due to invalid IL or missing references) //IL_24a2: Unknown result type (might be due to invalid IL or missing references) //IL_24a8: Unknown result type (might be due to invalid IL or missing references) //IL_24ad: Unknown result type (might be due to invalid IL or missing references) //IL_24b3: Unknown result type (might be due to invalid IL or missing references) //IL_24b8: Unknown result type (might be due to invalid IL or missing references) //IL_24bd: Unknown result type (might be due to invalid IL or missing references) //IL_24c3: Unknown result type (might be due to invalid IL or missing references) //IL_24cd: Unknown result type (might be due to invalid IL or missing references) //IL_24d2: Unknown result type (might be due to invalid IL or missing references) //IL_24dd: Unknown result type (might be due to invalid IL or missing references) //IL_24e3: Unknown result type (might be due to invalid IL or missing references) //IL_24e8: Unknown result type (might be due to invalid IL or missing references) //IL_24ee: Unknown result type (might be due to invalid IL or missing references) //IL_24f3: Unknown result type (might be due to invalid IL or missing references) //IL_24f9: Unknown result type (might be due to invalid IL or missing references) //IL_2503: Unknown result type (might be due to invalid IL or missing references) //IL_2508: Unknown result type (might be due to invalid IL or missing references) //IL_250e: Unknown result type (might be due to invalid IL or missing references) //IL_2518: Unknown result type (might be due to invalid IL or missing references) //IL_251e: Unknown result type (might be due to invalid IL or missing references) //IL_2523: Unknown result type (might be due to invalid IL or missing references) //IL_2529: Unknown result type (might be due to invalid IL or missing references) //IL_252e: Unknown result type (might be due to invalid IL or missing references) //IL_2533: Unknown result type (might be due to invalid IL or missing references) //IL_2539: Unknown result type (might be due to invalid IL or missing references) //IL_2543: Unknown result type (might be due to invalid IL or missing references) //IL_2548: Unknown result type (might be due to invalid IL or missing references) //IL_2554: Unknown result type (might be due to invalid IL or missing references) //IL_23b3: Unknown result type (might be due to invalid IL or missing references) //IL_23b8: Unknown result type (might be due to invalid IL or missing references) //IL_2232: Unknown result type (might be due to invalid IL or missing references) //IL_2237: Unknown result type (might be due to invalid IL or missing references) //IL_2246: Unknown result type (might be due to invalid IL or missing references) //IL_224b: Unknown result type (might be due to invalid IL or missing references) //IL_2267: Unknown result type (might be due to invalid IL or missing references) //IL_226c: Unknown result type (might be due to invalid IL or missing references) //IL_2275: Unknown result type (might be due to invalid IL or missing references) //IL_2280: Unknown result type (might be due to invalid IL or missing references) //IL_2291: Unknown result type (might be due to invalid IL or missing references) //IL_2296: Unknown result type (might be due to invalid IL or missing references) //IL_229b: Unknown result type (might be due to invalid IL or missing references) //IL_17c2: Unknown result type (might be due to invalid IL or missing references) //IL_17c8: Unknown result type (might be due to invalid IL or missing references) //IL_17cd: Unknown result type (might be due to invalid IL or missing references) //IL_17d3: Unknown result type (might be due to invalid IL or missing references) //IL_17d8: Unknown result type (might be due to invalid IL or missing references) //IL_17de: Unknown result type (might be due to invalid IL or missing references) //IL_17e8: Unknown result type (might be due to invalid IL or missing references) //IL_17ee: Unknown result type (might be due to invalid IL or missing references) //IL_17f3: Unknown result type (might be due to invalid IL or missing references) //IL_17f9: Unknown result type (might be due to invalid IL or missing references) //IL_17fe: Unknown result type (might be due to invalid IL or missing references) //IL_1803: Unknown result type (might be due to invalid IL or missing references) //IL_1809: Unknown result type (might be due to invalid IL or missing references) //IL_1813: Unknown result type (might be due to invalid IL or missing references) //IL_1818: Unknown result type (might be due to invalid IL or missing references) //IL_1823: Unknown result type (might be due to invalid IL or missing references) //IL_1829: Unknown result type (might be due to invalid IL or missing references) //IL_182e: Unknown result type (might be due to invalid IL or missing references) //IL_1834: Unknown result type (might be due to invalid IL or missing references) //IL_1839: Unknown result type (might be due to invalid IL or missing references) //IL_183f: Unknown result type (might be due to invalid IL or missing references) //IL_1849: Unknown result type (might be due to invalid IL or missing references) //IL_184e: Unknown result type (might be due to invalid IL or missing references) //IL_1854: Unknown result type (might be due to invalid IL or missing references) //IL_185e: Unknown result type (might be due to invalid IL or missing references) //IL_1864: Unknown result type (might be due to invalid IL or missing references) //IL_1869: Unknown result type (might be due to invalid IL or missing references) //IL_186f: Unknown result type (might be due to invalid IL or missing references) //IL_1874: Unknown result type (might be due to invalid IL or missing references) //IL_1879: Unknown result type (might be due to invalid IL or missing references) //IL_187f: Unknown result type (might be due to invalid IL or missing references) //IL_1889: Unknown result type (might be due to invalid IL or missing references) //IL_188e: Unknown result type (might be due to invalid IL or missing references) //IL_189a: Unknown result type (might be due to invalid IL or missing references) //IL_170e: Unknown result type (might be due to invalid IL or missing references) //IL_1713: Unknown result type (might be due to invalid IL or missing references) //IL_15a2: Unknown result type (might be due to invalid IL or missing references) //IL_15a7: Unknown result type (might be due to invalid IL or missing references) //IL_15b6: Unknown result type (might be due to invalid IL or missing references) //IL_15bb: Unknown result type (might be due to invalid IL or missing references) //IL_15d7: Unknown result type (might be due to invalid IL or missing references) //IL_15dc: Unknown result type (might be due to invalid IL or missing references) //IL_15e5: Unknown result type (might be due to invalid IL or missing references) //IL_15f0: Unknown result type (might be due to invalid IL or missing references) //IL_1601: Unknown result type (might be due to invalid IL or missing references) //IL_1606: Unknown result type (might be due to invalid IL or missing references) //IL_160b: Unknown result type (might be due to invalid IL or missing references) //IL_329d: Unknown result type (might be due to invalid IL or missing references) //IL_32a3: Unknown result type (might be due to invalid IL or missing references) //IL_32a8: Unknown result type (might be due to invalid IL or missing references) //IL_32ae: Unknown result type (might be due to invalid IL or missing references) //IL_32b3: Unknown result type (might be due to invalid IL or missing references) //IL_32b9: Unknown result type (might be due to invalid IL or missing references) //IL_32c3: Unknown result type (might be due to invalid IL or missing references) //IL_32c8: Unknown result type (might be due to invalid IL or missing references) //IL_32ce: Unknown result type (might be due to invalid IL or missing references) //IL_32d8: Unknown result type (might be due to invalid IL or missing references) //IL_32de: Unknown result type (might be due to invalid IL or missing references) //IL_32e3: Unknown result type (might be due to invalid IL or missing references) //IL_32e9: Unknown result type (might be due to invalid IL or missing references) //IL_32ee: Unknown result type (might be due to invalid IL or missing references) //IL_32f3: Unknown result type (might be due to invalid IL or missing references) //IL_32f9: Unknown result type (might be due to invalid IL or missing references) //IL_3303: Unknown result type (might be due to invalid IL or missing references) //IL_3308: Unknown result type (might be due to invalid IL or missing references) //IL_3313: Unknown result type (might be due to invalid IL or missing references) //IL_3319: Unknown result type (might be due to invalid IL or missing references) //IL_331e: Unknown result type (might be due to invalid IL or missing references) //IL_3324: Unknown result type (might be due to invalid IL or missing references) //IL_3329: Unknown result type (might be due to invalid IL or missing references) //IL_332f: Unknown result type (might be due to invalid IL or missing references) //IL_3339: Unknown result type (might be due to invalid IL or missing references) //IL_333e: Unknown result type (might be due to invalid IL or missing references) //IL_3344: Unknown result type (might be due to invalid IL or missing references) //IL_334e: Unknown result type (might be due to invalid IL or missing references) //IL_3354: Unknown result type (might be due to invalid IL or missing references) //IL_3359: Unknown result type (might be due to invalid IL or missing references) //IL_335f: Unknown result type (might be due to invalid IL or missing references) //IL_3364: Unknown result type (might be due to invalid IL or missing references) //IL_3369: Unknown result type (might be due to invalid IL or missing references) //IL_336f: Unknown result type (might be due to invalid IL or missing references) //IL_3379: Unknown result type (might be due to invalid IL or missing references) //IL_337e: Unknown result type (might be due to invalid IL or missing references) //IL_338a: Unknown result type (might be due to invalid IL or missing references) //IL_31e9: Unknown result type (might be due to invalid IL or missing references) //IL_31ee: Unknown result type (might be due to invalid IL or missing references) //IL_2622: Unknown result type (might be due to invalid IL or missing references) //IL_2628: Unknown result type (might be due to invalid IL or missing references) //IL_262d: Unknown result type (might be due to invalid IL or missing references) //IL_2633: Unknown result type (might be due to invalid IL or missing references) //IL_2638: Unknown result type (might be due to invalid IL or missing references) //IL_263e: Unknown result type (might be due to invalid IL or missing references) //IL_2648: Unknown result type (might be due to invalid IL or missing references) //IL_264e: Unknown result type (might be due to invalid IL or missing references) //IL_2653: Unknown result type (might be due to invalid IL or missing references) //IL_2659: Unknown result type (might be due to invalid IL or missing references) //IL_265e: Unknown result type (might be due to invalid IL or missing references) //IL_2663: Unknown result type (might be due to invalid IL or missing references) //IL_2669: Unknown result type (might be due to invalid IL or missing references) //IL_2673: Unknown result type (might be due to invalid IL or missing references) //IL_2678: Unknown result type (might be due to invalid IL or missing references) //IL_2683: Unknown result type (might be due to invalid IL or missing references) //IL_2689: Unknown result type (might be due to invalid IL or missing references) //IL_268e: Unknown result type (might be due to invalid IL or missing references) //IL_2694: Unknown result type (might be due to invalid IL or missing references) //IL_2699: Unknown result type (might be due to invalid IL or missing references) //IL_269f: Unknown result type (might be due to invalid IL or missing references) //IL_26a9: Unknown result type (might be due to invalid IL or missing references) //IL_26ae: Unknown result type (might be due to invalid IL or missing references) //IL_26b4: Unknown result type (might be due to invalid IL or missing references) //IL_26be: Unknown result type (might be due to invalid IL or missing references) //IL_26c4: Unknown result type (might be due to invalid IL or missing references) //IL_26c9: Unknown result type (might be due to invalid IL or missing references) //IL_26cf: Unknown result type (might be due to invalid IL or missing references) //IL_26d4: Unknown result type (might be due to invalid IL or missing references) //IL_26d9: Unknown result type (might be due to invalid IL or missing references) //IL_26df: Unknown result type (might be due to invalid IL or missing references) //IL_26e9: Unknown result type (might be due to invalid IL or missing references) //IL_26ee: Unknown result type (might be due to invalid IL or missing references) //IL_26fa: Unknown result type (might be due to invalid IL or missing references) //IL_256e: Unknown result type (might be due to invalid IL or missing references) //IL_2573: Unknown result type (might be due to invalid IL or missing references) //IL_23ed: Unknown result type (might be due to invalid IL or missing references) //IL_23f2: Unknown result type (might be due to invalid IL or missing references) //IL_2401: Unknown result type (might be due to invalid IL or missing references) //IL_2406: Unknown result type (might be due to invalid IL or missing references) //IL_2422: Unknown result type (might be due to invalid IL or missing references) //IL_2427: Unknown result type (might be due to invalid IL or missing references) //IL_2430: Unknown result type (might be due to invalid IL or missing references) //IL_243b: Unknown result type (might be due to invalid IL or missing references) //IL_244c: Unknown result type (might be due to invalid IL or missing references) //IL_2451: Unknown result type (might be due to invalid IL or missing references) //IL_2456: Unknown result type (might be due to invalid IL or missing references) //IL_1968: Unknown result type (might be due to invalid IL or missing references) //IL_196e: Unknown result type (might be due to invalid IL or missing references) //IL_1973: Unknown result type (might be due to invalid IL or missing references) //IL_1979: Unknown result type (might be due to invalid IL or missing references) //IL_197e: Unknown result type (might be due to invalid IL or missing references) //IL_1984: Unknown result type (might be due to invalid IL or missing references) //IL_198e: Unknown result type (might be due to invalid IL or missing references) //IL_1994: Unknown result type (might be due to invalid IL or missing references) //IL_1999: Unknown result type (might be due to invalid IL or missing references) //IL_199f: Unknown result type (might be due to invalid IL or missing references) //IL_19a4: Unknown result type (might be due to invalid IL or missing references) //IL_19a9: Unknown result type (might be due to invalid IL or missing references) //IL_19af: Unknown result type (might be due to invalid IL or missing references) //IL_19b9: Unknown result type (might be due to invalid IL or missing references) //IL_19be: Unknown result type (might be due to invalid IL or missing references) //IL_19c9: Unknown result type (might be due to invalid IL or missing references) //IL_19cf: Unknown result type (might be due to invalid IL or missing references) //IL_19d4: Unknown result type (might be due to invalid IL or missing references) //IL_19da: Unknown result type (might be due to invalid IL or missing references) //IL_19df: Unknown result type (might be due to invalid IL or missing references) //IL_19e5: Unknown result type (might be due to invalid IL or missing references) //IL_19ef: Unknown result type (might be due to invalid IL or missing references) //IL_19f4: Unknown result type (might be due to invalid IL or missing references) //IL_19fa: Unknown result type (might be due to invalid IL or missing references) //IL_1a04: Unknown result type (might be due to invalid IL or missing references) //IL_1a0a: Unknown result type (might be due to invalid IL or missing references) //IL_1a0f: Unknown result type (might be due to invalid IL or missing references) //IL_1a15: Unknown result type (might be due to invalid IL or missing references) //IL_1a1a: Unknown result type (might be due to invalid IL or missing references) //IL_1a1f: Unknown result type (might be due to invalid IL or missing references) //IL_1a25: Unknown result type (might be due to invalid IL or missing references) //IL_1a2f: Unknown result type (might be due to invalid IL or missing references) //IL_1a34: Unknown result type (might be due to invalid IL or missing references) //IL_1a40: Unknown result type (might be due to invalid IL or missing references) //IL_18b4: Unknown result type (might be due to invalid IL or missing references) //IL_18b9: Unknown result type (might be due to invalid IL or missing references) //IL_1748: Unknown result type (might be due to invalid IL or missing references) //IL_174d: Unknown result type (might be due to invalid IL or missing references) //IL_175c: Unknown result type (might be due to invalid IL or missing references) //IL_1761: Unknown result type (might be due to invalid IL or missing references) //IL_177d: Unknown result type (might be due to invalid IL or missing references) //IL_1782: Unknown result type (might be due to invalid IL or missing references) //IL_178b: Unknown result type (might be due to invalid IL or missing references) //IL_1796: Unknown result type (might be due to invalid IL or missing references) //IL_17a7: Unknown result type (might be due to invalid IL or missing references) //IL_17ac: Unknown result type (might be due to invalid IL or missing references) //IL_17b1: Unknown result type (might be due to invalid IL or missing references) //IL_3458: Unknown result type (might be due to invalid IL or missing references) //IL_345e: Unknown result type (might be due to invalid IL or missing references) //IL_3463: Unknown result type (might be due to invalid IL or missing references) //IL_3469: Unknown result type (might be due to invalid IL or missing references) //IL_346e: Unknown result type (might be due to invalid IL or missing references) //IL_3474: Unknown result type (might be due to invalid IL or missing references) //IL_347e: Unknown result type (might be due to invalid IL or missing references) //IL_3483: Unknown result type (might be due to invalid IL or missing references) //IL_3489: Unknown result type (might be due to invalid IL or missing references) //IL_3493: Unknown result type (might be due to invalid IL or missing references) //IL_3499: Unknown result type (might be due to invalid IL or missing references) //IL_349e: Unknown result type (might be due to invalid IL or missing references) //IL_34a4: Unknown result type (might be due to invalid IL or missing references) //IL_34a9: Unknown result type (might be due to invalid IL or missing references) //IL_34ae: Unknown result type (might be due to invalid IL or missing references) //IL_34b4: Unknown result type (might be due to invalid IL or missing references) //IL_34be: Unknown result type (might be due to invalid IL or missing references) //IL_34c3: Unknown result type (might be due to invalid IL or missing references) //IL_34ce: Unknown result type (might be due to invalid IL or missing references) //IL_34d4: Unknown result type (might be due to invalid IL or missing references) //IL_34d9: Unknown result type (might be due to invalid IL or missing references) //IL_34df: Unknown result type (might be due to invalid IL or missing references) //IL_34e4: Unknown result type (might be due to invalid IL or missing references) //IL_34ea: Unknown result type (might be due to invalid IL or missing references) //IL_34f4: Unknown result type (might be due to invalid IL or missing references) //IL_34f9: Unknown result type (might be due to invalid IL or missing references) //IL_34ff: Unknown result type (might be due to invalid IL or missing references) //IL_3509: Unknown result type (might be due to invalid IL or missing references) //IL_350f: Unknown result type (might be due to invalid IL or missing references) //IL_3514: Unknown result type (might be due to invalid IL or missing references) //IL_351a: Unknown result type (might be due to invalid IL or missing references) //IL_351f: Unknown result type (might be due to invalid IL or missing references) //IL_3524: Unknown result type (might be due to invalid IL or missing references) //IL_352a: Unknown result type (might be due to invalid IL or missing references) //IL_3534: Unknown result type (might be due to invalid IL or missing references) //IL_3539: Unknown result type (might be due to invalid IL or missing references) //IL_3545: Unknown result type (might be due to invalid IL or missing references) //IL_33a4: Unknown result type (might be due to invalid IL or missing references) //IL_33a9: Unknown result type (might be due to invalid IL or missing references) //IL_3223: Unknown result type (might be due to invalid IL or missing references) //IL_3228: Unknown result type (might be due to invalid IL or missing references) //IL_3237: Unknown result type (might be due to invalid IL or missing references) //IL_323c: Unknown result type (might be due to invalid IL or missing references) //IL_3258: Unknown result type (might be due to invalid IL or missing references) //IL_325d: Unknown result type (might be due to invalid IL or missing references) //IL_3266: Unknown result type (might be due to invalid IL or missing references) //IL_3271: Unknown result type (might be due to invalid IL or missing references) //IL_3282: Unknown result type (might be due to invalid IL or missing references) //IL_3287: Unknown result type (might be due to invalid IL or missing references) //IL_328c: Unknown result type (might be due to invalid IL or missing references) //IL_27c8: Unknown result type (might be due to invalid IL or missing references) //IL_27ce: Unknown result type (might be due to invalid IL or missing references) //IL_27d3: Unknown result type (might be due to invalid IL or missing references) //IL_27d9: Unknown result type (might be due to invalid IL or missing references) //IL_27de: Unknown result type (might be due to invalid IL or missing references) //IL_27e4: Unknown result type (might be due to invalid IL or missing references) //IL_27ee: Unknown result type (might be due to invalid IL or missing references) //IL_27f4: Unknown result type (might be due to invalid IL or missing references) //IL_27f9: Unknown result type (might be due to invalid IL or missing references) //IL_27ff: Unknown result type (might be due to invalid IL or missing references) //IL_2804: Unknown result type (might be due to invalid IL or missing references) //IL_2809: Unknown result type (might be due to invalid IL or missing references) //IL_280f: Unknown result type (might be due to invalid IL or missing references) //IL_2819: Unknown result type (might be due to invalid IL or missing references) //IL_281e: Unknown result type (might be due to invalid IL or missing references) //IL_2829: Unknown result type (might be due to invalid IL or missing references) //IL_282f: Unknown result type (might be due to invalid IL or missing references) //IL_2834: Unknown result type (might be due to invalid IL or missing references) //IL_283a: Unknown result type (might be due to invalid IL or missing references) //IL_283f: Unknown result type (might be due to invalid IL or missing references) //IL_2845: Unknown result type (might be due to invalid IL or missing references) //IL_284f: Unknown result type (might be due to invalid IL or missing references) //IL_2854: Unknown result type (might be due to invalid IL or missing references) //IL_285a: Unknown result type (might be due to invalid IL or missing references) //IL_2864: Unknown result type (might be due to invalid IL or missing references) //IL_286a: Unknown result type (might be due to invalid IL or missing references) //IL_286f: Unknown result type (might be due to invalid IL or missing references) //IL_2875: Unknown result type (might be due to invalid IL or missing references) //IL_287a: Unknown result type (might be due to invalid IL or missing references) //IL_287f: Unknown result type (might be due to invalid IL or missing references) //IL_2885: Unknown result type (might be due to invalid IL or missing references) //IL_288f: Unknown result type (might be due to invalid IL or missing references) //IL_2894: Unknown result type (might be due to invalid IL or missing references) //IL_28a0: Unknown result type (might be due to invalid IL or missing references) //IL_2714: Unknown result type (might be due to invalid IL or missing references) //IL_2719: Unknown result type (might be due to invalid IL or missing references) //IL_25a8: Unknown result type (might be due to invalid IL or missing references) //IL_25ad: Unknown result type (might be due to invalid IL or missing references) //IL_25bc: Unknown result type (might be due to invalid IL or missing references) //IL_25c1: Unknown result type (might be due to invalid IL or missing references) //IL_25dd: Unknown result type (might be due to invalid IL or missing references) //IL_25e2: Unknown result type (might be due to invalid IL or missing references) //IL_25eb: Unknown result type (might be due to invalid IL or missing references) //IL_25f6: Unknown result type (might be due to invalid IL or missing references) //IL_2607: Unknown result type (might be due to invalid IL or missing references) //IL_260c: Unknown result type (might be due to invalid IL or missing references) //IL_2611: Unknown result type (might be due to invalid IL or missing references) //IL_1b10: Unknown result type (might be due to invalid IL or missing references) //IL_1b15: Unknown result type (might be due to invalid IL or missing references) //IL_1b24: Unknown result type (might be due to invalid IL or missing references) //IL_1b29: Unknown result type (might be due to invalid IL or missing references) //IL_1b40: Unknown result type (might be due to invalid IL or missing references) //IL_1b45: Unknown result type (might be due to invalid IL or missing references) //IL_1b61: Unknown result type (might be due to invalid IL or missing references) //IL_1b66: Unknown result type (might be due to invalid IL or missing references) //IL_1b75: Unknown result type (might be due to invalid IL or missing references) //IL_1b7a: Unknown result type (might be due to invalid IL or missing references) //IL_1b8b: Unknown result type (might be due to invalid IL or missing references) //IL_1b96: Unknown result type (might be due to invalid IL or missing references) //IL_1b9b: Unknown result type (might be due to invalid IL or missing references) //IL_1bc4: Unknown result type (might be due to invalid IL or missing references) //IL_1bc9: Unknown result type (might be due to invalid IL or missing references) //IL_1be0: Unknown result type (might be due to invalid IL or missing references) //IL_1be5: Unknown result type (might be due to invalid IL or missing references) //IL_1bea: Unknown result type (might be due to invalid IL or missing references) //IL_1a5a: Unknown result type (might be due to invalid IL or missing references) //IL_1a5f: Unknown result type (might be due to invalid IL or missing references) //IL_18ee: Unknown result type (might be due to invalid IL or missing references) //IL_18f3: Unknown result type (might be due to invalid IL or missing references) //IL_1902: Unknown result type (might be due to invalid IL or missing references) //IL_1907: Unknown result type (might be due to invalid IL or missing references) //IL_1923: Unknown result type (might be due to invalid IL or missing references) //IL_1928: Unknown result type (might be due to invalid IL or missing references) //IL_1931: Unknown result type (might be due to invalid IL or missing references) //IL_193c: Unknown result type (might be due to invalid IL or missing references) //IL_194d: Unknown result type (might be due to invalid IL or missing references) //IL_1952: Unknown result type (might be due to invalid IL or missing references) //IL_1957: Unknown result type (might be due to invalid IL or missing references) //IL_3613: Unknown result type (might be due to invalid IL or missing references) //IL_3619: Unknown result type (might be due to invalid IL or missing references) //IL_361e: Unknown result type (might be due to invalid IL or missing references) //IL_3624: Unknown result type (might be due to invalid IL or missing references) //IL_3629: Unknown result type (might be due to invalid IL or missing references) //IL_362f: Unknown result type (might be due to invalid IL or missing references) //IL_3639: Unknown result type (might be due to invalid IL or missing references) //IL_363e: Unknown result type (might be due to invalid IL or missing references) //IL_3644: Unknown result type (might be due to invalid IL or missing references) //IL_364e: Unknown result type (might be due to invalid IL or missing references) //IL_3654: Unknown result type (might be due to invalid IL or missing references) //IL_3659: Unknown result type (might be due to invalid IL or missing references) //IL_365f: Unknown result type (might be due to invalid IL or missing references) //IL_3664: Unknown result type (might be due to invalid IL or missing references) //IL_3669: Unknown result type (might be due to invalid IL or missing references) //IL_366f: Unknown result type (might be due to invalid IL or missing references) //IL_3679: Unknown result type (might be due to invalid IL or missing references) //IL_367e: Unknown result type (might be due to invalid IL or missing references) //IL_3689: Unknown result type (might be due to invalid IL or missing references) //IL_368f: Unknown result type (might be due to invalid IL or missing references) //IL_3694: Unknown result type (might be due to invalid IL or missing references) //IL_369a: Unknown result type (might be due to invalid IL or missing references) //IL_369f: Unknown result type (might be due to invalid IL or missing references) //IL_36a5: Unknown result type (might be due to invalid IL or missing references) //IL_36af: Unknown result type (might be due to invalid IL or missing references) //IL_36b4: Unknown result type (might be due to invalid IL or missing references) //IL_36ba: Unknown result type (might be due to invalid IL or missing references) //IL_36c4: Unknown result type (might be due to invalid IL or missing references) //IL_36ca: Unknown result type (might be due to invalid IL or missing references) //IL_36cf: Unknown result type (might be due to invalid IL or missing references) //IL_36d5: Unknown result type (might be due to invalid IL or missing references) //IL_36da: Unknown result type (might be due to invalid IL or missing references) //IL_36df: Unknown result type (might be due to invalid IL or missing references) //IL_36e5: Unknown result type (might be due to invalid IL or missing references) //IL_36ef: Unknown result type (might be due to invalid IL or missing references) //IL_36f4: Unknown result type (might be due to invalid IL or missing references) //IL_3700: Unknown result type (might be due to invalid IL or missing references) //IL_355f: Unknown result type (might be due to invalid IL or missing references) //IL_3564: Unknown result type (might be due to invalid IL or missing references) //IL_33de: Unknown result type (might be due to invalid IL or missing references) //IL_33e3: Unknown result type (might be due to invalid IL or missing references) //IL_33f2: Unknown result type (might be due to invalid IL or missing references) //IL_33f7: Unknown result type (might be due to invalid IL or missing references) //IL_3413: Unknown result type (might be due to invalid IL or missing references) //IL_3418: Unknown result type (might be due to invalid IL or missing references) //IL_3421: Unknown result type (might be due to invalid IL or missing references) //IL_342c: Unknown result type (might be due to invalid IL or missing references) //IL_343d: Unknown result type (might be due to invalid IL or missing references) //IL_3442: Unknown result type (might be due to invalid IL or missing references) //IL_3447: Unknown result type (might be due to invalid IL or missing references) //IL_296e: Unknown result type (might be due to invalid IL or missing references) //IL_2974: Unknown result type (might be due to invalid IL or missing references) //IL_2979: Unknown result type (might be due to invalid IL or missing references) //IL_297f: Unknown result type (might be due to invalid IL or missing references) //IL_2984: Unknown result type (might be due to invalid IL or missing references) //IL_298a: Unknown result type (might be due to invalid IL or missing references) //IL_2994: Unknown result type (might be due to invalid IL or missing references) //IL_299a: Unknown result type (might be due to invalid IL or missing references) //IL_299f: Unknown result type (might be due to invalid IL or missing references) //IL_29a5: Unknown result type (might be due to invalid IL or missing references) //IL_29aa: Unknown result type (might be due to invalid IL or missing references) //IL_29af: Unknown result type (might be due to invalid IL or missing references) //IL_29b5: Unknown result type (might be due to invalid IL or missing references) //IL_29bf: Unknown result type (might be due to invalid IL or missing references) //IL_29c4: Unknown result type (might be due to invalid IL or missing references) //IL_29cf: Unknown result type (might be due to invalid IL or missing references) //IL_29d5: Unknown result type (might be due to invalid IL or missing references) //IL_29da: Unknown result type (might be due to invalid IL or missing references) //IL_29e0: Unknown result type (might be due to invalid IL or missing references) //IL_29e5: Unknown result type (might be due to invalid IL or missing references) //IL_29eb: Unknown result type (might be due to invalid IL or missing references) //IL_29f5: Unknown result type (might be due to invalid IL or missing references) //IL_29fa: Unknown result type (might be due to invalid IL or missing references) //IL_2a00: Unknown result type (might be due to invalid IL or missing references) //IL_2a0a: Unknown result type (might be due to invalid IL or missing references) //IL_2a10: Unknown result type (might be due to invalid IL or missing references) //IL_2a15: Unknown result type (might be due to invalid IL or missing references) //IL_2a1b: Unknown result type (might be due to invalid IL or missing references) //IL_2a20: Unknown result type (might be due to invalid IL or missing references) //IL_2a25: Unknown result type (might be due to invalid IL or missing references) //IL_2a2b: Unknown result type (might be due to invalid IL or missing references) //IL_2a35: Unknown result type (might be due to invalid IL or missing references) //IL_2a3a: Unknown result type (might be due to invalid IL or missing references) //IL_2a46: Unknown result type (might be due to invalid IL or missing references) //IL_28ba: Unknown result type (might be due to invalid IL or missing references) //IL_28bf: Unknown result type (might be due to invalid IL or missing references) //IL_274e: Unknown result type (might be due to invalid IL or missing references) //IL_2753: Unknown result type (might be due to invalid IL or missing references) //IL_2762: Unknown result type (might be due to invalid IL or missing references) //IL_2767: Unknown result type (might be due to invalid IL or missing references) //IL_2783: Unknown result type (might be due to invalid IL or missing references) //IL_2788: Unknown result type (might be due to invalid IL or missing references) //IL_2791: Unknown result type (might be due to invalid IL or missing references) //IL_279c: Unknown result type (might be due to invalid IL or missing references) //IL_27ad: Unknown result type (might be due to invalid IL or missing references) //IL_27b2: Unknown result type (might be due to invalid IL or missing references) //IL_27b7: Unknown result type (might be due to invalid IL or missing references) //IL_1a94: Unknown result type (might be due to invalid IL or missing references) //IL_1a99: Unknown result type (might be due to invalid IL or missing references) //IL_1aa8: Unknown result type (might be due to invalid IL or missing references) //IL_1aad: Unknown result type (might be due to invalid IL or missing references) //IL_1ac9: Unknown result type (might be due to invalid IL or missing references) //IL_1ace: Unknown result type (might be due to invalid IL or missing references) //IL_1ad7: Unknown result type (might be due to invalid IL or missing references) //IL_1ae2: Unknown result type (might be due to invalid IL or missing references) //IL_1af3: Unknown result type (might be due to invalid IL or missing references) //IL_1af8: Unknown result type (might be due to invalid IL or missing references) //IL_1afd: Unknown result type (might be due to invalid IL or missing references) //IL_37ce: Unknown result type (might be due to invalid IL or missing references) //IL_37d4: Unknown result type (might be due to invalid IL or missing references) //IL_37d9: Unknown result type (might be due to invalid IL or missing references) //IL_37df: Unknown result type (might be due to invalid IL or missing references) //IL_37e4: Unknown result type (might be due to invalid IL or missing references) //IL_37ea: Unknown result type (might be due to invalid IL or missing references) //IL_37f4: Unknown result type (might be due to invalid IL or missing references) //IL_37fa: Unknown result type (might be due to invalid IL or missing references) //IL_37ff: Unknown result type (might be due to invalid IL or missing references) //IL_3805: Unknown result type (might be due to invalid IL or missing references) //IL_380a: Unknown result type (might be due to invalid IL or missing references) //IL_380f: Unknown result type (might be due to invalid IL or missing references) //IL_3815: Unknown result type (might be due to invalid IL or missing references) //IL_381f: Unknown result type (might be due to invalid IL or missing references) //IL_3824: Unknown result type (might be due to invalid IL or missing references) //IL_382f: Unknown result type (might be due to invalid IL or missing references) //IL_3835: Unknown result type (might be due to invalid IL or missing references) //IL_383a: Unknown result type (might be due to invalid IL or missing references) //IL_3840: Unknown result type (might be due to invalid IL or missing references) //IL_3845: Unknown result type (might be due to invalid IL or missing references) //IL_384b: Unknown result type (might be due to invalid IL or missing references) //IL_3855: Unknown result type (might be due to invalid IL or missing references) //IL_385a: Unknown result type (might be due to invalid IL or missing references) //IL_3860: Unknown result type (might be due to invalid IL or missing references) //IL_386a: Unknown result type (might be due to invalid IL or missing references) //IL_3870: Unknown result type (might be due to invalid IL or missing references) //IL_3875: Unknown result type (might be due to invalid IL or missing references) //IL_387b: Unknown result type (might be due to invalid IL or missing references) //IL_3880: Unknown result type (might be due to invalid IL or missing references) //IL_3885: Unknown result type (might be due to invalid IL or missing references) //IL_388b: Unknown result type (might be due to invalid IL or missing references) //IL_3895: Unknown result type (might be due to invalid IL or missing references) //IL_389a: Unknown result type (might be due to invalid IL or missing references) //IL_38a6: Unknown result type (might be due to invalid IL or missing references) //IL_371a: Unknown result type (might be due to invalid IL or missing references) //IL_371f: Unknown result type (might be due to invalid IL or missing references) //IL_3599: Unknown result type (might be due to invalid IL or missing references) //IL_359e: Unknown result type (might be due to invalid IL or missing references) //IL_35ad: Unknown result type (might be due to invalid IL or missing references) //IL_35b2: Unknown result type (might be due to invalid IL or missing references) //IL_35ce: Unknown result type (might be due to invalid IL or missing references) //IL_35d3: Unknown result type (might be due to invalid IL or missing references) //IL_35dc: Unknown result type (might be due to invalid IL or missing references) //IL_35e7: Unknown result type (might be due to invalid IL or missing references) //IL_35f8: Unknown result type (might be due to invalid IL or missing references) //IL_35fd: Unknown result type (might be due to invalid IL or missing references) //IL_3602: Unknown result type (might be due to invalid IL or missing references) //IL_2b14: Unknown result type (might be due to invalid IL or missing references) //IL_2b1a: Unknown result type (might be due to invalid IL or missing references) //IL_2b1f: Unknown result type (might be due to invalid IL or missing references) //IL_2b25: Unknown result type (might be due to invalid IL or missing references) //IL_2b2a: Unknown result type (might be due to invalid IL or missing references) //IL_2b30: Unknown result type (might be due to invalid IL or missing references) //IL_2b3a: Unknown result type (might be due to invalid IL or missing references) //IL_2b40: Unknown result type (might be due to invalid IL or missing references) //IL_2b45: Unknown result type (might be due to invalid IL or missing references) //IL_2b4b: Unknown result type (might be due to invalid IL or missing references) //IL_2b50: Unknown result type (might be due to invalid IL or missing references) //IL_2b55: Unknown result type (might be due to invalid IL or missing references) //IL_2b5b: Unknown result type (might be due to invalid IL or missing references) //IL_2b65: Unknown result type (might be due to invalid IL or missing references) //IL_2b6a: Unknown result type (might be due to invalid IL or missing references) //IL_2b75: Unknown result type (might be due to invalid IL or missing references) //IL_2b7b: Unknown result type (might be due to invalid IL or missing references) //IL_2b80: Unknown result type (might be due to invalid IL or missing references) //IL_2b86: Unknown result type (might be due to invalid IL or missing references) //IL_2b8b: Unknown result type (might be due to invalid IL or missing references) //IL_2b91: Unknown result type (might be due to invalid IL or missing references) //IL_2b9b: Unknown result type (might be due to invalid IL or missing references) //IL_2ba0: Unknown result type (might be due to invalid IL or missing references) //IL_2ba6: Unknown result type (might be due to invalid IL or missing references) //IL_2bb0: Unknown result type (might be due to invalid IL or missing references) //IL_2bb6: Unknown result type (might be due to invalid IL or missing references) //IL_2bbb: Unknown result type (might be due to invalid IL or missing references) //IL_2bc1: Unknown result type (might be due to invalid IL or missing references) //IL_2bc6: Unknown result type (might be due to invalid IL or missing references) //IL_2bcb: Unknown result type (might be due to invalid IL or missing references) //IL_2bd1: Unknown result type (might be due to invalid IL or missing references) //IL_2bdb: Unknown result type (might be due to invalid IL or missing references) //IL_2be0: Unknown result type (might be due to invalid IL or missing references) //IL_2bec: Unknown result type (might be due to invalid IL or missing references) //IL_2a60: Unknown result type (might be due to invalid IL or missing references) //IL_2a65: Unknown result type (might be due to invalid IL or missing references) //IL_28f4: Unknown result type (might be due to invalid IL or missing references) //IL_28f9: Unknown result type (might be due to invalid IL or missing references) //IL_2908: Unknown result type (might be due to invalid IL or missing references) //IL_290d: Unknown result type (might be due to invalid IL or missing references) //IL_2929: Unknown result type (might be due to invalid IL or missing references) //IL_292e: Unknown result type (might be due to invalid IL or missing references) //IL_2937: Unknown result type (might be due to invalid IL or missing references) //IL_2942: Unknown result type (might be due to invalid IL or missing references) //IL_2953: Unknown result type (might be due to invalid IL or missing references) //IL_2958: Unknown result type (might be due to invalid IL or missing references) //IL_295d: Unknown result type (might be due to invalid IL or missing references) //IL_3974: Unknown result type (might be due to invalid IL or missing references) //IL_397a: Unknown result type (might be due to invalid IL or missing references) //IL_397f: Unknown result type (might be due to invalid IL or missing references) //IL_3985: Unknown result type (might be due to invalid IL or missing references) //IL_398a: Unknown result type (might be due to invalid IL or missing references) //IL_3990: Unknown result type (might be due to invalid IL or missing references) //IL_399a: Unknown result type (might be due to invalid IL or missing references) //IL_39a0: Unknown result type (might be due to invalid IL or missing references) //IL_39a5: Unknown result type (might be due to invalid IL or missing references) //IL_39ab: Unknown result type (might be due to invalid IL or missing references) //IL_39b0: Unknown result type (might be due to invalid IL or missing references) //IL_39b5: Unknown result type (might be due to invalid IL or missing references) //IL_39bb: Unknown result type (might be due to invalid IL or missing references) //IL_39c5: Unknown result type (might be due to invalid IL or missing references) //IL_39ca: Unknown result type (might be due to invalid IL or missing references) //IL_39d5: Unknown result type (might be due to invalid IL or missing references) //IL_39db: Unknown result type (might be due to invalid IL or missing references) //IL_39e0: Unknown result type (might be due to invalid IL or missing references) //IL_39e6: Unknown result type (might be due to invalid IL or missing references) //IL_39eb: Unknown result type (might be due to invalid IL or missing references) //IL_39f1: Unknown result type (might be due to invalid IL or missing references) //IL_39fb: Unknown result type (might be due to invalid IL or missing references) //IL_3a00: Unknown result type (might be due to invalid IL or missing references) //IL_3a06: Unknown result type (might be due to invalid IL or missing references) //IL_3a10: Unknown result type (might be due to invalid IL or missing references) //IL_3a16: Unknown result type (might be due to invalid IL or missing references) //IL_3a1b: Unknown result type (might be due to invalid IL or missing references) //IL_3a21: Unknown result type (might be due to invalid IL or missing references) //IL_3a26: Unknown result type (might be due to invalid IL or missing references) //IL_3a2b: Unknown result type (might be due to invalid IL or missing references) //IL_3a31: Unknown result type (might be due to invalid IL or missing references) //IL_3a3b: Unknown result type (might be due to invalid IL or missing references) //IL_3a40: Unknown result type (might be due to invalid IL or missing references) //IL_3a4c: Unknown result type (might be due to invalid IL or missing references) //IL_38c0: Unknown result type (might be due to invalid IL or missing references) //IL_38c5: Unknown result type (might be due to invalid IL or missing references) //IL_3754: Unknown result type (might be due to invalid IL or missing references) //IL_3759: Unknown result type (might be due to invalid IL or missing references) //IL_3768: Unknown result type (might be due to invalid IL or missing references) //IL_376d: Unknown result type (might be due to invalid IL or missing references) //IL_3789: Unknown result type (might be due to invalid IL or missing references) //IL_378e: Unknown result type (might be due to invalid IL or missing references) //IL_3797: Unknown result type (might be due to invalid IL or missing references) //IL_37a2: Unknown result type (might be due to invalid IL or missing references) //IL_37b3: Unknown result type (might be due to invalid IL or missing references) //IL_37b8: Unknown result type (might be due to invalid IL or missing references) //IL_37bd: Unknown result type (might be due to invalid IL or missing references) //IL_2cbc: Unknown result type (might be due to invalid IL or missing references) //IL_2cc1: Unknown result type (might be due to invalid IL or missing references) //IL_2cd0: Unknown result type (might be due to invalid IL or missing references) //IL_2cd5: Unknown result type (might be due to invalid IL or missing references) //IL_2cec: Unknown result type (might be due to invalid IL or missing references) //IL_2cf1: Unknown result type (might be due to invalid IL or missing references) //IL_2d0d: Unknown result type (might be due to invalid IL or missing references) //IL_2d12: Unknown result type (might be due to invalid IL or missing references) //IL_2d21: Unknown result type (might be due to invalid IL or missing references) //IL_2d26: Unknown result type (might be due to invalid IL or missing references) //IL_2d37: Unknown result type (might be due to invalid IL or missing references) //IL_2d42: Unknown result type (might be due to invalid IL or missing references) //IL_2d47: Unknown result type (might be due to invalid IL or missing references) //IL_2d70: Unknown result type (might be due to invalid IL or missing references) //IL_2d75: Unknown result type (might be due to invalid IL or missing references) //IL_2d8c: Unknown result type (might be due to invalid IL or missing references) //IL_2d91: Unknown result type (might be due to invalid IL or missing references) //IL_2d96: Unknown result type (might be due to invalid IL or missing references) //IL_2c06: Unknown result type (might be due to invalid IL or missing references) //IL_2c0b: Unknown result type (might be due to invalid IL or missing references) //IL_2a9a: Unknown result type (might be due to invalid IL or missing references) //IL_2a9f: Unknown result type (might be due to invalid IL or missing references) //IL_2aae: Unknown result type (might be due to invalid IL or missing references) //IL_2ab3: Unknown result type (might be due to invalid IL or missing references) //IL_2acf: Unknown result type (might be due to invalid IL or missing references) //IL_2ad4: Unknown result type (might be due to invalid IL or missing references) //IL_2add: Unknown result type (might be due to invalid IL or missing references) //IL_2ae8: Unknown result type (might be due to invalid IL or missing references) //IL_2af9: Unknown result type (might be due to invalid IL or missing references) //IL_2afe: Unknown result type (might be due to invalid IL or missing references) //IL_2b03: Unknown result type (might be due to invalid IL or missing references) //IL_3b1a: Unknown result type (might be due to invalid IL or missing references) //IL_3b20: Unknown result type (might be due to invalid IL or missing references) //IL_3b25: Unknown result type (might be due to invalid IL or missing references) //IL_3b2b: Unknown result type (might be due to invalid IL or missing references) //IL_3b30: Unknown result type (might be due to invalid IL or missing references) //IL_3b36: Unknown result type (might be due to invalid IL or missing references) //IL_3b40: Unknown result type (might be due to invalid IL or missing references) //IL_3b46: Unknown result type (might be due to invalid IL or missing references) //IL_3b4b: Unknown result type (might be due to invalid IL or missing references) //IL_3b51: Unknown result type (might be due to invalid IL or missing references) //IL_3b56: Unknown result type (might be due to invalid IL or missing references) //IL_3b5b: Unknown result type (might be due to invalid IL or missing references) //IL_3b61: Unknown result type (might be due to invalid IL or missing references) //IL_3b6b: Unknown result type (might be due to invalid IL or missing references) //IL_3b70: Unknown result type (might be due to invalid IL or missing references) //IL_3b7b: Unknown result type (might be due to invalid IL or missing references) //IL_3b81: Unknown result type (might be due to invalid IL or missing references) //IL_3b86: Unknown result type (might be due to invalid IL or missing references) //IL_3b8c: Unknown result type (might be due to invalid IL or missing references) //IL_3b91: Unknown result type (might be due to invalid IL or missing references) //IL_3b97: Unknown result type (might be due to invalid IL or missing references) //IL_3ba1: Unknown result type (might be due to invalid IL or missing references) //IL_3ba6: Unknown result type (might be due to invalid IL or missing references) //IL_3bac: Unknown result type (might be due to invalid IL or missing references) //IL_3bb6: Unknown result type (might be due to invalid IL or missing references) //IL_3bbc: Unknown result type (might be due to invalid IL or missing references) //IL_3bc1: Unknown result type (might be due to invalid IL or missing references) //IL_3bc7: Unknown result type (might be due to invalid IL or missing references) //IL_3bcc: Unknown result type (might be due to invalid IL or missing references) //IL_3bd1: Unknown result type (might be due to invalid IL or missing references) //IL_3bd7: Unknown result type (might be due to invalid IL or missing references) //IL_3be1: Unknown result type (might be due to invalid IL or missing references) //IL_3be6: Unknown result type (might be due to invalid IL or missing references) //IL_3bf2: Unknown result type (might be due to invalid IL or missing references) //IL_3a66: Unknown result type (might be due to invalid IL or missing references) //IL_3a6b: Unknown result type (might be due to invalid IL or missing references) //IL_38fa: Unknown result type (might be due to invalid IL or missing references) //IL_38ff: Unknown result type (might be due to invalid IL or missing references) //IL_390e: Unknown result type (might be due to invalid IL or missing references) //IL_3913: Unknown result type (might be due to invalid IL or missing references) //IL_392f: Unknown result type (might be due to invalid IL or missing references) //IL_3934: Unknown result type (might be due to invalid IL or missing references) //IL_393d: Unknown result type (might be due to invalid IL or missing references) //IL_3948: Unknown result type (might be due to invalid IL or missing references) //IL_3959: Unknown result type (might be due to invalid IL or missing references) //IL_395e: Unknown result type (might be due to invalid IL or missing references) //IL_3963: Unknown result type (might be due to invalid IL or missing references) //IL_2c40: Unknown result type (might be due to invalid IL or missing references) //IL_2c45: Unknown result type (might be due to invalid IL or missing references) //IL_2c54: Unknown result type (might be due to invalid IL or missing references) //IL_2c59: Unknown result type (might be due to invalid IL or missing references) //IL_2c75: Unknown result type (might be due to invalid IL or missing references) //IL_2c7a: Unknown result type (might be due to invalid IL or missing references) //IL_2c83: Unknown result type (might be due to invalid IL or missing references) //IL_2c8e: Unknown result type (might be due to invalid IL or missing references) //IL_2c9f: Unknown result type (might be due to invalid IL or missing references) //IL_2ca4: Unknown result type (might be due to invalid IL or missing references) //IL_2ca9: Unknown result type (might be due to invalid IL or missing references) //IL_3cc0: Unknown result type (might be due to invalid IL or missing references) //IL_3cc6: Unknown result type (might be due to invalid IL or missing references) //IL_3ccb: Unknown result type (might be due to invalid IL or missing references) //IL_3cd1: Unknown result type (might be due to invalid IL or missing references) //IL_3cd6: Unknown result type (might be due to invalid IL or missing references) //IL_3cdc: Unknown result type (might be due to invalid IL or missing references) //IL_3ce6: Unknown result type (might be due to invalid IL or missing references) //IL_3cec: Unknown result type (might be due to invalid IL or missing references) //IL_3cf1: Unknown result type (might be due to invalid IL or missing references) //IL_3cf7: Unknown result type (might be due to invalid IL or missing references) //IL_3cfc: Unknown result type (might be due to invalid IL or missing references) //IL_3d01: Unknown result type (might be due to invalid IL or missing references) //IL_3d07: Unknown result type (might be due to invalid IL or missing references) //IL_3d11: Unknown result type (might be due to invalid IL or missing references) //IL_3d16: Unknown result type (might be due to invalid IL or missing references) //IL_3d21: Unknown result type (might be due to invalid IL or missing references) //IL_3d27: Unknown result type (might be due to invalid IL or missing references) //IL_3d2c: Unknown result type (might be due to invalid IL or missing references) //IL_3d32: Unknown result type (might be due to invalid IL or missing references) //IL_3d37: Unknown result type (might be due to invalid IL or missing references) //IL_3d3d: Unknown result type (might be due to invalid IL or missing references) //IL_3d47: Unknown result type (might be due to invalid IL or missing references) //IL_3d4c: Unknown result type (might be due to invalid IL or missing references) //IL_3d52: Unknown result type (might be due to invalid IL or missing references) //IL_3d5c: Unknown result type (might be due to invalid IL or missing references) //IL_3d62: Unknown result type (might be due to invalid IL or missing references) //IL_3d67: Unknown result type (might be due to invalid IL or missing references) //IL_3d6d: Unknown result type (might be due to invalid IL or missing references) //IL_3d72: Unknown result type (might be due to invalid IL or missing references) //IL_3d77: Unknown result type (might be due to invalid IL or missing references) //IL_3d7d: Unknown result type (might be due to invalid IL or missing references) //IL_3d87: Unknown result type (might be due to invalid IL or missing references) //IL_3d8c: Unknown result type (might be due to invalid IL or missing references) //IL_3d98: Unknown result type (might be due to invalid IL or missing references) //IL_3c0c: Unknown result type (might be due to invalid IL or missing references) //IL_3c11: Unknown result type (might be due to invalid IL or missing references) //IL_3aa0: Unknown result type (might be due to invalid IL or missing references) //IL_3aa5: Unknown result type (might be due to invalid IL or missing references) //IL_3ab4: Unknown result type (might be due to invalid IL or missing references) //IL_3ab9: Unknown result type (might be due to invalid IL or missing references) //IL_3ad5: Unknown result type (might be due to invalid IL or missing references) //IL_3ada: Unknown result type (might be due to invalid IL or missing references) //IL_3ae3: Unknown result type (might be due to invalid IL or missing references) //IL_3aee: Unknown result type (might be due to invalid IL or missing references) //IL_3aff: Unknown result type (might be due to invalid IL or missing references) //IL_3b04: Unknown result type (might be due to invalid IL or missing references) //IL_3b09: Unknown result type (might be due to invalid IL or missing references) //IL_3e68: Unknown result type (might be due to invalid IL or missing references) //IL_3e6d: Unknown result type (might be due to invalid IL or missing references) //IL_3e7c: Unknown result type (might be due to invalid IL or missing references) //IL_3e81: Unknown result type (might be due to invalid IL or missing references) //IL_3e98: Unknown result type (might be due to invalid IL or missing references) //IL_3e9d: Unknown result type (might be due to invalid IL or missing references) //IL_3eb9: Unknown result type (might be due to invalid IL or missing references) //IL_3ebe: Unknown result type (might be due to invalid IL or missing references) //IL_3ecd: Unknown result type (might be due to invalid IL or missing references) //IL_3ed2: Unknown result type (might be due to invalid IL or missing references) //IL_3ee3: Unknown result type (might be due to invalid IL or missing references) //IL_3eee: Unknown result type (might be due to invalid IL or missing references) //IL_3ef3: Unknown result type (might be due to invalid IL or missing references) //IL_3f1c: Unknown result type (might be due to invalid IL or missing references) //IL_3f21: Unknown result type (might be due to invalid IL or missing references) //IL_3f38: Unknown result type (might be due to invalid IL or missing references) //IL_3f3d: Unknown result type (might be due to invalid IL or missing references) //IL_3f42: Unknown result type (might be due to invalid IL or missing references) //IL_3db2: Unknown result type (might be due to invalid IL or missing references) //IL_3db7: Unknown result type (might be due to invalid IL or missing references) //IL_3c46: Unknown result type (might be due to invalid IL or missing references) //IL_3c4b: Unknown result type (might be due to invalid IL or missing references) //IL_3c5a: Unknown result type (might be due to invalid IL or missing references) //IL_3c5f: Unknown result type (might be due to invalid IL or missing references) //IL_3c7b: Unknown result type (might be due to invalid IL or missing references) //IL_3c80: Unknown result type (might be due to invalid IL or missing references) //IL_3c89: Unknown result type (might be due to invalid IL or missing references) //IL_3c94: Unknown result type (might be due to invalid IL or missing references) //IL_3ca5: Unknown result type (might be due to invalid IL or missing references) //IL_3caa: Unknown result type (might be due to invalid IL or missing references) //IL_3caf: Unknown result type (might be due to invalid IL or missing references) //IL_3dec: Unknown result type (might be due to invalid IL or missing references) //IL_3df1: Unknown result type (might be due to invalid IL or missing references) //IL_3e00: Unknown result type (might be due to invalid IL or missing references) //IL_3e05: Unknown result type (might be due to invalid IL or missing references) //IL_3e21: Unknown result type (might be due to invalid IL or missing references) //IL_3e26: Unknown result type (might be due to invalid IL or missing references) //IL_3e2f: Unknown result type (might be due to invalid IL or missing references) //IL_3e3a: Unknown result type (might be due to invalid IL or missing references) //IL_3e4b: Unknown result type (might be due to invalid IL or missing references) //IL_3e50: Unknown result type (might be due to invalid IL or missing references) //IL_3e55: Unknown result type (might be due to invalid IL or missing references) if (switching || !ledgeSwitchingDetectors.allowLedgeSwitching || !grabbedOn) { return; } if ((!Physics.Linecast(((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.8f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { l1MiddleSurfaceDetectorsHit = true; } else { l1MiddleSurfaceDetectorsHit = false; l1MiddleHit = false; } if ((!Physics.Linecast(((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.8f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { l2MiddleSurfaceDetectorsHit = true; } else { l2MiddleSurfaceDetectorsHit = false; l2MiddleHit = false; } if ((!Physics.Linecast(((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.8f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { l3MiddleSurfaceDetectorsHit = true; } else { l3MiddleSurfaceDetectorsHit = false; l3MiddleHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) { if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref switchHitPoint)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit) { l1MiddleHit = true; if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2), ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l1MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l1MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l1MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l1MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l1MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l1MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l1MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l1MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else { l1MiddleHitPoint = new Vector3(((RaycastHit)(ref switchHitPoint)).point.x - ((Component)this).transform.forward.x * length2, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref switchHitPoint)).point.z - ((Component)this).transform.forward.x * length2) + new Vector3((0f - ((Component)this).transform.forward.x) * length2 / 10f, onLedgeHeight2 / 10f, (0f - ((Component)this).transform.forward.z) * length2 / 10f); } } else { l1MiddleHit = false; } } else { l1MiddleHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) { if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref switchHitPoint)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit) { l2MiddleHit = true; if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2), ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l2MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l2MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l2MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l2MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l2MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l2MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l2MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l2MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else { l2MiddleHitPoint = new Vector3(((RaycastHit)(ref switchHitPoint)).point.x - ((Component)this).transform.forward.x * length2, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref switchHitPoint)).point.z - ((Component)this).transform.forward.x * length2) + new Vector3((0f - ((Component)this).transform.forward.x) * length2 / 10f, onLedgeHeight2 / 10f, (0f - ((Component)this).transform.forward.z) * length2 / 10f); } } else { l2MiddleHit = false; } } else { l2MiddleHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f + ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) { if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref switchHitPoint)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit) { l3MiddleHit = true; if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2), ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l3MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l3MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l3MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l3MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l3MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l3MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l3MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l3MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else { l3MiddleHitPoint = new Vector3(((RaycastHit)(ref switchHitPoint)).point.x - ((Component)this).transform.forward.x * length2, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref switchHitPoint)).point.z - ((Component)this).transform.forward.x * length2) + new Vector3((0f - ((Component)this).transform.forward.x) * length2 / 10f, onLedgeHeight2 / 10f, (0f - ((Component)this).transform.forward.z) * length2 / 10f); } } else { l3MiddleHit = false; } } else { l3MiddleHit = false; } } private void LedgeSwitchHitPointsFirstBackLeft() { //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_006a: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_0084: Unknown result type (might be due to invalid IL or missing references) //IL_008a: Unknown result type (might be due to invalid IL or missing references) //IL_008f: Unknown result type (might be due to invalid IL or missing references) //IL_009a: Unknown result type (might be due to invalid IL or missing references) //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_00a5: Unknown result type (might be due to invalid IL or missing references) //IL_00ab: Unknown result type (might be due to invalid IL or missing references) //IL_00b0: Unknown result type (might be due to invalid IL or missing references) //IL_00b6: Unknown result type (might be due to invalid IL or missing references) //IL_00bb: Unknown result type (might be due to invalid IL or missing references) //IL_00c1: Unknown result type (might be due to invalid IL or missing references) //IL_00cb: Unknown result type (might be due to invalid IL or missing references) //IL_00d0: Unknown result type (might be due to invalid IL or missing references) //IL_00d6: Unknown result type (might be due to invalid IL or missing references) //IL_00e0: Unknown result type (might be due to invalid IL or missing references) //IL_00e5: Unknown result type (might be due to invalid IL or missing references) //IL_00eb: Unknown result type (might be due to invalid IL or missing references) //IL_00f0: Unknown result type (might be due to invalid IL or missing references) //IL_00f6: Unknown result type (might be due to invalid IL or missing references) //IL_00fb: Unknown result type (might be due to invalid IL or missing references) //IL_0107: Unknown result type (might be due to invalid IL or missing references) //IL_0214: Unknown result type (might be due to invalid IL or missing references) //IL_021a: Unknown result type (might be due to invalid IL or missing references) //IL_021f: Unknown result type (might be due to invalid IL or missing references) //IL_0225: Unknown result type (might be due to invalid IL or missing references) //IL_022a: Unknown result type (might be due to invalid IL or missing references) //IL_0230: Unknown result type (might be due to invalid IL or missing references) //IL_0235: Unknown result type (might be due to invalid IL or missing references) //IL_023b: Unknown result type (might be due to invalid IL or missing references) //IL_0245: Unknown result type (might be due to invalid IL or missing references) //IL_024a: Unknown result type (might be due to invalid IL or missing references) //IL_0250: Unknown result type (might be due to invalid IL or missing references) //IL_025a: Unknown result type (might be due to invalid IL or missing references) //IL_025f: Unknown result type (might be due to invalid IL or missing references) //IL_0265: Unknown result type (might be due to invalid IL or missing references) //IL_026a: Unknown result type (might be due to invalid IL or missing references) //IL_0270: Unknown result type (might be due to invalid IL or missing references) //IL_0275: Unknown result type (might be due to invalid IL or missing references) //IL_0280: Unknown result type (might be due to invalid IL or missing references) //IL_0286: Unknown result type (might be due to invalid IL or missing references) //IL_028b: Unknown result type (might be due to invalid IL or missing references) //IL_0291: Unknown result type (might be due to invalid IL or missing references) //IL_0296: Unknown result type (might be due to invalid IL or missing references) //IL_029c: Unknown result type (might be due to invalid IL or missing references) //IL_02a1: Unknown result type (might be due to invalid IL or missing references) //IL_02a7: Unknown result type (might be due to invalid IL or missing references) //IL_02b1: Unknown result type (might be due to invalid IL or missing references) //IL_02b6: Unknown result type (might be due to invalid IL or missing references) //IL_02bc: Unknown result type (might be due to invalid IL or missing references) //IL_02c6: Unknown result type (might be due to invalid IL or missing references) //IL_02cb: Unknown result type (might be due to invalid IL or missing references) //IL_02d1: Unknown result type (might be due to invalid IL or missing references) //IL_02d6: Unknown result type (might be due to invalid IL or missing references) //IL_02e2: Unknown result type (might be due to invalid IL or missing references) //IL_0121: Unknown result type (might be due to invalid IL or missing references) //IL_0127: Unknown result type (might be due to invalid IL or missing references) //IL_012c: Unknown result type (might be due to invalid IL or missing references) //IL_0132: Unknown result type (might be due to invalid IL or missing references) //IL_0137: Unknown result type (might be due to invalid IL or missing references) //IL_013d: Unknown result type (might be due to invalid IL or missing references) //IL_0142: Unknown result type (might be due to invalid IL or missing references) //IL_0148: Unknown result type (might be due to invalid IL or missing references) //IL_0152: Unknown result type (might be due to invalid IL or missing references) //IL_0157: Unknown result type (might be due to invalid IL or missing references) //IL_015d: Unknown result type (might be due to invalid IL or missing references) //IL_0167: Unknown result type (might be due to invalid IL or missing references) //IL_016c: Unknown result type (might be due to invalid IL or missing references) //IL_0172: Unknown result type (might be due to invalid IL or missing references) //IL_0177: Unknown result type (might be due to invalid IL or missing references) //IL_017d: Unknown result type (might be due to invalid IL or missing references) //IL_0182: Unknown result type (might be due to invalid IL or missing references) //IL_018d: Unknown result type (might be due to invalid IL or missing references) //IL_0193: Unknown result type (might be due to invalid IL or missing references) //IL_0198: Unknown result type (might be due to invalid IL or missing references) //IL_019e: Unknown result type (might be due to invalid IL or missing references) //IL_01a3: Unknown result type (might be due to invalid IL or missing references) //IL_01a9: Unknown result type (might be due to invalid IL or missing references) //IL_01ae: Unknown result type (might be due to invalid IL or missing references) //IL_01b4: Unknown result type (might be due to invalid IL or missing references) //IL_01be: Unknown result type (might be due to invalid IL or missing references) //IL_01c3: Unknown result type (might be due to invalid IL or missing references) //IL_01c9: Unknown result type (might be due to invalid IL or missing references) //IL_01ce: Unknown result type (might be due to invalid IL or missing references) //IL_01d4: Unknown result type (might be due to invalid IL or missing references) //IL_01de: Unknown result type (might be due to invalid IL or missing references) //IL_01e3: Unknown result type (might be due to invalid IL or missing references) //IL_01e9: Unknown result type (might be due to invalid IL or missing references) //IL_01ee: Unknown result type (might be due to invalid IL or missing references) //IL_01fa: Unknown result type (might be due to invalid IL or missing references) //IL_031a: Unknown result type (might be due to invalid IL or missing references) //IL_0320: Unknown result type (might be due to invalid IL or missing references) //IL_0325: Unknown result type (might be due to invalid IL or missing references) //IL_032b: Unknown result type (might be due to invalid IL or missing references) //IL_0330: Unknown result type (might be due to invalid IL or missing references) //IL_0336: Unknown result type (might be due to invalid IL or missing references) //IL_033b: Unknown result type (might be due to invalid IL or missing references) //IL_0341: Unknown result type (might be due to invalid IL or missing references) //IL_034b: Unknown result type (might be due to invalid IL or missing references) //IL_0350: Unknown result type (might be due to invalid IL or missing references) //IL_0356: Unknown result type (might be due to invalid IL or missing references) //IL_0360: Unknown result type (might be due to invalid IL or missing references) //IL_0365: Unknown result type (might be due to invalid IL or missing references) //IL_036b: Unknown result type (might be due to invalid IL or missing references) //IL_0370: Unknown result type (might be due to invalid IL or missing references) //IL_0376: Unknown result type (might be due to invalid IL or missing references) //IL_037b: Unknown result type (might be due to invalid IL or missing references) //IL_0386: Unknown result type (might be due to invalid IL or missing references) //IL_038c: Unknown result type (might be due to invalid IL or missing references) //IL_0391: Unknown result type (might be due to invalid IL or missing references) //IL_0397: Unknown result type (might be due to invalid IL or missing references) //IL_039c: Unknown result type (might be due to invalid IL or missing references) //IL_03a2: Unknown result type (might be due to invalid IL or missing references) //IL_03a7: Unknown result type (might be due to invalid IL or missing references) //IL_03ad: Unknown result type (might be due to invalid IL or missing references) //IL_03b7: Unknown result type (might be due to invalid IL or missing references) //IL_03bc: Unknown result type (might be due to invalid IL or missing references) //IL_03c2: Unknown result type (might be due to invalid IL or missing references) //IL_03cc: Unknown result type (might be due to invalid IL or missing references) //IL_03d1: Unknown result type (might be due to invalid IL or missing references) //IL_03d7: Unknown result type (might be due to invalid IL or missing references) //IL_03dc: Unknown result type (might be due to invalid IL or missing references) //IL_03e2: Unknown result type (might be due to invalid IL or missing references) //IL_03e7: Unknown result type (might be due to invalid IL or missing references) //IL_03f3: Unknown result type (might be due to invalid IL or missing references) //IL_0500: Unknown result type (might be due to invalid IL or missing references) //IL_0506: Unknown result type (might be due to invalid IL or missing references) //IL_050b: Unknown result type (might be due to invalid IL or missing references) //IL_0511: Unknown result type (might be due to invalid IL or missing references) //IL_0516: Unknown result type (might be due to invalid IL or missing references) //IL_051c: Unknown result type (might be due to invalid IL or missing references) //IL_0521: Unknown result type (might be due to invalid IL or missing references) //IL_0527: Unknown result type (might be due to invalid IL or missing references) //IL_0531: Unknown result type (might be due to invalid IL or missing references) //IL_0536: Unknown result type (might be due to invalid IL or missing references) //IL_053c: Unknown result type (might be due to invalid IL or missing references) //IL_0546: Unknown result type (might be due to invalid IL or missing references) //IL_054b: Unknown result type (might be due to invalid IL or missing references) //IL_0551: Unknown result type (might be due to invalid IL or missing references) //IL_0556: Unknown result type (might be due to invalid IL or missing references) //IL_055c: Unknown result type (might be due to invalid IL or missing references) //IL_0561: Unknown result type (might be due to invalid IL or missing references) //IL_056c: Unknown result type (might be due to invalid IL or missing references) //IL_0572: Unknown result type (might be due to invalid IL or missing references) //IL_0577: Unknown result type (might be due to invalid IL or missing references) //IL_057d: Unknown result type (might be due to invalid IL or missing references) //IL_0582: Unknown result type (might be due to invalid IL or missing references) //IL_0588: Unknown result type (might be due to invalid IL or missing references) //IL_058d: Unknown result type (might be due to invalid IL or missing references) //IL_0593: Unknown result type (might be due to invalid IL or missing references) //IL_059d: Unknown result type (might be due to invalid IL or missing references) //IL_05a2: Unknown result type (might be due to invalid IL or missing references) //IL_05a8: Unknown result type (might be due to invalid IL or missing references) //IL_05b2: Unknown result type (might be due to invalid IL or missing references) //IL_05b7: Unknown result type (might be due to invalid IL or missing references) //IL_05bd: Unknown result type (might be due to invalid IL or missing references) //IL_05c2: Unknown result type (might be due to invalid IL or missing references) //IL_05ce: Unknown result type (might be due to invalid IL or missing references) //IL_040d: Unknown result type (might be due to invalid IL or missing references) //IL_0413: Unknown result type (might be due to invalid IL or missing references) //IL_0418: Unknown result type (might be due to invalid IL or missing references) //IL_041e: Unknown result type (might be due to invalid IL or missing references) //IL_0423: Unknown result type (might be due to invalid IL or missing references) //IL_0429: Unknown result type (might be due to invalid IL or missing references) //IL_042e: Unknown result type (might be due to invalid IL or missing references) //IL_0434: Unknown result type (might be due to invalid IL or missing references) //IL_043e: Unknown result type (might be due to invalid IL or missing references) //IL_0443: Unknown result type (might be due to invalid IL or missing references) //IL_0449: Unknown result type (might be due to invalid IL or missing references) //IL_0453: Unknown result type (might be due to invalid IL or missing references) //IL_0458: Unknown result type (might be due to invalid IL or missing references) //IL_045e: Unknown result type (might be due to invalid IL or missing references) //IL_0463: Unknown result type (might be due to invalid IL or missing references) //IL_0469: Unknown result type (might be due to invalid IL or missing references) //IL_046e: Unknown result type (might be due to invalid IL or missing references) //IL_0479: Unknown result type (might be due to invalid IL or missing references) //IL_047f: Unknown result type (might be due to invalid IL or missing references) //IL_0484: Unknown result type (might be due to invalid IL or missing references) //IL_048a: Unknown result type (might be due to invalid IL or missing references) //IL_048f: Unknown result type (might be due to invalid IL or missing references) //IL_0495: Unknown result type (might be due to invalid IL or missing references) //IL_049a: Unknown result type (might be due to invalid IL or missing references) //IL_04a0: Unknown result type (might be due to invalid IL or missing references) //IL_04aa: Unknown result type (might be due to invalid IL or missing references) //IL_04af: Unknown result type (might be due to invalid IL or missing references) //IL_04b5: Unknown result type (might be due to invalid IL or missing references) //IL_04ba: Unknown result type (might be due to invalid IL or missing references) //IL_04c0: Unknown result type (might be due to invalid IL or missing references) //IL_04ca: Unknown result type (might be due to invalid IL or missing references) //IL_04cf: Unknown result type (might be due to invalid IL or missing references) //IL_04d5: Unknown result type (might be due to invalid IL or missing references) //IL_04da: Unknown result type (might be due to invalid IL or missing references) //IL_04e6: Unknown result type (might be due to invalid IL or missing references) //IL_0606: Unknown result type (might be due to invalid IL or missing references) //IL_060c: Unknown result type (might be due to invalid IL or missing references) //IL_0611: Unknown result type (might be due to invalid IL or missing references) //IL_0617: Unknown result type (might be due to invalid IL or missing references) //IL_061c: Unknown result type (might be due to invalid IL or missing references) //IL_0622: Unknown result type (might be due to invalid IL or missing references) //IL_0627: Unknown result type (might be due to invalid IL or missing references) //IL_062d: Unknown result type (might be due to invalid IL or missing references) //IL_0637: Unknown result type (might be due to invalid IL or missing references) //IL_063c: Unknown result type (might be due to invalid IL or missing references) //IL_0642: Unknown result type (might be due to invalid IL or missing references) //IL_064c: Unknown result type (might be due to invalid IL or missing references) //IL_0651: Unknown result type (might be due to invalid IL or missing references) //IL_0657: Unknown result type (might be due to invalid IL or missing references) //IL_065c: Unknown result type (might be due to invalid IL or missing references) //IL_0662: Unknown result type (might be due to invalid IL or missing references) //IL_0667: Unknown result type (might be due to invalid IL or missing references) //IL_0672: Unknown result type (might be due to invalid IL or missing references) //IL_0678: Unknown result type (might be due to invalid IL or missing references) //IL_067d: Unknown result type (might be due to invalid IL or missing references) //IL_0683: Unknown result type (might be due to invalid IL or missing references) //IL_0688: Unknown result type (might be due to invalid IL or missing references) //IL_068e: Unknown result type (might be due to invalid IL or missing references) //IL_0693: Unknown result type (might be due to invalid IL or missing references) //IL_0699: Unknown result type (might be due to invalid IL or missing references) //IL_06a3: Unknown result type (might be due to invalid IL or missing references) //IL_06a8: Unknown result type (might be due to invalid IL or missing references) //IL_06ae: Unknown result type (might be due to invalid IL or missing references) //IL_06b3: Unknown result type (might be due to invalid IL or missing references) //IL_06b9: Unknown result type (might be due to invalid IL or missing references) //IL_06c3: Unknown result type (might be due to invalid IL or missing references) //IL_06c8: Unknown result type (might be due to invalid IL or missing references) //IL_06ce: Unknown result type (might be due to invalid IL or missing references) //IL_06d3: Unknown result type (might be due to invalid IL or missing references) //IL_06df: Unknown result type (might be due to invalid IL or missing references) //IL_07ec: Unknown result type (might be due to invalid IL or missing references) //IL_07f2: Unknown result type (might be due to invalid IL or missing references) //IL_07f7: Unknown result type (might be due to invalid IL or missing references) //IL_07fd: Unknown result type (might be due to invalid IL or missing references) //IL_0802: Unknown result type (might be due to invalid IL or missing references) //IL_0808: Unknown result type (might be due to invalid IL or missing references) //IL_080d: Unknown result type (might be due to invalid IL or missing references) //IL_0813: Unknown result type (might be due to invalid IL or missing references) //IL_081d: Unknown result type (might be due to invalid IL or missing references) //IL_0822: Unknown result type (might be due to invalid IL or missing references) //IL_0828: Unknown result type (might be due to invalid IL or missing references) //IL_0832: Unknown result type (might be due to invalid IL or missing references) //IL_0837: Unknown result type (might be due to invalid IL or missing references) //IL_083d: Unknown result type (might be due to invalid IL or missing references) //IL_0842: Unknown result type (might be due to invalid IL or missing references) //IL_0848: Unknown result type (might be due to invalid IL or missing references) //IL_084d: Unknown result type (might be due to invalid IL or missing references) //IL_0858: Unknown result type (might be due to invalid IL or missing references) //IL_085e: Unknown result type (might be due to invalid IL or missing references) //IL_0863: Unknown result type (might be due to invalid IL or missing references) //IL_0869: Unknown result type (might be due to invalid IL or missing references) //IL_086e: Unknown result type (might be due to invalid IL or missing references) //IL_0874: Unknown result type (might be due to invalid IL or missing references) //IL_0879: Unknown result type (might be due to invalid IL or missing references) //IL_087f: Unknown result type (might be due to invalid IL or missing references) //IL_0889: Unknown result type (might be due to invalid IL or missing references) //IL_088e: Unknown result type (might be due to invalid IL or missing references) //IL_0894: Unknown result type (might be due to invalid IL or missing references) //IL_089e: Unknown result type (might be due to invalid IL or missing references) //IL_08a3: Unknown result type (might be due to invalid IL or missing references) //IL_08a9: Unknown result type (might be due to invalid IL or missing references) //IL_08ae: Unknown result type (might be due to invalid IL or missing references) //IL_08ba: Unknown result type (might be due to invalid IL or missing references) //IL_06f9: Unknown result type (might be due to invalid IL or missing references) //IL_06ff: Unknown result type (might be due to invalid IL or missing references) //IL_0704: Unknown result type (might be due to invalid IL or missing references) //IL_070a: Unknown result type (might be due to invalid IL or missing references) //IL_070f: Unknown result type (might be due to invalid IL or missing references) //IL_0715: Unknown result type (might be due to invalid IL or missing references) //IL_071a: Unknown result type (might be due to invalid IL or missing references) //IL_0720: Unknown result type (might be due to invalid IL or missing references) //IL_072a: Unknown result type (might be due to invalid IL or missing references) //IL_072f: Unknown result type (might be due to invalid IL or missing references) //IL_0735: Unknown result type (might be due to invalid IL or missing references) //IL_073f: Unknown result type (might be due to invalid IL or missing references) //IL_0744: Unknown result type (might be due to invalid IL or missing references) //IL_074a: Unknown result type (might be due to invalid IL or missing references) //IL_074f: Unknown result type (might be due to invalid IL or missing references) //IL_0755: Unknown result type (might be due to invalid IL or missing references) //IL_075a: Unknown result type (might be due to invalid IL or missing references) //IL_0765: Unknown result type (might be due to invalid IL or missing references) //IL_076b: Unknown result type (might be due to invalid IL or missing references) //IL_0770: Unknown result type (might be due to invalid IL or missing references) //IL_0776: Unknown result type (might be due to invalid IL or missing references) //IL_077b: Unknown result type (might be due to invalid IL or missing references) //IL_0781: Unknown result type (might be due to invalid IL or missing references) //IL_0786: Unknown result type (might be due to invalid IL or missing references) //IL_078c: Unknown result type (might be due to invalid IL or missing references) //IL_0796: Unknown result type (might be due to invalid IL or missing references) //IL_079b: Unknown result type (might be due to invalid IL or missing references) //IL_07a1: Unknown result type (might be due to invalid IL or missing references) //IL_07ab: Unknown result type (might be due to invalid IL or missing references) //IL_07b0: Unknown result type (might be due to invalid IL or missing references) //IL_07b6: Unknown result type (might be due to invalid IL or missing references) //IL_07bb: Unknown result type (might be due to invalid IL or missing references) //IL_07c1: Unknown result type (might be due to invalid IL or missing references) //IL_07c6: Unknown result type (might be due to invalid IL or missing references) //IL_07d2: Unknown result type (might be due to invalid IL or missing references) //IL_08f2: Unknown result type (might be due to invalid IL or missing references) //IL_08f8: Unknown result type (might be due to invalid IL or missing references) //IL_08fd: Unknown result type (might be due to invalid IL or missing references) //IL_0903: Unknown result type (might be due to invalid IL or missing references) //IL_090d: Unknown result type (might be due to invalid IL or missing references) //IL_0912: Unknown result type (might be due to invalid IL or missing references) //IL_0918: Unknown result type (might be due to invalid IL or missing references) //IL_0922: Unknown result type (might be due to invalid IL or missing references) //IL_0927: Unknown result type (might be due to invalid IL or missing references) //IL_092d: Unknown result type (might be due to invalid IL or missing references) //IL_0932: Unknown result type (might be due to invalid IL or missing references) //IL_0938: Unknown result type (might be due to invalid IL or missing references) //IL_093d: Unknown result type (might be due to invalid IL or missing references) //IL_0943: Unknown result type (might be due to invalid IL or missing references) //IL_0948: Unknown result type (might be due to invalid IL or missing references) //IL_0953: Unknown result type (might be due to invalid IL or missing references) //IL_0959: Unknown result type (might be due to invalid IL or missing references) //IL_095e: Unknown result type (might be due to invalid IL or missing references) //IL_0964: Unknown result type (might be due to invalid IL or missing references) //IL_096e: Unknown result type (might be due to invalid IL or missing references) //IL_0973: Unknown result type (might be due to invalid IL or missing references) //IL_0979: Unknown result type (might be due to invalid IL or missing references) //IL_0983: Unknown result type (might be due to invalid IL or missing references) //IL_0988: Unknown result type (might be due to invalid IL or missing references) //IL_098e: Unknown result type (might be due to invalid IL or missing references) //IL_0993: Unknown result type (might be due to invalid IL or missing references) //IL_0999: Unknown result type (might be due to invalid IL or missing references) //IL_099e: Unknown result type (might be due to invalid IL or missing references) //IL_09a4: Unknown result type (might be due to invalid IL or missing references) //IL_09a9: Unknown result type (might be due to invalid IL or missing references) //IL_09b5: Unknown result type (might be due to invalid IL or missing references) //IL_0aac: Unknown result type (might be due to invalid IL or missing references) //IL_0ab2: Unknown result type (might be due to invalid IL or missing references) //IL_0ab7: Unknown result type (might be due to invalid IL or missing references) //IL_0abd: Unknown result type (might be due to invalid IL or missing references) //IL_0ac7: Unknown result type (might be due to invalid IL or missing references) //IL_0acc: Unknown result type (might be due to invalid IL or missing references) //IL_0ad2: Unknown result type (might be due to invalid IL or missing references) //IL_0adc: Unknown result type (might be due to invalid IL or missing references) //IL_0ae1: Unknown result type (might be due to invalid IL or missing references) //IL_0ae7: Unknown result type (might be due to invalid IL or missing references) //IL_0aec: Unknown result type (might be due to invalid IL or missing references) //IL_0af2: Unknown result type (might be due to invalid IL or missing references) //IL_0af7: Unknown result type (might be due to invalid IL or missing references) //IL_0afd: Unknown result type (might be due to invalid IL or missing references) //IL_0b02: Unknown result type (might be due to invalid IL or missing references) //IL_0b0d: Unknown result type (might be due to invalid IL or missing references) //IL_0b13: Unknown result type (might be due to invalid IL or missing references) //IL_0b18: Unknown result type (might be due to invalid IL or missing references) //IL_0b1e: Unknown result type (might be due to invalid IL or missing references) //IL_0b28: Unknown result type (might be due to invalid IL or missing references) //IL_0b2d: Unknown result type (might be due to invalid IL or missing references) //IL_0b33: Unknown result type (might be due to invalid IL or missing references) //IL_0b3d: Unknown result type (might be due to invalid IL or missing references) //IL_0b42: Unknown result type (might be due to invalid IL or missing references) //IL_0b48: Unknown result type (might be due to invalid IL or missing references) //IL_0b4d: Unknown result type (might be due to invalid IL or missing references) //IL_0b53: Unknown result type (might be due to invalid IL or missing references) //IL_0b58: Unknown result type (might be due to invalid IL or missing references) //IL_0b64: Unknown result type (might be due to invalid IL or missing references) //IL_09cf: Unknown result type (might be due to invalid IL or missing references) //IL_09d5: Unknown result type (might be due to invalid IL or missing references) //IL_09da: Unknown result type (might be due to invalid IL or missing references) //IL_09e0: Unknown result type (might be due to invalid IL or missing references) //IL_09ea: Unknown result type (might be due to invalid IL or missing references) //IL_09ef: Unknown result type (might be due to invalid IL or missing references) //IL_09f5: Unknown result type (might be due to invalid IL or missing references) //IL_09ff: Unknown result type (might be due to invalid IL or missing references) //IL_0a04: Unknown result type (might be due to invalid IL or missing references) //IL_0a0a: Unknown result type (might be due to invalid IL or missing references) //IL_0a0f: Unknown result type (might be due to invalid IL or missing references) //IL_0a15: Unknown result type (might be due to invalid IL or missing references) //IL_0a1a: Unknown result type (might be due to invalid IL or missing references) //IL_0a20: Unknown result type (might be due to invalid IL or missing references) //IL_0a25: Unknown result type (might be due to invalid IL or missing references) //IL_0a30: Unknown result type (might be due to invalid IL or missing references) //IL_0a36: Unknown result type (might be due to invalid IL or missing references) //IL_0a3b: Unknown result type (might be due to invalid IL or missing references) //IL_0a41: Unknown result type (might be due to invalid IL or missing references) //IL_0a4b: Unknown result type (might be due to invalid IL or missing references) //IL_0a50: Unknown result type (might be due to invalid IL or missing references) //IL_0a56: Unknown result type (might be due to invalid IL or missing references) //IL_0a5b: Unknown result type (might be due to invalid IL or missing references) //IL_0a61: Unknown result type (might be due to invalid IL or missing references) //IL_0a6b: Unknown result type (might be due to invalid IL or missing references) //IL_0a70: Unknown result type (might be due to invalid IL or missing references) //IL_0a76: Unknown result type (might be due to invalid IL or missing references) //IL_0a7b: Unknown result type (might be due to invalid IL or missing references) //IL_0a81: Unknown result type (might be due to invalid IL or missing references) //IL_0a86: Unknown result type (might be due to invalid IL or missing references) //IL_0a92: Unknown result type (might be due to invalid IL or missing references) //IL_0b7f: Unknown result type (might be due to invalid IL or missing references) //IL_0b84: Unknown result type (might be due to invalid IL or missing references) //IL_1a1c: Unknown result type (might be due to invalid IL or missing references) //IL_1a22: Unknown result type (might be due to invalid IL or missing references) //IL_1a27: Unknown result type (might be due to invalid IL or missing references) //IL_1a2d: Unknown result type (might be due to invalid IL or missing references) //IL_1a37: Unknown result type (might be due to invalid IL or missing references) //IL_1a3c: Unknown result type (might be due to invalid IL or missing references) //IL_1a42: Unknown result type (might be due to invalid IL or missing references) //IL_1a4c: Unknown result type (might be due to invalid IL or missing references) //IL_1a51: Unknown result type (might be due to invalid IL or missing references) //IL_1a57: Unknown result type (might be due to invalid IL or missing references) //IL_1a5c: Unknown result type (might be due to invalid IL or missing references) //IL_1a62: Unknown result type (might be due to invalid IL or missing references) //IL_1a67: Unknown result type (might be due to invalid IL or missing references) //IL_1a6d: Unknown result type (might be due to invalid IL or missing references) //IL_1a72: Unknown result type (might be due to invalid IL or missing references) //IL_1a7d: Unknown result type (might be due to invalid IL or missing references) //IL_1a83: Unknown result type (might be due to invalid IL or missing references) //IL_1a88: Unknown result type (might be due to invalid IL or missing references) //IL_1a8e: Unknown result type (might be due to invalid IL or missing references) //IL_1a98: Unknown result type (might be due to invalid IL or missing references) //IL_1a9d: Unknown result type (might be due to invalid IL or missing references) //IL_1aa3: Unknown result type (might be due to invalid IL or missing references) //IL_1aad: Unknown result type (might be due to invalid IL or missing references) //IL_1ab2: Unknown result type (might be due to invalid IL or missing references) //IL_1ab8: Unknown result type (might be due to invalid IL or missing references) //IL_1abd: Unknown result type (might be due to invalid IL or missing references) //IL_1ac3: Unknown result type (might be due to invalid IL or missing references) //IL_1ac8: Unknown result type (might be due to invalid IL or missing references) //IL_1ace: Unknown result type (might be due to invalid IL or missing references) //IL_1ad3: Unknown result type (might be due to invalid IL or missing references) //IL_1adf: Unknown result type (might be due to invalid IL or missing references) //IL_0bbf: Unknown result type (might be due to invalid IL or missing references) //IL_0bc5: Unknown result type (might be due to invalid IL or missing references) //IL_0bca: Unknown result type (might be due to invalid IL or missing references) //IL_0bd0: Unknown result type (might be due to invalid IL or missing references) //IL_0bd5: Unknown result type (might be due to invalid IL or missing references) //IL_0bdb: Unknown result type (might be due to invalid IL or missing references) //IL_0be5: Unknown result type (might be due to invalid IL or missing references) //IL_0bea: Unknown result type (might be due to invalid IL or missing references) //IL_0bf0: Unknown result type (might be due to invalid IL or missing references) //IL_0bfa: Unknown result type (might be due to invalid IL or missing references) //IL_0c00: Unknown result type (might be due to invalid IL or missing references) //IL_0c05: Unknown result type (might be due to invalid IL or missing references) //IL_0c0b: Unknown result type (might be due to invalid IL or missing references) //IL_0c10: Unknown result type (might be due to invalid IL or missing references) //IL_0c15: Unknown result type (might be due to invalid IL or missing references) //IL_0c20: Unknown result type (might be due to invalid IL or missing references) //IL_0c26: Unknown result type (might be due to invalid IL or missing references) //IL_0c2b: Unknown result type (might be due to invalid IL or missing references) //IL_0c31: Unknown result type (might be due to invalid IL or missing references) //IL_0c36: Unknown result type (might be due to invalid IL or missing references) //IL_0c3c: Unknown result type (might be due to invalid IL or missing references) //IL_0c46: Unknown result type (might be due to invalid IL or missing references) //IL_0c4c: Unknown result type (might be due to invalid IL or missing references) //IL_0c51: Unknown result type (might be due to invalid IL or missing references) //IL_0c57: Unknown result type (might be due to invalid IL or missing references) //IL_0c5c: Unknown result type (might be due to invalid IL or missing references) //IL_0c61: Unknown result type (might be due to invalid IL or missing references) //IL_0c6d: Unknown result type (might be due to invalid IL or missing references) //IL_1bd6: Unknown result type (might be due to invalid IL or missing references) //IL_1bdc: Unknown result type (might be due to invalid IL or missing references) //IL_1be1: Unknown result type (might be due to invalid IL or missing references) //IL_1be7: Unknown result type (might be due to invalid IL or missing references) //IL_1bf1: Unknown result type (might be due to invalid IL or missing references) //IL_1bf6: Unknown result type (might be due to invalid IL or missing references) //IL_1bfc: Unknown result type (might be due to invalid IL or missing references) //IL_1c06: Unknown result type (might be due to invalid IL or missing references) //IL_1c0b: Unknown result type (might be due to invalid IL or missing references) //IL_1c11: Unknown result type (might be due to invalid IL or missing references) //IL_1c16: Unknown result type (might be due to invalid IL or missing references) //IL_1c1c: Unknown result type (might be due to invalid IL or missing references) //IL_1c21: Unknown result type (might be due to invalid IL or missing references) //IL_1c27: Unknown result type (might be due to invalid IL or missing references) //IL_1c2c: Unknown result type (might be due to invalid IL or missing references) //IL_1c37: Unknown result type (might be due to invalid IL or missing references) //IL_1c3d: Unknown result type (might be due to invalid IL or missing references) //IL_1c42: Unknown result type (might be due to invalid IL or missing references) //IL_1c48: Unknown result type (might be due to invalid IL or missing references) //IL_1c52: Unknown result type (might be due to invalid IL or missing references) //IL_1c57: Unknown result type (might be due to invalid IL or missing references) //IL_1c5d: Unknown result type (might be due to invalid IL or missing references) //IL_1c67: Unknown result type (might be due to invalid IL or missing references) //IL_1c6c: Unknown result type (might be due to invalid IL or missing references) //IL_1c72: Unknown result type (might be due to invalid IL or missing references) //IL_1c77: Unknown result type (might be due to invalid IL or missing references) //IL_1c7d: Unknown result type (might be due to invalid IL or missing references) //IL_1c82: Unknown result type (might be due to invalid IL or missing references) //IL_1c8e: Unknown result type (might be due to invalid IL or missing references) //IL_1af9: Unknown result type (might be due to invalid IL or missing references) //IL_1aff: Unknown result type (might be due to invalid IL or missing references) //IL_1b04: Unknown result type (might be due to invalid IL or missing references) //IL_1b0a: Unknown result type (might be due to invalid IL or missing references) //IL_1b14: Unknown result type (might be due to invalid IL or missing references) //IL_1b19: Unknown result type (might be due to invalid IL or missing references) //IL_1b1f: Unknown result type (might be due to invalid IL or missing references) //IL_1b29: Unknown result type (might be due to invalid IL or missing references) //IL_1b2e: Unknown result type (might be due to invalid IL or missing references) //IL_1b34: Unknown result type (might be due to invalid IL or missing references) //IL_1b39: Unknown result type (might be due to invalid IL or missing references) //IL_1b3f: Unknown result type (might be due to invalid IL or missing references) //IL_1b44: Unknown result type (might be due to invalid IL or missing references) //IL_1b4a: Unknown result type (might be due to invalid IL or missing references) //IL_1b4f: Unknown result type (might be due to invalid IL or missing references) //IL_1b5a: Unknown result type (might be due to invalid IL or missing references) //IL_1b60: Unknown result type (might be due to invalid IL or missing references) //IL_1b65: Unknown result type (might be due to invalid IL or missing references) //IL_1b6b: Unknown result type (might be due to invalid IL or missing references) //IL_1b75: Unknown result type (might be due to invalid IL or missing references) //IL_1b7a: Unknown result type (might be due to invalid IL or missing references) //IL_1b80: Unknown result type (might be due to invalid IL or missing references) //IL_1b85: Unknown result type (might be due to invalid IL or missing references) //IL_1b8b: Unknown result type (might be due to invalid IL or missing references) //IL_1b95: Unknown result type (might be due to invalid IL or missing references) //IL_1b9a: Unknown result type (might be due to invalid IL or missing references) //IL_1ba0: Unknown result type (might be due to invalid IL or missing references) //IL_1ba5: Unknown result type (might be due to invalid IL or missing references) //IL_1bab: Unknown result type (might be due to invalid IL or missing references) //IL_1bb0: Unknown result type (might be due to invalid IL or missing references) //IL_1bbc: Unknown result type (might be due to invalid IL or missing references) //IL_0d38: Unknown result type (might be due to invalid IL or missing references) //IL_0d3e: Unknown result type (might be due to invalid IL or missing references) //IL_0d43: Unknown result type (might be due to invalid IL or missing references) //IL_0d49: Unknown result type (might be due to invalid IL or missing references) //IL_0d4e: Unknown result type (might be due to invalid IL or missing references) //IL_0d54: Unknown result type (might be due to invalid IL or missing references) //IL_0d5e: Unknown result type (might be due to invalid IL or missing references) //IL_0d63: Unknown result type (might be due to invalid IL or missing references) //IL_0d69: Unknown result type (might be due to invalid IL or missing references) //IL_0d73: Unknown result type (might be due to invalid IL or missing references) //IL_0d79: Unknown result type (might be due to invalid IL or missing references) //IL_0d7e: Unknown result type (might be due to invalid IL or missing references) //IL_0d84: Unknown result type (might be due to invalid IL or missing references) //IL_0d89: Unknown result type (might be due to invalid IL or missing references) //IL_0d8e: Unknown result type (might be due to invalid IL or missing references) //IL_0d94: Unknown result type (might be due to invalid IL or missing references) //IL_0d9e: Unknown result type (might be due to invalid IL or missing references) //IL_0da3: Unknown result type (might be due to invalid IL or missing references) //IL_0dae: Unknown result type (might be due to invalid IL or missing references) //IL_0db4: Unknown result type (might be due to invalid IL or missing references) //IL_0db9: Unknown result type (might be due to invalid IL or missing references) //IL_0dbf: Unknown result type (might be due to invalid IL or missing references) //IL_0dc4: Unknown result type (might be due to invalid IL or missing references) //IL_0dca: Unknown result type (might be due to invalid IL or missing references) //IL_0dd4: Unknown result type (might be due to invalid IL or missing references) //IL_0dda: Unknown result type (might be due to invalid IL or missing references) //IL_0ddf: Unknown result type (might be due to invalid IL or missing references) //IL_0de5: Unknown result type (might be due to invalid IL or missing references) //IL_0dea: Unknown result type (might be due to invalid IL or missing references) //IL_0def: Unknown result type (might be due to invalid IL or missing references) //IL_0df5: Unknown result type (might be due to invalid IL or missing references) //IL_0dff: Unknown result type (might be due to invalid IL or missing references) //IL_0e04: Unknown result type (might be due to invalid IL or missing references) //IL_0e10: Unknown result type (might be due to invalid IL or missing references) //IL_0c87: Unknown result type (might be due to invalid IL or missing references) //IL_0c8c: Unknown result type (might be due to invalid IL or missing references) //IL_1ca9: Unknown result type (might be due to invalid IL or missing references) //IL_1cae: Unknown result type (might be due to invalid IL or missing references) //IL_0ede: Unknown result type (might be due to invalid IL or missing references) //IL_0ee4: Unknown result type (might be due to invalid IL or missing references) //IL_0ee9: Unknown result type (might be due to invalid IL or missing references) //IL_0eef: Unknown result type (might be due to invalid IL or missing references) //IL_0ef4: Unknown result type (might be due to invalid IL or missing references) //IL_0efa: Unknown result type (might be due to invalid IL or missing references) //IL_0f04: Unknown result type (might be due to invalid IL or missing references) //IL_0f09: Unknown result type (might be due to invalid IL or missing references) //IL_0f0f: Unknown result type (might be due to invalid IL or missing references) //IL_0f19: Unknown result type (might be due to invalid IL or missing references) //IL_0f1f: Unknown result type (might be due to invalid IL or missing references) //IL_0f24: Unknown result type (might be due to invalid IL or missing references) //IL_0f2a: Unknown result type (might be due to invalid IL or missing references) //IL_0f2f: Unknown result type (might be due to invalid IL or missing references) //IL_0f34: Unknown result type (might be due to invalid IL or missing references) //IL_0f3a: Unknown result type (might be due to invalid IL or missing references) //IL_0f44: Unknown result type (might be due to invalid IL or missing references) //IL_0f49: Unknown result type (might be due to invalid IL or missing references) //IL_0f54: Unknown result type (might be due to invalid IL or missing references) //IL_0f5a: Unknown result type (might be due to invalid IL or missing references) //IL_0f5f: Unknown result type (might be due to invalid IL or missing references) //IL_0f65: Unknown result type (might be due to invalid IL or missing references) //IL_0f6a: Unknown result type (might be due to invalid IL or missing references) //IL_0f70: Unknown result type (might be due to invalid IL or missing references) //IL_0f7a: Unknown result type (might be due to invalid IL or missing references) //IL_0f80: Unknown result type (might be due to invalid IL or missing references) //IL_0f85: Unknown result type (might be due to invalid IL or missing references) //IL_0f8b: Unknown result type (might be due to invalid IL or missing references) //IL_0f90: Unknown result type (might be due to invalid IL or missing references) //IL_0f95: Unknown result type (might be due to invalid IL or missing references) //IL_0f9b: Unknown result type (might be due to invalid IL or missing references) //IL_0fa5: Unknown result type (might be due to invalid IL or missing references) //IL_0faa: Unknown result type (might be due to invalid IL or missing references) //IL_0fb6: Unknown result type (might be due to invalid IL or missing references) //IL_0e2a: Unknown result type (might be due to invalid IL or missing references) //IL_0e2f: Unknown result type (might be due to invalid IL or missing references) //IL_0cc0: Unknown result type (might be due to invalid IL or missing references) //IL_0cc5: Unknown result type (might be due to invalid IL or missing references) //IL_0cd3: Unknown result type (might be due to invalid IL or missing references) //IL_0cd8: Unknown result type (might be due to invalid IL or missing references) //IL_0cf3: Unknown result type (might be due to invalid IL or missing references) //IL_0cf8: Unknown result type (might be due to invalid IL or missing references) //IL_0d01: Unknown result type (might be due to invalid IL or missing references) //IL_0d0c: Unknown result type (might be due to invalid IL or missing references) //IL_0d1d: Unknown result type (might be due to invalid IL or missing references) //IL_0d22: Unknown result type (might be due to invalid IL or missing references) //IL_0d27: Unknown result type (might be due to invalid IL or missing references) //IL_2b4a: Unknown result type (might be due to invalid IL or missing references) //IL_2b50: Unknown result type (might be due to invalid IL or missing references) //IL_2b55: Unknown result type (might be due to invalid IL or missing references) //IL_2b5b: Unknown result type (might be due to invalid IL or missing references) //IL_2b65: Unknown result type (might be due to invalid IL or missing references) //IL_2b6a: Unknown result type (might be due to invalid IL or missing references) //IL_2b70: Unknown result type (might be due to invalid IL or missing references) //IL_2b7a: Unknown result type (might be due to invalid IL or missing references) //IL_2b7f: Unknown result type (might be due to invalid IL or missing references) //IL_2b85: Unknown result type (might be due to invalid IL or missing references) //IL_2b8a: Unknown result type (might be due to invalid IL or missing references) //IL_2b90: Unknown result type (might be due to invalid IL or missing references) //IL_2b95: Unknown result type (might be due to invalid IL or missing references) //IL_2b9b: Unknown result type (might be due to invalid IL or missing references) //IL_2ba0: Unknown result type (might be due to invalid IL or missing references) //IL_2bab: Unknown result type (might be due to invalid IL or missing references) //IL_2bb1: Unknown result type (might be due to invalid IL or missing references) //IL_2bb6: Unknown result type (might be due to invalid IL or missing references) //IL_2bbc: Unknown result type (might be due to invalid IL or missing references) //IL_2bc6: Unknown result type (might be due to invalid IL or missing references) //IL_2bcb: Unknown result type (might be due to invalid IL or missing references) //IL_2bd1: Unknown result type (might be due to invalid IL or missing references) //IL_2bdb: Unknown result type (might be due to invalid IL or missing references) //IL_2be0: Unknown result type (might be due to invalid IL or missing references) //IL_2be6: Unknown result type (might be due to invalid IL or missing references) //IL_2beb: Unknown result type (might be due to invalid IL or missing references) //IL_2bf1: Unknown result type (might be due to invalid IL or missing references) //IL_2bf6: Unknown result type (might be due to invalid IL or missing references) //IL_2bfc: Unknown result type (might be due to invalid IL or missing references) //IL_2c01: Unknown result type (might be due to invalid IL or missing references) //IL_2c0d: Unknown result type (might be due to invalid IL or missing references) //IL_1cea: Unknown result type (might be due to invalid IL or missing references) //IL_1cf0: Unknown result type (might be due to invalid IL or missing references) //IL_1cf5: Unknown result type (might be due to invalid IL or missing references) //IL_1cfb: Unknown result type (might be due to invalid IL or missing references) //IL_1d00: Unknown result type (might be due to invalid IL or missing references) //IL_1d06: Unknown result type (might be due to invalid IL or missing references) //IL_1d10: Unknown result type (might be due to invalid IL or missing references) //IL_1d15: Unknown result type (might be due to invalid IL or missing references) //IL_1d1b: Unknown result type (might be due to invalid IL or missing references) //IL_1d25: Unknown result type (might be due to invalid IL or missing references) //IL_1d2b: Unknown result type (might be due to invalid IL or missing references) //IL_1d30: Unknown result type (might be due to invalid IL or missing references) //IL_1d36: Unknown result type (might be due to invalid IL or missing references) //IL_1d3b: Unknown result type (might be due to invalid IL or missing references) //IL_1d40: Unknown result type (might be due to invalid IL or missing references) //IL_1d4b: Unknown result type (might be due to invalid IL or missing references) //IL_1d51: Unknown result type (might be due to invalid IL or missing references) //IL_1d56: Unknown result type (might be due to invalid IL or missing references) //IL_1d5c: Unknown result type (might be due to invalid IL or missing references) //IL_1d61: Unknown result type (might be due to invalid IL or missing references) //IL_1d67: Unknown result type (might be due to invalid IL or missing references) //IL_1d71: Unknown result type (might be due to invalid IL or missing references) //IL_1d77: Unknown result type (might be due to invalid IL or missing references) //IL_1d7c: Unknown result type (might be due to invalid IL or missing references) //IL_1d82: Unknown result type (might be due to invalid IL or missing references) //IL_1d87: Unknown result type (might be due to invalid IL or missing references) //IL_1d8c: Unknown result type (might be due to invalid IL or missing references) //IL_1d98: Unknown result type (might be due to invalid IL or missing references) //IL_1084: Unknown result type (might be due to invalid IL or missing references) //IL_108a: Unknown result type (might be due to invalid IL or missing references) //IL_108f: Unknown result type (might be due to invalid IL or missing references) //IL_1095: Unknown result type (might be due to invalid IL or missing references) //IL_109a: Unknown result type (might be due to invalid IL or missing references) //IL_10a0: Unknown result type (might be due to invalid IL or missing references) //IL_10aa: Unknown result type (might be due to invalid IL or missing references) //IL_10af: Unknown result type (might be due to invalid IL or missing references) //IL_10b5: Unknown result type (might be due to invalid IL or missing references) //IL_10bf: Unknown result type (might be due to invalid IL or missing references) //IL_10c5: Unknown result type (might be due to invalid IL or missing references) //IL_10ca: Unknown result type (might be due to invalid IL or missing references) //IL_10d0: Unknown result type (might be due to invalid IL or missing references) //IL_10d5: Unknown result type (might be due to invalid IL or missing references) //IL_10da: Unknown result type (might be due to invalid IL or missing references) //IL_10e0: Unknown result type (might be due to invalid IL or missing references) //IL_10ea: Unknown result type (might be due to invalid IL or missing references) //IL_10ef: Unknown result type (might be due to invalid IL or missing references) //IL_10fa: Unknown result type (might be due to invalid IL or missing references) //IL_1100: Unknown result type (might be due to invalid IL or missing references) //IL_1105: Unknown result type (might be due to invalid IL or missing references) //IL_110b: Unknown result type (might be due to invalid IL or missing references) //IL_1110: Unknown result type (might be due to invalid IL or missing references) //IL_1116: Unknown result type (might be due to invalid IL or missing references) //IL_1120: Unknown result type (might be due to invalid IL or missing references) //IL_1126: Unknown result type (might be due to invalid IL or missing references) //IL_112b: Unknown result type (might be due to invalid IL or missing references) //IL_1131: Unknown result type (might be due to invalid IL or missing references) //IL_1136: Unknown result type (might be due to invalid IL or missing references) //IL_113b: Unknown result type (might be due to invalid IL or missing references) //IL_1141: Unknown result type (might be due to invalid IL or missing references) //IL_114b: Unknown result type (might be due to invalid IL or missing references) //IL_1150: Unknown result type (might be due to invalid IL or missing references) //IL_115c: Unknown result type (might be due to invalid IL or missing references) //IL_0fd0: Unknown result type (might be due to invalid IL or missing references) //IL_0fd5: Unknown result type (might be due to invalid IL or missing references) //IL_0e64: Unknown result type (might be due to invalid IL or missing references) //IL_0e69: Unknown result type (might be due to invalid IL or missing references) //IL_0e78: Unknown result type (might be due to invalid IL or missing references) //IL_0e7d: Unknown result type (might be due to invalid IL or missing references) //IL_0e99: Unknown result type (might be due to invalid IL or missing references) //IL_0e9e: Unknown result type (might be due to invalid IL or missing references) //IL_0ea7: Unknown result type (might be due to invalid IL or missing references) //IL_0eb2: Unknown result type (might be due to invalid IL or missing references) //IL_0ec3: Unknown result type (might be due to invalid IL or missing references) //IL_0ec8: Unknown result type (might be due to invalid IL or missing references) //IL_0ecd: Unknown result type (might be due to invalid IL or missing references) //IL_2d04: Unknown result type (might be due to invalid IL or missing references) //IL_2d0a: Unknown result type (might be due to invalid IL or missing references) //IL_2d0f: Unknown result type (might be due to invalid IL or missing references) //IL_2d15: Unknown result type (might be due to invalid IL or missing references) //IL_2d1f: Unknown result type (might be due to invalid IL or missing references) //IL_2d24: Unknown result type (might be due to invalid IL or missing references) //IL_2d2a: Unknown result type (might be due to invalid IL or missing references) //IL_2d34: Unknown result type (might be due to invalid IL or missing references) //IL_2d39: Unknown result type (might be due to invalid IL or missing references) //IL_2d3f: Unknown result type (might be due to invalid IL or missing references) //IL_2d44: Unknown result type (might be due to invalid IL or missing references) //IL_2d4a: Unknown result type (might be due to invalid IL or missing references) //IL_2d4f: Unknown result type (might be due to invalid IL or missing references) //IL_2d55: Unknown result type (might be due to invalid IL or missing references) //IL_2d5a: Unknown result type (might be due to invalid IL or missing references) //IL_2d65: Unknown result type (might be due to invalid IL or missing references) //IL_2d6b: Unknown result type (might be due to invalid IL or missing references) //IL_2d70: Unknown result type (might be due to invalid IL or missing references) //IL_2d76: Unknown result type (might be due to invalid IL or missing references) //IL_2d80: Unknown result type (might be due to invalid IL or missing references) //IL_2d85: Unknown result type (might be due to invalid IL or missing references) //IL_2d8b: Unknown result type (might be due to invalid IL or missing references) //IL_2d95: Unknown result type (might be due to invalid IL or missing references) //IL_2d9a: Unknown result type (might be due to invalid IL or missing references) //IL_2da0: Unknown result type (might be due to invalid IL or missing references) //IL_2da5: Unknown result type (might be due to invalid IL or missing references) //IL_2dab: Unknown result type (might be due to invalid IL or missing references) //IL_2db0: Unknown result type (might be due to invalid IL or missing references) //IL_2dbc: Unknown result type (might be due to invalid IL or missing references) //IL_2c27: Unknown result type (might be due to invalid IL or missing references) //IL_2c2d: Unknown result type (might be due to invalid IL or missing references) //IL_2c32: Unknown result type (might be due to invalid IL or missing references) //IL_2c38: Unknown result type (might be due to invalid IL or missing references) //IL_2c42: Unknown result type (might be due to invalid IL or missing references) //IL_2c47: Unknown result type (might be due to invalid IL or missing references) //IL_2c4d: Unknown result type (might be due to invalid IL or missing references) //IL_2c57: Unknown result type (might be due to invalid IL or missing references) //IL_2c5c: Unknown result type (might be due to invalid IL or missing references) //IL_2c62: Unknown result type (might be due to invalid IL or missing references) //IL_2c67: Unknown result type (might be due to invalid IL or missing references) //IL_2c6d: Unknown result type (might be due to invalid IL or missing references) //IL_2c72: Unknown result type (might be due to invalid IL or missing references) //IL_2c78: Unknown result type (might be due to invalid IL or missing references) //IL_2c7d: Unknown result type (might be due to invalid IL or missing references) //IL_2c88: Unknown result type (might be due to invalid IL or missing references) //IL_2c8e: Unknown result type (might be due to invalid IL or missing references) //IL_2c93: Unknown result type (might be due to invalid IL or missing references) //IL_2c99: Unknown result type (might be due to invalid IL or missing references) //IL_2ca3: Unknown result type (might be due to invalid IL or missing references) //IL_2ca8: Unknown result type (might be due to invalid IL or missing references) //IL_2cae: Unknown result type (might be due to invalid IL or missing references) //IL_2cb3: Unknown result type (might be due to invalid IL or missing references) //IL_2cb9: Unknown result type (might be due to invalid IL or missing references) //IL_2cc3: Unknown result type (might be due to invalid IL or missing references) //IL_2cc8: Unknown result type (might be due to invalid IL or missing references) //IL_2cce: Unknown result type (might be due to invalid IL or missing references) //IL_2cd3: Unknown result type (might be due to invalid IL or missing references) //IL_2cd9: Unknown result type (might be due to invalid IL or missing references) //IL_2cde: Unknown result type (might be due to invalid IL or missing references) //IL_2cea: Unknown result type (might be due to invalid IL or missing references) //IL_1e66: Unknown result type (might be due to invalid IL or missing references) //IL_1e6c: Unknown result type (might be due to invalid IL or missing references) //IL_1e71: Unknown result type (might be due to invalid IL or missing references) //IL_1e77: Unknown result type (might be due to invalid IL or missing references) //IL_1e7c: Unknown result type (might be due to invalid IL or missing references) //IL_1e82: Unknown result type (might be due to invalid IL or missing references) //IL_1e8c: Unknown result type (might be due to invalid IL or missing references) //IL_1e91: Unknown result type (might be due to invalid IL or missing references) //IL_1e97: Unknown result type (might be due to invalid IL or missing references) //IL_1ea1: Unknown result type (might be due to invalid IL or missing references) //IL_1ea7: Unknown result type (might be due to invalid IL or missing references) //IL_1eac: Unknown result type (might be due to invalid IL or missing references) //IL_1eb2: Unknown result type (might be due to invalid IL or missing references) //IL_1eb7: Unknown result type (might be due to invalid IL or missing references) //IL_1ebc: Unknown result type (might be due to invalid IL or missing references) //IL_1ec2: Unknown result type (might be due to invalid IL or missing references) //IL_1ecc: Unknown result type (might be due to invalid IL or missing references) //IL_1ed1: Unknown result type (might be due to invalid IL or missing references) //IL_1edc: Unknown result type (might be due to invalid IL or missing references) //IL_1ee2: Unknown result type (might be due to invalid IL or missing references) //IL_1ee7: Unknown result type (might be due to invalid IL or missing references) //IL_1eed: Unknown result type (might be due to invalid IL or missing references) //IL_1ef2: Unknown result type (might be due to invalid IL or missing references) //IL_1ef8: Unknown result type (might be due to invalid IL or missing references) //IL_1f02: Unknown result type (might be due to invalid IL or missing references) //IL_1f08: Unknown result type (might be due to invalid IL or missing references) //IL_1f0d: Unknown result type (might be due to invalid IL or missing references) //IL_1f13: Unknown result type (might be due to invalid IL or missing references) //IL_1f18: Unknown result type (might be due to invalid IL or missing references) //IL_1f1d: Unknown result type (might be due to invalid IL or missing references) //IL_1f23: Unknown result type (might be due to invalid IL or missing references) //IL_1f2d: Unknown result type (might be due to invalid IL or missing references) //IL_1f32: Unknown result type (might be due to invalid IL or missing references) //IL_1f3e: Unknown result type (might be due to invalid IL or missing references) //IL_1db2: Unknown result type (might be due to invalid IL or missing references) //IL_1db7: Unknown result type (might be due to invalid IL or missing references) //IL_122a: Unknown result type (might be due to invalid IL or missing references) //IL_1230: Unknown result type (might be due to invalid IL or missing references) //IL_1235: Unknown result type (might be due to invalid IL or missing references) //IL_123b: Unknown result type (might be due to invalid IL or missing references) //IL_1240: Unknown result type (might be due to invalid IL or missing references) //IL_1246: Unknown result type (might be due to invalid IL or missing references) //IL_1250: Unknown result type (might be due to invalid IL or missing references) //IL_1255: Unknown result type (might be due to invalid IL or missing references) //IL_125b: Unknown result type (might be due to invalid IL or missing references) //IL_1265: Unknown result type (might be due to invalid IL or missing references) //IL_126b: Unknown result type (might be due to invalid IL or missing references) //IL_1270: Unknown result type (might be due to invalid IL or missing references) //IL_1276: Unknown result type (might be due to invalid IL or missing references) //IL_127b: Unknown result type (might be due to invalid IL or missing references) //IL_1280: Unknown result type (might be due to invalid IL or missing references) //IL_1286: Unknown result type (might be due to invalid IL or missing references) //IL_1290: Unknown result type (might be due to invalid IL or missing references) //IL_1295: Unknown result type (might be due to invalid IL or missing references) //IL_12a0: Unknown result type (might be due to invalid IL or missing references) //IL_12a6: Unknown result type (might be due to invalid IL or missing references) //IL_12ab: Unknown result type (might be due to invalid IL or missing references) //IL_12b1: Unknown result type (might be due to invalid IL or missing references) //IL_12b6: Unknown result type (might be due to invalid IL or missing references) //IL_12bc: Unknown result type (might be due to invalid IL or missing references) //IL_12c6: Unknown result type (might be due to invalid IL or missing references) //IL_12cb: Unknown result type (might be due to invalid IL or missing references) //IL_12d1: Unknown result type (might be due to invalid IL or missing references) //IL_12db: Unknown result type (might be due to invalid IL or missing references) //IL_12e1: Unknown result type (might be due to invalid IL or missing references) //IL_12e6: Unknown result type (might be due to invalid IL or missing references) //IL_12ec: Unknown result type (might be due to invalid IL or missing references) //IL_12f1: Unknown result type (might be due to invalid IL or missing references) //IL_12f6: Unknown result type (might be due to invalid IL or missing references) //IL_12fc: Unknown result type (might be due to invalid IL or missing references) //IL_1306: Unknown result type (might be due to invalid IL or missing references) //IL_130b: Unknown result type (might be due to invalid IL or missing references) //IL_1317: Unknown result type (might be due to invalid IL or missing references) //IL_1176: Unknown result type (might be due to invalid IL or missing references) //IL_117b: Unknown result type (might be due to invalid IL or missing references) //IL_100a: Unknown result type (might be due to invalid IL or missing references) //IL_100f: Unknown result type (might be due to invalid IL or missing references) //IL_101e: Unknown result type (might be due to invalid IL or missing references) //IL_1023: Unknown result type (might be due to invalid IL or missing references) //IL_103f: Unknown result type (might be due to invalid IL or missing references) //IL_1044: Unknown result type (might be due to invalid IL or missing references) //IL_104d: Unknown result type (might be due to invalid IL or missing references) //IL_1058: Unknown result type (might be due to invalid IL or missing references) //IL_1069: Unknown result type (might be due to invalid IL or missing references) //IL_106e: Unknown result type (might be due to invalid IL or missing references) //IL_1073: Unknown result type (might be due to invalid IL or missing references) //IL_2dd7: Unknown result type (might be due to invalid IL or missing references) //IL_2ddc: Unknown result type (might be due to invalid IL or missing references) //IL_200c: Unknown result type (might be due to invalid IL or missing references) //IL_2012: Unknown result type (might be due to invalid IL or missing references) //IL_2017: Unknown result type (might be due to invalid IL or missing references) //IL_201d: Unknown result type (might be due to invalid IL or missing references) //IL_2022: Unknown result type (might be due to invalid IL or missing references) //IL_2028: Unknown result type (might be due to invalid IL or missing references) //IL_2032: Unknown result type (might be due to invalid IL or missing references) //IL_2037: Unknown result type (might be due to invalid IL or missing references) //IL_203d: Unknown result type (might be due to invalid IL or missing references) //IL_2047: Unknown result type (might be due to invalid IL or missing references) //IL_204d: Unknown result type (might be due to invalid IL or missing references) //IL_2052: Unknown result type (might be due to invalid IL or missing references) //IL_2058: Unknown result type (might be due to invalid IL or missing references) //IL_205d: Unknown result type (might be due to invalid IL or missing references) //IL_2062: Unknown result type (might be due to invalid IL or missing references) //IL_2068: Unknown result type (might be due to invalid IL or missing references) //IL_2072: Unknown result type (might be due to invalid IL or missing references) //IL_2077: Unknown result type (might be due to invalid IL or missing references) //IL_2082: Unknown result type (might be due to invalid IL or missing references) //IL_2088: Unknown result type (might be due to invalid IL or missing references) //IL_208d: Unknown result type (might be due to invalid IL or missing references) //IL_2093: Unknown result type (might be due to invalid IL or missing references) //IL_2098: Unknown result type (might be due to invalid IL or missing references) //IL_209e: Unknown result type (might be due to invalid IL or missing references) //IL_20a8: Unknown result type (might be due to invalid IL or missing references) //IL_20ae: Unknown result type (might be due to invalid IL or missing references) //IL_20b3: Unknown result type (might be due to invalid IL or missing references) //IL_20b9: Unknown result type (might be due to invalid IL or missing references) //IL_20be: Unknown result type (might be due to invalid IL or missing references) //IL_20c3: Unknown result type (might be due to invalid IL or missing references) //IL_20c9: Unknown result type (might be due to invalid IL or missing references) //IL_20d3: Unknown result type (might be due to invalid IL or missing references) //IL_20d8: Unknown result type (might be due to invalid IL or missing references) //IL_20e4: Unknown result type (might be due to invalid IL or missing references) //IL_1f58: Unknown result type (might be due to invalid IL or missing references) //IL_1f5d: Unknown result type (might be due to invalid IL or missing references) //IL_1dec: Unknown result type (might be due to invalid IL or missing references) //IL_1df1: Unknown result type (might be due to invalid IL or missing references) //IL_1e00: Unknown result type (might be due to invalid IL or missing references) //IL_1e05: Unknown result type (might be due to invalid IL or missing references) //IL_1e21: Unknown result type (might be due to invalid IL or missing references) //IL_1e26: Unknown result type (might be due to invalid IL or missing references) //IL_1e2f: Unknown result type (might be due to invalid IL or missing references) //IL_1e3a: Unknown result type (might be due to invalid IL or missing references) //IL_1e4b: Unknown result type (might be due to invalid IL or missing references) //IL_1e50: Unknown result type (might be due to invalid IL or missing references) //IL_1e55: Unknown result type (might be due to invalid IL or missing references) //IL_13e5: Unknown result type (might be due to invalid IL or missing references) //IL_13eb: Unknown result type (might be due to invalid IL or missing references) //IL_13f0: Unknown result type (might be due to invalid IL or missing references) //IL_13f6: Unknown result type (might be due to invalid IL or missing references) //IL_13fb: Unknown result type (might be due to invalid IL or missing references) //IL_1401: Unknown result type (might be due to invalid IL or missing references) //IL_140b: Unknown result type (might be due to invalid IL or missing references) //IL_1410: Unknown result type (might be due to invalid IL or missing references) //IL_1416: Unknown result type (might be due to invalid IL or missing references) //IL_1420: Unknown result type (might be due to invalid IL or missing references) //IL_1426: Unknown result type (might be due to invalid IL or missing references) //IL_142b: Unknown result type (might be due to invalid IL or missing references) //IL_1431: Unknown result type (might be due to invalid IL or missing references) //IL_1436: Unknown result type (might be due to invalid IL or missing references) //IL_143b: Unknown result type (might be due to invalid IL or missing references) //IL_1441: Unknown result type (might be due to invalid IL or missing references) //IL_144b: Unknown result type (might be due to invalid IL or missing references) //IL_1450: Unknown result type (might be due to invalid IL or missing references) //IL_145b: Unknown result type (might be due to invalid IL or missing references) //IL_1461: Unknown result type (might be due to invalid IL or missing references) //IL_1466: Unknown result type (might be due to invalid IL or missing references) //IL_146c: Unknown result type (might be due to invalid IL or missing references) //IL_1471: Unknown result type (might be due to invalid IL or missing references) //IL_1477: Unknown result type (might be due to invalid IL or missing references) //IL_1481: Unknown result type (might be due to invalid IL or missing references) //IL_1486: Unknown result type (might be due to invalid IL or missing references) //IL_148c: Unknown result type (might be due to invalid IL or missing references) //IL_1496: Unknown result type (might be due to invalid IL or missing references) //IL_149c: Unknown result type (might be due to invalid IL or missing references) //IL_14a1: Unknown result type (might be due to invalid IL or missing references) //IL_14a7: Unknown result type (might be due to invalid IL or missing references) //IL_14ac: Unknown result type (might be due to invalid IL or missing references) //IL_14b1: Unknown result type (might be due to invalid IL or missing references) //IL_14b7: Unknown result type (might be due to invalid IL or missing references) //IL_14c1: Unknown result type (might be due to invalid IL or missing references) //IL_14c6: Unknown result type (might be due to invalid IL or missing references) //IL_14d2: Unknown result type (might be due to invalid IL or missing references) //IL_1331: Unknown result type (might be due to invalid IL or missing references) //IL_1336: Unknown result type (might be due to invalid IL or missing references) //IL_11b0: Unknown result type (might be due to invalid IL or missing references) //IL_11b5: Unknown result type (might be due to invalid IL or missing references) //IL_11c4: Unknown result type (might be due to invalid IL or missing references) //IL_11c9: Unknown result type (might be due to invalid IL or missing references) //IL_11e5: Unknown result type (might be due to invalid IL or missing references) //IL_11ea: Unknown result type (might be due to invalid IL or missing references) //IL_11f3: Unknown result type (might be due to invalid IL or missing references) //IL_11fe: Unknown result type (might be due to invalid IL or missing references) //IL_120f: Unknown result type (might be due to invalid IL or missing references) //IL_1214: Unknown result type (might be due to invalid IL or missing references) //IL_1219: Unknown result type (might be due to invalid IL or missing references) //IL_2e18: Unknown result type (might be due to invalid IL or missing references) //IL_2e1e: Unknown result type (might be due to invalid IL or missing references) //IL_2e23: Unknown result type (might be due to invalid IL or missing references) //IL_2e29: Unknown result type (might be due to invalid IL or missing references) //IL_2e2e: Unknown result type (might be due to invalid IL or missing references) //IL_2e34: Unknown result type (might be due to invalid IL or missing references) //IL_2e3e: Unknown result type (might be due to invalid IL or missing references) //IL_2e43: Unknown result type (might be due to invalid IL or missing references) //IL_2e49: Unknown result type (might be due to invalid IL or missing references) //IL_2e53: Unknown result type (might be due to invalid IL or missing references) //IL_2e59: Unknown result type (might be due to invalid IL or missing references) //IL_2e5e: Unknown result type (might be due to invalid IL or missing references) //IL_2e64: Unknown result type (might be due to invalid IL or missing references) //IL_2e69: Unknown result type (might be due to invalid IL or missing references) //IL_2e6e: Unknown result type (might be due to invalid IL or missing references) //IL_2e79: Unknown result type (might be due to invalid IL or missing references) //IL_2e7f: Unknown result type (might be due to invalid IL or missing references) //IL_2e84: Unknown result type (might be due to invalid IL or missing references) //IL_2e8a: Unknown result type (might be due to invalid IL or missing references) //IL_2e8f: Unknown result type (might be due to invalid IL or missing references) //IL_2e95: Unknown result type (might be due to invalid IL or missing references) //IL_2e9f: Unknown result type (might be due to invalid IL or missing references) //IL_2ea5: Unknown result type (might be due to invalid IL or missing references) //IL_2eaa: Unknown result type (might be due to invalid IL or missing references) //IL_2eb0: Unknown result type (might be due to invalid IL or missing references) //IL_2eb5: Unknown result type (might be due to invalid IL or missing references) //IL_2eba: Unknown result type (might be due to invalid IL or missing references) //IL_2ec6: Unknown result type (might be due to invalid IL or missing references) //IL_21b2: Unknown result type (might be due to invalid IL or missing references) //IL_21b8: Unknown result type (might be due to invalid IL or missing references) //IL_21bd: Unknown result type (might be due to invalid IL or missing references) //IL_21c3: Unknown result type (might be due to invalid IL or missing references) //IL_21c8: Unknown result type (might be due to invalid IL or missing references) //IL_21ce: Unknown result type (might be due to invalid IL or missing references) //IL_21d8: Unknown result type (might be due to invalid IL or missing references) //IL_21dd: Unknown result type (might be due to invalid IL or missing references) //IL_21e3: Unknown result type (might be due to invalid IL or missing references) //IL_21ed: Unknown result type (might be due to invalid IL or missing references) //IL_21f3: Unknown result type (might be due to invalid IL or missing references) //IL_21f8: Unknown result type (might be due to invalid IL or missing references) //IL_21fe: Unknown result type (might be due to invalid IL or missing references) //IL_2203: Unknown result type (might be due to invalid IL or missing references) //IL_2208: Unknown result type (might be due to invalid IL or missing references) //IL_220e: Unknown result type (might be due to invalid IL or missing references) //IL_2218: Unknown result type (might be due to invalid IL or missing references) //IL_221d: Unknown result type (might be due to invalid IL or missing references) //IL_2228: Unknown result type (might be due to invalid IL or missing references) //IL_222e: Unknown result type (might be due to invalid IL or missing references) //IL_2233: Unknown result type (might be due to invalid IL or missing references) //IL_2239: Unknown result type (might be due to invalid IL or missing references) //IL_223e: Unknown result type (might be due to invalid IL or missing references) //IL_2244: Unknown result type (might be due to invalid IL or missing references) //IL_224e: Unknown result type (might be due to invalid IL or missing references) //IL_2254: Unknown result type (might be due to invalid IL or missing references) //IL_2259: Unknown result type (might be due to invalid IL or missing references) //IL_225f: Unknown result type (might be due to invalid IL or missing references) //IL_2264: Unknown result type (might be due to invalid IL or missing references) //IL_2269: Unknown result type (might be due to invalid IL or missing references) //IL_226f: Unknown result type (might be due to invalid IL or missing references) //IL_2279: Unknown result type (might be due to invalid IL or missing references) //IL_227e: Unknown result type (might be due to invalid IL or missing references) //IL_228a: Unknown result type (might be due to invalid IL or missing references) //IL_20fe: Unknown result type (might be due to invalid IL or missing references) //IL_2103: Unknown result type (might be due to invalid IL or missing references) //IL_1f92: Unknown result type (might be due to invalid IL or missing references) //IL_1f97: Unknown result type (might be due to invalid IL or missing references) //IL_1fa6: Unknown result type (might be due to invalid IL or missing references) //IL_1fab: Unknown result type (might be due to invalid IL or missing references) //IL_1fc7: Unknown result type (might be due to invalid IL or missing references) //IL_1fcc: Unknown result type (might be due to invalid IL or missing references) //IL_1fd5: Unknown result type (might be due to invalid IL or missing references) //IL_1fe0: Unknown result type (might be due to invalid IL or missing references) //IL_1ff1: Unknown result type (might be due to invalid IL or missing references) //IL_1ff6: Unknown result type (might be due to invalid IL or missing references) //IL_1ffb: Unknown result type (might be due to invalid IL or missing references) //IL_15a0: Unknown result type (might be due to invalid IL or missing references) //IL_15a6: Unknown result type (might be due to invalid IL or missing references) //IL_15ab: Unknown result type (might be due to invalid IL or missing references) //IL_15b1: Unknown result type (might be due to invalid IL or missing references) //IL_15b6: Unknown result type (might be due to invalid IL or missing references) //IL_15bc: Unknown result type (might be due to invalid IL or missing references) //IL_15c6: Unknown result type (might be due to invalid IL or missing references) //IL_15cb: Unknown result type (might be due to invalid IL or missing references) //IL_15d1: Unknown result type (might be due to invalid IL or missing references) //IL_15db: Unknown result type (might be due to invalid IL or missing references) //IL_15e1: Unknown result type (might be due to invalid IL or missing references) //IL_15e6: Unknown result type (might be due to invalid IL or missing references) //IL_15ec: Unknown result type (might be due to invalid IL or missing references) //IL_15f1: Unknown result type (might be due to invalid IL or missing references) //IL_15f6: Unknown result type (might be due to invalid IL or missing references) //IL_15fc: Unknown result type (might be due to invalid IL or missing references) //IL_1606: Unknown result type (might be due to invalid IL or missing references) //IL_160b: Unknown result type (might be due to invalid IL or missing references) //IL_1616: Unknown result type (might be due to invalid IL or missing references) //IL_161c: Unknown result type (might be due to invalid IL or missing references) //IL_1621: Unknown result type (might be due to invalid IL or missing references) //IL_1627: Unknown result type (might be due to invalid IL or missing references) //IL_162c: Unknown result type (might be due to invalid IL or missing references) //IL_1632: Unknown result type (might be due to invalid IL or missing references) //IL_163c: Unknown result type (might be due to invalid IL or missing references) //IL_1641: Unknown result type (might be due to invalid IL or missing references) //IL_1647: Unknown result type (might be due to invalid IL or missing references) //IL_1651: Unknown result type (might be due to invalid IL or missing references) //IL_1657: Unknown result type (might be due to invalid IL or missing references) //IL_165c: Unknown result type (might be due to invalid IL or missing references) //IL_1662: Unknown result type (might be due to invalid IL or missing references) //IL_1667: Unknown result type (might be due to invalid IL or missing references) //IL_166c: Unknown result type (might be due to invalid IL or missing references) //IL_1672: Unknown result type (might be due to invalid IL or missing references) //IL_167c: Unknown result type (might be due to invalid IL or missing references) //IL_1681: Unknown result type (might be due to invalid IL or missing references) //IL_168d: Unknown result type (might be due to invalid IL or missing references) //IL_14ec: Unknown result type (might be due to invalid IL or missing references) //IL_14f1: Unknown result type (might be due to invalid IL or missing references) //IL_136b: Unknown result type (might be due to invalid IL or missing references) //IL_1370: Unknown result type (might be due to invalid IL or missing references) //IL_137f: Unknown result type (might be due to invalid IL or missing references) //IL_1384: Unknown result type (might be due to invalid IL or missing references) //IL_13a0: Unknown result type (might be due to invalid IL or missing references) //IL_13a5: Unknown result type (might be due to invalid IL or missing references) //IL_13ae: Unknown result type (might be due to invalid IL or missing references) //IL_13b9: Unknown result type (might be due to invalid IL or missing references) //IL_13ca: Unknown result type (might be due to invalid IL or missing references) //IL_13cf: Unknown result type (might be due to invalid IL or missing references) //IL_13d4: Unknown result type (might be due to invalid IL or missing references) //IL_2f94: Unknown result type (might be due to invalid IL or missing references) //IL_2f9a: Unknown result type (might be due to invalid IL or missing references) //IL_2f9f: Unknown result type (might be due to invalid IL or missing references) //IL_2fa5: Unknown result type (might be due to invalid IL or missing references) //IL_2faa: Unknown result type (might be due to invalid IL or missing references) //IL_2fb0: Unknown result type (might be due to invalid IL or missing references) //IL_2fba: Unknown result type (might be due to invalid IL or missing references) //IL_2fbf: Unknown result type (might be due to invalid IL or missing references) //IL_2fc5: Unknown result type (might be due to invalid IL or missing references) //IL_2fcf: Unknown result type (might be due to invalid IL or missing references) //IL_2fd5: Unknown result type (might be due to invalid IL or missing references) //IL_2fda: Unknown result type (might be due to invalid IL or missing references) //IL_2fe0: Unknown result type (might be due to invalid IL or missing references) //IL_2fe5: Unknown result type (might be due to invalid IL or missing references) //IL_2fea: Unknown result type (might be due to invalid IL or missing references) //IL_2ff0: Unknown result type (might be due to invalid IL or missing references) //IL_2ffa: Unknown result type (might be due to invalid IL or missing references) //IL_2fff: Unknown result type (might be due to invalid IL or missing references) //IL_300a: Unknown result type (might be due to invalid IL or missing references) //IL_3010: Unknown result type (might be due to invalid IL or missing references) //IL_3015: Unknown result type (might be due to invalid IL or missing references) //IL_301b: Unknown result type (might be due to invalid IL or missing references) //IL_3020: Unknown result type (might be due to invalid IL or missing references) //IL_3026: Unknown result type (might be due to invalid IL or missing references) //IL_3030: Unknown result type (might be due to invalid IL or missing references) //IL_3036: Unknown result type (might be due to invalid IL or missing references) //IL_303b: Unknown result type (might be due to invalid IL or missing references) //IL_3041: Unknown result type (might be due to invalid IL or missing references) //IL_3046: Unknown result type (might be due to invalid IL or missing references) //IL_304b: Unknown result type (might be due to invalid IL or missing references) //IL_3051: Unknown result type (might be due to invalid IL or missing references) //IL_305b: Unknown result type (might be due to invalid IL or missing references) //IL_3060: Unknown result type (might be due to invalid IL or missing references) //IL_306c: Unknown result type (might be due to invalid IL or missing references) //IL_2ee0: Unknown result type (might be due to invalid IL or missing references) //IL_2ee5: Unknown result type (might be due to invalid IL or missing references) //IL_2358: Unknown result type (might be due to invalid IL or missing references) //IL_235e: Unknown result type (might be due to invalid IL or missing references) //IL_2363: Unknown result type (might be due to invalid IL or missing references) //IL_2369: Unknown result type (might be due to invalid IL or missing references) //IL_236e: Unknown result type (might be due to invalid IL or missing references) //IL_2374: Unknown result type (might be due to invalid IL or missing references) //IL_237e: Unknown result type (might be due to invalid IL or missing references) //IL_2383: Unknown result type (might be due to invalid IL or missing references) //IL_2389: Unknown result type (might be due to invalid IL or missing references) //IL_2393: Unknown result type (might be due to invalid IL or missing references) //IL_2399: Unknown result type (might be due to invalid IL or missing references) //IL_239e: Unknown result type (might be due to invalid IL or missing references) //IL_23a4: Unknown result type (might be due to invalid IL or missing references) //IL_23a9: Unknown result type (might be due to invalid IL or missing references) //IL_23ae: Unknown result type (might be due to invalid IL or missing references) //IL_23b4: Unknown result type (might be due to invalid IL or missing references) //IL_23be: Unknown result type (might be due to invalid IL or missing references) //IL_23c3: Unknown result type (might be due to invalid IL or missing references) //IL_23ce: Unknown result type (might be due to invalid IL or missing references) //IL_23d4: Unknown result type (might be due to invalid IL or missing references) //IL_23d9: Unknown result type (might be due to invalid IL or missing references) //IL_23df: Unknown result type (might be due to invalid IL or missing references) //IL_23e4: Unknown result type (might be due to invalid IL or missing references) //IL_23ea: Unknown result type (might be due to invalid IL or missing references) //IL_23f4: Unknown result type (might be due to invalid IL or missing references) //IL_23f9: Unknown result type (might be due to invalid IL or missing references) //IL_23ff: Unknown result type (might be due to invalid IL or missing references) //IL_2409: Unknown result type (might be due to invalid IL or missing references) //IL_240f: Unknown result type (might be due to invalid IL or missing references) //IL_2414: Unknown result type (might be due to invalid IL or missing references) //IL_241a: Unknown result type (might be due to invalid IL or missing references) //IL_241f: Unknown result type (might be due to invalid IL or missing references) //IL_2424: Unknown result type (might be due to invalid IL or missing references) //IL_242a: Unknown result type (might be due to invalid IL or missing references) //IL_2434: Unknown result type (might be due to invalid IL or missing references) //IL_2439: Unknown result type (might be due to invalid IL or missing references) //IL_2445: Unknown result type (might be due to invalid IL or missing references) //IL_22a4: Unknown result type (might be due to invalid IL or missing references) //IL_22a9: Unknown result type (might be due to invalid IL or missing references) //IL_2138: Unknown result type (might be due to invalid IL or missing references) //IL_213d: Unknown result type (might be due to invalid IL or missing references) //IL_214c: Unknown result type (might be due to invalid IL or missing references) //IL_2151: Unknown result type (might be due to invalid IL or missing references) //IL_216d: Unknown result type (might be due to invalid IL or missing references) //IL_2172: Unknown result type (might be due to invalid IL or missing references) //IL_217b: Unknown result type (might be due to invalid IL or missing references) //IL_2186: Unknown result type (might be due to invalid IL or missing references) //IL_2197: Unknown result type (might be due to invalid IL or missing references) //IL_219c: Unknown result type (might be due to invalid IL or missing references) //IL_21a1: Unknown result type (might be due to invalid IL or missing references) //IL_175b: Unknown result type (might be due to invalid IL or missing references) //IL_1761: Unknown result type (might be due to invalid IL or missing references) //IL_1766: Unknown result type (might be due to invalid IL or missing references) //IL_176c: Unknown result type (might be due to invalid IL or missing references) //IL_1771: Unknown result type (might be due to invalid IL or missing references) //IL_1777: Unknown result type (might be due to invalid IL or missing references) //IL_1781: Unknown result type (might be due to invalid IL or missing references) //IL_1786: Unknown result type (might be due to invalid IL or missing references) //IL_178c: Unknown result type (might be due to invalid IL or missing references) //IL_1796: Unknown result type (might be due to invalid IL or missing references) //IL_179c: Unknown result type (might be due to invalid IL or missing references) //IL_17a1: Unknown result type (might be due to invalid IL or missing references) //IL_17a7: Unknown result type (might be due to invalid IL or missing references) //IL_17ac: Unknown result type (might be due to invalid IL or missing references) //IL_17b1: Unknown result type (might be due to invalid IL or missing references) //IL_17b7: Unknown result type (might be due to invalid IL or missing references) //IL_17c1: Unknown result type (might be due to invalid IL or missing references) //IL_17c6: Unknown result type (might be due to invalid IL or missing references) //IL_17d1: Unknown result type (might be due to invalid IL or missing references) //IL_17d7: Unknown result type (might be due to invalid IL or missing references) //IL_17dc: Unknown result type (might be due to invalid IL or missing references) //IL_17e2: Unknown result type (might be due to invalid IL or missing references) //IL_17e7: Unknown result type (might be due to invalid IL or missing references) //IL_17ed: Unknown result type (might be due to invalid IL or missing references) //IL_17f7: Unknown result type (might be due to invalid IL or missing references) //IL_17fc: Unknown result type (might be due to invalid IL or missing references) //IL_1802: Unknown result type (might be due to invalid IL or missing references) //IL_180c: Unknown result type (might be due to invalid IL or missing references) //IL_1812: Unknown result type (might be due to invalid IL or missing references) //IL_1817: Unknown result type (might be due to invalid IL or missing references) //IL_181d: Unknown result type (might be due to invalid IL or missing references) //IL_1822: Unknown result type (might be due to invalid IL or missing references) //IL_1827: Unknown result type (might be due to invalid IL or missing references) //IL_182d: Unknown result type (might be due to invalid IL or missing references) //IL_1837: Unknown result type (might be due to invalid IL or missing references) //IL_183c: Unknown result type (might be due to invalid IL or missing references) //IL_1848: Unknown result type (might be due to invalid IL or missing references) //IL_16a7: Unknown result type (might be due to invalid IL or missing references) //IL_16ac: Unknown result type (might be due to invalid IL or missing references) //IL_1526: Unknown result type (might be due to invalid IL or missing references) //IL_152b: Unknown result type (might be due to invalid IL or missing references) //IL_153a: Unknown result type (might be due to invalid IL or missing references) //IL_153f: Unknown result type (might be due to invalid IL or missing references) //IL_155b: Unknown result type (might be due to invalid IL or missing references) //IL_1560: Unknown result type (might be due to invalid IL or missing references) //IL_1569: Unknown result type (might be due to invalid IL or missing references) //IL_1574: Unknown result type (might be due to invalid IL or missing references) //IL_1585: Unknown result type (might be due to invalid IL or missing references) //IL_158a: Unknown result type (might be due to invalid IL or missing references) //IL_158f: Unknown result type (might be due to invalid IL or missing references) //IL_313a: Unknown result type (might be due to invalid IL or missing references) //IL_3140: Unknown result type (might be due to invalid IL or missing references) //IL_3145: Unknown result type (might be due to invalid IL or missing references) //IL_314b: Unknown result type (might be due to invalid IL or missing references) //IL_3150: Unknown result type (might be due to invalid IL or missing references) //IL_3156: Unknown result type (might be due to invalid IL or missing references) //IL_3160: Unknown result type (might be due to invalid IL or missing references) //IL_3165: Unknown result type (might be due to invalid IL or missing references) //IL_316b: Unknown result type (might be due to invalid IL or missing references) //IL_3175: Unknown result type (might be due to invalid IL or missing references) //IL_317b: Unknown result type (might be due to invalid IL or missing references) //IL_3180: Unknown result type (might be due to invalid IL or missing references) //IL_3186: Unknown result type (might be due to invalid IL or missing references) //IL_318b: Unknown result type (might be due to invalid IL or missing references) //IL_3190: Unknown result type (might be due to invalid IL or missing references) //IL_3196: Unknown result type (might be due to invalid IL or missing references) //IL_31a0: Unknown result type (might be due to invalid IL or missing references) //IL_31a5: Unknown result type (might be due to invalid IL or missing references) //IL_31b0: Unknown result type (might be due to invalid IL or missing references) //IL_31b6: Unknown result type (might be due to invalid IL or missing references) //IL_31bb: Unknown result type (might be due to invalid IL or missing references) //IL_31c1: Unknown result type (might be due to invalid IL or missing references) //IL_31c6: Unknown result type (might be due to invalid IL or missing references) //IL_31cc: Unknown result type (might be due to invalid IL or missing references) //IL_31d6: Unknown result type (might be due to invalid IL or missing references) //IL_31dc: Unknown result type (might be due to invalid IL or missing references) //IL_31e1: Unknown result type (might be due to invalid IL or missing references) //IL_31e7: Unknown result type (might be due to invalid IL or missing references) //IL_31ec: Unknown result type (might be due to invalid IL or missing references) //IL_31f1: Unknown result type (might be due to invalid IL or missing references) //IL_31f7: Unknown result type (might be due to invalid IL or missing references) //IL_3201: Unknown result type (might be due to invalid IL or missing references) //IL_3206: Unknown result type (might be due to invalid IL or missing references) //IL_3212: Unknown result type (might be due to invalid IL or missing references) //IL_3086: Unknown result type (might be due to invalid IL or missing references) //IL_308b: Unknown result type (might be due to invalid IL or missing references) //IL_2f1a: Unknown result type (might be due to invalid IL or missing references) //IL_2f1f: Unknown result type (might be due to invalid IL or missing references) //IL_2f2e: Unknown result type (might be due to invalid IL or missing references) //IL_2f33: Unknown result type (might be due to invalid IL or missing references) //IL_2f4f: Unknown result type (might be due to invalid IL or missing references) //IL_2f54: Unknown result type (might be due to invalid IL or missing references) //IL_2f5d: Unknown result type (might be due to invalid IL or missing references) //IL_2f68: Unknown result type (might be due to invalid IL or missing references) //IL_2f79: Unknown result type (might be due to invalid IL or missing references) //IL_2f7e: Unknown result type (might be due to invalid IL or missing references) //IL_2f83: Unknown result type (might be due to invalid IL or missing references) //IL_2513: Unknown result type (might be due to invalid IL or missing references) //IL_2519: Unknown result type (might be due to invalid IL or missing references) //IL_251e: Unknown result type (might be due to invalid IL or missing references) //IL_2524: Unknown result type (might be due to invalid IL or missing references) //IL_2529: Unknown result type (might be due to invalid IL or missing references) //IL_252f: Unknown result type (might be due to invalid IL or missing references) //IL_2539: Unknown result type (might be due to invalid IL or missing references) //IL_253e: Unknown result type (might be due to invalid IL or missing references) //IL_2544: Unknown result type (might be due to invalid IL or missing references) //IL_254e: Unknown result type (might be due to invalid IL or missing references) //IL_2554: Unknown result type (might be due to invalid IL or missing references) //IL_2559: Unknown result type (might be due to invalid IL or missing references) //IL_255f: Unknown result type (might be due to invalid IL or missing references) //IL_2564: Unknown result type (might be due to invalid IL or missing references) //IL_2569: Unknown result type (might be due to invalid IL or missing references) //IL_256f: Unknown result type (might be due to invalid IL or missing references) //IL_2579: Unknown result type (might be due to invalid IL or missing references) //IL_257e: Unknown result type (might be due to invalid IL or missing references) //IL_2589: Unknown result type (might be due to invalid IL or missing references) //IL_258f: Unknown result type (might be due to invalid IL or missing references) //IL_2594: Unknown result type (might be due to invalid IL or missing references) //IL_259a: Unknown result type (might be due to invalid IL or missing references) //IL_259f: Unknown result type (might be due to invalid IL or missing references) //IL_25a5: Unknown result type (might be due to invalid IL or missing references) //IL_25af: Unknown result type (might be due to invalid IL or missing references) //IL_25b4: Unknown result type (might be due to invalid IL or missing references) //IL_25ba: Unknown result type (might be due to invalid IL or missing references) //IL_25c4: Unknown result type (might be due to invalid IL or missing references) //IL_25ca: Unknown result type (might be due to invalid IL or missing references) //IL_25cf: Unknown result type (might be due to invalid IL or missing references) //IL_25d5: Unknown result type (might be due to invalid IL or missing references) //IL_25da: Unknown result type (might be due to invalid IL or missing references) //IL_25df: Unknown result type (might be due to invalid IL or missing references) //IL_25e5: Unknown result type (might be due to invalid IL or missing references) //IL_25ef: Unknown result type (might be due to invalid IL or missing references) //IL_25f4: Unknown result type (might be due to invalid IL or missing references) //IL_2600: Unknown result type (might be due to invalid IL or missing references) //IL_245f: Unknown result type (might be due to invalid IL or missing references) //IL_2464: Unknown result type (might be due to invalid IL or missing references) //IL_22de: Unknown result type (might be due to invalid IL or missing references) //IL_22e3: Unknown result type (might be due to invalid IL or missing references) //IL_22f2: Unknown result type (might be due to invalid IL or missing references) //IL_22f7: Unknown result type (might be due to invalid IL or missing references) //IL_2313: Unknown result type (might be due to invalid IL or missing references) //IL_2318: Unknown result type (might be due to invalid IL or missing references) //IL_2321: Unknown result type (might be due to invalid IL or missing references) //IL_232c: Unknown result type (might be due to invalid IL or missing references) //IL_233d: Unknown result type (might be due to invalid IL or missing references) //IL_2342: Unknown result type (might be due to invalid IL or missing references) //IL_2347: Unknown result type (might be due to invalid IL or missing references) //IL_1918: Unknown result type (might be due to invalid IL or missing references) //IL_191d: Unknown result type (might be due to invalid IL or missing references) //IL_192c: Unknown result type (might be due to invalid IL or missing references) //IL_1931: Unknown result type (might be due to invalid IL or missing references) //IL_1948: Unknown result type (might be due to invalid IL or missing references) //IL_194d: Unknown result type (might be due to invalid IL or missing references) //IL_1969: Unknown result type (might be due to invalid IL or missing references) //IL_196e: Unknown result type (might be due to invalid IL or missing references) //IL_197d: Unknown result type (might be due to invalid IL or missing references) //IL_1982: Unknown result type (might be due to invalid IL or missing references) //IL_1993: Unknown result type (might be due to invalid IL or missing references) //IL_199e: Unknown result type (might be due to invalid IL or missing references) //IL_19a3: Unknown result type (might be due to invalid IL or missing references) //IL_19cc: Unknown result type (might be due to invalid IL or missing references) //IL_19d1: Unknown result type (might be due to invalid IL or missing references) //IL_19e8: Unknown result type (might be due to invalid IL or missing references) //IL_19ed: Unknown result type (might be due to invalid IL or missing references) //IL_19f2: Unknown result type (might be due to invalid IL or missing references) //IL_1862: Unknown result type (might be due to invalid IL or missing references) //IL_1867: Unknown result type (might be due to invalid IL or missing references) //IL_16e1: Unknown result type (might be due to invalid IL or missing references) //IL_16e6: Unknown result type (might be due to invalid IL or missing references) //IL_16f5: Unknown result type (might be due to invalid IL or missing references) //IL_16fa: Unknown result type (might be due to invalid IL or missing references) //IL_1716: Unknown result type (might be due to invalid IL or missing references) //IL_171b: Unknown result type (might be due to invalid IL or missing references) //IL_1724: Unknown result type (might be due to invalid IL or missing references) //IL_172f: Unknown result type (might be due to invalid IL or missing references) //IL_1740: Unknown result type (might be due to invalid IL or missing references) //IL_1745: Unknown result type (might be due to invalid IL or missing references) //IL_174a: Unknown result type (might be due to invalid IL or missing references) //IL_32e0: Unknown result type (might be due to invalid IL or missing references) //IL_32e6: Unknown result type (might be due to invalid IL or missing references) //IL_32eb: Unknown result type (might be due to invalid IL or missing references) //IL_32f1: Unknown result type (might be due to invalid IL or missing references) //IL_32f6: Unknown result type (might be due to invalid IL or missing references) //IL_32fc: Unknown result type (might be due to invalid IL or missing references) //IL_3306: Unknown result type (might be due to invalid IL or missing references) //IL_330b: Unknown result type (might be due to invalid IL or missing references) //IL_3311: Unknown result type (might be due to invalid IL or missing references) //IL_331b: Unknown result type (might be due to invalid IL or missing references) //IL_3321: Unknown result type (might be due to invalid IL or missing references) //IL_3326: Unknown result type (might be due to invalid IL or missing references) //IL_332c: Unknown result type (might be due to invalid IL or missing references) //IL_3331: Unknown result type (might be due to invalid IL or missing references) //IL_3336: Unknown result type (might be due to invalid IL or missing references) //IL_333c: Unknown result type (might be due to invalid IL or missing references) //IL_3346: Unknown result type (might be due to invalid IL or missing references) //IL_334b: Unknown result type (might be due to invalid IL or missing references) //IL_3356: Unknown result type (might be due to invalid IL or missing references) //IL_335c: Unknown result type (might be due to invalid IL or missing references) //IL_3361: Unknown result type (might be due to invalid IL or missing references) //IL_3367: Unknown result type (might be due to invalid IL or missing references) //IL_336c: Unknown result type (might be due to invalid IL or missing references) //IL_3372: Unknown result type (might be due to invalid IL or missing references) //IL_337c: Unknown result type (might be due to invalid IL or missing references) //IL_3382: Unknown result type (might be due to invalid IL or missing references) //IL_3387: Unknown result type (might be due to invalid IL or missing references) //IL_338d: Unknown result type (might be due to invalid IL or missing references) //IL_3392: Unknown result type (might be due to invalid IL or missing references) //IL_3397: Unknown result type (might be due to invalid IL or missing references) //IL_339d: Unknown result type (might be due to invalid IL or missing references) //IL_33a7: Unknown result type (might be due to invalid IL or missing references) //IL_33ac: Unknown result type (might be due to invalid IL or missing references) //IL_33b8: Unknown result type (might be due to invalid IL or missing references) //IL_322c: Unknown result type (might be due to invalid IL or missing references) //IL_3231: Unknown result type (might be due to invalid IL or missing references) //IL_30c0: Unknown result type (might be due to invalid IL or missing references) //IL_30c5: Unknown result type (might be due to invalid IL or missing references) //IL_30d4: Unknown result type (might be due to invalid IL or missing references) //IL_30d9: Unknown result type (might be due to invalid IL or missing references) //IL_30f5: Unknown result type (might be due to invalid IL or missing references) //IL_30fa: Unknown result type (might be due to invalid IL or missing references) //IL_3103: Unknown result type (might be due to invalid IL or missing references) //IL_310e: Unknown result type (might be due to invalid IL or missing references) //IL_311f: Unknown result type (might be due to invalid IL or missing references) //IL_3124: Unknown result type (might be due to invalid IL or missing references) //IL_3129: Unknown result type (might be due to invalid IL or missing references) //IL_26ce: Unknown result type (might be due to invalid IL or missing references) //IL_26d4: Unknown result type (might be due to invalid IL or missing references) //IL_26d9: Unknown result type (might be due to invalid IL or missing references) //IL_26df: Unknown result type (might be due to invalid IL or missing references) //IL_26e4: Unknown result type (might be due to invalid IL or missing references) //IL_26ea: Unknown result type (might be due to invalid IL or missing references) //IL_26f4: Unknown result type (might be due to invalid IL or missing references) //IL_26f9: Unknown result type (might be due to invalid IL or missing references) //IL_26ff: Unknown result type (might be due to invalid IL or missing references) //IL_2709: Unknown result type (might be due to invalid IL or missing references) //IL_270f: Unknown result type (might be due to invalid IL or missing references) //IL_2714: Unknown result type (might be due to invalid IL or missing references) //IL_271a: Unknown result type (might be due to invalid IL or missing references) //IL_271f: Unknown result type (might be due to invalid IL or missing references) //IL_2724: Unknown result type (might be due to invalid IL or missing references) //IL_272a: Unknown result type (might be due to invalid IL or missing references) //IL_2734: Unknown result type (might be due to invalid IL or missing references) //IL_2739: Unknown result type (might be due to invalid IL or missing references) //IL_2744: Unknown result type (might be due to invalid IL or missing references) //IL_274a: Unknown result type (might be due to invalid IL or missing references) //IL_274f: Unknown result type (might be due to invalid IL or missing references) //IL_2755: Unknown result type (might be due to invalid IL or missing references) //IL_275a: Unknown result type (might be due to invalid IL or missing references) //IL_2760: Unknown result type (might be due to invalid IL or missing references) //IL_276a: Unknown result type (might be due to invalid IL or missing references) //IL_276f: Unknown result type (might be due to invalid IL or missing references) //IL_2775: Unknown result type (might be due to invalid IL or missing references) //IL_277f: Unknown result type (might be due to invalid IL or missing references) //IL_2785: Unknown result type (might be due to invalid IL or missing references) //IL_278a: Unknown result type (might be due to invalid IL or missing references) //IL_2790: Unknown result type (might be due to invalid IL or missing references) //IL_2795: Unknown result type (might be due to invalid IL or missing references) //IL_279a: Unknown result type (might be due to invalid IL or missing references) //IL_27a0: Unknown result type (might be due to invalid IL or missing references) //IL_27aa: Unknown result type (might be due to invalid IL or missing references) //IL_27af: Unknown result type (might be due to invalid IL or missing references) //IL_27bb: Unknown result type (might be due to invalid IL or missing references) //IL_261a: Unknown result type (might be due to invalid IL or missing references) //IL_261f: Unknown result type (might be due to invalid IL or missing references) //IL_2499: Unknown result type (might be due to invalid IL or missing references) //IL_249e: Unknown result type (might be due to invalid IL or missing references) //IL_24ad: Unknown result type (might be due to invalid IL or missing references) //IL_24b2: Unknown result type (might be due to invalid IL or missing references) //IL_24ce: Unknown result type (might be due to invalid IL or missing references) //IL_24d3: Unknown result type (might be due to invalid IL or missing references) //IL_24dc: Unknown result type (might be due to invalid IL or missing references) //IL_24e7: Unknown result type (might be due to invalid IL or missing references) //IL_24f8: Unknown result type (might be due to invalid IL or missing references) //IL_24fd: Unknown result type (might be due to invalid IL or missing references) //IL_2502: Unknown result type (might be due to invalid IL or missing references) //IL_189c: Unknown result type (might be due to invalid IL or missing references) //IL_18a1: Unknown result type (might be due to invalid IL or missing references) //IL_18b0: Unknown result type (might be due to invalid IL or missing references) //IL_18b5: Unknown result type (might be due to invalid IL or missing references) //IL_18d1: Unknown result type (might be due to invalid IL or missing references) //IL_18d6: Unknown result type (might be due to invalid IL or missing references) //IL_18df: Unknown result type (might be due to invalid IL or missing references) //IL_18ea: Unknown result type (might be due to invalid IL or missing references) //IL_18fb: Unknown result type (might be due to invalid IL or missing references) //IL_1900: Unknown result type (might be due to invalid IL or missing references) //IL_1905: Unknown result type (might be due to invalid IL or missing references) //IL_3486: Unknown result type (might be due to invalid IL or missing references) //IL_348c: Unknown result type (might be due to invalid IL or missing references) //IL_3491: Unknown result type (might be due to invalid IL or missing references) //IL_3497: Unknown result type (might be due to invalid IL or missing references) //IL_349c: Unknown result type (might be due to invalid IL or missing references) //IL_34a2: Unknown result type (might be due to invalid IL or missing references) //IL_34ac: Unknown result type (might be due to invalid IL or missing references) //IL_34b1: Unknown result type (might be due to invalid IL or missing references) //IL_34b7: Unknown result type (might be due to invalid IL or missing references) //IL_34c1: Unknown result type (might be due to invalid IL or missing references) //IL_34c7: Unknown result type (might be due to invalid IL or missing references) //IL_34cc: Unknown result type (might be due to invalid IL or missing references) //IL_34d2: Unknown result type (might be due to invalid IL or missing references) //IL_34d7: Unknown result type (might be due to invalid IL or missing references) //IL_34dc: Unknown result type (might be due to invalid IL or missing references) //IL_34e2: Unknown result type (might be due to invalid IL or missing references) //IL_34ec: Unknown result type (might be due to invalid IL or missing references) //IL_34f1: Unknown result type (might be due to invalid IL or missing references) //IL_34fc: Unknown result type (might be due to invalid IL or missing references) //IL_3502: Unknown result type (might be due to invalid IL or missing references) //IL_3507: Unknown result type (might be due to invalid IL or missing references) //IL_350d: Unknown result type (might be due to invalid IL or missing references) //IL_3512: Unknown result type (might be due to invalid IL or missing references) //IL_3518: Unknown result type (might be due to invalid IL or missing references) //IL_3522: Unknown result type (might be due to invalid IL or missing references) //IL_3527: Unknown result type (might be due to invalid IL or missing references) //IL_352d: Unknown result type (might be due to invalid IL or missing references) //IL_3537: Unknown result type (might be due to invalid IL or missing references) //IL_353d: Unknown result type (might be due to invalid IL or missing references) //IL_3542: Unknown result type (might be due to invalid IL or missing references) //IL_3548: Unknown result type (might be due to invalid IL or missing references) //IL_354d: Unknown result type (might be due to invalid IL or missing references) //IL_3552: Unknown result type (might be due to invalid IL or missing references) //IL_3558: Unknown result type (might be due to invalid IL or missing references) //IL_3562: Unknown result type (might be due to invalid IL or missing references) //IL_3567: Unknown result type (might be due to invalid IL or missing references) //IL_3573: Unknown result type (might be due to invalid IL or missing references) //IL_33d2: Unknown result type (might be due to invalid IL or missing references) //IL_33d7: Unknown result type (might be due to invalid IL or missing references) //IL_3266: Unknown result type (might be due to invalid IL or missing references) //IL_326b: Unknown result type (might be due to invalid IL or missing references) //IL_327a: Unknown result type (might be due to invalid IL or missing references) //IL_327f: Unknown result type (might be due to invalid IL or missing references) //IL_329b: Unknown result type (might be due to invalid IL or missing references) //IL_32a0: Unknown result type (might be due to invalid IL or missing references) //IL_32a9: Unknown result type (might be due to invalid IL or missing references) //IL_32b4: Unknown result type (might be due to invalid IL or missing references) //IL_32c5: Unknown result type (might be due to invalid IL or missing references) //IL_32ca: Unknown result type (might be due to invalid IL or missing references) //IL_32cf: Unknown result type (might be due to invalid IL or missing references) //IL_2889: Unknown result type (might be due to invalid IL or missing references) //IL_288f: Unknown result type (might be due to invalid IL or missing references) //IL_2894: Unknown result type (might be due to invalid IL or missing references) //IL_289a: Unknown result type (might be due to invalid IL or missing references) //IL_289f: Unknown result type (might be due to invalid IL or missing references) //IL_28a5: Unknown result type (might be due to invalid IL or missing references) //IL_28af: Unknown result type (might be due to invalid IL or missing references) //IL_28b4: Unknown result type (might be due to invalid IL or missing references) //IL_28ba: Unknown result type (might be due to invalid IL or missing references) //IL_28c4: Unknown result type (might be due to invalid IL or missing references) //IL_28ca: Unknown result type (might be due to invalid IL or missing references) //IL_28cf: Unknown result type (might be due to invalid IL or missing references) //IL_28d5: Unknown result type (might be due to invalid IL or missing references) //IL_28da: Unknown result type (might be due to invalid IL or missing references) //IL_28df: Unknown result type (might be due to invalid IL or missing references) //IL_28e5: Unknown result type (might be due to invalid IL or missing references) //IL_28ef: Unknown result type (might be due to invalid IL or missing references) //IL_28f4: Unknown result type (might be due to invalid IL or missing references) //IL_28ff: Unknown result type (might be due to invalid IL or missing references) //IL_2905: Unknown result type (might be due to invalid IL or missing references) //IL_290a: Unknown result type (might be due to invalid IL or missing references) //IL_2910: Unknown result type (might be due to invalid IL or missing references) //IL_2915: Unknown result type (might be due to invalid IL or missing references) //IL_291b: Unknown result type (might be due to invalid IL or missing references) //IL_2925: Unknown result type (might be due to invalid IL or missing references) //IL_292a: Unknown result type (might be due to invalid IL or missing references) //IL_2930: Unknown result type (might be due to invalid IL or missing references) //IL_293a: Unknown result type (might be due to invalid IL or missing references) //IL_2940: Unknown result type (might be due to invalid IL or missing references) //IL_2945: Unknown result type (might be due to invalid IL or missing references) //IL_294b: Unknown result type (might be due to invalid IL or missing references) //IL_2950: Unknown result type (might be due to invalid IL or missing references) //IL_2955: Unknown result type (might be due to invalid IL or missing references) //IL_295b: Unknown result type (might be due to invalid IL or missing references) //IL_2965: Unknown result type (might be due to invalid IL or missing references) //IL_296a: Unknown result type (might be due to invalid IL or missing references) //IL_2976: Unknown result type (might be due to invalid IL or missing references) //IL_27d5: Unknown result type (might be due to invalid IL or missing references) //IL_27da: Unknown result type (might be due to invalid IL or missing references) //IL_2654: Unknown result type (might be due to invalid IL or missing references) //IL_2659: Unknown result type (might be due to invalid IL or missing references) //IL_2668: Unknown result type (might be due to invalid IL or missing references) //IL_266d: Unknown result type (might be due to invalid IL or missing references) //IL_2689: Unknown result type (might be due to invalid IL or missing references) //IL_268e: Unknown result type (might be due to invalid IL or missing references) //IL_2697: Unknown result type (might be due to invalid IL or missing references) //IL_26a2: Unknown result type (might be due to invalid IL or missing references) //IL_26b3: Unknown result type (might be due to invalid IL or missing references) //IL_26b8: Unknown result type (might be due to invalid IL or missing references) //IL_26bd: Unknown result type (might be due to invalid IL or missing references) //IL_3641: Unknown result type (might be due to invalid IL or missing references) //IL_3647: Unknown result type (might be due to invalid IL or missing references) //IL_364c: Unknown result type (might be due to invalid IL or missing references) //IL_3652: Unknown result type (might be due to invalid IL or missing references) //IL_3657: Unknown result type (might be due to invalid IL or missing references) //IL_365d: Unknown result type (might be due to invalid IL or missing references) //IL_3667: Unknown result type (might be due to invalid IL or missing references) //IL_366c: Unknown result type (might be due to invalid IL or missing references) //IL_3672: Unknown result type (might be due to invalid IL or missing references) //IL_367c: Unknown result type (might be due to invalid IL or missing references) //IL_3682: Unknown result type (might be due to invalid IL or missing references) //IL_3687: Unknown result type (might be due to invalid IL or missing references) //IL_368d: Unknown result type (might be due to invalid IL or missing references) //IL_3692: Unknown result type (might be due to invalid IL or missing references) //IL_3697: Unknown result type (might be due to invalid IL or missing references) //IL_369d: Unknown result type (might be due to invalid IL or missing references) //IL_36a7: Unknown result type (might be due to invalid IL or missing references) //IL_36ac: Unknown result type (might be due to invalid IL or missing references) //IL_36b7: Unknown result type (might be due to invalid IL or missing references) //IL_36bd: Unknown result type (might be due to invalid IL or missing references) //IL_36c2: Unknown result type (might be due to invalid IL or missing references) //IL_36c8: Unknown result type (might be due to invalid IL or missing references) //IL_36cd: Unknown result type (might be due to invalid IL or missing references) //IL_36d3: Unknown result type (might be due to invalid IL or missing references) //IL_36dd: Unknown result type (might be due to invalid IL or missing references) //IL_36e2: Unknown result type (might be due to invalid IL or missing references) //IL_36e8: Unknown result type (might be due to invalid IL or missing references) //IL_36f2: Unknown result type (might be due to invalid IL or missing references) //IL_36f8: Unknown result type (might be due to invalid IL or missing references) //IL_36fd: Unknown result type (might be due to invalid IL or missing references) //IL_3703: Unknown result type (might be due to invalid IL or missing references) //IL_3708: Unknown result type (might be due to invalid IL or missing references) //IL_370d: Unknown result type (might be due to invalid IL or missing references) //IL_3713: Unknown result type (might be due to invalid IL or missing references) //IL_371d: Unknown result type (might be due to invalid IL or missing references) //IL_3722: Unknown result type (might be due to invalid IL or missing references) //IL_372e: Unknown result type (might be due to invalid IL or missing references) //IL_358d: Unknown result type (might be due to invalid IL or missing references) //IL_3592: Unknown result type (might be due to invalid IL or missing references) //IL_340c: Unknown result type (might be due to invalid IL or missing references) //IL_3411: Unknown result type (might be due to invalid IL or missing references) //IL_3420: Unknown result type (might be due to invalid IL or missing references) //IL_3425: Unknown result type (might be due to invalid IL or missing references) //IL_3441: Unknown result type (might be due to invalid IL or missing references) //IL_3446: Unknown result type (might be due to invalid IL or missing references) //IL_344f: Unknown result type (might be due to invalid IL or missing references) //IL_345a: Unknown result type (might be due to invalid IL or missing references) //IL_346b: Unknown result type (might be due to invalid IL or missing references) //IL_3470: Unknown result type (might be due to invalid IL or missing references) //IL_3475: Unknown result type (might be due to invalid IL or missing references) //IL_2a46: Unknown result type (might be due to invalid IL or missing references) //IL_2a4b: Unknown result type (might be due to invalid IL or missing references) //IL_2a5a: Unknown result type (might be due to invalid IL or missing references) //IL_2a5f: Unknown result type (might be due to invalid IL or missing references) //IL_2a76: Unknown result type (might be due to invalid IL or missing references) //IL_2a7b: Unknown result type (might be due to invalid IL or missing references) //IL_2a97: Unknown result type (might be due to invalid IL or missing references) //IL_2a9c: Unknown result type (might be due to invalid IL or missing references) //IL_2aab: Unknown result type (might be due to invalid IL or missing references) //IL_2ab0: Unknown result type (might be due to invalid IL or missing references) //IL_2ac1: Unknown result type (might be due to invalid IL or missing references) //IL_2acc: Unknown result type (might be due to invalid IL or missing references) //IL_2ad1: Unknown result type (might be due to invalid IL or missing references) //IL_2afa: Unknown result type (might be due to invalid IL or missing references) //IL_2aff: Unknown result type (might be due to invalid IL or missing references) //IL_2b16: Unknown result type (might be due to invalid IL or missing references) //IL_2b1b: Unknown result type (might be due to invalid IL or missing references) //IL_2b20: Unknown result type (might be due to invalid IL or missing references) //IL_2990: Unknown result type (might be due to invalid IL or missing references) //IL_2995: Unknown result type (might be due to invalid IL or missing references) //IL_280f: Unknown result type (might be due to invalid IL or missing references) //IL_2814: Unknown result type (might be due to invalid IL or missing references) //IL_2823: Unknown result type (might be due to invalid IL or missing references) //IL_2828: Unknown result type (might be due to invalid IL or missing references) //IL_2844: Unknown result type (might be due to invalid IL or missing references) //IL_2849: Unknown result type (might be due to invalid IL or missing references) //IL_2852: Unknown result type (might be due to invalid IL or missing references) //IL_285d: Unknown result type (might be due to invalid IL or missing references) //IL_286e: Unknown result type (might be due to invalid IL or missing references) //IL_2873: Unknown result type (might be due to invalid IL or missing references) //IL_2878: Unknown result type (might be due to invalid IL or missing references) //IL_37fc: Unknown result type (might be due to invalid IL or missing references) //IL_3802: Unknown result type (might be due to invalid IL or missing references) //IL_3807: Unknown result type (might be due to invalid IL or missing references) //IL_380d: Unknown result type (might be due to invalid IL or missing references) //IL_3812: Unknown result type (might be due to invalid IL or missing references) //IL_3818: Unknown result type (might be due to invalid IL or missing references) //IL_3822: Unknown result type (might be due to invalid IL or missing references) //IL_3827: Unknown result type (might be due to invalid IL or missing references) //IL_382d: Unknown result type (might be due to invalid IL or missing references) //IL_3837: Unknown result type (might be due to invalid IL or missing references) //IL_383d: Unknown result type (might be due to invalid IL or missing references) //IL_3842: Unknown result type (might be due to invalid IL or missing references) //IL_3848: Unknown result type (might be due to invalid IL or missing references) //IL_384d: Unknown result type (might be due to invalid IL or missing references) //IL_3852: Unknown result type (might be due to invalid IL or missing references) //IL_3858: Unknown result type (might be due to invalid IL or missing references) //IL_3862: Unknown result type (might be due to invalid IL or missing references) //IL_3867: Unknown result type (might be due to invalid IL or missing references) //IL_3872: Unknown result type (might be due to invalid IL or missing references) //IL_3878: Unknown result type (might be due to invalid IL or missing references) //IL_387d: Unknown result type (might be due to invalid IL or missing references) //IL_3883: Unknown result type (might be due to invalid IL or missing references) //IL_3888: Unknown result type (might be due to invalid IL or missing references) //IL_388e: Unknown result type (might be due to invalid IL or missing references) //IL_3898: Unknown result type (might be due to invalid IL or missing references) //IL_389d: Unknown result type (might be due to invalid IL or missing references) //IL_38a3: Unknown result type (might be due to invalid IL or missing references) //IL_38ad: Unknown result type (might be due to invalid IL or missing references) //IL_38b3: Unknown result type (might be due to invalid IL or missing references) //IL_38b8: Unknown result type (might be due to invalid IL or missing references) //IL_38be: Unknown result type (might be due to invalid IL or missing references) //IL_38c3: Unknown result type (might be due to invalid IL or missing references) //IL_38c8: Unknown result type (might be due to invalid IL or missing references) //IL_38ce: Unknown result type (might be due to invalid IL or missing references) //IL_38d8: Unknown result type (might be due to invalid IL or missing references) //IL_38dd: Unknown result type (might be due to invalid IL or missing references) //IL_38e9: Unknown result type (might be due to invalid IL or missing references) //IL_3748: Unknown result type (might be due to invalid IL or missing references) //IL_374d: Unknown result type (might be due to invalid IL or missing references) //IL_35c7: Unknown result type (might be due to invalid IL or missing references) //IL_35cc: Unknown result type (might be due to invalid IL or missing references) //IL_35db: Unknown result type (might be due to invalid IL or missing references) //IL_35e0: Unknown result type (might be due to invalid IL or missing references) //IL_35fc: Unknown result type (might be due to invalid IL or missing references) //IL_3601: Unknown result type (might be due to invalid IL or missing references) //IL_360a: Unknown result type (might be due to invalid IL or missing references) //IL_3615: Unknown result type (might be due to invalid IL or missing references) //IL_3626: Unknown result type (might be due to invalid IL or missing references) //IL_362b: Unknown result type (might be due to invalid IL or missing references) //IL_3630: Unknown result type (might be due to invalid IL or missing references) //IL_29ca: Unknown result type (might be due to invalid IL or missing references) //IL_29cf: Unknown result type (might be due to invalid IL or missing references) //IL_29de: Unknown result type (might be due to invalid IL or missing references) //IL_29e3: Unknown result type (might be due to invalid IL or missing references) //IL_29ff: Unknown result type (might be due to invalid IL or missing references) //IL_2a04: Unknown result type (might be due to invalid IL or missing references) //IL_2a0d: Unknown result type (might be due to invalid IL or missing references) //IL_2a18: Unknown result type (might be due to invalid IL or missing references) //IL_2a29: Unknown result type (might be due to invalid IL or missing references) //IL_2a2e: Unknown result type (might be due to invalid IL or missing references) //IL_2a33: Unknown result type (might be due to invalid IL or missing references) //IL_39b7: Unknown result type (might be due to invalid IL or missing references) //IL_39bd: Unknown result type (might be due to invalid IL or missing references) //IL_39c2: Unknown result type (might be due to invalid IL or missing references) //IL_39c8: Unknown result type (might be due to invalid IL or missing references) //IL_39cd: Unknown result type (might be due to invalid IL or missing references) //IL_39d3: Unknown result type (might be due to invalid IL or missing references) //IL_39dd: Unknown result type (might be due to invalid IL or missing references) //IL_39e2: Unknown result type (might be due to invalid IL or missing references) //IL_39e8: Unknown result type (might be due to invalid IL or missing references) //IL_39f2: Unknown result type (might be due to invalid IL or missing references) //IL_39f8: Unknown result type (might be due to invalid IL or missing references) //IL_39fd: Unknown result type (might be due to invalid IL or missing references) //IL_3a03: Unknown result type (might be due to invalid IL or missing references) //IL_3a08: Unknown result type (might be due to invalid IL or missing references) //IL_3a0d: Unknown result type (might be due to invalid IL or missing references) //IL_3a13: Unknown result type (might be due to invalid IL or missing references) //IL_3a1d: Unknown result type (might be due to invalid IL or missing references) //IL_3a22: Unknown result type (might be due to invalid IL or missing references) //IL_3a2d: Unknown result type (might be due to invalid IL or missing references) //IL_3a33: Unknown result type (might be due to invalid IL or missing references) //IL_3a38: Unknown result type (might be due to invalid IL or missing references) //IL_3a3e: Unknown result type (might be due to invalid IL or missing references) //IL_3a43: Unknown result type (might be due to invalid IL or missing references) //IL_3a49: Unknown result type (might be due to invalid IL or missing references) //IL_3a53: Unknown result type (might be due to invalid IL or missing references) //IL_3a58: Unknown result type (might be due to invalid IL or missing references) //IL_3a5e: Unknown result type (might be due to invalid IL or missing references) //IL_3a68: Unknown result type (might be due to invalid IL or missing references) //IL_3a6e: Unknown result type (might be due to invalid IL or missing references) //IL_3a73: Unknown result type (might be due to invalid IL or missing references) //IL_3a79: Unknown result type (might be due to invalid IL or missing references) //IL_3a7e: Unknown result type (might be due to invalid IL or missing references) //IL_3a83: Unknown result type (might be due to invalid IL or missing references) //IL_3a89: Unknown result type (might be due to invalid IL or missing references) //IL_3a93: Unknown result type (might be due to invalid IL or missing references) //IL_3a98: Unknown result type (might be due to invalid IL or missing references) //IL_3aa4: Unknown result type (might be due to invalid IL or missing references) //IL_3903: Unknown result type (might be due to invalid IL or missing references) //IL_3908: Unknown result type (might be due to invalid IL or missing references) //IL_3782: Unknown result type (might be due to invalid IL or missing references) //IL_3787: Unknown result type (might be due to invalid IL or missing references) //IL_3796: Unknown result type (might be due to invalid IL or missing references) //IL_379b: Unknown result type (might be due to invalid IL or missing references) //IL_37b7: Unknown result type (might be due to invalid IL or missing references) //IL_37bc: Unknown result type (might be due to invalid IL or missing references) //IL_37c5: Unknown result type (might be due to invalid IL or missing references) //IL_37d0: Unknown result type (might be due to invalid IL or missing references) //IL_37e1: Unknown result type (might be due to invalid IL or missing references) //IL_37e6: Unknown result type (might be due to invalid IL or missing references) //IL_37eb: Unknown result type (might be due to invalid IL or missing references) //IL_3b74: Unknown result type (might be due to invalid IL or missing references) //IL_3b79: Unknown result type (might be due to invalid IL or missing references) //IL_3b88: Unknown result type (might be due to invalid IL or missing references) //IL_3b8d: Unknown result type (might be due to invalid IL or missing references) //IL_3ba4: Unknown result type (might be due to invalid IL or missing references) //IL_3ba9: Unknown result type (might be due to invalid IL or missing references) //IL_3bc5: Unknown result type (might be due to invalid IL or missing references) //IL_3bca: Unknown result type (might be due to invalid IL or missing references) //IL_3bd9: Unknown result type (might be due to invalid IL or missing references) //IL_3bde: Unknown result type (might be due to invalid IL or missing references) //IL_3bef: Unknown result type (might be due to invalid IL or missing references) //IL_3bfa: Unknown result type (might be due to invalid IL or missing references) //IL_3bff: Unknown result type (might be due to invalid IL or missing references) //IL_3c28: Unknown result type (might be due to invalid IL or missing references) //IL_3c2d: Unknown result type (might be due to invalid IL or missing references) //IL_3c44: Unknown result type (might be due to invalid IL or missing references) //IL_3c49: Unknown result type (might be due to invalid IL or missing references) //IL_3c4e: Unknown result type (might be due to invalid IL or missing references) //IL_3abe: Unknown result type (might be due to invalid IL or missing references) //IL_3ac3: Unknown result type (might be due to invalid IL or missing references) //IL_393d: Unknown result type (might be due to invalid IL or missing references) //IL_3942: Unknown result type (might be due to invalid IL or missing references) //IL_3951: Unknown result type (might be due to invalid IL or missing references) //IL_3956: Unknown result type (might be due to invalid IL or missing references) //IL_3972: Unknown result type (might be due to invalid IL or missing references) //IL_3977: Unknown result type (might be due to invalid IL or missing references) //IL_3980: Unknown result type (might be due to invalid IL or missing references) //IL_398b: Unknown result type (might be due to invalid IL or missing references) //IL_399c: Unknown result type (might be due to invalid IL or missing references) //IL_39a1: Unknown result type (might be due to invalid IL or missing references) //IL_39a6: Unknown result type (might be due to invalid IL or missing references) //IL_3af8: Unknown result type (might be due to invalid IL or missing references) //IL_3afd: Unknown result type (might be due to invalid IL or missing references) //IL_3b0c: Unknown result type (might be due to invalid IL or missing references) //IL_3b11: Unknown result type (might be due to invalid IL or missing references) //IL_3b2d: Unknown result type (might be due to invalid IL or missing references) //IL_3b32: Unknown result type (might be due to invalid IL or missing references) //IL_3b3b: Unknown result type (might be due to invalid IL or missing references) //IL_3b46: Unknown result type (might be due to invalid IL or missing references) //IL_3b57: Unknown result type (might be due to invalid IL or missing references) //IL_3b5c: Unknown result type (might be due to invalid IL or missing references) //IL_3b61: Unknown result type (might be due to invalid IL or missing references) if (switching || !ledgeSwitchingDetectors.allowLedgeSwitching || !grabbedOn) { return; } if ((!Physics.Linecast(((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - rightWidth * 2f - surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.8f - rightWidth * 2f - surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { l1FirstBackSurfaceDetectorsHit = true; } else { l1FirstBackSurfaceDetectorsHit = false; l1FirstBackHit = false; } if ((!Physics.Linecast(((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - rightWidth * 2f - surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.8f - rightWidth * 2f - surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { l2FirstBackSurfaceDetectorsHit = true; } else { l2FirstBackSurfaceDetectorsHit = false; l2FirstBackHit = false; } if ((Physics.Linecast(((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - rightWidth * 2f - surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.8f - rightWidth * 2f - surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { l3FirstBackSurfaceDetectorsHit = true; } else { l3FirstBackSurfaceDetectorsHit = false; l3FirstBackHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 2.2f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) { if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref switchHitPoint)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit) { l1FirstBackHit = true; if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2), ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l1FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l1FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l1FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l1FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l1FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l1FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l1FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l1FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else { l1FirstBackHitPoint = new Vector3(((RaycastHit)(ref switchHitPoint)).point.x - ((Component)this).transform.forward.x * length2, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref switchHitPoint)).point.z - ((Component)this).transform.forward.x * length2) + new Vector3((0f - ((Component)this).transform.forward.x) * length2 / 10f, onLedgeHeight2 / 10f, (0f - ((Component)this).transform.forward.z) * length2 / 10f); } } else { l1FirstBackHit = false; } } else { l1FirstBackHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 2.2f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) { if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref switchHitPoint)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit) { l2FirstBackHit = true; if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2), ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l2FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l2FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l2FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l2FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l2FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l2FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l2FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l2FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else { l2FirstBackHitPoint = new Vector3(((RaycastHit)(ref switchHitPoint)).point.x - ((Component)this).transform.forward.x * length2, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref switchHitPoint)).point.z - ((Component)this).transform.forward.x * length2) + new Vector3((0f - ((Component)this).transform.forward.x) * length2 / 10f, onLedgeHeight2 / 10f, (0f - ((Component)this).transform.forward.z) * length2 / 10f); } } else { l2FirstBackHit = false; } } else { l2FirstBackHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 2.2f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) { if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref switchHitPoint)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit) { l3FirstBackHit = true; if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2), ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l3FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l3FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l3FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l3FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l3FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l3FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l3FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l3FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else { l3FirstBackHitPoint = new Vector3(((RaycastHit)(ref switchHitPoint)).point.x - ((Component)this).transform.forward.x * length2, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref switchHitPoint)).point.z - ((Component)this).transform.forward.x * length2) + new Vector3((0f - ((Component)this).transform.forward.x) * length2 / 10f, onLedgeHeight2 / 10f, (0f - ((Component)this).transform.forward.z) * length2 / 10f); } } else { l3FirstBackHit = false; } } else { l3FirstBackHit = false; } } private void LedgeSwitchHitPointsSecondBackLeft() { //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_006a: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_0089: Unknown result type (might be due to invalid IL or missing references) //IL_008e: Unknown result type (might be due to invalid IL or missing references) //IL_0094: Unknown result type (might be due to invalid IL or missing references) //IL_0099: Unknown result type (might be due to invalid IL or missing references) //IL_009f: Unknown result type (might be due to invalid IL or missing references) //IL_00a4: Unknown result type (might be due to invalid IL or missing references) //IL_00af: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) //IL_00ba: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_00cb: Unknown result type (might be due to invalid IL or missing references) //IL_00d0: Unknown result type (might be due to invalid IL or missing references) //IL_00d6: Unknown result type (might be due to invalid IL or missing references) //IL_00e0: Unknown result type (might be due to invalid IL or missing references) //IL_00e5: Unknown result type (might be due to invalid IL or missing references) //IL_00eb: Unknown result type (might be due to invalid IL or missing references) //IL_00f5: Unknown result type (might be due to invalid IL or missing references) //IL_00fa: Unknown result type (might be due to invalid IL or missing references) //IL_0100: Unknown result type (might be due to invalid IL or missing references) //IL_010a: Unknown result type (might be due to invalid IL or missing references) //IL_010f: Unknown result type (might be due to invalid IL or missing references) //IL_0115: Unknown result type (might be due to invalid IL or missing references) //IL_011a: Unknown result type (might be due to invalid IL or missing references) //IL_0120: Unknown result type (might be due to invalid IL or missing references) //IL_0125: Unknown result type (might be due to invalid IL or missing references) //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_0268: Unknown result type (might be due to invalid IL or missing references) //IL_026e: Unknown result type (might be due to invalid IL or missing references) //IL_0273: Unknown result type (might be due to invalid IL or missing references) //IL_0279: Unknown result type (might be due to invalid IL or missing references) //IL_027e: Unknown result type (might be due to invalid IL or missing references) //IL_0284: Unknown result type (might be due to invalid IL or missing references) //IL_0289: Unknown result type (might be due to invalid IL or missing references) //IL_028f: Unknown result type (might be due to invalid IL or missing references) //IL_0299: Unknown result type (might be due to invalid IL or missing references) //IL_029e: Unknown result type (might be due to invalid IL or missing references) //IL_02a4: Unknown result type (might be due to invalid IL or missing references) //IL_02ae: Unknown result type (might be due to invalid IL or missing references) //IL_02b3: Unknown result type (might be due to invalid IL or missing references) //IL_02b9: Unknown result type (might be due to invalid IL or missing references) //IL_02c3: Unknown result type (might be due to invalid IL or missing references) //IL_02c8: Unknown result type (might be due to invalid IL or missing references) //IL_02ce: Unknown result type (might be due to invalid IL or missing references) //IL_02d3: Unknown result type (might be due to invalid IL or missing references) //IL_02d9: Unknown result type (might be due to invalid IL or missing references) //IL_02de: Unknown result type (might be due to invalid IL or missing references) //IL_02e9: Unknown result type (might be due to invalid IL or missing references) //IL_02ef: Unknown result type (might be due to invalid IL or missing references) //IL_02f4: Unknown result type (might be due to invalid IL or missing references) //IL_02fa: Unknown result type (might be due to invalid IL or missing references) //IL_02ff: Unknown result type (might be due to invalid IL or missing references) //IL_0305: Unknown result type (might be due to invalid IL or missing references) //IL_030a: Unknown result type (might be due to invalid IL or missing references) //IL_0310: Unknown result type (might be due to invalid IL or missing references) //IL_031a: Unknown result type (might be due to invalid IL or missing references) //IL_031f: Unknown result type (might be due to invalid IL or missing references) //IL_0325: Unknown result type (might be due to invalid IL or missing references) //IL_032f: Unknown result type (might be due to invalid IL or missing references) //IL_0334: Unknown result type (might be due to invalid IL or missing references) //IL_033a: Unknown result type (might be due to invalid IL or missing references) //IL_0344: Unknown result type (might be due to invalid IL or missing references) //IL_0349: Unknown result type (might be due to invalid IL or missing references) //IL_034f: Unknown result type (might be due to invalid IL or missing references) //IL_0354: Unknown result type (might be due to invalid IL or missing references) //IL_0360: Unknown result type (might be due to invalid IL or missing references) //IL_014b: Unknown result type (might be due to invalid IL or missing references) //IL_0151: Unknown result type (might be due to invalid IL or missing references) //IL_0156: Unknown result type (might be due to invalid IL or missing references) //IL_015c: Unknown result type (might be due to invalid IL or missing references) //IL_0161: Unknown result type (might be due to invalid IL or missing references) //IL_0167: Unknown result type (might be due to invalid IL or missing references) //IL_016c: Unknown result type (might be due to invalid IL or missing references) //IL_0172: Unknown result type (might be due to invalid IL or missing references) //IL_017c: Unknown result type (might be due to invalid IL or missing references) //IL_0181: Unknown result type (might be due to invalid IL or missing references) //IL_0187: Unknown result type (might be due to invalid IL or missing references) //IL_0191: Unknown result type (might be due to invalid IL or missing references) //IL_0196: Unknown result type (might be due to invalid IL or missing references) //IL_019c: Unknown result type (might be due to invalid IL or missing references) //IL_01a6: Unknown result type (might be due to invalid IL or missing references) //IL_01ab: Unknown result type (might be due to invalid IL or missing references) //IL_01b1: Unknown result type (might be due to invalid IL or missing references) //IL_01b6: Unknown result type (might be due to invalid IL or missing references) //IL_01bc: Unknown result type (might be due to invalid IL or missing references) //IL_01c1: Unknown result type (might be due to invalid IL or missing references) //IL_01cc: Unknown result type (might be due to invalid IL or missing references) //IL_01d2: Unknown result type (might be due to invalid IL or missing references) //IL_01d7: Unknown result type (might be due to invalid IL or missing references) //IL_01dd: Unknown result type (might be due to invalid IL or missing references) //IL_01e2: Unknown result type (might be due to invalid IL or missing references) //IL_01e8: Unknown result type (might be due to invalid IL or missing references) //IL_01ed: Unknown result type (might be due to invalid IL or missing references) //IL_01f3: Unknown result type (might be due to invalid IL or missing references) //IL_01fd: Unknown result type (might be due to invalid IL or missing references) //IL_0202: Unknown result type (might be due to invalid IL or missing references) //IL_0208: Unknown result type (might be due to invalid IL or missing references) //IL_020d: Unknown result type (might be due to invalid IL or missing references) //IL_0213: Unknown result type (might be due to invalid IL or missing references) //IL_021d: Unknown result type (might be due to invalid IL or missing references) //IL_0222: Unknown result type (might be due to invalid IL or missing references) //IL_0228: Unknown result type (might be due to invalid IL or missing references) //IL_0232: Unknown result type (might be due to invalid IL or missing references) //IL_0237: Unknown result type (might be due to invalid IL or missing references) //IL_023d: Unknown result type (might be due to invalid IL or missing references) //IL_0242: Unknown result type (might be due to invalid IL or missing references) //IL_024e: Unknown result type (might be due to invalid IL or missing references) //IL_0398: Unknown result type (might be due to invalid IL or missing references) //IL_039e: Unknown result type (might be due to invalid IL or missing references) //IL_03a3: Unknown result type (might be due to invalid IL or missing references) //IL_03a9: Unknown result type (might be due to invalid IL or missing references) //IL_03ae: Unknown result type (might be due to invalid IL or missing references) //IL_03b4: Unknown result type (might be due to invalid IL or missing references) //IL_03b9: Unknown result type (might be due to invalid IL or missing references) //IL_03bf: Unknown result type (might be due to invalid IL or missing references) //IL_03c9: Unknown result type (might be due to invalid IL or missing references) //IL_03ce: Unknown result type (might be due to invalid IL or missing references) //IL_03d4: Unknown result type (might be due to invalid IL or missing references) //IL_03de: Unknown result type (might be due to invalid IL or missing references) //IL_03e3: Unknown result type (might be due to invalid IL or missing references) //IL_03e9: Unknown result type (might be due to invalid IL or missing references) //IL_03f3: Unknown result type (might be due to invalid IL or missing references) //IL_03f8: Unknown result type (might be due to invalid IL or missing references) //IL_03fe: Unknown result type (might be due to invalid IL or missing references) //IL_0403: Unknown result type (might be due to invalid IL or missing references) //IL_0409: Unknown result type (might be due to invalid IL or missing references) //IL_040e: Unknown result type (might be due to invalid IL or missing references) //IL_0419: Unknown result type (might be due to invalid IL or missing references) //IL_041f: Unknown result type (might be due to invalid IL or missing references) //IL_0424: Unknown result type (might be due to invalid IL or missing references) //IL_042a: Unknown result type (might be due to invalid IL or missing references) //IL_042f: Unknown result type (might be due to invalid IL or missing references) //IL_0435: Unknown result type (might be due to invalid IL or missing references) //IL_043a: Unknown result type (might be due to invalid IL or missing references) //IL_0440: Unknown result type (might be due to invalid IL or missing references) //IL_044a: Unknown result type (might be due to invalid IL or missing references) //IL_044f: Unknown result type (might be due to invalid IL or missing references) //IL_0455: Unknown result type (might be due to invalid IL or missing references) //IL_045f: Unknown result type (might be due to invalid IL or missing references) //IL_0464: Unknown result type (might be due to invalid IL or missing references) //IL_046a: Unknown result type (might be due to invalid IL or missing references) //IL_0474: Unknown result type (might be due to invalid IL or missing references) //IL_0479: Unknown result type (might be due to invalid IL or missing references) //IL_047f: Unknown result type (might be due to invalid IL or missing references) //IL_0484: Unknown result type (might be due to invalid IL or missing references) //IL_048a: Unknown result type (might be due to invalid IL or missing references) //IL_048f: Unknown result type (might be due to invalid IL or missing references) //IL_049b: Unknown result type (might be due to invalid IL or missing references) //IL_05d2: Unknown result type (might be due to invalid IL or missing references) //IL_05d8: Unknown result type (might be due to invalid IL or missing references) //IL_05dd: Unknown result type (might be due to invalid IL or missing references) //IL_05e3: Unknown result type (might be due to invalid IL or missing references) //IL_05e8: Unknown result type (might be due to invalid IL or missing references) //IL_05ee: Unknown result type (might be due to invalid IL or missing references) //IL_05f3: Unknown result type (might be due to invalid IL or missing references) //IL_05f9: Unknown result type (might be due to invalid IL or missing references) //IL_0603: Unknown result type (might be due to invalid IL or missing references) //IL_0608: Unknown result type (might be due to invalid IL or missing references) //IL_060e: Unknown result type (might be due to invalid IL or missing references) //IL_0618: Unknown result type (might be due to invalid IL or missing references) //IL_061d: Unknown result type (might be due to invalid IL or missing references) //IL_0623: Unknown result type (might be due to invalid IL or missing references) //IL_062d: Unknown result type (might be due to invalid IL or missing references) //IL_0632: Unknown result type (might be due to invalid IL or missing references) //IL_0638: Unknown result type (might be due to invalid IL or missing references) //IL_063d: Unknown result type (might be due to invalid IL or missing references) //IL_0643: Unknown result type (might be due to invalid IL or missing references) //IL_0648: Unknown result type (might be due to invalid IL or missing references) //IL_0653: Unknown result type (might be due to invalid IL or missing references) //IL_0659: Unknown result type (might be due to invalid IL or missing references) //IL_065e: Unknown result type (might be due to invalid IL or missing references) //IL_0664: Unknown result type (might be due to invalid IL or missing references) //IL_0669: Unknown result type (might be due to invalid IL or missing references) //IL_066f: Unknown result type (might be due to invalid IL or missing references) //IL_0674: Unknown result type (might be due to invalid IL or missing references) //IL_067a: Unknown result type (might be due to invalid IL or missing references) //IL_0684: Unknown result type (might be due to invalid IL or missing references) //IL_0689: Unknown result type (might be due to invalid IL or missing references) //IL_068f: Unknown result type (might be due to invalid IL or missing references) //IL_0699: Unknown result type (might be due to invalid IL or missing references) //IL_069e: Unknown result type (might be due to invalid IL or missing references) //IL_06a4: Unknown result type (might be due to invalid IL or missing references) //IL_06ae: Unknown result type (might be due to invalid IL or missing references) //IL_06b3: Unknown result type (might be due to invalid IL or missing references) //IL_06b9: Unknown result type (might be due to invalid IL or missing references) //IL_06be: Unknown result type (might be due to invalid IL or missing references) //IL_06ca: Unknown result type (might be due to invalid IL or missing references) //IL_04b5: Unknown result type (might be due to invalid IL or missing references) //IL_04bb: Unknown result type (might be due to invalid IL or missing references) //IL_04c0: Unknown result type (might be due to invalid IL or missing references) //IL_04c6: Unknown result type (might be due to invalid IL or missing references) //IL_04cb: Unknown result type (might be due to invalid IL or missing references) //IL_04d1: Unknown result type (might be due to invalid IL or missing references) //IL_04d6: Unknown result type (might be due to invalid IL or missing references) //IL_04dc: Unknown result type (might be due to invalid IL or missing references) //IL_04e6: Unknown result type (might be due to invalid IL or missing references) //IL_04eb: Unknown result type (might be due to invalid IL or missing references) //IL_04f1: Unknown result type (might be due to invalid IL or missing references) //IL_04fb: Unknown result type (might be due to invalid IL or missing references) //IL_0500: Unknown result type (might be due to invalid IL or missing references) //IL_0506: Unknown result type (might be due to invalid IL or missing references) //IL_0510: Unknown result type (might be due to invalid IL or missing references) //IL_0515: Unknown result type (might be due to invalid IL or missing references) //IL_051b: Unknown result type (might be due to invalid IL or missing references) //IL_0520: Unknown result type (might be due to invalid IL or missing references) //IL_0526: Unknown result type (might be due to invalid IL or missing references) //IL_052b: Unknown result type (might be due to invalid IL or missing references) //IL_0536: Unknown result type (might be due to invalid IL or missing references) //IL_053c: Unknown result type (might be due to invalid IL or missing references) //IL_0541: Unknown result type (might be due to invalid IL or missing references) //IL_0547: Unknown result type (might be due to invalid IL or missing references) //IL_054c: Unknown result type (might be due to invalid IL or missing references) //IL_0552: Unknown result type (might be due to invalid IL or missing references) //IL_0557: Unknown result type (might be due to invalid IL or missing references) //IL_055d: Unknown result type (might be due to invalid IL or missing references) //IL_0567: Unknown result type (might be due to invalid IL or missing references) //IL_056c: Unknown result type (might be due to invalid IL or missing references) //IL_0572: Unknown result type (might be due to invalid IL or missing references) //IL_0577: Unknown result type (might be due to invalid IL or missing references) //IL_057d: Unknown result type (might be due to invalid IL or missing references) //IL_0587: Unknown result type (might be due to invalid IL or missing references) //IL_058c: Unknown result type (might be due to invalid IL or missing references) //IL_0592: Unknown result type (might be due to invalid IL or missing references) //IL_059c: Unknown result type (might be due to invalid IL or missing references) //IL_05a1: Unknown result type (might be due to invalid IL or missing references) //IL_05a7: Unknown result type (might be due to invalid IL or missing references) //IL_05ac: Unknown result type (might be due to invalid IL or missing references) //IL_05b8: Unknown result type (might be due to invalid IL or missing references) //IL_0702: Unknown result type (might be due to invalid IL or missing references) //IL_0708: Unknown result type (might be due to invalid IL or missing references) //IL_070d: Unknown result type (might be due to invalid IL or missing references) //IL_0713: Unknown result type (might be due to invalid IL or missing references) //IL_0718: Unknown result type (might be due to invalid IL or missing references) //IL_071e: Unknown result type (might be due to invalid IL or missing references) //IL_0723: Unknown result type (might be due to invalid IL or missing references) //IL_0729: Unknown result type (might be due to invalid IL or missing references) //IL_0733: Unknown result type (might be due to invalid IL or missing references) //IL_0738: Unknown result type (might be due to invalid IL or missing references) //IL_073e: Unknown result type (might be due to invalid IL or missing references) //IL_0748: Unknown result type (might be due to invalid IL or missing references) //IL_074d: Unknown result type (might be due to invalid IL or missing references) //IL_0753: Unknown result type (might be due to invalid IL or missing references) //IL_075d: Unknown result type (might be due to invalid IL or missing references) //IL_0762: Unknown result type (might be due to invalid IL or missing references) //IL_0768: Unknown result type (might be due to invalid IL or missing references) //IL_076d: Unknown result type (might be due to invalid IL or missing references) //IL_0773: Unknown result type (might be due to invalid IL or missing references) //IL_0778: Unknown result type (might be due to invalid IL or missing references) //IL_0783: Unknown result type (might be due to invalid IL or missing references) //IL_0789: Unknown result type (might be due to invalid IL or missing references) //IL_078e: Unknown result type (might be due to invalid IL or missing references) //IL_0794: Unknown result type (might be due to invalid IL or missing references) //IL_0799: Unknown result type (might be due to invalid IL or missing references) //IL_079f: Unknown result type (might be due to invalid IL or missing references) //IL_07a4: Unknown result type (might be due to invalid IL or missing references) //IL_07aa: Unknown result type (might be due to invalid IL or missing references) //IL_07b4: Unknown result type (might be due to invalid IL or missing references) //IL_07b9: Unknown result type (might be due to invalid IL or missing references) //IL_07bf: Unknown result type (might be due to invalid IL or missing references) //IL_07c9: Unknown result type (might be due to invalid IL or missing references) //IL_07ce: Unknown result type (might be due to invalid IL or missing references) //IL_07d4: Unknown result type (might be due to invalid IL or missing references) //IL_07de: Unknown result type (might be due to invalid IL or missing references) //IL_07e3: Unknown result type (might be due to invalid IL or missing references) //IL_07e9: Unknown result type (might be due to invalid IL or missing references) //IL_07ee: Unknown result type (might be due to invalid IL or missing references) //IL_07f4: Unknown result type (might be due to invalid IL or missing references) //IL_07f9: Unknown result type (might be due to invalid IL or missing references) //IL_0805: Unknown result type (might be due to invalid IL or missing references) //IL_093c: Unknown result type (might be due to invalid IL or missing references) //IL_0942: Unknown result type (might be due to invalid IL or missing references) //IL_0947: Unknown result type (might be due to invalid IL or missing references) //IL_094d: Unknown result type (might be due to invalid IL or missing references) //IL_0952: Unknown result type (might be due to invalid IL or missing references) //IL_0958: Unknown result type (might be due to invalid IL or missing references) //IL_095d: Unknown result type (might be due to invalid IL or missing references) //IL_0963: Unknown result type (might be due to invalid IL or missing references) //IL_096d: Unknown result type (might be due to invalid IL or missing references) //IL_0972: Unknown result type (might be due to invalid IL or missing references) //IL_0978: Unknown result type (might be due to invalid IL or missing references) //IL_0982: Unknown result type (might be due to invalid IL or missing references) //IL_0987: Unknown result type (might be due to invalid IL or missing references) //IL_098d: Unknown result type (might be due to invalid IL or missing references) //IL_0997: Unknown result type (might be due to invalid IL or missing references) //IL_099c: Unknown result type (might be due to invalid IL or missing references) //IL_09a2: Unknown result type (might be due to invalid IL or missing references) //IL_09a7: Unknown result type (might be due to invalid IL or missing references) //IL_09ad: Unknown result type (might be due to invalid IL or missing references) //IL_09b2: Unknown result type (might be due to invalid IL or missing references) //IL_09bd: Unknown result type (might be due to invalid IL or missing references) //IL_09c3: Unknown result type (might be due to invalid IL or missing references) //IL_09c8: Unknown result type (might be due to invalid IL or missing references) //IL_09ce: Unknown result type (might be due to invalid IL or missing references) //IL_09d3: Unknown result type (might be due to invalid IL or missing references) //IL_09d9: Unknown result type (might be due to invalid IL or missing references) //IL_09de: Unknown result type (might be due to invalid IL or missing references) //IL_09e4: Unknown result type (might be due to invalid IL or missing references) //IL_09ee: Unknown result type (might be due to invalid IL or missing references) //IL_09f3: Unknown result type (might be due to invalid IL or missing references) //IL_09f9: Unknown result type (might be due to invalid IL or missing references) //IL_0a03: Unknown result type (might be due to invalid IL or missing references) //IL_0a08: Unknown result type (might be due to invalid IL or missing references) //IL_0a0e: Unknown result type (might be due to invalid IL or missing references) //IL_0a18: Unknown result type (might be due to invalid IL or missing references) //IL_0a1d: Unknown result type (might be due to invalid IL or missing references) //IL_0a23: Unknown result type (might be due to invalid IL or missing references) //IL_0a28: Unknown result type (might be due to invalid IL or missing references) //IL_0a34: Unknown result type (might be due to invalid IL or missing references) //IL_081f: Unknown result type (might be due to invalid IL or missing references) //IL_0825: Unknown result type (might be due to invalid IL or missing references) //IL_082a: Unknown result type (might be due to invalid IL or missing references) //IL_0830: Unknown result type (might be due to invalid IL or missing references) //IL_0835: Unknown result type (might be due to invalid IL or missing references) //IL_083b: Unknown result type (might be due to invalid IL or missing references) //IL_0840: Unknown result type (might be due to invalid IL or missing references) //IL_0846: Unknown result type (might be due to invalid IL or missing references) //IL_0850: Unknown result type (might be due to invalid IL or missing references) //IL_0855: Unknown result type (might be due to invalid IL or missing references) //IL_085b: Unknown result type (might be due to invalid IL or missing references) //IL_0865: Unknown result type (might be due to invalid IL or missing references) //IL_086a: Unknown result type (might be due to invalid IL or missing references) //IL_0870: Unknown result type (might be due to invalid IL or missing references) //IL_087a: Unknown result type (might be due to invalid IL or missing references) //IL_087f: Unknown result type (might be due to invalid IL or missing references) //IL_0885: Unknown result type (might be due to invalid IL or missing references) //IL_088a: Unknown result type (might be due to invalid IL or missing references) //IL_0890: Unknown result type (might be due to invalid IL or missing references) //IL_0895: Unknown result type (might be due to invalid IL or missing references) //IL_08a0: Unknown result type (might be due to invalid IL or missing references) //IL_08a6: Unknown result type (might be due to invalid IL or missing references) //IL_08ab: Unknown result type (might be due to invalid IL or missing references) //IL_08b1: Unknown result type (might be due to invalid IL or missing references) //IL_08b6: Unknown result type (might be due to invalid IL or missing references) //IL_08bc: Unknown result type (might be due to invalid IL or missing references) //IL_08c1: Unknown result type (might be due to invalid IL or missing references) //IL_08c7: Unknown result type (might be due to invalid IL or missing references) //IL_08d1: Unknown result type (might be due to invalid IL or missing references) //IL_08d6: Unknown result type (might be due to invalid IL or missing references) //IL_08dc: Unknown result type (might be due to invalid IL or missing references) //IL_08e1: Unknown result type (might be due to invalid IL or missing references) //IL_08e7: Unknown result type (might be due to invalid IL or missing references) //IL_08f1: Unknown result type (might be due to invalid IL or missing references) //IL_08f6: Unknown result type (might be due to invalid IL or missing references) //IL_08fc: Unknown result type (might be due to invalid IL or missing references) //IL_0906: Unknown result type (might be due to invalid IL or missing references) //IL_090b: Unknown result type (might be due to invalid IL or missing references) //IL_0911: Unknown result type (might be due to invalid IL or missing references) //IL_0916: Unknown result type (might be due to invalid IL or missing references) //IL_0922: Unknown result type (might be due to invalid IL or missing references) //IL_0a6c: Unknown result type (might be due to invalid IL or missing references) //IL_0a72: Unknown result type (might be due to invalid IL or missing references) //IL_0a77: Unknown result type (might be due to invalid IL or missing references) //IL_0a7d: Unknown result type (might be due to invalid IL or missing references) //IL_0a87: Unknown result type (might be due to invalid IL or missing references) //IL_0a8c: Unknown result type (might be due to invalid IL or missing references) //IL_0a92: Unknown result type (might be due to invalid IL or missing references) //IL_0a9c: Unknown result type (might be due to invalid IL or missing references) //IL_0aa1: Unknown result type (might be due to invalid IL or missing references) //IL_0aa7: Unknown result type (might be due to invalid IL or missing references) //IL_0ab1: Unknown result type (might be due to invalid IL or missing references) //IL_0ab6: Unknown result type (might be due to invalid IL or missing references) //IL_0abc: Unknown result type (might be due to invalid IL or missing references) //IL_0ac1: Unknown result type (might be due to invalid IL or missing references) //IL_0ac7: Unknown result type (might be due to invalid IL or missing references) //IL_0acc: Unknown result type (might be due to invalid IL or missing references) //IL_0ad2: Unknown result type (might be due to invalid IL or missing references) //IL_0ad7: Unknown result type (might be due to invalid IL or missing references) //IL_0ae2: Unknown result type (might be due to invalid IL or missing references) //IL_0ae8: Unknown result type (might be due to invalid IL or missing references) //IL_0aed: Unknown result type (might be due to invalid IL or missing references) //IL_0af3: Unknown result type (might be due to invalid IL or missing references) //IL_0afd: Unknown result type (might be due to invalid IL or missing references) //IL_0b02: Unknown result type (might be due to invalid IL or missing references) //IL_0b08: Unknown result type (might be due to invalid IL or missing references) //IL_0b12: Unknown result type (might be due to invalid IL or missing references) //IL_0b17: Unknown result type (might be due to invalid IL or missing references) //IL_0b1d: Unknown result type (might be due to invalid IL or missing references) //IL_0b27: Unknown result type (might be due to invalid IL or missing references) //IL_0b2c: Unknown result type (might be due to invalid IL or missing references) //IL_0b32: Unknown result type (might be due to invalid IL or missing references) //IL_0b37: Unknown result type (might be due to invalid IL or missing references) //IL_0b3d: Unknown result type (might be due to invalid IL or missing references) //IL_0b42: Unknown result type (might be due to invalid IL or missing references) //IL_0b48: Unknown result type (might be due to invalid IL or missing references) //IL_0b4d: Unknown result type (might be due to invalid IL or missing references) //IL_0b59: Unknown result type (might be due to invalid IL or missing references) //IL_0c7a: Unknown result type (might be due to invalid IL or missing references) //IL_0c80: Unknown result type (might be due to invalid IL or missing references) //IL_0c85: Unknown result type (might be due to invalid IL or missing references) //IL_0c8b: Unknown result type (might be due to invalid IL or missing references) //IL_0c95: Unknown result type (might be due to invalid IL or missing references) //IL_0c9a: Unknown result type (might be due to invalid IL or missing references) //IL_0ca0: Unknown result type (might be due to invalid IL or missing references) //IL_0caa: Unknown result type (might be due to invalid IL or missing references) //IL_0caf: Unknown result type (might be due to invalid IL or missing references) //IL_0cb5: Unknown result type (might be due to invalid IL or missing references) //IL_0cbf: Unknown result type (might be due to invalid IL or missing references) //IL_0cc4: Unknown result type (might be due to invalid IL or missing references) //IL_0cca: Unknown result type (might be due to invalid IL or missing references) //IL_0ccf: Unknown result type (might be due to invalid IL or missing references) //IL_0cd5: Unknown result type (might be due to invalid IL or missing references) //IL_0cda: Unknown result type (might be due to invalid IL or missing references) //IL_0ce0: Unknown result type (might be due to invalid IL or missing references) //IL_0ce5: Unknown result type (might be due to invalid IL or missing references) //IL_0cf0: Unknown result type (might be due to invalid IL or missing references) //IL_0cf6: Unknown result type (might be due to invalid IL or missing references) //IL_0cfb: Unknown result type (might be due to invalid IL or missing references) //IL_0d01: Unknown result type (might be due to invalid IL or missing references) //IL_0d0b: Unknown result type (might be due to invalid IL or missing references) //IL_0d10: Unknown result type (might be due to invalid IL or missing references) //IL_0d16: Unknown result type (might be due to invalid IL or missing references) //IL_0d20: Unknown result type (might be due to invalid IL or missing references) //IL_0d25: Unknown result type (might be due to invalid IL or missing references) //IL_0d2b: Unknown result type (might be due to invalid IL or missing references) //IL_0d35: Unknown result type (might be due to invalid IL or missing references) //IL_0d3a: Unknown result type (might be due to invalid IL or missing references) //IL_0d40: Unknown result type (might be due to invalid IL or missing references) //IL_0d45: Unknown result type (might be due to invalid IL or missing references) //IL_0d4b: Unknown result type (might be due to invalid IL or missing references) //IL_0d50: Unknown result type (might be due to invalid IL or missing references) //IL_0d5c: Unknown result type (might be due to invalid IL or missing references) //IL_0b73: Unknown result type (might be due to invalid IL or missing references) //IL_0b79: Unknown result type (might be due to invalid IL or missing references) //IL_0b7e: Unknown result type (might be due to invalid IL or missing references) //IL_0b84: Unknown result type (might be due to invalid IL or missing references) //IL_0b8e: Unknown result type (might be due to invalid IL or missing references) //IL_0b93: Unknown result type (might be due to invalid IL or missing references) //IL_0b99: Unknown result type (might be due to invalid IL or missing references) //IL_0ba3: Unknown result type (might be due to invalid IL or missing references) //IL_0ba8: Unknown result type (might be due to invalid IL or missing references) //IL_0bae: Unknown result type (might be due to invalid IL or missing references) //IL_0bb8: Unknown result type (might be due to invalid IL or missing references) //IL_0bbd: Unknown result type (might be due to invalid IL or missing references) //IL_0bc3: Unknown result type (might be due to invalid IL or missing references) //IL_0bc8: Unknown result type (might be due to invalid IL or missing references) //IL_0bce: Unknown result type (might be due to invalid IL or missing references) //IL_0bd3: Unknown result type (might be due to invalid IL or missing references) //IL_0bd9: Unknown result type (might be due to invalid IL or missing references) //IL_0bde: Unknown result type (might be due to invalid IL or missing references) //IL_0be9: Unknown result type (might be due to invalid IL or missing references) //IL_0bef: Unknown result type (might be due to invalid IL or missing references) //IL_0bf4: Unknown result type (might be due to invalid IL or missing references) //IL_0bfa: Unknown result type (might be due to invalid IL or missing references) //IL_0c04: Unknown result type (might be due to invalid IL or missing references) //IL_0c09: Unknown result type (might be due to invalid IL or missing references) //IL_0c0f: Unknown result type (might be due to invalid IL or missing references) //IL_0c14: Unknown result type (might be due to invalid IL or missing references) //IL_0c1a: Unknown result type (might be due to invalid IL or missing references) //IL_0c24: Unknown result type (might be due to invalid IL or missing references) //IL_0c29: Unknown result type (might be due to invalid IL or missing references) //IL_0c2f: Unknown result type (might be due to invalid IL or missing references) //IL_0c39: Unknown result type (might be due to invalid IL or missing references) //IL_0c3e: Unknown result type (might be due to invalid IL or missing references) //IL_0c44: Unknown result type (might be due to invalid IL or missing references) //IL_0c49: Unknown result type (might be due to invalid IL or missing references) //IL_0c4f: Unknown result type (might be due to invalid IL or missing references) //IL_0c54: Unknown result type (might be due to invalid IL or missing references) //IL_0c60: Unknown result type (might be due to invalid IL or missing references) //IL_0d77: Unknown result type (might be due to invalid IL or missing references) //IL_0d7c: Unknown result type (might be due to invalid IL or missing references) //IL_1c68: Unknown result type (might be due to invalid IL or missing references) //IL_1c6e: Unknown result type (might be due to invalid IL or missing references) //IL_1c73: Unknown result type (might be due to invalid IL or missing references) //IL_1c79: Unknown result type (might be due to invalid IL or missing references) //IL_1c83: Unknown result type (might be due to invalid IL or missing references) //IL_1c88: Unknown result type (might be due to invalid IL or missing references) //IL_1c8e: Unknown result type (might be due to invalid IL or missing references) //IL_1c98: Unknown result type (might be due to invalid IL or missing references) //IL_1c9d: Unknown result type (might be due to invalid IL or missing references) //IL_1ca3: Unknown result type (might be due to invalid IL or missing references) //IL_1cad: Unknown result type (might be due to invalid IL or missing references) //IL_1cb2: Unknown result type (might be due to invalid IL or missing references) //IL_1cb8: Unknown result type (might be due to invalid IL or missing references) //IL_1cbd: Unknown result type (might be due to invalid IL or missing references) //IL_1cc3: Unknown result type (might be due to invalid IL or missing references) //IL_1cc8: Unknown result type (might be due to invalid IL or missing references) //IL_1cce: Unknown result type (might be due to invalid IL or missing references) //IL_1cd3: Unknown result type (might be due to invalid IL or missing references) //IL_1cde: Unknown result type (might be due to invalid IL or missing references) //IL_1ce4: Unknown result type (might be due to invalid IL or missing references) //IL_1ce9: Unknown result type (might be due to invalid IL or missing references) //IL_1cef: Unknown result type (might be due to invalid IL or missing references) //IL_1cf9: Unknown result type (might be due to invalid IL or missing references) //IL_1cfe: Unknown result type (might be due to invalid IL or missing references) //IL_1d04: Unknown result type (might be due to invalid IL or missing references) //IL_1d0e: Unknown result type (might be due to invalid IL or missing references) //IL_1d13: Unknown result type (might be due to invalid IL or missing references) //IL_1d19: Unknown result type (might be due to invalid IL or missing references) //IL_1d23: Unknown result type (might be due to invalid IL or missing references) //IL_1d28: Unknown result type (might be due to invalid IL or missing references) //IL_1d2e: Unknown result type (might be due to invalid IL or missing references) //IL_1d33: Unknown result type (might be due to invalid IL or missing references) //IL_1d39: Unknown result type (might be due to invalid IL or missing references) //IL_1d3e: Unknown result type (might be due to invalid IL or missing references) //IL_1d44: Unknown result type (might be due to invalid IL or missing references) //IL_1d49: Unknown result type (might be due to invalid IL or missing references) //IL_1d55: Unknown result type (might be due to invalid IL or missing references) //IL_0db7: Unknown result type (might be due to invalid IL or missing references) //IL_0dbd: Unknown result type (might be due to invalid IL or missing references) //IL_0dc2: Unknown result type (might be due to invalid IL or missing references) //IL_0dc8: Unknown result type (might be due to invalid IL or missing references) //IL_0dcd: Unknown result type (might be due to invalid IL or missing references) //IL_0dd3: Unknown result type (might be due to invalid IL or missing references) //IL_0ddd: Unknown result type (might be due to invalid IL or missing references) //IL_0de2: Unknown result type (might be due to invalid IL or missing references) //IL_0de8: Unknown result type (might be due to invalid IL or missing references) //IL_0df2: Unknown result type (might be due to invalid IL or missing references) //IL_0df8: Unknown result type (might be due to invalid IL or missing references) //IL_0dfd: Unknown result type (might be due to invalid IL or missing references) //IL_0e03: Unknown result type (might be due to invalid IL or missing references) //IL_0e08: Unknown result type (might be due to invalid IL or missing references) //IL_0e0d: Unknown result type (might be due to invalid IL or missing references) //IL_0e18: Unknown result type (might be due to invalid IL or missing references) //IL_0e1e: Unknown result type (might be due to invalid IL or missing references) //IL_0e23: Unknown result type (might be due to invalid IL or missing references) //IL_0e29: Unknown result type (might be due to invalid IL or missing references) //IL_0e2e: Unknown result type (might be due to invalid IL or missing references) //IL_0e34: Unknown result type (might be due to invalid IL or missing references) //IL_0e3e: Unknown result type (might be due to invalid IL or missing references) //IL_0e43: Unknown result type (might be due to invalid IL or missing references) //IL_0e49: Unknown result type (might be due to invalid IL or missing references) //IL_0e53: Unknown result type (might be due to invalid IL or missing references) //IL_0e59: Unknown result type (might be due to invalid IL or missing references) //IL_0e5e: Unknown result type (might be due to invalid IL or missing references) //IL_0e64: Unknown result type (might be due to invalid IL or missing references) //IL_0e69: Unknown result type (might be due to invalid IL or missing references) //IL_0e6e: Unknown result type (might be due to invalid IL or missing references) //IL_0e7a: Unknown result type (might be due to invalid IL or missing references) //IL_1e76: Unknown result type (might be due to invalid IL or missing references) //IL_1e7c: Unknown result type (might be due to invalid IL or missing references) //IL_1e81: Unknown result type (might be due to invalid IL or missing references) //IL_1e87: Unknown result type (might be due to invalid IL or missing references) //IL_1e91: Unknown result type (might be due to invalid IL or missing references) //IL_1e96: Unknown result type (might be due to invalid IL or missing references) //IL_1e9c: Unknown result type (might be due to invalid IL or missing references) //IL_1ea6: Unknown result type (might be due to invalid IL or missing references) //IL_1eab: Unknown result type (might be due to invalid IL or missing references) //IL_1eb1: Unknown result type (might be due to invalid IL or missing references) //IL_1ebb: Unknown result type (might be due to invalid IL or missing references) //IL_1ec0: Unknown result type (might be due to invalid IL or missing references) //IL_1ec6: Unknown result type (might be due to invalid IL or missing references) //IL_1ecb: Unknown result type (might be due to invalid IL or missing references) //IL_1ed1: Unknown result type (might be due to invalid IL or missing references) //IL_1ed6: Unknown result type (might be due to invalid IL or missing references) //IL_1edc: Unknown result type (might be due to invalid IL or missing references) //IL_1ee1: Unknown result type (might be due to invalid IL or missing references) //IL_1eec: Unknown result type (might be due to invalid IL or missing references) //IL_1ef2: Unknown result type (might be due to invalid IL or missing references) //IL_1ef7: Unknown result type (might be due to invalid IL or missing references) //IL_1efd: Unknown result type (might be due to invalid IL or missing references) //IL_1f07: Unknown result type (might be due to invalid IL or missing references) //IL_1f0c: Unknown result type (might be due to invalid IL or missing references) //IL_1f12: Unknown result type (might be due to invalid IL or missing references) //IL_1f1c: Unknown result type (might be due to invalid IL or missing references) //IL_1f21: Unknown result type (might be due to invalid IL or missing references) //IL_1f27: Unknown result type (might be due to invalid IL or missing references) //IL_1f31: Unknown result type (might be due to invalid IL or missing references) //IL_1f36: Unknown result type (might be due to invalid IL or missing references) //IL_1f3c: Unknown result type (might be due to invalid IL or missing references) //IL_1f41: Unknown result type (might be due to invalid IL or missing references) //IL_1f47: Unknown result type (might be due to invalid IL or missing references) //IL_1f4c: Unknown result type (might be due to invalid IL or missing references) //IL_1f58: Unknown result type (might be due to invalid IL or missing references) //IL_1d6f: Unknown result type (might be due to invalid IL or missing references) //IL_1d75: Unknown result type (might be due to invalid IL or missing references) //IL_1d7a: Unknown result type (might be due to invalid IL or missing references) //IL_1d80: Unknown result type (might be due to invalid IL or missing references) //IL_1d8a: Unknown result type (might be due to invalid IL or missing references) //IL_1d8f: Unknown result type (might be due to invalid IL or missing references) //IL_1d95: Unknown result type (might be due to invalid IL or missing references) //IL_1d9f: Unknown result type (might be due to invalid IL or missing references) //IL_1da4: Unknown result type (might be due to invalid IL or missing references) //IL_1daa: Unknown result type (might be due to invalid IL or missing references) //IL_1db4: Unknown result type (might be due to invalid IL or missing references) //IL_1db9: Unknown result type (might be due to invalid IL or missing references) //IL_1dbf: Unknown result type (might be due to invalid IL or missing references) //IL_1dc4: Unknown result type (might be due to invalid IL or missing references) //IL_1dca: Unknown result type (might be due to invalid IL or missing references) //IL_1dcf: Unknown result type (might be due to invalid IL or missing references) //IL_1dd5: Unknown result type (might be due to invalid IL or missing references) //IL_1dda: Unknown result type (might be due to invalid IL or missing references) //IL_1de5: Unknown result type (might be due to invalid IL or missing references) //IL_1deb: Unknown result type (might be due to invalid IL or missing references) //IL_1df0: Unknown result type (might be due to invalid IL or missing references) //IL_1df6: Unknown result type (might be due to invalid IL or missing references) //IL_1e00: Unknown result type (might be due to invalid IL or missing references) //IL_1e05: Unknown result type (might be due to invalid IL or missing references) //IL_1e0b: Unknown result type (might be due to invalid IL or missing references) //IL_1e10: Unknown result type (might be due to invalid IL or missing references) //IL_1e16: Unknown result type (might be due to invalid IL or missing references) //IL_1e20: Unknown result type (might be due to invalid IL or missing references) //IL_1e25: Unknown result type (might be due to invalid IL or missing references) //IL_1e2b: Unknown result type (might be due to invalid IL or missing references) //IL_1e35: Unknown result type (might be due to invalid IL or missing references) //IL_1e3a: Unknown result type (might be due to invalid IL or missing references) //IL_1e40: Unknown result type (might be due to invalid IL or missing references) //IL_1e45: Unknown result type (might be due to invalid IL or missing references) //IL_1e4b: Unknown result type (might be due to invalid IL or missing references) //IL_1e50: Unknown result type (might be due to invalid IL or missing references) //IL_1e5c: Unknown result type (might be due to invalid IL or missing references) //IL_0f45: Unknown result type (might be due to invalid IL or missing references) //IL_0f4b: Unknown result type (might be due to invalid IL or missing references) //IL_0f50: Unknown result type (might be due to invalid IL or missing references) //IL_0f56: Unknown result type (might be due to invalid IL or missing references) //IL_0f5b: Unknown result type (might be due to invalid IL or missing references) //IL_0f61: Unknown result type (might be due to invalid IL or missing references) //IL_0f6b: Unknown result type (might be due to invalid IL or missing references) //IL_0f70: Unknown result type (might be due to invalid IL or missing references) //IL_0f76: Unknown result type (might be due to invalid IL or missing references) //IL_0f80: Unknown result type (might be due to invalid IL or missing references) //IL_0f86: Unknown result type (might be due to invalid IL or missing references) //IL_0f8b: Unknown result type (might be due to invalid IL or missing references) //IL_0f91: Unknown result type (might be due to invalid IL or missing references) //IL_0f96: Unknown result type (might be due to invalid IL or missing references) //IL_0f9b: Unknown result type (might be due to invalid IL or missing references) //IL_0fa1: Unknown result type (might be due to invalid IL or missing references) //IL_0fab: Unknown result type (might be due to invalid IL or missing references) //IL_0fb0: Unknown result type (might be due to invalid IL or missing references) //IL_0fbb: Unknown result type (might be due to invalid IL or missing references) //IL_0fc1: Unknown result type (might be due to invalid IL or missing references) //IL_0fc6: Unknown result type (might be due to invalid IL or missing references) //IL_0fcc: Unknown result type (might be due to invalid IL or missing references) //IL_0fd1: Unknown result type (might be due to invalid IL or missing references) //IL_0fd7: Unknown result type (might be due to invalid IL or missing references) //IL_0fe1: Unknown result type (might be due to invalid IL or missing references) //IL_0fe6: Unknown result type (might be due to invalid IL or missing references) //IL_0fec: Unknown result type (might be due to invalid IL or missing references) //IL_0ff6: Unknown result type (might be due to invalid IL or missing references) //IL_0ffc: Unknown result type (might be due to invalid IL or missing references) //IL_1001: Unknown result type (might be due to invalid IL or missing references) //IL_1007: Unknown result type (might be due to invalid IL or missing references) //IL_100c: Unknown result type (might be due to invalid IL or missing references) //IL_1011: Unknown result type (might be due to invalid IL or missing references) //IL_1017: Unknown result type (might be due to invalid IL or missing references) //IL_1021: Unknown result type (might be due to invalid IL or missing references) //IL_1026: Unknown result type (might be due to invalid IL or missing references) //IL_1032: Unknown result type (might be due to invalid IL or missing references) //IL_0e94: Unknown result type (might be due to invalid IL or missing references) //IL_0e99: Unknown result type (might be due to invalid IL or missing references) //IL_1f73: Unknown result type (might be due to invalid IL or missing references) //IL_1f78: Unknown result type (might be due to invalid IL or missing references) //IL_1100: Unknown result type (might be due to invalid IL or missing references) //IL_1106: Unknown result type (might be due to invalid IL or missing references) //IL_110b: Unknown result type (might be due to invalid IL or missing references) //IL_1111: Unknown result type (might be due to invalid IL or missing references) //IL_1116: Unknown result type (might be due to invalid IL or missing references) //IL_111c: Unknown result type (might be due to invalid IL or missing references) //IL_1126: Unknown result type (might be due to invalid IL or missing references) //IL_112b: Unknown result type (might be due to invalid IL or missing references) //IL_1131: Unknown result type (might be due to invalid IL or missing references) //IL_113b: Unknown result type (might be due to invalid IL or missing references) //IL_1141: Unknown result type (might be due to invalid IL or missing references) //IL_1146: Unknown result type (might be due to invalid IL or missing references) //IL_114c: Unknown result type (might be due to invalid IL or missing references) //IL_1151: Unknown result type (might be due to invalid IL or missing references) //IL_1156: Unknown result type (might be due to invalid IL or missing references) //IL_115c: Unknown result type (might be due to invalid IL or missing references) //IL_1166: Unknown result type (might be due to invalid IL or missing references) //IL_116b: Unknown result type (might be due to invalid IL or missing references) //IL_1176: Unknown result type (might be due to invalid IL or missing references) //IL_117c: Unknown result type (might be due to invalid IL or missing references) //IL_1181: Unknown result type (might be due to invalid IL or missing references) //IL_1187: Unknown result type (might be due to invalid IL or missing references) //IL_118c: Unknown result type (might be due to invalid IL or missing references) //IL_1192: Unknown result type (might be due to invalid IL or missing references) //IL_119c: Unknown result type (might be due to invalid IL or missing references) //IL_11a1: Unknown result type (might be due to invalid IL or missing references) //IL_11a7: Unknown result type (might be due to invalid IL or missing references) //IL_11b1: Unknown result type (might be due to invalid IL or missing references) //IL_11b7: Unknown result type (might be due to invalid IL or missing references) //IL_11bc: Unknown result type (might be due to invalid IL or missing references) //IL_11c2: Unknown result type (might be due to invalid IL or missing references) //IL_11c7: Unknown result type (might be due to invalid IL or missing references) //IL_11cc: Unknown result type (might be due to invalid IL or missing references) //IL_11d2: Unknown result type (might be due to invalid IL or missing references) //IL_11dc: Unknown result type (might be due to invalid IL or missing references) //IL_11e1: Unknown result type (might be due to invalid IL or missing references) //IL_11ed: Unknown result type (might be due to invalid IL or missing references) //IL_104c: Unknown result type (might be due to invalid IL or missing references) //IL_1051: Unknown result type (might be due to invalid IL or missing references) //IL_0ecd: Unknown result type (might be due to invalid IL or missing references) //IL_0ed2: Unknown result type (might be due to invalid IL or missing references) //IL_0ee0: Unknown result type (might be due to invalid IL or missing references) //IL_0ee5: Unknown result type (might be due to invalid IL or missing references) //IL_0f00: Unknown result type (might be due to invalid IL or missing references) //IL_0f05: Unknown result type (might be due to invalid IL or missing references) //IL_0f0e: Unknown result type (might be due to invalid IL or missing references) //IL_0f19: Unknown result type (might be due to invalid IL or missing references) //IL_0f2a: Unknown result type (might be due to invalid IL or missing references) //IL_0f2f: Unknown result type (might be due to invalid IL or missing references) //IL_0f34: Unknown result type (might be due to invalid IL or missing references) //IL_2e68: Unknown result type (might be due to invalid IL or missing references) //IL_2e6e: Unknown result type (might be due to invalid IL or missing references) //IL_2e73: Unknown result type (might be due to invalid IL or missing references) //IL_2e79: Unknown result type (might be due to invalid IL or missing references) //IL_2e83: Unknown result type (might be due to invalid IL or missing references) //IL_2e88: Unknown result type (might be due to invalid IL or missing references) //IL_2e8e: Unknown result type (might be due to invalid IL or missing references) //IL_2e98: Unknown result type (might be due to invalid IL or missing references) //IL_2e9d: Unknown result type (might be due to invalid IL or missing references) //IL_2ea3: Unknown result type (might be due to invalid IL or missing references) //IL_2ead: Unknown result type (might be due to invalid IL or missing references) //IL_2eb2: Unknown result type (might be due to invalid IL or missing references) //IL_2eb8: Unknown result type (might be due to invalid IL or missing references) //IL_2ebd: Unknown result type (might be due to invalid IL or missing references) //IL_2ec3: Unknown result type (might be due to invalid IL or missing references) //IL_2ec8: Unknown result type (might be due to invalid IL or missing references) //IL_2ece: Unknown result type (might be due to invalid IL or missing references) //IL_2ed3: Unknown result type (might be due to invalid IL or missing references) //IL_2ede: Unknown result type (might be due to invalid IL or missing references) //IL_2ee4: Unknown result type (might be due to invalid IL or missing references) //IL_2ee9: Unknown result type (might be due to invalid IL or missing references) //IL_2eef: Unknown result type (might be due to invalid IL or missing references) //IL_2ef9: Unknown result type (might be due to invalid IL or missing references) //IL_2efe: Unknown result type (might be due to invalid IL or missing references) //IL_2f04: Unknown result type (might be due to invalid IL or missing references) //IL_2f0e: Unknown result type (might be due to invalid IL or missing references) //IL_2f13: Unknown result type (might be due to invalid IL or missing references) //IL_2f19: Unknown result type (might be due to invalid IL or missing references) //IL_2f23: Unknown result type (might be due to invalid IL or missing references) //IL_2f28: Unknown result type (might be due to invalid IL or missing references) //IL_2f2e: Unknown result type (might be due to invalid IL or missing references) //IL_2f33: Unknown result type (might be due to invalid IL or missing references) //IL_2f39: Unknown result type (might be due to invalid IL or missing references) //IL_2f3e: Unknown result type (might be due to invalid IL or missing references) //IL_2f44: Unknown result type (might be due to invalid IL or missing references) //IL_2f49: Unknown result type (might be due to invalid IL or missing references) //IL_2f55: Unknown result type (might be due to invalid IL or missing references) //IL_1fb4: Unknown result type (might be due to invalid IL or missing references) //IL_1fba: Unknown result type (might be due to invalid IL or missing references) //IL_1fbf: Unknown result type (might be due to invalid IL or missing references) //IL_1fc5: Unknown result type (might be due to invalid IL or missing references) //IL_1fca: Unknown result type (might be due to invalid IL or missing references) //IL_1fd0: Unknown result type (might be due to invalid IL or missing references) //IL_1fda: Unknown result type (might be due to invalid IL or missing references) //IL_1fdf: Unknown result type (might be due to invalid IL or missing references) //IL_1fe5: Unknown result type (might be due to invalid IL or missing references) //IL_1fef: Unknown result type (might be due to invalid IL or missing references) //IL_1ff5: Unknown result type (might be due to invalid IL or missing references) //IL_1ffa: Unknown result type (might be due to invalid IL or missing references) //IL_2000: Unknown result type (might be due to invalid IL or missing references) //IL_2005: Unknown result type (might be due to invalid IL or missing references) //IL_200a: Unknown result type (might be due to invalid IL or missing references) //IL_2015: Unknown result type (might be due to invalid IL or missing references) //IL_201b: Unknown result type (might be due to invalid IL or missing references) //IL_2020: Unknown result type (might be due to invalid IL or missing references) //IL_2026: Unknown result type (might be due to invalid IL or missing references) //IL_202b: Unknown result type (might be due to invalid IL or missing references) //IL_2031: Unknown result type (might be due to invalid IL or missing references) //IL_203b: Unknown result type (might be due to invalid IL or missing references) //IL_2040: Unknown result type (might be due to invalid IL or missing references) //IL_2046: Unknown result type (might be due to invalid IL or missing references) //IL_2050: Unknown result type (might be due to invalid IL or missing references) //IL_2056: Unknown result type (might be due to invalid IL or missing references) //IL_205b: Unknown result type (might be due to invalid IL or missing references) //IL_2061: Unknown result type (might be due to invalid IL or missing references) //IL_2066: Unknown result type (might be due to invalid IL or missing references) //IL_206b: Unknown result type (might be due to invalid IL or missing references) //IL_2077: Unknown result type (might be due to invalid IL or missing references) //IL_12bb: Unknown result type (might be due to invalid IL or missing references) //IL_12c1: Unknown result type (might be due to invalid IL or missing references) //IL_12c6: Unknown result type (might be due to invalid IL or missing references) //IL_12cc: Unknown result type (might be due to invalid IL or missing references) //IL_12d1: Unknown result type (might be due to invalid IL or missing references) //IL_12d7: Unknown result type (might be due to invalid IL or missing references) //IL_12e1: Unknown result type (might be due to invalid IL or missing references) //IL_12e6: Unknown result type (might be due to invalid IL or missing references) //IL_12ec: Unknown result type (might be due to invalid IL or missing references) //IL_12f6: Unknown result type (might be due to invalid IL or missing references) //IL_12fc: Unknown result type (might be due to invalid IL or missing references) //IL_1301: Unknown result type (might be due to invalid IL or missing references) //IL_1307: Unknown result type (might be due to invalid IL or missing references) //IL_130c: Unknown result type (might be due to invalid IL or missing references) //IL_1311: Unknown result type (might be due to invalid IL or missing references) //IL_1317: Unknown result type (might be due to invalid IL or missing references) //IL_1321: Unknown result type (might be due to invalid IL or missing references) //IL_1326: Unknown result type (might be due to invalid IL or missing references) //IL_1331: Unknown result type (might be due to invalid IL or missing references) //IL_1337: Unknown result type (might be due to invalid IL or missing references) //IL_133c: Unknown result type (might be due to invalid IL or missing references) //IL_1342: Unknown result type (might be due to invalid IL or missing references) //IL_1347: Unknown result type (might be due to invalid IL or missing references) //IL_134d: Unknown result type (might be due to invalid IL or missing references) //IL_1357: Unknown result type (might be due to invalid IL or missing references) //IL_135c: Unknown result type (might be due to invalid IL or missing references) //IL_1362: Unknown result type (might be due to invalid IL or missing references) //IL_136c: Unknown result type (might be due to invalid IL or missing references) //IL_1372: Unknown result type (might be due to invalid IL or missing references) //IL_1377: Unknown result type (might be due to invalid IL or missing references) //IL_137d: Unknown result type (might be due to invalid IL or missing references) //IL_1382: Unknown result type (might be due to invalid IL or missing references) //IL_1387: Unknown result type (might be due to invalid IL or missing references) //IL_138d: Unknown result type (might be due to invalid IL or missing references) //IL_1397: Unknown result type (might be due to invalid IL or missing references) //IL_139c: Unknown result type (might be due to invalid IL or missing references) //IL_13a8: Unknown result type (might be due to invalid IL or missing references) //IL_1207: Unknown result type (might be due to invalid IL or missing references) //IL_120c: Unknown result type (might be due to invalid IL or missing references) //IL_1086: Unknown result type (might be due to invalid IL or missing references) //IL_108b: Unknown result type (might be due to invalid IL or missing references) //IL_109a: Unknown result type (might be due to invalid IL or missing references) //IL_109f: Unknown result type (might be due to invalid IL or missing references) //IL_10bb: Unknown result type (might be due to invalid IL or missing references) //IL_10c0: Unknown result type (might be due to invalid IL or missing references) //IL_10c9: Unknown result type (might be due to invalid IL or missing references) //IL_10d4: Unknown result type (might be due to invalid IL or missing references) //IL_10e5: Unknown result type (might be due to invalid IL or missing references) //IL_10ea: Unknown result type (might be due to invalid IL or missing references) //IL_10ef: Unknown result type (might be due to invalid IL or missing references) //IL_3076: Unknown result type (might be due to invalid IL or missing references) //IL_307c: Unknown result type (might be due to invalid IL or missing references) //IL_3081: Unknown result type (might be due to invalid IL or missing references) //IL_3087: Unknown result type (might be due to invalid IL or missing references) //IL_3091: Unknown result type (might be due to invalid IL or missing references) //IL_3096: Unknown result type (might be due to invalid IL or missing references) //IL_309c: Unknown result type (might be due to invalid IL or missing references) //IL_30a6: Unknown result type (might be due to invalid IL or missing references) //IL_30ab: Unknown result type (might be due to invalid IL or missing references) //IL_30b1: Unknown result type (might be due to invalid IL or missing references) //IL_30bb: Unknown result type (might be due to invalid IL or missing references) //IL_30c0: Unknown result type (might be due to invalid IL or missing references) //IL_30c6: Unknown result type (might be due to invalid IL or missing references) //IL_30cb: Unknown result type (might be due to invalid IL or missing references) //IL_30d1: Unknown result type (might be due to invalid IL or missing references) //IL_30d6: Unknown result type (might be due to invalid IL or missing references) //IL_30dc: Unknown result type (might be due to invalid IL or missing references) //IL_30e1: Unknown result type (might be due to invalid IL or missing references) //IL_30ec: Unknown result type (might be due to invalid IL or missing references) //IL_30f2: Unknown result type (might be due to invalid IL or missing references) //IL_30f7: Unknown result type (might be due to invalid IL or missing references) //IL_30fd: Unknown result type (might be due to invalid IL or missing references) //IL_3107: Unknown result type (might be due to invalid IL or missing references) //IL_310c: Unknown result type (might be due to invalid IL or missing references) //IL_3112: Unknown result type (might be due to invalid IL or missing references) //IL_311c: Unknown result type (might be due to invalid IL or missing references) //IL_3121: Unknown result type (might be due to invalid IL or missing references) //IL_3127: Unknown result type (might be due to invalid IL or missing references) //IL_3131: Unknown result type (might be due to invalid IL or missing references) //IL_3136: Unknown result type (might be due to invalid IL or missing references) //IL_313c: Unknown result type (might be due to invalid IL or missing references) //IL_3141: Unknown result type (might be due to invalid IL or missing references) //IL_3147: Unknown result type (might be due to invalid IL or missing references) //IL_314c: Unknown result type (might be due to invalid IL or missing references) //IL_3158: Unknown result type (might be due to invalid IL or missing references) //IL_2f6f: Unknown result type (might be due to invalid IL or missing references) //IL_2f75: Unknown result type (might be due to invalid IL or missing references) //IL_2f7a: Unknown result type (might be due to invalid IL or missing references) //IL_2f80: Unknown result type (might be due to invalid IL or missing references) //IL_2f8a: Unknown result type (might be due to invalid IL or missing references) //IL_2f8f: Unknown result type (might be due to invalid IL or missing references) //IL_2f95: Unknown result type (might be due to invalid IL or missing references) //IL_2f9f: Unknown result type (might be due to invalid IL or missing references) //IL_2fa4: Unknown result type (might be due to invalid IL or missing references) //IL_2faa: Unknown result type (might be due to invalid IL or missing references) //IL_2fb4: Unknown result type (might be due to invalid IL or missing references) //IL_2fb9: Unknown result type (might be due to invalid IL or missing references) //IL_2fbf: Unknown result type (might be due to invalid IL or missing references) //IL_2fc4: Unknown result type (might be due to invalid IL or missing references) //IL_2fca: Unknown result type (might be due to invalid IL or missing references) //IL_2fcf: Unknown result type (might be due to invalid IL or missing references) //IL_2fd5: Unknown result type (might be due to invalid IL or missing references) //IL_2fda: Unknown result type (might be due to invalid IL or missing references) //IL_2fe5: Unknown result type (might be due to invalid IL or missing references) //IL_2feb: Unknown result type (might be due to invalid IL or missing references) //IL_2ff0: Unknown result type (might be due to invalid IL or missing references) //IL_2ff6: Unknown result type (might be due to invalid IL or missing references) //IL_3000: Unknown result type (might be due to invalid IL or missing references) //IL_3005: Unknown result type (might be due to invalid IL or missing references) //IL_300b: Unknown result type (might be due to invalid IL or missing references) //IL_3010: Unknown result type (might be due to invalid IL or missing references) //IL_3016: Unknown result type (might be due to invalid IL or missing references) //IL_3020: Unknown result type (might be due to invalid IL or missing references) //IL_3025: Unknown result type (might be due to invalid IL or missing references) //IL_302b: Unknown result type (might be due to invalid IL or missing references) //IL_3035: Unknown result type (might be due to invalid IL or missing references) //IL_303a: Unknown result type (might be due to invalid IL or missing references) //IL_3040: Unknown result type (might be due to invalid IL or missing references) //IL_3045: Unknown result type (might be due to invalid IL or missing references) //IL_304b: Unknown result type (might be due to invalid IL or missing references) //IL_3050: Unknown result type (might be due to invalid IL or missing references) //IL_305c: Unknown result type (might be due to invalid IL or missing references) //IL_2145: Unknown result type (might be due to invalid IL or missing references) //IL_214b: Unknown result type (might be due to invalid IL or missing references) //IL_2150: Unknown result type (might be due to invalid IL or missing references) //IL_2156: Unknown result type (might be due to invalid IL or missing references) //IL_215b: Unknown result type (might be due to invalid IL or missing references) //IL_2161: Unknown result type (might be due to invalid IL or missing references) //IL_216b: Unknown result type (might be due to invalid IL or missing references) //IL_2170: Unknown result type (might be due to invalid IL or missing references) //IL_2176: Unknown result type (might be due to invalid IL or missing references) //IL_2180: Unknown result type (might be due to invalid IL or missing references) //IL_2186: Unknown result type (might be due to invalid IL or missing references) //IL_218b: Unknown result type (might be due to invalid IL or missing references) //IL_2191: Unknown result type (might be due to invalid IL or missing references) //IL_2196: Unknown result type (might be due to invalid IL or missing references) //IL_219b: Unknown result type (might be due to invalid IL or missing references) //IL_21a1: Unknown result type (might be due to invalid IL or missing references) //IL_21ab: Unknown result type (might be due to invalid IL or missing references) //IL_21b0: Unknown result type (might be due to invalid IL or missing references) //IL_21bb: Unknown result type (might be due to invalid IL or missing references) //IL_21c1: Unknown result type (might be due to invalid IL or missing references) //IL_21c6: Unknown result type (might be due to invalid IL or missing references) //IL_21cc: Unknown result type (might be due to invalid IL or missing references) //IL_21d1: Unknown result type (might be due to invalid IL or missing references) //IL_21d7: Unknown result type (might be due to invalid IL or missing references) //IL_21e1: Unknown result type (might be due to invalid IL or missing references) //IL_21e6: Unknown result type (might be due to invalid IL or missing references) //IL_21ec: Unknown result type (might be due to invalid IL or missing references) //IL_21f6: Unknown result type (might be due to invalid IL or missing references) //IL_21fc: Unknown result type (might be due to invalid IL or missing references) //IL_2201: Unknown result type (might be due to invalid IL or missing references) //IL_2207: Unknown result type (might be due to invalid IL or missing references) //IL_220c: Unknown result type (might be due to invalid IL or missing references) //IL_2211: Unknown result type (might be due to invalid IL or missing references) //IL_2217: Unknown result type (might be due to invalid IL or missing references) //IL_2221: Unknown result type (might be due to invalid IL or missing references) //IL_2226: Unknown result type (might be due to invalid IL or missing references) //IL_2232: Unknown result type (might be due to invalid IL or missing references) //IL_2091: Unknown result type (might be due to invalid IL or missing references) //IL_2096: Unknown result type (might be due to invalid IL or missing references) //IL_1476: Unknown result type (might be due to invalid IL or missing references) //IL_147c: Unknown result type (might be due to invalid IL or missing references) //IL_1481: Unknown result type (might be due to invalid IL or missing references) //IL_1487: Unknown result type (might be due to invalid IL or missing references) //IL_148c: Unknown result type (might be due to invalid IL or missing references) //IL_1492: Unknown result type (might be due to invalid IL or missing references) //IL_149c: Unknown result type (might be due to invalid IL or missing references) //IL_14a1: Unknown result type (might be due to invalid IL or missing references) //IL_14a7: Unknown result type (might be due to invalid IL or missing references) //IL_14b1: Unknown result type (might be due to invalid IL or missing references) //IL_14b7: Unknown result type (might be due to invalid IL or missing references) //IL_14bc: Unknown result type (might be due to invalid IL or missing references) //IL_14c2: Unknown result type (might be due to invalid IL or missing references) //IL_14c7: Unknown result type (might be due to invalid IL or missing references) //IL_14cc: Unknown result type (might be due to invalid IL or missing references) //IL_14d2: Unknown result type (might be due to invalid IL or missing references) //IL_14dc: Unknown result type (might be due to invalid IL or missing references) //IL_14e1: Unknown result type (might be due to invalid IL or missing references) //IL_14ec: Unknown result type (might be due to invalid IL or missing references) //IL_14f2: Unknown result type (might be due to invalid IL or missing references) //IL_14f7: Unknown result type (might be due to invalid IL or missing references) //IL_14fd: Unknown result type (might be due to invalid IL or missing references) //IL_1502: Unknown result type (might be due to invalid IL or missing references) //IL_1508: Unknown result type (might be due to invalid IL or missing references) //IL_1512: Unknown result type (might be due to invalid IL or missing references) //IL_1517: Unknown result type (might be due to invalid IL or missing references) //IL_151d: Unknown result type (might be due to invalid IL or missing references) //IL_1527: Unknown result type (might be due to invalid IL or missing references) //IL_152d: Unknown result type (might be due to invalid IL or missing references) //IL_1532: Unknown result type (might be due to invalid IL or missing references) //IL_1538: Unknown result type (might be due to invalid IL or missing references) //IL_153d: Unknown result type (might be due to invalid IL or missing references) //IL_1542: Unknown result type (might be due to invalid IL or missing references) //IL_1548: Unknown result type (might be due to invalid IL or missing references) //IL_1552: Unknown result type (might be due to invalid IL or missing references) //IL_1557: Unknown result type (might be due to invalid IL or missing references) //IL_1563: Unknown result type (might be due to invalid IL or missing references) //IL_13c2: Unknown result type (might be due to invalid IL or missing references) //IL_13c7: Unknown result type (might be due to invalid IL or missing references) //IL_1241: Unknown result type (might be due to invalid IL or missing references) //IL_1246: Unknown result type (might be due to invalid IL or missing references) //IL_1255: Unknown result type (might be due to invalid IL or missing references) //IL_125a: Unknown result type (might be due to invalid IL or missing references) //IL_1276: Unknown result type (might be due to invalid IL or missing references) //IL_127b: Unknown result type (might be due to invalid IL or missing references) //IL_1284: Unknown result type (might be due to invalid IL or missing references) //IL_128f: Unknown result type (might be due to invalid IL or missing references) //IL_12a0: Unknown result type (might be due to invalid IL or missing references) //IL_12a5: Unknown result type (might be due to invalid IL or missing references) //IL_12aa: Unknown result type (might be due to invalid IL or missing references) //IL_3173: Unknown result type (might be due to invalid IL or missing references) //IL_3178: Unknown result type (might be due to invalid IL or missing references) //IL_2300: Unknown result type (might be due to invalid IL or missing references) //IL_2306: Unknown result type (might be due to invalid IL or missing references) //IL_230b: Unknown result type (might be due to invalid IL or missing references) //IL_2311: Unknown result type (might be due to invalid IL or missing references) //IL_2316: Unknown result type (might be due to invalid IL or missing references) //IL_231c: Unknown result type (might be due to invalid IL or missing references) //IL_2326: Unknown result type (might be due to invalid IL or missing references) //IL_232b: Unknown result type (might be due to invalid IL or missing references) //IL_2331: Unknown result type (might be due to invalid IL or missing references) //IL_233b: Unknown result type (might be due to invalid IL or missing references) //IL_2341: Unknown result type (might be due to invalid IL or missing references) //IL_2346: Unknown result type (might be due to invalid IL or missing references) //IL_234c: Unknown result type (might be due to invalid IL or missing references) //IL_2351: Unknown result type (might be due to invalid IL or missing references) //IL_2356: Unknown result type (might be due to invalid IL or missing references) //IL_235c: Unknown result type (might be due to invalid IL or missing references) //IL_2366: Unknown result type (might be due to invalid IL or missing references) //IL_236b: Unknown result type (might be due to invalid IL or missing references) //IL_2376: Unknown result type (might be due to invalid IL or missing references) //IL_237c: Unknown result type (might be due to invalid IL or missing references) //IL_2381: Unknown result type (might be due to invalid IL or missing references) //IL_2387: Unknown result type (might be due to invalid IL or missing references) //IL_238c: Unknown result type (might be due to invalid IL or missing references) //IL_2392: Unknown result type (might be due to invalid IL or missing references) //IL_239c: Unknown result type (might be due to invalid IL or missing references) //IL_23a1: Unknown result type (might be due to invalid IL or missing references) //IL_23a7: Unknown result type (might be due to invalid IL or missing references) //IL_23b1: Unknown result type (might be due to invalid IL or missing references) //IL_23b7: Unknown result type (might be due to invalid IL or missing references) //IL_23bc: Unknown result type (might be due to invalid IL or missing references) //IL_23c2: Unknown result type (might be due to invalid IL or missing references) //IL_23c7: Unknown result type (might be due to invalid IL or missing references) //IL_23cc: Unknown result type (might be due to invalid IL or missing references) //IL_23d2: Unknown result type (might be due to invalid IL or missing references) //IL_23dc: Unknown result type (might be due to invalid IL or missing references) //IL_23e1: Unknown result type (might be due to invalid IL or missing references) //IL_23ed: Unknown result type (might be due to invalid IL or missing references) //IL_224c: Unknown result type (might be due to invalid IL or missing references) //IL_2251: Unknown result type (might be due to invalid IL or missing references) //IL_20cb: Unknown result type (might be due to invalid IL or missing references) //IL_20d0: Unknown result type (might be due to invalid IL or missing references) //IL_20df: Unknown result type (might be due to invalid IL or missing references) //IL_20e4: Unknown result type (might be due to invalid IL or missing references) //IL_2100: Unknown result type (might be due to invalid IL or missing references) //IL_2105: Unknown result type (might be due to invalid IL or missing references) //IL_210e: Unknown result type (might be due to invalid IL or missing references) //IL_2119: Unknown result type (might be due to invalid IL or missing references) //IL_212a: Unknown result type (might be due to invalid IL or missing references) //IL_212f: Unknown result type (might be due to invalid IL or missing references) //IL_2134: Unknown result type (might be due to invalid IL or missing references) //IL_1631: Unknown result type (might be due to invalid IL or missing references) //IL_1637: Unknown result type (might be due to invalid IL or missing references) //IL_163c: Unknown result type (might be due to invalid IL or missing references) //IL_1642: Unknown result type (might be due to invalid IL or missing references) //IL_1647: Unknown result type (might be due to invalid IL or missing references) //IL_164d: Unknown result type (might be due to invalid IL or missing references) //IL_1657: Unknown result type (might be due to invalid IL or missing references) //IL_165c: Unknown result type (might be due to invalid IL or missing references) //IL_1662: Unknown result type (might be due to invalid IL or missing references) //IL_166c: Unknown result type (might be due to invalid IL or missing references) //IL_1672: Unknown result type (might be due to invalid IL or missing references) //IL_1677: Unknown result type (might be due to invalid IL or missing references) //IL_167d: Unknown result type (might be due to invalid IL or missing references) //IL_1682: Unknown result type (might be due to invalid IL or missing references) //IL_1687: Unknown result type (might be due to invalid IL or missing references) //IL_168d: Unknown result type (might be due to invalid IL or missing references) //IL_1697: Unknown result type (might be due to invalid IL or missing references) //IL_169c: Unknown result type (might be due to invalid IL or missing references) //IL_16a7: Unknown result type (might be due to invalid IL or missing references) //IL_16ad: Unknown result type (might be due to invalid IL or missing references) //IL_16b2: Unknown result type (might be due to invalid IL or missing references) //IL_16b8: Unknown result type (might be due to invalid IL or missing references) //IL_16bd: Unknown result type (might be due to invalid IL or missing references) //IL_16c3: Unknown result type (might be due to invalid IL or missing references) //IL_16cd: Unknown result type (might be due to invalid IL or missing references) //IL_16d2: Unknown result type (might be due to invalid IL or missing references) //IL_16d8: Unknown result type (might be due to invalid IL or missing references) //IL_16e2: Unknown result type (might be due to invalid IL or missing references) //IL_16e8: Unknown result type (might be due to invalid IL or missing references) //IL_16ed: Unknown result type (might be due to invalid IL or missing references) //IL_16f3: Unknown result type (might be due to invalid IL or missing references) //IL_16f8: Unknown result type (might be due to invalid IL or missing references) //IL_16fd: Unknown result type (might be due to invalid IL or missing references) //IL_1703: Unknown result type (might be due to invalid IL or missing references) //IL_170d: Unknown result type (might be due to invalid IL or missing references) //IL_1712: Unknown result type (might be due to invalid IL or missing references) //IL_171e: Unknown result type (might be due to invalid IL or missing references) //IL_157d: Unknown result type (might be due to invalid IL or missing references) //IL_1582: Unknown result type (might be due to invalid IL or missing references) //IL_13fc: Unknown result type (might be due to invalid IL or missing references) //IL_1401: Unknown result type (might be due to invalid IL or missing references) //IL_1410: Unknown result type (might be due to invalid IL or missing references) //IL_1415: Unknown result type (might be due to invalid IL or missing references) //IL_1431: Unknown result type (might be due to invalid IL or missing references) //IL_1436: Unknown result type (might be due to invalid IL or missing references) //IL_143f: Unknown result type (might be due to invalid IL or missing references) //IL_144a: Unknown result type (might be due to invalid IL or missing references) //IL_145b: Unknown result type (might be due to invalid IL or missing references) //IL_1460: Unknown result type (might be due to invalid IL or missing references) //IL_1465: Unknown result type (might be due to invalid IL or missing references) //IL_31b4: Unknown result type (might be due to invalid IL or missing references) //IL_31ba: Unknown result type (might be due to invalid IL or missing references) //IL_31bf: Unknown result type (might be due to invalid IL or missing references) //IL_31c5: Unknown result type (might be due to invalid IL or missing references) //IL_31ca: Unknown result type (might be due to invalid IL or missing references) //IL_31d0: Unknown result type (might be due to invalid IL or missing references) //IL_31da: Unknown result type (might be due to invalid IL or missing references) //IL_31df: Unknown result type (might be due to invalid IL or missing references) //IL_31e5: Unknown result type (might be due to invalid IL or missing references) //IL_31ef: Unknown result type (might be due to invalid IL or missing references) //IL_31f5: Unknown result type (might be due to invalid IL or missing references) //IL_31fa: Unknown result type (might be due to invalid IL or missing references) //IL_3200: Unknown result type (might be due to invalid IL or missing references) //IL_3205: Unknown result type (might be due to invalid IL or missing references) //IL_320a: Unknown result type (might be due to invalid IL or missing references) //IL_3215: Unknown result type (might be due to invalid IL or missing references) //IL_321b: Unknown result type (might be due to invalid IL or missing references) //IL_3220: Unknown result type (might be due to invalid IL or missing references) //IL_3226: Unknown result type (might be due to invalid IL or missing references) //IL_322b: Unknown result type (might be due to invalid IL or missing references) //IL_3231: Unknown result type (might be due to invalid IL or missing references) //IL_323b: Unknown result type (might be due to invalid IL or missing references) //IL_3240: Unknown result type (might be due to invalid IL or missing references) //IL_3246: Unknown result type (might be due to invalid IL or missing references) //IL_3250: Unknown result type (might be due to invalid IL or missing references) //IL_3256: Unknown result type (might be due to invalid IL or missing references) //IL_325b: Unknown result type (might be due to invalid IL or missing references) //IL_3261: Unknown result type (might be due to invalid IL or missing references) //IL_3266: Unknown result type (might be due to invalid IL or missing references) //IL_326b: Unknown result type (might be due to invalid IL or missing references) //IL_3277: Unknown result type (might be due to invalid IL or missing references) //IL_24bb: Unknown result type (might be due to invalid IL or missing references) //IL_24c1: Unknown result type (might be due to invalid IL or missing references) //IL_24c6: Unknown result type (might be due to invalid IL or missing references) //IL_24cc: Unknown result type (might be due to invalid IL or missing references) //IL_24d1: Unknown result type (might be due to invalid IL or missing references) //IL_24d7: Unknown result type (might be due to invalid IL or missing references) //IL_24e1: Unknown result type (might be due to invalid IL or missing references) //IL_24e6: Unknown result type (might be due to invalid IL or missing references) //IL_24ec: Unknown result type (might be due to invalid IL or missing references) //IL_24f6: Unknown result type (might be due to invalid IL or missing references) //IL_24fc: Unknown result type (might be due to invalid IL or missing references) //IL_2501: Unknown result type (might be due to invalid IL or missing references) //IL_2507: Unknown result type (might be due to invalid IL or missing references) //IL_250c: Unknown result type (might be due to invalid IL or missing references) //IL_2511: Unknown result type (might be due to invalid IL or missing references) //IL_2517: Unknown result type (might be due to invalid IL or missing references) //IL_2521: Unknown result type (might be due to invalid IL or missing references) //IL_2526: Unknown result type (might be due to invalid IL or missing references) //IL_2531: Unknown result type (might be due to invalid IL or missing references) //IL_2537: Unknown result type (might be due to invalid IL or missing references) //IL_253c: Unknown result type (might be due to invalid IL or missing references) //IL_2542: Unknown result type (might be due to invalid IL or missing references) //IL_2547: Unknown result type (might be due to invalid IL or missing references) //IL_254d: Unknown result type (might be due to invalid IL or missing references) //IL_2557: Unknown result type (might be due to invalid IL or missing references) //IL_255c: Unknown result type (might be due to invalid IL or missing references) //IL_2562: Unknown result type (might be due to invalid IL or missing references) //IL_256c: Unknown result type (might be due to invalid IL or missing references) //IL_2572: Unknown result type (might be due to invalid IL or missing references) //IL_2577: Unknown result type (might be due to invalid IL or missing references) //IL_257d: Unknown result type (might be due to invalid IL or missing references) //IL_2582: Unknown result type (might be due to invalid IL or missing references) //IL_2587: Unknown result type (might be due to invalid IL or missing references) //IL_258d: Unknown result type (might be due to invalid IL or missing references) //IL_2597: Unknown result type (might be due to invalid IL or missing references) //IL_259c: Unknown result type (might be due to invalid IL or missing references) //IL_25a8: Unknown result type (might be due to invalid IL or missing references) //IL_2407: Unknown result type (might be due to invalid IL or missing references) //IL_240c: Unknown result type (might be due to invalid IL or missing references) //IL_2286: Unknown result type (might be due to invalid IL or missing references) //IL_228b: Unknown result type (might be due to invalid IL or missing references) //IL_229a: Unknown result type (might be due to invalid IL or missing references) //IL_229f: Unknown result type (might be due to invalid IL or missing references) //IL_22bb: Unknown result type (might be due to invalid IL or missing references) //IL_22c0: Unknown result type (might be due to invalid IL or missing references) //IL_22c9: Unknown result type (might be due to invalid IL or missing references) //IL_22d4: Unknown result type (might be due to invalid IL or missing references) //IL_22e5: Unknown result type (might be due to invalid IL or missing references) //IL_22ea: Unknown result type (might be due to invalid IL or missing references) //IL_22ef: Unknown result type (might be due to invalid IL or missing references) //IL_17ec: Unknown result type (might be due to invalid IL or missing references) //IL_17f2: Unknown result type (might be due to invalid IL or missing references) //IL_17f7: Unknown result type (might be due to invalid IL or missing references) //IL_17fd: Unknown result type (might be due to invalid IL or missing references) //IL_1802: Unknown result type (might be due to invalid IL or missing references) //IL_1808: Unknown result type (might be due to invalid IL or missing references) //IL_1812: Unknown result type (might be due to invalid IL or missing references) //IL_1817: Unknown result type (might be due to invalid IL or missing references) //IL_181d: Unknown result type (might be due to invalid IL or missing references) //IL_1827: Unknown result type (might be due to invalid IL or missing references) //IL_182d: Unknown result type (might be due to invalid IL or missing references) //IL_1832: Unknown result type (might be due to invalid IL or missing references) //IL_1838: Unknown result type (might be due to invalid IL or missing references) //IL_183d: Unknown result type (might be due to invalid IL or missing references) //IL_1842: Unknown result type (might be due to invalid IL or missing references) //IL_1848: Unknown result type (might be due to invalid IL or missing references) //IL_1852: Unknown result type (might be due to invalid IL or missing references) //IL_1857: Unknown result type (might be due to invalid IL or missing references) //IL_1862: Unknown result type (might be due to invalid IL or missing references) //IL_1868: Unknown result type (might be due to invalid IL or missing references) //IL_186d: Unknown result type (might be due to invalid IL or missing references) //IL_1873: Unknown result type (might be due to invalid IL or missing references) //IL_1878: Unknown result type (might be due to invalid IL or missing references) //IL_187e: Unknown result type (might be due to invalid IL or missing references) //IL_1888: Unknown result type (might be due to invalid IL or missing references) //IL_188d: Unknown result type (might be due to invalid IL or missing references) //IL_1893: Unknown result type (might be due to invalid IL or missing references) //IL_189d: Unknown result type (might be due to invalid IL or missing references) //IL_18a3: Unknown result type (might be due to invalid IL or missing references) //IL_18a8: Unknown result type (might be due to invalid IL or missing references) //IL_18ae: Unknown result type (might be due to invalid IL or missing references) //IL_18b3: Unknown result type (might be due to invalid IL or missing references) //IL_18b8: Unknown result type (might be due to invalid IL or missing references) //IL_18be: Unknown result type (might be due to invalid IL or missing references) //IL_18c8: Unknown result type (might be due to invalid IL or missing references) //IL_18cd: Unknown result type (might be due to invalid IL or missing references) //IL_18d9: Unknown result type (might be due to invalid IL or missing references) //IL_1738: Unknown result type (might be due to invalid IL or missing references) //IL_173d: Unknown result type (might be due to invalid IL or missing references) //IL_15b7: Unknown result type (might be due to invalid IL or missing references) //IL_15bc: Unknown result type (might be due to invalid IL or missing references) //IL_15cb: Unknown result type (might be due to invalid IL or missing references) //IL_15d0: Unknown result type (might be due to invalid IL or missing references) //IL_15ec: Unknown result type (might be due to invalid IL or missing references) //IL_15f1: Unknown result type (might be due to invalid IL or missing references) //IL_15fa: Unknown result type (might be due to invalid IL or missing references) //IL_1605: Unknown result type (might be due to invalid IL or missing references) //IL_1616: Unknown result type (might be due to invalid IL or missing references) //IL_161b: Unknown result type (might be due to invalid IL or missing references) //IL_1620: Unknown result type (might be due to invalid IL or missing references) //IL_3345: Unknown result type (might be due to invalid IL or missing references) //IL_334b: Unknown result type (might be due to invalid IL or missing references) //IL_3350: Unknown result type (might be due to invalid IL or missing references) //IL_3356: Unknown result type (might be due to invalid IL or missing references) //IL_335b: Unknown result type (might be due to invalid IL or missing references) //IL_3361: Unknown result type (might be due to invalid IL or missing references) //IL_336b: Unknown result type (might be due to invalid IL or missing references) //IL_3370: Unknown result type (might be due to invalid IL or missing references) //IL_3376: Unknown result type (might be due to invalid IL or missing references) //IL_3380: Unknown result type (might be due to invalid IL or missing references) //IL_3386: Unknown result type (might be due to invalid IL or missing references) //IL_338b: Unknown result type (might be due to invalid IL or missing references) //IL_3391: Unknown result type (might be due to invalid IL or missing references) //IL_3396: Unknown result type (might be due to invalid IL or missing references) //IL_339b: Unknown result type (might be due to invalid IL or missing references) //IL_33a1: Unknown result type (might be due to invalid IL or missing references) //IL_33ab: Unknown result type (might be due to invalid IL or missing references) //IL_33b0: Unknown result type (might be due to invalid IL or missing references) //IL_33bb: Unknown result type (might be due to invalid IL or missing references) //IL_33c1: Unknown result type (might be due to invalid IL or missing references) //IL_33c6: Unknown result type (might be due to invalid IL or missing references) //IL_33cc: Unknown result type (might be due to invalid IL or missing references) //IL_33d1: Unknown result type (might be due to invalid IL or missing references) //IL_33d7: Unknown result type (might be due to invalid IL or missing references) //IL_33e1: Unknown result type (might be due to invalid IL or missing references) //IL_33e6: Unknown result type (might be due to invalid IL or missing references) //IL_33ec: Unknown result type (might be due to invalid IL or missing references) //IL_33f6: Unknown result type (might be due to invalid IL or missing references) //IL_33fc: Unknown result type (might be due to invalid IL or missing references) //IL_3401: Unknown result type (might be due to invalid IL or missing references) //IL_3407: Unknown result type (might be due to invalid IL or missing references) //IL_340c: Unknown result type (might be due to invalid IL or missing references) //IL_3411: Unknown result type (might be due to invalid IL or missing references) //IL_3417: Unknown result type (might be due to invalid IL or missing references) //IL_3421: Unknown result type (might be due to invalid IL or missing references) //IL_3426: Unknown result type (might be due to invalid IL or missing references) //IL_3432: Unknown result type (might be due to invalid IL or missing references) //IL_3291: Unknown result type (might be due to invalid IL or missing references) //IL_3296: Unknown result type (might be due to invalid IL or missing references) //IL_2676: Unknown result type (might be due to invalid IL or missing references) //IL_267c: Unknown result type (might be due to invalid IL or missing references) //IL_2681: Unknown result type (might be due to invalid IL or missing references) //IL_2687: Unknown result type (might be due to invalid IL or missing references) //IL_268c: Unknown result type (might be due to invalid IL or missing references) //IL_2692: Unknown result type (might be due to invalid IL or missing references) //IL_269c: Unknown result type (might be due to invalid IL or missing references) //IL_26a1: Unknown result type (might be due to invalid IL or missing references) //IL_26a7: Unknown result type (might be due to invalid IL or missing references) //IL_26b1: Unknown result type (might be due to invalid IL or missing references) //IL_26b7: Unknown result type (might be due to invalid IL or missing references) //IL_26bc: Unknown result type (might be due to invalid IL or missing references) //IL_26c2: Unknown result type (might be due to invalid IL or missing references) //IL_26c7: Unknown result type (might be due to invalid IL or missing references) //IL_26cc: Unknown result type (might be due to invalid IL or missing references) //IL_26d2: Unknown result type (might be due to invalid IL or missing references) //IL_26dc: Unknown result type (might be due to invalid IL or missing references) //IL_26e1: Unknown result type (might be due to invalid IL or missing references) //IL_26ec: Unknown result type (might be due to invalid IL or missing references) //IL_26f2: Unknown result type (might be due to invalid IL or missing references) //IL_26f7: Unknown result type (might be due to invalid IL or missing references) //IL_26fd: Unknown result type (might be due to invalid IL or missing references) //IL_2702: Unknown result type (might be due to invalid IL or missing references) //IL_2708: Unknown result type (might be due to invalid IL or missing references) //IL_2712: Unknown result type (might be due to invalid IL or missing references) //IL_2717: Unknown result type (might be due to invalid IL or missing references) //IL_271d: Unknown result type (might be due to invalid IL or missing references) //IL_2727: Unknown result type (might be due to invalid IL or missing references) //IL_272d: Unknown result type (might be due to invalid IL or missing references) //IL_2732: Unknown result type (might be due to invalid IL or missing references) //IL_2738: Unknown result type (might be due to invalid IL or missing references) //IL_273d: Unknown result type (might be due to invalid IL or missing references) //IL_2742: Unknown result type (might be due to invalid IL or missing references) //IL_2748: Unknown result type (might be due to invalid IL or missing references) //IL_2752: Unknown result type (might be due to invalid IL or missing references) //IL_2757: Unknown result type (might be due to invalid IL or missing references) //IL_2763: Unknown result type (might be due to invalid IL or missing references) //IL_25c2: Unknown result type (might be due to invalid IL or missing references) //IL_25c7: Unknown result type (might be due to invalid IL or missing references) //IL_2441: Unknown result type (might be due to invalid IL or missing references) //IL_2446: Unknown result type (might be due to invalid IL or missing references) //IL_2455: Unknown result type (might be due to invalid IL or missing references) //IL_245a: Unknown result type (might be due to invalid IL or missing references) //IL_2476: Unknown result type (might be due to invalid IL or missing references) //IL_247b: Unknown result type (might be due to invalid IL or missing references) //IL_2484: Unknown result type (might be due to invalid IL or missing references) //IL_248f: Unknown result type (might be due to invalid IL or missing references) //IL_24a0: Unknown result type (might be due to invalid IL or missing references) //IL_24a5: Unknown result type (might be due to invalid IL or missing references) //IL_24aa: Unknown result type (might be due to invalid IL or missing references) //IL_19a7: Unknown result type (might be due to invalid IL or missing references) //IL_19ad: Unknown result type (might be due to invalid IL or missing references) //IL_19b2: Unknown result type (might be due to invalid IL or missing references) //IL_19b8: Unknown result type (might be due to invalid IL or missing references) //IL_19bd: Unknown result type (might be due to invalid IL or missing references) //IL_19c3: Unknown result type (might be due to invalid IL or missing references) //IL_19cd: Unknown result type (might be due to invalid IL or missing references) //IL_19d2: Unknown result type (might be due to invalid IL or missing references) //IL_19d8: Unknown result type (might be due to invalid IL or missing references) //IL_19e2: Unknown result type (might be due to invalid IL or missing references) //IL_19e8: Unknown result type (might be due to invalid IL or missing references) //IL_19ed: Unknown result type (might be due to invalid IL or missing references) //IL_19f3: Unknown result type (might be due to invalid IL or missing references) //IL_19f8: Unknown result type (might be due to invalid IL or missing references) //IL_19fd: Unknown result type (might be due to invalid IL or missing references) //IL_1a03: Unknown result type (might be due to invalid IL or missing references) //IL_1a0d: Unknown result type (might be due to invalid IL or missing references) //IL_1a12: Unknown result type (might be due to invalid IL or missing references) //IL_1a1d: Unknown result type (might be due to invalid IL or missing references) //IL_1a23: Unknown result type (might be due to invalid IL or missing references) //IL_1a28: Unknown result type (might be due to invalid IL or missing references) //IL_1a2e: Unknown result type (might be due to invalid IL or missing references) //IL_1a33: Unknown result type (might be due to invalid IL or missing references) //IL_1a39: Unknown result type (might be due to invalid IL or missing references) //IL_1a43: Unknown result type (might be due to invalid IL or missing references) //IL_1a48: Unknown result type (might be due to invalid IL or missing references) //IL_1a4e: Unknown result type (might be due to invalid IL or missing references) //IL_1a58: Unknown result type (might be due to invalid IL or missing references) //IL_1a5e: Unknown result type (might be due to invalid IL or missing references) //IL_1a63: Unknown result type (might be due to invalid IL or missing references) //IL_1a69: Unknown result type (might be due to invalid IL or missing references) //IL_1a6e: Unknown result type (might be due to invalid IL or missing references) //IL_1a73: Unknown result type (might be due to invalid IL or missing references) //IL_1a79: Unknown result type (might be due to invalid IL or missing references) //IL_1a83: Unknown result type (might be due to invalid IL or missing references) //IL_1a88: Unknown result type (might be due to invalid IL or missing references) //IL_1a94: Unknown result type (might be due to invalid IL or missing references) //IL_18f3: Unknown result type (might be due to invalid IL or missing references) //IL_18f8: Unknown result type (might be due to invalid IL or missing references) //IL_1772: Unknown result type (might be due to invalid IL or missing references) //IL_1777: Unknown result type (might be due to invalid IL or missing references) //IL_1786: Unknown result type (might be due to invalid IL or missing references) //IL_178b: Unknown result type (might be due to invalid IL or missing references) //IL_17a7: Unknown result type (might be due to invalid IL or missing references) //IL_17ac: Unknown result type (might be due to invalid IL or missing references) //IL_17b5: Unknown result type (might be due to invalid IL or missing references) //IL_17c0: Unknown result type (might be due to invalid IL or missing references) //IL_17d1: Unknown result type (might be due to invalid IL or missing references) //IL_17d6: Unknown result type (might be due to invalid IL or missing references) //IL_17db: Unknown result type (might be due to invalid IL or missing references) //IL_3500: Unknown result type (might be due to invalid IL or missing references) //IL_3506: Unknown result type (might be due to invalid IL or missing references) //IL_350b: Unknown result type (might be due to invalid IL or missing references) //IL_3511: Unknown result type (might be due to invalid IL or missing references) //IL_3516: Unknown result type (might be due to invalid IL or missing references) //IL_351c: Unknown result type (might be due to invalid IL or missing references) //IL_3526: Unknown result type (might be due to invalid IL or missing references) //IL_352b: Unknown result type (might be due to invalid IL or missing references) //IL_3531: Unknown result type (might be due to invalid IL or missing references) //IL_353b: Unknown result type (might be due to invalid IL or missing references) //IL_3541: Unknown result type (might be due to invalid IL or missing references) //IL_3546: Unknown result type (might be due to invalid IL or missing references) //IL_354c: Unknown result type (might be due to invalid IL or missing references) //IL_3551: Unknown result type (might be due to invalid IL or missing references) //IL_3556: Unknown result type (might be due to invalid IL or missing references) //IL_355c: Unknown result type (might be due to invalid IL or missing references) //IL_3566: Unknown result type (might be due to invalid IL or missing references) //IL_356b: Unknown result type (might be due to invalid IL or missing references) //IL_3576: Unknown result type (might be due to invalid IL or missing references) //IL_357c: Unknown result type (might be due to invalid IL or missing references) //IL_3581: Unknown result type (might be due to invalid IL or missing references) //IL_3587: Unknown result type (might be due to invalid IL or missing references) //IL_358c: Unknown result type (might be due to invalid IL or missing references) //IL_3592: Unknown result type (might be due to invalid IL or missing references) //IL_359c: Unknown result type (might be due to invalid IL or missing references) //IL_35a1: Unknown result type (might be due to invalid IL or missing references) //IL_35a7: Unknown result type (might be due to invalid IL or missing references) //IL_35b1: Unknown result type (might be due to invalid IL or missing references) //IL_35b7: Unknown result type (might be due to invalid IL or missing references) //IL_35bc: Unknown result type (might be due to invalid IL or missing references) //IL_35c2: Unknown result type (might be due to invalid IL or missing references) //IL_35c7: Unknown result type (might be due to invalid IL or missing references) //IL_35cc: Unknown result type (might be due to invalid IL or missing references) //IL_35d2: Unknown result type (might be due to invalid IL or missing references) //IL_35dc: Unknown result type (might be due to invalid IL or missing references) //IL_35e1: Unknown result type (might be due to invalid IL or missing references) //IL_35ed: Unknown result type (might be due to invalid IL or missing references) //IL_344c: Unknown result type (might be due to invalid IL or missing references) //IL_3451: Unknown result type (might be due to invalid IL or missing references) //IL_32cb: Unknown result type (might be due to invalid IL or missing references) //IL_32d0: Unknown result type (might be due to invalid IL or missing references) //IL_32df: Unknown result type (might be due to invalid IL or missing references) //IL_32e4: Unknown result type (might be due to invalid IL or missing references) //IL_3300: Unknown result type (might be due to invalid IL or missing references) //IL_3305: Unknown result type (might be due to invalid IL or missing references) //IL_330e: Unknown result type (might be due to invalid IL or missing references) //IL_3319: Unknown result type (might be due to invalid IL or missing references) //IL_332a: Unknown result type (might be due to invalid IL or missing references) //IL_332f: Unknown result type (might be due to invalid IL or missing references) //IL_3334: Unknown result type (might be due to invalid IL or missing references) //IL_2831: Unknown result type (might be due to invalid IL or missing references) //IL_2837: Unknown result type (might be due to invalid IL or missing references) //IL_283c: Unknown result type (might be due to invalid IL or missing references) //IL_2842: Unknown result type (might be due to invalid IL or missing references) //IL_2847: Unknown result type (might be due to invalid IL or missing references) //IL_284d: Unknown result type (might be due to invalid IL or missing references) //IL_2857: Unknown result type (might be due to invalid IL or missing references) //IL_285c: Unknown result type (might be due to invalid IL or missing references) //IL_2862: Unknown result type (might be due to invalid IL or missing references) //IL_286c: Unknown result type (might be due to invalid IL or missing references) //IL_2872: Unknown result type (might be due to invalid IL or missing references) //IL_2877: Unknown result type (might be due to invalid IL or missing references) //IL_287d: Unknown result type (might be due to invalid IL or missing references) //IL_2882: Unknown result type (might be due to invalid IL or missing references) //IL_2887: Unknown result type (might be due to invalid IL or missing references) //IL_288d: Unknown result type (might be due to invalid IL or missing references) //IL_2897: Unknown result type (might be due to invalid IL or missing references) //IL_289c: Unknown result type (might be due to invalid IL or missing references) //IL_28a7: Unknown result type (might be due to invalid IL or missing references) //IL_28ad: Unknown result type (might be due to invalid IL or missing references) //IL_28b2: Unknown result type (might be due to invalid IL or missing references) //IL_28b8: Unknown result type (might be due to invalid IL or missing references) //IL_28bd: Unknown result type (might be due to invalid IL or missing references) //IL_28c3: Unknown result type (might be due to invalid IL or missing references) //IL_28cd: Unknown result type (might be due to invalid IL or missing references) //IL_28d2: Unknown result type (might be due to invalid IL or missing references) //IL_28d8: Unknown result type (might be due to invalid IL or missing references) //IL_28e2: Unknown result type (might be due to invalid IL or missing references) //IL_28e8: Unknown result type (might be due to invalid IL or missing references) //IL_28ed: Unknown result type (might be due to invalid IL or missing references) //IL_28f3: Unknown result type (might be due to invalid IL or missing references) //IL_28f8: Unknown result type (might be due to invalid IL or missing references) //IL_28fd: Unknown result type (might be due to invalid IL or missing references) //IL_2903: Unknown result type (might be due to invalid IL or missing references) //IL_290d: Unknown result type (might be due to invalid IL or missing references) //IL_2912: Unknown result type (might be due to invalid IL or missing references) //IL_291e: Unknown result type (might be due to invalid IL or missing references) //IL_277d: Unknown result type (might be due to invalid IL or missing references) //IL_2782: Unknown result type (might be due to invalid IL or missing references) //IL_25fc: Unknown result type (might be due to invalid IL or missing references) //IL_2601: Unknown result type (might be due to invalid IL or missing references) //IL_2610: Unknown result type (might be due to invalid IL or missing references) //IL_2615: Unknown result type (might be due to invalid IL or missing references) //IL_2631: Unknown result type (might be due to invalid IL or missing references) //IL_2636: Unknown result type (might be due to invalid IL or missing references) //IL_263f: Unknown result type (might be due to invalid IL or missing references) //IL_264a: Unknown result type (might be due to invalid IL or missing references) //IL_265b: Unknown result type (might be due to invalid IL or missing references) //IL_2660: Unknown result type (might be due to invalid IL or missing references) //IL_2665: Unknown result type (might be due to invalid IL or missing references) //IL_1b64: Unknown result type (might be due to invalid IL or missing references) //IL_1b69: Unknown result type (might be due to invalid IL or missing references) //IL_1b78: Unknown result type (might be due to invalid IL or missing references) //IL_1b7d: Unknown result type (might be due to invalid IL or missing references) //IL_1b94: Unknown result type (might be due to invalid IL or missing references) //IL_1b99: Unknown result type (might be due to invalid IL or missing references) //IL_1bb5: Unknown result type (might be due to invalid IL or missing references) //IL_1bba: Unknown result type (might be due to invalid IL or missing references) //IL_1bc9: Unknown result type (might be due to invalid IL or missing references) //IL_1bce: Unknown result type (might be due to invalid IL or missing references) //IL_1bdf: Unknown result type (might be due to invalid IL or missing references) //IL_1bea: Unknown result type (might be due to invalid IL or missing references) //IL_1bef: Unknown result type (might be due to invalid IL or missing references) //IL_1c18: Unknown result type (might be due to invalid IL or missing references) //IL_1c1d: Unknown result type (might be due to invalid IL or missing references) //IL_1c34: Unknown result type (might be due to invalid IL or missing references) //IL_1c39: Unknown result type (might be due to invalid IL or missing references) //IL_1c3e: Unknown result type (might be due to invalid IL or missing references) //IL_1aae: Unknown result type (might be due to invalid IL or missing references) //IL_1ab3: Unknown result type (might be due to invalid IL or missing references) //IL_192d: Unknown result type (might be due to invalid IL or missing references) //IL_1932: Unknown result type (might be due to invalid IL or missing references) //IL_1941: Unknown result type (might be due to invalid IL or missing references) //IL_1946: Unknown result type (might be due to invalid IL or missing references) //IL_1962: Unknown result type (might be due to invalid IL or missing references) //IL_1967: Unknown result type (might be due to invalid IL or missing references) //IL_1970: Unknown result type (might be due to invalid IL or missing references) //IL_197b: Unknown result type (might be due to invalid IL or missing references) //IL_198c: Unknown result type (might be due to invalid IL or missing references) //IL_1991: Unknown result type (might be due to invalid IL or missing references) //IL_1996: Unknown result type (might be due to invalid IL or missing references) //IL_36bb: Unknown result type (might be due to invalid IL or missing references) //IL_36c1: Unknown result type (might be due to invalid IL or missing references) //IL_36c6: Unknown result type (might be due to invalid IL or missing references) //IL_36cc: Unknown result type (might be due to invalid IL or missing references) //IL_36d1: Unknown result type (might be due to invalid IL or missing references) //IL_36d7: Unknown result type (might be due to invalid IL or missing references) //IL_36e1: Unknown result type (might be due to invalid IL or missing references) //IL_36e6: Unknown result type (might be due to invalid IL or missing references) //IL_36ec: Unknown result type (might be due to invalid IL or missing references) //IL_36f6: Unknown result type (might be due to invalid IL or missing references) //IL_36fc: Unknown result type (might be due to invalid IL or missing references) //IL_3701: Unknown result type (might be due to invalid IL or missing references) //IL_3707: Unknown result type (might be due to invalid IL or missing references) //IL_370c: Unknown result type (might be due to invalid IL or missing references) //IL_3711: Unknown result type (might be due to invalid IL or missing references) //IL_3717: Unknown result type (might be due to invalid IL or missing references) //IL_3721: Unknown result type (might be due to invalid IL or missing references) //IL_3726: Unknown result type (might be due to invalid IL or missing references) //IL_3731: Unknown result type (might be due to invalid IL or missing references) //IL_3737: Unknown result type (might be due to invalid IL or missing references) //IL_373c: Unknown result type (might be due to invalid IL or missing references) //IL_3742: Unknown result type (might be due to invalid IL or missing references) //IL_3747: Unknown result type (might be due to invalid IL or missing references) //IL_374d: Unknown result type (might be due to invalid IL or missing references) //IL_3757: Unknown result type (might be due to invalid IL or missing references) //IL_375c: Unknown result type (might be due to invalid IL or missing references) //IL_3762: Unknown result type (might be due to invalid IL or missing references) //IL_376c: Unknown result type (might be due to invalid IL or missing references) //IL_3772: Unknown result type (might be due to invalid IL or missing references) //IL_3777: Unknown result type (might be due to invalid IL or missing references) //IL_377d: Unknown result type (might be due to invalid IL or missing references) //IL_3782: Unknown result type (might be due to invalid IL or missing references) //IL_3787: Unknown result type (might be due to invalid IL or missing references) //IL_378d: Unknown result type (might be due to invalid IL or missing references) //IL_3797: Unknown result type (might be due to invalid IL or missing references) //IL_379c: Unknown result type (might be due to invalid IL or missing references) //IL_37a8: Unknown result type (might be due to invalid IL or missing references) //IL_3607: Unknown result type (might be due to invalid IL or missing references) //IL_360c: Unknown result type (might be due to invalid IL or missing references) //IL_3486: Unknown result type (might be due to invalid IL or missing references) //IL_348b: Unknown result type (might be due to invalid IL or missing references) //IL_349a: Unknown result type (might be due to invalid IL or missing references) //IL_349f: Unknown result type (might be due to invalid IL or missing references) //IL_34bb: Unknown result type (might be due to invalid IL or missing references) //IL_34c0: Unknown result type (might be due to invalid IL or missing references) //IL_34c9: Unknown result type (might be due to invalid IL or missing references) //IL_34d4: Unknown result type (might be due to invalid IL or missing references) //IL_34e5: Unknown result type (might be due to invalid IL or missing references) //IL_34ea: Unknown result type (might be due to invalid IL or missing references) //IL_34ef: Unknown result type (might be due to invalid IL or missing references) //IL_29ec: Unknown result type (might be due to invalid IL or missing references) //IL_29f2: Unknown result type (might be due to invalid IL or missing references) //IL_29f7: Unknown result type (might be due to invalid IL or missing references) //IL_29fd: Unknown result type (might be due to invalid IL or missing references) //IL_2a02: Unknown result type (might be due to invalid IL or missing references) //IL_2a08: Unknown result type (might be due to invalid IL or missing references) //IL_2a12: Unknown result type (might be due to invalid IL or missing references) //IL_2a17: Unknown result type (might be due to invalid IL or missing references) //IL_2a1d: Unknown result type (might be due to invalid IL or missing references) //IL_2a27: Unknown result type (might be due to invalid IL or missing references) //IL_2a2d: Unknown result type (might be due to invalid IL or missing references) //IL_2a32: Unknown result type (might be due to invalid IL or missing references) //IL_2a38: Unknown result type (might be due to invalid IL or missing references) //IL_2a3d: Unknown result type (might be due to invalid IL or missing references) //IL_2a42: Unknown result type (might be due to invalid IL or missing references) //IL_2a48: Unknown result type (might be due to invalid IL or missing references) //IL_2a52: Unknown result type (might be due to invalid IL or missing references) //IL_2a57: Unknown result type (might be due to invalid IL or missing references) //IL_2a62: Unknown result type (might be due to invalid IL or missing references) //IL_2a68: Unknown result type (might be due to invalid IL or missing references) //IL_2a6d: Unknown result type (might be due to invalid IL or missing references) //IL_2a73: Unknown result type (might be due to invalid IL or missing references) //IL_2a78: Unknown result type (might be due to invalid IL or missing references) //IL_2a7e: Unknown result type (might be due to invalid IL or missing references) //IL_2a88: Unknown result type (might be due to invalid IL or missing references) //IL_2a8d: Unknown result type (might be due to invalid IL or missing references) //IL_2a93: Unknown result type (might be due to invalid IL or missing references) //IL_2a9d: Unknown result type (might be due to invalid IL or missing references) //IL_2aa3: Unknown result type (might be due to invalid IL or missing references) //IL_2aa8: Unknown result type (might be due to invalid IL or missing references) //IL_2aae: Unknown result type (might be due to invalid IL or missing references) //IL_2ab3: Unknown result type (might be due to invalid IL or missing references) //IL_2ab8: Unknown result type (might be due to invalid IL or missing references) //IL_2abe: Unknown result type (might be due to invalid IL or missing references) //IL_2ac8: Unknown result type (might be due to invalid IL or missing references) //IL_2acd: Unknown result type (might be due to invalid IL or missing references) //IL_2ad9: Unknown result type (might be due to invalid IL or missing references) //IL_2938: Unknown result type (might be due to invalid IL or missing references) //IL_293d: Unknown result type (might be due to invalid IL or missing references) //IL_27b7: Unknown result type (might be due to invalid IL or missing references) //IL_27bc: Unknown result type (might be due to invalid IL or missing references) //IL_27cb: Unknown result type (might be due to invalid IL or missing references) //IL_27d0: Unknown result type (might be due to invalid IL or missing references) //IL_27ec: Unknown result type (might be due to invalid IL or missing references) //IL_27f1: Unknown result type (might be due to invalid IL or missing references) //IL_27fa: Unknown result type (might be due to invalid IL or missing references) //IL_2805: Unknown result type (might be due to invalid IL or missing references) //IL_2816: Unknown result type (might be due to invalid IL or missing references) //IL_281b: Unknown result type (might be due to invalid IL or missing references) //IL_2820: Unknown result type (might be due to invalid IL or missing references) //IL_1ae8: Unknown result type (might be due to invalid IL or missing references) //IL_1aed: Unknown result type (might be due to invalid IL or missing references) //IL_1afc: Unknown result type (might be due to invalid IL or missing references) //IL_1b01: Unknown result type (might be due to invalid IL or missing references) //IL_1b1d: Unknown result type (might be due to invalid IL or missing references) //IL_1b22: Unknown result type (might be due to invalid IL or missing references) //IL_1b2b: Unknown result type (might be due to invalid IL or missing references) //IL_1b36: Unknown result type (might be due to invalid IL or missing references) //IL_1b47: Unknown result type (might be due to invalid IL or missing references) //IL_1b4c: Unknown result type (might be due to invalid IL or missing references) //IL_1b51: Unknown result type (might be due to invalid IL or missing references) //IL_3876: Unknown result type (might be due to invalid IL or missing references) //IL_387c: Unknown result type (might be due to invalid IL or missing references) //IL_3881: Unknown result type (might be due to invalid IL or missing references) //IL_3887: Unknown result type (might be due to invalid IL or missing references) //IL_388c: Unknown result type (might be due to invalid IL or missing references) //IL_3892: Unknown result type (might be due to invalid IL or missing references) //IL_389c: Unknown result type (might be due to invalid IL or missing references) //IL_38a1: Unknown result type (might be due to invalid IL or missing references) //IL_38a7: Unknown result type (might be due to invalid IL or missing references) //IL_38b1: Unknown result type (might be due to invalid IL or missing references) //IL_38b7: Unknown result type (might be due to invalid IL or missing references) //IL_38bc: Unknown result type (might be due to invalid IL or missing references) //IL_38c2: Unknown result type (might be due to invalid IL or missing references) //IL_38c7: Unknown result type (might be due to invalid IL or missing references) //IL_38cc: Unknown result type (might be due to invalid IL or missing references) //IL_38d2: Unknown result type (might be due to invalid IL or missing references) //IL_38dc: Unknown result type (might be due to invalid IL or missing references) //IL_38e1: Unknown result type (might be due to invalid IL or missing references) //IL_38ec: Unknown result type (might be due to invalid IL or missing references) //IL_38f2: Unknown result type (might be due to invalid IL or missing references) //IL_38f7: Unknown result type (might be due to invalid IL or missing references) //IL_38fd: Unknown result type (might be due to invalid IL or missing references) //IL_3902: Unknown result type (might be due to invalid IL or missing references) //IL_3908: Unknown result type (might be due to invalid IL or missing references) //IL_3912: Unknown result type (might be due to invalid IL or missing references) //IL_3917: Unknown result type (might be due to invalid IL or missing references) //IL_391d: Unknown result type (might be due to invalid IL or missing references) //IL_3927: Unknown result type (might be due to invalid IL or missing references) //IL_392d: Unknown result type (might be due to invalid IL or missing references) //IL_3932: Unknown result type (might be due to invalid IL or missing references) //IL_3938: Unknown result type (might be due to invalid IL or missing references) //IL_393d: Unknown result type (might be due to invalid IL or missing references) //IL_3942: Unknown result type (might be due to invalid IL or missing references) //IL_3948: Unknown result type (might be due to invalid IL or missing references) //IL_3952: Unknown result type (might be due to invalid IL or missing references) //IL_3957: Unknown result type (might be due to invalid IL or missing references) //IL_3963: Unknown result type (might be due to invalid IL or missing references) //IL_37c2: Unknown result type (might be due to invalid IL or missing references) //IL_37c7: Unknown result type (might be due to invalid IL or missing references) //IL_3641: Unknown result type (might be due to invalid IL or missing references) //IL_3646: Unknown result type (might be due to invalid IL or missing references) //IL_3655: Unknown result type (might be due to invalid IL or missing references) //IL_365a: Unknown result type (might be due to invalid IL or missing references) //IL_3676: Unknown result type (might be due to invalid IL or missing references) //IL_367b: Unknown result type (might be due to invalid IL or missing references) //IL_3684: Unknown result type (might be due to invalid IL or missing references) //IL_368f: Unknown result type (might be due to invalid IL or missing references) //IL_36a0: Unknown result type (might be due to invalid IL or missing references) //IL_36a5: Unknown result type (might be due to invalid IL or missing references) //IL_36aa: Unknown result type (might be due to invalid IL or missing references) //IL_2ba7: Unknown result type (might be due to invalid IL or missing references) //IL_2bad: Unknown result type (might be due to invalid IL or missing references) //IL_2bb2: Unknown result type (might be due to invalid IL or missing references) //IL_2bb8: Unknown result type (might be due to invalid IL or missing references) //IL_2bbd: Unknown result type (might be due to invalid IL or missing references) //IL_2bc3: Unknown result type (might be due to invalid IL or missing references) //IL_2bcd: Unknown result type (might be due to invalid IL or missing references) //IL_2bd2: Unknown result type (might be due to invalid IL or missing references) //IL_2bd8: Unknown result type (might be due to invalid IL or missing references) //IL_2be2: Unknown result type (might be due to invalid IL or missing references) //IL_2be8: Unknown result type (might be due to invalid IL or missing references) //IL_2bed: Unknown result type (might be due to invalid IL or missing references) //IL_2bf3: Unknown result type (might be due to invalid IL or missing references) //IL_2bf8: Unknown result type (might be due to invalid IL or missing references) //IL_2bfd: Unknown result type (might be due to invalid IL or missing references) //IL_2c03: Unknown result type (might be due to invalid IL or missing references) //IL_2c0d: Unknown result type (might be due to invalid IL or missing references) //IL_2c12: Unknown result type (might be due to invalid IL or missing references) //IL_2c1d: Unknown result type (might be due to invalid IL or missing references) //IL_2c23: Unknown result type (might be due to invalid IL or missing references) //IL_2c28: Unknown result type (might be due to invalid IL or missing references) //IL_2c2e: Unknown result type (might be due to invalid IL or missing references) //IL_2c33: Unknown result type (might be due to invalid IL or missing references) //IL_2c39: Unknown result type (might be due to invalid IL or missing references) //IL_2c43: Unknown result type (might be due to invalid IL or missing references) //IL_2c48: Unknown result type (might be due to invalid IL or missing references) //IL_2c4e: Unknown result type (might be due to invalid IL or missing references) //IL_2c58: Unknown result type (might be due to invalid IL or missing references) //IL_2c5e: Unknown result type (might be due to invalid IL or missing references) //IL_2c63: Unknown result type (might be due to invalid IL or missing references) //IL_2c69: Unknown result type (might be due to invalid IL or missing references) //IL_2c6e: Unknown result type (might be due to invalid IL or missing references) //IL_2c73: Unknown result type (might be due to invalid IL or missing references) //IL_2c79: Unknown result type (might be due to invalid IL or missing references) //IL_2c83: Unknown result type (might be due to invalid IL or missing references) //IL_2c88: Unknown result type (might be due to invalid IL or missing references) //IL_2c94: Unknown result type (might be due to invalid IL or missing references) //IL_2af3: Unknown result type (might be due to invalid IL or missing references) //IL_2af8: Unknown result type (might be due to invalid IL or missing references) //IL_2972: Unknown result type (might be due to invalid IL or missing references) //IL_2977: Unknown result type (might be due to invalid IL or missing references) //IL_2986: Unknown result type (might be due to invalid IL or missing references) //IL_298b: Unknown result type (might be due to invalid IL or missing references) //IL_29a7: Unknown result type (might be due to invalid IL or missing references) //IL_29ac: Unknown result type (might be due to invalid IL or missing references) //IL_29b5: Unknown result type (might be due to invalid IL or missing references) //IL_29c0: Unknown result type (might be due to invalid IL or missing references) //IL_29d1: Unknown result type (might be due to invalid IL or missing references) //IL_29d6: Unknown result type (might be due to invalid IL or missing references) //IL_29db: Unknown result type (might be due to invalid IL or missing references) //IL_3a31: Unknown result type (might be due to invalid IL or missing references) //IL_3a37: Unknown result type (might be due to invalid IL or missing references) //IL_3a3c: Unknown result type (might be due to invalid IL or missing references) //IL_3a42: Unknown result type (might be due to invalid IL or missing references) //IL_3a47: Unknown result type (might be due to invalid IL or missing references) //IL_3a4d: Unknown result type (might be due to invalid IL or missing references) //IL_3a57: Unknown result type (might be due to invalid IL or missing references) //IL_3a5c: Unknown result type (might be due to invalid IL or missing references) //IL_3a62: Unknown result type (might be due to invalid IL or missing references) //IL_3a6c: Unknown result type (might be due to invalid IL or missing references) //IL_3a72: Unknown result type (might be due to invalid IL or missing references) //IL_3a77: Unknown result type (might be due to invalid IL or missing references) //IL_3a7d: Unknown result type (might be due to invalid IL or missing references) //IL_3a82: Unknown result type (might be due to invalid IL or missing references) //IL_3a87: Unknown result type (might be due to invalid IL or missing references) //IL_3a8d: Unknown result type (might be due to invalid IL or missing references) //IL_3a97: Unknown result type (might be due to invalid IL or missing references) //IL_3a9c: Unknown result type (might be due to invalid IL or missing references) //IL_3aa7: Unknown result type (might be due to invalid IL or missing references) //IL_3aad: Unknown result type (might be due to invalid IL or missing references) //IL_3ab2: Unknown result type (might be due to invalid IL or missing references) //IL_3ab8: Unknown result type (might be due to invalid IL or missing references) //IL_3abd: Unknown result type (might be due to invalid IL or missing references) //IL_3ac3: Unknown result type (might be due to invalid IL or missing references) //IL_3acd: Unknown result type (might be due to invalid IL or missing references) //IL_3ad2: Unknown result type (might be due to invalid IL or missing references) //IL_3ad8: Unknown result type (might be due to invalid IL or missing references) //IL_3ae2: Unknown result type (might be due to invalid IL or missing references) //IL_3ae8: Unknown result type (might be due to invalid IL or missing references) //IL_3aed: Unknown result type (might be due to invalid IL or missing references) //IL_3af3: Unknown result type (might be due to invalid IL or missing references) //IL_3af8: Unknown result type (might be due to invalid IL or missing references) //IL_3afd: Unknown result type (might be due to invalid IL or missing references) //IL_3b03: Unknown result type (might be due to invalid IL or missing references) //IL_3b0d: Unknown result type (might be due to invalid IL or missing references) //IL_3b12: Unknown result type (might be due to invalid IL or missing references) //IL_3b1e: Unknown result type (might be due to invalid IL or missing references) //IL_397d: Unknown result type (might be due to invalid IL or missing references) //IL_3982: Unknown result type (might be due to invalid IL or missing references) //IL_37fc: Unknown result type (might be due to invalid IL or missing references) //IL_3801: Unknown result type (might be due to invalid IL or missing references) //IL_3810: Unknown result type (might be due to invalid IL or missing references) //IL_3815: Unknown result type (might be due to invalid IL or missing references) //IL_3831: Unknown result type (might be due to invalid IL or missing references) //IL_3836: Unknown result type (might be due to invalid IL or missing references) //IL_383f: Unknown result type (might be due to invalid IL or missing references) //IL_384a: Unknown result type (might be due to invalid IL or missing references) //IL_385b: Unknown result type (might be due to invalid IL or missing references) //IL_3860: Unknown result type (might be due to invalid IL or missing references) //IL_3865: Unknown result type (might be due to invalid IL or missing references) //IL_2d64: Unknown result type (might be due to invalid IL or missing references) //IL_2d69: Unknown result type (might be due to invalid IL or missing references) //IL_2d78: Unknown result type (might be due to invalid IL or missing references) //IL_2d7d: Unknown result type (might be due to invalid IL or missing references) //IL_2d94: Unknown result type (might be due to invalid IL or missing references) //IL_2d99: Unknown result type (might be due to invalid IL or missing references) //IL_2db5: Unknown result type (might be due to invalid IL or missing references) //IL_2dba: Unknown result type (might be due to invalid IL or missing references) //IL_2dc9: Unknown result type (might be due to invalid IL or missing references) //IL_2dce: Unknown result type (might be due to invalid IL or missing references) //IL_2ddf: Unknown result type (might be due to invalid IL or missing references) //IL_2dea: Unknown result type (might be due to invalid IL or missing references) //IL_2def: Unknown result type (might be due to invalid IL or missing references) //IL_2e18: Unknown result type (might be due to invalid IL or missing references) //IL_2e1d: Unknown result type (might be due to invalid IL or missing references) //IL_2e34: Unknown result type (might be due to invalid IL or missing references) //IL_2e39: Unknown result type (might be due to invalid IL or missing references) //IL_2e3e: Unknown result type (might be due to invalid IL or missing references) //IL_2cae: Unknown result type (might be due to invalid IL or missing references) //IL_2cb3: Unknown result type (might be due to invalid IL or missing references) //IL_2b2d: Unknown result type (might be due to invalid IL or missing references) //IL_2b32: Unknown result type (might be due to invalid IL or missing references) //IL_2b41: Unknown result type (might be due to invalid IL or missing references) //IL_2b46: Unknown result type (might be due to invalid IL or missing references) //IL_2b62: Unknown result type (might be due to invalid IL or missing references) //IL_2b67: Unknown result type (might be due to invalid IL or missing references) //IL_2b70: Unknown result type (might be due to invalid IL or missing references) //IL_2b7b: Unknown result type (might be due to invalid IL or missing references) //IL_2b8c: Unknown result type (might be due to invalid IL or missing references) //IL_2b91: Unknown result type (might be due to invalid IL or missing references) //IL_2b96: Unknown result type (might be due to invalid IL or missing references) //IL_3bec: Unknown result type (might be due to invalid IL or missing references) //IL_3bf2: Unknown result type (might be due to invalid IL or missing references) //IL_3bf7: Unknown result type (might be due to invalid IL or missing references) //IL_3bfd: Unknown result type (might be due to invalid IL or missing references) //IL_3c02: Unknown result type (might be due to invalid IL or missing references) //IL_3c08: Unknown result type (might be due to invalid IL or missing references) //IL_3c12: Unknown result type (might be due to invalid IL or missing references) //IL_3c17: Unknown result type (might be due to invalid IL or missing references) //IL_3c1d: Unknown result type (might be due to invalid IL or missing references) //IL_3c27: Unknown result type (might be due to invalid IL or missing references) //IL_3c2d: Unknown result type (might be due to invalid IL or missing references) //IL_3c32: Unknown result type (might be due to invalid IL or missing references) //IL_3c38: Unknown result type (might be due to invalid IL or missing references) //IL_3c3d: Unknown result type (might be due to invalid IL or missing references) //IL_3c42: Unknown result type (might be due to invalid IL or missing references) //IL_3c48: Unknown result type (might be due to invalid IL or missing references) //IL_3c52: Unknown result type (might be due to invalid IL or missing references) //IL_3c57: Unknown result type (might be due to invalid IL or missing references) //IL_3c62: Unknown result type (might be due to invalid IL or missing references) //IL_3c68: Unknown result type (might be due to invalid IL or missing references) //IL_3c6d: Unknown result type (might be due to invalid IL or missing references) //IL_3c73: Unknown result type (might be due to invalid IL or missing references) //IL_3c78: Unknown result type (might be due to invalid IL or missing references) //IL_3c7e: Unknown result type (might be due to invalid IL or missing references) //IL_3c88: Unknown result type (might be due to invalid IL or missing references) //IL_3c8d: Unknown result type (might be due to invalid IL or missing references) //IL_3c93: Unknown result type (might be due to invalid IL or missing references) //IL_3c9d: Unknown result type (might be due to invalid IL or missing references) //IL_3ca3: Unknown result type (might be due to invalid IL or missing references) //IL_3ca8: Unknown result type (might be due to invalid IL or missing references) //IL_3cae: Unknown result type (might be due to invalid IL or missing references) //IL_3cb3: Unknown result type (might be due to invalid IL or missing references) //IL_3cb8: Unknown result type (might be due to invalid IL or missing references) //IL_3cbe: Unknown result type (might be due to invalid IL or missing references) //IL_3cc8: Unknown result type (might be due to invalid IL or missing references) //IL_3ccd: Unknown result type (might be due to invalid IL or missing references) //IL_3cd9: Unknown result type (might be due to invalid IL or missing references) //IL_3b38: Unknown result type (might be due to invalid IL or missing references) //IL_3b3d: Unknown result type (might be due to invalid IL or missing references) //IL_39b7: Unknown result type (might be due to invalid IL or missing references) //IL_39bc: Unknown result type (might be due to invalid IL or missing references) //IL_39cb: Unknown result type (might be due to invalid IL or missing references) //IL_39d0: Unknown result type (might be due to invalid IL or missing references) //IL_39ec: Unknown result type (might be due to invalid IL or missing references) //IL_39f1: Unknown result type (might be due to invalid IL or missing references) //IL_39fa: Unknown result type (might be due to invalid IL or missing references) //IL_3a05: Unknown result type (might be due to invalid IL or missing references) //IL_3a16: Unknown result type (might be due to invalid IL or missing references) //IL_3a1b: Unknown result type (might be due to invalid IL or missing references) //IL_3a20: Unknown result type (might be due to invalid IL or missing references) //IL_2ce8: Unknown result type (might be due to invalid IL or missing references) //IL_2ced: Unknown result type (might be due to invalid IL or missing references) //IL_2cfc: Unknown result type (might be due to invalid IL or missing references) //IL_2d01: Unknown result type (might be due to invalid IL or missing references) //IL_2d1d: Unknown result type (might be due to invalid IL or missing references) //IL_2d22: Unknown result type (might be due to invalid IL or missing references) //IL_2d2b: Unknown result type (might be due to invalid IL or missing references) //IL_2d36: Unknown result type (might be due to invalid IL or missing references) //IL_2d47: Unknown result type (might be due to invalid IL or missing references) //IL_2d4c: Unknown result type (might be due to invalid IL or missing references) //IL_2d51: Unknown result type (might be due to invalid IL or missing references) //IL_3da7: Unknown result type (might be due to invalid IL or missing references) //IL_3dad: Unknown result type (might be due to invalid IL or missing references) //IL_3db2: Unknown result type (might be due to invalid IL or missing references) //IL_3db8: Unknown result type (might be due to invalid IL or missing references) //IL_3dbd: Unknown result type (might be due to invalid IL or missing references) //IL_3dc3: Unknown result type (might be due to invalid IL or missing references) //IL_3dcd: Unknown result type (might be due to invalid IL or missing references) //IL_3dd2: Unknown result type (might be due to invalid IL or missing references) //IL_3dd8: Unknown result type (might be due to invalid IL or missing references) //IL_3de2: Unknown result type (might be due to invalid IL or missing references) //IL_3de8: Unknown result type (might be due to invalid IL or missing references) //IL_3ded: Unknown result type (might be due to invalid IL or missing references) //IL_3df3: Unknown result type (might be due to invalid IL or missing references) //IL_3df8: Unknown result type (might be due to invalid IL or missing references) //IL_3dfd: Unknown result type (might be due to invalid IL or missing references) //IL_3e03: Unknown result type (might be due to invalid IL or missing references) //IL_3e0d: Unknown result type (might be due to invalid IL or missing references) //IL_3e12: Unknown result type (might be due to invalid IL or missing references) //IL_3e1d: Unknown result type (might be due to invalid IL or missing references) //IL_3e23: Unknown result type (might be due to invalid IL or missing references) //IL_3e28: Unknown result type (might be due to invalid IL or missing references) //IL_3e2e: Unknown result type (might be due to invalid IL or missing references) //IL_3e33: Unknown result type (might be due to invalid IL or missing references) //IL_3e39: Unknown result type (might be due to invalid IL or missing references) //IL_3e43: Unknown result type (might be due to invalid IL or missing references) //IL_3e48: Unknown result type (might be due to invalid IL or missing references) //IL_3e4e: Unknown result type (might be due to invalid IL or missing references) //IL_3e58: Unknown result type (might be due to invalid IL or missing references) //IL_3e5e: Unknown result type (might be due to invalid IL or missing references) //IL_3e63: Unknown result type (might be due to invalid IL or missing references) //IL_3e69: Unknown result type (might be due to invalid IL or missing references) //IL_3e6e: Unknown result type (might be due to invalid IL or missing references) //IL_3e73: Unknown result type (might be due to invalid IL or missing references) //IL_3e79: Unknown result type (might be due to invalid IL or missing references) //IL_3e83: Unknown result type (might be due to invalid IL or missing references) //IL_3e88: Unknown result type (might be due to invalid IL or missing references) //IL_3e94: Unknown result type (might be due to invalid IL or missing references) //IL_3cf3: Unknown result type (might be due to invalid IL or missing references) //IL_3cf8: Unknown result type (might be due to invalid IL or missing references) //IL_3b72: Unknown result type (might be due to invalid IL or missing references) //IL_3b77: Unknown result type (might be due to invalid IL or missing references) //IL_3b86: Unknown result type (might be due to invalid IL or missing references) //IL_3b8b: Unknown result type (might be due to invalid IL or missing references) //IL_3ba7: Unknown result type (might be due to invalid IL or missing references) //IL_3bac: Unknown result type (might be due to invalid IL or missing references) //IL_3bb5: Unknown result type (might be due to invalid IL or missing references) //IL_3bc0: Unknown result type (might be due to invalid IL or missing references) //IL_3bd1: Unknown result type (might be due to invalid IL or missing references) //IL_3bd6: Unknown result type (might be due to invalid IL or missing references) //IL_3bdb: Unknown result type (might be due to invalid IL or missing references) //IL_3f64: Unknown result type (might be due to invalid IL or missing references) //IL_3f69: Unknown result type (might be due to invalid IL or missing references) //IL_3f78: Unknown result type (might be due to invalid IL or missing references) //IL_3f7d: Unknown result type (might be due to invalid IL or missing references) //IL_3f94: Unknown result type (might be due to invalid IL or missing references) //IL_3f99: Unknown result type (might be due to invalid IL or missing references) //IL_3fb5: Unknown result type (might be due to invalid IL or missing references) //IL_3fba: Unknown result type (might be due to invalid IL or missing references) //IL_3fc9: Unknown result type (might be due to invalid IL or missing references) //IL_3fce: Unknown result type (might be due to invalid IL or missing references) //IL_3fdf: Unknown result type (might be due to invalid IL or missing references) //IL_3fea: Unknown result type (might be due to invalid IL or missing references) //IL_3fef: Unknown result type (might be due to invalid IL or missing references) //IL_4018: Unknown result type (might be due to invalid IL or missing references) //IL_401d: Unknown result type (might be due to invalid IL or missing references) //IL_4034: Unknown result type (might be due to invalid IL or missing references) //IL_4039: Unknown result type (might be due to invalid IL or missing references) //IL_403e: Unknown result type (might be due to invalid IL or missing references) //IL_3eae: Unknown result type (might be due to invalid IL or missing references) //IL_3eb3: Unknown result type (might be due to invalid IL or missing references) //IL_3d2d: Unknown result type (might be due to invalid IL or missing references) //IL_3d32: Unknown result type (might be due to invalid IL or missing references) //IL_3d41: Unknown result type (might be due to invalid IL or missing references) //IL_3d46: Unknown result type (might be due to invalid IL or missing references) //IL_3d62: Unknown result type (might be due to invalid IL or missing references) //IL_3d67: Unknown result type (might be due to invalid IL or missing references) //IL_3d70: Unknown result type (might be due to invalid IL or missing references) //IL_3d7b: Unknown result type (might be due to invalid IL or missing references) //IL_3d8c: Unknown result type (might be due to invalid IL or missing references) //IL_3d91: Unknown result type (might be due to invalid IL or missing references) //IL_3d96: Unknown result type (might be due to invalid IL or missing references) //IL_3ee8: Unknown result type (might be due to invalid IL or missing references) //IL_3eed: Unknown result type (might be due to invalid IL or missing references) //IL_3efc: Unknown result type (might be due to invalid IL or missing references) //IL_3f01: Unknown result type (might be due to invalid IL or missing references) //IL_3f1d: Unknown result type (might be due to invalid IL or missing references) //IL_3f22: Unknown result type (might be due to invalid IL or missing references) //IL_3f2b: Unknown result type (might be due to invalid IL or missing references) //IL_3f36: Unknown result type (might be due to invalid IL or missing references) //IL_3f47: Unknown result type (might be due to invalid IL or missing references) //IL_3f4c: Unknown result type (might be due to invalid IL or missing references) //IL_3f51: Unknown result type (might be due to invalid IL or missing references) if (switching || !ledgeSwitchingDetectors.allowLedgeSwitching || !grabbedOn) { return; } if ((!Physics.Linecast(((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.8f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { l1SecondBackSurfaceDetectorsHit = true; } else { l1SecondBackSurfaceDetectorsHit = false; l1SecondBackHit = false; } if ((!Physics.Linecast(((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.8f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { l2SecondBackSurfaceDetectorsHit = true; } else { l2SecondBackSurfaceDetectorsHit = false; l2SecondBackHit = false; } if ((!Physics.Linecast(((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.8f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2f - surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { l3SecondBackSurfaceDetectorsHit = true; } else { l3SecondBackSurfaceDetectorsHit = false; l3SecondBackHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) { if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref switchHitPoint)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit) { l1SecondBackHit = true; if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2), ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l1SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l1SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l1SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l1SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l1SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l1SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l1SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + firstSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l1SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else { l1SecondBackHitPoint = new Vector3(((RaycastHit)(ref switchHitPoint)).point.x - ((Component)this).transform.forward.x * length2, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref switchHitPoint)).point.z - ((Component)this).transform.forward.x * length2) + new Vector3((0f - ((Component)this).transform.forward.x) * length2 / 10f, onLedgeHeight2 / 10f, (0f - ((Component)this).transform.forward.z) * length2 / 10f); } } else { l1SecondBackHit = false; } } else { l1SecondBackHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) { if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref switchHitPoint)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit) { l2SecondBackHit = true; if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2), ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l2SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l2SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l2SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l2SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l2SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l2SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l2SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + secondSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l2SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else { l2SecondBackHitPoint = new Vector3(((RaycastHit)(ref switchHitPoint)).point.x - ((Component)this).transform.forward.x * length2, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref switchHitPoint)).point.z - ((Component)this).transform.forward.x * length2) + new Vector3((0f - ((Component)this).transform.forward.x) * length2 / 10f, onLedgeHeight2 / 10f, (0f - ((Component)this).transform.forward.z) * length2 / 10f); } } else { l2SecondBackHit = false; } } else { l2SecondBackHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f - ledgeSwitchSurfaceLength / 1.75f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) { if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref switchHitPoint)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit) { l3SecondBackHit = true; if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2), ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l3SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l3SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l3SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l3SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l3SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l3SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l3SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f - (rightWidth * 2.67f + thirdSwitchSurfaceWidth - surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { l3SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else { l3SecondBackHitPoint = new Vector3(((RaycastHit)(ref switchHitPoint)).point.x - ((Component)this).transform.forward.x * length2, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref switchHitPoint)).point.z - ((Component)this).transform.forward.x * length2) + new Vector3((0f - ((Component)this).transform.forward.x) * length2 / 10f, onLedgeHeight2 / 10f, (0f - ((Component)this).transform.forward.z) * length2 / 10f); } } else { l3SecondBackHit = false; } } else { l3SecondBackHit = false; } } private void LedgeSwitchHitPointsThirdBackLeft() { //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_006a: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_0089: Unknown result type (might be due to invalid IL or missing references) //IL_008e: Unknown result type (might be due to invalid IL or missing references) //IL_0094: Unknown result type (might be due to invalid IL or missing references) //IL_0099: Unknown result type (might be due to invalid IL or missing references) //IL_009f: Unknown result type (might be due to invalid IL or missing references) //IL_00a4: Unknown result type (might be due to invalid IL or missing references) //IL_00af: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) //IL_00ba: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_00cb: Unknown result type (might be due to invalid IL or missing references) //IL_00d0: Unknown result type (might be due to invalid IL or missing references) //IL_00d6: Unknown result type (might be due to invalid IL or missing references) //IL_00e0: Unknown result type (might be due to invalid IL or missing references) //IL_00e5: Unknown result type (might be due to invalid IL or missing references) //IL_00eb: Unknown result type (might be due to invalid IL or missing references) //IL_00f5: Unknown result type (might be due to invalid IL or missing references) //IL_00fa: Unknown result type (might be due to invalid IL or missing references) //IL_0100: Unknown result type (might be due to invalid IL or missing references) //IL_010a: Unknown result type (might be due to invalid IL or missing references) //IL_010f: Unknown result type (might be due to invalid IL or missing references) //IL_0115: Unknown result type (might be due to invalid IL or missing references) //IL_011a: Unknown result type (might be due to invalid IL or missing references) //IL_0120: Unknown result type (might be due to invalid IL or missing references) //IL_0125: Unknown result type (might be due to invalid IL or missing references) //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_0268: Unknown result type (might be due to invalid IL or missing references) //IL_026e: Unknown result type (might be due to invalid IL or missing references) //IL_0273: Unknown result type (might be due to invalid IL or missing references) //IL_0279: Unknown result type (might be due to invalid IL or missing references) //IL_027e: Unknown result type (might be due to invalid IL or missing references) //IL_0284: Unknown result type (might be due to invalid IL or missing references) //IL_0289: Unknown result type (might be due to invalid IL or missing references) //IL_028f: Unknown result type (might be due to invalid IL or missing references) //IL_0299: Unknown result type (might be due to invalid IL or missing references) //IL_029e: Unknown result type (might be due to invalid IL or missing references) //IL_02a4: Unknown result type (might be due to invalid IL or missing references) //IL_02ae: Unknown result type (might be due to invalid IL or missing references) //IL_02b3: Unknown result type (might be due to invalid IL or missing references) //IL_02b9: Unknown result type (might be due to invalid IL or missing references) //IL_02c3: Unknown result type (might be due to invalid IL or missing references) //IL_02c8: Unknown result type (might be due to invalid IL or missing references) //IL_02ce: Unknown result type (might be due to invalid IL or missing references) //IL_02d3: Unknown result type (might be due to invalid IL or missing references) //IL_02d9: Unknown result type (might be due to invalid IL or missing references) //IL_02de: Unknown result type (might be due to invalid IL or missing references) //IL_02e9: Unknown result type (might be due to invalid IL or missing references) //IL_02ef: Unknown result type (might be due to invalid IL or missing references) //IL_02f4: Unknown result type (might be due to invalid IL or missing references) //IL_02fa: Unknown result type (might be due to invalid IL or missing references) //IL_02ff: Unknown result type (might be due to invalid IL or missing references) //IL_0305: Unknown result type (might be due to invalid IL or missing references) //IL_030a: Unknown result type (might be due to invalid IL or missing references) //IL_0310: Unknown result type (might be due to invalid IL or missing references) //IL_031a: Unknown result type (might be due to invalid IL or missing references) //IL_031f: Unknown result type (might be due to invalid IL or missing references) //IL_0325: Unknown result type (might be due to invalid IL or missing references) //IL_032f: Unknown result type (might be due to invalid IL or missing references) //IL_0334: Unknown result type (might be due to invalid IL or missing references) //IL_033a: Unknown result type (might be due to invalid IL or missing references) //IL_0344: Unknown result type (might be due to invalid IL or missing references) //IL_0349: Unknown result type (might be due to invalid IL or missing references) //IL_034f: Unknown result type (might be due to invalid IL or missing references) //IL_0354: Unknown result type (might be due to invalid IL or missing references) //IL_0360: Unknown result type (might be due to invalid IL or missing references) //IL_014b: Unknown result type (might be due to invalid IL or missing references) //IL_0151: Unknown result type (might be due to invalid IL or missing references) //IL_0156: Unknown result type (might be due to invalid IL or missing references) //IL_015c: Unknown result type (might be due to invalid IL or missing references) //IL_0161: Unknown result type (might be due to invalid IL or missing references) //IL_0167: Unknown result type (might be due to invalid IL or missing references) //IL_016c: Unknown result type (might be due to invalid IL or missing references) //IL_0172: Unknown result type (might be due to invalid IL or missing references) //IL_017c: Unknown result type (might be due to invalid IL or missing references) //IL_0181: Unknown result type (might be due to invalid IL or missing references) //IL_0187: Unknown result type (might be due to invalid IL or missing references) //IL_0191: Unknown result type (might be due to invalid IL or missing references) //IL_0196: Unknown result type (might be due to invalid IL or missing references) //IL_019c: Unknown result type (might be due to invalid IL or missing references) //IL_01a6: Unknown result type (might be due to invalid IL or missing references) //IL_01ab: Unknown result type (might be due to invalid IL or missing references) //IL_01b1: Unknown result type (might be due to invalid IL or missing references) //IL_01b6: Unknown result type (might be due to invalid IL or missing references) //IL_01bc: Unknown result type (might be due to invalid IL or missing references) //IL_01c1: Unknown result type (might be due to invalid IL or missing references) //IL_01cc: Unknown result type (might be due to invalid IL or missing references) //IL_01d2: Unknown result type (might be due to invalid IL or missing references) //IL_01d7: Unknown result type (might be due to invalid IL or missing references) //IL_01dd: Unknown result type (might be due to invalid IL or missing references) //IL_01e2: Unknown result type (might be due to invalid IL or missing references) //IL_01e8: Unknown result type (might be due to invalid IL or missing references) //IL_01ed: Unknown result type (might be due to invalid IL or missing references) //IL_01f3: Unknown result type (might be due to invalid IL or missing references) //IL_01fd: Unknown result type (might be due to invalid IL or missing references) //IL_0202: Unknown result type (might be due to invalid IL or missing references) //IL_0208: Unknown result type (might be due to invalid IL or missing references) //IL_020d: Unknown result type (might be due to invalid IL or missing references) //IL_0213: Unknown result type (might be due to invalid IL or missing references) //IL_021d: Unknown result type (might be due to invalid IL or missing references) //IL_0222: Unknown result type (might be due to invalid IL or missing references) //IL_0228: Unknown result type (might be due to invalid IL or missing references) //IL_0232: Unknown result type (might be due to invalid IL or missing references) //IL_0237: Unknown result type (might be due to invalid IL or missing references) //IL_023d: Unknown result type (might be due to invalid IL or missing references) //IL_0242: Unknown result type (might be due to invalid IL or missing references) //IL_024e: Unknown result type (might be due to invalid IL or missing references) //IL_0398: Unknown result type (might be due to invalid IL or missing references) //IL_039e: Unknown result type (might be due to invalid IL or missing references) //IL_03a3: Unknown result type (might be due to invalid IL or missing references) //IL_03a9: Unknown result type (might be due to invalid IL or missing references) //IL_03ae: Unknown result type (might be due to invalid IL or missing references) //IL_03b4: Unknown result type (might be due to invalid IL or missing references) //IL_03b9: Unknown result type (might be due to invalid IL or missing references) //IL_03bf: Unknown result type (might be due to invalid IL or missing references) //IL_03c9: Unknown result type (might be due to invalid IL or missing references) //IL_03ce: Unknown result type (might be due to invalid IL or missing references) //IL_03d4: Unknown result type (might be due to invalid IL or missing references) //IL_03de: Unknown result type (might be due to invalid IL or missing references) //IL_03e3: Unknown result type (might be due to invalid IL or missing references) //IL_03e9: Unknown result type (might be due to invalid IL or missing references) //IL_03f3: Unknown result type (might be due to invalid IL or missing references) //IL_03f8: Unknown result type (might be due to invalid IL or missing references) //IL_03fe: Unknown result type (might be due to invalid IL or missing references) //IL_0403: Unknown result type (might be due to invalid IL or missing references) //IL_0409: Unknown result type (might be due to invalid IL or missing references) //IL_040e: Unknown result type (might be due to invalid IL or missing references) //IL_0419: Unknown result type (might be due to invalid IL or missing references) //IL_041f: Unknown result type (might be due to invalid IL or missing references) //IL_0424: Unknown result type (might be due to invalid IL or missing references) //IL_042a: Unknown result type (might be due to invalid IL or missing references) //IL_042f: Unknown result type (might be due to invalid IL or missing references) //IL_0435: Unknown result type (might be due to invalid IL or missing references) //IL_043a: Unknown result type (might be due to invalid IL or missing references) //IL_0440: Unknown result type (might be due to invalid IL or missing references) //IL_044a: Unknown result type (might be due to invalid IL or missing references) //IL_044f: Unknown result type (might be due to invalid IL or missing references) //IL_0455: Unknown result type (might be due to invalid IL or missing references) //IL_045f: Unknown result type (might be due to invalid IL or missing references) //IL_0464: Unknown result type (might be due to invalid IL or missing references) //IL_046a: Unknown result type (might be due to invalid IL or missing references) //IL_0474: Unknown result type (might be due to invalid IL or missing references) //IL_0479: Unknown result type (might be due to invalid IL or missing references) //IL_047f: Unknown result type (might be due to invalid IL or missing references) //IL_0484: Unknown result type (might be due to invalid IL or missing references) //IL_048a: Unknown result type (might be due to invalid IL or missing references) //IL_048f: Unknown result type (might be due to invalid IL or missing references) //IL_049b: Unknown result type (might be due to invalid IL or missing references) //IL_05d2: Unknown result type (might be due to invalid IL or missing references) //IL_05d8: Unknown result type (might be due to invalid IL or missing references) //IL_05dd: Unknown result type (might be due to invalid IL or missing references) //IL_05e3: Unknown result type (might be due to invalid IL or missing references) //IL_05e8: Unknown result type (might be due to invalid IL or missing references) //IL_05ee: Unknown result type (might be due to invalid IL or missing references) //IL_05f3: Unknown result type (might be due to invalid IL or missing references) //IL_05f9: Unknown result type (might be due to invalid IL or missing references) //IL_0603: Unknown result type (might be due to invalid IL or missing references) //IL_0608: Unknown result type (might be due to invalid IL or missing references) //IL_060e: Unknown result type (might be due to invalid IL or missing references) //IL_0618: Unknown result type (might be due to invalid IL or missing references) //IL_061d: Unknown result type (might be due to invalid IL or missing references) //IL_0623: Unknown result type (might be due to invalid IL or missing references) //IL_062d: Unknown result type (might be due to invalid IL or missing references) //IL_0632: Unknown result type (might be due to invalid IL or missing references) //IL_0638: Unknown result type (might be due to invalid IL or missing references) //IL_063d: Unknown result type (might be due to invalid IL or missing references) //IL_0643: Unknown result type (might be due to invalid IL or missing references) //IL_0648: Unknown result type (might be due to invalid IL or missing references) //IL_0653: Unknown result type (might be due to invalid IL or missing references) //IL_0659: Unknown result type (might be due to invalid IL or missing references) //IL_065e: Unknown result type (might be due to invalid IL or missing references) //IL_0664: Unknown result type (might be due to invalid IL or missing references) //IL_0669: Unknown result type (might be due to invalid IL or missing references) //IL_066f: Unknown result type (might be due to invalid IL or missing references) //IL_0674: Unknown result type (might be due to invalid IL or missing references) //IL_067a: Unknown result type (might be due to invalid IL or missing references) //IL_0684: Unknown result type (might be due to invalid IL or missing references) //IL_0689: Unknown result type (might be due to invalid IL or missing references) //IL_068f: Unknown result type (might be due to invalid IL or missing references) //IL_0699: Unknown result type (might be due to invalid IL or missing references) //IL_069e: Unknown result type (might be due to invalid IL or missing references) //IL_06a4: Unknown result type (might be due to invalid IL or missing references) //IL_06ae: Unknown result type (might be due to invalid IL or missing references) //IL_06b3: Unknown result type (might be due to invalid IL or missing references) //IL_06b9: Unknown result type (might be due to invalid IL or missing references) //IL_06be: Unknown result type (might be due to invalid IL or missing references) //IL_06ca: Unknown result type (might be due to invalid IL or missing references) //IL_04b5: Unknown result type (might be due to invalid IL or missing references) //IL_04bb: Unknown result type (might be due to invalid IL or missing references) //IL_04c0: Unknown result type (might be due to invalid IL or missing references) //IL_04c6: Unknown result type (might be due to invalid IL or missing references) //IL_04cb: Unknown result type (might be due to invalid IL or missing references) //IL_04d1: Unknown result type (might be due to invalid IL or missing references) //IL_04d6: Unknown result type (might be due to invalid IL or missing references) //IL_04dc: Unknown result type (might be due to invalid IL or missing references) //IL_04e6: Unknown result type (might be due to invalid IL or missing references) //IL_04eb: Unknown result type (might be due to invalid IL or missing references) //IL_04f1: Unknown result type (might be due to invalid IL or missing references) //IL_04fb: Unknown result type (might be due to invalid IL or missing references) //IL_0500: Unknown result type (might be due to invalid IL or missing references) //IL_0506: Unknown result type (might be due to invalid IL or missing references) //IL_0510: Unknown result type (might be due to invalid IL or missing references) //IL_0515: Unknown result type (might be due to invalid IL or missing references) //IL_051b: Unknown result type (might be due to invalid IL or missing references) //IL_0520: Unknown result type (might be due to invalid IL or missing references) //IL_0526: Unknown result type (might be due to invalid IL or missing references) //IL_052b: Unknown result type (might be due to invalid IL or missing references) //IL_0536: Unknown result type (might be due to invalid IL or missing references) //IL_053c: Unknown result type (might be due to invalid IL or missing references) //IL_0541: Unknown result type (might be due to invalid IL or missing references) //IL_0547: Unknown result type (might be due to invalid IL or missing references) //IL_054c: Unknown result type (might be due to invalid IL or missing references) //IL_0552: Unknown result type (might be due to invalid IL or missing references) //IL_0557: Unknown result type (might be due to invalid IL or missing references) //IL_055d: Unknown result type (might be due to invalid IL or missing references) //IL_0567: Unknown result type (might be due to invalid IL or missing references) //IL_056c: Unknown result type (might be due to invalid IL or missing references) //IL_0572: Unknown result type (might be due to invalid IL or missing references) //IL_0577: Unknown result type (might be due to invalid IL or missing references) //IL_057d: Unknown result type (might be due to invalid IL or missing references) //IL_0587: Unknown result type (might be due to invalid IL or missing references) //IL_058c: Unknown result type (might be due to invalid IL or missing references) //IL_0592: Unknown result type (might be due to invalid IL or missing references) //IL_059c: Unknown result type (might be due to invalid IL or missing references) //IL_05a1: Unknown result type (might be due to invalid IL or missing references) //IL_05a7: Unknown result type (might be due to invalid IL or missing references) //IL_05ac: Unknown result type (might be due to invalid IL or missing references) //IL_05b8: Unknown result type (might be due to invalid IL or missing references) //IL_0702: Unknown result type (might be due to invalid IL or missing references) //IL_0708: Unknown result type (might be due to invalid IL or missing references) //IL_070d: Unknown result type (might be due to invalid IL or missing references) //IL_0713: Unknown result type (might be due to invalid IL or missing references) //IL_0718: Unknown result type (might be due to invalid IL or missing references) //IL_071e: Unknown result type (might be due to invalid IL or missing references) //IL_0723: Unknown result type (might be due to invalid IL or missing references) //IL_0729: Unknown result type (might be due to invalid IL or missing references) //IL_0733: Unknown result type (might be due to invalid IL or missing references) //IL_0738: Unknown result type (might be due to invalid IL or missing references) //IL_073e: Unknown result type (might be due to invalid IL or missing references) //IL_0748: Unknown result type (might be due to invalid IL or missing references) //IL_074d: Unknown result type (might be due to invalid IL or missing references) //IL_0753: Unknown result type (might be due to invalid IL or missing references) //IL_075d: Unknown result type (might be due to invalid IL or missing references) //IL_0762: Unknown result type (might be due to invalid IL or missing references) //IL_0768: Unknown result type (might be due to invalid IL or missing references) //IL_076d: Unknown result type (might be due to invalid IL or missing references) //IL_0773: Unknown result type (might be due to invalid IL or missing references) //IL_0778: Unknown result type (might be due to invalid IL or missing references) //IL_0783: Unknown result type (might be due to invalid IL or missing references) //IL_0789: Unknown result type (might be due to invalid IL or missing references) //IL_078e: Unknown result type (might be due to invalid IL or missing references) //IL_0794: Unknown result type (might be due to invalid IL or missing references) //IL_0799: Unknown result type (might be due to invalid IL or missing references) //IL_079f: Unknown result type (might be due to invalid IL or missing references) //IL_07a4: Unknown result type (might be due to invalid IL or missing references) //IL_07aa: Unknown result type (might be due to invalid IL or missing references) //IL_07b4: Unknown result type (might be due to invalid IL or missing references) //IL_07b9: Unknown result type (might be due to invalid IL or missing references) //IL_07bf: Unknown result type (might be due to invalid IL or missing references) //IL_07c9: Unknown result type (might be due to invalid IL or missing references) //IL_07ce: Unknown result type (might be due to invalid IL or missing references) //IL_07d4: Unknown result type (might be due to invalid IL or missing references) //IL_07de: Unknown result type (might be due to invalid IL or missing references) //IL_07e3: Unknown result type (might be due to invalid IL or missing references) //IL_07e9: Unknown result type (might be due to invalid IL or missing references) //IL_07ee: Unknown result type (might be due to invalid IL or missing references) //IL_07f4: Unknown result type (might be due to invalid IL or missing references) //IL_07f9: Unknown result type (might be due to invalid IL or missing references) //IL_0805: Unknown result type (might be due to invalid IL or missing references) //IL_093c: Unknown result type (might be due to invalid IL or missing references) //IL_0942: Unknown result type (might be due to invalid IL or missing references) //IL_0947: Unknown result type (might be due to invalid IL or missing references) //IL_094d: Unknown result type (might be due to invalid IL or missing references) //IL_0952: Unknown result type (might be due to invalid IL or missing references) //IL_0958: Unknown result type (might be due to invalid IL or missing references) //IL_095d: Unknown result type (might be due to invalid IL or missing references) //IL_0963: Unknown result type (might be due to invalid IL or missing references) //IL_096d: Unknown result type (might be due to invalid IL or missing references) //IL_0972: Unknown result type (might be due to invalid IL or missing references) //IL_0978: Unknown result type (might be due to invalid IL or missing references) //IL_0982: Unknown result type (might be due to invalid IL or missing references) //IL_0987: Unknown result type (might be due to invalid IL or missing references) //IL_098d: Unknown result type (might be due to invalid IL or missing references) //IL_0997: Unknown result type (might be due to invalid IL or missing references) //IL_099c: Unknown result type (might be due to invalid IL or missing references) //IL_09a2: Unknown result type (might be due to invalid IL or missing references) //IL_09a7: Unknown result type (might be due to invalid IL or missing references) //IL_09ad: Unknown result type (might be due to invalid IL or missing references) //IL_09b2: Unknown result type (might be due to invalid IL or missing references) //IL_09bd: Unknown result type (might be due to invalid IL or missing references) //IL_09c3: Unknown result type (might be due to invalid IL or missing references) //IL_09c8: Unknown result type (might be due to invalid IL or missing references) //IL_09ce: Unknown result type (might be due to invalid IL or missing references) //IL_09d3: Unknown result type (might be due to invalid IL or missing references) //IL_09d9: Unknown result type (might be due to invalid IL or missing references) //IL_09de: Unknown result type (might be due to invalid IL or missing references) //IL_09e4: Unknown result type (might be due to invalid IL or missing references) //IL_09ee: Unknown result type (might be due to invalid IL or missing references) //IL_09f3: Unknown result type (might be due to invalid IL or missing references) //IL_09f9: Unknown result type (might be due to invalid IL or missing references) //IL_0a03: Unknown result type (might be due to invalid IL or missing references) //IL_0a08: Unknown result type (might be due to invalid IL or missing references) //IL_0a0e: Unknown result type (might be due to invalid IL or missing references) //IL_0a18: Unknown result type (might be due to invalid IL or missing references) //IL_0a1d: Unknown result type (might be due to invalid IL or missing references) //IL_0a23: Unknown result type (might be due to invalid IL or missing references) //IL_0a28: Unknown result type (might be due to invalid IL or missing references) //IL_0a34: Unknown result type (might be due to invalid IL or missing references) //IL_081f: Unknown result type (might be due to invalid IL or missing references) //IL_0825: Unknown result type (might be due to invalid IL or missing references) //IL_082a: Unknown result type (might be due to invalid IL or missing references) //IL_0830: Unknown result type (might be due to invalid IL or missing references) //IL_0835: Unknown result type (might be due to invalid IL or missing references) //IL_083b: Unknown result type (might be due to invalid IL or missing references) //IL_0840: Unknown result type (might be due to invalid IL or missing references) //IL_0846: Unknown result type (might be due to invalid IL or missing references) //IL_0850: Unknown result type (might be due to invalid IL or missing references) //IL_0855: Unknown result type (might be due to invalid IL or missing references) //IL_085b: Unknown result type (might be due to invalid IL or missing references) //IL_0865: Unknown result type (might be due to invalid IL or missing references) //IL_086a: Unknown result type (might be due to invalid IL or missing references) //IL_0870: Unknown result type (might be due to invalid IL or missing references) //IL_087a: Unknown result type (might be due to invalid IL or missing references) //IL_087f: Unknown result type (might be due to invalid IL or missing references) //IL_0885: Unknown result type (might be due to invalid IL or missing references) //IL_088a: Unknown result type (might be due to invalid IL or missing references) //IL_0890: Unknown result type (might be due to invalid IL or missing references) //IL_0895: Unknown result type (might be due to invalid IL or missing references) //IL_08a0: Unknown result type (might be due to invalid IL or missing references) //IL_08a6: Unknown result type (might be due to invalid IL or missing references) //IL_08ab: Unknown result type (might be due to invalid IL or missing references) //IL_08b1: Unknown result type (might be due to invalid IL or missing references) //IL_08b6: Unknown result type (might be due to invalid IL or missing references) //IL_08bc: Unknown result type (might be due to invalid IL or missing references) //IL_08c1: Unknown result type (might be due to invalid IL or missing references) //IL_08c7: Unknown result type (might be due to invalid IL or missing references) //IL_08d1: Unknown result type (might be due to invalid IL or missing references) //IL_08d6: Unknown result type (might be due to invalid IL or missing references) //IL_08dc: Unknown result type (might be due to invalid IL or missing references) //IL_08e1: Unknown result type (might be due to invalid IL or missing references) //IL_08e7: Unknown result type (might be due to invalid IL or missing references) //IL_08f1: Unknown result type (might be due to invalid IL or missing references) //IL_08f6: Unknown result type (might be due to invalid IL or missing references) //IL_08fc: Unknown result type (might be due to invalid IL or missing references) //IL_0906: Unknown result type (might be due to invalid IL or missing references) //IL_090b: Unknown result type (might be due to invalid IL or missing references) //IL_0911: Unknown result type (might be due to invalid IL or missing references) //IL_0916: Unknown result type (might be due to invalid IL or missing references) //IL_0922: Unknown result type (might be due to invalid IL or missing references) //IL_0a6c: Unknown result type (might be due to invalid IL or missing references) //IL_0a72: Unknown result type (might be due to invalid IL or missing references) //IL_0a77: Unknown result type (might be due to invalid IL or missing references) //IL_0a7d: Unknown result type (might be due to invalid IL or missing references) //IL_0a87: Unknown result type (might be due to invalid IL or missing references) //IL_0a8c: Unknown result type (might be due to invalid IL or missing references) //IL_0a92: Unknown result type (might be due to invalid IL or missing references) //IL_0a9c: Unknown result type (might be due to invalid IL or missing references) //IL_0aa1: Unknown result type (might be due to invalid IL or missing references) //IL_0aa7: Unknown result type (might be due to invalid IL or missing references) //IL_0ab1: Unknown result type (might be due to invalid IL or missing references) //IL_0ab6: Unknown result type (might be due to invalid IL or missing references) //IL_0abc: Unknown result type (might be due to invalid IL or missing references) //IL_0ac1: Unknown result type (might be due to invalid IL or missing references) //IL_0ac7: Unknown result type (might be due to invalid IL or missing references) //IL_0acc: Unknown result type (might be due to invalid IL or missing references) //IL_0ad2: Unknown result type (might be due to invalid IL or missing references) //IL_0ad7: Unknown result type (might be due to invalid IL or missing references) //IL_0ae2: Unknown result type (might be due to invalid IL or missing references) //IL_0ae8: Unknown result type (might be due to invalid IL or missing references) //IL_0aed: Unknown result type (might be due to invalid IL or missing references) //IL_0af3: Unknown result type (might be due to invalid IL or missing references) //IL_0afd: Unknown result type (might be due to invalid IL or missing references) //IL_0b02: Unknown result type (might be due to invalid IL or missing references) //IL_0b08: Unknown result type (might be due to invalid IL or missing references) //IL_0b12: Unknown result type (might be due to invalid IL or missing references) //IL_0b17: Unknown result type (might be due to invalid IL or missing references) //IL_0b1d: Unknown result type (might be due to invalid IL or missing references) //IL_0b27: Unknown result type (might be due to invalid IL or missing references) //IL_0b2c: Unknown result type (might be due to invalid IL or missing references) //IL_0b32: Unknown result type (might be due to invalid IL or missing references) //IL_0b37: Unknown result type (might be due to invalid IL or missing references) //IL_0b3d: Unknown result type (might be due to invalid IL or missing references) //IL_0b42: Unknown result type (might be due to invalid IL or missing references) //IL_0b48: Unknown result type (might be due to invalid IL or missing references) //IL_0b4d: Unknown result type (might be due to invalid IL or missing references) //IL_0b59: Unknown result type (might be due to invalid IL or missing references) //IL_0c7a: Unknown result type (might be due to invalid IL or missing references) //IL_0c80: Unknown result type (might be due to invalid IL or missing references) //IL_0c85: Unknown result type (might be due to invalid IL or missing references) //IL_0c8b: Unknown result type (might be due to invalid IL or missing references) //IL_0c95: Unknown result type (might be due to invalid IL or missing references) //IL_0c9a: Unknown result type (might be due to invalid IL or missing references) //IL_0ca0: Unknown result type (might be due to invalid IL or missing references) //IL_0caa: Unknown result type (might be due to invalid IL or missing references) //IL_0caf: Unknown result type (might be due to invalid IL or missing references) //IL_0cb5: Unknown result type (might be due to invalid IL or missing references) //IL_0cbf: Unknown result type (might be due to invalid IL or missing references) //IL_0cc4: Unknown result type (might be due to invalid IL or missing references) //IL_0cca: Unknown result type (might be due to invalid IL or missing references) //IL_0ccf: Unknown result type (might be due to invalid IL or missing references) //IL_0cd5: Unknown result type (might be due to invalid IL or missing references) //IL_0cda: Unknown result type (might be due to invalid IL or missing references) //IL_0ce0: Unknown result type (might be due to invalid IL or missing references) //IL_0ce5: Unknown result type (might be due to invalid IL or missing references) //IL_0cf0: Unknown result type (might be due to invalid IL or missing references) //IL_0cf6: Unknown result type (might be due to invalid IL or missing references) //IL_0cfb: Unknown result type (might be due to invalid IL or missing references) //IL_0d01: Unknown result type (might be due to invalid IL or missing references) //IL_0d0b: Unknown result type (might be due to invalid IL or missing references) //IL_0d10: Unknown result type (might be due to invalid IL or missing references) //IL_0d16: Unknown result type (might be due to invalid IL or missing references) //IL_0d20: Unknown result type (might be due to invalid IL or missing references) //IL_0d25: Unknown result type (might be due to invalid IL or missing references) //IL_0d2b: Unknown result type (might be due to invalid IL or missing references) //IL_0d35: Unknown result type (might be due to invalid IL or missing references) //IL_0d3a: Unknown result type (might be due to invalid IL or missing references) //IL_0d40: Unknown result type (might be due to invalid IL or missing references) //IL_0d45: Unknown result type (might be due to invalid IL or missing references) //IL_0d4b: Unknown result type (might be due to invalid IL or missing references) //IL_0d50: Unknown result type (might be due to invalid IL or missing references) //IL_0d5c: Unknown result type (might be due to invalid IL or missing references) //IL_0b73: Unknown result type (might be due to invalid IL or missing references) //IL_0b79: Unknown result type (might be due to invalid IL or missing references) //IL_0b7e: Unknown result type (might be due to invalid IL or missing references) //IL_0b84: Unknown result type (might be due to invalid IL or missing references) //IL_0b8e: Unknown result type (might be due to invalid IL or missing references) //IL_0b93: Unknown result type (might be due to invalid IL or missing references) //IL_0b99: Unknown result type (might be due to invalid IL or missing references) //IL_0ba3: Unknown result type (might be due to invalid IL or missing references) //IL_0ba8: Unknown result type (might be due to invalid IL or missing references) //IL_0bae: Unknown result type (might be due to invalid IL or missing references) //IL_0bb8: Unknown result type (might be due to invalid IL or missing references) //IL_0bbd: Unknown result type (might be due to invalid IL or missing references) //IL_0bc3: Unknown result type (might be due to invalid IL or missing references) //IL_0bc8: Unknown result type (might be due to invalid IL or missing references) //IL_0bce: Unknown result type (might be due to invalid IL or missing references) //IL_0bd3: Unknown result type (might be due to invalid IL or missing references) //IL_0bd9: Unknown result type (might be due to invalid IL or missing references) //IL_0bde: Unknown result type (might be due to invalid IL or missing references) //IL_0be9: Unknown result type (might be due to invalid IL or missing references) //IL_0bef: Unknown result type (might be due to invalid IL or missing references) //IL_0bf4: Unknown result type (might be due to invalid IL or missing references) //IL_0bfa: Unknown result type (might be due to invalid IL or missing references) //IL_0c04: Unknown result type (might be due to invalid IL or missing references) //IL_0c09: Unknown result type (might be due to invalid IL or missing references) //IL_0c0f: Unknown result type (might be due to invalid IL or missing references) //IL_0c14: Unknown result type (might be due to invalid IL or missing references) //IL_0c1a: Unknown result type (might be due to invalid IL or missing references) //IL_0c24: Unknown result type (might be due to invalid IL or missing references) //IL_0c29: Unknown result type (might be due to invalid IL or missing references) //IL_0c2f: Unknown result type (might be due to invalid IL or missing references) //IL_0c39: Unknown result type (might be due to invalid IL or missing references) //IL_0c3e: Unknown result type (might be due to invalid IL or missing references) //IL_0c44: Unknown result type (might be due to invalid IL or missing references) //IL_0c49: Unknown result type (might be due to invalid IL or missing references) //IL_0c4f: Unknown result type (might be due to invalid IL or missing references) //IL_0c54: Unknown result type (might be due to invalid IL or missing references) //IL_0c60: Unknown result type (might be due to invalid IL or missing references) //IL_0d77: Unknown result type (might be due to invalid IL or missing references) //IL_0d7c: Unknown result type (might be due to invalid IL or missing references) //IL_0dd5: Unknown result type (might be due to invalid IL or missing references) //IL_0ddb: Unknown result type (might be due to invalid IL or missing references) //IL_0de0: Unknown result type (might be due to invalid IL or missing references) //IL_0de6: Unknown result type (might be due to invalid IL or missing references) //IL_0df0: Unknown result type (might be due to invalid IL or missing references) //IL_0df5: Unknown result type (might be due to invalid IL or missing references) //IL_0dfb: Unknown result type (might be due to invalid IL or missing references) //IL_0e05: Unknown result type (might be due to invalid IL or missing references) //IL_0e0a: Unknown result type (might be due to invalid IL or missing references) //IL_0e10: Unknown result type (might be due to invalid IL or missing references) //IL_0e1a: Unknown result type (might be due to invalid IL or missing references) //IL_0e1f: Unknown result type (might be due to invalid IL or missing references) //IL_0e25: Unknown result type (might be due to invalid IL or missing references) //IL_0e2a: Unknown result type (might be due to invalid IL or missing references) //IL_0e30: Unknown result type (might be due to invalid IL or missing references) //IL_0e35: Unknown result type (might be due to invalid IL or missing references) //IL_0e3b: Unknown result type (might be due to invalid IL or missing references) //IL_0e40: Unknown result type (might be due to invalid IL or missing references) //IL_0e4b: Unknown result type (might be due to invalid IL or missing references) //IL_0e51: Unknown result type (might be due to invalid IL or missing references) //IL_0e56: Unknown result type (might be due to invalid IL or missing references) //IL_0e5c: Unknown result type (might be due to invalid IL or missing references) //IL_0e66: Unknown result type (might be due to invalid IL or missing references) //IL_0e6b: Unknown result type (might be due to invalid IL or missing references) //IL_0e71: Unknown result type (might be due to invalid IL or missing references) //IL_0e7b: Unknown result type (might be due to invalid IL or missing references) //IL_0e80: Unknown result type (might be due to invalid IL or missing references) //IL_0e86: Unknown result type (might be due to invalid IL or missing references) //IL_0e90: Unknown result type (might be due to invalid IL or missing references) //IL_0e95: Unknown result type (might be due to invalid IL or missing references) //IL_0e9b: Unknown result type (might be due to invalid IL or missing references) //IL_0ea0: Unknown result type (might be due to invalid IL or missing references) //IL_0ea6: Unknown result type (might be due to invalid IL or missing references) //IL_0eab: Unknown result type (might be due to invalid IL or missing references) //IL_0eb1: Unknown result type (might be due to invalid IL or missing references) //IL_0eb6: Unknown result type (might be due to invalid IL or missing references) //IL_0ec2: Unknown result type (might be due to invalid IL or missing references) //IL_0fe3: Unknown result type (might be due to invalid IL or missing references) //IL_0fe9: Unknown result type (might be due to invalid IL or missing references) //IL_0fee: Unknown result type (might be due to invalid IL or missing references) //IL_0ff4: Unknown result type (might be due to invalid IL or missing references) //IL_0ffe: Unknown result type (might be due to invalid IL or missing references) //IL_1003: Unknown result type (might be due to invalid IL or missing references) //IL_1009: Unknown result type (might be due to invalid IL or missing references) //IL_1013: Unknown result type (might be due to invalid IL or missing references) //IL_1018: Unknown result type (might be due to invalid IL or missing references) //IL_101e: Unknown result type (might be due to invalid IL or missing references) //IL_1028: Unknown result type (might be due to invalid IL or missing references) //IL_102d: Unknown result type (might be due to invalid IL or missing references) //IL_1033: Unknown result type (might be due to invalid IL or missing references) //IL_1038: Unknown result type (might be due to invalid IL or missing references) //IL_103e: Unknown result type (might be due to invalid IL or missing references) //IL_1043: Unknown result type (might be due to invalid IL or missing references) //IL_1049: Unknown result type (might be due to invalid IL or missing references) //IL_104e: Unknown result type (might be due to invalid IL or missing references) //IL_1059: Unknown result type (might be due to invalid IL or missing references) //IL_105f: Unknown result type (might be due to invalid IL or missing references) //IL_1064: Unknown result type (might be due to invalid IL or missing references) //IL_106a: Unknown result type (might be due to invalid IL or missing references) //IL_1074: Unknown result type (might be due to invalid IL or missing references) //IL_1079: Unknown result type (might be due to invalid IL or missing references) //IL_107f: Unknown result type (might be due to invalid IL or missing references) //IL_1089: Unknown result type (might be due to invalid IL or missing references) //IL_108e: Unknown result type (might be due to invalid IL or missing references) //IL_1094: Unknown result type (might be due to invalid IL or missing references) //IL_109e: Unknown result type (might be due to invalid IL or missing references) //IL_10a3: Unknown result type (might be due to invalid IL or missing references) //IL_10a9: Unknown result type (might be due to invalid IL or missing references) //IL_10ae: Unknown result type (might be due to invalid IL or missing references) //IL_10b4: Unknown result type (might be due to invalid IL or missing references) //IL_10b9: Unknown result type (might be due to invalid IL or missing references) //IL_10c5: Unknown result type (might be due to invalid IL or missing references) //IL_0edc: Unknown result type (might be due to invalid IL or missing references) //IL_0ee2: Unknown result type (might be due to invalid IL or missing references) //IL_0ee7: Unknown result type (might be due to invalid IL or missing references) //IL_0eed: Unknown result type (might be due to invalid IL or missing references) //IL_0ef7: Unknown result type (might be due to invalid IL or missing references) //IL_0efc: Unknown result type (might be due to invalid IL or missing references) //IL_0f02: Unknown result type (might be due to invalid IL or missing references) //IL_0f0c: Unknown result type (might be due to invalid IL or missing references) //IL_0f11: Unknown result type (might be due to invalid IL or missing references) //IL_0f17: Unknown result type (might be due to invalid IL or missing references) //IL_0f21: Unknown result type (might be due to invalid IL or missing references) //IL_0f26: Unknown result type (might be due to invalid IL or missing references) //IL_0f2c: Unknown result type (might be due to invalid IL or missing references) //IL_0f31: Unknown result type (might be due to invalid IL or missing references) //IL_0f37: Unknown result type (might be due to invalid IL or missing references) //IL_0f3c: Unknown result type (might be due to invalid IL or missing references) //IL_0f42: Unknown result type (might be due to invalid IL or missing references) //IL_0f47: Unknown result type (might be due to invalid IL or missing references) //IL_0f52: Unknown result type (might be due to invalid IL or missing references) //IL_0f58: Unknown result type (might be due to invalid IL or missing references) //IL_0f5d: Unknown result type (might be due to invalid IL or missing references) //IL_0f63: Unknown result type (might be due to invalid IL or missing references) //IL_0f6d: Unknown result type (might be due to invalid IL or missing references) //IL_0f72: Unknown result type (might be due to invalid IL or missing references) //IL_0f78: Unknown result type (might be due to invalid IL or missing references) //IL_0f7d: Unknown result type (might be due to invalid IL or missing references) //IL_0f83: Unknown result type (might be due to invalid IL or missing references) //IL_0f8d: Unknown result type (might be due to invalid IL or missing references) //IL_0f92: Unknown result type (might be due to invalid IL or missing references) //IL_0f98: Unknown result type (might be due to invalid IL or missing references) //IL_0fa2: Unknown result type (might be due to invalid IL or missing references) //IL_0fa7: Unknown result type (might be due to invalid IL or missing references) //IL_0fad: Unknown result type (might be due to invalid IL or missing references) //IL_0fb2: Unknown result type (might be due to invalid IL or missing references) //IL_0fb8: Unknown result type (might be due to invalid IL or missing references) //IL_0fbd: Unknown result type (might be due to invalid IL or missing references) //IL_0fc9: Unknown result type (might be due to invalid IL or missing references) //IL_10e0: Unknown result type (might be due to invalid IL or missing references) //IL_10e5: Unknown result type (might be due to invalid IL or missing references) //IL_113e: Unknown result type (might be due to invalid IL or missing references) //IL_1144: Unknown result type (might be due to invalid IL or missing references) //IL_1149: Unknown result type (might be due to invalid IL or missing references) //IL_114f: Unknown result type (might be due to invalid IL or missing references) //IL_1159: Unknown result type (might be due to invalid IL or missing references) //IL_115e: Unknown result type (might be due to invalid IL or missing references) //IL_1164: Unknown result type (might be due to invalid IL or missing references) //IL_116e: Unknown result type (might be due to invalid IL or missing references) //IL_1173: Unknown result type (might be due to invalid IL or missing references) //IL_1179: Unknown result type (might be due to invalid IL or missing references) //IL_1183: Unknown result type (might be due to invalid IL or missing references) //IL_1188: Unknown result type (might be due to invalid IL or missing references) //IL_118e: Unknown result type (might be due to invalid IL or missing references) //IL_1193: Unknown result type (might be due to invalid IL or missing references) //IL_1199: Unknown result type (might be due to invalid IL or missing references) //IL_119e: Unknown result type (might be due to invalid IL or missing references) //IL_11a4: Unknown result type (might be due to invalid IL or missing references) //IL_11a9: Unknown result type (might be due to invalid IL or missing references) //IL_11b4: Unknown result type (might be due to invalid IL or missing references) //IL_11ba: Unknown result type (might be due to invalid IL or missing references) //IL_11bf: Unknown result type (might be due to invalid IL or missing references) //IL_11c5: Unknown result type (might be due to invalid IL or missing references) //IL_11cf: Unknown result type (might be due to invalid IL or missing references) //IL_11d4: Unknown result type (might be due to invalid IL or missing references) //IL_11da: Unknown result type (might be due to invalid IL or missing references) //IL_11e4: Unknown result type (might be due to invalid IL or missing references) //IL_11e9: Unknown result type (might be due to invalid IL or missing references) //IL_11ef: Unknown result type (might be due to invalid IL or missing references) //IL_11f9: Unknown result type (might be due to invalid IL or missing references) //IL_11fe: Unknown result type (might be due to invalid IL or missing references) //IL_1204: Unknown result type (might be due to invalid IL or missing references) //IL_1209: Unknown result type (might be due to invalid IL or missing references) //IL_120f: Unknown result type (might be due to invalid IL or missing references) //IL_1214: Unknown result type (might be due to invalid IL or missing references) //IL_121a: Unknown result type (might be due to invalid IL or missing references) //IL_121f: Unknown result type (might be due to invalid IL or missing references) //IL_122b: Unknown result type (might be due to invalid IL or missing references) //IL_134c: Unknown result type (might be due to invalid IL or missing references) //IL_1352: Unknown result type (might be due to invalid IL or missing references) //IL_1357: Unknown result type (might be due to invalid IL or missing references) //IL_135d: Unknown result type (might be due to invalid IL or missing references) //IL_1367: Unknown result type (might be due to invalid IL or missing references) //IL_136c: Unknown result type (might be due to invalid IL or missing references) //IL_1372: Unknown result type (might be due to invalid IL or missing references) //IL_137c: Unknown result type (might be due to invalid IL or missing references) //IL_1381: Unknown result type (might be due to invalid IL or missing references) //IL_1387: Unknown result type (might be due to invalid IL or missing references) //IL_1391: Unknown result type (might be due to invalid IL or missing references) //IL_1396: Unknown result type (might be due to invalid IL or missing references) //IL_139c: Unknown result type (might be due to invalid IL or missing references) //IL_13a1: Unknown result type (might be due to invalid IL or missing references) //IL_13a7: Unknown result type (might be due to invalid IL or missing references) //IL_13ac: Unknown result type (might be due to invalid IL or missing references) //IL_13b2: Unknown result type (might be due to invalid IL or missing references) //IL_13b7: Unknown result type (might be due to invalid IL or missing references) //IL_13c2: Unknown result type (might be due to invalid IL or missing references) //IL_13c8: Unknown result type (might be due to invalid IL or missing references) //IL_13cd: Unknown result type (might be due to invalid IL or missing references) //IL_13d3: Unknown result type (might be due to invalid IL or missing references) //IL_13dd: Unknown result type (might be due to invalid IL or missing references) //IL_13e2: Unknown result type (might be due to invalid IL or missing references) //IL_13e8: Unknown result type (might be due to invalid IL or missing references) //IL_13f2: Unknown result type (might be due to invalid IL or missing references) //IL_13f7: Unknown result type (might be due to invalid IL or missing references) //IL_13fd: Unknown result type (might be due to invalid IL or missing references) //IL_1407: Unknown result type (might be due to invalid IL or missing references) //IL_140c: Unknown result type (might be due to invalid IL or missing references) //IL_1412: Unknown result type (might be due to invalid IL or missing references) //IL_1417: Unknown result type (might be due to invalid IL or missing references) //IL_141d: Unknown result type (might be due to invalid IL or missing references) //IL_1422: Unknown result type (might be due to invalid IL or missing references) //IL_142e: Unknown result type (might be due to invalid IL or missing references) //IL_1245: Unknown result type (might be due to invalid IL or missing references) //IL_124b: Unknown result type (might be due to invalid IL or missing references) //IL_1250: Unknown result type (might be due to invalid IL or missing references) //IL_1256: Unknown result type (might be due to invalid IL or missing references) //IL_1260: Unknown result type (might be due to invalid IL or missing references) //IL_1265: Unknown result type (might be due to invalid IL or missing references) //IL_126b: Unknown result type (might be due to invalid IL or missing references) //IL_1275: Unknown result type (might be due to invalid IL or missing references) //IL_127a: Unknown result type (might be due to invalid IL or missing references) //IL_1280: Unknown result type (might be due to invalid IL or missing references) //IL_128a: Unknown result type (might be due to invalid IL or missing references) //IL_128f: Unknown result type (might be due to invalid IL or missing references) //IL_1295: Unknown result type (might be due to invalid IL or missing references) //IL_129a: Unknown result type (might be due to invalid IL or missing references) //IL_12a0: Unknown result type (might be due to invalid IL or missing references) //IL_12a5: Unknown result type (might be due to invalid IL or missing references) //IL_12ab: Unknown result type (might be due to invalid IL or missing references) //IL_12b0: Unknown result type (might be due to invalid IL or missing references) //IL_12bb: Unknown result type (might be due to invalid IL or missing references) //IL_12c1: Unknown result type (might be due to invalid IL or missing references) //IL_12c6: Unknown result type (might be due to invalid IL or missing references) //IL_12cc: Unknown result type (might be due to invalid IL or missing references) //IL_12d6: Unknown result type (might be due to invalid IL or missing references) //IL_12db: Unknown result type (might be due to invalid IL or missing references) //IL_12e1: Unknown result type (might be due to invalid IL or missing references) //IL_12e6: Unknown result type (might be due to invalid IL or missing references) //IL_12ec: Unknown result type (might be due to invalid IL or missing references) //IL_12f6: Unknown result type (might be due to invalid IL or missing references) //IL_12fb: Unknown result type (might be due to invalid IL or missing references) //IL_1301: Unknown result type (might be due to invalid IL or missing references) //IL_130b: Unknown result type (might be due to invalid IL or missing references) //IL_1310: Unknown result type (might be due to invalid IL or missing references) //IL_1316: Unknown result type (might be due to invalid IL or missing references) //IL_131b: Unknown result type (might be due to invalid IL or missing references) //IL_1321: Unknown result type (might be due to invalid IL or missing references) //IL_1326: Unknown result type (might be due to invalid IL or missing references) //IL_1332: Unknown result type (might be due to invalid IL or missing references) //IL_1449: Unknown result type (might be due to invalid IL or missing references) //IL_144e: Unknown result type (might be due to invalid IL or missing references) if (switching || !ledgeSwitchingDetectors.allowLedgeSwitching || !grabbedOn) { return; } if ((!Physics.Linecast(((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.8f - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { l1ThirdBackSurfaceDetectorsHit = true; } else { l1ThirdBackSurfaceDetectorsHit = false; l1ThirdBackHit = false; } if ((!Physics.Linecast(((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.8f - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { l2ThirdBackSurfaceDetectorsHit = true; } else { l2ThirdBackSurfaceDetectorsHit = false; l2ThirdBackHit = false; } if ((!Physics.Linecast(((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position - thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.8f - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2f - surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { l3ThirdBackSurfaceDetectorsHit = true; } else { l3ThirdBackSurfaceDetectorsHit = false; l3ThirdBackHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - firstSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) { if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref switchHitPoint)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit) { l1ThirdBackHit = true; } else { l1ThirdBackHit = false; } } else { l1ThirdBackHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - secondSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) { if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref switchHitPoint)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit) { l2ThirdBackHit = true; } else { l2ThirdBackHit = false; } } else { l2ThirdBackHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f - ledgeSwitchSurfaceLength / 0.875f - rightWidth * 2.67f - thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) { if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref switchHitPoint)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit) { l3ThirdBackHit = true; } else { l3ThirdBackHit = false; } } else { l3ThirdBackHit = false; } } private void LedgeSwitchHitPointsSecondFrontRight() { //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_006a: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_0089: Unknown result type (might be due to invalid IL or missing references) //IL_008e: Unknown result type (might be due to invalid IL or missing references) //IL_0094: Unknown result type (might be due to invalid IL or missing references) //IL_0099: Unknown result type (might be due to invalid IL or missing references) //IL_009f: Unknown result type (might be due to invalid IL or missing references) //IL_00a4: Unknown result type (might be due to invalid IL or missing references) //IL_00af: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) //IL_00ba: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_00cb: Unknown result type (might be due to invalid IL or missing references) //IL_00d0: Unknown result type (might be due to invalid IL or missing references) //IL_00d6: Unknown result type (might be due to invalid IL or missing references) //IL_00e0: Unknown result type (might be due to invalid IL or missing references) //IL_00e5: Unknown result type (might be due to invalid IL or missing references) //IL_00eb: Unknown result type (might be due to invalid IL or missing references) //IL_00f5: Unknown result type (might be due to invalid IL or missing references) //IL_00fa: Unknown result type (might be due to invalid IL or missing references) //IL_0100: Unknown result type (might be due to invalid IL or missing references) //IL_010a: Unknown result type (might be due to invalid IL or missing references) //IL_010f: Unknown result type (might be due to invalid IL or missing references) //IL_0115: Unknown result type (might be due to invalid IL or missing references) //IL_011a: Unknown result type (might be due to invalid IL or missing references) //IL_0120: Unknown result type (might be due to invalid IL or missing references) //IL_0125: Unknown result type (might be due to invalid IL or missing references) //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_0268: Unknown result type (might be due to invalid IL or missing references) //IL_026e: Unknown result type (might be due to invalid IL or missing references) //IL_0273: Unknown result type (might be due to invalid IL or missing references) //IL_0279: Unknown result type (might be due to invalid IL or missing references) //IL_027e: Unknown result type (might be due to invalid IL or missing references) //IL_0284: Unknown result type (might be due to invalid IL or missing references) //IL_0289: Unknown result type (might be due to invalid IL or missing references) //IL_028f: Unknown result type (might be due to invalid IL or missing references) //IL_0299: Unknown result type (might be due to invalid IL or missing references) //IL_029e: Unknown result type (might be due to invalid IL or missing references) //IL_02a4: Unknown result type (might be due to invalid IL or missing references) //IL_02ae: Unknown result type (might be due to invalid IL or missing references) //IL_02b3: Unknown result type (might be due to invalid IL or missing references) //IL_02b9: Unknown result type (might be due to invalid IL or missing references) //IL_02c3: Unknown result type (might be due to invalid IL or missing references) //IL_02c8: Unknown result type (might be due to invalid IL or missing references) //IL_02ce: Unknown result type (might be due to invalid IL or missing references) //IL_02d3: Unknown result type (might be due to invalid IL or missing references) //IL_02d9: Unknown result type (might be due to invalid IL or missing references) //IL_02de: Unknown result type (might be due to invalid IL or missing references) //IL_02e9: Unknown result type (might be due to invalid IL or missing references) //IL_02ef: Unknown result type (might be due to invalid IL or missing references) //IL_02f4: Unknown result type (might be due to invalid IL or missing references) //IL_02fa: Unknown result type (might be due to invalid IL or missing references) //IL_02ff: Unknown result type (might be due to invalid IL or missing references) //IL_0305: Unknown result type (might be due to invalid IL or missing references) //IL_030a: Unknown result type (might be due to invalid IL or missing references) //IL_0310: Unknown result type (might be due to invalid IL or missing references) //IL_031a: Unknown result type (might be due to invalid IL or missing references) //IL_031f: Unknown result type (might be due to invalid IL or missing references) //IL_0325: Unknown result type (might be due to invalid IL or missing references) //IL_032f: Unknown result type (might be due to invalid IL or missing references) //IL_0334: Unknown result type (might be due to invalid IL or missing references) //IL_033a: Unknown result type (might be due to invalid IL or missing references) //IL_0344: Unknown result type (might be due to invalid IL or missing references) //IL_0349: Unknown result type (might be due to invalid IL or missing references) //IL_034f: Unknown result type (might be due to invalid IL or missing references) //IL_0354: Unknown result type (might be due to invalid IL or missing references) //IL_0360: Unknown result type (might be due to invalid IL or missing references) //IL_014b: Unknown result type (might be due to invalid IL or missing references) //IL_0151: Unknown result type (might be due to invalid IL or missing references) //IL_0156: Unknown result type (might be due to invalid IL or missing references) //IL_015c: Unknown result type (might be due to invalid IL or missing references) //IL_0161: Unknown result type (might be due to invalid IL or missing references) //IL_0167: Unknown result type (might be due to invalid IL or missing references) //IL_016c: Unknown result type (might be due to invalid IL or missing references) //IL_0172: Unknown result type (might be due to invalid IL or missing references) //IL_017c: Unknown result type (might be due to invalid IL or missing references) //IL_0181: Unknown result type (might be due to invalid IL or missing references) //IL_0187: Unknown result type (might be due to invalid IL or missing references) //IL_0191: Unknown result type (might be due to invalid IL or missing references) //IL_0196: Unknown result type (might be due to invalid IL or missing references) //IL_019c: Unknown result type (might be due to invalid IL or missing references) //IL_01a6: Unknown result type (might be due to invalid IL or missing references) //IL_01ab: Unknown result type (might be due to invalid IL or missing references) //IL_01b1: Unknown result type (might be due to invalid IL or missing references) //IL_01b6: Unknown result type (might be due to invalid IL or missing references) //IL_01bc: Unknown result type (might be due to invalid IL or missing references) //IL_01c1: Unknown result type (might be due to invalid IL or missing references) //IL_01cc: Unknown result type (might be due to invalid IL or missing references) //IL_01d2: Unknown result type (might be due to invalid IL or missing references) //IL_01d7: Unknown result type (might be due to invalid IL or missing references) //IL_01dd: Unknown result type (might be due to invalid IL or missing references) //IL_01e2: Unknown result type (might be due to invalid IL or missing references) //IL_01e8: Unknown result type (might be due to invalid IL or missing references) //IL_01ed: Unknown result type (might be due to invalid IL or missing references) //IL_01f3: Unknown result type (might be due to invalid IL or missing references) //IL_01fd: Unknown result type (might be due to invalid IL or missing references) //IL_0202: Unknown result type (might be due to invalid IL or missing references) //IL_0208: Unknown result type (might be due to invalid IL or missing references) //IL_020d: Unknown result type (might be due to invalid IL or missing references) //IL_0213: Unknown result type (might be due to invalid IL or missing references) //IL_021d: Unknown result type (might be due to invalid IL or missing references) //IL_0222: Unknown result type (might be due to invalid IL or missing references) //IL_0228: Unknown result type (might be due to invalid IL or missing references) //IL_0232: Unknown result type (might be due to invalid IL or missing references) //IL_0237: Unknown result type (might be due to invalid IL or missing references) //IL_023d: Unknown result type (might be due to invalid IL or missing references) //IL_0242: Unknown result type (might be due to invalid IL or missing references) //IL_024e: Unknown result type (might be due to invalid IL or missing references) //IL_037b: Unknown result type (might be due to invalid IL or missing references) //IL_0381: Unknown result type (might be due to invalid IL or missing references) //IL_0386: Unknown result type (might be due to invalid IL or missing references) //IL_038c: Unknown result type (might be due to invalid IL or missing references) //IL_0396: Unknown result type (might be due to invalid IL or missing references) //IL_039b: Unknown result type (might be due to invalid IL or missing references) //IL_03a1: Unknown result type (might be due to invalid IL or missing references) //IL_03ab: Unknown result type (might be due to invalid IL or missing references) //IL_03b0: Unknown result type (might be due to invalid IL or missing references) //IL_03b6: Unknown result type (might be due to invalid IL or missing references) //IL_03c0: Unknown result type (might be due to invalid IL or missing references) //IL_03c5: Unknown result type (might be due to invalid IL or missing references) //IL_03cb: Unknown result type (might be due to invalid IL or missing references) //IL_03d0: Unknown result type (might be due to invalid IL or missing references) //IL_03d6: Unknown result type (might be due to invalid IL or missing references) //IL_03db: Unknown result type (might be due to invalid IL or missing references) //IL_03e1: Unknown result type (might be due to invalid IL or missing references) //IL_03e6: Unknown result type (might be due to invalid IL or missing references) //IL_03f1: Unknown result type (might be due to invalid IL or missing references) //IL_03f7: Unknown result type (might be due to invalid IL or missing references) //IL_03fc: Unknown result type (might be due to invalid IL or missing references) //IL_0402: Unknown result type (might be due to invalid IL or missing references) //IL_040c: Unknown result type (might be due to invalid IL or missing references) //IL_0411: Unknown result type (might be due to invalid IL or missing references) //IL_0417: Unknown result type (might be due to invalid IL or missing references) //IL_0421: Unknown result type (might be due to invalid IL or missing references) //IL_0426: Unknown result type (might be due to invalid IL or missing references) //IL_042c: Unknown result type (might be due to invalid IL or missing references) //IL_0436: Unknown result type (might be due to invalid IL or missing references) //IL_043b: Unknown result type (might be due to invalid IL or missing references) //IL_0441: Unknown result type (might be due to invalid IL or missing references) //IL_0446: Unknown result type (might be due to invalid IL or missing references) //IL_044c: Unknown result type (might be due to invalid IL or missing references) //IL_0451: Unknown result type (might be due to invalid IL or missing references) //IL_0457: Unknown result type (might be due to invalid IL or missing references) //IL_045c: Unknown result type (might be due to invalid IL or missing references) //IL_0468: Unknown result type (might be due to invalid IL or missing references) //IL_1586: Unknown result type (might be due to invalid IL or missing references) //IL_158c: Unknown result type (might be due to invalid IL or missing references) //IL_1591: Unknown result type (might be due to invalid IL or missing references) //IL_1597: Unknown result type (might be due to invalid IL or missing references) //IL_159c: Unknown result type (might be due to invalid IL or missing references) //IL_15a2: Unknown result type (might be due to invalid IL or missing references) //IL_15a7: Unknown result type (might be due to invalid IL or missing references) //IL_15ad: Unknown result type (might be due to invalid IL or missing references) //IL_15b7: Unknown result type (might be due to invalid IL or missing references) //IL_15bc: Unknown result type (might be due to invalid IL or missing references) //IL_15c2: Unknown result type (might be due to invalid IL or missing references) //IL_15cc: Unknown result type (might be due to invalid IL or missing references) //IL_15d1: Unknown result type (might be due to invalid IL or missing references) //IL_15d7: Unknown result type (might be due to invalid IL or missing references) //IL_15e1: Unknown result type (might be due to invalid IL or missing references) //IL_15e6: Unknown result type (might be due to invalid IL or missing references) //IL_15ec: Unknown result type (might be due to invalid IL or missing references) //IL_15f1: Unknown result type (might be due to invalid IL or missing references) //IL_15f7: Unknown result type (might be due to invalid IL or missing references) //IL_15fc: Unknown result type (might be due to invalid IL or missing references) //IL_1607: Unknown result type (might be due to invalid IL or missing references) //IL_160d: Unknown result type (might be due to invalid IL or missing references) //IL_1612: Unknown result type (might be due to invalid IL or missing references) //IL_1618: Unknown result type (might be due to invalid IL or missing references) //IL_161d: Unknown result type (might be due to invalid IL or missing references) //IL_1623: Unknown result type (might be due to invalid IL or missing references) //IL_1628: Unknown result type (might be due to invalid IL or missing references) //IL_162e: Unknown result type (might be due to invalid IL or missing references) //IL_1638: Unknown result type (might be due to invalid IL or missing references) //IL_163d: Unknown result type (might be due to invalid IL or missing references) //IL_1643: Unknown result type (might be due to invalid IL or missing references) //IL_164d: Unknown result type (might be due to invalid IL or missing references) //IL_1652: Unknown result type (might be due to invalid IL or missing references) //IL_1658: Unknown result type (might be due to invalid IL or missing references) //IL_1662: Unknown result type (might be due to invalid IL or missing references) //IL_1667: Unknown result type (might be due to invalid IL or missing references) //IL_166d: Unknown result type (might be due to invalid IL or missing references) //IL_1672: Unknown result type (might be due to invalid IL or missing references) //IL_1678: Unknown result type (might be due to invalid IL or missing references) //IL_167d: Unknown result type (might be due to invalid IL or missing references) //IL_1689: Unknown result type (might be due to invalid IL or missing references) //IL_0589: Unknown result type (might be due to invalid IL or missing references) //IL_058f: Unknown result type (might be due to invalid IL or missing references) //IL_0594: Unknown result type (might be due to invalid IL or missing references) //IL_059a: Unknown result type (might be due to invalid IL or missing references) //IL_05a4: Unknown result type (might be due to invalid IL or missing references) //IL_05a9: Unknown result type (might be due to invalid IL or missing references) //IL_05af: Unknown result type (might be due to invalid IL or missing references) //IL_05b9: Unknown result type (might be due to invalid IL or missing references) //IL_05be: Unknown result type (might be due to invalid IL or missing references) //IL_05c4: Unknown result type (might be due to invalid IL or missing references) //IL_05ce: Unknown result type (might be due to invalid IL or missing references) //IL_05d3: Unknown result type (might be due to invalid IL or missing references) //IL_05d9: Unknown result type (might be due to invalid IL or missing references) //IL_05de: Unknown result type (might be due to invalid IL or missing references) //IL_05e4: Unknown result type (might be due to invalid IL or missing references) //IL_05e9: Unknown result type (might be due to invalid IL or missing references) //IL_05ef: Unknown result type (might be due to invalid IL or missing references) //IL_05f4: Unknown result type (might be due to invalid IL or missing references) //IL_05ff: Unknown result type (might be due to invalid IL or missing references) //IL_0605: Unknown result type (might be due to invalid IL or missing references) //IL_060a: Unknown result type (might be due to invalid IL or missing references) //IL_0610: Unknown result type (might be due to invalid IL or missing references) //IL_061a: Unknown result type (might be due to invalid IL or missing references) //IL_061f: Unknown result type (might be due to invalid IL or missing references) //IL_0625: Unknown result type (might be due to invalid IL or missing references) //IL_062f: Unknown result type (might be due to invalid IL or missing references) //IL_0634: Unknown result type (might be due to invalid IL or missing references) //IL_063a: Unknown result type (might be due to invalid IL or missing references) //IL_0644: Unknown result type (might be due to invalid IL or missing references) //IL_0649: Unknown result type (might be due to invalid IL or missing references) //IL_064f: Unknown result type (might be due to invalid IL or missing references) //IL_0654: Unknown result type (might be due to invalid IL or missing references) //IL_065a: Unknown result type (might be due to invalid IL or missing references) //IL_065f: Unknown result type (might be due to invalid IL or missing references) //IL_066b: Unknown result type (might be due to invalid IL or missing references) //IL_0482: Unknown result type (might be due to invalid IL or missing references) //IL_0488: Unknown result type (might be due to invalid IL or missing references) //IL_048d: Unknown result type (might be due to invalid IL or missing references) //IL_0493: Unknown result type (might be due to invalid IL or missing references) //IL_049d: Unknown result type (might be due to invalid IL or missing references) //IL_04a2: Unknown result type (might be due to invalid IL or missing references) //IL_04a8: Unknown result type (might be due to invalid IL or missing references) //IL_04b2: Unknown result type (might be due to invalid IL or missing references) //IL_04b7: Unknown result type (might be due to invalid IL or missing references) //IL_04bd: Unknown result type (might be due to invalid IL or missing references) //IL_04c7: Unknown result type (might be due to invalid IL or missing references) //IL_04cc: Unknown result type (might be due to invalid IL or missing references) //IL_04d2: Unknown result type (might be due to invalid IL or missing references) //IL_04d7: Unknown result type (might be due to invalid IL or missing references) //IL_04dd: Unknown result type (might be due to invalid IL or missing references) //IL_04e2: Unknown result type (might be due to invalid IL or missing references) //IL_04e8: Unknown result type (might be due to invalid IL or missing references) //IL_04ed: Unknown result type (might be due to invalid IL or missing references) //IL_04f8: Unknown result type (might be due to invalid IL or missing references) //IL_04fe: Unknown result type (might be due to invalid IL or missing references) //IL_0503: Unknown result type (might be due to invalid IL or missing references) //IL_0509: Unknown result type (might be due to invalid IL or missing references) //IL_0513: Unknown result type (might be due to invalid IL or missing references) //IL_0518: Unknown result type (might be due to invalid IL or missing references) //IL_051e: Unknown result type (might be due to invalid IL or missing references) //IL_0523: Unknown result type (might be due to invalid IL or missing references) //IL_0529: Unknown result type (might be due to invalid IL or missing references) //IL_0533: Unknown result type (might be due to invalid IL or missing references) //IL_0538: Unknown result type (might be due to invalid IL or missing references) //IL_053e: Unknown result type (might be due to invalid IL or missing references) //IL_0548: Unknown result type (might be due to invalid IL or missing references) //IL_054d: Unknown result type (might be due to invalid IL or missing references) //IL_0553: Unknown result type (might be due to invalid IL or missing references) //IL_0558: Unknown result type (might be due to invalid IL or missing references) //IL_055e: Unknown result type (might be due to invalid IL or missing references) //IL_0563: Unknown result type (might be due to invalid IL or missing references) //IL_056f: Unknown result type (might be due to invalid IL or missing references) //IL_17c0: Unknown result type (might be due to invalid IL or missing references) //IL_17c6: Unknown result type (might be due to invalid IL or missing references) //IL_17cb: Unknown result type (might be due to invalid IL or missing references) //IL_17d1: Unknown result type (might be due to invalid IL or missing references) //IL_17d6: Unknown result type (might be due to invalid IL or missing references) //IL_17dc: Unknown result type (might be due to invalid IL or missing references) //IL_17e1: Unknown result type (might be due to invalid IL or missing references) //IL_17e7: Unknown result type (might be due to invalid IL or missing references) //IL_17f1: Unknown result type (might be due to invalid IL or missing references) //IL_17f6: Unknown result type (might be due to invalid IL or missing references) //IL_17fc: Unknown result type (might be due to invalid IL or missing references) //IL_1806: Unknown result type (might be due to invalid IL or missing references) //IL_180b: Unknown result type (might be due to invalid IL or missing references) //IL_1811: Unknown result type (might be due to invalid IL or missing references) //IL_181b: Unknown result type (might be due to invalid IL or missing references) //IL_1820: Unknown result type (might be due to invalid IL or missing references) //IL_1826: Unknown result type (might be due to invalid IL or missing references) //IL_182b: Unknown result type (might be due to invalid IL or missing references) //IL_1831: Unknown result type (might be due to invalid IL or missing references) //IL_1836: Unknown result type (might be due to invalid IL or missing references) //IL_1841: Unknown result type (might be due to invalid IL or missing references) //IL_1847: Unknown result type (might be due to invalid IL or missing references) //IL_184c: Unknown result type (might be due to invalid IL or missing references) //IL_1852: Unknown result type (might be due to invalid IL or missing references) //IL_1857: Unknown result type (might be due to invalid IL or missing references) //IL_185d: Unknown result type (might be due to invalid IL or missing references) //IL_1862: Unknown result type (might be due to invalid IL or missing references) //IL_1868: Unknown result type (might be due to invalid IL or missing references) //IL_1872: Unknown result type (might be due to invalid IL or missing references) //IL_1877: Unknown result type (might be due to invalid IL or missing references) //IL_187d: Unknown result type (might be due to invalid IL or missing references) //IL_1887: Unknown result type (might be due to invalid IL or missing references) //IL_188c: Unknown result type (might be due to invalid IL or missing references) //IL_1892: Unknown result type (might be due to invalid IL or missing references) //IL_189c: Unknown result type (might be due to invalid IL or missing references) //IL_18a1: Unknown result type (might be due to invalid IL or missing references) //IL_18a7: Unknown result type (might be due to invalid IL or missing references) //IL_18ac: Unknown result type (might be due to invalid IL or missing references) //IL_18b8: Unknown result type (might be due to invalid IL or missing references) //IL_16a3: Unknown result type (might be due to invalid IL or missing references) //IL_16a9: Unknown result type (might be due to invalid IL or missing references) //IL_16ae: Unknown result type (might be due to invalid IL or missing references) //IL_16b4: Unknown result type (might be due to invalid IL or missing references) //IL_16b9: Unknown result type (might be due to invalid IL or missing references) //IL_16bf: Unknown result type (might be due to invalid IL or missing references) //IL_16c4: Unknown result type (might be due to invalid IL or missing references) //IL_16ca: Unknown result type (might be due to invalid IL or missing references) //IL_16d4: Unknown result type (might be due to invalid IL or missing references) //IL_16d9: Unknown result type (might be due to invalid IL or missing references) //IL_16df: Unknown result type (might be due to invalid IL or missing references) //IL_16e9: Unknown result type (might be due to invalid IL or missing references) //IL_16ee: Unknown result type (might be due to invalid IL or missing references) //IL_16f4: Unknown result type (might be due to invalid IL or missing references) //IL_16fe: Unknown result type (might be due to invalid IL or missing references) //IL_1703: Unknown result type (might be due to invalid IL or missing references) //IL_1709: Unknown result type (might be due to invalid IL or missing references) //IL_170e: Unknown result type (might be due to invalid IL or missing references) //IL_1714: Unknown result type (might be due to invalid IL or missing references) //IL_1719: Unknown result type (might be due to invalid IL or missing references) //IL_1724: Unknown result type (might be due to invalid IL or missing references) //IL_172a: Unknown result type (might be due to invalid IL or missing references) //IL_172f: Unknown result type (might be due to invalid IL or missing references) //IL_1735: Unknown result type (might be due to invalid IL or missing references) //IL_173a: Unknown result type (might be due to invalid IL or missing references) //IL_1740: Unknown result type (might be due to invalid IL or missing references) //IL_1745: Unknown result type (might be due to invalid IL or missing references) //IL_174b: Unknown result type (might be due to invalid IL or missing references) //IL_1755: Unknown result type (might be due to invalid IL or missing references) //IL_175a: Unknown result type (might be due to invalid IL or missing references) //IL_1760: Unknown result type (might be due to invalid IL or missing references) //IL_1765: Unknown result type (might be due to invalid IL or missing references) //IL_176b: Unknown result type (might be due to invalid IL or missing references) //IL_1775: Unknown result type (might be due to invalid IL or missing references) //IL_177a: Unknown result type (might be due to invalid IL or missing references) //IL_1780: Unknown result type (might be due to invalid IL or missing references) //IL_178a: Unknown result type (might be due to invalid IL or missing references) //IL_178f: Unknown result type (might be due to invalid IL or missing references) //IL_1795: Unknown result type (might be due to invalid IL or missing references) //IL_179a: Unknown result type (might be due to invalid IL or missing references) //IL_17a6: Unknown result type (might be due to invalid IL or missing references) //IL_0686: Unknown result type (might be due to invalid IL or missing references) //IL_068b: Unknown result type (might be due to invalid IL or missing references) //IL_18d3: Unknown result type (might be due to invalid IL or missing references) //IL_18d9: Unknown result type (might be due to invalid IL or missing references) //IL_18de: Unknown result type (might be due to invalid IL or missing references) //IL_18e4: Unknown result type (might be due to invalid IL or missing references) //IL_18ee: Unknown result type (might be due to invalid IL or missing references) //IL_18f3: Unknown result type (might be due to invalid IL or missing references) //IL_18f9: Unknown result type (might be due to invalid IL or missing references) //IL_1903: Unknown result type (might be due to invalid IL or missing references) //IL_1908: Unknown result type (might be due to invalid IL or missing references) //IL_190e: Unknown result type (might be due to invalid IL or missing references) //IL_1918: Unknown result type (might be due to invalid IL or missing references) //IL_191d: Unknown result type (might be due to invalid IL or missing references) //IL_1923: Unknown result type (might be due to invalid IL or missing references) //IL_1928: Unknown result type (might be due to invalid IL or missing references) //IL_192e: Unknown result type (might be due to invalid IL or missing references) //IL_1933: Unknown result type (might be due to invalid IL or missing references) //IL_1939: Unknown result type (might be due to invalid IL or missing references) //IL_193e: Unknown result type (might be due to invalid IL or missing references) //IL_1949: Unknown result type (might be due to invalid IL or missing references) //IL_194f: Unknown result type (might be due to invalid IL or missing references) //IL_1954: Unknown result type (might be due to invalid IL or missing references) //IL_195a: Unknown result type (might be due to invalid IL or missing references) //IL_1964: Unknown result type (might be due to invalid IL or missing references) //IL_1969: Unknown result type (might be due to invalid IL or missing references) //IL_196f: Unknown result type (might be due to invalid IL or missing references) //IL_1979: Unknown result type (might be due to invalid IL or missing references) //IL_197e: Unknown result type (might be due to invalid IL or missing references) //IL_1984: Unknown result type (might be due to invalid IL or missing references) //IL_198e: Unknown result type (might be due to invalid IL or missing references) //IL_1993: Unknown result type (might be due to invalid IL or missing references) //IL_1999: Unknown result type (might be due to invalid IL or missing references) //IL_199e: Unknown result type (might be due to invalid IL or missing references) //IL_19a4: Unknown result type (might be due to invalid IL or missing references) //IL_19a9: Unknown result type (might be due to invalid IL or missing references) //IL_19af: Unknown result type (might be due to invalid IL or missing references) //IL_19b4: Unknown result type (might be due to invalid IL or missing references) //IL_19c0: Unknown result type (might be due to invalid IL or missing references) //IL_06c6: Unknown result type (might be due to invalid IL or missing references) //IL_06cc: Unknown result type (might be due to invalid IL or missing references) //IL_06d1: Unknown result type (might be due to invalid IL or missing references) //IL_06d7: Unknown result type (might be due to invalid IL or missing references) //IL_06dc: Unknown result type (might be due to invalid IL or missing references) //IL_06e2: Unknown result type (might be due to invalid IL or missing references) //IL_06ec: Unknown result type (might be due to invalid IL or missing references) //IL_06f1: Unknown result type (might be due to invalid IL or missing references) //IL_06f7: Unknown result type (might be due to invalid IL or missing references) //IL_0701: Unknown result type (might be due to invalid IL or missing references) //IL_0707: Unknown result type (might be due to invalid IL or missing references) //IL_070c: Unknown result type (might be due to invalid IL or missing references) //IL_0712: Unknown result type (might be due to invalid IL or missing references) //IL_0717: Unknown result type (might be due to invalid IL or missing references) //IL_071c: Unknown result type (might be due to invalid IL or missing references) //IL_0727: Unknown result type (might be due to invalid IL or missing references) //IL_072d: Unknown result type (might be due to invalid IL or missing references) //IL_0732: Unknown result type (might be due to invalid IL or missing references) //IL_0738: Unknown result type (might be due to invalid IL or missing references) //IL_073d: Unknown result type (might be due to invalid IL or missing references) //IL_0743: Unknown result type (might be due to invalid IL or missing references) //IL_074d: Unknown result type (might be due to invalid IL or missing references) //IL_0752: Unknown result type (might be due to invalid IL or missing references) //IL_0758: Unknown result type (might be due to invalid IL or missing references) //IL_0762: Unknown result type (might be due to invalid IL or missing references) //IL_0768: Unknown result type (might be due to invalid IL or missing references) //IL_076d: Unknown result type (might be due to invalid IL or missing references) //IL_0773: Unknown result type (might be due to invalid IL or missing references) //IL_0778: Unknown result type (might be due to invalid IL or missing references) //IL_077d: Unknown result type (might be due to invalid IL or missing references) //IL_0789: Unknown result type (might be due to invalid IL or missing references) //IL_2ae2: Unknown result type (might be due to invalid IL or missing references) //IL_2ae8: Unknown result type (might be due to invalid IL or missing references) //IL_2aed: Unknown result type (might be due to invalid IL or missing references) //IL_2af3: Unknown result type (might be due to invalid IL or missing references) //IL_2af8: Unknown result type (might be due to invalid IL or missing references) //IL_2afe: Unknown result type (might be due to invalid IL or missing references) //IL_2b03: Unknown result type (might be due to invalid IL or missing references) //IL_2b09: Unknown result type (might be due to invalid IL or missing references) //IL_2b13: Unknown result type (might be due to invalid IL or missing references) //IL_2b18: Unknown result type (might be due to invalid IL or missing references) //IL_2b1e: Unknown result type (might be due to invalid IL or missing references) //IL_2b28: Unknown result type (might be due to invalid IL or missing references) //IL_2b2d: Unknown result type (might be due to invalid IL or missing references) //IL_2b33: Unknown result type (might be due to invalid IL or missing references) //IL_2b3d: Unknown result type (might be due to invalid IL or missing references) //IL_2b42: Unknown result type (might be due to invalid IL or missing references) //IL_2b48: Unknown result type (might be due to invalid IL or missing references) //IL_2b4d: Unknown result type (might be due to invalid IL or missing references) //IL_2b53: Unknown result type (might be due to invalid IL or missing references) //IL_2b58: Unknown result type (might be due to invalid IL or missing references) //IL_2b63: Unknown result type (might be due to invalid IL or missing references) //IL_2b69: Unknown result type (might be due to invalid IL or missing references) //IL_2b6e: Unknown result type (might be due to invalid IL or missing references) //IL_2b74: Unknown result type (might be due to invalid IL or missing references) //IL_2b79: Unknown result type (might be due to invalid IL or missing references) //IL_2b7f: Unknown result type (might be due to invalid IL or missing references) //IL_2b84: Unknown result type (might be due to invalid IL or missing references) //IL_2b8a: Unknown result type (might be due to invalid IL or missing references) //IL_2b94: Unknown result type (might be due to invalid IL or missing references) //IL_2b99: Unknown result type (might be due to invalid IL or missing references) //IL_2b9f: Unknown result type (might be due to invalid IL or missing references) //IL_2ba9: Unknown result type (might be due to invalid IL or missing references) //IL_2bae: Unknown result type (might be due to invalid IL or missing references) //IL_2bb4: Unknown result type (might be due to invalid IL or missing references) //IL_2bbe: Unknown result type (might be due to invalid IL or missing references) //IL_2bc3: Unknown result type (might be due to invalid IL or missing references) //IL_2bc9: Unknown result type (might be due to invalid IL or missing references) //IL_2bce: Unknown result type (might be due to invalid IL or missing references) //IL_2bd4: Unknown result type (might be due to invalid IL or missing references) //IL_2bd9: Unknown result type (might be due to invalid IL or missing references) //IL_2be5: Unknown result type (might be due to invalid IL or missing references) //IL_1ae1: Unknown result type (might be due to invalid IL or missing references) //IL_1ae7: Unknown result type (might be due to invalid IL or missing references) //IL_1aec: Unknown result type (might be due to invalid IL or missing references) //IL_1af2: Unknown result type (might be due to invalid IL or missing references) //IL_1afc: Unknown result type (might be due to invalid IL or missing references) //IL_1b01: Unknown result type (might be due to invalid IL or missing references) //IL_1b07: Unknown result type (might be due to invalid IL or missing references) //IL_1b11: Unknown result type (might be due to invalid IL or missing references) //IL_1b16: Unknown result type (might be due to invalid IL or missing references) //IL_1b1c: Unknown result type (might be due to invalid IL or missing references) //IL_1b26: Unknown result type (might be due to invalid IL or missing references) //IL_1b2b: Unknown result type (might be due to invalid IL or missing references) //IL_1b31: Unknown result type (might be due to invalid IL or missing references) //IL_1b36: Unknown result type (might be due to invalid IL or missing references) //IL_1b3c: Unknown result type (might be due to invalid IL or missing references) //IL_1b41: Unknown result type (might be due to invalid IL or missing references) //IL_1b47: Unknown result type (might be due to invalid IL or missing references) //IL_1b4c: Unknown result type (might be due to invalid IL or missing references) //IL_1b57: Unknown result type (might be due to invalid IL or missing references) //IL_1b5d: Unknown result type (might be due to invalid IL or missing references) //IL_1b62: Unknown result type (might be due to invalid IL or missing references) //IL_1b68: Unknown result type (might be due to invalid IL or missing references) //IL_1b72: Unknown result type (might be due to invalid IL or missing references) //IL_1b77: Unknown result type (might be due to invalid IL or missing references) //IL_1b7d: Unknown result type (might be due to invalid IL or missing references) //IL_1b87: Unknown result type (might be due to invalid IL or missing references) //IL_1b8c: Unknown result type (might be due to invalid IL or missing references) //IL_1b92: Unknown result type (might be due to invalid IL or missing references) //IL_1b9c: Unknown result type (might be due to invalid IL or missing references) //IL_1ba1: Unknown result type (might be due to invalid IL or missing references) //IL_1ba7: Unknown result type (might be due to invalid IL or missing references) //IL_1bac: Unknown result type (might be due to invalid IL or missing references) //IL_1bb2: Unknown result type (might be due to invalid IL or missing references) //IL_1bb7: Unknown result type (might be due to invalid IL or missing references) //IL_1bc3: Unknown result type (might be due to invalid IL or missing references) //IL_19da: Unknown result type (might be due to invalid IL or missing references) //IL_19e0: Unknown result type (might be due to invalid IL or missing references) //IL_19e5: Unknown result type (might be due to invalid IL or missing references) //IL_19eb: Unknown result type (might be due to invalid IL or missing references) //IL_19f5: Unknown result type (might be due to invalid IL or missing references) //IL_19fa: Unknown result type (might be due to invalid IL or missing references) //IL_1a00: Unknown result type (might be due to invalid IL or missing references) //IL_1a0a: Unknown result type (might be due to invalid IL or missing references) //IL_1a0f: Unknown result type (might be due to invalid IL or missing references) //IL_1a15: Unknown result type (might be due to invalid IL or missing references) //IL_1a1f: Unknown result type (might be due to invalid IL or missing references) //IL_1a24: Unknown result type (might be due to invalid IL or missing references) //IL_1a2a: Unknown result type (might be due to invalid IL or missing references) //IL_1a2f: Unknown result type (might be due to invalid IL or missing references) //IL_1a35: Unknown result type (might be due to invalid IL or missing references) //IL_1a3a: Unknown result type (might be due to invalid IL or missing references) //IL_1a40: Unknown result type (might be due to invalid IL or missing references) //IL_1a45: Unknown result type (might be due to invalid IL or missing references) //IL_1a50: Unknown result type (might be due to invalid IL or missing references) //IL_1a56: Unknown result type (might be due to invalid IL or missing references) //IL_1a5b: Unknown result type (might be due to invalid IL or missing references) //IL_1a61: Unknown result type (might be due to invalid IL or missing references) //IL_1a6b: Unknown result type (might be due to invalid IL or missing references) //IL_1a70: Unknown result type (might be due to invalid IL or missing references) //IL_1a76: Unknown result type (might be due to invalid IL or missing references) //IL_1a7b: Unknown result type (might be due to invalid IL or missing references) //IL_1a81: Unknown result type (might be due to invalid IL or missing references) //IL_1a8b: Unknown result type (might be due to invalid IL or missing references) //IL_1a90: Unknown result type (might be due to invalid IL or missing references) //IL_1a96: Unknown result type (might be due to invalid IL or missing references) //IL_1aa0: Unknown result type (might be due to invalid IL or missing references) //IL_1aa5: Unknown result type (might be due to invalid IL or missing references) //IL_1aab: Unknown result type (might be due to invalid IL or missing references) //IL_1ab0: Unknown result type (might be due to invalid IL or missing references) //IL_1ab6: Unknown result type (might be due to invalid IL or missing references) //IL_1abb: Unknown result type (might be due to invalid IL or missing references) //IL_1ac7: Unknown result type (might be due to invalid IL or missing references) //IL_0854: Unknown result type (might be due to invalid IL or missing references) //IL_085a: Unknown result type (might be due to invalid IL or missing references) //IL_085f: Unknown result type (might be due to invalid IL or missing references) //IL_0865: Unknown result type (might be due to invalid IL or missing references) //IL_086a: Unknown result type (might be due to invalid IL or missing references) //IL_0870: Unknown result type (might be due to invalid IL or missing references) //IL_087a: Unknown result type (might be due to invalid IL or missing references) //IL_087f: Unknown result type (might be due to invalid IL or missing references) //IL_0885: Unknown result type (might be due to invalid IL or missing references) //IL_088f: Unknown result type (might be due to invalid IL or missing references) //IL_0895: Unknown result type (might be due to invalid IL or missing references) //IL_089a: Unknown result type (might be due to invalid IL or missing references) //IL_08a0: Unknown result type (might be due to invalid IL or missing references) //IL_08a5: Unknown result type (might be due to invalid IL or missing references) //IL_08aa: Unknown result type (might be due to invalid IL or missing references) //IL_08b0: Unknown result type (might be due to invalid IL or missing references) //IL_08ba: Unknown result type (might be due to invalid IL or missing references) //IL_08bf: Unknown result type (might be due to invalid IL or missing references) //IL_08ca: Unknown result type (might be due to invalid IL or missing references) //IL_08d0: Unknown result type (might be due to invalid IL or missing references) //IL_08d5: Unknown result type (might be due to invalid IL or missing references) //IL_08db: Unknown result type (might be due to invalid IL or missing references) //IL_08e0: Unknown result type (might be due to invalid IL or missing references) //IL_08e6: Unknown result type (might be due to invalid IL or missing references) //IL_08f0: Unknown result type (might be due to invalid IL or missing references) //IL_08f5: Unknown result type (might be due to invalid IL or missing references) //IL_08fb: Unknown result type (might be due to invalid IL or missing references) //IL_0905: Unknown result type (might be due to invalid IL or missing references) //IL_090b: Unknown result type (might be due to invalid IL or missing references) //IL_0910: Unknown result type (might be due to invalid IL or missing references) //IL_0916: Unknown result type (might be due to invalid IL or missing references) //IL_091b: Unknown result type (might be due to invalid IL or missing references) //IL_0920: Unknown result type (might be due to invalid IL or missing references) //IL_0926: Unknown result type (might be due to invalid IL or missing references) //IL_0930: Unknown result type (might be due to invalid IL or missing references) //IL_0935: Unknown result type (might be due to invalid IL or missing references) //IL_0941: Unknown result type (might be due to invalid IL or missing references) //IL_07a3: Unknown result type (might be due to invalid IL or missing references) //IL_07a8: Unknown result type (might be due to invalid IL or missing references) //IL_2d1c: Unknown result type (might be due to invalid IL or missing references) //IL_2d22: Unknown result type (might be due to invalid IL or missing references) //IL_2d27: Unknown result type (might be due to invalid IL or missing references) //IL_2d2d: Unknown result type (might be due to invalid IL or missing references) //IL_2d32: Unknown result type (might be due to invalid IL or missing references) //IL_2d38: Unknown result type (might be due to invalid IL or missing references) //IL_2d3d: Unknown result type (might be due to invalid IL or missing references) //IL_2d43: Unknown result type (might be due to invalid IL or missing references) //IL_2d4d: Unknown result type (might be due to invalid IL or missing references) //IL_2d52: Unknown result type (might be due to invalid IL or missing references) //IL_2d58: Unknown result type (might be due to invalid IL or missing references) //IL_2d62: Unknown result type (might be due to invalid IL or missing references) //IL_2d67: Unknown result type (might be due to invalid IL or missing references) //IL_2d6d: Unknown result type (might be due to invalid IL or missing references) //IL_2d77: Unknown result type (might be due to invalid IL or missing references) //IL_2d7c: Unknown result type (might be due to invalid IL or missing references) //IL_2d82: Unknown result type (might be due to invalid IL or missing references) //IL_2d87: Unknown result type (might be due to invalid IL or missing references) //IL_2d8d: Unknown result type (might be due to invalid IL or missing references) //IL_2d92: Unknown result type (might be due to invalid IL or missing references) //IL_2d9d: Unknown result type (might be due to invalid IL or missing references) //IL_2da3: Unknown result type (might be due to invalid IL or missing references) //IL_2da8: Unknown result type (might be due to invalid IL or missing references) //IL_2dae: Unknown result type (might be due to invalid IL or missing references) //IL_2db3: Unknown result type (might be due to invalid IL or missing references) //IL_2db9: Unknown result type (might be due to invalid IL or missing references) //IL_2dbe: Unknown result type (might be due to invalid IL or missing references) //IL_2dc4: Unknown result type (might be due to invalid IL or missing references) //IL_2dce: Unknown result type (might be due to invalid IL or missing references) //IL_2dd3: Unknown result type (might be due to invalid IL or missing references) //IL_2dd9: Unknown result type (might be due to invalid IL or missing references) //IL_2de3: Unknown result type (might be due to invalid IL or missing references) //IL_2de8: Unknown result type (might be due to invalid IL or missing references) //IL_2dee: Unknown result type (might be due to invalid IL or missing references) //IL_2df8: Unknown result type (might be due to invalid IL or missing references) //IL_2dfd: Unknown result type (might be due to invalid IL or missing references) //IL_2e03: Unknown result type (might be due to invalid IL or missing references) //IL_2e08: Unknown result type (might be due to invalid IL or missing references) //IL_2e14: Unknown result type (might be due to invalid IL or missing references) //IL_2bff: Unknown result type (might be due to invalid IL or missing references) //IL_2c05: Unknown result type (might be due to invalid IL or missing references) //IL_2c0a: Unknown result type (might be due to invalid IL or missing references) //IL_2c10: Unknown result type (might be due to invalid IL or missing references) //IL_2c15: Unknown result type (might be due to invalid IL or missing references) //IL_2c1b: Unknown result type (might be due to invalid IL or missing references) //IL_2c20: Unknown result type (might be due to invalid IL or missing references) //IL_2c26: Unknown result type (might be due to invalid IL or missing references) //IL_2c30: Unknown result type (might be due to invalid IL or missing references) //IL_2c35: Unknown result type (might be due to invalid IL or missing references) //IL_2c3b: Unknown result type (might be due to invalid IL or missing references) //IL_2c45: Unknown result type (might be due to invalid IL or missing references) //IL_2c4a: Unknown result type (might be due to invalid IL or missing references) //IL_2c50: Unknown result type (might be due to invalid IL or missing references) //IL_2c5a: Unknown result type (might be due to invalid IL or missing references) //IL_2c5f: Unknown result type (might be due to invalid IL or missing references) //IL_2c65: Unknown result type (might be due to invalid IL or missing references) //IL_2c6a: Unknown result type (might be due to invalid IL or missing references) //IL_2c70: Unknown result type (might be due to invalid IL or missing references) //IL_2c75: Unknown result type (might be due to invalid IL or missing references) //IL_2c80: Unknown result type (might be due to invalid IL or missing references) //IL_2c86: Unknown result type (might be due to invalid IL or missing references) //IL_2c8b: Unknown result type (might be due to invalid IL or missing references) //IL_2c91: Unknown result type (might be due to invalid IL or missing references) //IL_2c96: Unknown result type (might be due to invalid IL or missing references) //IL_2c9c: Unknown result type (might be due to invalid IL or missing references) //IL_2ca1: Unknown result type (might be due to invalid IL or missing references) //IL_2ca7: Unknown result type (might be due to invalid IL or missing references) //IL_2cb1: Unknown result type (might be due to invalid IL or missing references) //IL_2cb6: Unknown result type (might be due to invalid IL or missing references) //IL_2cbc: Unknown result type (might be due to invalid IL or missing references) //IL_2cc1: Unknown result type (might be due to invalid IL or missing references) //IL_2cc7: Unknown result type (might be due to invalid IL or missing references) //IL_2cd1: Unknown result type (might be due to invalid IL or missing references) //IL_2cd6: Unknown result type (might be due to invalid IL or missing references) //IL_2cdc: Unknown result type (might be due to invalid IL or missing references) //IL_2ce6: Unknown result type (might be due to invalid IL or missing references) //IL_2ceb: Unknown result type (might be due to invalid IL or missing references) //IL_2cf1: Unknown result type (might be due to invalid IL or missing references) //IL_2cf6: Unknown result type (might be due to invalid IL or missing references) //IL_2d02: Unknown result type (might be due to invalid IL or missing references) //IL_1bde: Unknown result type (might be due to invalid IL or missing references) //IL_1be3: Unknown result type (might be due to invalid IL or missing references) //IL_0a0f: Unknown result type (might be due to invalid IL or missing references) //IL_0a15: Unknown result type (might be due to invalid IL or missing references) //IL_0a1a: Unknown result type (might be due to invalid IL or missing references) //IL_0a20: Unknown result type (might be due to invalid IL or missing references) //IL_0a25: Unknown result type (might be due to invalid IL or missing references) //IL_0a2b: Unknown result type (might be due to invalid IL or missing references) //IL_0a35: Unknown result type (might be due to invalid IL or missing references) //IL_0a3a: Unknown result type (might be due to invalid IL or missing references) //IL_0a40: Unknown result type (might be due to invalid IL or missing references) //IL_0a4a: Unknown result type (might be due to invalid IL or missing references) //IL_0a50: Unknown result type (might be due to invalid IL or missing references) //IL_0a55: Unknown result type (might be due to invalid IL or missing references) //IL_0a5b: Unknown result type (might be due to invalid IL or missing references) //IL_0a60: Unknown result type (might be due to invalid IL or missing references) //IL_0a65: Unknown result type (might be due to invalid IL or missing references) //IL_0a6b: Unknown result type (might be due to invalid IL or missing references) //IL_0a75: Unknown result type (might be due to invalid IL or missing references) //IL_0a7a: Unknown result type (might be due to invalid IL or missing references) //IL_0a85: Unknown result type (might be due to invalid IL or missing references) //IL_0a8b: Unknown result type (might be due to invalid IL or missing references) //IL_0a90: Unknown result type (might be due to invalid IL or missing references) //IL_0a96: Unknown result type (might be due to invalid IL or missing references) //IL_0a9b: Unknown result type (might be due to invalid IL or missing references) //IL_0aa1: Unknown result type (might be due to invalid IL or missing references) //IL_0aab: Unknown result type (might be due to invalid IL or missing references) //IL_0ab0: Unknown result type (might be due to invalid IL or missing references) //IL_0ab6: Unknown result type (might be due to invalid IL or missing references) //IL_0ac0: Unknown result type (might be due to invalid IL or missing references) //IL_0ac6: Unknown result type (might be due to invalid IL or missing references) //IL_0acb: Unknown result type (might be due to invalid IL or missing references) //IL_0ad1: Unknown result type (might be due to invalid IL or missing references) //IL_0ad6: Unknown result type (might be due to invalid IL or missing references) //IL_0adb: Unknown result type (might be due to invalid IL or missing references) //IL_0ae1: Unknown result type (might be due to invalid IL or missing references) //IL_0aeb: Unknown result type (might be due to invalid IL or missing references) //IL_0af0: Unknown result type (might be due to invalid IL or missing references) //IL_0afc: Unknown result type (might be due to invalid IL or missing references) //IL_095b: Unknown result type (might be due to invalid IL or missing references) //IL_0960: Unknown result type (might be due to invalid IL or missing references) //IL_07dc: Unknown result type (might be due to invalid IL or missing references) //IL_07e1: Unknown result type (might be due to invalid IL or missing references) //IL_07ef: Unknown result type (might be due to invalid IL or missing references) //IL_07f4: Unknown result type (might be due to invalid IL or missing references) //IL_080f: Unknown result type (might be due to invalid IL or missing references) //IL_0814: Unknown result type (might be due to invalid IL or missing references) //IL_081d: Unknown result type (might be due to invalid IL or missing references) //IL_0828: Unknown result type (might be due to invalid IL or missing references) //IL_0839: Unknown result type (might be due to invalid IL or missing references) //IL_083e: Unknown result type (might be due to invalid IL or missing references) //IL_0843: Unknown result type (might be due to invalid IL or missing references) //IL_2e2f: Unknown result type (might be due to invalid IL or missing references) //IL_2e35: Unknown result type (might be due to invalid IL or missing references) //IL_2e3a: Unknown result type (might be due to invalid IL or missing references) //IL_2e40: Unknown result type (might be due to invalid IL or missing references) //IL_2e4a: Unknown result type (might be due to invalid IL or missing references) //IL_2e4f: Unknown result type (might be due to invalid IL or missing references) //IL_2e55: Unknown result type (might be due to invalid IL or missing references) //IL_2e5f: Unknown result type (might be due to invalid IL or missing references) //IL_2e64: Unknown result type (might be due to invalid IL or missing references) //IL_2e6a: Unknown result type (might be due to invalid IL or missing references) //IL_2e74: Unknown result type (might be due to invalid IL or missing references) //IL_2e79: Unknown result type (might be due to invalid IL or missing references) //IL_2e7f: Unknown result type (might be due to invalid IL or missing references) //IL_2e84: Unknown result type (might be due to invalid IL or missing references) //IL_2e8a: Unknown result type (might be due to invalid IL or missing references) //IL_2e8f: Unknown result type (might be due to invalid IL or missing references) //IL_2e95: Unknown result type (might be due to invalid IL or missing references) //IL_2e9a: Unknown result type (might be due to invalid IL or missing references) //IL_2ea5: Unknown result type (might be due to invalid IL or missing references) //IL_2eab: Unknown result type (might be due to invalid IL or missing references) //IL_2eb0: Unknown result type (might be due to invalid IL or missing references) //IL_2eb6: Unknown result type (might be due to invalid IL or missing references) //IL_2ec0: Unknown result type (might be due to invalid IL or missing references) //IL_2ec5: Unknown result type (might be due to invalid IL or missing references) //IL_2ecb: Unknown result type (might be due to invalid IL or missing references) //IL_2ed5: Unknown result type (might be due to invalid IL or missing references) //IL_2eda: Unknown result type (might be due to invalid IL or missing references) //IL_2ee0: Unknown result type (might be due to invalid IL or missing references) //IL_2eea: Unknown result type (might be due to invalid IL or missing references) //IL_2eef: Unknown result type (might be due to invalid IL or missing references) //IL_2ef5: Unknown result type (might be due to invalid IL or missing references) //IL_2efa: Unknown result type (might be due to invalid IL or missing references) //IL_2f00: Unknown result type (might be due to invalid IL or missing references) //IL_2f05: Unknown result type (might be due to invalid IL or missing references) //IL_2f0b: Unknown result type (might be due to invalid IL or missing references) //IL_2f10: Unknown result type (might be due to invalid IL or missing references) //IL_2f1c: Unknown result type (might be due to invalid IL or missing references) //IL_1c1f: Unknown result type (might be due to invalid IL or missing references) //IL_1c25: Unknown result type (might be due to invalid IL or missing references) //IL_1c2a: Unknown result type (might be due to invalid IL or missing references) //IL_1c30: Unknown result type (might be due to invalid IL or missing references) //IL_1c35: Unknown result type (might be due to invalid IL or missing references) //IL_1c3b: Unknown result type (might be due to invalid IL or missing references) //IL_1c45: Unknown result type (might be due to invalid IL or missing references) //IL_1c4a: Unknown result type (might be due to invalid IL or missing references) //IL_1c50: Unknown result type (might be due to invalid IL or missing references) //IL_1c5a: Unknown result type (might be due to invalid IL or missing references) //IL_1c60: Unknown result type (might be due to invalid IL or missing references) //IL_1c65: Unknown result type (might be due to invalid IL or missing references) //IL_1c6b: Unknown result type (might be due to invalid IL or missing references) //IL_1c70: Unknown result type (might be due to invalid IL or missing references) //IL_1c75: Unknown result type (might be due to invalid IL or missing references) //IL_1c80: Unknown result type (might be due to invalid IL or missing references) //IL_1c86: Unknown result type (might be due to invalid IL or missing references) //IL_1c8b: Unknown result type (might be due to invalid IL or missing references) //IL_1c91: Unknown result type (might be due to invalid IL or missing references) //IL_1c96: Unknown result type (might be due to invalid IL or missing references) //IL_1c9c: Unknown result type (might be due to invalid IL or missing references) //IL_1ca6: Unknown result type (might be due to invalid IL or missing references) //IL_1cab: Unknown result type (might be due to invalid IL or missing references) //IL_1cb1: Unknown result type (might be due to invalid IL or missing references) //IL_1cbb: Unknown result type (might be due to invalid IL or missing references) //IL_1cc1: Unknown result type (might be due to invalid IL or missing references) //IL_1cc6: Unknown result type (might be due to invalid IL or missing references) //IL_1ccc: Unknown result type (might be due to invalid IL or missing references) //IL_1cd1: Unknown result type (might be due to invalid IL or missing references) //IL_1cd6: Unknown result type (might be due to invalid IL or missing references) //IL_1ce2: Unknown result type (might be due to invalid IL or missing references) //IL_0bca: Unknown result type (might be due to invalid IL or missing references) //IL_0bd0: Unknown result type (might be due to invalid IL or missing references) //IL_0bd5: Unknown result type (might be due to invalid IL or missing references) //IL_0bdb: Unknown result type (might be due to invalid IL or missing references) //IL_0be0: Unknown result type (might be due to invalid IL or missing references) //IL_0be6: Unknown result type (might be due to invalid IL or missing references) //IL_0bf0: Unknown result type (might be due to invalid IL or missing references) //IL_0bf5: Unknown result type (might be due to invalid IL or missing references) //IL_0bfb: Unknown result type (might be due to invalid IL or missing references) //IL_0c05: Unknown result type (might be due to invalid IL or missing references) //IL_0c0b: Unknown result type (might be due to invalid IL or missing references) //IL_0c10: Unknown result type (might be due to invalid IL or missing references) //IL_0c16: Unknown result type (might be due to invalid IL or missing references) //IL_0c1b: Unknown result type (might be due to invalid IL or missing references) //IL_0c20: Unknown result type (might be due to invalid IL or missing references) //IL_0c26: Unknown result type (might be due to invalid IL or missing references) //IL_0c30: Unknown result type (might be due to invalid IL or missing references) //IL_0c35: Unknown result type (might be due to invalid IL or missing references) //IL_0c40: Unknown result type (might be due to invalid IL or missing references) //IL_0c46: Unknown result type (might be due to invalid IL or missing references) //IL_0c4b: Unknown result type (might be due to invalid IL or missing references) //IL_0c51: Unknown result type (might be due to invalid IL or missing references) //IL_0c56: Unknown result type (might be due to invalid IL or missing references) //IL_0c5c: Unknown result type (might be due to invalid IL or missing references) //IL_0c66: Unknown result type (might be due to invalid IL or missing references) //IL_0c6b: Unknown result type (might be due to invalid IL or missing references) //IL_0c71: Unknown result type (might be due to invalid IL or missing references) //IL_0c7b: Unknown result type (might be due to invalid IL or missing references) //IL_0c81: Unknown result type (might be due to invalid IL or missing references) //IL_0c86: Unknown result type (might be due to invalid IL or missing references) //IL_0c8c: Unknown result type (might be due to invalid IL or missing references) //IL_0c91: Unknown result type (might be due to invalid IL or missing references) //IL_0c96: Unknown result type (might be due to invalid IL or missing references) //IL_0c9c: Unknown result type (might be due to invalid IL or missing references) //IL_0ca6: Unknown result type (might be due to invalid IL or missing references) //IL_0cab: Unknown result type (might be due to invalid IL or missing references) //IL_0cb7: Unknown result type (might be due to invalid IL or missing references) //IL_0b16: Unknown result type (might be due to invalid IL or missing references) //IL_0b1b: Unknown result type (might be due to invalid IL or missing references) //IL_0995: Unknown result type (might be due to invalid IL or missing references) //IL_099a: Unknown result type (might be due to invalid IL or missing references) //IL_09a9: Unknown result type (might be due to invalid IL or missing references) //IL_09ae: Unknown result type (might be due to invalid IL or missing references) //IL_09ca: Unknown result type (might be due to invalid IL or missing references) //IL_09cf: Unknown result type (might be due to invalid IL or missing references) //IL_09d8: Unknown result type (might be due to invalid IL or missing references) //IL_09e3: Unknown result type (might be due to invalid IL or missing references) //IL_09f4: Unknown result type (might be due to invalid IL or missing references) //IL_09f9: Unknown result type (might be due to invalid IL or missing references) //IL_09fe: Unknown result type (might be due to invalid IL or missing references) //IL_303d: Unknown result type (might be due to invalid IL or missing references) //IL_3043: Unknown result type (might be due to invalid IL or missing references) //IL_3048: Unknown result type (might be due to invalid IL or missing references) //IL_304e: Unknown result type (might be due to invalid IL or missing references) //IL_3058: Unknown result type (might be due to invalid IL or missing references) //IL_305d: Unknown result type (might be due to invalid IL or missing references) //IL_3063: Unknown result type (might be due to invalid IL or missing references) //IL_306d: Unknown result type (might be due to invalid IL or missing references) //IL_3072: Unknown result type (might be due to invalid IL or missing references) //IL_3078: Unknown result type (might be due to invalid IL or missing references) //IL_3082: Unknown result type (might be due to invalid IL or missing references) //IL_3087: Unknown result type (might be due to invalid IL or missing references) //IL_308d: Unknown result type (might be due to invalid IL or missing references) //IL_3092: Unknown result type (might be due to invalid IL or missing references) //IL_3098: Unknown result type (might be due to invalid IL or missing references) //IL_309d: Unknown result type (might be due to invalid IL or missing references) //IL_30a3: Unknown result type (might be due to invalid IL or missing references) //IL_30a8: Unknown result type (might be due to invalid IL or missing references) //IL_30b3: Unknown result type (might be due to invalid IL or missing references) //IL_30b9: Unknown result type (might be due to invalid IL or missing references) //IL_30be: Unknown result type (might be due to invalid IL or missing references) //IL_30c4: Unknown result type (might be due to invalid IL or missing references) //IL_30ce: Unknown result type (might be due to invalid IL or missing references) //IL_30d3: Unknown result type (might be due to invalid IL or missing references) //IL_30d9: Unknown result type (might be due to invalid IL or missing references) //IL_30e3: Unknown result type (might be due to invalid IL or missing references) //IL_30e8: Unknown result type (might be due to invalid IL or missing references) //IL_30ee: Unknown result type (might be due to invalid IL or missing references) //IL_30f8: Unknown result type (might be due to invalid IL or missing references) //IL_30fd: Unknown result type (might be due to invalid IL or missing references) //IL_3103: Unknown result type (might be due to invalid IL or missing references) //IL_3108: Unknown result type (might be due to invalid IL or missing references) //IL_310e: Unknown result type (might be due to invalid IL or missing references) //IL_3113: Unknown result type (might be due to invalid IL or missing references) //IL_311f: Unknown result type (might be due to invalid IL or missing references) //IL_2f36: Unknown result type (might be due to invalid IL or missing references) //IL_2f3c: Unknown result type (might be due to invalid IL or missing references) //IL_2f41: Unknown result type (might be due to invalid IL or missing references) //IL_2f47: Unknown result type (might be due to invalid IL or missing references) //IL_2f51: Unknown result type (might be due to invalid IL or missing references) //IL_2f56: Unknown result type (might be due to invalid IL or missing references) //IL_2f5c: Unknown result type (might be due to invalid IL or missing references) //IL_2f66: Unknown result type (might be due to invalid IL or missing references) //IL_2f6b: Unknown result type (might be due to invalid IL or missing references) //IL_2f71: Unknown result type (might be due to invalid IL or missing references) //IL_2f7b: Unknown result type (might be due to invalid IL or missing references) //IL_2f80: Unknown result type (might be due to invalid IL or missing references) //IL_2f86: Unknown result type (might be due to invalid IL or missing references) //IL_2f8b: Unknown result type (might be due to invalid IL or missing references) //IL_2f91: Unknown result type (might be due to invalid IL or missing references) //IL_2f96: Unknown result type (might be due to invalid IL or missing references) //IL_2f9c: Unknown result type (might be due to invalid IL or missing references) //IL_2fa1: Unknown result type (might be due to invalid IL or missing references) //IL_2fac: Unknown result type (might be due to invalid IL or missing references) //IL_2fb2: Unknown result type (might be due to invalid IL or missing references) //IL_2fb7: Unknown result type (might be due to invalid IL or missing references) //IL_2fbd: Unknown result type (might be due to invalid IL or missing references) //IL_2fc7: Unknown result type (might be due to invalid IL or missing references) //IL_2fcc: Unknown result type (might be due to invalid IL or missing references) //IL_2fd2: Unknown result type (might be due to invalid IL or missing references) //IL_2fd7: Unknown result type (might be due to invalid IL or missing references) //IL_2fdd: Unknown result type (might be due to invalid IL or missing references) //IL_2fe7: Unknown result type (might be due to invalid IL or missing references) //IL_2fec: Unknown result type (might be due to invalid IL or missing references) //IL_2ff2: Unknown result type (might be due to invalid IL or missing references) //IL_2ffc: Unknown result type (might be due to invalid IL or missing references) //IL_3001: Unknown result type (might be due to invalid IL or missing references) //IL_3007: Unknown result type (might be due to invalid IL or missing references) //IL_300c: Unknown result type (might be due to invalid IL or missing references) //IL_3012: Unknown result type (might be due to invalid IL or missing references) //IL_3017: Unknown result type (might be due to invalid IL or missing references) //IL_3023: Unknown result type (might be due to invalid IL or missing references) //IL_1db0: Unknown result type (might be due to invalid IL or missing references) //IL_1db6: Unknown result type (might be due to invalid IL or missing references) //IL_1dbb: Unknown result type (might be due to invalid IL or missing references) //IL_1dc1: Unknown result type (might be due to invalid IL or missing references) //IL_1dc6: Unknown result type (might be due to invalid IL or missing references) //IL_1dcc: Unknown result type (might be due to invalid IL or missing references) //IL_1dd6: Unknown result type (might be due to invalid IL or missing references) //IL_1ddb: Unknown result type (might be due to invalid IL or missing references) //IL_1de1: Unknown result type (might be due to invalid IL or missing references) //IL_1deb: Unknown result type (might be due to invalid IL or missing references) //IL_1df1: Unknown result type (might be due to invalid IL or missing references) //IL_1df6: Unknown result type (might be due to invalid IL or missing references) //IL_1dfc: Unknown result type (might be due to invalid IL or missing references) //IL_1e01: Unknown result type (might be due to invalid IL or missing references) //IL_1e06: Unknown result type (might be due to invalid IL or missing references) //IL_1e0c: Unknown result type (might be due to invalid IL or missing references) //IL_1e16: Unknown result type (might be due to invalid IL or missing references) //IL_1e1b: Unknown result type (might be due to invalid IL or missing references) //IL_1e26: Unknown result type (might be due to invalid IL or missing references) //IL_1e2c: Unknown result type (might be due to invalid IL or missing references) //IL_1e31: Unknown result type (might be due to invalid IL or missing references) //IL_1e37: Unknown result type (might be due to invalid IL or missing references) //IL_1e3c: Unknown result type (might be due to invalid IL or missing references) //IL_1e42: Unknown result type (might be due to invalid IL or missing references) //IL_1e4c: Unknown result type (might be due to invalid IL or missing references) //IL_1e51: Unknown result type (might be due to invalid IL or missing references) //IL_1e57: Unknown result type (might be due to invalid IL or missing references) //IL_1e61: Unknown result type (might be due to invalid IL or missing references) //IL_1e67: Unknown result type (might be due to invalid IL or missing references) //IL_1e6c: Unknown result type (might be due to invalid IL or missing references) //IL_1e72: Unknown result type (might be due to invalid IL or missing references) //IL_1e77: Unknown result type (might be due to invalid IL or missing references) //IL_1e7c: Unknown result type (might be due to invalid IL or missing references) //IL_1e82: Unknown result type (might be due to invalid IL or missing references) //IL_1e8c: Unknown result type (might be due to invalid IL or missing references) //IL_1e91: Unknown result type (might be due to invalid IL or missing references) //IL_1e9d: Unknown result type (might be due to invalid IL or missing references) //IL_1cfc: Unknown result type (might be due to invalid IL or missing references) //IL_1d01: Unknown result type (might be due to invalid IL or missing references) //IL_0d85: Unknown result type (might be due to invalid IL or missing references) //IL_0d8b: Unknown result type (might be due to invalid IL or missing references) //IL_0d90: Unknown result type (might be due to invalid IL or missing references) //IL_0d96: Unknown result type (might be due to invalid IL or missing references) //IL_0d9b: Unknown result type (might be due to invalid IL or missing references) //IL_0da1: Unknown result type (might be due to invalid IL or missing references) //IL_0dab: Unknown result type (might be due to invalid IL or missing references) //IL_0db0: Unknown result type (might be due to invalid IL or missing references) //IL_0db6: Unknown result type (might be due to invalid IL or missing references) //IL_0dc0: Unknown result type (might be due to invalid IL or missing references) //IL_0dc6: Unknown result type (might be due to invalid IL or missing references) //IL_0dcb: Unknown result type (might be due to invalid IL or missing references) //IL_0dd1: Unknown result type (might be due to invalid IL or missing references) //IL_0dd6: Unknown result type (might be due to invalid IL or missing references) //IL_0ddb: Unknown result type (might be due to invalid IL or missing references) //IL_0de1: Unknown result type (might be due to invalid IL or missing references) //IL_0deb: Unknown result type (might be due to invalid IL or missing references) //IL_0df0: Unknown result type (might be due to invalid IL or missing references) //IL_0dfb: Unknown result type (might be due to invalid IL or missing references) //IL_0e01: Unknown result type (might be due to invalid IL or missing references) //IL_0e06: Unknown result type (might be due to invalid IL or missing references) //IL_0e0c: Unknown result type (might be due to invalid IL or missing references) //IL_0e11: Unknown result type (might be due to invalid IL or missing references) //IL_0e17: Unknown result type (might be due to invalid IL or missing references) //IL_0e21: Unknown result type (might be due to invalid IL or missing references) //IL_0e26: Unknown result type (might be due to invalid IL or missing references) //IL_0e2c: Unknown result type (might be due to invalid IL or missing references) //IL_0e36: Unknown result type (might be due to invalid IL or missing references) //IL_0e3c: Unknown result type (might be due to invalid IL or missing references) //IL_0e41: Unknown result type (might be due to invalid IL or missing references) //IL_0e47: Unknown result type (might be due to invalid IL or missing references) //IL_0e4c: Unknown result type (might be due to invalid IL or missing references) //IL_0e51: Unknown result type (might be due to invalid IL or missing references) //IL_0e57: Unknown result type (might be due to invalid IL or missing references) //IL_0e61: Unknown result type (might be due to invalid IL or missing references) //IL_0e66: Unknown result type (might be due to invalid IL or missing references) //IL_0e72: Unknown result type (might be due to invalid IL or missing references) //IL_0cd1: Unknown result type (might be due to invalid IL or missing references) //IL_0cd6: Unknown result type (might be due to invalid IL or missing references) //IL_0b50: Unknown result type (might be due to invalid IL or missing references) //IL_0b55: Unknown result type (might be due to invalid IL or missing references) //IL_0b64: Unknown result type (might be due to invalid IL or missing references) //IL_0b69: Unknown result type (might be due to invalid IL or missing references) //IL_0b85: Unknown result type (might be due to invalid IL or missing references) //IL_0b8a: Unknown result type (might be due to invalid IL or missing references) //IL_0b93: Unknown result type (might be due to invalid IL or missing references) //IL_0b9e: Unknown result type (might be due to invalid IL or missing references) //IL_0baf: Unknown result type (might be due to invalid IL or missing references) //IL_0bb4: Unknown result type (might be due to invalid IL or missing references) //IL_0bb9: Unknown result type (might be due to invalid IL or missing references) //IL_313a: Unknown result type (might be due to invalid IL or missing references) //IL_313f: Unknown result type (might be due to invalid IL or missing references) //IL_1f6b: Unknown result type (might be due to invalid IL or missing references) //IL_1f71: Unknown result type (might be due to invalid IL or missing references) //IL_1f76: Unknown result type (might be due to invalid IL or missing references) //IL_1f7c: Unknown result type (might be due to invalid IL or missing references) //IL_1f81: Unknown result type (might be due to invalid IL or missing references) //IL_1f87: Unknown result type (might be due to invalid IL or missing references) //IL_1f91: Unknown result type (might be due to invalid IL or missing references) //IL_1f96: Unknown result type (might be due to invalid IL or missing references) //IL_1f9c: Unknown result type (might be due to invalid IL or missing references) //IL_1fa6: Unknown result type (might be due to invalid IL or missing references) //IL_1fac: Unknown result type (might be due to invalid IL or missing references) //IL_1fb1: Unknown result type (might be due to invalid IL or missing references) //IL_1fb7: Unknown result type (might be due to invalid IL or missing references) //IL_1fbc: Unknown result type (might be due to invalid IL or missing references) //IL_1fc1: Unknown result type (might be due to invalid IL or missing references) //IL_1fc7: Unknown result type (might be due to invalid IL or missing references) //IL_1fd1: Unknown result type (might be due to invalid IL or missing references) //IL_1fd6: Unknown result type (might be due to invalid IL or missing references) //IL_1fe1: Unknown result type (might be due to invalid IL or missing references) //IL_1fe7: Unknown result type (might be due to invalid IL or missing references) //IL_1fec: Unknown result type (might be due to invalid IL or missing references) //IL_1ff2: Unknown result type (might be due to invalid IL or missing references) //IL_1ff7: Unknown result type (might be due to invalid IL or missing references) //IL_1ffd: Unknown result type (might be due to invalid IL or missing references) //IL_2007: Unknown result type (might be due to invalid IL or missing references) //IL_200c: Unknown result type (might be due to invalid IL or missing references) //IL_2012: Unknown result type (might be due to invalid IL or missing references) //IL_201c: Unknown result type (might be due to invalid IL or missing references) //IL_2022: Unknown result type (might be due to invalid IL or missing references) //IL_2027: Unknown result type (might be due to invalid IL or missing references) //IL_202d: Unknown result type (might be due to invalid IL or missing references) //IL_2032: Unknown result type (might be due to invalid IL or missing references) //IL_2037: Unknown result type (might be due to invalid IL or missing references) //IL_203d: Unknown result type (might be due to invalid IL or missing references) //IL_2047: Unknown result type (might be due to invalid IL or missing references) //IL_204c: Unknown result type (might be due to invalid IL or missing references) //IL_2058: Unknown result type (might be due to invalid IL or missing references) //IL_1eb7: Unknown result type (might be due to invalid IL or missing references) //IL_1ebc: Unknown result type (might be due to invalid IL or missing references) //IL_1d36: Unknown result type (might be due to invalid IL or missing references) //IL_1d3b: Unknown result type (might be due to invalid IL or missing references) //IL_1d4a: Unknown result type (might be due to invalid IL or missing references) //IL_1d4f: Unknown result type (might be due to invalid IL or missing references) //IL_1d6b: Unknown result type (might be due to invalid IL or missing references) //IL_1d70: Unknown result type (might be due to invalid IL or missing references) //IL_1d79: Unknown result type (might be due to invalid IL or missing references) //IL_1d84: Unknown result type (might be due to invalid IL or missing references) //IL_1d95: Unknown result type (might be due to invalid IL or missing references) //IL_1d9a: Unknown result type (might be due to invalid IL or missing references) //IL_1d9f: Unknown result type (might be due to invalid IL or missing references) //IL_0f40: Unknown result type (might be due to invalid IL or missing references) //IL_0f46: Unknown result type (might be due to invalid IL or missing references) //IL_0f4b: Unknown result type (might be due to invalid IL or missing references) //IL_0f51: Unknown result type (might be due to invalid IL or missing references) //IL_0f56: Unknown result type (might be due to invalid IL or missing references) //IL_0f5c: Unknown result type (might be due to invalid IL or missing references) //IL_0f66: Unknown result type (might be due to invalid IL or missing references) //IL_0f6b: Unknown result type (might be due to invalid IL or missing references) //IL_0f71: Unknown result type (might be due to invalid IL or missing references) //IL_0f7b: Unknown result type (might be due to invalid IL or missing references) //IL_0f81: Unknown result type (might be due to invalid IL or missing references) //IL_0f86: Unknown result type (might be due to invalid IL or missing references) //IL_0f8c: Unknown result type (might be due to invalid IL or missing references) //IL_0f91: Unknown result type (might be due to invalid IL or missing references) //IL_0f96: Unknown result type (might be due to invalid IL or missing references) //IL_0f9c: Unknown result type (might be due to invalid IL or missing references) //IL_0fa6: Unknown result type (might be due to invalid IL or missing references) //IL_0fab: Unknown result type (might be due to invalid IL or missing references) //IL_0fb6: Unknown result type (might be due to invalid IL or missing references) //IL_0fbc: Unknown result type (might be due to invalid IL or missing references) //IL_0fc1: Unknown result type (might be due to invalid IL or missing references) //IL_0fc7: Unknown result type (might be due to invalid IL or missing references) //IL_0fcc: Unknown result type (might be due to invalid IL or missing references) //IL_0fd2: Unknown result type (might be due to invalid IL or missing references) //IL_0fdc: Unknown result type (might be due to invalid IL or missing references) //IL_0fe1: Unknown result type (might be due to invalid IL or missing references) //IL_0fe7: Unknown result type (might be due to invalid IL or missing references) //IL_0ff1: Unknown result type (might be due to invalid IL or missing references) //IL_0ff7: Unknown result type (might be due to invalid IL or missing references) //IL_0ffc: Unknown result type (might be due to invalid IL or missing references) //IL_1002: Unknown result type (might be due to invalid IL or missing references) //IL_1007: Unknown result type (might be due to invalid IL or missing references) //IL_100c: Unknown result type (might be due to invalid IL or missing references) //IL_1012: Unknown result type (might be due to invalid IL or missing references) //IL_101c: Unknown result type (might be due to invalid IL or missing references) //IL_1021: Unknown result type (might be due to invalid IL or missing references) //IL_102d: Unknown result type (might be due to invalid IL or missing references) //IL_0e8c: Unknown result type (might be due to invalid IL or missing references) //IL_0e91: Unknown result type (might be due to invalid IL or missing references) //IL_0d0b: Unknown result type (might be due to invalid IL or missing references) //IL_0d10: Unknown result type (might be due to invalid IL or missing references) //IL_0d1f: Unknown result type (might be due to invalid IL or missing references) //IL_0d24: Unknown result type (might be due to invalid IL or missing references) //IL_0d40: Unknown result type (might be due to invalid IL or missing references) //IL_0d45: Unknown result type (might be due to invalid IL or missing references) //IL_0d4e: Unknown result type (might be due to invalid IL or missing references) //IL_0d59: Unknown result type (might be due to invalid IL or missing references) //IL_0d6a: Unknown result type (might be due to invalid IL or missing references) //IL_0d6f: Unknown result type (might be due to invalid IL or missing references) //IL_0d74: Unknown result type (might be due to invalid IL or missing references) //IL_317b: Unknown result type (might be due to invalid IL or missing references) //IL_3181: Unknown result type (might be due to invalid IL or missing references) //IL_3186: Unknown result type (might be due to invalid IL or missing references) //IL_318c: Unknown result type (might be due to invalid IL or missing references) //IL_3191: Unknown result type (might be due to invalid IL or missing references) //IL_3197: Unknown result type (might be due to invalid IL or missing references) //IL_31a1: Unknown result type (might be due to invalid IL or missing references) //IL_31a6: Unknown result type (might be due to invalid IL or missing references) //IL_31ac: Unknown result type (might be due to invalid IL or missing references) //IL_31b6: Unknown result type (might be due to invalid IL or missing references) //IL_31bc: Unknown result type (might be due to invalid IL or missing references) //IL_31c1: Unknown result type (might be due to invalid IL or missing references) //IL_31c7: Unknown result type (might be due to invalid IL or missing references) //IL_31cc: Unknown result type (might be due to invalid IL or missing references) //IL_31d1: Unknown result type (might be due to invalid IL or missing references) //IL_31dc: Unknown result type (might be due to invalid IL or missing references) //IL_31e2: Unknown result type (might be due to invalid IL or missing references) //IL_31e7: Unknown result type (might be due to invalid IL or missing references) //IL_31ed: Unknown result type (might be due to invalid IL or missing references) //IL_31f2: Unknown result type (might be due to invalid IL or missing references) //IL_31f8: Unknown result type (might be due to invalid IL or missing references) //IL_3202: Unknown result type (might be due to invalid IL or missing references) //IL_3207: Unknown result type (might be due to invalid IL or missing references) //IL_320d: Unknown result type (might be due to invalid IL or missing references) //IL_3217: Unknown result type (might be due to invalid IL or missing references) //IL_321d: Unknown result type (might be due to invalid IL or missing references) //IL_3222: Unknown result type (might be due to invalid IL or missing references) //IL_3228: Unknown result type (might be due to invalid IL or missing references) //IL_322d: Unknown result type (might be due to invalid IL or missing references) //IL_3232: Unknown result type (might be due to invalid IL or missing references) //IL_323e: Unknown result type (might be due to invalid IL or missing references) //IL_2126: Unknown result type (might be due to invalid IL or missing references) //IL_212c: Unknown result type (might be due to invalid IL or missing references) //IL_2131: Unknown result type (might be due to invalid IL or missing references) //IL_2137: Unknown result type (might be due to invalid IL or missing references) //IL_213c: Unknown result type (might be due to invalid IL or missing references) //IL_2142: Unknown result type (might be due to invalid IL or missing references) //IL_214c: Unknown result type (might be due to invalid IL or missing references) //IL_2151: Unknown result type (might be due to invalid IL or missing references) //IL_2157: Unknown result type (might be due to invalid IL or missing references) //IL_2161: Unknown result type (might be due to invalid IL or missing references) //IL_2167: Unknown result type (might be due to invalid IL or missing references) //IL_216c: Unknown result type (might be due to invalid IL or missing references) //IL_2172: Unknown result type (might be due to invalid IL or missing references) //IL_2177: Unknown result type (might be due to invalid IL or missing references) //IL_217c: Unknown result type (might be due to invalid IL or missing references) //IL_2182: Unknown result type (might be due to invalid IL or missing references) //IL_218c: Unknown result type (might be due to invalid IL or missing references) //IL_2191: Unknown result type (might be due to invalid IL or missing references) //IL_219c: Unknown result type (might be due to invalid IL or missing references) //IL_21a2: Unknown result type (might be due to invalid IL or missing references) //IL_21a7: Unknown result type (might be due to invalid IL or missing references) //IL_21ad: Unknown result type (might be due to invalid IL or missing references) //IL_21b2: Unknown result type (might be due to invalid IL or missing references) //IL_21b8: Unknown result type (might be due to invalid IL or missing references) //IL_21c2: Unknown result type (might be due to invalid IL or missing references) //IL_21c7: Unknown result type (might be due to invalid IL or missing references) //IL_21cd: Unknown result type (might be due to invalid IL or missing references) //IL_21d7: Unknown result type (might be due to invalid IL or missing references) //IL_21dd: Unknown result type (might be due to invalid IL or missing references) //IL_21e2: Unknown result type (might be due to invalid IL or missing references) //IL_21e8: Unknown result type (might be due to invalid IL or missing references) //IL_21ed: Unknown result type (might be due to invalid IL or missing references) //IL_21f2: Unknown result type (might be due to invalid IL or missing references) //IL_21f8: Unknown result type (might be due to invalid IL or missing references) //IL_2202: Unknown result type (might be due to invalid IL or missing references) //IL_2207: Unknown result type (might be due to invalid IL or missing references) //IL_2213: Unknown result type (might be due to invalid IL or missing references) //IL_2072: Unknown result type (might be due to invalid IL or missing references) //IL_2077: Unknown result type (might be due to invalid IL or missing references) //IL_1ef1: Unknown result type (might be due to invalid IL or missing references) //IL_1ef6: Unknown result type (might be due to invalid IL or missing references) //IL_1f05: Unknown result type (might be due to invalid IL or missing references) //IL_1f0a: Unknown result type (might be due to invalid IL or missing references) //IL_1f26: Unknown result type (might be due to invalid IL or missing references) //IL_1f2b: Unknown result type (might be due to invalid IL or missing references) //IL_1f34: Unknown result type (might be due to invalid IL or missing references) //IL_1f3f: Unknown result type (might be due to invalid IL or missing references) //IL_1f50: Unknown result type (might be due to invalid IL or missing references) //IL_1f55: Unknown result type (might be due to invalid IL or missing references) //IL_1f5a: Unknown result type (might be due to invalid IL or missing references) //IL_10fb: Unknown result type (might be due to invalid IL or missing references) //IL_1101: Unknown result type (might be due to invalid IL or missing references) //IL_1106: Unknown result type (might be due to invalid IL or missing references) //IL_110c: Unknown result type (might be due to invalid IL or missing references) //IL_1111: Unknown result type (might be due to invalid IL or missing references) //IL_1117: Unknown result type (might be due to invalid IL or missing references) //IL_1121: Unknown result type (might be due to invalid IL or missing references) //IL_1126: Unknown result type (might be due to invalid IL or missing references) //IL_112c: Unknown result type (might be due to invalid IL or missing references) //IL_1136: Unknown result type (might be due to invalid IL or missing references) //IL_113c: Unknown result type (might be due to invalid IL or missing references) //IL_1141: Unknown result type (might be due to invalid IL or missing references) //IL_1147: Unknown result type (might be due to invalid IL or missing references) //IL_114c: Unknown result type (might be due to invalid IL or missing references) //IL_1151: Unknown result type (might be due to invalid IL or missing references) //IL_1157: Unknown result type (might be due to invalid IL or missing references) //IL_1161: Unknown result type (might be due to invalid IL or missing references) //IL_1166: Unknown result type (might be due to invalid IL or missing references) //IL_1171: Unknown result type (might be due to invalid IL or missing references) //IL_1177: Unknown result type (might be due to invalid IL or missing references) //IL_117c: Unknown result type (might be due to invalid IL or missing references) //IL_1182: Unknown result type (might be due to invalid IL or missing references) //IL_1187: Unknown result type (might be due to invalid IL or missing references) //IL_118d: Unknown result type (might be due to invalid IL or missing references) //IL_1197: Unknown result type (might be due to invalid IL or missing references) //IL_119c: Unknown result type (might be due to invalid IL or missing references) //IL_11a2: Unknown result type (might be due to invalid IL or missing references) //IL_11ac: Unknown result type (might be due to invalid IL or missing references) //IL_11b2: Unknown result type (might be due to invalid IL or missing references) //IL_11b7: Unknown result type (might be due to invalid IL or missing references) //IL_11bd: Unknown result type (might be due to invalid IL or missing references) //IL_11c2: Unknown result type (might be due to invalid IL or missing references) //IL_11c7: Unknown result type (might be due to invalid IL or missing references) //IL_11cd: Unknown result type (might be due to invalid IL or missing references) //IL_11d7: Unknown result type (might be due to invalid IL or missing references) //IL_11dc: Unknown result type (might be due to invalid IL or missing references) //IL_11e8: Unknown result type (might be due to invalid IL or missing references) //IL_1047: Unknown result type (might be due to invalid IL or missing references) //IL_104c: Unknown result type (might be due to invalid IL or missing references) //IL_0ec6: Unknown result type (might be due to invalid IL or missing references) //IL_0ecb: Unknown result type (might be due to invalid IL or missing references) //IL_0eda: Unknown result type (might be due to invalid IL or missing references) //IL_0edf: Unknown result type (might be due to invalid IL or missing references) //IL_0efb: Unknown result type (might be due to invalid IL or missing references) //IL_0f00: Unknown result type (might be due to invalid IL or missing references) //IL_0f09: Unknown result type (might be due to invalid IL or missing references) //IL_0f14: Unknown result type (might be due to invalid IL or missing references) //IL_0f25: Unknown result type (might be due to invalid IL or missing references) //IL_0f2a: Unknown result type (might be due to invalid IL or missing references) //IL_0f2f: Unknown result type (might be due to invalid IL or missing references) //IL_330c: Unknown result type (might be due to invalid IL or missing references) //IL_3312: Unknown result type (might be due to invalid IL or missing references) //IL_3317: Unknown result type (might be due to invalid IL or missing references) //IL_331d: Unknown result type (might be due to invalid IL or missing references) //IL_3322: Unknown result type (might be due to invalid IL or missing references) //IL_3328: Unknown result type (might be due to invalid IL or missing references) //IL_3332: Unknown result type (might be due to invalid IL or missing references) //IL_3337: Unknown result type (might be due to invalid IL or missing references) //IL_333d: Unknown result type (might be due to invalid IL or missing references) //IL_3347: Unknown result type (might be due to invalid IL or missing references) //IL_334d: Unknown result type (might be due to invalid IL or missing references) //IL_3352: Unknown result type (might be due to invalid IL or missing references) //IL_3358: Unknown result type (might be due to invalid IL or missing references) //IL_335d: Unknown result type (might be due to invalid IL or missing references) //IL_3362: Unknown result type (might be due to invalid IL or missing references) //IL_3368: Unknown result type (might be due to invalid IL or missing references) //IL_3372: Unknown result type (might be due to invalid IL or missing references) //IL_3377: Unknown result type (might be due to invalid IL or missing references) //IL_3382: Unknown result type (might be due to invalid IL or missing references) //IL_3388: Unknown result type (might be due to invalid IL or missing references) //IL_338d: Unknown result type (might be due to invalid IL or missing references) //IL_3393: Unknown result type (might be due to invalid IL or missing references) //IL_3398: Unknown result type (might be due to invalid IL or missing references) //IL_339e: Unknown result type (might be due to invalid IL or missing references) //IL_33a8: Unknown result type (might be due to invalid IL or missing references) //IL_33ad: Unknown result type (might be due to invalid IL or missing references) //IL_33b3: Unknown result type (might be due to invalid IL or missing references) //IL_33bd: Unknown result type (might be due to invalid IL or missing references) //IL_33c3: Unknown result type (might be due to invalid IL or missing references) //IL_33c8: Unknown result type (might be due to invalid IL or missing references) //IL_33ce: Unknown result type (might be due to invalid IL or missing references) //IL_33d3: Unknown result type (might be due to invalid IL or missing references) //IL_33d8: Unknown result type (might be due to invalid IL or missing references) //IL_33de: Unknown result type (might be due to invalid IL or missing references) //IL_33e8: Unknown result type (might be due to invalid IL or missing references) //IL_33ed: Unknown result type (might be due to invalid IL or missing references) //IL_33f9: Unknown result type (might be due to invalid IL or missing references) //IL_3258: Unknown result type (might be due to invalid IL or missing references) //IL_325d: Unknown result type (might be due to invalid IL or missing references) //IL_22e1: Unknown result type (might be due to invalid IL or missing references) //IL_22e7: Unknown result type (might be due to invalid IL or missing references) //IL_22ec: Unknown result type (might be due to invalid IL or missing references) //IL_22f2: Unknown result type (might be due to invalid IL or missing references) //IL_22f7: Unknown result type (might be due to invalid IL or missing references) //IL_22fd: Unknown result type (might be due to invalid IL or missing references) //IL_2307: Unknown result type (might be due to invalid IL or missing references) //IL_230c: Unknown result type (might be due to invalid IL or missing references) //IL_2312: Unknown result type (might be due to invalid IL or missing references) //IL_231c: Unknown result type (might be due to invalid IL or missing references) //IL_2322: Unknown result type (might be due to invalid IL or missing references) //IL_2327: Unknown result type (might be due to invalid IL or missing references) //IL_232d: Unknown result type (might be due to invalid IL or missing references) //IL_2332: Unknown result type (might be due to invalid IL or missing references) //IL_2337: Unknown result type (might be due to invalid IL or missing references) //IL_233d: Unknown result type (might be due to invalid IL or missing references) //IL_2347: Unknown result type (might be due to invalid IL or missing references) //IL_234c: Unknown result type (might be due to invalid IL or missing references) //IL_2357: Unknown result type (might be due to invalid IL or missing references) //IL_235d: Unknown result type (might be due to invalid IL or missing references) //IL_2362: Unknown result type (might be due to invalid IL or missing references) //IL_2368: Unknown result type (might be due to invalid IL or missing references) //IL_236d: Unknown result type (might be due to invalid IL or missing references) //IL_2373: Unknown result type (might be due to invalid IL or missing references) //IL_237d: Unknown result type (might be due to invalid IL or missing references) //IL_2382: Unknown result type (might be due to invalid IL or missing references) //IL_2388: Unknown result type (might be due to invalid IL or missing references) //IL_2392: Unknown result type (might be due to invalid IL or missing references) //IL_2398: Unknown result type (might be due to invalid IL or missing references) //IL_239d: Unknown result type (might be due to invalid IL or missing references) //IL_23a3: Unknown result type (might be due to invalid IL or missing references) //IL_23a8: Unknown result type (might be due to invalid IL or missing references) //IL_23ad: Unknown result type (might be due to invalid IL or missing references) //IL_23b3: Unknown result type (might be due to invalid IL or missing references) //IL_23bd: Unknown result type (might be due to invalid IL or missing references) //IL_23c2: Unknown result type (might be due to invalid IL or missing references) //IL_23ce: Unknown result type (might be due to invalid IL or missing references) //IL_222d: Unknown result type (might be due to invalid IL or missing references) //IL_2232: Unknown result type (might be due to invalid IL or missing references) //IL_20ac: Unknown result type (might be due to invalid IL or missing references) //IL_20b1: Unknown result type (might be due to invalid IL or missing references) //IL_20c0: Unknown result type (might be due to invalid IL or missing references) //IL_20c5: Unknown result type (might be due to invalid IL or missing references) //IL_20e1: Unknown result type (might be due to invalid IL or missing references) //IL_20e6: Unknown result type (might be due to invalid IL or missing references) //IL_20ef: Unknown result type (might be due to invalid IL or missing references) //IL_20fa: Unknown result type (might be due to invalid IL or missing references) //IL_210b: Unknown result type (might be due to invalid IL or missing references) //IL_2110: Unknown result type (might be due to invalid IL or missing references) //IL_2115: Unknown result type (might be due to invalid IL or missing references) //IL_12b6: Unknown result type (might be due to invalid IL or missing references) //IL_12bc: Unknown result type (might be due to invalid IL or missing references) //IL_12c1: Unknown result type (might be due to invalid IL or missing references) //IL_12c7: Unknown result type (might be due to invalid IL or missing references) //IL_12cc: Unknown result type (might be due to invalid IL or missing references) //IL_12d2: Unknown result type (might be due to invalid IL or missing references) //IL_12dc: Unknown result type (might be due to invalid IL or missing references) //IL_12e1: Unknown result type (might be due to invalid IL or missing references) //IL_12e7: Unknown result type (might be due to invalid IL or missing references) //IL_12f1: Unknown result type (might be due to invalid IL or missing references) //IL_12f7: Unknown result type (might be due to invalid IL or missing references) //IL_12fc: Unknown result type (might be due to invalid IL or missing references) //IL_1302: Unknown result type (might be due to invalid IL or missing references) //IL_1307: Unknown result type (might be due to invalid IL or missing references) //IL_130c: Unknown result type (might be due to invalid IL or missing references) //IL_1312: Unknown result type (might be due to invalid IL or missing references) //IL_131c: Unknown result type (might be due to invalid IL or missing references) //IL_1321: Unknown result type (might be due to invalid IL or missing references) //IL_132c: Unknown result type (might be due to invalid IL or missing references) //IL_1332: Unknown result type (might be due to invalid IL or missing references) //IL_1337: Unknown result type (might be due to invalid IL or missing references) //IL_133d: Unknown result type (might be due to invalid IL or missing references) //IL_1342: Unknown result type (might be due to invalid IL or missing references) //IL_1348: Unknown result type (might be due to invalid IL or missing references) //IL_1352: Unknown result type (might be due to invalid IL or missing references) //IL_1357: Unknown result type (might be due to invalid IL or missing references) //IL_135d: Unknown result type (might be due to invalid IL or missing references) //IL_1367: Unknown result type (might be due to invalid IL or missing references) //IL_136d: Unknown result type (might be due to invalid IL or missing references) //IL_1372: Unknown result type (might be due to invalid IL or missing references) //IL_1378: Unknown result type (might be due to invalid IL or missing references) //IL_137d: Unknown result type (might be due to invalid IL or missing references) //IL_1382: Unknown result type (might be due to invalid IL or missing references) //IL_1388: Unknown result type (might be due to invalid IL or missing references) //IL_1392: Unknown result type (might be due to invalid IL or missing references) //IL_1397: Unknown result type (might be due to invalid IL or missing references) //IL_13a3: Unknown result type (might be due to invalid IL or missing references) //IL_1202: Unknown result type (might be due to invalid IL or missing references) //IL_1207: Unknown result type (might be due to invalid IL or missing references) //IL_1081: Unknown result type (might be due to invalid IL or missing references) //IL_1086: Unknown result type (might be due to invalid IL or missing references) //IL_1095: Unknown result type (might be due to invalid IL or missing references) //IL_109a: Unknown result type (might be due to invalid IL or missing references) //IL_10b6: Unknown result type (might be due to invalid IL or missing references) //IL_10bb: Unknown result type (might be due to invalid IL or missing references) //IL_10c4: Unknown result type (might be due to invalid IL or missing references) //IL_10cf: Unknown result type (might be due to invalid IL or missing references) //IL_10e0: Unknown result type (might be due to invalid IL or missing references) //IL_10e5: Unknown result type (might be due to invalid IL or missing references) //IL_10ea: Unknown result type (might be due to invalid IL or missing references) //IL_34c7: Unknown result type (might be due to invalid IL or missing references) //IL_34cd: Unknown result type (might be due to invalid IL or missing references) //IL_34d2: Unknown result type (might be due to invalid IL or missing references) //IL_34d8: Unknown result type (might be due to invalid IL or missing references) //IL_34dd: Unknown result type (might be due to invalid IL or missing references) //IL_34e3: Unknown result type (might be due to invalid IL or missing references) //IL_34ed: Unknown result type (might be due to invalid IL or missing references) //IL_34f2: Unknown result type (might be due to invalid IL or missing references) //IL_34f8: Unknown result type (might be due to invalid IL or missing references) //IL_3502: Unknown result type (might be due to invalid IL or missing references) //IL_3508: Unknown result type (might be due to invalid IL or missing references) //IL_350d: Unknown result type (might be due to invalid IL or missing references) //IL_3513: Unknown result type (might be due to invalid IL or missing references) //IL_3518: Unknown result type (might be due to invalid IL or missing references) //IL_351d: Unknown result type (might be due to invalid IL or missing references) //IL_3523: Unknown result type (might be due to invalid IL or missing references) //IL_352d: Unknown result type (might be due to invalid IL or missing references) //IL_3532: Unknown result type (might be due to invalid IL or missing references) //IL_353d: Unknown result type (might be due to invalid IL or missing references) //IL_3543: Unknown result type (might be due to invalid IL or missing references) //IL_3548: Unknown result type (might be due to invalid IL or missing references) //IL_354e: Unknown result type (might be due to invalid IL or missing references) //IL_3553: Unknown result type (might be due to invalid IL or missing references) //IL_3559: Unknown result type (might be due to invalid IL or missing references) //IL_3563: Unknown result type (might be due to invalid IL or missing references) //IL_3568: Unknown result type (might be due to invalid IL or missing references) //IL_356e: Unknown result type (might be due to invalid IL or missing references) //IL_3578: Unknown result type (might be due to invalid IL or missing references) //IL_357e: Unknown result type (might be due to invalid IL or missing references) //IL_3583: Unknown result type (might be due to invalid IL or missing references) //IL_3589: Unknown result type (might be due to invalid IL or missing references) //IL_358e: Unknown result type (might be due to invalid IL or missing references) //IL_3593: Unknown result type (might be due to invalid IL or missing references) //IL_3599: Unknown result type (might be due to invalid IL or missing references) //IL_35a3: Unknown result type (might be due to invalid IL or missing references) //IL_35a8: Unknown result type (might be due to invalid IL or missing references) //IL_35b4: Unknown result type (might be due to invalid IL or missing references) //IL_3413: Unknown result type (might be due to invalid IL or missing references) //IL_3418: Unknown result type (might be due to invalid IL or missing references) //IL_3292: Unknown result type (might be due to invalid IL or missing references) //IL_3297: Unknown result type (might be due to invalid IL or missing references) //IL_32a6: Unknown result type (might be due to invalid IL or missing references) //IL_32ab: Unknown result type (might be due to invalid IL or missing references) //IL_32c7: Unknown result type (might be due to invalid IL or missing references) //IL_32cc: Unknown result type (might be due to invalid IL or missing references) //IL_32d5: Unknown result type (might be due to invalid IL or missing references) //IL_32e0: Unknown result type (might be due to invalid IL or missing references) //IL_32f1: Unknown result type (might be due to invalid IL or missing references) //IL_32f6: Unknown result type (might be due to invalid IL or missing references) //IL_32fb: Unknown result type (might be due to invalid IL or missing references) //IL_249c: Unknown result type (might be due to invalid IL or missing references) //IL_24a2: Unknown result type (might be due to invalid IL or missing references) //IL_24a7: Unknown result type (might be due to invalid IL or missing references) //IL_24ad: Unknown result type (might be due to invalid IL or missing references) //IL_24b2: Unknown result type (might be due to invalid IL or missing references) //IL_24b8: Unknown result type (might be due to invalid IL or missing references) //IL_24c2: Unknown result type (might be due to invalid IL or missing references) //IL_24c7: Unknown result type (might be due to invalid IL or missing references) //IL_24cd: Unknown result type (might be due to invalid IL or missing references) //IL_24d7: Unknown result type (might be due to invalid IL or missing references) //IL_24dd: Unknown result type (might be due to invalid IL or missing references) //IL_24e2: Unknown result type (might be due to invalid IL or missing references) //IL_24e8: Unknown result type (might be due to invalid IL or missing references) //IL_24ed: Unknown result type (might be due to invalid IL or missing references) //IL_24f2: Unknown result type (might be due to invalid IL or missing references) //IL_24f8: Unknown result type (might be due to invalid IL or missing references) //IL_2502: Unknown result type (might be due to invalid IL or missing references) //IL_2507: Unknown result type (might be due to invalid IL or missing references) //IL_2512: Unknown result type (might be due to invalid IL or missing references) //IL_2518: Unknown result type (might be due to invalid IL or missing references) //IL_251d: Unknown result type (might be due to invalid IL or missing references) //IL_2523: Unknown result type (might be due to invalid IL or missing references) //IL_2528: Unknown result type (might be due to invalid IL or missing references) //IL_252e: Unknown result type (might be due to invalid IL or missing references) //IL_2538: Unknown result type (might be due to invalid IL or missing references) //IL_253d: Unknown result type (might be due to invalid IL or missing references) //IL_2543: Unknown result type (might be due to invalid IL or missing references) //IL_254d: Unknown result type (might be due to invalid IL or missing references) //IL_2553: Unknown result type (might be due to invalid IL or missing references) //IL_2558: Unknown result type (might be due to invalid IL or missing references) //IL_255e: Unknown result type (might be due to invalid IL or missing references) //IL_2563: Unknown result type (might be due to invalid IL or missing references) //IL_2568: Unknown result type (might be due to invalid IL or missing references) //IL_256e: Unknown result type (might be due to invalid IL or missing references) //IL_2578: Unknown result type (might be due to invalid IL or missing references) //IL_257d: Unknown result type (might be due to invalid IL or missing references) //IL_2589: Unknown result type (might be due to invalid IL or missing references) //IL_23e8: Unknown result type (might be due to invalid IL or missing references) //IL_23ed: Unknown result type (might be due to invalid IL or missing references) //IL_2267: Unknown result type (might be due to invalid IL or missing references) //IL_226c: Unknown result type (might be due to invalid IL or missing references) //IL_227b: Unknown result type (might be due to invalid IL or missing references) //IL_2280: Unknown result type (might be due to invalid IL or missing references) //IL_229c: Unknown result type (might be due to invalid IL or missing references) //IL_22a1: Unknown result type (might be due to invalid IL or missing references) //IL_22aa: Unknown result type (might be due to invalid IL or missing references) //IL_22b5: Unknown result type (might be due to invalid IL or missing references) //IL_22c6: Unknown result type (might be due to invalid IL or missing references) //IL_22cb: Unknown result type (might be due to invalid IL or missing references) //IL_22d0: Unknown result type (might be due to invalid IL or missing references) //IL_1473: Unknown result type (might be due to invalid IL or missing references) //IL_1478: Unknown result type (might be due to invalid IL or missing references) //IL_1487: Unknown result type (might be due to invalid IL or missing references) //IL_148c: Unknown result type (might be due to invalid IL or missing references) //IL_14a3: Unknown result type (might be due to invalid IL or missing references) //IL_14a8: Unknown result type (might be due to invalid IL or missing references) //IL_14c4: Unknown result type (might be due to invalid IL or missing references) //IL_14c9: Unknown result type (might be due to invalid IL or missing references) //IL_14d8: Unknown result type (might be due to invalid IL or missing references) //IL_14dd: Unknown result type (might be due to invalid IL or missing references) //IL_14ee: Unknown result type (might be due to invalid IL or missing references) //IL_14f9: Unknown result type (might be due to invalid IL or missing references) //IL_14fe: Unknown result type (might be due to invalid IL or missing references) //IL_1527: Unknown result type (might be due to invalid IL or missing references) //IL_152c: Unknown result type (might be due to invalid IL or missing references) //IL_1543: Unknown result type (might be due to invalid IL or missing references) //IL_1548: Unknown result type (might be due to invalid IL or missing references) //IL_154d: Unknown result type (might be due to invalid IL or missing references) //IL_13bd: Unknown result type (might be due to invalid IL or missing references) //IL_13c2: Unknown result type (might be due to invalid IL or missing references) //IL_123c: Unknown result type (might be due to invalid IL or missing references) //IL_1241: Unknown result type (might be due to invalid IL or missing references) //IL_1250: Unknown result type (might be due to invalid IL or missing references) //IL_1255: Unknown result type (might be due to invalid IL or missing references) //IL_1271: Unknown result type (might be due to invalid IL or missing references) //IL_1276: Unknown result type (might be due to invalid IL or missing references) //IL_127f: Unknown result type (might be due to invalid IL or missing references) //IL_128a: Unknown result type (might be due to invalid IL or missing references) //IL_129b: Unknown result type (might be due to invalid IL or missing references) //IL_12a0: Unknown result type (might be due to invalid IL or missing references) //IL_12a5: Unknown result type (might be due to invalid IL or missing references) //IL_3682: Unknown result type (might be due to invalid IL or missing references) //IL_3688: Unknown result type (might be due to invalid IL or missing references) //IL_368d: Unknown result type (might be due to invalid IL or missing references) //IL_3693: Unknown result type (might be due to invalid IL or missing references) //IL_3698: Unknown result type (might be due to invalid IL or missing references) //IL_369e: Unknown result type (might be due to invalid IL or missing references) //IL_36a8: Unknown result type (might be due to invalid IL or missing references) //IL_36ad: Unknown result type (might be due to invalid IL or missing references) //IL_36b3: Unknown result type (might be due to invalid IL or missing references) //IL_36bd: Unknown result type (might be due to invalid IL or missing references) //IL_36c3: Unknown result type (might be due to invalid IL or missing references) //IL_36c8: Unknown result type (might be due to invalid IL or missing references) //IL_36ce: Unknown result type (might be due to invalid IL or missing references) //IL_36d3: Unknown result type (might be due to invalid IL or missing references) //IL_36d8: Unknown result type (might be due to invalid IL or missing references) //IL_36de: Unknown result type (might be due to invalid IL or missing references) //IL_36e8: Unknown result type (might be due to invalid IL or missing references) //IL_36ed: Unknown result type (might be due to invalid IL or missing references) //IL_36f8: Unknown result type (might be due to invalid IL or missing references) //IL_36fe: Unknown result type (might be due to invalid IL or missing references) //IL_3703: Unknown result type (might be due to invalid IL or missing references) //IL_3709: Unknown result type (might be due to invalid IL or missing references) //IL_370e: Unknown result type (might be due to invalid IL or missing references) //IL_3714: Unknown result type (might be due to invalid IL or missing references) //IL_371e: Unknown result type (might be due to invalid IL or missing references) //IL_3723: Unknown result type (might be due to invalid IL or missing references) //IL_3729: Unknown result type (might be due to invalid IL or missing references) //IL_3733: Unknown result type (might be due to invalid IL or missing references) //IL_3739: Unknown result type (might be due to invalid IL or missing references) //IL_373e: Unknown result type (might be due to invalid IL or missing references) //IL_3744: Unknown result type (might be due to invalid IL or missing references) //IL_3749: Unknown result type (might be due to invalid IL or missing references) //IL_374e: Unknown result type (might be due to invalid IL or missing references) //IL_3754: Unknown result type (might be due to invalid IL or missing references) //IL_375e: Unknown result type (might be due to invalid IL or missing references) //IL_3763: Unknown result type (might be due to invalid IL or missing references) //IL_376f: Unknown result type (might be due to invalid IL or missing references) //IL_35ce: Unknown result type (might be due to invalid IL or missing references) //IL_35d3: Unknown result type (might be due to invalid IL or missing references) //IL_344d: Unknown result type (might be due to invalid IL or missing references) //IL_3452: Unknown result type (might be due to invalid IL or missing references) //IL_3461: Unknown result type (might be due to invalid IL or missing references) //IL_3466: Unknown result type (might be due to invalid IL or missing references) //IL_3482: Unknown result type (might be due to invalid IL or missing references) //IL_3487: Unknown result type (might be due to invalid IL or missing references) //IL_3490: Unknown result type (might be due to invalid IL or missing references) //IL_349b: Unknown result type (might be due to invalid IL or missing references) //IL_34ac: Unknown result type (might be due to invalid IL or missing references) //IL_34b1: Unknown result type (might be due to invalid IL or missing references) //IL_34b6: Unknown result type (might be due to invalid IL or missing references) //IL_2657: Unknown result type (might be due to invalid IL or missing references) //IL_265d: Unknown result type (might be due to invalid IL or missing references) //IL_2662: Unknown result type (might be due to invalid IL or missing references) //IL_2668: Unknown result type (might be due to invalid IL or missing references) //IL_266d: Unknown result type (might be due to invalid IL or missing references) //IL_2673: Unknown result type (might be due to invalid IL or missing references) //IL_267d: Unknown result type (might be due to invalid IL or missing references) //IL_2682: Unknown result type (might be due to invalid IL or missing references) //IL_2688: Unknown result type (might be due to invalid IL or missing references) //IL_2692: Unknown result type (might be due to invalid IL or missing references) //IL_2698: Unknown result type (might be due to invalid IL or missing references) //IL_269d: Unknown result type (might be due to invalid IL or missing references) //IL_26a3: Unknown result type (might be due to invalid IL or missing references) //IL_26a8: Unknown result type (might be due to invalid IL or missing references) //IL_26ad: Unknown result type (might be due to invalid IL or missing references) //IL_26b3: Unknown result type (might be due to invalid IL or missing references) //IL_26bd: Unknown result type (might be due to invalid IL or missing references) //IL_26c2: Unknown result type (might be due to invalid IL or missing references) //IL_26cd: Unknown result type (might be due to invalid IL or missing references) //IL_26d3: Unknown result type (might be due to invalid IL or missing references) //IL_26d8: Unknown result type (might be due to invalid IL or missing references) //IL_26de: Unknown result type (might be due to invalid IL or missing references) //IL_26e3: Unknown result type (might be due to invalid IL or missing references) //IL_26e9: Unknown result type (might be due to invalid IL or missing references) //IL_26f3: Unknown result type (might be due to invalid IL or missing references) //IL_26f8: Unknown result type (might be due to invalid IL or missing references) //IL_26fe: Unknown result type (might be due to invalid IL or missing references) //IL_2708: Unknown result type (might be due to invalid IL or missing references) //IL_270e: Unknown result type (might be due to invalid IL or missing references) //IL_2713: Unknown result type (might be due to invalid IL or missing references) //IL_2719: Unknown result type (might be due to invalid IL or missing references) //IL_271e: Unknown result type (might be due to invalid IL or missing references) //IL_2723: Unknown result type (might be due to invalid IL or missing references) //IL_2729: Unknown result type (might be due to invalid IL or missing references) //IL_2733: Unknown result type (might be due to invalid IL or missing references) //IL_2738: Unknown result type (might be due to invalid IL or missing references) //IL_2744: Unknown result type (might be due to invalid IL or missing references) //IL_25a3: Unknown result type (might be due to invalid IL or missing references) //IL_25a8: Unknown result type (might be due to invalid IL or missing references) //IL_2422: Unknown result type (might be due to invalid IL or missing references) //IL_2427: Unknown result type (might be due to invalid IL or missing references) //IL_2436: Unknown result type (might be due to invalid IL or missing references) //IL_243b: Unknown result type (might be due to invalid IL or missing references) //IL_2457: Unknown result type (might be due to invalid IL or missing references) //IL_245c: Unknown result type (might be due to invalid IL or missing references) //IL_2465: Unknown result type (might be due to invalid IL or missing references) //IL_2470: Unknown result type (might be due to invalid IL or missing references) //IL_2481: Unknown result type (might be due to invalid IL or missing references) //IL_2486: Unknown result type (might be due to invalid IL or missing references) //IL_248b: Unknown result type (might be due to invalid IL or missing references) //IL_13f7: Unknown result type (might be due to invalid IL or missing references) //IL_13fc: Unknown result type (might be due to invalid IL or missing references) //IL_140b: Unknown result type (might be due to invalid IL or missing references) //IL_1410: Unknown result type (might be due to invalid IL or missing references) //IL_142c: Unknown result type (might be due to invalid IL or missing references) //IL_1431: Unknown result type (might be due to invalid IL or missing references) //IL_143a: Unknown result type (might be due to invalid IL or missing references) //IL_1445: Unknown result type (might be due to invalid IL or missing references) //IL_1456: Unknown result type (might be due to invalid IL or missing references) //IL_145b: Unknown result type (might be due to invalid IL or missing references) //IL_1460: Unknown result type (might be due to invalid IL or missing references) //IL_383d: Unknown result type (might be due to invalid IL or missing references) //IL_3843: Unknown result type (might be due to invalid IL or missing references) //IL_3848: Unknown result type (might be due to invalid IL or missing references) //IL_384e: Unknown result type (might be due to invalid IL or missing references) //IL_3853: Unknown result type (might be due to invalid IL or missing references) //IL_3859: Unknown result type (might be due to invalid IL or missing references) //IL_3863: Unknown result type (might be due to invalid IL or missing references) //IL_3868: Unknown result type (might be due to invalid IL or missing references) //IL_386e: Unknown result type (might be due to invalid IL or missing references) //IL_3878: Unknown result type (might be due to invalid IL or missing references) //IL_387e: Unknown result type (might be due to invalid IL or missing references) //IL_3883: Unknown result type (might be due to invalid IL or missing references) //IL_3889: Unknown result type (might be due to invalid IL or missing references) //IL_388e: Unknown result type (might be due to invalid IL or missing references) //IL_3893: Unknown result type (might be due to invalid IL or missing references) //IL_3899: Unknown result type (might be due to invalid IL or missing references) //IL_38a3: Unknown result type (might be due to invalid IL or missing references) //IL_38a8: Unknown result type (might be due to invalid IL or missing references) //IL_38b3: Unknown result type (might be due to invalid IL or missing references) //IL_38b9: Unknown result type (might be due to invalid IL or missing references) //IL_38be: Unknown result type (might be due to invalid IL or missing references) //IL_38c4: Unknown result type (might be due to invalid IL or missing references) //IL_38c9: Unknown result type (might be due to invalid IL or missing references) //IL_38cf: Unknown result type (might be due to invalid IL or missing references) //IL_38d9: Unknown result type (might be due to invalid IL or missing references) //IL_38de: Unknown result type (might be due to invalid IL or missing references) //IL_38e4: Unknown result type (might be due to invalid IL or missing references) //IL_38ee: Unknown result type (might be due to invalid IL or missing references) //IL_38f4: Unknown result type (might be due to invalid IL or missing references) //IL_38f9: Unknown result type (might be due to invalid IL or missing references) //IL_38ff: Unknown result type (might be due to invalid IL or missing references) //IL_3904: Unknown result type (might be due to invalid IL or missing references) //IL_3909: Unknown result type (might be due to invalid IL or missing references) //IL_390f: Unknown result type (might be due to invalid IL or missing references) //IL_3919: Unknown result type (might be due to invalid IL or missing references) //IL_391e: Unknown result type (might be due to invalid IL or missing references) //IL_392a: Unknown result type (might be due to invalid IL or missing references) //IL_3789: Unknown result type (might be due to invalid IL or missing references) //IL_378e: Unknown result type (might be due to invalid IL or missing references) //IL_3608: Unknown result type (might be due to invalid IL or missing references) //IL_360d: Unknown result type (might be due to invalid IL or missing references) //IL_361c: Unknown result type (might be due to invalid IL or missing references) //IL_3621: Unknown result type (might be due to invalid IL or missing references) //IL_363d: Unknown result type (might be due to invalid IL or missing references) //IL_3642: Unknown result type (might be due to invalid IL or missing references) //IL_364b: Unknown result type (might be due to invalid IL or missing references) //IL_3656: Unknown result type (might be due to invalid IL or missing references) //IL_3667: Unknown result type (might be due to invalid IL or missing references) //IL_366c: Unknown result type (might be due to invalid IL or missing references) //IL_3671: Unknown result type (might be due to invalid IL or missing references) //IL_2812: Unknown result type (might be due to invalid IL or missing references) //IL_2818: Unknown result type (might be due to invalid IL or missing references) //IL_281d: Unknown result type (might be due to invalid IL or missing references) //IL_2823: Unknown result type (might be due to invalid IL or missing references) //IL_2828: Unknown result type (might be due to invalid IL or missing references) //IL_282e: Unknown result type (might be due to invalid IL or missing references) //IL_2838: Unknown result type (might be due to invalid IL or missing references) //IL_283d: Unknown result type (might be due to invalid IL or missing references) //IL_2843: Unknown result type (might be due to invalid IL or missing references) //IL_284d: Unknown result type (might be due to invalid IL or missing references) //IL_2853: Unknown result type (might be due to invalid IL or missing references) //IL_2858: Unknown result type (might be due to invalid IL or missing references) //IL_285e: Unknown result type (might be due to invalid IL or missing references) //IL_2863: Unknown result type (might be due to invalid IL or missing references) //IL_2868: Unknown result type (might be due to invalid IL or missing references) //IL_286e: Unknown result type (might be due to invalid IL or missing references) //IL_2878: Unknown result type (might be due to invalid IL or missing references) //IL_287d: Unknown result type (might be due to invalid IL or missing references) //IL_2888: Unknown result type (might be due to invalid IL or missing references) //IL_288e: Unknown result type (might be due to invalid IL or missing references) //IL_2893: Unknown result type (might be due to invalid IL or missing references) //IL_2899: Unknown result type (might be due to invalid IL or missing references) //IL_289e: Unknown result type (might be due to invalid IL or missing references) //IL_28a4: Unknown result type (might be due to invalid IL or missing references) //IL_28ae: Unknown result type (might be due to invalid IL or missing references) //IL_28b3: Unknown result type (might be due to invalid IL or missing references) //IL_28b9: Unknown result type (might be due to invalid IL or missing references) //IL_28c3: Unknown result type (might be due to invalid IL or missing references) //IL_28c9: Unknown result type (might be due to invalid IL or missing references) //IL_28ce: Unknown result type (might be due to invalid IL or missing references) //IL_28d4: Unknown result type (might be due to invalid IL or missing references) //IL_28d9: Unknown result type (might be due to invalid IL or missing references) //IL_28de: Unknown result type (might be due to invalid IL or missing references) //IL_28e4: Unknown result type (might be due to invalid IL or missing references) //IL_28ee: Unknown result type (might be due to invalid IL or missing references) //IL_28f3: Unknown result type (might be due to invalid IL or missing references) //IL_28ff: Unknown result type (might be due to invalid IL or missing references) //IL_275e: Unknown result type (might be due to invalid IL or missing references) //IL_2763: Unknown result type (might be due to invalid IL or missing references) //IL_25dd: Unknown result type (might be due to invalid IL or missing references) //IL_25e2: Unknown result type (might be due to invalid IL or missing references) //IL_25f1: Unknown result type (might be due to invalid IL or missing references) //IL_25f6: Unknown result type (might be due to invalid IL or missing references) //IL_2612: Unknown result type (might be due to invalid IL or missing references) //IL_2617: Unknown result type (might be due to invalid IL or missing references) //IL_2620: Unknown result type (might be due to invalid IL or missing references) //IL_262b: Unknown result type (might be due to invalid IL or missing references) //IL_263c: Unknown result type (might be due to invalid IL or missing references) //IL_2641: Unknown result type (might be due to invalid IL or missing references) //IL_2646: Unknown result type (might be due to invalid IL or missing references) //IL_39f8: Unknown result type (might be due to invalid IL or missing references) //IL_39fe: Unknown result type (might be due to invalid IL or missing references) //IL_3a03: Unknown result type (might be due to invalid IL or missing references) //IL_3a09: Unknown result type (might be due to invalid IL or missing references) //IL_3a0e: Unknown result type (might be due to invalid IL or missing references) //IL_3a14: Unknown result type (might be due to invalid IL or missing references) //IL_3a1e: Unknown result type (might be due to invalid IL or missing references) //IL_3a23: Unknown result type (might be due to invalid IL or missing references) //IL_3a29: Unknown result type (might be due to invalid IL or missing references) //IL_3a33: Unknown result type (might be due to invalid IL or missing references) //IL_3a39: Unknown result type (might be due to invalid IL or missing references) //IL_3a3e: Unknown result type (might be due to invalid IL or missing references) //IL_3a44: Unknown result type (might be due to invalid IL or missing references) //IL_3a49: Unknown result type (might be due to invalid IL or missing references) //IL_3a4e: Unknown result type (might be due to invalid IL or missing references) //IL_3a54: Unknown result type (might be due to invalid IL or missing references) //IL_3a5e: Unknown result type (might be due to invalid IL or missing references) //IL_3a63: Unknown result type (might be due to invalid IL or missing references) //IL_3a6e: Unknown result type (might be due to invalid IL or missing references) //IL_3a74: Unknown result type (might be due to invalid IL or missing references) //IL_3a79: Unknown result type (might be due to invalid IL or missing references) //IL_3a7f: Unknown result type (might be due to invalid IL or missing references) //IL_3a84: Unknown result type (might be due to invalid IL or missing references) //IL_3a8a: Unknown result type (might be due to invalid IL or missing references) //IL_3a94: Unknown result type (might be due to invalid IL or missing references) //IL_3a99: Unknown result type (might be due to invalid IL or missing references) //IL_3a9f: Unknown result type (might be due to invalid IL or missing references) //IL_3aa9: Unknown result type (might be due to invalid IL or missing references) //IL_3aaf: Unknown result type (might be due to invalid IL or missing references) //IL_3ab4: Unknown result type (might be due to invalid IL or missing references) //IL_3aba: Unknown result type (might be due to invalid IL or missing references) //IL_3abf: Unknown result type (might be due to invalid IL or missing references) //IL_3ac4: Unknown result type (might be due to invalid IL or missing references) //IL_3aca: Unknown result type (might be due to invalid IL or missing references) //IL_3ad4: Unknown result type (might be due to invalid IL or missing references) //IL_3ad9: Unknown result type (might be due to invalid IL or missing references) //IL_3ae5: Unknown result type (might be due to invalid IL or missing references) //IL_3944: Unknown result type (might be due to invalid IL or missing references) //IL_3949: Unknown result type (might be due to invalid IL or missing references) //IL_37c3: Unknown result type (might be due to invalid IL or missing references) //IL_37c8: Unknown result type (might be due to invalid IL or missing references) //IL_37d7: Unknown result type (might be due to invalid IL or missing references) //IL_37dc: Unknown result type (might be due to invalid IL or missing references) //IL_37f8: Unknown result type (might be due to invalid IL or missing references) //IL_37fd: Unknown result type (might be due to invalid IL or missing references) //IL_3806: Unknown result type (might be due to invalid IL or missing references) //IL_3811: Unknown result type (might be due to invalid IL or missing references) //IL_3822: Unknown result type (might be due to invalid IL or missing references) //IL_3827: Unknown result type (might be due to invalid IL or missing references) //IL_382c: Unknown result type (might be due to invalid IL or missing references) //IL_29cf: Unknown result type (might be due to invalid IL or missing references) //IL_29d4: Unknown result type (might be due to invalid IL or missing references) //IL_29e3: Unknown result type (might be due to invalid IL or missing references) //IL_29e8: Unknown result type (might be due to invalid IL or missing references) //IL_29ff: Unknown result type (might be due to invalid IL or missing references) //IL_2a04: Unknown result type (might be due to invalid IL or missing references) //IL_2a20: Unknown result type (might be due to invalid IL or missing references) //IL_2a25: Unknown result type (might be due to invalid IL or missing references) //IL_2a34: Unknown result type (might be due to invalid IL or missing references) //IL_2a39: Unknown result type (might be due to invalid IL or missing references) //IL_2a4a: Unknown result type (might be due to invalid IL or missing references) //IL_2a55: Unknown result type (might be due to invalid IL or missing references) //IL_2a5a: Unknown result type (might be due to invalid IL or missing references) //IL_2a83: Unknown result type (might be due to invalid IL or missing references) //IL_2a88: Unknown result type (might be due to invalid IL or missing references) //IL_2a9f: Unknown result type (might be due to invalid IL or missing references) //IL_2aa4: Unknown result type (might be due to invalid IL or missing references) //IL_2aa9: Unknown result type (might be due to invalid IL or missing references) //IL_2919: Unknown result type (might be due to invalid IL or missing references) //IL_291e: Unknown result type (might be due to invalid IL or missing references) //IL_2798: Unknown result type (might be due to invalid IL or missing references) //IL_279d: Unknown result type (might be due to invalid IL or missing references) //IL_27ac: Unknown result type (might be due to invalid IL or missing references) //IL_27b1: Unknown result type (might be due to invalid IL or missing references) //IL_27cd: Unknown result type (might be due to invalid IL or missing references) //IL_27d2: Unknown result type (might be due to invalid IL or missing references) //IL_27db: Unknown result type (might be due to invalid IL or missing references) //IL_27e6: Unknown result type (might be due to invalid IL or missing references) //IL_27f7: Unknown result type (might be due to invalid IL or missing references) //IL_27fc: Unknown result type (might be due to invalid IL or missing references) //IL_2801: Unknown result type (might be due to invalid IL or missing references) //IL_3bb3: Unknown result type (might be due to invalid IL or missing references) //IL_3bb9: Unknown result type (might be due to invalid IL or missing references) //IL_3bbe: Unknown result type (might be due to invalid IL or missing references) //IL_3bc4: Unknown result type (might be due to invalid IL or missing references) //IL_3bc9: Unknown result type (might be due to invalid IL or missing references) //IL_3bcf: Unknown result type (might be due to invalid IL or missing references) //IL_3bd9: Unknown result type (might be due to invalid IL or missing references) //IL_3bde: Unknown result type (might be due to invalid IL or missing references) //IL_3be4: Unknown result type (might be due to invalid IL or missing references) //IL_3bee: Unknown result type (might be due to invalid IL or missing references) //IL_3bf4: Unknown result type (might be due to invalid IL or missing references) //IL_3bf9: Unknown result type (might be due to invalid IL or missing references) //IL_3bff: Unknown result type (might be due to invalid IL or missing references) //IL_3c04: Unknown result type (might be due to invalid IL or missing references) //IL_3c09: Unknown result type (might be due to invalid IL or missing references) //IL_3c0f: Unknown result type (might be due to invalid IL or missing references) //IL_3c19: Unknown result type (might be due to invalid IL or missing references) //IL_3c1e: Unknown result type (might be due to invalid IL or missing references) //IL_3c29: Unknown result type (might be due to invalid IL or missing references) //IL_3c2f: Unknown result type (might be due to invalid IL or missing references) //IL_3c34: Unknown result type (might be due to invalid IL or missing references) //IL_3c3a: Unknown result type (might be due to invalid IL or missing references) //IL_3c3f: Unknown result type (might be due to invalid IL or missing references) //IL_3c45: Unknown result type (might be due to invalid IL or missing references) //IL_3c4f: Unknown result type (might be due to invalid IL or missing references) //IL_3c54: Unknown result type (might be due to invalid IL or missing references) //IL_3c5a: Unknown result type (might be due to invalid IL or missing references) //IL_3c64: Unknown result type (might be due to invalid IL or missing references) //IL_3c6a: Unknown result type (might be due to invalid IL or missing references) //IL_3c6f: Unknown result type (might be due to invalid IL or missing references) //IL_3c75: Unknown result type (might be due to invalid IL or missing references) //IL_3c7a: Unknown result type (might be due to invalid IL or missing references) //IL_3c7f: Unknown result type (might be due to invalid IL or missing references) //IL_3c85: Unknown result type (might be due to invalid IL or missing references) //IL_3c8f: Unknown result type (might be due to invalid IL or missing references) //IL_3c94: Unknown result type (might be due to invalid IL or missing references) //IL_3ca0: Unknown result type (might be due to invalid IL or missing references) //IL_3aff: Unknown result type (might be due to invalid IL or missing references) //IL_3b04: Unknown result type (might be due to invalid IL or missing references) //IL_397e: Unknown result type (might be due to invalid IL or missing references) //IL_3983: Unknown result type (might be due to invalid IL or missing references) //IL_3992: Unknown result type (might be due to invalid IL or missing references) //IL_3997: Unknown result type (might be due to invalid IL or missing references) //IL_39b3: Unknown result type (might be due to invalid IL or missing references) //IL_39b8: Unknown result type (might be due to invalid IL or missing references) //IL_39c1: Unknown result type (might be due to invalid IL or missing references) //IL_39cc: Unknown result type (might be due to invalid IL or missing references) //IL_39dd: Unknown result type (might be due to invalid IL or missing references) //IL_39e2: Unknown result type (might be due to invalid IL or missing references) //IL_39e7: Unknown result type (might be due to invalid IL or missing references) //IL_2953: Unknown result type (might be due to invalid IL or missing references) //IL_2958: Unknown result type (might be due to invalid IL or missing references) //IL_2967: Unknown result type (might be due to invalid IL or missing references) //IL_296c: Unknown result type (might be due to invalid IL or missing references) //IL_2988: Unknown result type (might be due to invalid IL or missing references) //IL_298d: Unknown result type (might be due to invalid IL or missing references) //IL_2996: Unknown result type (might be due to invalid IL or missing references) //IL_29a1: Unknown result type (might be due to invalid IL or missing references) //IL_29b2: Unknown result type (might be due to invalid IL or missing references) //IL_29b7: Unknown result type (might be due to invalid IL or missing references) //IL_29bc: Unknown result type (might be due to invalid IL or missing references) //IL_3d6e: Unknown result type (might be due to invalid IL or missing references) //IL_3d74: Unknown result type (might be due to invalid IL or missing references) //IL_3d79: Unknown result type (might be due to invalid IL or missing references) //IL_3d7f: Unknown result type (might be due to invalid IL or missing references) //IL_3d84: Unknown result type (might be due to invalid IL or missing references) //IL_3d8a: Unknown result type (might be due to invalid IL or missing references) //IL_3d94: Unknown result type (might be due to invalid IL or missing references) //IL_3d99: Unknown result type (might be due to invalid IL or missing references) //IL_3d9f: Unknown result type (might be due to invalid IL or missing references) //IL_3da9: Unknown result type (might be due to invalid IL or missing references) //IL_3daf: Unknown result type (might be due to invalid IL or missing references) //IL_3db4: Unknown result type (might be due to invalid IL or missing references) //IL_3dba: Unknown result type (might be due to invalid IL or missing references) //IL_3dbf: Unknown result type (might be due to invalid IL or missing references) //IL_3dc4: Unknown result type (might be due to invalid IL or missing references) //IL_3dca: Unknown result type (might be due to invalid IL or missing references) //IL_3dd4: Unknown result type (might be due to invalid IL or missing references) //IL_3dd9: Unknown result type (might be due to invalid IL or missing references) //IL_3de4: Unknown result type (might be due to invalid IL or missing references) //IL_3dea: Unknown result type (might be due to invalid IL or missing references) //IL_3def: Unknown result type (might be due to invalid IL or missing references) //IL_3df5: Unknown result type (might be due to invalid IL or missing references) //IL_3dfa: Unknown result type (might be due to invalid IL or missing references) //IL_3e00: Unknown result type (might be due to invalid IL or missing references) //IL_3e0a: Unknown result type (might be due to invalid IL or missing references) //IL_3e0f: Unknown result type (might be due to invalid IL or missing references) //IL_3e15: Unknown result type (might be due to invalid IL or missing references) //IL_3e1f: Unknown result type (might be due to invalid IL or missing references) //IL_3e25: Unknown result type (might be due to invalid IL or missing references) //IL_3e2a: Unknown result type (might be due to invalid IL or missing references) //IL_3e30: Unknown result type (might be due to invalid IL or missing references) //IL_3e35: Unknown result type (might be due to invalid IL or missing references) //IL_3e3a: Unknown result type (might be due to invalid IL or missing references) //IL_3e40: Unknown result type (might be due to invalid IL or missing references) //IL_3e4a: Unknown result type (might be due to invalid IL or missing references) //IL_3e4f: Unknown result type (might be due to invalid IL or missing references) //IL_3e5b: Unknown result type (might be due to invalid IL or missing references) //IL_3cba: Unknown result type (might be due to invalid IL or missing references) //IL_3cbf: Unknown result type (might be due to invalid IL or missing references) //IL_3b39: Unknown result type (might be due to invalid IL or missing references) //IL_3b3e: Unknown result type (might be due to invalid IL or missing references) //IL_3b4d: Unknown result type (might be due to invalid IL or missing references) //IL_3b52: Unknown result type (might be due to invalid IL or missing references) //IL_3b6e: Unknown result type (might be due to invalid IL or missing references) //IL_3b73: Unknown result type (might be due to invalid IL or missing references) //IL_3b7c: Unknown result type (might be due to invalid IL or missing references) //IL_3b87: Unknown result type (might be due to invalid IL or missing references) //IL_3b98: Unknown result type (might be due to invalid IL or missing references) //IL_3b9d: Unknown result type (might be due to invalid IL or missing references) //IL_3ba2: Unknown result type (might be due to invalid IL or missing references) //IL_3f2b: Unknown result type (might be due to invalid IL or missing references) //IL_3f30: Unknown result type (might be due to invalid IL or missing references) //IL_3f3f: Unknown result type (might be due to invalid IL or missing references) //IL_3f44: Unknown result type (might be due to invalid IL or missing references) //IL_3f5b: Unknown result type (might be due to invalid IL or missing references) //IL_3f60: Unknown result type (might be due to invalid IL or missing references) //IL_3f7c: Unknown result type (might be due to invalid IL or missing references) //IL_3f81: Unknown result type (might be due to invalid IL or missing references) //IL_3f90: Unknown result type (might be due to invalid IL or missing references) //IL_3f95: Unknown result type (might be due to invalid IL or missing references) //IL_3fa6: Unknown result type (might be due to invalid IL or missing references) //IL_3fb1: Unknown result type (might be due to invalid IL or missing references) //IL_3fb6: Unknown result type (might be due to invalid IL or missing references) //IL_3fdf: Unknown result type (might be due to invalid IL or missing references) //IL_3fe4: Unknown result type (might be due to invalid IL or missing references) //IL_3ffb: Unknown result type (might be due to invalid IL or missing references) //IL_4000: Unknown result type (might be due to invalid IL or missing references) //IL_4005: Unknown result type (might be due to invalid IL or missing references) //IL_3e75: Unknown result type (might be due to invalid IL or missing references) //IL_3e7a: Unknown result type (might be due to invalid IL or missing references) //IL_3cf4: Unknown result type (might be due to invalid IL or missing references) //IL_3cf9: Unknown result type (might be due to invalid IL or missing references) //IL_3d08: Unknown result type (might be due to invalid IL or missing references) //IL_3d0d: Unknown result type (might be due to invalid IL or missing references) //IL_3d29: Unknown result type (might be due to invalid IL or missing references) //IL_3d2e: Unknown result type (might be due to invalid IL or missing references) //IL_3d37: Unknown result type (might be due to invalid IL or missing references) //IL_3d42: Unknown result type (might be due to invalid IL or missing references) //IL_3d53: Unknown result type (might be due to invalid IL or missing references) //IL_3d58: Unknown result type (might be due to invalid IL or missing references) //IL_3d5d: Unknown result type (might be due to invalid IL or missing references) //IL_3eaf: Unknown result type (might be due to invalid IL or missing references) //IL_3eb4: Unknown result type (might be due to invalid IL or missing references) //IL_3ec3: Unknown result type (might be due to invalid IL or missing references) //IL_3ec8: Unknown result type (might be due to invalid IL or missing references) //IL_3ee4: Unknown result type (might be due to invalid IL or missing references) //IL_3ee9: Unknown result type (might be due to invalid IL or missing references) //IL_3ef2: Unknown result type (might be due to invalid IL or missing references) //IL_3efd: Unknown result type (might be due to invalid IL or missing references) //IL_3f0e: Unknown result type (might be due to invalid IL or missing references) //IL_3f13: Unknown result type (might be due to invalid IL or missing references) //IL_3f18: Unknown result type (might be due to invalid IL or missing references) if (switching || !ledgeSwitchingDetectors.allowLedgeSwitching || !grabbedOn) { return; } if ((!Physics.Linecast(((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2f + surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.8f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2f + surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { if ((!Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) { if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref switchHitPoint)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit) { r1SecondForwardHit = true; if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2), ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r1SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r1SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r1SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r1SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r1SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r1SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r1SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r1SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else { r1SecondForwardHitPoint = new Vector3(((RaycastHit)(ref switchHitPoint)).point.x - ((Component)this).transform.forward.x * length2, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref switchHitPoint)).point.z - ((Component)this).transform.forward.x * length2) + new Vector3((0f - ((Component)this).transform.forward.x) * length2 / 10f, onLedgeHeight2 / 10f, (0f - ((Component)this).transform.forward.z) * length2 / 10f); } } else { r1SecondForwardHit = false; } } else { r1SecondForwardHit = false; } } else { r1SecondForwardHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2f + surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.8f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2f + surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { if ((!Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) { if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref switchHitPoint)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit) { r2SecondForwardHit = true; if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2), ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r2SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r2SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r2SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r2SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r2SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r2SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r2SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r2SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else { r2SecondForwardHitPoint = new Vector3(((RaycastHit)(ref switchHitPoint)).point.x - ((Component)this).transform.forward.x * length2, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref switchHitPoint)).point.z - ((Component)this).transform.forward.x * length2) + new Vector3((0f - ((Component)this).transform.forward.x) * length2 / 10f, onLedgeHeight2 / 10f, (0f - ((Component)this).transform.forward.z) * length2 / 10f); } } else { r2SecondForwardHit = false; } } else { r2SecondForwardHit = false; } } else { r2SecondForwardHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2f + surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.8f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2f + surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { if ((!Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f + ledgeSwitchSurfaceLength / 0.585f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) { if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref switchHitPoint)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit) { r3SecondForwardHit = true; if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2), ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r3SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r3SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r3SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r3SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r3SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r3SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r3SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r3SecondForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (6.5f / length2); } else { r3SecondForwardHitPoint = new Vector3(((RaycastHit)(ref switchHitPoint)).point.x - ((Component)this).transform.forward.x * length2, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref switchHitPoint)).point.z - ((Component)this).transform.forward.x * length2) + new Vector3((0f - ((Component)this).transform.forward.x) * length2 / 10f, onLedgeHeight2 / 10f, (0f - ((Component)this).transform.forward.z) * length2 / 10f); } } else { r3SecondForwardHit = false; } } else { r3SecondForwardHit = false; } } else { r3SecondForwardHit = false; } } private void LedgeSwitchHitPointsFirstFrontRight() { //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_006a: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_0089: Unknown result type (might be due to invalid IL or missing references) //IL_008e: Unknown result type (might be due to invalid IL or missing references) //IL_0094: Unknown result type (might be due to invalid IL or missing references) //IL_0099: Unknown result type (might be due to invalid IL or missing references) //IL_009f: Unknown result type (might be due to invalid IL or missing references) //IL_00a4: Unknown result type (might be due to invalid IL or missing references) //IL_00af: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) //IL_00ba: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_00cb: Unknown result type (might be due to invalid IL or missing references) //IL_00d0: Unknown result type (might be due to invalid IL or missing references) //IL_00d6: Unknown result type (might be due to invalid IL or missing references) //IL_00e0: Unknown result type (might be due to invalid IL or missing references) //IL_00e5: Unknown result type (might be due to invalid IL or missing references) //IL_00eb: Unknown result type (might be due to invalid IL or missing references) //IL_00f5: Unknown result type (might be due to invalid IL or missing references) //IL_00fa: Unknown result type (might be due to invalid IL or missing references) //IL_0100: Unknown result type (might be due to invalid IL or missing references) //IL_010a: Unknown result type (might be due to invalid IL or missing references) //IL_010f: Unknown result type (might be due to invalid IL or missing references) //IL_0115: Unknown result type (might be due to invalid IL or missing references) //IL_011a: Unknown result type (might be due to invalid IL or missing references) //IL_0120: Unknown result type (might be due to invalid IL or missing references) //IL_0125: Unknown result type (might be due to invalid IL or missing references) //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_0268: Unknown result type (might be due to invalid IL or missing references) //IL_026e: Unknown result type (might be due to invalid IL or missing references) //IL_0273: Unknown result type (might be due to invalid IL or missing references) //IL_0279: Unknown result type (might be due to invalid IL or missing references) //IL_027e: Unknown result type (might be due to invalid IL or missing references) //IL_0284: Unknown result type (might be due to invalid IL or missing references) //IL_0289: Unknown result type (might be due to invalid IL or missing references) //IL_028f: Unknown result type (might be due to invalid IL or missing references) //IL_0299: Unknown result type (might be due to invalid IL or missing references) //IL_029e: Unknown result type (might be due to invalid IL or missing references) //IL_02a4: Unknown result type (might be due to invalid IL or missing references) //IL_02ae: Unknown result type (might be due to invalid IL or missing references) //IL_02b3: Unknown result type (might be due to invalid IL or missing references) //IL_02b9: Unknown result type (might be due to invalid IL or missing references) //IL_02c3: Unknown result type (might be due to invalid IL or missing references) //IL_02c8: Unknown result type (might be due to invalid IL or missing references) //IL_02ce: Unknown result type (might be due to invalid IL or missing references) //IL_02d3: Unknown result type (might be due to invalid IL or missing references) //IL_02d9: Unknown result type (might be due to invalid IL or missing references) //IL_02de: Unknown result type (might be due to invalid IL or missing references) //IL_02e9: Unknown result type (might be due to invalid IL or missing references) //IL_02ef: Unknown result type (might be due to invalid IL or missing references) //IL_02f4: Unknown result type (might be due to invalid IL or missing references) //IL_02fa: Unknown result type (might be due to invalid IL or missing references) //IL_02ff: Unknown result type (might be due to invalid IL or missing references) //IL_0305: Unknown result type (might be due to invalid IL or missing references) //IL_030a: Unknown result type (might be due to invalid IL or missing references) //IL_0310: Unknown result type (might be due to invalid IL or missing references) //IL_031a: Unknown result type (might be due to invalid IL or missing references) //IL_031f: Unknown result type (might be due to invalid IL or missing references) //IL_0325: Unknown result type (might be due to invalid IL or missing references) //IL_032f: Unknown result type (might be due to invalid IL or missing references) //IL_0334: Unknown result type (might be due to invalid IL or missing references) //IL_033a: Unknown result type (might be due to invalid IL or missing references) //IL_0344: Unknown result type (might be due to invalid IL or missing references) //IL_0349: Unknown result type (might be due to invalid IL or missing references) //IL_034f: Unknown result type (might be due to invalid IL or missing references) //IL_0354: Unknown result type (might be due to invalid IL or missing references) //IL_0360: Unknown result type (might be due to invalid IL or missing references) //IL_014b: Unknown result type (might be due to invalid IL or missing references) //IL_0151: Unknown result type (might be due to invalid IL or missing references) //IL_0156: Unknown result type (might be due to invalid IL or missing references) //IL_015c: Unknown result type (might be due to invalid IL or missing references) //IL_0161: Unknown result type (might be due to invalid IL or missing references) //IL_0167: Unknown result type (might be due to invalid IL or missing references) //IL_016c: Unknown result type (might be due to invalid IL or missing references) //IL_0172: Unknown result type (might be due to invalid IL or missing references) //IL_017c: Unknown result type (might be due to invalid IL or missing references) //IL_0181: Unknown result type (might be due to invalid IL or missing references) //IL_0187: Unknown result type (might be due to invalid IL or missing references) //IL_0191: Unknown result type (might be due to invalid IL or missing references) //IL_0196: Unknown result type (might be due to invalid IL or missing references) //IL_019c: Unknown result type (might be due to invalid IL or missing references) //IL_01a6: Unknown result type (might be due to invalid IL or missing references) //IL_01ab: Unknown result type (might be due to invalid IL or missing references) //IL_01b1: Unknown result type (might be due to invalid IL or missing references) //IL_01b6: Unknown result type (might be due to invalid IL or missing references) //IL_01bc: Unknown result type (might be due to invalid IL or missing references) //IL_01c1: Unknown result type (might be due to invalid IL or missing references) //IL_01cc: Unknown result type (might be due to invalid IL or missing references) //IL_01d2: Unknown result type (might be due to invalid IL or missing references) //IL_01d7: Unknown result type (might be due to invalid IL or missing references) //IL_01dd: Unknown result type (might be due to invalid IL or missing references) //IL_01e2: Unknown result type (might be due to invalid IL or missing references) //IL_01e8: Unknown result type (might be due to invalid IL or missing references) //IL_01ed: Unknown result type (might be due to invalid IL or missing references) //IL_01f3: Unknown result type (might be due to invalid IL or missing references) //IL_01fd: Unknown result type (might be due to invalid IL or missing references) //IL_0202: Unknown result type (might be due to invalid IL or missing references) //IL_0208: Unknown result type (might be due to invalid IL or missing references) //IL_020d: Unknown result type (might be due to invalid IL or missing references) //IL_0213: Unknown result type (might be due to invalid IL or missing references) //IL_021d: Unknown result type (might be due to invalid IL or missing references) //IL_0222: Unknown result type (might be due to invalid IL or missing references) //IL_0228: Unknown result type (might be due to invalid IL or missing references) //IL_0232: Unknown result type (might be due to invalid IL or missing references) //IL_0237: Unknown result type (might be due to invalid IL or missing references) //IL_023d: Unknown result type (might be due to invalid IL or missing references) //IL_0242: Unknown result type (might be due to invalid IL or missing references) //IL_024e: Unknown result type (might be due to invalid IL or missing references) //IL_0398: Unknown result type (might be due to invalid IL or missing references) //IL_039e: Unknown result type (might be due to invalid IL or missing references) //IL_03a3: Unknown result type (might be due to invalid IL or missing references) //IL_03a9: Unknown result type (might be due to invalid IL or missing references) //IL_03ae: Unknown result type (might be due to invalid IL or missing references) //IL_03b4: Unknown result type (might be due to invalid IL or missing references) //IL_03b9: Unknown result type (might be due to invalid IL or missing references) //IL_03bf: Unknown result type (might be due to invalid IL or missing references) //IL_03c9: Unknown result type (might be due to invalid IL or missing references) //IL_03ce: Unknown result type (might be due to invalid IL or missing references) //IL_03d4: Unknown result type (might be due to invalid IL or missing references) //IL_03de: Unknown result type (might be due to invalid IL or missing references) //IL_03e3: Unknown result type (might be due to invalid IL or missing references) //IL_03e9: Unknown result type (might be due to invalid IL or missing references) //IL_03f3: Unknown result type (might be due to invalid IL or missing references) //IL_03f8: Unknown result type (might be due to invalid IL or missing references) //IL_03fe: Unknown result type (might be due to invalid IL or missing references) //IL_0403: Unknown result type (might be due to invalid IL or missing references) //IL_0409: Unknown result type (might be due to invalid IL or missing references) //IL_040e: Unknown result type (might be due to invalid IL or missing references) //IL_0419: Unknown result type (might be due to invalid IL or missing references) //IL_041f: Unknown result type (might be due to invalid IL or missing references) //IL_0424: Unknown result type (might be due to invalid IL or missing references) //IL_042a: Unknown result type (might be due to invalid IL or missing references) //IL_042f: Unknown result type (might be due to invalid IL or missing references) //IL_0435: Unknown result type (might be due to invalid IL or missing references) //IL_043a: Unknown result type (might be due to invalid IL or missing references) //IL_0440: Unknown result type (might be due to invalid IL or missing references) //IL_044a: Unknown result type (might be due to invalid IL or missing references) //IL_044f: Unknown result type (might be due to invalid IL or missing references) //IL_0455: Unknown result type (might be due to invalid IL or missing references) //IL_045f: Unknown result type (might be due to invalid IL or missing references) //IL_0464: Unknown result type (might be due to invalid IL or missing references) //IL_046a: Unknown result type (might be due to invalid IL or missing references) //IL_0474: Unknown result type (might be due to invalid IL or missing references) //IL_0479: Unknown result type (might be due to invalid IL or missing references) //IL_047f: Unknown result type (might be due to invalid IL or missing references) //IL_0484: Unknown result type (might be due to invalid IL or missing references) //IL_048a: Unknown result type (might be due to invalid IL or missing references) //IL_048f: Unknown result type (might be due to invalid IL or missing references) //IL_049b: Unknown result type (might be due to invalid IL or missing references) //IL_05d2: Unknown result type (might be due to invalid IL or missing references) //IL_05d8: Unknown result type (might be due to invalid IL or missing references) //IL_05dd: Unknown result type (might be due to invalid IL or missing references) //IL_05e3: Unknown result type (might be due to invalid IL or missing references) //IL_05e8: Unknown result type (might be due to invalid IL or missing references) //IL_05ee: Unknown result type (might be due to invalid IL or missing references) //IL_05f3: Unknown result type (might be due to invalid IL or missing references) //IL_05f9: Unknown result type (might be due to invalid IL or missing references) //IL_0603: Unknown result type (might be due to invalid IL or missing references) //IL_0608: Unknown result type (might be due to invalid IL or missing references) //IL_060e: Unknown result type (might be due to invalid IL or missing references) //IL_0618: Unknown result type (might be due to invalid IL or missing references) //IL_061d: Unknown result type (might be due to invalid IL or missing references) //IL_0623: Unknown result type (might be due to invalid IL or missing references) //IL_062d: Unknown result type (might be due to invalid IL or missing references) //IL_0632: Unknown result type (might be due to invalid IL or missing references) //IL_0638: Unknown result type (might be due to invalid IL or missing references) //IL_063d: Unknown result type (might be due to invalid IL or missing references) //IL_0643: Unknown result type (might be due to invalid IL or missing references) //IL_0648: Unknown result type (might be due to invalid IL or missing references) //IL_0653: Unknown result type (might be due to invalid IL or missing references) //IL_0659: Unknown result type (might be due to invalid IL or missing references) //IL_065e: Unknown result type (might be due to invalid IL or missing references) //IL_0664: Unknown result type (might be due to invalid IL or missing references) //IL_0669: Unknown result type (might be due to invalid IL or missing references) //IL_066f: Unknown result type (might be due to invalid IL or missing references) //IL_0674: Unknown result type (might be due to invalid IL or missing references) //IL_067a: Unknown result type (might be due to invalid IL or missing references) //IL_0684: Unknown result type (might be due to invalid IL or missing references) //IL_0689: Unknown result type (might be due to invalid IL or missing references) //IL_068f: Unknown result type (might be due to invalid IL or missing references) //IL_0699: Unknown result type (might be due to invalid IL or missing references) //IL_069e: Unknown result type (might be due to invalid IL or missing references) //IL_06a4: Unknown result type (might be due to invalid IL or missing references) //IL_06ae: Unknown result type (might be due to invalid IL or missing references) //IL_06b3: Unknown result type (might be due to invalid IL or missing references) //IL_06b9: Unknown result type (might be due to invalid IL or missing references) //IL_06be: Unknown result type (might be due to invalid IL or missing references) //IL_06ca: Unknown result type (might be due to invalid IL or missing references) //IL_04b5: Unknown result type (might be due to invalid IL or missing references) //IL_04bb: Unknown result type (might be due to invalid IL or missing references) //IL_04c0: Unknown result type (might be due to invalid IL or missing references) //IL_04c6: Unknown result type (might be due to invalid IL or missing references) //IL_04cb: Unknown result type (might be due to invalid IL or missing references) //IL_04d1: Unknown result type (might be due to invalid IL or missing references) //IL_04d6: Unknown result type (might be due to invalid IL or missing references) //IL_04dc: Unknown result type (might be due to invalid IL or missing references) //IL_04e6: Unknown result type (might be due to invalid IL or missing references) //IL_04eb: Unknown result type (might be due to invalid IL or missing references) //IL_04f1: Unknown result type (might be due to invalid IL or missing references) //IL_04fb: Unknown result type (might be due to invalid IL or missing references) //IL_0500: Unknown result type (might be due to invalid IL or missing references) //IL_0506: Unknown result type (might be due to invalid IL or missing references) //IL_0510: Unknown result type (might be due to invalid IL or missing references) //IL_0515: Unknown result type (might be due to invalid IL or missing references) //IL_051b: Unknown result type (might be due to invalid IL or missing references) //IL_0520: Unknown result type (might be due to invalid IL or missing references) //IL_0526: Unknown result type (might be due to invalid IL or missing references) //IL_052b: Unknown result type (might be due to invalid IL or missing references) //IL_0536: Unknown result type (might be due to invalid IL or missing references) //IL_053c: Unknown result type (might be due to invalid IL or missing references) //IL_0541: Unknown result type (might be due to invalid IL or missing references) //IL_0547: Unknown result type (might be due to invalid IL or missing references) //IL_054c: Unknown result type (might be due to invalid IL or missing references) //IL_0552: Unknown result type (might be due to invalid IL or missing references) //IL_0557: Unknown result type (might be due to invalid IL or missing references) //IL_055d: Unknown result type (might be due to invalid IL or missing references) //IL_0567: Unknown result type (might be due to invalid IL or missing references) //IL_056c: Unknown result type (might be due to invalid IL or missing references) //IL_0572: Unknown result type (might be due to invalid IL or missing references) //IL_0577: Unknown result type (might be due to invalid IL or missing references) //IL_057d: Unknown result type (might be due to invalid IL or missing references) //IL_0587: Unknown result type (might be due to invalid IL or missing references) //IL_058c: Unknown result type (might be due to invalid IL or missing references) //IL_0592: Unknown result type (might be due to invalid IL or missing references) //IL_059c: Unknown result type (might be due to invalid IL or missing references) //IL_05a1: Unknown result type (might be due to invalid IL or missing references) //IL_05a7: Unknown result type (might be due to invalid IL or missing references) //IL_05ac: Unknown result type (might be due to invalid IL or missing references) //IL_05b8: Unknown result type (might be due to invalid IL or missing references) //IL_0702: Unknown result type (might be due to invalid IL or missing references) //IL_0708: Unknown result type (might be due to invalid IL or missing references) //IL_070d: Unknown result type (might be due to invalid IL or missing references) //IL_0713: Unknown result type (might be due to invalid IL or missing references) //IL_0718: Unknown result type (might be due to invalid IL or missing references) //IL_071e: Unknown result type (might be due to invalid IL or missing references) //IL_0723: Unknown result type (might be due to invalid IL or missing references) //IL_0729: Unknown result type (might be due to invalid IL or missing references) //IL_0733: Unknown result type (might be due to invalid IL or missing references) //IL_0738: Unknown result type (might be due to invalid IL or missing references) //IL_073e: Unknown result type (might be due to invalid IL or missing references) //IL_0748: Unknown result type (might be due to invalid IL or missing references) //IL_074d: Unknown result type (might be due to invalid IL or missing references) //IL_0753: Unknown result type (might be due to invalid IL or missing references) //IL_075d: Unknown result type (might be due to invalid IL or missing references) //IL_0762: Unknown result type (might be due to invalid IL or missing references) //IL_0768: Unknown result type (might be due to invalid IL or missing references) //IL_076d: Unknown result type (might be due to invalid IL or missing references) //IL_0773: Unknown result type (might be due to invalid IL or missing references) //IL_0778: Unknown result type (might be due to invalid IL or missing references) //IL_0783: Unknown result type (might be due to invalid IL or missing references) //IL_0789: Unknown result type (might be due to invalid IL or missing references) //IL_078e: Unknown result type (might be due to invalid IL or missing references) //IL_0794: Unknown result type (might be due to invalid IL or missing references) //IL_0799: Unknown result type (might be due to invalid IL or missing references) //IL_079f: Unknown result type (might be due to invalid IL or missing references) //IL_07a4: Unknown result type (might be due to invalid IL or missing references) //IL_07aa: Unknown result type (might be due to invalid IL or missing references) //IL_07b4: Unknown result type (might be due to invalid IL or missing references) //IL_07b9: Unknown result type (might be due to invalid IL or missing references) //IL_07bf: Unknown result type (might be due to invalid IL or missing references) //IL_07c9: Unknown result type (might be due to invalid IL or missing references) //IL_07ce: Unknown result type (might be due to invalid IL or missing references) //IL_07d4: Unknown result type (might be due to invalid IL or missing references) //IL_07de: Unknown result type (might be due to invalid IL or missing references) //IL_07e3: Unknown result type (might be due to invalid IL or missing references) //IL_07e9: Unknown result type (might be due to invalid IL or missing references) //IL_07ee: Unknown result type (might be due to invalid IL or missing references) //IL_07f4: Unknown result type (might be due to invalid IL or missing references) //IL_07f9: Unknown result type (might be due to invalid IL or missing references) //IL_0805: Unknown result type (might be due to invalid IL or missing references) //IL_093c: Unknown result type (might be due to invalid IL or missing references) //IL_0942: Unknown result type (might be due to invalid IL or missing references) //IL_0947: Unknown result type (might be due to invalid IL or missing references) //IL_094d: Unknown result type (might be due to invalid IL or missing references) //IL_0952: Unknown result type (might be due to invalid IL or missing references) //IL_0958: Unknown result type (might be due to invalid IL or missing references) //IL_095d: Unknown result type (might be due to invalid IL or missing references) //IL_0963: Unknown result type (might be due to invalid IL or missing references) //IL_096d: Unknown result type (might be due to invalid IL or missing references) //IL_0972: Unknown result type (might be due to invalid IL or missing references) //IL_0978: Unknown result type (might be due to invalid IL or missing references) //IL_0982: Unknown result type (might be due to invalid IL or missing references) //IL_0987: Unknown result type (might be due to invalid IL or missing references) //IL_098d: Unknown result type (might be due to invalid IL or missing references) //IL_0997: Unknown result type (might be due to invalid IL or missing references) //IL_099c: Unknown result type (might be due to invalid IL or missing references) //IL_09a2: Unknown result type (might be due to invalid IL or missing references) //IL_09a7: Unknown result type (might be due to invalid IL or missing references) //IL_09ad: Unknown result type (might be due to invalid IL or missing references) //IL_09b2: Unknown result type (might be due to invalid IL or missing references) //IL_09bd: Unknown result type (might be due to invalid IL or missing references) //IL_09c3: Unknown result type (might be due to invalid IL or missing references) //IL_09c8: Unknown result type (might be due to invalid IL or missing references) //IL_09ce: Unknown result type (might be due to invalid IL or missing references) //IL_09d3: Unknown result type (might be due to invalid IL or missing references) //IL_09d9: Unknown result type (might be due to invalid IL or missing references) //IL_09de: Unknown result type (might be due to invalid IL or missing references) //IL_09e4: Unknown result type (might be due to invalid IL or missing references) //IL_09ee: Unknown result type (might be due to invalid IL or missing references) //IL_09f3: Unknown result type (might be due to invalid IL or missing references) //IL_09f9: Unknown result type (might be due to invalid IL or missing references) //IL_0a03: Unknown result type (might be due to invalid IL or missing references) //IL_0a08: Unknown result type (might be due to invalid IL or missing references) //IL_0a0e: Unknown result type (might be due to invalid IL or missing references) //IL_0a18: Unknown result type (might be due to invalid IL or missing references) //IL_0a1d: Unknown result type (might be due to invalid IL or missing references) //IL_0a23: Unknown result type (might be due to invalid IL or missing references) //IL_0a28: Unknown result type (might be due to invalid IL or missing references) //IL_0a34: Unknown result type (might be due to invalid IL or missing references) //IL_081f: Unknown result type (might be due to invalid IL or missing references) //IL_0825: Unknown result type (might be due to invalid IL or missing references) //IL_082a: Unknown result type (might be due to invalid IL or missing references) //IL_0830: Unknown result type (might be due to invalid IL or missing references) //IL_0835: Unknown result type (might be due to invalid IL or missing references) //IL_083b: Unknown result type (might be due to invalid IL or missing references) //IL_0840: Unknown result type (might be due to invalid IL or missing references) //IL_0846: Unknown result type (might be due to invalid IL or missing references) //IL_0850: Unknown result type (might be due to invalid IL or missing references) //IL_0855: Unknown result type (might be due to invalid IL or missing references) //IL_085b: Unknown result type (might be due to invalid IL or missing references) //IL_0865: Unknown result type (might be due to invalid IL or missing references) //IL_086a: Unknown result type (might be due to invalid IL or missing references) //IL_0870: Unknown result type (might be due to invalid IL or missing references) //IL_087a: Unknown result type (might be due to invalid IL or missing references) //IL_087f: Unknown result type (might be due to invalid IL or missing references) //IL_0885: Unknown result type (might be due to invalid IL or missing references) //IL_088a: Unknown result type (might be due to invalid IL or missing references) //IL_0890: Unknown result type (might be due to invalid IL or missing references) //IL_0895: Unknown result type (might be due to invalid IL or missing references) //IL_08a0: Unknown result type (might be due to invalid IL or missing references) //IL_08a6: Unknown result type (might be due to invalid IL or missing references) //IL_08ab: Unknown result type (might be due to invalid IL or missing references) //IL_08b1: Unknown result type (might be due to invalid IL or missing references) //IL_08b6: Unknown result type (might be due to invalid IL or missing references) //IL_08bc: Unknown result type (might be due to invalid IL or missing references) //IL_08c1: Unknown result type (might be due to invalid IL or missing references) //IL_08c7: Unknown result type (might be due to invalid IL or missing references) //IL_08d1: Unknown result type (might be due to invalid IL or missing references) //IL_08d6: Unknown result type (might be due to invalid IL or missing references) //IL_08dc: Unknown result type (might be due to invalid IL or missing references) //IL_08e1: Unknown result type (might be due to invalid IL or missing references) //IL_08e7: Unknown result type (might be due to invalid IL or missing references) //IL_08f1: Unknown result type (might be due to invalid IL or missing references) //IL_08f6: Unknown result type (might be due to invalid IL or missing references) //IL_08fc: Unknown result type (might be due to invalid IL or missing references) //IL_0906: Unknown result type (might be due to invalid IL or missing references) //IL_090b: Unknown result type (might be due to invalid IL or missing references) //IL_0911: Unknown result type (might be due to invalid IL or missing references) //IL_0916: Unknown result type (might be due to invalid IL or missing references) //IL_0922: Unknown result type (might be due to invalid IL or missing references) //IL_0a6c: Unknown result type (might be due to invalid IL or missing references) //IL_0a72: Unknown result type (might be due to invalid IL or missing references) //IL_0a77: Unknown result type (might be due to invalid IL or missing references) //IL_0a7d: Unknown result type (might be due to invalid IL or missing references) //IL_0a87: Unknown result type (might be due to invalid IL or missing references) //IL_0a8c: Unknown result type (might be due to invalid IL or missing references) //IL_0a92: Unknown result type (might be due to invalid IL or missing references) //IL_0a9c: Unknown result type (might be due to invalid IL or missing references) //IL_0aa1: Unknown result type (might be due to invalid IL or missing references) //IL_0aa7: Unknown result type (might be due to invalid IL or missing references) //IL_0ab1: Unknown result type (might be due to invalid IL or missing references) //IL_0ab6: Unknown result type (might be due to invalid IL or missing references) //IL_0abc: Unknown result type (might be due to invalid IL or missing references) //IL_0ac1: Unknown result type (might be due to invalid IL or missing references) //IL_0ac7: Unknown result type (might be due to invalid IL or missing references) //IL_0acc: Unknown result type (might be due to invalid IL or missing references) //IL_0ad2: Unknown result type (might be due to invalid IL or missing references) //IL_0ad7: Unknown result type (might be due to invalid IL or missing references) //IL_0ae2: Unknown result type (might be due to invalid IL or missing references) //IL_0ae8: Unknown result type (might be due to invalid IL or missing references) //IL_0aed: Unknown result type (might be due to invalid IL or missing references) //IL_0af3: Unknown result type (might be due to invalid IL or missing references) //IL_0afd: Unknown result type (might be due to invalid IL or missing references) //IL_0b02: Unknown result type (might be due to invalid IL or missing references) //IL_0b08: Unknown result type (might be due to invalid IL or missing references) //IL_0b12: Unknown result type (might be due to invalid IL or missing references) //IL_0b17: Unknown result type (might be due to invalid IL or missing references) //IL_0b1d: Unknown result type (might be due to invalid IL or missing references) //IL_0b27: Unknown result type (might be due to invalid IL or missing references) //IL_0b2c: Unknown result type (might be due to invalid IL or missing references) //IL_0b32: Unknown result type (might be due to invalid IL or missing references) //IL_0b37: Unknown result type (might be due to invalid IL or missing references) //IL_0b3d: Unknown result type (might be due to invalid IL or missing references) //IL_0b42: Unknown result type (might be due to invalid IL or missing references) //IL_0b48: Unknown result type (might be due to invalid IL or missing references) //IL_0b4d: Unknown result type (might be due to invalid IL or missing references) //IL_0b59: Unknown result type (might be due to invalid IL or missing references) //IL_0c7a: Unknown result type (might be due to invalid IL or missing references) //IL_0c80: Unknown result type (might be due to invalid IL or missing references) //IL_0c85: Unknown result type (might be due to invalid IL or missing references) //IL_0c8b: Unknown result type (might be due to invalid IL or missing references) //IL_0c95: Unknown result type (might be due to invalid IL or missing references) //IL_0c9a: Unknown result type (might be due to invalid IL or missing references) //IL_0ca0: Unknown result type (might be due to invalid IL or missing references) //IL_0caa: Unknown result type (might be due to invalid IL or missing references) //IL_0caf: Unknown result type (might be due to invalid IL or missing references) //IL_0cb5: Unknown result type (might be due to invalid IL or missing references) //IL_0cbf: Unknown result type (might be due to invalid IL or missing references) //IL_0cc4: Unknown result type (might be due to invalid IL or missing references) //IL_0cca: Unknown result type (might be due to invalid IL or missing references) //IL_0ccf: Unknown result type (might be due to invalid IL or missing references) //IL_0cd5: Unknown result type (might be due to invalid IL or missing references) //IL_0cda: Unknown result type (might be due to invalid IL or missing references) //IL_0ce0: Unknown result type (might be due to invalid IL or missing references) //IL_0ce5: Unknown result type (might be due to invalid IL or missing references) //IL_0cf0: Unknown result type (might be due to invalid IL or missing references) //IL_0cf6: Unknown result type (might be due to invalid IL or missing references) //IL_0cfb: Unknown result type (might be due to invalid IL or missing references) //IL_0d01: Unknown result type (might be due to invalid IL or missing references) //IL_0d0b: Unknown result type (might be due to invalid IL or missing references) //IL_0d10: Unknown result type (might be due to invalid IL or missing references) //IL_0d16: Unknown result type (might be due to invalid IL or missing references) //IL_0d20: Unknown result type (might be due to invalid IL or missing references) //IL_0d25: Unknown result type (might be due to invalid IL or missing references) //IL_0d2b: Unknown result type (might be due to invalid IL or missing references) //IL_0d35: Unknown result type (might be due to invalid IL or missing references) //IL_0d3a: Unknown result type (might be due to invalid IL or missing references) //IL_0d40: Unknown result type (might be due to invalid IL or missing references) //IL_0d45: Unknown result type (might be due to invalid IL or missing references) //IL_0d4b: Unknown result type (might be due to invalid IL or missing references) //IL_0d50: Unknown result type (might be due to invalid IL or missing references) //IL_0d5c: Unknown result type (might be due to invalid IL or missing references) //IL_0b73: Unknown result type (might be due to invalid IL or missing references) //IL_0b79: Unknown result type (might be due to invalid IL or missing references) //IL_0b7e: Unknown result type (might be due to invalid IL or missing references) //IL_0b84: Unknown result type (might be due to invalid IL or missing references) //IL_0b8e: Unknown result type (might be due to invalid IL or missing references) //IL_0b93: Unknown result type (might be due to invalid IL or missing references) //IL_0b99: Unknown result type (might be due to invalid IL or missing references) //IL_0ba3: Unknown result type (might be due to invalid IL or missing references) //IL_0ba8: Unknown result type (might be due to invalid IL or missing references) //IL_0bae: Unknown result type (might be due to invalid IL or missing references) //IL_0bb8: Unknown result type (might be due to invalid IL or missing references) //IL_0bbd: Unknown result type (might be due to invalid IL or missing references) //IL_0bc3: Unknown result type (might be due to invalid IL or missing references) //IL_0bc8: Unknown result type (might be due to invalid IL or missing references) //IL_0bce: Unknown result type (might be due to invalid IL or missing references) //IL_0bd3: Unknown result type (might be due to invalid IL or missing references) //IL_0bd9: Unknown result type (might be due to invalid IL or missing references) //IL_0bde: Unknown result type (might be due to invalid IL or missing references) //IL_0be9: Unknown result type (might be due to invalid IL or missing references) //IL_0bef: Unknown result type (might be due to invalid IL or missing references) //IL_0bf4: Unknown result type (might be due to invalid IL or missing references) //IL_0bfa: Unknown result type (might be due to invalid IL or missing references) //IL_0c04: Unknown result type (might be due to invalid IL or missing references) //IL_0c09: Unknown result type (might be due to invalid IL or missing references) //IL_0c0f: Unknown result type (might be due to invalid IL or missing references) //IL_0c14: Unknown result type (might be due to invalid IL or missing references) //IL_0c1a: Unknown result type (might be due to invalid IL or missing references) //IL_0c24: Unknown result type (might be due to invalid IL or missing references) //IL_0c29: Unknown result type (might be due to invalid IL or missing references) //IL_0c2f: Unknown result type (might be due to invalid IL or missing references) //IL_0c39: Unknown result type (might be due to invalid IL or missing references) //IL_0c3e: Unknown result type (might be due to invalid IL or missing references) //IL_0c44: Unknown result type (might be due to invalid IL or missing references) //IL_0c49: Unknown result type (might be due to invalid IL or missing references) //IL_0c4f: Unknown result type (might be due to invalid IL or missing references) //IL_0c54: Unknown result type (might be due to invalid IL or missing references) //IL_0c60: Unknown result type (might be due to invalid IL or missing references) //IL_0d77: Unknown result type (might be due to invalid IL or missing references) //IL_0d7c: Unknown result type (might be due to invalid IL or missing references) //IL_1c1f: Unknown result type (might be due to invalid IL or missing references) //IL_1c25: Unknown result type (might be due to invalid IL or missing references) //IL_1c2a: Unknown result type (might be due to invalid IL or missing references) //IL_1c30: Unknown result type (might be due to invalid IL or missing references) //IL_1c3a: Unknown result type (might be due to invalid IL or missing references) //IL_1c3f: Unknown result type (might be due to invalid IL or missing references) //IL_1c45: Unknown result type (might be due to invalid IL or missing references) //IL_1c4f: Unknown result type (might be due to invalid IL or missing references) //IL_1c54: Unknown result type (might be due to invalid IL or missing references) //IL_1c5a: Unknown result type (might be due to invalid IL or missing references) //IL_1c64: Unknown result type (might be due to invalid IL or missing references) //IL_1c69: Unknown result type (might be due to invalid IL or missing references) //IL_1c6f: Unknown result type (might be due to invalid IL or missing references) //IL_1c74: Unknown result type (might be due to invalid IL or missing references) //IL_1c7a: Unknown result type (might be due to invalid IL or missing references) //IL_1c7f: Unknown result type (might be due to invalid IL or missing references) //IL_1c85: Unknown result type (might be due to invalid IL or missing references) //IL_1c8a: Unknown result type (might be due to invalid IL or missing references) //IL_1c95: Unknown result type (might be due to invalid IL or missing references) //IL_1c9b: Unknown result type (might be due to invalid IL or missing references) //IL_1ca0: Unknown result type (might be due to invalid IL or missing references) //IL_1ca6: Unknown result type (might be due to invalid IL or missing references) //IL_1cb0: Unknown result type (might be due to invalid IL or missing references) //IL_1cb5: Unknown result type (might be due to invalid IL or missing references) //IL_1cbb: Unknown result type (might be due to invalid IL or missing references) //IL_1cc5: Unknown result type (might be due to invalid IL or missing references) //IL_1cca: Unknown result type (might be due to invalid IL or missing references) //IL_1cd0: Unknown result type (might be due to invalid IL or missing references) //IL_1cda: Unknown result type (might be due to invalid IL or missing references) //IL_1cdf: Unknown result type (might be due to invalid IL or missing references) //IL_1ce5: Unknown result type (might be due to invalid IL or missing references) //IL_1cea: Unknown result type (might be due to invalid IL or missing references) //IL_1cf0: Unknown result type (might be due to invalid IL or missing references) //IL_1cf5: Unknown result type (might be due to invalid IL or missing references) //IL_1cfb: Unknown result type (might be due to invalid IL or missing references) //IL_1d00: Unknown result type (might be due to invalid IL or missing references) //IL_1d0c: Unknown result type (might be due to invalid IL or missing references) //IL_1e2d: Unknown result type (might be due to invalid IL or missing references) //IL_1e33: Unknown result type (might be due to invalid IL or missing references) //IL_1e38: Unknown result type (might be due to invalid IL or missing references) //IL_1e3e: Unknown result type (might be due to invalid IL or missing references) //IL_1e48: Unknown result type (might be due to invalid IL or missing references) //IL_1e4d: Unknown result type (might be due to invalid IL or missing references) //IL_1e53: Unknown result type (might be due to invalid IL or missing references) //IL_1e5d: Unknown result type (might be due to invalid IL or missing references) //IL_1e62: Unknown result type (might be due to invalid IL or missing references) //IL_1e68: Unknown result type (might be due to invalid IL or missing references) //IL_1e72: Unknown result type (might be due to invalid IL or missing references) //IL_1e77: Unknown result type (might be due to invalid IL or missing references) //IL_1e7d: Unknown result type (might be due to invalid IL or missing references) //IL_1e82: Unknown result type (might be due to invalid IL or missing references) //IL_1e88: Unknown result type (might be due to invalid IL or missing references) //IL_1e8d: Unknown result type (might be due to invalid IL or missing references) //IL_1e93: Unknown result type (might be due to invalid IL or missing references) //IL_1e98: Unknown result type (might be due to invalid IL or missing references) //IL_1ea3: Unknown result type (might be due to invalid IL or missing references) //IL_1ea9: Unknown result type (might be due to invalid IL or missing references) //IL_1eae: Unknown result type (might be due to invalid IL or missing references) //IL_1eb4: Unknown result type (might be due to invalid IL or missing references) //IL_1ebe: Unknown result type (might be due to invalid IL or missing references) //IL_1ec3: Unknown result type (might be due to invalid IL or missing references) //IL_1ec9: Unknown result type (might be due to invalid IL or missing references) //IL_1ed3: Unknown result type (might be due to invalid IL or missing references) //IL_1ed8: Unknown result type (might be due to invalid IL or missing references) //IL_1ede: Unknown result type (might be due to invalid IL or missing references) //IL_1ee8: Unknown result type (might be due to invalid IL or missing references) //IL_1eed: Unknown result type (might be due to invalid IL or missing references) //IL_1ef3: Unknown result type (might be due to invalid IL or missing references) //IL_1ef8: Unknown result type (might be due to invalid IL or missing references) //IL_1efe: Unknown result type (might be due to invalid IL or missing references) //IL_1f03: Unknown result type (might be due to invalid IL or missing references) //IL_1f0f: Unknown result type (might be due to invalid IL or missing references) //IL_1d26: Unknown result type (might be due to invalid IL or missing references) //IL_1d2c: Unknown result type (might be due to invalid IL or missing references) //IL_1d31: Unknown result type (might be due to invalid IL or missing references) //IL_1d37: Unknown result type (might be due to invalid IL or missing references) //IL_1d41: Unknown result type (might be due to invalid IL or missing references) //IL_1d46: Unknown result type (might be due to invalid IL or missing references) //IL_1d4c: Unknown result type (might be due to invalid IL or missing references) //IL_1d56: Unknown result type (might be due to invalid IL or missing references) //IL_1d5b: Unknown result type (might be due to invalid IL or missing references) //IL_1d61: Unknown result type (might be due to invalid IL or missing references) //IL_1d6b: Unknown result type (might be due to invalid IL or missing references) //IL_1d70: Unknown result type (might be due to invalid IL or missing references) //IL_1d76: Unknown result type (might be due to invalid IL or missing references) //IL_1d7b: Unknown result type (might be due to invalid IL or missing references) //IL_1d81: Unknown result type (might be due to invalid IL or missing references) //IL_1d86: Unknown result type (might be due to invalid IL or missing references) //IL_1d8c: Unknown result type (might be due to invalid IL or missing references) //IL_1d91: Unknown result type (might be due to invalid IL or missing references) //IL_1d9c: Unknown result type (might be due to invalid IL or missing references) //IL_1da2: Unknown result type (might be due to invalid IL or missing references) //IL_1da7: Unknown result type (might be due to invalid IL or missing references) //IL_1dad: Unknown result type (might be due to invalid IL or missing references) //IL_1db7: Unknown result type (might be due to invalid IL or missing references) //IL_1dbc: Unknown result type (might be due to invalid IL or missing references) //IL_1dc2: Unknown result type (might be due to invalid IL or missing references) //IL_1dc7: Unknown result type (might be due to invalid IL or missing references) //IL_1dcd: Unknown result type (might be due to invalid IL or missing references) //IL_1dd7: Unknown result type (might be due to invalid IL or missing references) //IL_1ddc: Unknown result type (might be due to invalid IL or missing references) //IL_1de2: Unknown result type (might be due to invalid IL or missing references) //IL_1dec: Unknown result type (might be due to invalid IL or missing references) //IL_1df1: Unknown result type (might be due to invalid IL or missing references) //IL_1df7: Unknown result type (might be due to invalid IL or missing references) //IL_1dfc: Unknown result type (might be due to invalid IL or missing references) //IL_1e02: Unknown result type (might be due to invalid IL or missing references) //IL_1e07: Unknown result type (might be due to invalid IL or missing references) //IL_1e13: Unknown result type (might be due to invalid IL or missing references) //IL_0dc2: Unknown result type (might be due to invalid IL or missing references) //IL_0dc8: Unknown result type (might be due to invalid IL or missing references) //IL_0dcd: Unknown result type (might be due to invalid IL or missing references) //IL_0dd3: Unknown result type (might be due to invalid IL or missing references) //IL_0dd8: Unknown result type (might be due to invalid IL or missing references) //IL_0dde: Unknown result type (might be due to invalid IL or missing references) //IL_0de8: Unknown result type (might be due to invalid IL or missing references) //IL_0dee: Unknown result type (might be due to invalid IL or missing references) //IL_0df3: Unknown result type (might be due to invalid IL or missing references) //IL_0df9: Unknown result type (might be due to invalid IL or missing references) //IL_0dfe: Unknown result type (might be due to invalid IL or missing references) //IL_0e03: Unknown result type (might be due to invalid IL or missing references) //IL_0e0e: Unknown result type (might be due to invalid IL or missing references) //IL_0e14: Unknown result type (might be due to invalid IL or missing references) //IL_0e19: Unknown result type (might be due to invalid IL or missing references) //IL_0e1f: Unknown result type (might be due to invalid IL or missing references) //IL_0e24: Unknown result type (might be due to invalid IL or missing references) //IL_0e2a: Unknown result type (might be due to invalid IL or missing references) //IL_0e34: Unknown result type (might be due to invalid IL or missing references) //IL_0e39: Unknown result type (might be due to invalid IL or missing references) //IL_0e3f: Unknown result type (might be due to invalid IL or missing references) //IL_0e49: Unknown result type (might be due to invalid IL or missing references) //IL_0e4f: Unknown result type (might be due to invalid IL or missing references) //IL_0e54: Unknown result type (might be due to invalid IL or missing references) //IL_0e5a: Unknown result type (might be due to invalid IL or missing references) //IL_0e5f: Unknown result type (might be due to invalid IL or missing references) //IL_0e64: Unknown result type (might be due to invalid IL or missing references) //IL_0e70: Unknown result type (might be due to invalid IL or missing references) //IL_1f2a: Unknown result type (might be due to invalid IL or missing references) //IL_1f2f: Unknown result type (might be due to invalid IL or missing references) //IL_0f3b: Unknown result type (might be due to invalid IL or missing references) //IL_0f41: Unknown result type (might be due to invalid IL or missing references) //IL_0f46: Unknown result type (might be due to invalid IL or missing references) //IL_0f4c: Unknown result type (might be due to invalid IL or missing references) //IL_0f51: Unknown result type (might be due to invalid IL or missing references) //IL_0f57: Unknown result type (might be due to invalid IL or missing references) //IL_0f61: Unknown result type (might be due to invalid IL or missing references) //IL_0f67: Unknown result type (might be due to invalid IL or missing references) //IL_0f6c: Unknown result type (might be due to invalid IL or missing references) //IL_0f72: Unknown result type (might be due to invalid IL or missing references) //IL_0f77: Unknown result type (might be due to invalid IL or missing references) //IL_0f7c: Unknown result type (might be due to invalid IL or missing references) //IL_0f82: Unknown result type (might be due to invalid IL or missing references) //IL_0f8c: Unknown result type (might be due to invalid IL or missing references) //IL_0f91: Unknown result type (might be due to invalid IL or missing references) //IL_0f9c: Unknown result type (might be due to invalid IL or missing references) //IL_0fa2: Unknown result type (might be due to invalid IL or missing references) //IL_0fa7: Unknown result type (might be due to invalid IL or missing references) //IL_0fad: Unknown result type (might be due to invalid IL or missing references) //IL_0fb2: Unknown result type (might be due to invalid IL or missing references) //IL_0fb8: Unknown result type (might be due to invalid IL or missing references) //IL_0fc2: Unknown result type (might be due to invalid IL or missing references) //IL_0fc7: Unknown result type (might be due to invalid IL or missing references) //IL_0fcd: Unknown result type (might be due to invalid IL or missing references) //IL_0fd7: Unknown result type (might be due to invalid IL or missing references) //IL_0fdd: Unknown result type (might be due to invalid IL or missing references) //IL_0fe2: Unknown result type (might be due to invalid IL or missing references) //IL_0fe8: Unknown result type (might be due to invalid IL or missing references) //IL_0fed: Unknown result type (might be due to invalid IL or missing references) //IL_0ff2: Unknown result type (might be due to invalid IL or missing references) //IL_0ff8: Unknown result type (might be due to invalid IL or missing references) //IL_1002: Unknown result type (might be due to invalid IL or missing references) //IL_1007: Unknown result type (might be due to invalid IL or missing references) //IL_1013: Unknown result type (might be due to invalid IL or missing references) //IL_0e8a: Unknown result type (might be due to invalid IL or missing references) //IL_0e8f: Unknown result type (might be due to invalid IL or missing references) //IL_2dd6: Unknown result type (might be due to invalid IL or missing references) //IL_2ddc: Unknown result type (might be due to invalid IL or missing references) //IL_2de1: Unknown result type (might be due to invalid IL or missing references) //IL_2de7: Unknown result type (might be due to invalid IL or missing references) //IL_2df1: Unknown result type (might be due to invalid IL or missing references) //IL_2df6: Unknown result type (might be due to invalid IL or missing references) //IL_2dfc: Unknown result type (might be due to invalid IL or missing references) //IL_2e06: Unknown result type (might be due to invalid IL or missing references) //IL_2e0b: Unknown result type (might be due to invalid IL or missing references) //IL_2e11: Unknown result type (might be due to invalid IL or missing references) //IL_2e1b: Unknown result type (might be due to invalid IL or missing references) //IL_2e20: Unknown result type (might be due to invalid IL or missing references) //IL_2e26: Unknown result type (might be due to invalid IL or missing references) //IL_2e2b: Unknown result type (might be due to invalid IL or missing references) //IL_2e31: Unknown result type (might be due to invalid IL or missing references) //IL_2e36: Unknown result type (might be due to invalid IL or missing references) //IL_2e3c: Unknown result type (might be due to invalid IL or missing references) //IL_2e41: Unknown result type (might be due to invalid IL or missing references) //IL_2e4c: Unknown result type (might be due to invalid IL or missing references) //IL_2e52: Unknown result type (might be due to invalid IL or missing references) //IL_2e57: Unknown result type (might be due to invalid IL or missing references) //IL_2e5d: Unknown result type (might be due to invalid IL or missing references) //IL_2e67: Unknown result type (might be due to invalid IL or missing references) //IL_2e6c: Unknown result type (might be due to invalid IL or missing references) //IL_2e72: Unknown result type (might be due to invalid IL or missing references) //IL_2e7c: Unknown result type (might be due to invalid IL or missing references) //IL_2e81: Unknown result type (might be due to invalid IL or missing references) //IL_2e87: Unknown result type (might be due to invalid IL or missing references) //IL_2e91: Unknown result type (might be due to invalid IL or missing references) //IL_2e96: Unknown result type (might be due to invalid IL or missing references) //IL_2e9c: Unknown result type (might be due to invalid IL or missing references) //IL_2ea1: Unknown result type (might be due to invalid IL or missing references) //IL_2ea7: Unknown result type (might be due to invalid IL or missing references) //IL_2eac: Unknown result type (might be due to invalid IL or missing references) //IL_2eb2: Unknown result type (might be due to invalid IL or missing references) //IL_2eb7: Unknown result type (might be due to invalid IL or missing references) //IL_2ec3: Unknown result type (might be due to invalid IL or missing references) //IL_10e1: Unknown result type (might be due to invalid IL or missing references) //IL_10e7: Unknown result type (might be due to invalid IL or missing references) //IL_10ec: Unknown result type (might be due to invalid IL or missing references) //IL_10f2: Unknown result type (might be due to invalid IL or missing references) //IL_10f7: Unknown result type (might be due to invalid IL or missing references) //IL_10fd: Unknown result type (might be due to invalid IL or missing references) //IL_1107: Unknown result type (might be due to invalid IL or missing references) //IL_110d: Unknown result type (might be due to invalid IL or missing references) //IL_1112: Unknown result type (might be due to invalid IL or missing references) //IL_1118: Unknown result type (might be due to invalid IL or missing references) //IL_111d: Unknown result type (might be due to invalid IL or missing references) //IL_1122: Unknown result type (might be due to invalid IL or missing references) //IL_1128: Unknown result type (might be due to invalid IL or missing references) //IL_1132: Unknown result type (might be due to invalid IL or missing references) //IL_1137: Unknown result type (might be due to invalid IL or missing references) //IL_1142: Unknown result type (might be due to invalid IL or missing references) //IL_1148: Unknown result type (might be due to invalid IL or missing references) //IL_114d: Unknown result type (might be due to invalid IL or missing references) //IL_1153: Unknown result type (might be due to invalid IL or missing references) //IL_1158: Unknown result type (might be due to invalid IL or missing references) //IL_115e: Unknown result type (might be due to invalid IL or missing references) //IL_1168: Unknown result type (might be due to invalid IL or missing references) //IL_116d: Unknown result type (might be due to invalid IL or missing references) //IL_1173: Unknown result type (might be due to invalid IL or missing references) //IL_117d: Unknown result type (might be due to invalid IL or missing references) //IL_1183: Unknown result type (might be due to invalid IL or missing references) //IL_1188: Unknown result type (might be due to invalid IL or missing references) //IL_118e: Unknown result type (might be due to invalid IL or missing references) //IL_1193: Unknown result type (might be due to invalid IL or missing references) //IL_1198: Unknown result type (might be due to invalid IL or missing references) //IL_119e: Unknown result type (might be due to invalid IL or missing references) //IL_11a8: Unknown result type (might be due to invalid IL or missing references) //IL_11ad: Unknown result type (might be due to invalid IL or missing references) //IL_11b9: Unknown result type (might be due to invalid IL or missing references) //IL_102d: Unknown result type (might be due to invalid IL or missing references) //IL_1032: Unknown result type (might be due to invalid IL or missing references) //IL_0ec3: Unknown result type (might be due to invalid IL or missing references) //IL_0ec8: Unknown result type (might be due to invalid IL or missing references) //IL_0ed6: Unknown result type (might be due to invalid IL or missing references) //IL_0edb: Unknown result type (might be due to invalid IL or missing references) //IL_0ef6: Unknown result type (might be due to invalid IL or missing references) //IL_0efb: Unknown result type (might be due to invalid IL or missing references) //IL_0f04: Unknown result type (might be due to invalid IL or missing references) //IL_0f0f: Unknown result type (might be due to invalid IL or missing references) //IL_0f20: Unknown result type (might be due to invalid IL or missing references) //IL_0f25: Unknown result type (might be due to invalid IL or missing references) //IL_0f2a: Unknown result type (might be due to invalid IL or missing references) //IL_2fe4: Unknown result type (might be due to invalid IL or missing references) //IL_2fea: Unknown result type (might be due to invalid IL or missing references) //IL_2fef: Unknown result type (might be due to invalid IL or missing references) //IL_2ff5: Unknown result type (might be due to invalid IL or missing references) //IL_2fff: Unknown result type (might be due to invalid IL or missing references) //IL_3004: Unknown result type (might be due to invalid IL or missing references) //IL_300a: Unknown result type (might be due to invalid IL or missing references) //IL_3014: Unknown result type (might be due to invalid IL or missing references) //IL_3019: Unknown result type (might be due to invalid IL or missing references) //IL_301f: Unknown result type (might be due to invalid IL or missing references) //IL_3029: Unknown result type (might be due to invalid IL or missing references) //IL_302e: Unknown result type (might be due to invalid IL or missing references) //IL_3034: Unknown result type (might be due to invalid IL or missing references) //IL_3039: Unknown result type (might be due to invalid IL or missing references) //IL_303f: Unknown result type (might be due to invalid IL or missing references) //IL_3044: Unknown result type (might be due to invalid IL or missing references) //IL_304a: Unknown result type (might be due to invalid IL or missing references) //IL_304f: Unknown result type (might be due to invalid IL or missing references) //IL_305a: Unknown result type (might be due to invalid IL or missing references) //IL_3060: Unknown result type (might be due to invalid IL or missing references) //IL_3065: Unknown result type (might be due to invalid IL or missing references) //IL_306b: Unknown result type (might be due to invalid IL or missing references) //IL_3075: Unknown result type (might be due to invalid IL or missing references) //IL_307a: Unknown result type (might be due to invalid IL or missing references) //IL_3080: Unknown result type (might be due to invalid IL or missing references) //IL_308a: Unknown result type (might be due to invalid IL or missing references) //IL_308f: Unknown result type (might be due to invalid IL or missing references) //IL_3095: Unknown result type (might be due to invalid IL or missing references) //IL_309f: Unknown result type (might be due to invalid IL or missing references) //IL_30a4: Unknown result type (might be due to invalid IL or missing references) //IL_30aa: Unknown result type (might be due to invalid IL or missing references) //IL_30af: Unknown result type (might be due to invalid IL or missing references) //IL_30b5: Unknown result type (might be due to invalid IL or missing references) //IL_30ba: Unknown result type (might be due to invalid IL or missing references) //IL_30c6: Unknown result type (might be due to invalid IL or missing references) //IL_2edd: Unknown result type (might be due to invalid IL or missing references) //IL_2ee3: Unknown result type (might be due to invalid IL or missing references) //IL_2ee8: Unknown result type (might be due to invalid IL or missing references) //IL_2eee: Unknown result type (might be due to invalid IL or missing references) //IL_2ef8: Unknown result type (might be due to invalid IL or missing references) //IL_2efd: Unknown result type (might be due to invalid IL or missing references) //IL_2f03: Unknown result type (might be due to invalid IL or missing references) //IL_2f0d: Unknown result type (might be due to invalid IL or missing references) //IL_2f12: Unknown result type (might be due to invalid IL or missing references) //IL_2f18: Unknown result type (might be due to invalid IL or missing references) //IL_2f22: Unknown result type (might be due to invalid IL or missing references) //IL_2f27: Unknown result type (might be due to invalid IL or missing references) //IL_2f2d: Unknown result type (might be due to invalid IL or missing references) //IL_2f32: Unknown result type (might be due to invalid IL or missing references) //IL_2f38: Unknown result type (might be due to invalid IL or missing references) //IL_2f3d: Unknown result type (might be due to invalid IL or missing references) //IL_2f43: Unknown result type (might be due to invalid IL or missing references) //IL_2f48: Unknown result type (might be due to invalid IL or missing references) //IL_2f53: Unknown result type (might be due to invalid IL or missing references) //IL_2f59: Unknown result type (might be due to invalid IL or missing references) //IL_2f5e: Unknown result type (might be due to invalid IL or missing references) //IL_2f64: Unknown result type (might be due to invalid IL or missing references) //IL_2f6e: Unknown result type (might be due to invalid IL or missing references) //IL_2f73: Unknown result type (might be due to invalid IL or missing references) //IL_2f79: Unknown result type (might be due to invalid IL or missing references) //IL_2f7e: Unknown result type (might be due to invalid IL or missing references) //IL_2f84: Unknown result type (might be due to invalid IL or missing references) //IL_2f8e: Unknown result type (might be due to invalid IL or missing references) //IL_2f93: Unknown result type (might be due to invalid IL or missing references) //IL_2f99: Unknown result type (might be due to invalid IL or missing references) //IL_2fa3: Unknown result type (might be due to invalid IL or missing references) //IL_2fa8: Unknown result type (might be due to invalid IL or missing references) //IL_2fae: Unknown result type (might be due to invalid IL or missing references) //IL_2fb3: Unknown result type (might be due to invalid IL or missing references) //IL_2fb9: Unknown result type (might be due to invalid IL or missing references) //IL_2fbe: Unknown result type (might be due to invalid IL or missing references) //IL_2fca: Unknown result type (might be due to invalid IL or missing references) //IL_1f76: Unknown result type (might be due to invalid IL or missing references) //IL_1f7c: Unknown result type (might be due to invalid IL or missing references) //IL_1f81: Unknown result type (might be due to invalid IL or missing references) //IL_1f87: Unknown result type (might be due to invalid IL or missing references) //IL_1f8c: Unknown result type (might be due to invalid IL or missing references) //IL_1f92: Unknown result type (might be due to invalid IL or missing references) //IL_1f9c: Unknown result type (might be due to invalid IL or missing references) //IL_1fa2: Unknown result type (might be due to invalid IL or missing references) //IL_1fa7: Unknown result type (might be due to invalid IL or missing references) //IL_1fad: Unknown result type (might be due to invalid IL or missing references) //IL_1fb2: Unknown result type (might be due to invalid IL or missing references) //IL_1fb7: Unknown result type (might be due to invalid IL or missing references) //IL_1fc2: Unknown result type (might be due to invalid IL or missing references) //IL_1fc8: Unknown result type (might be due to invalid IL or missing references) //IL_1fcd: Unknown result type (might be due to invalid IL or missing references) //IL_1fd3: Unknown result type (might be due to invalid IL or missing references) //IL_1fd8: Unknown result type (might be due to invalid IL or missing references) //IL_1fde: Unknown result type (might be due to invalid IL or missing references) //IL_1fe8: Unknown result type (might be due to invalid IL or missing references) //IL_1fed: Unknown result type (might be due to invalid IL or missing references) //IL_1ff3: Unknown result type (might be due to invalid IL or missing references) //IL_1ffd: Unknown result type (might be due to invalid IL or missing references) //IL_2003: Unknown result type (might be due to invalid IL or missing references) //IL_2008: Unknown result type (might be due to invalid IL or missing references) //IL_200e: Unknown result type (might be due to invalid IL or missing references) //IL_2013: Unknown result type (might be due to invalid IL or missing references) //IL_2018: Unknown result type (might be due to invalid IL or missing references) //IL_2024: Unknown result type (might be due to invalid IL or missing references) //IL_1287: Unknown result type (might be due to invalid IL or missing references) //IL_128d: Unknown result type (might be due to invalid IL or missing references) //IL_1292: Unknown result type (might be due to invalid IL or missing references) //IL_1298: Unknown result type (might be due to invalid IL or missing references) //IL_129d: Unknown result type (might be due to invalid IL or missing references) //IL_12a3: Unknown result type (might be due to invalid IL or missing references) //IL_12ad: Unknown result type (might be due to invalid IL or missing references) //IL_12b3: Unknown result type (might be due to invalid IL or missing references) //IL_12b8: Unknown result type (might be due to invalid IL or missing references) //IL_12be: Unknown result type (might be due to invalid IL or missing references) //IL_12c3: Unknown result type (might be due to invalid IL or missing references) //IL_12c8: Unknown result type (might be due to invalid IL or missing references) //IL_12ce: Unknown result type (might be due to invalid IL or missing references) //IL_12d8: Unknown result type (might be due to invalid IL or missing references) //IL_12dd: Unknown result type (might be due to invalid IL or missing references) //IL_12e8: Unknown result type (might be due to invalid IL or missing references) //IL_12ee: Unknown result type (might be due to invalid IL or missing references) //IL_12f3: Unknown result type (might be due to invalid IL or missing references) //IL_12f9: Unknown result type (might be due to invalid IL or missing references) //IL_12fe: Unknown result type (might be due to invalid IL or missing references) //IL_1304: Unknown result type (might be due to invalid IL or missing references) //IL_130e: Unknown result type (might be due to invalid IL or missing references) //IL_1313: Unknown result type (might be due to invalid IL or missing references) //IL_1319: Unknown result type (might be due to invalid IL or missing references) //IL_1323: Unknown result type (might be due to invalid IL or missing references) //IL_1329: Unknown result type (might be due to invalid IL or missing references) //IL_132e: Unknown result type (might be due to invalid IL or missing references) //IL_1334: Unknown result type (might be due to invalid IL or missing references) //IL_1339: Unknown result type (might be due to invalid IL or missing references) //IL_133e: Unknown result type (might be due to invalid IL or missing references) //IL_1344: Unknown result type (might be due to invalid IL or missing references) //IL_134e: Unknown result type (might be due to invalid IL or missing references) //IL_1353: Unknown result type (might be due to invalid IL or missing references) //IL_135f: Unknown result type (might be due to invalid IL or missing references) //IL_11d3: Unknown result type (might be due to invalid IL or missing references) //IL_11d8: Unknown result type (might be due to invalid IL or missing references) //IL_1067: Unknown result type (might be due to invalid IL or missing references) //IL_106c: Unknown result type (might be due to invalid IL or missing references) //IL_107b: Unknown result type (might be due to invalid IL or missing references) //IL_1080: Unknown result type (might be due to invalid IL or missing references) //IL_109c: Unknown result type (might be due to invalid IL or missing references) //IL_10a1: Unknown result type (might be due to invalid IL or missing references) //IL_10aa: Unknown result type (might be due to invalid IL or missing references) //IL_10b5: Unknown result type (might be due to invalid IL or missing references) //IL_10c6: Unknown result type (might be due to invalid IL or missing references) //IL_10cb: Unknown result type (might be due to invalid IL or missing references) //IL_10d0: Unknown result type (might be due to invalid IL or missing references) //IL_30e1: Unknown result type (might be due to invalid IL or missing references) //IL_30e6: Unknown result type (might be due to invalid IL or missing references) //IL_20f2: Unknown result type (might be due to invalid IL or missing references) //IL_20f8: Unknown result type (might be due to invalid IL or missing references) //IL_20fd: Unknown result type (might be due to invalid IL or missing references) //IL_2103: Unknown result type (might be due to invalid IL or missing references) //IL_2108: Unknown result type (might be due to invalid IL or missing references) //IL_210e: Unknown result type (might be due to invalid IL or missing references) //IL_2118: Unknown result type (might be due to invalid IL or missing references) //IL_211e: Unknown result type (might be due to invalid IL or missing references) //IL_2123: Unknown result type (might be due to invalid IL or missing references) //IL_2129: Unknown result type (might be due to invalid IL or missing references) //IL_212e: Unknown result type (might be due to invalid IL or missing references) //IL_2133: Unknown result type (might be due to invalid IL or missing references) //IL_2139: Unknown result type (might be due to invalid IL or missing references) //IL_2143: Unknown result type (might be due to invalid IL or missing references) //IL_2148: Unknown result type (might be due to invalid IL or missing references) //IL_2153: Unknown result type (might be due to invalid IL or missing references) //IL_2159: Unknown result type (might be due to invalid IL or missing references) //IL_215e: Unknown result type (might be due to invalid IL or missing references) //IL_2164: Unknown result type (might be due to invalid IL or missing references) //IL_2169: Unknown result type (might be due to invalid IL or missing references) //IL_216f: Unknown result type (might be due to invalid IL or missing references) //IL_2179: Unknown result type (might be due to invalid IL or missing references) //IL_217e: Unknown result type (might be due to invalid IL or missing references) //IL_2184: Unknown result type (might be due to invalid IL or missing references) //IL_218e: Unknown result type (might be due to invalid IL or missing references) //IL_2194: Unknown result type (might be due to invalid IL or missing references) //IL_2199: Unknown result type (might be due to invalid IL or missing references) //IL_219f: Unknown result type (might be due to invalid IL or missing references) //IL_21a4: Unknown result type (might be due to invalid IL or missing references) //IL_21a9: Unknown result type (might be due to invalid IL or missing references) //IL_21af: Unknown result type (might be due to invalid IL or missing references) //IL_21b9: Unknown result type (might be due to invalid IL or missing references) //IL_21be: Unknown result type (might be due to invalid IL or missing references) //IL_21ca: Unknown result type (might be due to invalid IL or missing references) //IL_203e: Unknown result type (might be due to invalid IL or missing references) //IL_2043: Unknown result type (might be due to invalid IL or missing references) //IL_142d: Unknown result type (might be due to invalid IL or missing references) //IL_1433: Unknown result type (might be due to invalid IL or missing references) //IL_1438: Unknown result type (might be due to invalid IL or missing references) //IL_143e: Unknown result type (might be due to invalid IL or missing references) //IL_1443: Unknown result type (might be due to invalid IL or missing references) //IL_1449: Unknown result type (might be due to invalid IL or missing references) //IL_1453: Unknown result type (might be due to invalid IL or missing references) //IL_1458: Unknown result type (might be due to invalid IL or missing references) //IL_145e: Unknown result type (might be due to invalid IL or missing references) //IL_1468: Unknown result type (might be due to invalid IL or missing references) //IL_146e: Unknown result type (might be due to invalid IL or missing references) //IL_1473: Unknown result type (might be due to invalid IL or missing references) //IL_1479: Unknown result type (might be due to invalid IL or missing references) //IL_147e: Unknown result type (might be due to invalid IL or missing references) //IL_1483: Unknown result type (might be due to invalid IL or missing references) //IL_1489: Unknown result type (might be due to invalid IL or missing references) //IL_1493: Unknown result type (might be due to invalid IL or missing references) //IL_1498: Unknown result type (might be due to invalid IL or missing references) //IL_14a3: Unknown result type (might be due to invalid IL or missing references) //IL_14a9: Unknown result type (might be due to invalid IL or missing references) //IL_14ae: Unknown result type (might be due to invalid IL or missing references) //IL_14b4: Unknown result type (might be due to invalid IL or missing references) //IL_14b9: Unknown result type (might be due to invalid IL or missing references) //IL_14bf: Unknown result type (might be due to invalid IL or missing references) //IL_14c9: Unknown result type (might be due to invalid IL or missing references) //IL_14ce: Unknown result type (might be due to invalid IL or missing references) //IL_14d4: Unknown result type (might be due to invalid IL or missing references) //IL_14de: Unknown result type (might be due to invalid IL or missing references) //IL_14e4: Unknown result type (might be due to invalid IL or missing references) //IL_14e9: Unknown result type (might be due to invalid IL or missing references) //IL_14ef: Unknown result type (might be due to invalid IL or missing references) //IL_14f4: Unknown result type (might be due to invalid IL or missing references) //IL_14f9: Unknown result type (might be due to invalid IL or missing references) //IL_14ff: Unknown result type (might be due to invalid IL or missing references) //IL_1509: Unknown result type (might be due to invalid IL or missing references) //IL_150e: Unknown result type (might be due to invalid IL or missing references) //IL_151a: Unknown result type (might be due to invalid IL or missing references) //IL_1379: Unknown result type (might be due to invalid IL or missing references) //IL_137e: Unknown result type (might be due to invalid IL or missing references) //IL_120d: Unknown result type (might be due to invalid IL or missing references) //IL_1212: Unknown result type (might be due to invalid IL or missing references) //IL_1221: Unknown result type (might be due to invalid IL or missing references) //IL_1226: Unknown result type (might be due to invalid IL or missing references) //IL_1242: Unknown result type (might be due to invalid IL or missing references) //IL_1247: Unknown result type (might be due to invalid IL or missing references) //IL_1250: Unknown result type (might be due to invalid IL or missing references) //IL_125b: Unknown result type (might be due to invalid IL or missing references) //IL_126c: Unknown result type (might be due to invalid IL or missing references) //IL_1271: Unknown result type (might be due to invalid IL or missing references) //IL_1276: Unknown result type (might be due to invalid IL or missing references) //IL_2298: Unknown result type (might be due to invalid IL or missing references) //IL_229e: Unknown result type (might be due to invalid IL or missing references) //IL_22a3: Unknown result type (might be due to invalid IL or missing references) //IL_22a9: Unknown result type (might be due to invalid IL or missing references) //IL_22ae: Unknown result type (might be due to invalid IL or missing references) //IL_22b4: Unknown result type (might be due to invalid IL or missing references) //IL_22be: Unknown result type (might be due to invalid IL or missing references) //IL_22c4: Unknown result type (might be due to invalid IL or missing references) //IL_22c9: Unknown result type (might be due to invalid IL or missing references) //IL_22cf: Unknown result type (might be due to invalid IL or missing references) //IL_22d4: Unknown result type (might be due to invalid IL or missing references) //IL_22d9: Unknown result type (might be due to invalid IL or missing references) //IL_22df: Unknown result type (might be due to invalid IL or missing references) //IL_22e9: Unknown result type (might be due to invalid IL or missing references) //IL_22ee: Unknown result type (might be due to invalid IL or missing references) //IL_22f9: Unknown result type (might be due to invalid IL or missing references) //IL_22ff: Unknown result type (might be due to invalid IL or missing references) //IL_2304: Unknown result type (might be due to invalid IL or missing references) //IL_230a: Unknown result type (might be due to invalid IL or missing references) //IL_230f: Unknown result type (might be due to invalid IL or missing references) //IL_2315: Unknown result type (might be due to invalid IL or missing references) //IL_231f: Unknown result type (might be due to invalid IL or missing references) //IL_2324: Unknown result type (might be due to invalid IL or missing references) //IL_232a: Unknown result type (might be due to invalid IL or missing references) //IL_2334: Unknown result type (might be due to invalid IL or missing references) //IL_233a: Unknown result type (might be due to invalid IL or missing references) //IL_233f: Unknown result type (might be due to invalid IL or missing references) //IL_2345: Unknown result type (might be due to invalid IL or missing references) //IL_234a: Unknown result type (might be due to invalid IL or missing references) //IL_234f: Unknown result type (might be due to invalid IL or missing references) //IL_2355: Unknown result type (might be due to invalid IL or missing references) //IL_235f: Unknown result type (might be due to invalid IL or missing references) //IL_2364: Unknown result type (might be due to invalid IL or missing references) //IL_2370: Unknown result type (might be due to invalid IL or missing references) //IL_21e4: Unknown result type (might be due to invalid IL or missing references) //IL_21e9: Unknown result type (might be due to invalid IL or missing references) //IL_2078: Unknown result type (might be due to invalid IL or missing references) //IL_207d: Unknown result type (might be due to invalid IL or missing references) //IL_208c: Unknown result type (might be due to invalid IL or missing references) //IL_2091: Unknown result type (might be due to invalid IL or missing references) //IL_20ad: Unknown result type (might be due to invalid IL or missing references) //IL_20b2: Unknown result type (might be due to invalid IL or missing references) //IL_20bb: Unknown result type (might be due to invalid IL or missing references) //IL_20c6: Unknown result type (might be due to invalid IL or missing references) //IL_20d7: Unknown result type (might be due to invalid IL or missing references) //IL_20dc: Unknown result type (might be due to invalid IL or missing references) //IL_20e1: Unknown result type (might be due to invalid IL or missing references) //IL_15e8: Unknown result type (might be due to invalid IL or missing references) //IL_15ee: Unknown result type (might be due to invalid IL or missing references) //IL_15f3: Unknown result type (might be due to invalid IL or missing references) //IL_15f9: Unknown result type (might be due to invalid IL or missing references) //IL_15fe: Unknown result type (might be due to invalid IL or missing references) //IL_1604: Unknown result type (might be due to invalid IL or missing references) //IL_160e: Unknown result type (might be due to invalid IL or missing references) //IL_1613: Unknown result type (might be due to invalid IL or missing references) //IL_1619: Unknown result type (might be due to invalid IL or missing references) //IL_1623: Unknown result type (might be due to invalid IL or missing references) //IL_1629: Unknown result type (might be due to invalid IL or missing references) //IL_162e: Unknown result type (might be due to invalid IL or missing references) //IL_1634: Unknown result type (might be due to invalid IL or missing references) //IL_1639: Unknown result type (might be due to invalid IL or missing references) //IL_163e: Unknown result type (might be due to invalid IL or missing references) //IL_1644: Unknown result type (might be due to invalid IL or missing references) //IL_164e: Unknown result type (might be due to invalid IL or missing references) //IL_1653: Unknown result type (might be due to invalid IL or missing references) //IL_165e: Unknown result type (might be due to invalid IL or missing references) //IL_1664: Unknown result type (might be due to invalid IL or missing references) //IL_1669: Unknown result type (might be due to invalid IL or missing references) //IL_166f: Unknown result type (might be due to invalid IL or missing references) //IL_1674: Unknown result type (might be due to invalid IL or missing references) //IL_167a: Unknown result type (might be due to invalid IL or missing references) //IL_1684: Unknown result type (might be due to invalid IL or missing references) //IL_1689: Unknown result type (might be due to invalid IL or missing references) //IL_168f: Unknown result type (might be due to invalid IL or missing references) //IL_1699: Unknown result type (might be due to invalid IL or missing references) //IL_169f: Unknown result type (might be due to invalid IL or missing references) //IL_16a4: Unknown result type (might be due to invalid IL or missing references) //IL_16aa: Unknown result type (might be due to invalid IL or missing references) //IL_16af: Unknown result type (might be due to invalid IL or missing references) //IL_16b4: Unknown result type (might be due to invalid IL or missing references) //IL_16ba: Unknown result type (might be due to invalid IL or missing references) //IL_16c4: Unknown result type (might be due to invalid IL or missing references) //IL_16c9: Unknown result type (might be due to invalid IL or missing references) //IL_16d5: Unknown result type (might be due to invalid IL or missing references) //IL_1534: Unknown result type (might be due to invalid IL or missing references) //IL_1539: Unknown result type (might be due to invalid IL or missing references) //IL_13b3: Unknown result type (might be due to invalid IL or missing references) //IL_13b8: Unknown result type (might be due to invalid IL or missing references) //IL_13c7: Unknown result type (might be due to invalid IL or missing references) //IL_13cc: Unknown result type (might be due to invalid IL or missing references) //IL_13e8: Unknown result type (might be due to invalid IL or missing references) //IL_13ed: Unknown result type (might be due to invalid IL or missing references) //IL_13f6: Unknown result type (might be due to invalid IL or missing references) //IL_1401: Unknown result type (might be due to invalid IL or missing references) //IL_1412: Unknown result type (might be due to invalid IL or missing references) //IL_1417: Unknown result type (might be due to invalid IL or missing references) //IL_141c: Unknown result type (might be due to invalid IL or missing references) //IL_312d: Unknown result type (might be due to invalid IL or missing references) //IL_3133: Unknown result type (might be due to invalid IL or missing references) //IL_3138: Unknown result type (might be due to invalid IL or missing references) //IL_313e: Unknown result type (might be due to invalid IL or missing references) //IL_3143: Unknown result type (might be due to invalid IL or missing references) //IL_3149: Unknown result type (might be due to invalid IL or missing references) //IL_3153: Unknown result type (might be due to invalid IL or missing references) //IL_3159: Unknown result type (might be due to invalid IL or missing references) //IL_315e: Unknown result type (might be due to invalid IL or missing references) //IL_3164: Unknown result type (might be due to invalid IL or missing references) //IL_3169: Unknown result type (might be due to invalid IL or missing references) //IL_316e: Unknown result type (might be due to invalid IL or missing references) //IL_3179: Unknown result type (might be due to invalid IL or missing references) //IL_317f: Unknown result type (might be due to invalid IL or missing references) //IL_3184: Unknown result type (might be due to invalid IL or missing references) //IL_318a: Unknown result type (might be due to invalid IL or missing references) //IL_318f: Unknown result type (might be due to invalid IL or missing references) //IL_3195: Unknown result type (might be due to invalid IL or missing references) //IL_319f: Unknown result type (might be due to invalid IL or missing references) //IL_31a4: Unknown result type (might be due to invalid IL or missing references) //IL_31aa: Unknown result type (might be due to invalid IL or missing references) //IL_31b4: Unknown result type (might be due to invalid IL or missing references) //IL_31ba: Unknown result type (might be due to invalid IL or missing references) //IL_31bf: Unknown result type (might be due to invalid IL or missing references) //IL_31c5: Unknown result type (might be due to invalid IL or missing references) //IL_31ca: Unknown result type (might be due to invalid IL or missing references) //IL_31cf: Unknown result type (might be due to invalid IL or missing references) //IL_31db: Unknown result type (might be due to invalid IL or missing references) //IL_243e: Unknown result type (might be due to invalid IL or missing references) //IL_2444: Unknown result type (might be due to invalid IL or missing references) //IL_2449: Unknown result type (might be due to invalid IL or missing references) //IL_244f: Unknown result type (might be due to invalid IL or missing references) //IL_2454: Unknown result type (might be due to invalid IL or missing references) //IL_245a: Unknown result type (might be due to invalid IL or missing references) //IL_2464: Unknown result type (might be due to invalid IL or missing references) //IL_246a: Unknown result type (might be due to invalid IL or missing references) //IL_246f: Unknown result type (might be due to invalid IL or missing references) //IL_2475: Unknown result type (might be due to invalid IL or missing references) //IL_247a: Unknown result type (might be due to invalid IL or missing references) //IL_247f: Unknown result type (might be due to invalid IL or missing references) //IL_2485: Unknown result type (might be due to invalid IL or missing references) //IL_248f: Unknown result type (might be due to invalid IL or missing references) //IL_2494: Unknown result type (might be due to invalid IL or missing references) //IL_249f: Unknown result type (might be due to invalid IL or missing references) //IL_24a5: Unknown result type (might be due to invalid IL or missing references) //IL_24aa: Unknown result type (might be due to invalid IL or missing references) //IL_24b0: Unknown result type (might be due to invalid IL or missing references) //IL_24b5: Unknown result type (might be due to invalid IL or missing references) //IL_24bb: Unknown result type (might be due to invalid IL or missing references) //IL_24c5: Unknown result type (might be due to invalid IL or missing references) //IL_24ca: Unknown result type (might be due to invalid IL or missing references) //IL_24d0: Unknown result type (might be due to invalid IL or missing references) //IL_24da: Unknown result type (might be due to invalid IL or missing references) //IL_24e0: Unknown result type (might be due to invalid IL or missing references) //IL_24e5: Unknown result type (might be due to invalid IL or missing references) //IL_24eb: Unknown result type (might be due to invalid IL or missing references) //IL_24f0: Unknown result type (might be due to invalid IL or missing references) //IL_24f5: Unknown result type (might be due to invalid IL or missing references) //IL_24fb: Unknown result type (might be due to invalid IL or missing references) //IL_2505: Unknown result type (might be due to invalid IL or missing references) //IL_250a: Unknown result type (might be due to invalid IL or missing references) //IL_2516: Unknown result type (might be due to invalid IL or missing references) //IL_238a: Unknown result type (might be due to invalid IL or missing references) //IL_238f: Unknown result type (might be due to invalid IL or missing references) //IL_221e: Unknown result type (might be due to invalid IL or missing references) //IL_2223: Unknown result type (might be due to invalid IL or missing references) //IL_2232: Unknown result type (might be due to invalid IL or missing references) //IL_2237: Unknown result type (might be due to invalid IL or missing references) //IL_2253: Unknown result type (might be due to invalid IL or missing references) //IL_2258: Unknown result type (might be due to invalid IL or missing references) //IL_2261: Unknown result type (might be due to invalid IL or missing references) //IL_226c: Unknown result type (might be due to invalid IL or missing references) //IL_227d: Unknown result type (might be due to invalid IL or missing references) //IL_2282: Unknown result type (might be due to invalid IL or missing references) //IL_2287: Unknown result type (might be due to invalid IL or missing references) //IL_17a3: Unknown result type (might be due to invalid IL or missing references) //IL_17a9: Unknown result type (might be due to invalid IL or missing references) //IL_17ae: Unknown result type (might be due to invalid IL or missing references) //IL_17b4: Unknown result type (might be due to invalid IL or missing references) //IL_17b9: Unknown result type (might be due to invalid IL or missing references) //IL_17bf: Unknown result type (might be due to invalid IL or missing references) //IL_17c9: Unknown result type (might be due to invalid IL or missing references) //IL_17ce: Unknown result type (might be due to invalid IL or missing references) //IL_17d4: Unknown result type (might be due to invalid IL or missing references) //IL_17de: Unknown result type (might be due to invalid IL or missing references) //IL_17e4: Unknown result type (might be due to invalid IL or missing references) //IL_17e9: Unknown result type (might be due to invalid IL or missing references) //IL_17ef: Unknown result type (might be due to invalid IL or missing references) //IL_17f4: Unknown result type (might be due to invalid IL or missing references) //IL_17f9: Unknown result type (might be due to invalid IL or missing references) //IL_17ff: Unknown result type (might be due to invalid IL or missing references) //IL_1809: Unknown result type (might be due to invalid IL or missing references) //IL_180e: Unknown result type (might be due to invalid IL or missing references) //IL_1819: Unknown result type (might be due to invalid IL or missing references) //IL_181f: Unknown result type (might be due to invalid IL or missing references) //IL_1824: Unknown result type (might be due to invalid IL or missing references) //IL_182a: Unknown result type (might be due to invalid IL or missing references) //IL_182f: Unknown result type (might be due to invalid IL or missing references) //IL_1835: Unknown result type (might be due to invalid IL or missing references) //IL_183f: Unknown result type (might be due to invalid IL or missing references) //IL_1844: Unknown result type (might be due to invalid IL or missing references) //IL_184a: Unknown result type (might be due to invalid IL or missing references) //IL_1854: Unknown result type (might be due to invalid IL or missing references) //IL_185a: Unknown result type (might be due to invalid IL or missing references) //IL_185f: Unknown result type (might be due to invalid IL or missing references) //IL_1865: Unknown result type (might be due to invalid IL or missing references) //IL_186a: Unknown result type (might be due to invalid IL or missing references) //IL_186f: Unknown result type (might be due to invalid IL or missing references) //IL_1875: Unknown result type (might be due to invalid IL or missing references) //IL_187f: Unknown result type (might be due to invalid IL or missing references) //IL_1884: Unknown result type (might be due to invalid IL or missing references) //IL_1890: Unknown result type (might be due to invalid IL or missing references) //IL_16ef: Unknown result type (might be due to invalid IL or missing references) //IL_16f4: Unknown result type (might be due to invalid IL or missing references) //IL_156e: Unknown result type (might be due to invalid IL or missing references) //IL_1573: Unknown result type (might be due to invalid IL or missing references) //IL_1582: Unknown result type (might be due to invalid IL or missing references) //IL_1587: Unknown result type (might be due to invalid IL or missing references) //IL_15a3: Unknown result type (might be due to invalid IL or missing references) //IL_15a8: Unknown result type (might be due to invalid IL or missing references) //IL_15b1: Unknown result type (might be due to invalid IL or missing references) //IL_15bc: Unknown result type (might be due to invalid IL or missing references) //IL_15cd: Unknown result type (might be due to invalid IL or missing references) //IL_15d2: Unknown result type (might be due to invalid IL or missing references) //IL_15d7: Unknown result type (might be due to invalid IL or missing references) //IL_32a9: Unknown result type (might be due to invalid IL or missing references) //IL_32af: Unknown result type (might be due to invalid IL or missing references) //IL_32b4: Unknown result type (might be due to invalid IL or missing references) //IL_32ba: Unknown result type (might be due to invalid IL or missing references) //IL_32bf: Unknown result type (might be due to invalid IL or missing references) //IL_32c5: Unknown result type (might be due to invalid IL or missing references) //IL_32cf: Unknown result type (might be due to invalid IL or missing references) //IL_32d5: Unknown result type (might be due to invalid IL or missing references) //IL_32da: Unknown result type (might be due to invalid IL or missing references) //IL_32e0: Unknown result type (might be due to invalid IL or missing references) //IL_32e5: Unknown result type (might be due to invalid IL or missing references) //IL_32ea: Unknown result type (might be due to invalid IL or missing references) //IL_32f0: Unknown result type (might be due to invalid IL or missing references) //IL_32fa: Unknown result type (might be due to invalid IL or missing references) //IL_32ff: Unknown result type (might be due to invalid IL or missing references) //IL_330a: Unknown result type (might be due to invalid IL or missing references) //IL_3310: Unknown result type (might be due to invalid IL or missing references) //IL_3315: Unknown result type (might be due to invalid IL or missing references) //IL_331b: Unknown result type (might be due to invalid IL or missing references) //IL_3320: Unknown result type (might be due to invalid IL or missing references) //IL_3326: Unknown result type (might be due to invalid IL or missing references) //IL_3330: Unknown result type (might be due to invalid IL or missing references) //IL_3335: Unknown result type (might be due to invalid IL or missing references) //IL_333b: Unknown result type (might be due to invalid IL or missing references) //IL_3345: Unknown result type (might be due to invalid IL or missing references) //IL_334b: Unknown result type (might be due to invalid IL or missing references) //IL_3350: Unknown result type (might be due to invalid IL or missing references) //IL_3356: Unknown result type (might be due to invalid IL or missing references) //IL_335b: Unknown result type (might be due to invalid IL or missing references) //IL_3360: Unknown result type (might be due to invalid IL or missing references) //IL_3366: Unknown result type (might be due to invalid IL or missing references) //IL_3370: Unknown result type (might be due to invalid IL or missing references) //IL_3375: Unknown result type (might be due to invalid IL or missing references) //IL_3381: Unknown result type (might be due to invalid IL or missing references) //IL_31f5: Unknown result type (might be due to invalid IL or missing references) //IL_31fa: Unknown result type (might be due to invalid IL or missing references) //IL_25e4: Unknown result type (might be due to invalid IL or missing references) //IL_25ea: Unknown result type (might be due to invalid IL or missing references) //IL_25ef: Unknown result type (might be due to invalid IL or missing references) //IL_25f5: Unknown result type (might be due to invalid IL or missing references) //IL_25fa: Unknown result type (might be due to invalid IL or missing references) //IL_2600: Unknown result type (might be due to invalid IL or missing references) //IL_260a: Unknown result type (might be due to invalid IL or missing references) //IL_260f: Unknown result type (might be due to invalid IL or missing references) //IL_2615: Unknown result type (might be due to invalid IL or missing references) //IL_261f: Unknown result type (might be due to invalid IL or missing references) //IL_2625: Unknown result type (might be due to invalid IL or missing references) //IL_262a: Unknown result type (might be due to invalid IL or missing references) //IL_2630: Unknown result type (might be due to invalid IL or missing references) //IL_2635: Unknown result type (might be due to invalid IL or missing references) //IL_263a: Unknown result type (might be due to invalid IL or missing references) //IL_2640: Unknown result type (might be due to invalid IL or missing references) //IL_264a: Unknown result type (might be due to invalid IL or missing references) //IL_264f: Unknown result type (might be due to invalid IL or missing references) //IL_265a: Unknown result type (might be due to invalid IL or missing references) //IL_2660: Unknown result type (might be due to invalid IL or missing references) //IL_2665: Unknown result type (might be due to invalid IL or missing references) //IL_266b: Unknown result type (might be due to invalid IL or missing references) //IL_2670: Unknown result type (might be due to invalid IL or missing references) //IL_2676: Unknown result type (might be due to invalid IL or missing references) //IL_2680: Unknown result type (might be due to invalid IL or missing references) //IL_2685: Unknown result type (might be due to invalid IL or missing references) //IL_268b: Unknown result type (might be due to invalid IL or missing references) //IL_2695: Unknown result type (might be due to invalid IL or missing references) //IL_269b: Unknown result type (might be due to invalid IL or missing references) //IL_26a0: Unknown result type (might be due to invalid IL or missing references) //IL_26a6: Unknown result type (might be due to invalid IL or missing references) //IL_26ab: Unknown result type (might be due to invalid IL or missing references) //IL_26b0: Unknown result type (might be due to invalid IL or missing references) //IL_26b6: Unknown result type (might be due to invalid IL or missing references) //IL_26c0: Unknown result type (might be due to invalid IL or missing references) //IL_26c5: Unknown result type (might be due to invalid IL or missing references) //IL_26d1: Unknown result type (might be due to invalid IL or missing references) //IL_2530: Unknown result type (might be due to invalid IL or missing references) //IL_2535: Unknown result type (might be due to invalid IL or missing references) //IL_23c4: Unknown result type (might be due to invalid IL or missing references) //IL_23c9: Unknown result type (might be due to invalid IL or missing references) //IL_23d8: Unknown result type (might be due to invalid IL or missing references) //IL_23dd: Unknown result type (might be due to invalid IL or missing references) //IL_23f9: Unknown result type (might be due to invalid IL or missing references) //IL_23fe: Unknown result type (might be due to invalid IL or missing references) //IL_2407: Unknown result type (might be due to invalid IL or missing references) //IL_2412: Unknown result type (might be due to invalid IL or missing references) //IL_2423: Unknown result type (might be due to invalid IL or missing references) //IL_2428: Unknown result type (might be due to invalid IL or missing references) //IL_242d: Unknown result type (might be due to invalid IL or missing references) //IL_195e: Unknown result type (might be due to invalid IL or missing references) //IL_1964: Unknown result type (might be due to invalid IL or missing references) //IL_1969: Unknown result type (might be due to invalid IL or missing references) //IL_196f: Unknown result type (might be due to invalid IL or missing references) //IL_1974: Unknown result type (might be due to invalid IL or missing references) //IL_197a: Unknown result type (might be due to invalid IL or missing references) //IL_1984: Unknown result type (might be due to invalid IL or missing references) //IL_1989: Unknown result type (might be due to invalid IL or missing references) //IL_198f: Unknown result type (might be due to invalid IL or missing references) //IL_1999: Unknown result type (might be due to invalid IL or missing references) //IL_199f: Unknown result type (might be due to invalid IL or missing references) //IL_19a4: Unknown result type (might be due to invalid IL or missing references) //IL_19aa: Unknown result type (might be due to invalid IL or missing references) //IL_19af: Unknown result type (might be due to invalid IL or missing references) //IL_19b4: Unknown result type (might be due to invalid IL or missing references) //IL_19ba: Unknown result type (might be due to invalid IL or missing references) //IL_19c4: Unknown result type (might be due to invalid IL or missing references) //IL_19c9: Unknown result type (might be due to invalid IL or missing references) //IL_19d4: Unknown result type (might be due to invalid IL or missing references) //IL_19da: Unknown result type (might be due to invalid IL or missing references) //IL_19df: Unknown result type (might be due to invalid IL or missing references) //IL_19e5: Unknown result type (might be due to invalid IL or missing references) //IL_19ea: Unknown result type (might be due to invalid IL or missing references) //IL_19f0: Unknown result type (might be due to invalid IL or missing references) //IL_19fa: Unknown result type (might be due to invalid IL or missing references) //IL_19ff: Unknown result type (might be due to invalid IL or missing references) //IL_1a05: Unknown result type (might be due to invalid IL or missing references) //IL_1a0f: Unknown result type (might be due to invalid IL or missing references) //IL_1a15: Unknown result type (might be due to invalid IL or missing references) //IL_1a1a: Unknown result type (might be due to invalid IL or missing references) //IL_1a20: Unknown result type (might be due to invalid IL or missing references) //IL_1a25: Unknown result type (might be due to invalid IL or missing references) //IL_1a2a: Unknown result type (might be due to invalid IL or missing references) //IL_1a30: Unknown result type (might be due to invalid IL or missing references) //IL_1a3a: Unknown result type (might be due to invalid IL or missing references) //IL_1a3f: Unknown result type (might be due to invalid IL or missing references) //IL_1a4b: Unknown result type (might be due to invalid IL or missing references) //IL_18aa: Unknown result type (might be due to invalid IL or missing references) //IL_18af: Unknown result type (might be due to invalid IL or missing references) //IL_1729: Unknown result type (might be due to invalid IL or missing references) //IL_172e: Unknown result type (might be due to invalid IL or missing references) //IL_173d: Unknown result type (might be due to invalid IL or missing references) //IL_1742: Unknown result type (might be due to invalid IL or missing references) //IL_175e: Unknown result type (might be due to invalid IL or missing references) //IL_1763: Unknown result type (might be due to invalid IL or missing references) //IL_176c: Unknown result type (might be due to invalid IL or missing references) //IL_1777: Unknown result type (might be due to invalid IL or missing references) //IL_1788: Unknown result type (might be due to invalid IL or missing references) //IL_178d: Unknown result type (might be due to invalid IL or missing references) //IL_1792: Unknown result type (might be due to invalid IL or missing references) //IL_344f: Unknown result type (might be due to invalid IL or missing references) //IL_3455: Unknown result type (might be due to invalid IL or missing references) //IL_345a: Unknown result type (might be due to invalid IL or missing references) //IL_3460: Unknown result type (might be due to invalid IL or missing references) //IL_3465: Unknown result type (might be due to invalid IL or missing references) //IL_346b: Unknown result type (might be due to invalid IL or missing references) //IL_3475: Unknown result type (might be due to invalid IL or missing references) //IL_347b: Unknown result type (might be due to invalid IL or missing references) //IL_3480: Unknown result type (might be due to invalid IL or missing references) //IL_3486: Unknown result type (might be due to invalid IL or missing references) //IL_348b: Unknown result type (might be due to invalid IL or missing references) //IL_3490: Unknown result type (might be due to invalid IL or missing references) //IL_3496: Unknown result type (might be due to invalid IL or missing references) //IL_34a0: Unknown result type (might be due to invalid IL or missing references) //IL_34a5: Unknown result type (might be due to invalid IL or missing references) //IL_34b0: Unknown result type (might be due to invalid IL or missing references) //IL_34b6: Unknown result type (might be due to invalid IL or missing references) //IL_34bb: Unknown result type (might be due to invalid IL or missing references) //IL_34c1: Unknown result type (might be due to invalid IL or missing references) //IL_34c6: Unknown result type (might be due to invalid IL or missing references) //IL_34cc: Unknown result type (might be due to invalid IL or missing references) //IL_34d6: Unknown result type (might be due to invalid IL or missing references) //IL_34db: Unknown result type (might be due to invalid IL or missing references) //IL_34e1: Unknown result type (might be due to invalid IL or missing references) //IL_34eb: Unknown result type (might be due to invalid IL or missing references) //IL_34f1: Unknown result type (might be due to invalid IL or missing references) //IL_34f6: Unknown result type (might be due to invalid IL or missing references) //IL_34fc: Unknown result type (might be due to invalid IL or missing references) //IL_3501: Unknown result type (might be due to invalid IL or missing references) //IL_3506: Unknown result type (might be due to invalid IL or missing references) //IL_350c: Unknown result type (might be due to invalid IL or missing references) //IL_3516: Unknown result type (might be due to invalid IL or missing references) //IL_351b: Unknown result type (might be due to invalid IL or missing references) //IL_3527: Unknown result type (might be due to invalid IL or missing references) //IL_339b: Unknown result type (might be due to invalid IL or missing references) //IL_33a0: Unknown result type (might be due to invalid IL or missing references) //IL_322f: Unknown result type (might be due to invalid IL or missing references) //IL_3234: Unknown result type (might be due to invalid IL or missing references) //IL_3243: Unknown result type (might be due to invalid IL or missing references) //IL_3248: Unknown result type (might be due to invalid IL or missing references) //IL_3264: Unknown result type (might be due to invalid IL or missing references) //IL_3269: Unknown result type (might be due to invalid IL or missing references) //IL_3272: Unknown result type (might be due to invalid IL or missing references) //IL_327d: Unknown result type (might be due to invalid IL or missing references) //IL_328e: Unknown result type (might be due to invalid IL or missing references) //IL_3293: Unknown result type (might be due to invalid IL or missing references) //IL_3298: Unknown result type (might be due to invalid IL or missing references) //IL_279f: Unknown result type (might be due to invalid IL or missing references) //IL_27a5: Unknown result type (might be due to invalid IL or missing references) //IL_27aa: Unknown result type (might be due to invalid IL or missing references) //IL_27b0: Unknown result type (might be due to invalid IL or missing references) //IL_27b5: Unknown result type (might be due to invalid IL or missing references) //IL_27bb: Unknown result type (might be due to invalid IL or missing references) //IL_27c5: Unknown result type (might be due to invalid IL or missing references) //IL_27ca: Unknown result type (might be due to invalid IL or missing references) //IL_27d0: Unknown result type (might be due to invalid IL or missing references) //IL_27da: Unknown result type (might be due to invalid IL or missing references) //IL_27e0: Unknown result type (might be due to invalid IL or missing references) //IL_27e5: Unknown result type (might be due to invalid IL or missing references) //IL_27eb: Unknown result type (might be due to invalid IL or missing references) //IL_27f0: Unknown result type (might be due to invalid IL or missing references) //IL_27f5: Unknown result type (might be due to invalid IL or missing references) //IL_27fb: Unknown result type (might be due to invalid IL or missing references) //IL_2805: Unknown result type (might be due to invalid IL or missing references) //IL_280a: Unknown result type (might be due to invalid IL or missing references) //IL_2815: Unknown result type (might be due to invalid IL or missing references) //IL_281b: Unknown result type (might be due to invalid IL or missing references) //IL_2820: Unknown result type (might be due to invalid IL or missing references) //IL_2826: Unknown result type (might be due to invalid IL or missing references) //IL_282b: Unknown result type (might be due to invalid IL or missing references) //IL_2831: Unknown result type (might be due to invalid IL or missing references) //IL_283b: Unknown result type (might be due to invalid IL or missing references) //IL_2840: Unknown result type (might be due to invalid IL or missing references) //IL_2846: Unknown result type (might be due to invalid IL or missing references) //IL_2850: Unknown result type (might be due to invalid IL or missing references) //IL_2856: Unknown result type (might be due to invalid IL or missing references) //IL_285b: Unknown result type (might be due to invalid IL or missing references) //IL_2861: Unknown result type (might be due to invalid IL or missing references) //IL_2866: Unknown result type (might be due to invalid IL or missing references) //IL_286b: Unknown result type (might be due to invalid IL or missing references) //IL_2871: Unknown result type (might be due to invalid IL or missing references) //IL_287b: Unknown result type (might be due to invalid IL or missing references) //IL_2880: Unknown result type (might be due to invalid IL or missing references) //IL_288c: Unknown result type (might be due to invalid IL or missing references) //IL_26eb: Unknown result type (might be due to invalid IL or missing references) //IL_26f0: Unknown result type (might be due to invalid IL or missing references) //IL_256a: Unknown result type (might be due to invalid IL or missing references) //IL_256f: Unknown result type (might be due to invalid IL or missing references) //IL_257e: Unknown result type (might be due to invalid IL or missing references) //IL_2583: Unknown result type (might be due to invalid IL or missing references) //IL_259f: Unknown result type (might be due to invalid IL or missing references) //IL_25a4: Unknown result type (might be due to invalid IL or missing references) //IL_25ad: Unknown result type (might be due to invalid IL or missing references) //IL_25b8: Unknown result type (might be due to invalid IL or missing references) //IL_25c9: Unknown result type (might be due to invalid IL or missing references) //IL_25ce: Unknown result type (might be due to invalid IL or missing references) //IL_25d3: Unknown result type (might be due to invalid IL or missing references) //IL_1b1b: Unknown result type (might be due to invalid IL or missing references) //IL_1b20: Unknown result type (might be due to invalid IL or missing references) //IL_1b2f: Unknown result type (might be due to invalid IL or missing references) //IL_1b34: Unknown result type (might be due to invalid IL or missing references) //IL_1b4b: Unknown result type (might be due to invalid IL or missing references) //IL_1b50: Unknown result type (might be due to invalid IL or missing references) //IL_1b6c: Unknown result type (might be due to invalid IL or missing references) //IL_1b71: Unknown result type (might be due to invalid IL or missing references) //IL_1b80: Unknown result type (might be due to invalid IL or missing references) //IL_1b85: Unknown result type (might be due to invalid IL or missing references) //IL_1b96: Unknown result type (might be due to invalid IL or missing references) //IL_1ba1: Unknown result type (might be due to invalid IL or missing references) //IL_1ba6: Unknown result type (might be due to invalid IL or missing references) //IL_1bcf: Unknown result type (might be due to invalid IL or missing references) //IL_1bd4: Unknown result type (might be due to invalid IL or missing references) //IL_1beb: Unknown result type (might be due to invalid IL or missing references) //IL_1bf0: Unknown result type (might be due to invalid IL or missing references) //IL_1bf5: Unknown result type (might be due to invalid IL or missing references) //IL_1a65: Unknown result type (might be due to invalid IL or missing references) //IL_1a6a: Unknown result type (might be due to invalid IL or missing references) //IL_18e4: Unknown result type (might be due to invalid IL or missing references) //IL_18e9: Unknown result type (might be due to invalid IL or missing references) //IL_18f8: Unknown result type (might be due to invalid IL or missing references) //IL_18fd: Unknown result type (might be due to invalid IL or missing references) //IL_1919: Unknown result type (might be due to invalid IL or missing references) //IL_191e: Unknown result type (might be due to invalid IL or missing references) //IL_1927: Unknown result type (might be due to invalid IL or missing references) //IL_1932: Unknown result type (might be due to invalid IL or missing references) //IL_1943: Unknown result type (might be due to invalid IL or missing references) //IL_1948: Unknown result type (might be due to invalid IL or missing references) //IL_194d: Unknown result type (might be due to invalid IL or missing references) //IL_35f5: Unknown result type (might be due to invalid IL or missing references) //IL_35fb: Unknown result type (might be due to invalid IL or missing references) //IL_3600: Unknown result type (might be due to invalid IL or missing references) //IL_3606: Unknown result type (might be due to invalid IL or missing references) //IL_360b: Unknown result type (might be due to invalid IL or missing references) //IL_3611: Unknown result type (might be due to invalid IL or missing references) //IL_361b: Unknown result type (might be due to invalid IL or missing references) //IL_3621: Unknown result type (might be due to invalid IL or missing references) //IL_3626: Unknown result type (might be due to invalid IL or missing references) //IL_362c: Unknown result type (might be due to invalid IL or missing references) //IL_3631: Unknown result type (might be due to invalid IL or missing references) //IL_3636: Unknown result type (might be due to invalid IL or missing references) //IL_363c: Unknown result type (might be due to invalid IL or missing references) //IL_3646: Unknown result type (might be due to invalid IL or missing references) //IL_364b: Unknown result type (might be due to invalid IL or missing references) //IL_3656: Unknown result type (might be due to invalid IL or missing references) //IL_365c: Unknown result type (might be due to invalid IL or missing references) //IL_3661: Unknown result type (might be due to invalid IL or missing references) //IL_3667: Unknown result type (might be due to invalid IL or missing references) //IL_366c: Unknown result type (might be due to invalid IL or missing references) //IL_3672: Unknown result type (might be due to invalid IL or missing references) //IL_367c: Unknown result type (might be due to invalid IL or missing references) //IL_3681: Unknown result type (might be due to invalid IL or missing references) //IL_3687: Unknown result type (might be due to invalid IL or missing references) //IL_3691: Unknown result type (might be due to invalid IL or missing references) //IL_3697: Unknown result type (might be due to invalid IL or missing references) //IL_369c: Unknown result type (might be due to invalid IL or missing references) //IL_36a2: Unknown result type (might be due to invalid IL or missing references) //IL_36a7: Unknown result type (might be due to invalid IL or missing references) //IL_36ac: Unknown result type (might be due to invalid IL or missing references) //IL_36b2: Unknown result type (might be due to invalid IL or missing references) //IL_36bc: Unknown result type (might be due to invalid IL or missing references) //IL_36c1: Unknown result type (might be due to invalid IL or missing references) //IL_36cd: Unknown result type (might be due to invalid IL or missing references) //IL_3541: Unknown result type (might be due to invalid IL or missing references) //IL_3546: Unknown result type (might be due to invalid IL or missing references) //IL_33d5: Unknown result type (might be due to invalid IL or missing references) //IL_33da: Unknown result type (might be due to invalid IL or missing references) //IL_33e9: Unknown result type (might be due to invalid IL or missing references) //IL_33ee: Unknown result type (might be due to invalid IL or missing references) //IL_340a: Unknown result type (might be due to invalid IL or missing references) //IL_340f: Unknown result type (might be due to invalid IL or missing references) //IL_3418: Unknown result type (might be due to invalid IL or missing references) //IL_3423: Unknown result type (might be due to invalid IL or missing references) //IL_3434: Unknown result type (might be due to invalid IL or missing references) //IL_3439: Unknown result type (might be due to invalid IL or missing references) //IL_343e: Unknown result type (might be due to invalid IL or missing references) //IL_295a: Unknown result type (might be due to invalid IL or missing references) //IL_2960: Unknown result type (might be due to invalid IL or missing references) //IL_2965: Unknown result type (might be due to invalid IL or missing references) //IL_296b: Unknown result type (might be due to invalid IL or missing references) //IL_2970: Unknown result type (might be due to invalid IL or missing references) //IL_2976: Unknown result type (might be due to invalid IL or missing references) //IL_2980: Unknown result type (might be due to invalid IL or missing references) //IL_2985: Unknown result type (might be due to invalid IL or missing references) //IL_298b: Unknown result type (might be due to invalid IL or missing references) //IL_2995: Unknown result type (might be due to invalid IL or missing references) //IL_299b: Unknown result type (might be due to invalid IL or missing references) //IL_29a0: Unknown result type (might be due to invalid IL or missing references) //IL_29a6: Unknown result type (might be due to invalid IL or missing references) //IL_29ab: Unknown result type (might be due to invalid IL or missing references) //IL_29b0: Unknown result type (might be due to invalid IL or missing references) //IL_29b6: Unknown result type (might be due to invalid IL or missing references) //IL_29c0: Unknown result type (might be due to invalid IL or missing references) //IL_29c5: Unknown result type (might be due to invalid IL or missing references) //IL_29d0: Unknown result type (might be due to invalid IL or missing references) //IL_29d6: Unknown result type (might be due to invalid IL or missing references) //IL_29db: Unknown result type (might be due to invalid IL or missing references) //IL_29e1: Unknown result type (might be due to invalid IL or missing references) //IL_29e6: Unknown result type (might be due to invalid IL or missing references) //IL_29ec: Unknown result type (might be due to invalid IL or missing references) //IL_29f6: Unknown result type (might be due to invalid IL or missing references) //IL_29fb: Unknown result type (might be due to invalid IL or missing references) //IL_2a01: Unknown result type (might be due to invalid IL or missing references) //IL_2a0b: Unknown result type (might be due to invalid IL or missing references) //IL_2a11: Unknown result type (might be due to invalid IL or missing references) //IL_2a16: Unknown result type (might be due to invalid IL or missing references) //IL_2a1c: Unknown result type (might be due to invalid IL or missing references) //IL_2a21: Unknown result type (might be due to invalid IL or missing references) //IL_2a26: Unknown result type (might be due to invalid IL or missing references) //IL_2a2c: Unknown result type (might be due to invalid IL or missing references) //IL_2a36: Unknown result type (might be due to invalid IL or missing references) //IL_2a3b: Unknown result type (might be due to invalid IL or missing references) //IL_2a47: Unknown result type (might be due to invalid IL or missing references) //IL_28a6: Unknown result type (might be due to invalid IL or missing references) //IL_28ab: Unknown result type (might be due to invalid IL or missing references) //IL_2725: Unknown result type (might be due to invalid IL or missing references) //IL_272a: Unknown result type (might be due to invalid IL or missing references) //IL_2739: Unknown result type (might be due to invalid IL or missing references) //IL_273e: Unknown result type (might be due to invalid IL or missing references) //IL_275a: Unknown result type (might be due to invalid IL or missing references) //IL_275f: Unknown result type (might be due to invalid IL or missing references) //IL_2768: Unknown result type (might be due to invalid IL or missing references) //IL_2773: Unknown result type (might be due to invalid IL or missing references) //IL_2784: Unknown result type (might be due to invalid IL or missing references) //IL_2789: Unknown result type (might be due to invalid IL or missing references) //IL_278e: Unknown result type (might be due to invalid IL or missing references) //IL_1a9f: Unknown result type (might be due to invalid IL or missing references) //IL_1aa4: Unknown result type (might be due to invalid IL or missing references) //IL_1ab3: Unknown result type (might be due to invalid IL or missing references) //IL_1ab8: Unknown result type (might be due to invalid IL or missing references) //IL_1ad4: Unknown result type (might be due to invalid IL or missing references) //IL_1ad9: Unknown result type (might be due to invalid IL or missing references) //IL_1ae2: Unknown result type (might be due to invalid IL or missing references) //IL_1aed: Unknown result type (might be due to invalid IL or missing references) //IL_1afe: Unknown result type (might be due to invalid IL or missing references) //IL_1b03: Unknown result type (might be due to invalid IL or missing references) //IL_1b08: Unknown result type (might be due to invalid IL or missing references) //IL_379b: Unknown result type (might be due to invalid IL or missing references) //IL_37a1: Unknown result type (might be due to invalid IL or missing references) //IL_37a6: Unknown result type (might be due to invalid IL or missing references) //IL_37ac: Unknown result type (might be due to invalid IL or missing references) //IL_37b1: Unknown result type (might be due to invalid IL or missing references) //IL_37b7: Unknown result type (might be due to invalid IL or missing references) //IL_37c1: Unknown result type (might be due to invalid IL or missing references) //IL_37c6: Unknown result type (might be due to invalid IL or missing references) //IL_37cc: Unknown result type (might be due to invalid IL or missing references) //IL_37d6: Unknown result type (might be due to invalid IL or missing references) //IL_37dc: Unknown result type (might be due to invalid IL or missing references) //IL_37e1: Unknown result type (might be due to invalid IL or missing references) //IL_37e7: Unknown result type (might be due to invalid IL or missing references) //IL_37ec: Unknown result type (might be due to invalid IL or missing references) //IL_37f1: Unknown result type (might be due to invalid IL or missing references) //IL_37f7: Unknown result type (might be due to invalid IL or missing references) //IL_3801: Unknown result type (might be due to invalid IL or missing references) //IL_3806: Unknown result type (might be due to invalid IL or missing references) //IL_3811: Unknown result type (might be due to invalid IL or missing references) //IL_3817: Unknown result type (might be due to invalid IL or missing references) //IL_381c: Unknown result type (might be due to invalid IL or missing references) //IL_3822: Unknown result type (might be due to invalid IL or missing references) //IL_3827: Unknown result type (might be due to invalid IL or missing references) //IL_382d: Unknown result type (might be due to invalid IL or missing references) //IL_3837: Unknown result type (might be due to invalid IL or missing references) //IL_383c: Unknown result type (might be due to invalid IL or missing references) //IL_3842: Unknown result type (might be due to invalid IL or missing references) //IL_384c: Unknown result type (might be due to invalid IL or missing references) //IL_3852: Unknown result type (might be due to invalid IL or missing references) //IL_3857: Unknown result type (might be due to invalid IL or missing references) //IL_385d: Unknown result type (might be due to invalid IL or missing references) //IL_3862: Unknown result type (might be due to invalid IL or missing references) //IL_3867: Unknown result type (might be due to invalid IL or missing references) //IL_386d: Unknown result type (might be due to invalid IL or missing references) //IL_3877: Unknown result type (might be due to invalid IL or missing references) //IL_387c: Unknown result type (might be due to invalid IL or missing references) //IL_3888: Unknown result type (might be due to invalid IL or missing references) //IL_36e7: Unknown result type (might be due to invalid IL or missing references) //IL_36ec: Unknown result type (might be due to invalid IL or missing references) //IL_357b: Unknown result type (might be due to invalid IL or missing references) //IL_3580: Unknown result type (might be due to invalid IL or missing references) //IL_358f: Unknown result type (might be due to invalid IL or missing references) //IL_3594: Unknown result type (might be due to invalid IL or missing references) //IL_35b0: Unknown result type (might be due to invalid IL or missing references) //IL_35b5: Unknown result type (might be due to invalid IL or missing references) //IL_35be: Unknown result type (might be due to invalid IL or missing references) //IL_35c9: Unknown result type (might be due to invalid IL or missing references) //IL_35da: Unknown result type (might be due to invalid IL or missing references) //IL_35df: Unknown result type (might be due to invalid IL or missing references) //IL_35e4: Unknown result type (might be due to invalid IL or missing references) //IL_2b15: Unknown result type (might be due to invalid IL or missing references) //IL_2b1b: Unknown result type (might be due to invalid IL or missing references) //IL_2b20: Unknown result type (might be due to invalid IL or missing references) //IL_2b26: Unknown result type (might be due to invalid IL or missing references) //IL_2b2b: Unknown result type (might be due to invalid IL or missing references) //IL_2b31: Unknown result type (might be due to invalid IL or missing references) //IL_2b3b: Unknown result type (might be due to invalid IL or missing references) //IL_2b40: Unknown result type (might be due to invalid IL or missing references) //IL_2b46: Unknown result type (might be due to invalid IL or missing references) //IL_2b50: Unknown result type (might be due to invalid IL or missing references) //IL_2b56: Unknown result type (might be due to invalid IL or missing references) //IL_2b5b: Unknown result type (might be due to invalid IL or missing references) //IL_2b61: Unknown result type (might be due to invalid IL or missing references) //IL_2b66: Unknown result type (might be due to invalid IL or missing references) //IL_2b6b: Unknown result type (might be due to invalid IL or missing references) //IL_2b71: Unknown result type (might be due to invalid IL or missing references) //IL_2b7b: Unknown result type (might be due to invalid IL or missing references) //IL_2b80: Unknown result type (might be due to invalid IL or missing references) //IL_2b8b: Unknown result type (might be due to invalid IL or missing references) //IL_2b91: Unknown result type (might be due to invalid IL or missing references) //IL_2b96: Unknown result type (might be due to invalid IL or missing references) //IL_2b9c: Unknown result type (might be due to invalid IL or missing references) //IL_2ba1: Unknown result type (might be due to invalid IL or missing references) //IL_2ba7: Unknown result type (might be due to invalid IL or missing references) //IL_2bb1: Unknown result type (might be due to invalid IL or missing references) //IL_2bb6: Unknown result type (might be due to invalid IL or missing references) //IL_2bbc: Unknown result type (might be due to invalid IL or missing references) //IL_2bc6: Unknown result type (might be due to invalid IL or missing references) //IL_2bcc: Unknown result type (might be due to invalid IL or missing references) //IL_2bd1: Unknown result type (might be due to invalid IL or missing references) //IL_2bd7: Unknown result type (might be due to invalid IL or missing references) //IL_2bdc: Unknown result type (might be due to invalid IL or missing references) //IL_2be1: Unknown result type (might be due to invalid IL or missing references) //IL_2be7: Unknown result type (might be due to invalid IL or missing references) //IL_2bf1: Unknown result type (might be due to invalid IL or missing references) //IL_2bf6: Unknown result type (might be due to invalid IL or missing references) //IL_2c02: Unknown result type (might be due to invalid IL or missing references) //IL_2a61: Unknown result type (might be due to invalid IL or missing references) //IL_2a66: Unknown result type (might be due to invalid IL or missing references) //IL_28e0: Unknown result type (might be due to invalid IL or missing references) //IL_28e5: Unknown result type (might be due to invalid IL or missing references) //IL_28f4: Unknown result type (might be due to invalid IL or missing references) //IL_28f9: Unknown result type (might be due to invalid IL or missing references) //IL_2915: Unknown result type (might be due to invalid IL or missing references) //IL_291a: Unknown result type (might be due to invalid IL or missing references) //IL_2923: Unknown result type (might be due to invalid IL or missing references) //IL_292e: Unknown result type (might be due to invalid IL or missing references) //IL_293f: Unknown result type (might be due to invalid IL or missing references) //IL_2944: Unknown result type (might be due to invalid IL or missing references) //IL_2949: Unknown result type (might be due to invalid IL or missing references) //IL_3956: Unknown result type (might be due to invalid IL or missing references) //IL_395c: Unknown result type (might be due to invalid IL or missing references) //IL_3961: Unknown result type (might be due to invalid IL or missing references) //IL_3967: Unknown result type (might be due to invalid IL or missing references) //IL_396c: Unknown result type (might be due to invalid IL or missing references) //IL_3972: Unknown result type (might be due to invalid IL or missing references) //IL_397c: Unknown result type (might be due to invalid IL or missing references) //IL_3981: Unknown result type (might be due to invalid IL or missing references) //IL_3987: Unknown result type (might be due to invalid IL or missing references) //IL_3991: Unknown result type (might be due to invalid IL or missing references) //IL_3997: Unknown result type (might be due to invalid IL or missing references) //IL_399c: Unknown result type (might be due to invalid IL or missing references) //IL_39a2: Unknown result type (might be due to invalid IL or missing references) //IL_39a7: Unknown result type (might be due to invalid IL or missing references) //IL_39ac: Unknown result type (might be due to invalid IL or missing references) //IL_39b2: Unknown result type (might be due to invalid IL or missing references) //IL_39bc: Unknown result type (might be due to invalid IL or missing references) //IL_39c1: Unknown result type (might be due to invalid IL or missing references) //IL_39cc: Unknown result type (might be due to invalid IL or missing references) //IL_39d2: Unknown result type (might be due to invalid IL or missing references) //IL_39d7: Unknown result type (might be due to invalid IL or missing references) //IL_39dd: Unknown result type (might be due to invalid IL or missing references) //IL_39e2: Unknown result type (might be due to invalid IL or missing references) //IL_39e8: Unknown result type (might be due to invalid IL or missing references) //IL_39f2: Unknown result type (might be due to invalid IL or missing references) //IL_39f7: Unknown result type (might be due to invalid IL or missing references) //IL_39fd: Unknown result type (might be due to invalid IL or missing references) //IL_3a07: Unknown result type (might be due to invalid IL or missing references) //IL_3a0d: Unknown result type (might be due to invalid IL or missing references) //IL_3a12: Unknown result type (might be due to invalid IL or missing references) //IL_3a18: Unknown result type (might be due to invalid IL or missing references) //IL_3a1d: Unknown result type (might be due to invalid IL or missing references) //IL_3a22: Unknown result type (might be due to invalid IL or missing references) //IL_3a28: Unknown result type (might be due to invalid IL or missing references) //IL_3a32: Unknown result type (might be due to invalid IL or missing references) //IL_3a37: Unknown result type (might be due to invalid IL or missing references) //IL_3a43: Unknown result type (might be due to invalid IL or missing references) //IL_38a2: Unknown result type (might be due to invalid IL or missing references) //IL_38a7: Unknown result type (might be due to invalid IL or missing references) //IL_3721: Unknown result type (might be due to invalid IL or missing references) //IL_3726: Unknown result type (might be due to invalid IL or missing references) //IL_3735: Unknown result type (might be due to invalid IL or missing references) //IL_373a: Unknown result type (might be due to invalid IL or missing references) //IL_3756: Unknown result type (might be due to invalid IL or missing references) //IL_375b: Unknown result type (might be due to invalid IL or missing references) //IL_3764: Unknown result type (might be due to invalid IL or missing references) //IL_376f: Unknown result type (might be due to invalid IL or missing references) //IL_3780: Unknown result type (might be due to invalid IL or missing references) //IL_3785: Unknown result type (might be due to invalid IL or missing references) //IL_378a: Unknown result type (might be due to invalid IL or missing references) //IL_2cd2: Unknown result type (might be due to invalid IL or missing references) //IL_2cd7: Unknown result type (might be due to invalid IL or missing references) //IL_2ce6: Unknown result type (might be due to invalid IL or missing references) //IL_2ceb: Unknown result type (might be due to invalid IL or missing references) //IL_2d02: Unknown result type (might be due to invalid IL or missing references) //IL_2d07: Unknown result type (might be due to invalid IL or missing references) //IL_2d23: Unknown result type (might be due to invalid IL or missing references) //IL_2d28: Unknown result type (might be due to invalid IL or missing references) //IL_2d37: Unknown result type (might be due to invalid IL or missing references) //IL_2d3c: Unknown result type (might be due to invalid IL or missing references) //IL_2d4d: Unknown result type (might be due to invalid IL or missing references) //IL_2d58: Unknown result type (might be due to invalid IL or missing references) //IL_2d5d: Unknown result type (might be due to invalid IL or missing references) //IL_2d86: Unknown result type (might be due to invalid IL or missing references) //IL_2d8b: Unknown result type (might be due to invalid IL or missing references) //IL_2da2: Unknown result type (might be due to invalid IL or missing references) //IL_2da7: Unknown result type (might be due to invalid IL or missing references) //IL_2dac: Unknown result type (might be due to invalid IL or missing references) //IL_2c1c: Unknown result type (might be due to invalid IL or missing references) //IL_2c21: Unknown result type (might be due to invalid IL or missing references) //IL_2a9b: Unknown result type (might be due to invalid IL or missing references) //IL_2aa0: Unknown result type (might be due to invalid IL or missing references) //IL_2aaf: Unknown result type (might be due to invalid IL or missing references) //IL_2ab4: Unknown result type (might be due to invalid IL or missing references) //IL_2ad0: Unknown result type (might be due to invalid IL or missing references) //IL_2ad5: Unknown result type (might be due to invalid IL or missing references) //IL_2ade: Unknown result type (might be due to invalid IL or missing references) //IL_2ae9: Unknown result type (might be due to invalid IL or missing references) //IL_2afa: Unknown result type (might be due to invalid IL or missing references) //IL_2aff: Unknown result type (might be due to invalid IL or missing references) //IL_2b04: Unknown result type (might be due to invalid IL or missing references) //IL_3b11: Unknown result type (might be due to invalid IL or missing references) //IL_3b17: Unknown result type (might be due to invalid IL or missing references) //IL_3b1c: Unknown result type (might be due to invalid IL or missing references) //IL_3b22: Unknown result type (might be due to invalid IL or missing references) //IL_3b27: Unknown result type (might be due to invalid IL or missing references) //IL_3b2d: Unknown result type (might be due to invalid IL or missing references) //IL_3b37: Unknown result type (might be due to invalid IL or missing references) //IL_3b3c: Unknown result type (might be due to invalid IL or missing references) //IL_3b42: Unknown result type (might be due to invalid IL or missing references) //IL_3b4c: Unknown result type (might be due to invalid IL or missing references) //IL_3b52: Unknown result type (might be due to invalid IL or missing references) //IL_3b57: Unknown result type (might be due to invalid IL or missing references) //IL_3b5d: Unknown result type (might be due to invalid IL or missing references) //IL_3b62: Unknown result type (might be due to invalid IL or missing references) //IL_3b67: Unknown result type (might be due to invalid IL or missing references) //IL_3b6d: Unknown result type (might be due to invalid IL or missing references) //IL_3b77: Unknown result type (might be due to invalid IL or missing references) //IL_3b7c: Unknown result type (might be due to invalid IL or missing references) //IL_3b87: Unknown result type (might be due to invalid IL or missing references) //IL_3b8d: Unknown result type (might be due to invalid IL or missing references) //IL_3b92: Unknown result type (might be due to invalid IL or missing references) //IL_3b98: Unknown result type (might be due to invalid IL or missing references) //IL_3b9d: Unknown result type (might be due to invalid IL or missing references) //IL_3ba3: Unknown result type (might be due to invalid IL or missing references) //IL_3bad: Unknown result type (might be due to invalid IL or missing references) //IL_3bb2: Unknown result type (might be due to invalid IL or missing references) //IL_3bb8: Unknown result type (might be due to invalid IL or missing references) //IL_3bc2: Unknown result type (might be due to invalid IL or missing references) //IL_3bc8: Unknown result type (might be due to invalid IL or missing references) //IL_3bcd: Unknown result type (might be due to invalid IL or missing references) //IL_3bd3: Unknown result type (might be due to invalid IL or missing references) //IL_3bd8: Unknown result type (might be due to invalid IL or missing references) //IL_3bdd: Unknown result type (might be due to invalid IL or missing references) //IL_3be3: Unknown result type (might be due to invalid IL or missing references) //IL_3bed: Unknown result type (might be due to invalid IL or missing references) //IL_3bf2: Unknown result type (might be due to invalid IL or missing references) //IL_3bfe: Unknown result type (might be due to invalid IL or missing references) //IL_3a5d: Unknown result type (might be due to invalid IL or missing references) //IL_3a62: Unknown result type (might be due to invalid IL or missing references) //IL_38dc: Unknown result type (might be due to invalid IL or missing references) //IL_38e1: Unknown result type (might be due to invalid IL or missing references) //IL_38f0: Unknown result type (might be due to invalid IL or missing references) //IL_38f5: Unknown result type (might be due to invalid IL or missing references) //IL_3911: Unknown result type (might be due to invalid IL or missing references) //IL_3916: Unknown result type (might be due to invalid IL or missing references) //IL_391f: Unknown result type (might be due to invalid IL or missing references) //IL_392a: Unknown result type (might be due to invalid IL or missing references) //IL_393b: Unknown result type (might be due to invalid IL or missing references) //IL_3940: Unknown result type (might be due to invalid IL or missing references) //IL_3945: Unknown result type (might be due to invalid IL or missing references) //IL_2c56: Unknown result type (might be due to invalid IL or missing references) //IL_2c5b: Unknown result type (might be due to invalid IL or missing references) //IL_2c6a: Unknown result type (might be due to invalid IL or missing references) //IL_2c6f: Unknown result type (might be due to invalid IL or missing references) //IL_2c8b: Unknown result type (might be due to invalid IL or missing references) //IL_2c90: Unknown result type (might be due to invalid IL or missing references) //IL_2c99: Unknown result type (might be due to invalid IL or missing references) //IL_2ca4: Unknown result type (might be due to invalid IL or missing references) //IL_2cb5: Unknown result type (might be due to invalid IL or missing references) //IL_2cba: Unknown result type (might be due to invalid IL or missing references) //IL_2cbf: Unknown result type (might be due to invalid IL or missing references) //IL_3ccc: Unknown result type (might be due to invalid IL or missing references) //IL_3cd2: Unknown result type (might be due to invalid IL or missing references) //IL_3cd7: Unknown result type (might be due to invalid IL or missing references) //IL_3cdd: Unknown result type (might be due to invalid IL or missing references) //IL_3ce2: Unknown result type (might be due to invalid IL or missing references) //IL_3ce8: Unknown result type (might be due to invalid IL or missing references) //IL_3cf2: Unknown result type (might be due to invalid IL or missing references) //IL_3cf7: Unknown result type (might be due to invalid IL or missing references) //IL_3cfd: Unknown result type (might be due to invalid IL or missing references) //IL_3d07: Unknown result type (might be due to invalid IL or missing references) //IL_3d0d: Unknown result type (might be due to invalid IL or missing references) //IL_3d12: Unknown result type (might be due to invalid IL or missing references) //IL_3d18: Unknown result type (might be due to invalid IL or missing references) //IL_3d1d: Unknown result type (might be due to invalid IL or missing references) //IL_3d22: Unknown result type (might be due to invalid IL or missing references) //IL_3d28: Unknown result type (might be due to invalid IL or missing references) //IL_3d32: Unknown result type (might be due to invalid IL or missing references) //IL_3d37: Unknown result type (might be due to invalid IL or missing references) //IL_3d42: Unknown result type (might be due to invalid IL or missing references) //IL_3d48: Unknown result type (might be due to invalid IL or missing references) //IL_3d4d: Unknown result type (might be due to invalid IL or missing references) //IL_3d53: Unknown result type (might be due to invalid IL or missing references) //IL_3d58: Unknown result type (might be due to invalid IL or missing references) //IL_3d5e: Unknown result type (might be due to invalid IL or missing references) //IL_3d68: Unknown result type (might be due to invalid IL or missing references) //IL_3d6d: Unknown result type (might be due to invalid IL or missing references) //IL_3d73: Unknown result type (might be due to invalid IL or missing references) //IL_3d7d: Unknown result type (might be due to invalid IL or missing references) //IL_3d83: Unknown result type (might be due to invalid IL or missing references) //IL_3d88: Unknown result type (might be due to invalid IL or missing references) //IL_3d8e: Unknown result type (might be due to invalid IL or missing references) //IL_3d93: Unknown result type (might be due to invalid IL or missing references) //IL_3d98: Unknown result type (might be due to invalid IL or missing references) //IL_3d9e: Unknown result type (might be due to invalid IL or missing references) //IL_3da8: Unknown result type (might be due to invalid IL or missing references) //IL_3dad: Unknown result type (might be due to invalid IL or missing references) //IL_3db9: Unknown result type (might be due to invalid IL or missing references) //IL_3c18: Unknown result type (might be due to invalid IL or missing references) //IL_3c1d: Unknown result type (might be due to invalid IL or missing references) //IL_3a97: Unknown result type (might be due to invalid IL or missing references) //IL_3a9c: Unknown result type (might be due to invalid IL or missing references) //IL_3aab: Unknown result type (might be due to invalid IL or missing references) //IL_3ab0: Unknown result type (might be due to invalid IL or missing references) //IL_3acc: Unknown result type (might be due to invalid IL or missing references) //IL_3ad1: Unknown result type (might be due to invalid IL or missing references) //IL_3ada: Unknown result type (might be due to invalid IL or missing references) //IL_3ae5: Unknown result type (might be due to invalid IL or missing references) //IL_3af6: Unknown result type (might be due to invalid IL or missing references) //IL_3afb: Unknown result type (might be due to invalid IL or missing references) //IL_3b00: Unknown result type (might be due to invalid IL or missing references) //IL_3e89: Unknown result type (might be due to invalid IL or missing references) //IL_3e8e: Unknown result type (might be due to invalid IL or missing references) //IL_3e9d: Unknown result type (might be due to invalid IL or missing references) //IL_3ea2: Unknown result type (might be due to invalid IL or missing references) //IL_3eb9: Unknown result type (might be due to invalid IL or missing references) //IL_3ebe: Unknown result type (might be due to invalid IL or missing references) //IL_3eda: Unknown result type (might be due to invalid IL or missing references) //IL_3edf: Unknown result type (might be due to invalid IL or missing references) //IL_3eee: Unknown result type (might be due to invalid IL or missing references) //IL_3ef3: Unknown result type (might be due to invalid IL or missing references) //IL_3f04: Unknown result type (might be due to invalid IL or missing references) //IL_3f0f: Unknown result type (might be due to invalid IL or missing references) //IL_3f14: Unknown result type (might be due to invalid IL or missing references) //IL_3f3d: Unknown result type (might be due to invalid IL or missing references) //IL_3f42: Unknown result type (might be due to invalid IL or missing references) //IL_3f59: Unknown result type (might be due to invalid IL or missing references) //IL_3f5e: Unknown result type (might be due to invalid IL or missing references) //IL_3f63: Unknown result type (might be due to invalid IL or missing references) //IL_3dd3: Unknown result type (might be due to invalid IL or missing references) //IL_3dd8: Unknown result type (might be due to invalid IL or missing references) //IL_3c52: Unknown result type (might be due to invalid IL or missing references) //IL_3c57: Unknown result type (might be due to invalid IL or missing references) //IL_3c66: Unknown result type (might be due to invalid IL or missing references) //IL_3c6b: Unknown result type (might be due to invalid IL or missing references) //IL_3c87: Unknown result type (might be due to invalid IL or missing references) //IL_3c8c: Unknown result type (might be due to invalid IL or missing references) //IL_3c95: Unknown result type (might be due to invalid IL or missing references) //IL_3ca0: Unknown result type (might be due to invalid IL or missing references) //IL_3cb1: Unknown result type (might be due to invalid IL or missing references) //IL_3cb6: Unknown result type (might be due to invalid IL or missing references) //IL_3cbb: Unknown result type (might be due to invalid IL or missing references) //IL_3e0d: Unknown result type (might be due to invalid IL or missing references) //IL_3e12: Unknown result type (might be due to invalid IL or missing references) //IL_3e21: Unknown result type (might be due to invalid IL or missing references) //IL_3e26: Unknown result type (might be due to invalid IL or missing references) //IL_3e42: Unknown result type (might be due to invalid IL or missing references) //IL_3e47: Unknown result type (might be due to invalid IL or missing references) //IL_3e50: Unknown result type (might be due to invalid IL or missing references) //IL_3e5b: Unknown result type (might be due to invalid IL or missing references) //IL_3e6c: Unknown result type (might be due to invalid IL or missing references) //IL_3e71: Unknown result type (might be due to invalid IL or missing references) //IL_3e76: Unknown result type (might be due to invalid IL or missing references) if (switching || !ledgeSwitchingDetectors.allowLedgeSwitching || !grabbedOn) { return; } if ((!Physics.Linecast(((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.8f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { r1FirstForwardSurfaceDetectorsHit = true; } else { r1FirstForwardSurfaceDetectorsHit = false; r1FirstForwardHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.8f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { r2FirstForwardSurfaceDetectorsHit = true; } else { r2FirstForwardSurfaceDetectorsHit = false; r2FirstForwardHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.8f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { r3FirstForwardSurfaceDetectorsHit = true; } else { r3FirstForwardSurfaceDetectorsHit = false; r3FirstForwardHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) { if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref switchHitPoint)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit && !switching) { r1FirstForwardHit = true; if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2), ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r1FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r1FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r1FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r1FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r1FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r1FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r1FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r1FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else { r1FirstForwardHitPoint = new Vector3(((RaycastHit)(ref switchHitPoint)).point.x - ((Component)this).transform.forward.x * length2, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref switchHitPoint)).point.z - ((Component)this).transform.forward.x * length2) + new Vector3((0f - ((Component)this).transform.forward.x) * length2 / 10f, onLedgeHeight2 / 10f, (0f - ((Component)this).transform.forward.z) * length2 / 10f); } } else { r1FirstForwardHit = false; } } else { r1FirstForwardHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) { if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref switchHitPoint)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit && !switching) { r2FirstForwardHit = true; if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2), ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r2FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r2FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r2FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r2FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r2FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r2FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r2FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r2FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else { r2FirstForwardHitPoint = new Vector3(((RaycastHit)(ref switchHitPoint)).point.x - ((Component)this).transform.forward.x * length2, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref switchHitPoint)).point.z - ((Component)this).transform.forward.x * length2) + new Vector3((0f - ((Component)this).transform.forward.x) * length2 / 10f, onLedgeHeight2 / 10f, (0f - ((Component)this).transform.forward.z) * length2 / 10f); } } else { r2FirstForwardHit = false; } } else { r2FirstForwardHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f + ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) { if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref switchHitPoint)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit && !switching) { r3FirstForwardHit = true; if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2), ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r3FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r3FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r3FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r3FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r3FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r3FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r3FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r3FirstForwardHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (5.5f / length2); } else { r3FirstForwardHitPoint = new Vector3(((RaycastHit)(ref switchHitPoint)).point.x - ((Component)this).transform.forward.x * length2, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref switchHitPoint)).point.z - ((Component)this).transform.forward.x * length2) + new Vector3((0f - ((Component)this).transform.forward.x) * length2 / 10f, onLedgeHeight2 / 10f, (0f - ((Component)this).transform.forward.z) * length2 / 10f); } } else { r3FirstForwardHit = false; } } else { r3FirstForwardHit = false; } } private void LedgeSwitchHitPointsMiddleRight() { //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_006a: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_0089: Unknown result type (might be due to invalid IL or missing references) //IL_008e: Unknown result type (might be due to invalid IL or missing references) //IL_0094: Unknown result type (might be due to invalid IL or missing references) //IL_0099: Unknown result type (might be due to invalid IL or missing references) //IL_009f: Unknown result type (might be due to invalid IL or missing references) //IL_00a4: Unknown result type (might be due to invalid IL or missing references) //IL_00af: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) //IL_00ba: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_00cb: Unknown result type (might be due to invalid IL or missing references) //IL_00d0: Unknown result type (might be due to invalid IL or missing references) //IL_00d6: Unknown result type (might be due to invalid IL or missing references) //IL_00e0: Unknown result type (might be due to invalid IL or missing references) //IL_00e5: Unknown result type (might be due to invalid IL or missing references) //IL_00eb: Unknown result type (might be due to invalid IL or missing references) //IL_00f5: Unknown result type (might be due to invalid IL or missing references) //IL_00fa: Unknown result type (might be due to invalid IL or missing references) //IL_0100: Unknown result type (might be due to invalid IL or missing references) //IL_010a: Unknown result type (might be due to invalid IL or missing references) //IL_010f: Unknown result type (might be due to invalid IL or missing references) //IL_0115: Unknown result type (might be due to invalid IL or missing references) //IL_011a: Unknown result type (might be due to invalid IL or missing references) //IL_0120: Unknown result type (might be due to invalid IL or missing references) //IL_0125: Unknown result type (might be due to invalid IL or missing references) //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_0268: Unknown result type (might be due to invalid IL or missing references) //IL_026e: Unknown result type (might be due to invalid IL or missing references) //IL_0273: Unknown result type (might be due to invalid IL or missing references) //IL_0279: Unknown result type (might be due to invalid IL or missing references) //IL_027e: Unknown result type (might be due to invalid IL or missing references) //IL_0284: Unknown result type (might be due to invalid IL or missing references) //IL_0289: Unknown result type (might be due to invalid IL or missing references) //IL_028f: Unknown result type (might be due to invalid IL or missing references) //IL_0299: Unknown result type (might be due to invalid IL or missing references) //IL_029e: Unknown result type (might be due to invalid IL or missing references) //IL_02a4: Unknown result type (might be due to invalid IL or missing references) //IL_02ae: Unknown result type (might be due to invalid IL or missing references) //IL_02b3: Unknown result type (might be due to invalid IL or missing references) //IL_02b9: Unknown result type (might be due to invalid IL or missing references) //IL_02c3: Unknown result type (might be due to invalid IL or missing references) //IL_02c8: Unknown result type (might be due to invalid IL or missing references) //IL_02ce: Unknown result type (might be due to invalid IL or missing references) //IL_02d3: Unknown result type (might be due to invalid IL or missing references) //IL_02d9: Unknown result type (might be due to invalid IL or missing references) //IL_02de: Unknown result type (might be due to invalid IL or missing references) //IL_02e9: Unknown result type (might be due to invalid IL or missing references) //IL_02ef: Unknown result type (might be due to invalid IL or missing references) //IL_02f4: Unknown result type (might be due to invalid IL or missing references) //IL_02fa: Unknown result type (might be due to invalid IL or missing references) //IL_02ff: Unknown result type (might be due to invalid IL or missing references) //IL_0305: Unknown result type (might be due to invalid IL or missing references) //IL_030a: Unknown result type (might be due to invalid IL or missing references) //IL_0310: Unknown result type (might be due to invalid IL or missing references) //IL_031a: Unknown result type (might be due to invalid IL or missing references) //IL_031f: Unknown result type (might be due to invalid IL or missing references) //IL_0325: Unknown result type (might be due to invalid IL or missing references) //IL_032f: Unknown result type (might be due to invalid IL or missing references) //IL_0334: Unknown result type (might be due to invalid IL or missing references) //IL_033a: Unknown result type (might be due to invalid IL or missing references) //IL_0344: Unknown result type (might be due to invalid IL or missing references) //IL_0349: Unknown result type (might be due to invalid IL or missing references) //IL_034f: Unknown result type (might be due to invalid IL or missing references) //IL_0354: Unknown result type (might be due to invalid IL or missing references) //IL_0360: Unknown result type (might be due to invalid IL or missing references) //IL_014b: Unknown result type (might be due to invalid IL or missing references) //IL_0151: Unknown result type (might be due to invalid IL or missing references) //IL_0156: Unknown result type (might be due to invalid IL or missing references) //IL_015c: Unknown result type (might be due to invalid IL or missing references) //IL_0161: Unknown result type (might be due to invalid IL or missing references) //IL_0167: Unknown result type (might be due to invalid IL or missing references) //IL_016c: Unknown result type (might be due to invalid IL or missing references) //IL_0172: Unknown result type (might be due to invalid IL or missing references) //IL_017c: Unknown result type (might be due to invalid IL or missing references) //IL_0181: Unknown result type (might be due to invalid IL or missing references) //IL_0187: Unknown result type (might be due to invalid IL or missing references) //IL_0191: Unknown result type (might be due to invalid IL or missing references) //IL_0196: Unknown result type (might be due to invalid IL or missing references) //IL_019c: Unknown result type (might be due to invalid IL or missing references) //IL_01a6: Unknown result type (might be due to invalid IL or missing references) //IL_01ab: Unknown result type (might be due to invalid IL or missing references) //IL_01b1: Unknown result type (might be due to invalid IL or missing references) //IL_01b6: Unknown result type (might be due to invalid IL or missing references) //IL_01bc: Unknown result type (might be due to invalid IL or missing references) //IL_01c1: Unknown result type (might be due to invalid IL or missing references) //IL_01cc: Unknown result type (might be due to invalid IL or missing references) //IL_01d2: Unknown result type (might be due to invalid IL or missing references) //IL_01d7: Unknown result type (might be due to invalid IL or missing references) //IL_01dd: Unknown result type (might be due to invalid IL or missing references) //IL_01e2: Unknown result type (might be due to invalid IL or missing references) //IL_01e8: Unknown result type (might be due to invalid IL or missing references) //IL_01ed: Unknown result type (might be due to invalid IL or missing references) //IL_01f3: Unknown result type (might be due to invalid IL or missing references) //IL_01fd: Unknown result type (might be due to invalid IL or missing references) //IL_0202: Unknown result type (might be due to invalid IL or missing references) //IL_0208: Unknown result type (might be due to invalid IL or missing references) //IL_020d: Unknown result type (might be due to invalid IL or missing references) //IL_0213: Unknown result type (might be due to invalid IL or missing references) //IL_021d: Unknown result type (might be due to invalid IL or missing references) //IL_0222: Unknown result type (might be due to invalid IL or missing references) //IL_0228: Unknown result type (might be due to invalid IL or missing references) //IL_0232: Unknown result type (might be due to invalid IL or missing references) //IL_0237: Unknown result type (might be due to invalid IL or missing references) //IL_023d: Unknown result type (might be due to invalid IL or missing references) //IL_0242: Unknown result type (might be due to invalid IL or missing references) //IL_024e: Unknown result type (might be due to invalid IL or missing references) //IL_0398: Unknown result type (might be due to invalid IL or missing references) //IL_039e: Unknown result type (might be due to invalid IL or missing references) //IL_03a3: Unknown result type (might be due to invalid IL or missing references) //IL_03a9: Unknown result type (might be due to invalid IL or missing references) //IL_03ae: Unknown result type (might be due to invalid IL or missing references) //IL_03b4: Unknown result type (might be due to invalid IL or missing references) //IL_03b9: Unknown result type (might be due to invalid IL or missing references) //IL_03bf: Unknown result type (might be due to invalid IL or missing references) //IL_03c9: Unknown result type (might be due to invalid IL or missing references) //IL_03ce: Unknown result type (might be due to invalid IL or missing references) //IL_03d4: Unknown result type (might be due to invalid IL or missing references) //IL_03de: Unknown result type (might be due to invalid IL or missing references) //IL_03e3: Unknown result type (might be due to invalid IL or missing references) //IL_03e9: Unknown result type (might be due to invalid IL or missing references) //IL_03f3: Unknown result type (might be due to invalid IL or missing references) //IL_03f8: Unknown result type (might be due to invalid IL or missing references) //IL_03fe: Unknown result type (might be due to invalid IL or missing references) //IL_0403: Unknown result type (might be due to invalid IL or missing references) //IL_0409: Unknown result type (might be due to invalid IL or missing references) //IL_040e: Unknown result type (might be due to invalid IL or missing references) //IL_0419: Unknown result type (might be due to invalid IL or missing references) //IL_041f: Unknown result type (might be due to invalid IL or missing references) //IL_0424: Unknown result type (might be due to invalid IL or missing references) //IL_042a: Unknown result type (might be due to invalid IL or missing references) //IL_042f: Unknown result type (might be due to invalid IL or missing references) //IL_0435: Unknown result type (might be due to invalid IL or missing references) //IL_043a: Unknown result type (might be due to invalid IL or missing references) //IL_0440: Unknown result type (might be due to invalid IL or missing references) //IL_044a: Unknown result type (might be due to invalid IL or missing references) //IL_044f: Unknown result type (might be due to invalid IL or missing references) //IL_0455: Unknown result type (might be due to invalid IL or missing references) //IL_045f: Unknown result type (might be due to invalid IL or missing references) //IL_0464: Unknown result type (might be due to invalid IL or missing references) //IL_046a: Unknown result type (might be due to invalid IL or missing references) //IL_0474: Unknown result type (might be due to invalid IL or missing references) //IL_0479: Unknown result type (might be due to invalid IL or missing references) //IL_047f: Unknown result type (might be due to invalid IL or missing references) //IL_0484: Unknown result type (might be due to invalid IL or missing references) //IL_048a: Unknown result type (might be due to invalid IL or missing references) //IL_048f: Unknown result type (might be due to invalid IL or missing references) //IL_049b: Unknown result type (might be due to invalid IL or missing references) //IL_05d2: Unknown result type (might be due to invalid IL or missing references) //IL_05d8: Unknown result type (might be due to invalid IL or missing references) //IL_05dd: Unknown result type (might be due to invalid IL or missing references) //IL_05e3: Unknown result type (might be due to invalid IL or missing references) //IL_05e8: Unknown result type (might be due to invalid IL or missing references) //IL_05ee: Unknown result type (might be due to invalid IL or missing references) //IL_05f3: Unknown result type (might be due to invalid IL or missing references) //IL_05f9: Unknown result type (might be due to invalid IL or missing references) //IL_0603: Unknown result type (might be due to invalid IL or missing references) //IL_0608: Unknown result type (might be due to invalid IL or missing references) //IL_060e: Unknown result type (might be due to invalid IL or missing references) //IL_0618: Unknown result type (might be due to invalid IL or missing references) //IL_061d: Unknown result type (might be due to invalid IL or missing references) //IL_0623: Unknown result type (might be due to invalid IL or missing references) //IL_062d: Unknown result type (might be due to invalid IL or missing references) //IL_0632: Unknown result type (might be due to invalid IL or missing references) //IL_0638: Unknown result type (might be due to invalid IL or missing references) //IL_063d: Unknown result type (might be due to invalid IL or missing references) //IL_0643: Unknown result type (might be due to invalid IL or missing references) //IL_0648: Unknown result type (might be due to invalid IL or missing references) //IL_0653: Unknown result type (might be due to invalid IL or missing references) //IL_0659: Unknown result type (might be due to invalid IL or missing references) //IL_065e: Unknown result type (might be due to invalid IL or missing references) //IL_0664: Unknown result type (might be due to invalid IL or missing references) //IL_0669: Unknown result type (might be due to invalid IL or missing references) //IL_066f: Unknown result type (might be due to invalid IL or missing references) //IL_0674: Unknown result type (might be due to invalid IL or missing references) //IL_067a: Unknown result type (might be due to invalid IL or missing references) //IL_0684: Unknown result type (might be due to invalid IL or missing references) //IL_0689: Unknown result type (might be due to invalid IL or missing references) //IL_068f: Unknown result type (might be due to invalid IL or missing references) //IL_0699: Unknown result type (might be due to invalid IL or missing references) //IL_069e: Unknown result type (might be due to invalid IL or missing references) //IL_06a4: Unknown result type (might be due to invalid IL or missing references) //IL_06ae: Unknown result type (might be due to invalid IL or missing references) //IL_06b3: Unknown result type (might be due to invalid IL or missing references) //IL_06b9: Unknown result type (might be due to invalid IL or missing references) //IL_06be: Unknown result type (might be due to invalid IL or missing references) //IL_06ca: Unknown result type (might be due to invalid IL or missing references) //IL_04b5: Unknown result type (might be due to invalid IL or missing references) //IL_04bb: Unknown result type (might be due to invalid IL or missing references) //IL_04c0: Unknown result type (might be due to invalid IL or missing references) //IL_04c6: Unknown result type (might be due to invalid IL or missing references) //IL_04cb: Unknown result type (might be due to invalid IL or missing references) //IL_04d1: Unknown result type (might be due to invalid IL or missing references) //IL_04d6: Unknown result type (might be due to invalid IL or missing references) //IL_04dc: Unknown result type (might be due to invalid IL or missing references) //IL_04e6: Unknown result type (might be due to invalid IL or missing references) //IL_04eb: Unknown result type (might be due to invalid IL or missing references) //IL_04f1: Unknown result type (might be due to invalid IL or missing references) //IL_04fb: Unknown result type (might be due to invalid IL or missing references) //IL_0500: Unknown result type (might be due to invalid IL or missing references) //IL_0506: Unknown result type (might be due to invalid IL or missing references) //IL_0510: Unknown result type (might be due to invalid IL or missing references) //IL_0515: Unknown result type (might be due to invalid IL or missing references) //IL_051b: Unknown result type (might be due to invalid IL or missing references) //IL_0520: Unknown result type (might be due to invalid IL or missing references) //IL_0526: Unknown result type (might be due to invalid IL or missing references) //IL_052b: Unknown result type (might be due to invalid IL or missing references) //IL_0536: Unknown result type (might be due to invalid IL or missing references) //IL_053c: Unknown result type (might be due to invalid IL or missing references) //IL_0541: Unknown result type (might be due to invalid IL or missing references) //IL_0547: Unknown result type (might be due to invalid IL or missing references) //IL_054c: Unknown result type (might be due to invalid IL or missing references) //IL_0552: Unknown result type (might be due to invalid IL or missing references) //IL_0557: Unknown result type (might be due to invalid IL or missing references) //IL_055d: Unknown result type (might be due to invalid IL or missing references) //IL_0567: Unknown result type (might be due to invalid IL or missing references) //IL_056c: Unknown result type (might be due to invalid IL or missing references) //IL_0572: Unknown result type (might be due to invalid IL or missing references) //IL_0577: Unknown result type (might be due to invalid IL or missing references) //IL_057d: Unknown result type (might be due to invalid IL or missing references) //IL_0587: Unknown result type (might be due to invalid IL or missing references) //IL_058c: Unknown result type (might be due to invalid IL or missing references) //IL_0592: Unknown result type (might be due to invalid IL or missing references) //IL_059c: Unknown result type (might be due to invalid IL or missing references) //IL_05a1: Unknown result type (might be due to invalid IL or missing references) //IL_05a7: Unknown result type (might be due to invalid IL or missing references) //IL_05ac: Unknown result type (might be due to invalid IL or missing references) //IL_05b8: Unknown result type (might be due to invalid IL or missing references) //IL_0702: Unknown result type (might be due to invalid IL or missing references) //IL_0708: Unknown result type (might be due to invalid IL or missing references) //IL_070d: Unknown result type (might be due to invalid IL or missing references) //IL_0713: Unknown result type (might be due to invalid IL or missing references) //IL_0718: Unknown result type (might be due to invalid IL or missing references) //IL_071e: Unknown result type (might be due to invalid IL or missing references) //IL_0723: Unknown result type (might be due to invalid IL or missing references) //IL_0729: Unknown result type (might be due to invalid IL or missing references) //IL_0733: Unknown result type (might be due to invalid IL or missing references) //IL_0738: Unknown result type (might be due to invalid IL or missing references) //IL_073e: Unknown result type (might be due to invalid IL or missing references) //IL_0748: Unknown result type (might be due to invalid IL or missing references) //IL_074d: Unknown result type (might be due to invalid IL or missing references) //IL_0753: Unknown result type (might be due to invalid IL or missing references) //IL_075d: Unknown result type (might be due to invalid IL or missing references) //IL_0762: Unknown result type (might be due to invalid IL or missing references) //IL_0768: Unknown result type (might be due to invalid IL or missing references) //IL_076d: Unknown result type (might be due to invalid IL or missing references) //IL_0773: Unknown result type (might be due to invalid IL or missing references) //IL_0778: Unknown result type (might be due to invalid IL or missing references) //IL_0783: Unknown result type (might be due to invalid IL or missing references) //IL_0789: Unknown result type (might be due to invalid IL or missing references) //IL_078e: Unknown result type (might be due to invalid IL or missing references) //IL_0794: Unknown result type (might be due to invalid IL or missing references) //IL_0799: Unknown result type (might be due to invalid IL or missing references) //IL_079f: Unknown result type (might be due to invalid IL or missing references) //IL_07a4: Unknown result type (might be due to invalid IL or missing references) //IL_07aa: Unknown result type (might be due to invalid IL or missing references) //IL_07b4: Unknown result type (might be due to invalid IL or missing references) //IL_07b9: Unknown result type (might be due to invalid IL or missing references) //IL_07bf: Unknown result type (might be due to invalid IL or missing references) //IL_07c9: Unknown result type (might be due to invalid IL or missing references) //IL_07ce: Unknown result type (might be due to invalid IL or missing references) //IL_07d4: Unknown result type (might be due to invalid IL or missing references) //IL_07de: Unknown result type (might be due to invalid IL or missing references) //IL_07e3: Unknown result type (might be due to invalid IL or missing references) //IL_07e9: Unknown result type (might be due to invalid IL or missing references) //IL_07ee: Unknown result type (might be due to invalid IL or missing references) //IL_07f4: Unknown result type (might be due to invalid IL or missing references) //IL_07f9: Unknown result type (might be due to invalid IL or missing references) //IL_0805: Unknown result type (might be due to invalid IL or missing references) //IL_093c: Unknown result type (might be due to invalid IL or missing references) //IL_0942: Unknown result type (might be due to invalid IL or missing references) //IL_0947: Unknown result type (might be due to invalid IL or missing references) //IL_094d: Unknown result type (might be due to invalid IL or missing references) //IL_0952: Unknown result type (might be due to invalid IL or missing references) //IL_0958: Unknown result type (might be due to invalid IL or missing references) //IL_095d: Unknown result type (might be due to invalid IL or missing references) //IL_0963: Unknown result type (might be due to invalid IL or missing references) //IL_096d: Unknown result type (might be due to invalid IL or missing references) //IL_0972: Unknown result type (might be due to invalid IL or missing references) //IL_0978: Unknown result type (might be due to invalid IL or missing references) //IL_0982: Unknown result type (might be due to invalid IL or missing references) //IL_0987: Unknown result type (might be due to invalid IL or missing references) //IL_098d: Unknown result type (might be due to invalid IL or missing references) //IL_0997: Unknown result type (might be due to invalid IL or missing references) //IL_099c: Unknown result type (might be due to invalid IL or missing references) //IL_09a2: Unknown result type (might be due to invalid IL or missing references) //IL_09a7: Unknown result type (might be due to invalid IL or missing references) //IL_09ad: Unknown result type (might be due to invalid IL or missing references) //IL_09b2: Unknown result type (might be due to invalid IL or missing references) //IL_09bd: Unknown result type (might be due to invalid IL or missing references) //IL_09c3: Unknown result type (might be due to invalid IL or missing references) //IL_09c8: Unknown result type (might be due to invalid IL or missing references) //IL_09ce: Unknown result type (might be due to invalid IL or missing references) //IL_09d3: Unknown result type (might be due to invalid IL or missing references) //IL_09d9: Unknown result type (might be due to invalid IL or missing references) //IL_09de: Unknown result type (might be due to invalid IL or missing references) //IL_09e4: Unknown result type (might be due to invalid IL or missing references) //IL_09ee: Unknown result type (might be due to invalid IL or missing references) //IL_09f3: Unknown result type (might be due to invalid IL or missing references) //IL_09f9: Unknown result type (might be due to invalid IL or missing references) //IL_0a03: Unknown result type (might be due to invalid IL or missing references) //IL_0a08: Unknown result type (might be due to invalid IL or missing references) //IL_0a0e: Unknown result type (might be due to invalid IL or missing references) //IL_0a18: Unknown result type (might be due to invalid IL or missing references) //IL_0a1d: Unknown result type (might be due to invalid IL or missing references) //IL_0a23: Unknown result type (might be due to invalid IL or missing references) //IL_0a28: Unknown result type (might be due to invalid IL or missing references) //IL_0a34: Unknown result type (might be due to invalid IL or missing references) //IL_081f: Unknown result type (might be due to invalid IL or missing references) //IL_0825: Unknown result type (might be due to invalid IL or missing references) //IL_082a: Unknown result type (might be due to invalid IL or missing references) //IL_0830: Unknown result type (might be due to invalid IL or missing references) //IL_0835: Unknown result type (might be due to invalid IL or missing references) //IL_083b: Unknown result type (might be due to invalid IL or missing references) //IL_0840: Unknown result type (might be due to invalid IL or missing references) //IL_0846: Unknown result type (might be due to invalid IL or missing references) //IL_0850: Unknown result type (might be due to invalid IL or missing references) //IL_0855: Unknown result type (might be due to invalid IL or missing references) //IL_085b: Unknown result type (might be due to invalid IL or missing references) //IL_0865: Unknown result type (might be due to invalid IL or missing references) //IL_086a: Unknown result type (might be due to invalid IL or missing references) //IL_0870: Unknown result type (might be due to invalid IL or missing references) //IL_087a: Unknown result type (might be due to invalid IL or missing references) //IL_087f: Unknown result type (might be due to invalid IL or missing references) //IL_0885: Unknown result type (might be due to invalid IL or missing references) //IL_088a: Unknown result type (might be due to invalid IL or missing references) //IL_0890: Unknown result type (might be due to invalid IL or missing references) //IL_0895: Unknown result type (might be due to invalid IL or missing references) //IL_08a0: Unknown result type (might be due to invalid IL or missing references) //IL_08a6: Unknown result type (might be due to invalid IL or missing references) //IL_08ab: Unknown result type (might be due to invalid IL or missing references) //IL_08b1: Unknown result type (might be due to invalid IL or missing references) //IL_08b6: Unknown result type (might be due to invalid IL or missing references) //IL_08bc: Unknown result type (might be due to invalid IL or missing references) //IL_08c1: Unknown result type (might be due to invalid IL or missing references) //IL_08c7: Unknown result type (might be due to invalid IL or missing references) //IL_08d1: Unknown result type (might be due to invalid IL or missing references) //IL_08d6: Unknown result type (might be due to invalid IL or missing references) //IL_08dc: Unknown result type (might be due to invalid IL or missing references) //IL_08e1: Unknown result type (might be due to invalid IL or missing references) //IL_08e7: Unknown result type (might be due to invalid IL or missing references) //IL_08f1: Unknown result type (might be due to invalid IL or missing references) //IL_08f6: Unknown result type (might be due to invalid IL or missing references) //IL_08fc: Unknown result type (might be due to invalid IL or missing references) //IL_0906: Unknown result type (might be due to invalid IL or missing references) //IL_090b: Unknown result type (might be due to invalid IL or missing references) //IL_0911: Unknown result type (might be due to invalid IL or missing references) //IL_0916: Unknown result type (might be due to invalid IL or missing references) //IL_0922: Unknown result type (might be due to invalid IL or missing references) //IL_0a6c: Unknown result type (might be due to invalid IL or missing references) //IL_0a72: Unknown result type (might be due to invalid IL or missing references) //IL_0a77: Unknown result type (might be due to invalid IL or missing references) //IL_0a7d: Unknown result type (might be due to invalid IL or missing references) //IL_0a87: Unknown result type (might be due to invalid IL or missing references) //IL_0a8c: Unknown result type (might be due to invalid IL or missing references) //IL_0a92: Unknown result type (might be due to invalid IL or missing references) //IL_0a9c: Unknown result type (might be due to invalid IL or missing references) //IL_0aa1: Unknown result type (might be due to invalid IL or missing references) //IL_0aa7: Unknown result type (might be due to invalid IL or missing references) //IL_0ab1: Unknown result type (might be due to invalid IL or missing references) //IL_0ab6: Unknown result type (might be due to invalid IL or missing references) //IL_0abc: Unknown result type (might be due to invalid IL or missing references) //IL_0ac1: Unknown result type (might be due to invalid IL or missing references) //IL_0ac7: Unknown result type (might be due to invalid IL or missing references) //IL_0acc: Unknown result type (might be due to invalid IL or missing references) //IL_0ad2: Unknown result type (might be due to invalid IL or missing references) //IL_0ad7: Unknown result type (might be due to invalid IL or missing references) //IL_0ae2: Unknown result type (might be due to invalid IL or missing references) //IL_0ae8: Unknown result type (might be due to invalid IL or missing references) //IL_0aed: Unknown result type (might be due to invalid IL or missing references) //IL_0af3: Unknown result type (might be due to invalid IL or missing references) //IL_0afd: Unknown result type (might be due to invalid IL or missing references) //IL_0b02: Unknown result type (might be due to invalid IL or missing references) //IL_0b08: Unknown result type (might be due to invalid IL or missing references) //IL_0b12: Unknown result type (might be due to invalid IL or missing references) //IL_0b17: Unknown result type (might be due to invalid IL or missing references) //IL_0b1d: Unknown result type (might be due to invalid IL or missing references) //IL_0b27: Unknown result type (might be due to invalid IL or missing references) //IL_0b2c: Unknown result type (might be due to invalid IL or missing references) //IL_0b32: Unknown result type (might be due to invalid IL or missing references) //IL_0b37: Unknown result type (might be due to invalid IL or missing references) //IL_0b3d: Unknown result type (might be due to invalid IL or missing references) //IL_0b42: Unknown result type (might be due to invalid IL or missing references) //IL_0b48: Unknown result type (might be due to invalid IL or missing references) //IL_0b4d: Unknown result type (might be due to invalid IL or missing references) //IL_0b59: Unknown result type (might be due to invalid IL or missing references) //IL_0c7a: Unknown result type (might be due to invalid IL or missing references) //IL_0c80: Unknown result type (might be due to invalid IL or missing references) //IL_0c85: Unknown result type (might be due to invalid IL or missing references) //IL_0c8b: Unknown result type (might be due to invalid IL or missing references) //IL_0c95: Unknown result type (might be due to invalid IL or missing references) //IL_0c9a: Unknown result type (might be due to invalid IL or missing references) //IL_0ca0: Unknown result type (might be due to invalid IL or missing references) //IL_0caa: Unknown result type (might be due to invalid IL or missing references) //IL_0caf: Unknown result type (might be due to invalid IL or missing references) //IL_0cb5: Unknown result type (might be due to invalid IL or missing references) //IL_0cbf: Unknown result type (might be due to invalid IL or missing references) //IL_0cc4: Unknown result type (might be due to invalid IL or missing references) //IL_0cca: Unknown result type (might be due to invalid IL or missing references) //IL_0ccf: Unknown result type (might be due to invalid IL or missing references) //IL_0cd5: Unknown result type (might be due to invalid IL or missing references) //IL_0cda: Unknown result type (might be due to invalid IL or missing references) //IL_0ce0: Unknown result type (might be due to invalid IL or missing references) //IL_0ce5: Unknown result type (might be due to invalid IL or missing references) //IL_0cf0: Unknown result type (might be due to invalid IL or missing references) //IL_0cf6: Unknown result type (might be due to invalid IL or missing references) //IL_0cfb: Unknown result type (might be due to invalid IL or missing references) //IL_0d01: Unknown result type (might be due to invalid IL or missing references) //IL_0d0b: Unknown result type (might be due to invalid IL or missing references) //IL_0d10: Unknown result type (might be due to invalid IL or missing references) //IL_0d16: Unknown result type (might be due to invalid IL or missing references) //IL_0d20: Unknown result type (might be due to invalid IL or missing references) //IL_0d25: Unknown result type (might be due to invalid IL or missing references) //IL_0d2b: Unknown result type (might be due to invalid IL or missing references) //IL_0d35: Unknown result type (might be due to invalid IL or missing references) //IL_0d3a: Unknown result type (might be due to invalid IL or missing references) //IL_0d40: Unknown result type (might be due to invalid IL or missing references) //IL_0d45: Unknown result type (might be due to invalid IL or missing references) //IL_0d4b: Unknown result type (might be due to invalid IL or missing references) //IL_0d50: Unknown result type (might be due to invalid IL or missing references) //IL_0d5c: Unknown result type (might be due to invalid IL or missing references) //IL_0b73: Unknown result type (might be due to invalid IL or missing references) //IL_0b79: Unknown result type (might be due to invalid IL or missing references) //IL_0b7e: Unknown result type (might be due to invalid IL or missing references) //IL_0b84: Unknown result type (might be due to invalid IL or missing references) //IL_0b8e: Unknown result type (might be due to invalid IL or missing references) //IL_0b93: Unknown result type (might be due to invalid IL or missing references) //IL_0b99: Unknown result type (might be due to invalid IL or missing references) //IL_0ba3: Unknown result type (might be due to invalid IL or missing references) //IL_0ba8: Unknown result type (might be due to invalid IL or missing references) //IL_0bae: Unknown result type (might be due to invalid IL or missing references) //IL_0bb8: Unknown result type (might be due to invalid IL or missing references) //IL_0bbd: Unknown result type (might be due to invalid IL or missing references) //IL_0bc3: Unknown result type (might be due to invalid IL or missing references) //IL_0bc8: Unknown result type (might be due to invalid IL or missing references) //IL_0bce: Unknown result type (might be due to invalid IL or missing references) //IL_0bd3: Unknown result type (might be due to invalid IL or missing references) //IL_0bd9: Unknown result type (might be due to invalid IL or missing references) //IL_0bde: Unknown result type (might be due to invalid IL or missing references) //IL_0be9: Unknown result type (might be due to invalid IL or missing references) //IL_0bef: Unknown result type (might be due to invalid IL or missing references) //IL_0bf4: Unknown result type (might be due to invalid IL or missing references) //IL_0bfa: Unknown result type (might be due to invalid IL or missing references) //IL_0c04: Unknown result type (might be due to invalid IL or missing references) //IL_0c09: Unknown result type (might be due to invalid IL or missing references) //IL_0c0f: Unknown result type (might be due to invalid IL or missing references) //IL_0c14: Unknown result type (might be due to invalid IL or missing references) //IL_0c1a: Unknown result type (might be due to invalid IL or missing references) //IL_0c24: Unknown result type (might be due to invalid IL or missing references) //IL_0c29: Unknown result type (might be due to invalid IL or missing references) //IL_0c2f: Unknown result type (might be due to invalid IL or missing references) //IL_0c39: Unknown result type (might be due to invalid IL or missing references) //IL_0c3e: Unknown result type (might be due to invalid IL or missing references) //IL_0c44: Unknown result type (might be due to invalid IL or missing references) //IL_0c49: Unknown result type (might be due to invalid IL or missing references) //IL_0c4f: Unknown result type (might be due to invalid IL or missing references) //IL_0c54: Unknown result type (might be due to invalid IL or missing references) //IL_0c60: Unknown result type (might be due to invalid IL or missing references) //IL_0d77: Unknown result type (might be due to invalid IL or missing references) //IL_0d7c: Unknown result type (might be due to invalid IL or missing references) //IL_1c14: Unknown result type (might be due to invalid IL or missing references) //IL_1c1a: Unknown result type (might be due to invalid IL or missing references) //IL_1c1f: Unknown result type (might be due to invalid IL or missing references) //IL_1c25: Unknown result type (might be due to invalid IL or missing references) //IL_1c2f: Unknown result type (might be due to invalid IL or missing references) //IL_1c34: Unknown result type (might be due to invalid IL or missing references) //IL_1c3a: Unknown result type (might be due to invalid IL or missing references) //IL_1c44: Unknown result type (might be due to invalid IL or missing references) //IL_1c49: Unknown result type (might be due to invalid IL or missing references) //IL_1c4f: Unknown result type (might be due to invalid IL or missing references) //IL_1c59: Unknown result type (might be due to invalid IL or missing references) //IL_1c5e: Unknown result type (might be due to invalid IL or missing references) //IL_1c64: Unknown result type (might be due to invalid IL or missing references) //IL_1c69: Unknown result type (might be due to invalid IL or missing references) //IL_1c6f: Unknown result type (might be due to invalid IL or missing references) //IL_1c74: Unknown result type (might be due to invalid IL or missing references) //IL_1c7a: Unknown result type (might be due to invalid IL or missing references) //IL_1c7f: Unknown result type (might be due to invalid IL or missing references) //IL_1c8a: Unknown result type (might be due to invalid IL or missing references) //IL_1c90: Unknown result type (might be due to invalid IL or missing references) //IL_1c95: Unknown result type (might be due to invalid IL or missing references) //IL_1c9b: Unknown result type (might be due to invalid IL or missing references) //IL_1ca5: Unknown result type (might be due to invalid IL or missing references) //IL_1caa: Unknown result type (might be due to invalid IL or missing references) //IL_1cb0: Unknown result type (might be due to invalid IL or missing references) //IL_1cba: Unknown result type (might be due to invalid IL or missing references) //IL_1cbf: Unknown result type (might be due to invalid IL or missing references) //IL_1cc5: Unknown result type (might be due to invalid IL or missing references) //IL_1ccf: Unknown result type (might be due to invalid IL or missing references) //IL_1cd4: Unknown result type (might be due to invalid IL or missing references) //IL_1cda: Unknown result type (might be due to invalid IL or missing references) //IL_1cdf: Unknown result type (might be due to invalid IL or missing references) //IL_1ce5: Unknown result type (might be due to invalid IL or missing references) //IL_1cea: Unknown result type (might be due to invalid IL or missing references) //IL_1cf0: Unknown result type (might be due to invalid IL or missing references) //IL_1cf5: Unknown result type (might be due to invalid IL or missing references) //IL_1d01: Unknown result type (might be due to invalid IL or missing references) //IL_0db7: Unknown result type (might be due to invalid IL or missing references) //IL_0dbd: Unknown result type (might be due to invalid IL or missing references) //IL_0dc2: Unknown result type (might be due to invalid IL or missing references) //IL_0dc8: Unknown result type (might be due to invalid IL or missing references) //IL_0dcd: Unknown result type (might be due to invalid IL or missing references) //IL_0dd3: Unknown result type (might be due to invalid IL or missing references) //IL_0ddd: Unknown result type (might be due to invalid IL or missing references) //IL_0de2: Unknown result type (might be due to invalid IL or missing references) //IL_0de8: Unknown result type (might be due to invalid IL or missing references) //IL_0df2: Unknown result type (might be due to invalid IL or missing references) //IL_0df8: Unknown result type (might be due to invalid IL or missing references) //IL_0dfd: Unknown result type (might be due to invalid IL or missing references) //IL_0e03: Unknown result type (might be due to invalid IL or missing references) //IL_0e08: Unknown result type (might be due to invalid IL or missing references) //IL_0e0d: Unknown result type (might be due to invalid IL or missing references) //IL_0e18: Unknown result type (might be due to invalid IL or missing references) //IL_0e1e: Unknown result type (might be due to invalid IL or missing references) //IL_0e23: Unknown result type (might be due to invalid IL or missing references) //IL_0e29: Unknown result type (might be due to invalid IL or missing references) //IL_0e2e: Unknown result type (might be due to invalid IL or missing references) //IL_0e34: Unknown result type (might be due to invalid IL or missing references) //IL_0e3e: Unknown result type (might be due to invalid IL or missing references) //IL_0e43: Unknown result type (might be due to invalid IL or missing references) //IL_0e49: Unknown result type (might be due to invalid IL or missing references) //IL_0e53: Unknown result type (might be due to invalid IL or missing references) //IL_0e59: Unknown result type (might be due to invalid IL or missing references) //IL_0e5e: Unknown result type (might be due to invalid IL or missing references) //IL_0e64: Unknown result type (might be due to invalid IL or missing references) //IL_0e69: Unknown result type (might be due to invalid IL or missing references) //IL_0e6e: Unknown result type (might be due to invalid IL or missing references) //IL_0e7a: Unknown result type (might be due to invalid IL or missing references) //IL_1e22: Unknown result type (might be due to invalid IL or missing references) //IL_1e28: Unknown result type (might be due to invalid IL or missing references) //IL_1e2d: Unknown result type (might be due to invalid IL or missing references) //IL_1e33: Unknown result type (might be due to invalid IL or missing references) //IL_1e3d: Unknown result type (might be due to invalid IL or missing references) //IL_1e42: Unknown result type (might be due to invalid IL or missing references) //IL_1e48: Unknown result type (might be due to invalid IL or missing references) //IL_1e52: Unknown result type (might be due to invalid IL or missing references) //IL_1e57: Unknown result type (might be due to invalid IL or missing references) //IL_1e5d: Unknown result type (might be due to invalid IL or missing references) //IL_1e67: Unknown result type (might be due to invalid IL or missing references) //IL_1e6c: Unknown result type (might be due to invalid IL or missing references) //IL_1e72: Unknown result type (might be due to invalid IL or missing references) //IL_1e77: Unknown result type (might be due to invalid IL or missing references) //IL_1e7d: Unknown result type (might be due to invalid IL or missing references) //IL_1e82: Unknown result type (might be due to invalid IL or missing references) //IL_1e88: Unknown result type (might be due to invalid IL or missing references) //IL_1e8d: Unknown result type (might be due to invalid IL or missing references) //IL_1e98: Unknown result type (might be due to invalid IL or missing references) //IL_1e9e: Unknown result type (might be due to invalid IL or missing references) //IL_1ea3: Unknown result type (might be due to invalid IL or missing references) //IL_1ea9: Unknown result type (might be due to invalid IL or missing references) //IL_1eb3: Unknown result type (might be due to invalid IL or missing references) //IL_1eb8: Unknown result type (might be due to invalid IL or missing references) //IL_1ebe: Unknown result type (might be due to invalid IL or missing references) //IL_1ec8: Unknown result type (might be due to invalid IL or missing references) //IL_1ecd: Unknown result type (might be due to invalid IL or missing references) //IL_1ed3: Unknown result type (might be due to invalid IL or missing references) //IL_1edd: Unknown result type (might be due to invalid IL or missing references) //IL_1ee2: Unknown result type (might be due to invalid IL or missing references) //IL_1ee8: Unknown result type (might be due to invalid IL or missing references) //IL_1eed: Unknown result type (might be due to invalid IL or missing references) //IL_1ef3: Unknown result type (might be due to invalid IL or missing references) //IL_1ef8: Unknown result type (might be due to invalid IL or missing references) //IL_1f04: Unknown result type (might be due to invalid IL or missing references) //IL_1d1b: Unknown result type (might be due to invalid IL or missing references) //IL_1d21: Unknown result type (might be due to invalid IL or missing references) //IL_1d26: Unknown result type (might be due to invalid IL or missing references) //IL_1d2c: Unknown result type (might be due to invalid IL or missing references) //IL_1d36: Unknown result type (might be due to invalid IL or missing references) //IL_1d3b: Unknown result type (might be due to invalid IL or missing references) //IL_1d41: Unknown result type (might be due to invalid IL or missing references) //IL_1d4b: Unknown result type (might be due to invalid IL or missing references) //IL_1d50: Unknown result type (might be due to invalid IL or missing references) //IL_1d56: Unknown result type (might be due to invalid IL or missing references) //IL_1d60: Unknown result type (might be due to invalid IL or missing references) //IL_1d65: Unknown result type (might be due to invalid IL or missing references) //IL_1d6b: Unknown result type (might be due to invalid IL or missing references) //IL_1d70: Unknown result type (might be due to invalid IL or missing references) //IL_1d76: Unknown result type (might be due to invalid IL or missing references) //IL_1d7b: Unknown result type (might be due to invalid IL or missing references) //IL_1d81: Unknown result type (might be due to invalid IL or missing references) //IL_1d86: Unknown result type (might be due to invalid IL or missing references) //IL_1d91: Unknown result type (might be due to invalid IL or missing references) //IL_1d97: Unknown result type (might be due to invalid IL or missing references) //IL_1d9c: Unknown result type (might be due to invalid IL or missing references) //IL_1da2: Unknown result type (might be due to invalid IL or missing references) //IL_1dac: Unknown result type (might be due to invalid IL or missing references) //IL_1db1: Unknown result type (might be due to invalid IL or missing references) //IL_1db7: Unknown result type (might be due to invalid IL or missing references) //IL_1dbc: Unknown result type (might be due to invalid IL or missing references) //IL_1dc2: Unknown result type (might be due to invalid IL or missing references) //IL_1dcc: Unknown result type (might be due to invalid IL or missing references) //IL_1dd1: Unknown result type (might be due to invalid IL or missing references) //IL_1dd7: Unknown result type (might be due to invalid IL or missing references) //IL_1de1: Unknown result type (might be due to invalid IL or missing references) //IL_1de6: Unknown result type (might be due to invalid IL or missing references) //IL_1dec: Unknown result type (might be due to invalid IL or missing references) //IL_1df1: Unknown result type (might be due to invalid IL or missing references) //IL_1df7: Unknown result type (might be due to invalid IL or missing references) //IL_1dfc: Unknown result type (might be due to invalid IL or missing references) //IL_1e08: Unknown result type (might be due to invalid IL or missing references) //IL_0f45: Unknown result type (might be due to invalid IL or missing references) //IL_0f4b: Unknown result type (might be due to invalid IL or missing references) //IL_0f50: Unknown result type (might be due to invalid IL or missing references) //IL_0f56: Unknown result type (might be due to invalid IL or missing references) //IL_0f5b: Unknown result type (might be due to invalid IL or missing references) //IL_0f61: Unknown result type (might be due to invalid IL or missing references) //IL_0f6b: Unknown result type (might be due to invalid IL or missing references) //IL_0f70: Unknown result type (might be due to invalid IL or missing references) //IL_0f76: Unknown result type (might be due to invalid IL or missing references) //IL_0f80: Unknown result type (might be due to invalid IL or missing references) //IL_0f86: Unknown result type (might be due to invalid IL or missing references) //IL_0f8b: Unknown result type (might be due to invalid IL or missing references) //IL_0f91: Unknown result type (might be due to invalid IL or missing references) //IL_0f96: Unknown result type (might be due to invalid IL or missing references) //IL_0f9b: Unknown result type (might be due to invalid IL or missing references) //IL_0fa1: Unknown result type (might be due to invalid IL or missing references) //IL_0fab: Unknown result type (might be due to invalid IL or missing references) //IL_0fb0: Unknown result type (might be due to invalid IL or missing references) //IL_0fbb: Unknown result type (might be due to invalid IL or missing references) //IL_0fc1: Unknown result type (might be due to invalid IL or missing references) //IL_0fc6: Unknown result type (might be due to invalid IL or missing references) //IL_0fcc: Unknown result type (might be due to invalid IL or missing references) //IL_0fd1: Unknown result type (might be due to invalid IL or missing references) //IL_0fd7: Unknown result type (might be due to invalid IL or missing references) //IL_0fe1: Unknown result type (might be due to invalid IL or missing references) //IL_0fe6: Unknown result type (might be due to invalid IL or missing references) //IL_0fec: Unknown result type (might be due to invalid IL or missing references) //IL_0ff6: Unknown result type (might be due to invalid IL or missing references) //IL_0ffc: Unknown result type (might be due to invalid IL or missing references) //IL_1001: Unknown result type (might be due to invalid IL or missing references) //IL_1007: Unknown result type (might be due to invalid IL or missing references) //IL_100c: Unknown result type (might be due to invalid IL or missing references) //IL_1011: Unknown result type (might be due to invalid IL or missing references) //IL_1017: Unknown result type (might be due to invalid IL or missing references) //IL_1021: Unknown result type (might be due to invalid IL or missing references) //IL_1026: Unknown result type (might be due to invalid IL or missing references) //IL_1032: Unknown result type (might be due to invalid IL or missing references) //IL_0e94: Unknown result type (might be due to invalid IL or missing references) //IL_0e99: Unknown result type (might be due to invalid IL or missing references) //IL_1f1f: Unknown result type (might be due to invalid IL or missing references) //IL_1f24: Unknown result type (might be due to invalid IL or missing references) //IL_1100: Unknown result type (might be due to invalid IL or missing references) //IL_1106: Unknown result type (might be due to invalid IL or missing references) //IL_110b: Unknown result type (might be due to invalid IL or missing references) //IL_1111: Unknown result type (might be due to invalid IL or missing references) //IL_1116: Unknown result type (might be due to invalid IL or missing references) //IL_111c: Unknown result type (might be due to invalid IL or missing references) //IL_1126: Unknown result type (might be due to invalid IL or missing references) //IL_112b: Unknown result type (might be due to invalid IL or missing references) //IL_1131: Unknown result type (might be due to invalid IL or missing references) //IL_113b: Unknown result type (might be due to invalid IL or missing references) //IL_1141: Unknown result type (might be due to invalid IL or missing references) //IL_1146: Unknown result type (might be due to invalid IL or missing references) //IL_114c: Unknown result type (might be due to invalid IL or missing references) //IL_1151: Unknown result type (might be due to invalid IL or missing references) //IL_1156: Unknown result type (might be due to invalid IL or missing references) //IL_115c: Unknown result type (might be due to invalid IL or missing references) //IL_1166: Unknown result type (might be due to invalid IL or missing references) //IL_116b: Unknown result type (might be due to invalid IL or missing references) //IL_1176: Unknown result type (might be due to invalid IL or missing references) //IL_117c: Unknown result type (might be due to invalid IL or missing references) //IL_1181: Unknown result type (might be due to invalid IL or missing references) //IL_1187: Unknown result type (might be due to invalid IL or missing references) //IL_118c: Unknown result type (might be due to invalid IL or missing references) //IL_1192: Unknown result type (might be due to invalid IL or missing references) //IL_119c: Unknown result type (might be due to invalid IL or missing references) //IL_11a1: Unknown result type (might be due to invalid IL or missing references) //IL_11a7: Unknown result type (might be due to invalid IL or missing references) //IL_11b1: Unknown result type (might be due to invalid IL or missing references) //IL_11b7: Unknown result type (might be due to invalid IL or missing references) //IL_11bc: Unknown result type (might be due to invalid IL or missing references) //IL_11c2: Unknown result type (might be due to invalid IL or missing references) //IL_11c7: Unknown result type (might be due to invalid IL or missing references) //IL_11cc: Unknown result type (might be due to invalid IL or missing references) //IL_11d2: Unknown result type (might be due to invalid IL or missing references) //IL_11dc: Unknown result type (might be due to invalid IL or missing references) //IL_11e1: Unknown result type (might be due to invalid IL or missing references) //IL_11ed: Unknown result type (might be due to invalid IL or missing references) //IL_104c: Unknown result type (might be due to invalid IL or missing references) //IL_1051: Unknown result type (might be due to invalid IL or missing references) //IL_0ecd: Unknown result type (might be due to invalid IL or missing references) //IL_0ed2: Unknown result type (might be due to invalid IL or missing references) //IL_0ee0: Unknown result type (might be due to invalid IL or missing references) //IL_0ee5: Unknown result type (might be due to invalid IL or missing references) //IL_0f00: Unknown result type (might be due to invalid IL or missing references) //IL_0f05: Unknown result type (might be due to invalid IL or missing references) //IL_0f0e: Unknown result type (might be due to invalid IL or missing references) //IL_0f19: Unknown result type (might be due to invalid IL or missing references) //IL_0f2a: Unknown result type (might be due to invalid IL or missing references) //IL_0f2f: Unknown result type (might be due to invalid IL or missing references) //IL_0f34: Unknown result type (might be due to invalid IL or missing references) //IL_2dc0: Unknown result type (might be due to invalid IL or missing references) //IL_2dc6: Unknown result type (might be due to invalid IL or missing references) //IL_2dcb: Unknown result type (might be due to invalid IL or missing references) //IL_2dd1: Unknown result type (might be due to invalid IL or missing references) //IL_2ddb: Unknown result type (might be due to invalid IL or missing references) //IL_2de0: Unknown result type (might be due to invalid IL or missing references) //IL_2de6: Unknown result type (might be due to invalid IL or missing references) //IL_2df0: Unknown result type (might be due to invalid IL or missing references) //IL_2df5: Unknown result type (might be due to invalid IL or missing references) //IL_2dfb: Unknown result type (might be due to invalid IL or missing references) //IL_2e05: Unknown result type (might be due to invalid IL or missing references) //IL_2e0a: Unknown result type (might be due to invalid IL or missing references) //IL_2e10: Unknown result type (might be due to invalid IL or missing references) //IL_2e15: Unknown result type (might be due to invalid IL or missing references) //IL_2e1b: Unknown result type (might be due to invalid IL or missing references) //IL_2e20: Unknown result type (might be due to invalid IL or missing references) //IL_2e26: Unknown result type (might be due to invalid IL or missing references) //IL_2e2b: Unknown result type (might be due to invalid IL or missing references) //IL_2e36: Unknown result type (might be due to invalid IL or missing references) //IL_2e3c: Unknown result type (might be due to invalid IL or missing references) //IL_2e41: Unknown result type (might be due to invalid IL or missing references) //IL_2e47: Unknown result type (might be due to invalid IL or missing references) //IL_2e51: Unknown result type (might be due to invalid IL or missing references) //IL_2e56: Unknown result type (might be due to invalid IL or missing references) //IL_2e5c: Unknown result type (might be due to invalid IL or missing references) //IL_2e66: Unknown result type (might be due to invalid IL or missing references) //IL_2e6b: Unknown result type (might be due to invalid IL or missing references) //IL_2e71: Unknown result type (might be due to invalid IL or missing references) //IL_2e7b: Unknown result type (might be due to invalid IL or missing references) //IL_2e80: Unknown result type (might be due to invalid IL or missing references) //IL_2e86: Unknown result type (might be due to invalid IL or missing references) //IL_2e8b: Unknown result type (might be due to invalid IL or missing references) //IL_2e91: Unknown result type (might be due to invalid IL or missing references) //IL_2e96: Unknown result type (might be due to invalid IL or missing references) //IL_2e9c: Unknown result type (might be due to invalid IL or missing references) //IL_2ea1: Unknown result type (might be due to invalid IL or missing references) //IL_2ead: Unknown result type (might be due to invalid IL or missing references) //IL_1f60: Unknown result type (might be due to invalid IL or missing references) //IL_1f66: Unknown result type (might be due to invalid IL or missing references) //IL_1f6b: Unknown result type (might be due to invalid IL or missing references) //IL_1f71: Unknown result type (might be due to invalid IL or missing references) //IL_1f76: Unknown result type (might be due to invalid IL or missing references) //IL_1f7c: Unknown result type (might be due to invalid IL or missing references) //IL_1f86: Unknown result type (might be due to invalid IL or missing references) //IL_1f8b: Unknown result type (might be due to invalid IL or missing references) //IL_1f91: Unknown result type (might be due to invalid IL or missing references) //IL_1f9b: Unknown result type (might be due to invalid IL or missing references) //IL_1fa1: Unknown result type (might be due to invalid IL or missing references) //IL_1fa6: Unknown result type (might be due to invalid IL or missing references) //IL_1fac: Unknown result type (might be due to invalid IL or missing references) //IL_1fb1: Unknown result type (might be due to invalid IL or missing references) //IL_1fb6: Unknown result type (might be due to invalid IL or missing references) //IL_1fc1: Unknown result type (might be due to invalid IL or missing references) //IL_1fc7: Unknown result type (might be due to invalid IL or missing references) //IL_1fcc: Unknown result type (might be due to invalid IL or missing references) //IL_1fd2: Unknown result type (might be due to invalid IL or missing references) //IL_1fd7: Unknown result type (might be due to invalid IL or missing references) //IL_1fdd: Unknown result type (might be due to invalid IL or missing references) //IL_1fe7: Unknown result type (might be due to invalid IL or missing references) //IL_1fec: Unknown result type (might be due to invalid IL or missing references) //IL_1ff2: Unknown result type (might be due to invalid IL or missing references) //IL_1ffc: Unknown result type (might be due to invalid IL or missing references) //IL_2002: Unknown result type (might be due to invalid IL or missing references) //IL_2007: Unknown result type (might be due to invalid IL or missing references) //IL_200d: Unknown result type (might be due to invalid IL or missing references) //IL_2012: Unknown result type (might be due to invalid IL or missing references) //IL_2017: Unknown result type (might be due to invalid IL or missing references) //IL_2023: Unknown result type (might be due to invalid IL or missing references) //IL_12bb: Unknown result type (might be due to invalid IL or missing references) //IL_12c1: Unknown result type (might be due to invalid IL or missing references) //IL_12c6: Unknown result type (might be due to invalid IL or missing references) //IL_12cc: Unknown result type (might be due to invalid IL or missing references) //IL_12d1: Unknown result type (might be due to invalid IL or missing references) //IL_12d7: Unknown result type (might be due to invalid IL or missing references) //IL_12e1: Unknown result type (might be due to invalid IL or missing references) //IL_12e6: Unknown result type (might be due to invalid IL or missing references) //IL_12ec: Unknown result type (might be due to invalid IL or missing references) //IL_12f6: Unknown result type (might be due to invalid IL or missing references) //IL_12fc: Unknown result type (might be due to invalid IL or missing references) //IL_1301: Unknown result type (might be due to invalid IL or missing references) //IL_1307: Unknown result type (might be due to invalid IL or missing references) //IL_130c: Unknown result type (might be due to invalid IL or missing references) //IL_1311: Unknown result type (might be due to invalid IL or missing references) //IL_1317: Unknown result type (might be due to invalid IL or missing references) //IL_1321: Unknown result type (might be due to invalid IL or missing references) //IL_1326: Unknown result type (might be due to invalid IL or missing references) //IL_1331: Unknown result type (might be due to invalid IL or missing references) //IL_1337: Unknown result type (might be due to invalid IL or missing references) //IL_133c: Unknown result type (might be due to invalid IL or missing references) //IL_1342: Unknown result type (might be due to invalid IL or missing references) //IL_1347: Unknown result type (might be due to invalid IL or missing references) //IL_134d: Unknown result type (might be due to invalid IL or missing references) //IL_1357: Unknown result type (might be due to invalid IL or missing references) //IL_135c: Unknown result type (might be due to invalid IL or missing references) //IL_1362: Unknown result type (might be due to invalid IL or missing references) //IL_136c: Unknown result type (might be due to invalid IL or missing references) //IL_1372: Unknown result type (might be due to invalid IL or missing references) //IL_1377: Unknown result type (might be due to invalid IL or missing references) //IL_137d: Unknown result type (might be due to invalid IL or missing references) //IL_1382: Unknown result type (might be due to invalid IL or missing references) //IL_1387: Unknown result type (might be due to invalid IL or missing references) //IL_138d: Unknown result type (might be due to invalid IL or missing references) //IL_1397: Unknown result type (might be due to invalid IL or missing references) //IL_139c: Unknown result type (might be due to invalid IL or missing references) //IL_13a8: Unknown result type (might be due to invalid IL or missing references) //IL_1207: Unknown result type (might be due to invalid IL or missing references) //IL_120c: Unknown result type (might be due to invalid IL or missing references) //IL_1086: Unknown result type (might be due to invalid IL or missing references) //IL_108b: Unknown result type (might be due to invalid IL or missing references) //IL_109a: Unknown result type (might be due to invalid IL or missing references) //IL_109f: Unknown result type (might be due to invalid IL or missing references) //IL_10bb: Unknown result type (might be due to invalid IL or missing references) //IL_10c0: Unknown result type (might be due to invalid IL or missing references) //IL_10c9: Unknown result type (might be due to invalid IL or missing references) //IL_10d4: Unknown result type (might be due to invalid IL or missing references) //IL_10e5: Unknown result type (might be due to invalid IL or missing references) //IL_10ea: Unknown result type (might be due to invalid IL or missing references) //IL_10ef: Unknown result type (might be due to invalid IL or missing references) //IL_2fce: Unknown result type (might be due to invalid IL or missing references) //IL_2fd4: Unknown result type (might be due to invalid IL or missing references) //IL_2fd9: Unknown result type (might be due to invalid IL or missing references) //IL_2fdf: Unknown result type (might be due to invalid IL or missing references) //IL_2fe9: Unknown result type (might be due to invalid IL or missing references) //IL_2fee: Unknown result type (might be due to invalid IL or missing references) //IL_2ff4: Unknown result type (might be due to invalid IL or missing references) //IL_2ffe: Unknown result type (might be due to invalid IL or missing references) //IL_3003: Unknown result type (might be due to invalid IL or missing references) //IL_3009: Unknown result type (might be due to invalid IL or missing references) //IL_3013: Unknown result type (might be due to invalid IL or missing references) //IL_3018: Unknown result type (might be due to invalid IL or missing references) //IL_301e: Unknown result type (might be due to invalid IL or missing references) //IL_3023: Unknown result type (might be due to invalid IL or missing references) //IL_3029: Unknown result type (might be due to invalid IL or missing references) //IL_302e: Unknown result type (might be due to invalid IL or missing references) //IL_3034: Unknown result type (might be due to invalid IL or missing references) //IL_3039: Unknown result type (might be due to invalid IL or missing references) //IL_3044: Unknown result type (might be due to invalid IL or missing references) //IL_304a: Unknown result type (might be due to invalid IL or missing references) //IL_304f: Unknown result type (might be due to invalid IL or missing references) //IL_3055: Unknown result type (might be due to invalid IL or missing references) //IL_305f: Unknown result type (might be due to invalid IL or missing references) //IL_3064: Unknown result type (might be due to invalid IL or missing references) //IL_306a: Unknown result type (might be due to invalid IL or missing references) //IL_3074: Unknown result type (might be due to invalid IL or missing references) //IL_3079: Unknown result type (might be due to invalid IL or missing references) //IL_307f: Unknown result type (might be due to invalid IL or missing references) //IL_3089: Unknown result type (might be due to invalid IL or missing references) //IL_308e: Unknown result type (might be due to invalid IL or missing references) //IL_3094: Unknown result type (might be due to invalid IL or missing references) //IL_3099: Unknown result type (might be due to invalid IL or missing references) //IL_309f: Unknown result type (might be due to invalid IL or missing references) //IL_30a4: Unknown result type (might be due to invalid IL or missing references) //IL_30b0: Unknown result type (might be due to invalid IL or missing references) //IL_2ec7: Unknown result type (might be due to invalid IL or missing references) //IL_2ecd: Unknown result type (might be due to invalid IL or missing references) //IL_2ed2: Unknown result type (might be due to invalid IL or missing references) //IL_2ed8: Unknown result type (might be due to invalid IL or missing references) //IL_2ee2: Unknown result type (might be due to invalid IL or missing references) //IL_2ee7: Unknown result type (might be due to invalid IL or missing references) //IL_2eed: Unknown result type (might be due to invalid IL or missing references) //IL_2ef7: Unknown result type (might be due to invalid IL or missing references) //IL_2efc: Unknown result type (might be due to invalid IL or missing references) //IL_2f02: Unknown result type (might be due to invalid IL or missing references) //IL_2f0c: Unknown result type (might be due to invalid IL or missing references) //IL_2f11: Unknown result type (might be due to invalid IL or missing references) //IL_2f17: Unknown result type (might be due to invalid IL or missing references) //IL_2f1c: Unknown result type (might be due to invalid IL or missing references) //IL_2f22: Unknown result type (might be due to invalid IL or missing references) //IL_2f27: Unknown result type (might be due to invalid IL or missing references) //IL_2f2d: Unknown result type (might be due to invalid IL or missing references) //IL_2f32: Unknown result type (might be due to invalid IL or missing references) //IL_2f3d: Unknown result type (might be due to invalid IL or missing references) //IL_2f43: Unknown result type (might be due to invalid IL or missing references) //IL_2f48: Unknown result type (might be due to invalid IL or missing references) //IL_2f4e: Unknown result type (might be due to invalid IL or missing references) //IL_2f58: Unknown result type (might be due to invalid IL or missing references) //IL_2f5d: Unknown result type (might be due to invalid IL or missing references) //IL_2f63: Unknown result type (might be due to invalid IL or missing references) //IL_2f68: Unknown result type (might be due to invalid IL or missing references) //IL_2f6e: Unknown result type (might be due to invalid IL or missing references) //IL_2f78: Unknown result type (might be due to invalid IL or missing references) //IL_2f7d: Unknown result type (might be due to invalid IL or missing references) //IL_2f83: Unknown result type (might be due to invalid IL or missing references) //IL_2f8d: Unknown result type (might be due to invalid IL or missing references) //IL_2f92: Unknown result type (might be due to invalid IL or missing references) //IL_2f98: Unknown result type (might be due to invalid IL or missing references) //IL_2f9d: Unknown result type (might be due to invalid IL or missing references) //IL_2fa3: Unknown result type (might be due to invalid IL or missing references) //IL_2fa8: Unknown result type (might be due to invalid IL or missing references) //IL_2fb4: Unknown result type (might be due to invalid IL or missing references) //IL_20f1: Unknown result type (might be due to invalid IL or missing references) //IL_20f7: Unknown result type (might be due to invalid IL or missing references) //IL_20fc: Unknown result type (might be due to invalid IL or missing references) //IL_2102: Unknown result type (might be due to invalid IL or missing references) //IL_2107: Unknown result type (might be due to invalid IL or missing references) //IL_210d: Unknown result type (might be due to invalid IL or missing references) //IL_2117: Unknown result type (might be due to invalid IL or missing references) //IL_211c: Unknown result type (might be due to invalid IL or missing references) //IL_2122: Unknown result type (might be due to invalid IL or missing references) //IL_212c: Unknown result type (might be due to invalid IL or missing references) //IL_2132: Unknown result type (might be due to invalid IL or missing references) //IL_2137: Unknown result type (might be due to invalid IL or missing references) //IL_213d: Unknown result type (might be due to invalid IL or missing references) //IL_2142: Unknown result type (might be due to invalid IL or missing references) //IL_2147: Unknown result type (might be due to invalid IL or missing references) //IL_214d: Unknown result type (might be due to invalid IL or missing references) //IL_2157: Unknown result type (might be due to invalid IL or missing references) //IL_215c: Unknown result type (might be due to invalid IL or missing references) //IL_2167: Unknown result type (might be due to invalid IL or missing references) //IL_216d: Unknown result type (might be due to invalid IL or missing references) //IL_2172: Unknown result type (might be due to invalid IL or missing references) //IL_2178: Unknown result type (might be due to invalid IL or missing references) //IL_217d: Unknown result type (might be due to invalid IL or missing references) //IL_2183: Unknown result type (might be due to invalid IL or missing references) //IL_218d: Unknown result type (might be due to invalid IL or missing references) //IL_2192: Unknown result type (might be due to invalid IL or missing references) //IL_2198: Unknown result type (might be due to invalid IL or missing references) //IL_21a2: Unknown result type (might be due to invalid IL or missing references) //IL_21a8: Unknown result type (might be due to invalid IL or missing references) //IL_21ad: Unknown result type (might be due to invalid IL or missing references) //IL_21b3: Unknown result type (might be due to invalid IL or missing references) //IL_21b8: Unknown result type (might be due to invalid IL or missing references) //IL_21bd: Unknown result type (might be due to invalid IL or missing references) //IL_21c3: Unknown result type (might be due to invalid IL or missing references) //IL_21cd: Unknown result type (might be due to invalid IL or missing references) //IL_21d2: Unknown result type (might be due to invalid IL or missing references) //IL_21de: Unknown result type (might be due to invalid IL or missing references) //IL_203d: Unknown result type (might be due to invalid IL or missing references) //IL_2042: Unknown result type (might be due to invalid IL or missing references) //IL_1476: Unknown result type (might be due to invalid IL or missing references) //IL_147c: Unknown result type (might be due to invalid IL or missing references) //IL_1481: Unknown result type (might be due to invalid IL or missing references) //IL_1487: Unknown result type (might be due to invalid IL or missing references) //IL_148c: Unknown result type (might be due to invalid IL or missing references) //IL_1492: Unknown result type (might be due to invalid IL or missing references) //IL_149c: Unknown result type (might be due to invalid IL or missing references) //IL_14a2: Unknown result type (might be due to invalid IL or missing references) //IL_14a7: Unknown result type (might be due to invalid IL or missing references) //IL_14ad: Unknown result type (might be due to invalid IL or missing references) //IL_14b2: Unknown result type (might be due to invalid IL or missing references) //IL_14b7: Unknown result type (might be due to invalid IL or missing references) //IL_14bd: Unknown result type (might be due to invalid IL or missing references) //IL_14c7: Unknown result type (might be due to invalid IL or missing references) //IL_14cc: Unknown result type (might be due to invalid IL or missing references) //IL_14d7: Unknown result type (might be due to invalid IL or missing references) //IL_14dd: Unknown result type (might be due to invalid IL or missing references) //IL_14e2: Unknown result type (might be due to invalid IL or missing references) //IL_14e8: Unknown result type (might be due to invalid IL or missing references) //IL_14ed: Unknown result type (might be due to invalid IL or missing references) //IL_14f3: Unknown result type (might be due to invalid IL or missing references) //IL_14fd: Unknown result type (might be due to invalid IL or missing references) //IL_1502: Unknown result type (might be due to invalid IL or missing references) //IL_1508: Unknown result type (might be due to invalid IL or missing references) //IL_1512: Unknown result type (might be due to invalid IL or missing references) //IL_1518: Unknown result type (might be due to invalid IL or missing references) //IL_151d: Unknown result type (might be due to invalid IL or missing references) //IL_1523: Unknown result type (might be due to invalid IL or missing references) //IL_1528: Unknown result type (might be due to invalid IL or missing references) //IL_152d: Unknown result type (might be due to invalid IL or missing references) //IL_1533: Unknown result type (might be due to invalid IL or missing references) //IL_153d: Unknown result type (might be due to invalid IL or missing references) //IL_1542: Unknown result type (might be due to invalid IL or missing references) //IL_154e: Unknown result type (might be due to invalid IL or missing references) //IL_13c2: Unknown result type (might be due to invalid IL or missing references) //IL_13c7: Unknown result type (might be due to invalid IL or missing references) //IL_1241: Unknown result type (might be due to invalid IL or missing references) //IL_1246: Unknown result type (might be due to invalid IL or missing references) //IL_1255: Unknown result type (might be due to invalid IL or missing references) //IL_125a: Unknown result type (might be due to invalid IL or missing references) //IL_1276: Unknown result type (might be due to invalid IL or missing references) //IL_127b: Unknown result type (might be due to invalid IL or missing references) //IL_1284: Unknown result type (might be due to invalid IL or missing references) //IL_128f: Unknown result type (might be due to invalid IL or missing references) //IL_12a0: Unknown result type (might be due to invalid IL or missing references) //IL_12a5: Unknown result type (might be due to invalid IL or missing references) //IL_12aa: Unknown result type (might be due to invalid IL or missing references) //IL_30cb: Unknown result type (might be due to invalid IL or missing references) //IL_30d0: Unknown result type (might be due to invalid IL or missing references) //IL_22ac: Unknown result type (might be due to invalid IL or missing references) //IL_22b2: Unknown result type (might be due to invalid IL or missing references) //IL_22b7: Unknown result type (might be due to invalid IL or missing references) //IL_22bd: Unknown result type (might be due to invalid IL or missing references) //IL_22c2: Unknown result type (might be due to invalid IL or missing references) //IL_22c8: Unknown result type (might be due to invalid IL or missing references) //IL_22d2: Unknown result type (might be due to invalid IL or missing references) //IL_22d7: Unknown result type (might be due to invalid IL or missing references) //IL_22dd: Unknown result type (might be due to invalid IL or missing references) //IL_22e7: Unknown result type (might be due to invalid IL or missing references) //IL_22ed: Unknown result type (might be due to invalid IL or missing references) //IL_22f2: Unknown result type (might be due to invalid IL or missing references) //IL_22f8: Unknown result type (might be due to invalid IL or missing references) //IL_22fd: Unknown result type (might be due to invalid IL or missing references) //IL_2302: Unknown result type (might be due to invalid IL or missing references) //IL_2308: Unknown result type (might be due to invalid IL or missing references) //IL_2312: Unknown result type (might be due to invalid IL or missing references) //IL_2317: Unknown result type (might be due to invalid IL or missing references) //IL_2322: Unknown result type (might be due to invalid IL or missing references) //IL_2328: Unknown result type (might be due to invalid IL or missing references) //IL_232d: Unknown result type (might be due to invalid IL or missing references) //IL_2333: Unknown result type (might be due to invalid IL or missing references) //IL_2338: Unknown result type (might be due to invalid IL or missing references) //IL_233e: Unknown result type (might be due to invalid IL or missing references) //IL_2348: Unknown result type (might be due to invalid IL or missing references) //IL_234d: Unknown result type (might be due to invalid IL or missing references) //IL_2353: Unknown result type (might be due to invalid IL or missing references) //IL_235d: Unknown result type (might be due to invalid IL or missing references) //IL_2363: Unknown result type (might be due to invalid IL or missing references) //IL_2368: Unknown result type (might be due to invalid IL or missing references) //IL_236e: Unknown result type (might be due to invalid IL or missing references) //IL_2373: Unknown result type (might be due to invalid IL or missing references) //IL_2378: Unknown result type (might be due to invalid IL or missing references) //IL_237e: Unknown result type (might be due to invalid IL or missing references) //IL_2388: Unknown result type (might be due to invalid IL or missing references) //IL_238d: Unknown result type (might be due to invalid IL or missing references) //IL_2399: Unknown result type (might be due to invalid IL or missing references) //IL_21f8: Unknown result type (might be due to invalid IL or missing references) //IL_21fd: Unknown result type (might be due to invalid IL or missing references) //IL_2077: Unknown result type (might be due to invalid IL or missing references) //IL_207c: Unknown result type (might be due to invalid IL or missing references) //IL_208b: Unknown result type (might be due to invalid IL or missing references) //IL_2090: Unknown result type (might be due to invalid IL or missing references) //IL_20ac: Unknown result type (might be due to invalid IL or missing references) //IL_20b1: Unknown result type (might be due to invalid IL or missing references) //IL_20ba: Unknown result type (might be due to invalid IL or missing references) //IL_20c5: Unknown result type (might be due to invalid IL or missing references) //IL_20d6: Unknown result type (might be due to invalid IL or missing references) //IL_20db: Unknown result type (might be due to invalid IL or missing references) //IL_20e0: Unknown result type (might be due to invalid IL or missing references) //IL_161c: Unknown result type (might be due to invalid IL or missing references) //IL_1622: Unknown result type (might be due to invalid IL or missing references) //IL_1627: Unknown result type (might be due to invalid IL or missing references) //IL_162d: Unknown result type (might be due to invalid IL or missing references) //IL_1632: Unknown result type (might be due to invalid IL or missing references) //IL_1638: Unknown result type (might be due to invalid IL or missing references) //IL_1642: Unknown result type (might be due to invalid IL or missing references) //IL_1648: Unknown result type (might be due to invalid IL or missing references) //IL_164d: Unknown result type (might be due to invalid IL or missing references) //IL_1653: Unknown result type (might be due to invalid IL or missing references) //IL_1658: Unknown result type (might be due to invalid IL or missing references) //IL_165d: Unknown result type (might be due to invalid IL or missing references) //IL_1663: Unknown result type (might be due to invalid IL or missing references) //IL_166d: Unknown result type (might be due to invalid IL or missing references) //IL_1672: Unknown result type (might be due to invalid IL or missing references) //IL_167d: Unknown result type (might be due to invalid IL or missing references) //IL_1683: Unknown result type (might be due to invalid IL or missing references) //IL_1688: Unknown result type (might be due to invalid IL or missing references) //IL_168e: Unknown result type (might be due to invalid IL or missing references) //IL_1693: Unknown result type (might be due to invalid IL or missing references) //IL_1699: Unknown result type (might be due to invalid IL or missing references) //IL_16a3: Unknown result type (might be due to invalid IL or missing references) //IL_16a8: Unknown result type (might be due to invalid IL or missing references) //IL_16ae: Unknown result type (might be due to invalid IL or missing references) //IL_16b8: Unknown result type (might be due to invalid IL or missing references) //IL_16be: Unknown result type (might be due to invalid IL or missing references) //IL_16c3: Unknown result type (might be due to invalid IL or missing references) //IL_16c9: Unknown result type (might be due to invalid IL or missing references) //IL_16ce: Unknown result type (might be due to invalid IL or missing references) //IL_16d3: Unknown result type (might be due to invalid IL or missing references) //IL_16d9: Unknown result type (might be due to invalid IL or missing references) //IL_16e3: Unknown result type (might be due to invalid IL or missing references) //IL_16e8: Unknown result type (might be due to invalid IL or missing references) //IL_16f4: Unknown result type (might be due to invalid IL or missing references) //IL_1568: Unknown result type (might be due to invalid IL or missing references) //IL_156d: Unknown result type (might be due to invalid IL or missing references) //IL_13fc: Unknown result type (might be due to invalid IL or missing references) //IL_1401: Unknown result type (might be due to invalid IL or missing references) //IL_1410: Unknown result type (might be due to invalid IL or missing references) //IL_1415: Unknown result type (might be due to invalid IL or missing references) //IL_1431: Unknown result type (might be due to invalid IL or missing references) //IL_1436: Unknown result type (might be due to invalid IL or missing references) //IL_143f: Unknown result type (might be due to invalid IL or missing references) //IL_144a: Unknown result type (might be due to invalid IL or missing references) //IL_145b: Unknown result type (might be due to invalid IL or missing references) //IL_1460: Unknown result type (might be due to invalid IL or missing references) //IL_1465: Unknown result type (might be due to invalid IL or missing references) //IL_310c: Unknown result type (might be due to invalid IL or missing references) //IL_3112: Unknown result type (might be due to invalid IL or missing references) //IL_3117: Unknown result type (might be due to invalid IL or missing references) //IL_311d: Unknown result type (might be due to invalid IL or missing references) //IL_3122: Unknown result type (might be due to invalid IL or missing references) //IL_3128: Unknown result type (might be due to invalid IL or missing references) //IL_3132: Unknown result type (might be due to invalid IL or missing references) //IL_3137: Unknown result type (might be due to invalid IL or missing references) //IL_313d: Unknown result type (might be due to invalid IL or missing references) //IL_3147: Unknown result type (might be due to invalid IL or missing references) //IL_314d: Unknown result type (might be due to invalid IL or missing references) //IL_3152: Unknown result type (might be due to invalid IL or missing references) //IL_3158: Unknown result type (might be due to invalid IL or missing references) //IL_315d: Unknown result type (might be due to invalid IL or missing references) //IL_3162: Unknown result type (might be due to invalid IL or missing references) //IL_316d: Unknown result type (might be due to invalid IL or missing references) //IL_3173: Unknown result type (might be due to invalid IL or missing references) //IL_3178: Unknown result type (might be due to invalid IL or missing references) //IL_317e: Unknown result type (might be due to invalid IL or missing references) //IL_3183: Unknown result type (might be due to invalid IL or missing references) //IL_3189: Unknown result type (might be due to invalid IL or missing references) //IL_3193: Unknown result type (might be due to invalid IL or missing references) //IL_3198: Unknown result type (might be due to invalid IL or missing references) //IL_319e: Unknown result type (might be due to invalid IL or missing references) //IL_31a8: Unknown result type (might be due to invalid IL or missing references) //IL_31ae: Unknown result type (might be due to invalid IL or missing references) //IL_31b3: Unknown result type (might be due to invalid IL or missing references) //IL_31b9: Unknown result type (might be due to invalid IL or missing references) //IL_31be: Unknown result type (might be due to invalid IL or missing references) //IL_31c3: Unknown result type (might be due to invalid IL or missing references) //IL_31cf: Unknown result type (might be due to invalid IL or missing references) //IL_2467: Unknown result type (might be due to invalid IL or missing references) //IL_246d: Unknown result type (might be due to invalid IL or missing references) //IL_2472: Unknown result type (might be due to invalid IL or missing references) //IL_2478: Unknown result type (might be due to invalid IL or missing references) //IL_247d: Unknown result type (might be due to invalid IL or missing references) //IL_2483: Unknown result type (might be due to invalid IL or missing references) //IL_248d: Unknown result type (might be due to invalid IL or missing references) //IL_2492: Unknown result type (might be due to invalid IL or missing references) //IL_2498: Unknown result type (might be due to invalid IL or missing references) //IL_24a2: Unknown result type (might be due to invalid IL or missing references) //IL_24a8: Unknown result type (might be due to invalid IL or missing references) //IL_24ad: Unknown result type (might be due to invalid IL or missing references) //IL_24b3: Unknown result type (might be due to invalid IL or missing references) //IL_24b8: Unknown result type (might be due to invalid IL or missing references) //IL_24bd: Unknown result type (might be due to invalid IL or missing references) //IL_24c3: Unknown result type (might be due to invalid IL or missing references) //IL_24cd: Unknown result type (might be due to invalid IL or missing references) //IL_24d2: Unknown result type (might be due to invalid IL or missing references) //IL_24dd: Unknown result type (might be due to invalid IL or missing references) //IL_24e3: Unknown result type (might be due to invalid IL or missing references) //IL_24e8: Unknown result type (might be due to invalid IL or missing references) //IL_24ee: Unknown result type (might be due to invalid IL or missing references) //IL_24f3: Unknown result type (might be due to invalid IL or missing references) //IL_24f9: Unknown result type (might be due to invalid IL or missing references) //IL_2503: Unknown result type (might be due to invalid IL or missing references) //IL_2508: Unknown result type (might be due to invalid IL or missing references) //IL_250e: Unknown result type (might be due to invalid IL or missing references) //IL_2518: Unknown result type (might be due to invalid IL or missing references) //IL_251e: Unknown result type (might be due to invalid IL or missing references) //IL_2523: Unknown result type (might be due to invalid IL or missing references) //IL_2529: Unknown result type (might be due to invalid IL or missing references) //IL_252e: Unknown result type (might be due to invalid IL or missing references) //IL_2533: Unknown result type (might be due to invalid IL or missing references) //IL_2539: Unknown result type (might be due to invalid IL or missing references) //IL_2543: Unknown result type (might be due to invalid IL or missing references) //IL_2548: Unknown result type (might be due to invalid IL or missing references) //IL_2554: Unknown result type (might be due to invalid IL or missing references) //IL_23b3: Unknown result type (might be due to invalid IL or missing references) //IL_23b8: Unknown result type (might be due to invalid IL or missing references) //IL_2232: Unknown result type (might be due to invalid IL or missing references) //IL_2237: Unknown result type (might be due to invalid IL or missing references) //IL_2246: Unknown result type (might be due to invalid IL or missing references) //IL_224b: Unknown result type (might be due to invalid IL or missing references) //IL_2267: Unknown result type (might be due to invalid IL or missing references) //IL_226c: Unknown result type (might be due to invalid IL or missing references) //IL_2275: Unknown result type (might be due to invalid IL or missing references) //IL_2280: Unknown result type (might be due to invalid IL or missing references) //IL_2291: Unknown result type (might be due to invalid IL or missing references) //IL_2296: Unknown result type (might be due to invalid IL or missing references) //IL_229b: Unknown result type (might be due to invalid IL or missing references) //IL_17c2: Unknown result type (might be due to invalid IL or missing references) //IL_17c8: Unknown result type (might be due to invalid IL or missing references) //IL_17cd: Unknown result type (might be due to invalid IL or missing references) //IL_17d3: Unknown result type (might be due to invalid IL or missing references) //IL_17d8: Unknown result type (might be due to invalid IL or missing references) //IL_17de: Unknown result type (might be due to invalid IL or missing references) //IL_17e8: Unknown result type (might be due to invalid IL or missing references) //IL_17ee: Unknown result type (might be due to invalid IL or missing references) //IL_17f3: Unknown result type (might be due to invalid IL or missing references) //IL_17f9: Unknown result type (might be due to invalid IL or missing references) //IL_17fe: Unknown result type (might be due to invalid IL or missing references) //IL_1803: Unknown result type (might be due to invalid IL or missing references) //IL_1809: Unknown result type (might be due to invalid IL or missing references) //IL_1813: Unknown result type (might be due to invalid IL or missing references) //IL_1818: Unknown result type (might be due to invalid IL or missing references) //IL_1823: Unknown result type (might be due to invalid IL or missing references) //IL_1829: Unknown result type (might be due to invalid IL or missing references) //IL_182e: Unknown result type (might be due to invalid IL or missing references) //IL_1834: Unknown result type (might be due to invalid IL or missing references) //IL_1839: Unknown result type (might be due to invalid IL or missing references) //IL_183f: Unknown result type (might be due to invalid IL or missing references) //IL_1849: Unknown result type (might be due to invalid IL or missing references) //IL_184e: Unknown result type (might be due to invalid IL or missing references) //IL_1854: Unknown result type (might be due to invalid IL or missing references) //IL_185e: Unknown result type (might be due to invalid IL or missing references) //IL_1864: Unknown result type (might be due to invalid IL or missing references) //IL_1869: Unknown result type (might be due to invalid IL or missing references) //IL_186f: Unknown result type (might be due to invalid IL or missing references) //IL_1874: Unknown result type (might be due to invalid IL or missing references) //IL_1879: Unknown result type (might be due to invalid IL or missing references) //IL_187f: Unknown result type (might be due to invalid IL or missing references) //IL_1889: Unknown result type (might be due to invalid IL or missing references) //IL_188e: Unknown result type (might be due to invalid IL or missing references) //IL_189a: Unknown result type (might be due to invalid IL or missing references) //IL_170e: Unknown result type (might be due to invalid IL or missing references) //IL_1713: Unknown result type (might be due to invalid IL or missing references) //IL_15a2: Unknown result type (might be due to invalid IL or missing references) //IL_15a7: Unknown result type (might be due to invalid IL or missing references) //IL_15b6: Unknown result type (might be due to invalid IL or missing references) //IL_15bb: Unknown result type (might be due to invalid IL or missing references) //IL_15d7: Unknown result type (might be due to invalid IL or missing references) //IL_15dc: Unknown result type (might be due to invalid IL or missing references) //IL_15e5: Unknown result type (might be due to invalid IL or missing references) //IL_15f0: Unknown result type (might be due to invalid IL or missing references) //IL_1601: Unknown result type (might be due to invalid IL or missing references) //IL_1606: Unknown result type (might be due to invalid IL or missing references) //IL_160b: Unknown result type (might be due to invalid IL or missing references) //IL_329d: Unknown result type (might be due to invalid IL or missing references) //IL_32a3: Unknown result type (might be due to invalid IL or missing references) //IL_32a8: Unknown result type (might be due to invalid IL or missing references) //IL_32ae: Unknown result type (might be due to invalid IL or missing references) //IL_32b3: Unknown result type (might be due to invalid IL or missing references) //IL_32b9: Unknown result type (might be due to invalid IL or missing references) //IL_32c3: Unknown result type (might be due to invalid IL or missing references) //IL_32c8: Unknown result type (might be due to invalid IL or missing references) //IL_32ce: Unknown result type (might be due to invalid IL or missing references) //IL_32d8: Unknown result type (might be due to invalid IL or missing references) //IL_32de: Unknown result type (might be due to invalid IL or missing references) //IL_32e3: Unknown result type (might be due to invalid IL or missing references) //IL_32e9: Unknown result type (might be due to invalid IL or missing references) //IL_32ee: Unknown result type (might be due to invalid IL or missing references) //IL_32f3: Unknown result type (might be due to invalid IL or missing references) //IL_32f9: Unknown result type (might be due to invalid IL or missing references) //IL_3303: Unknown result type (might be due to invalid IL or missing references) //IL_3308: Unknown result type (might be due to invalid IL or missing references) //IL_3313: Unknown result type (might be due to invalid IL or missing references) //IL_3319: Unknown result type (might be due to invalid IL or missing references) //IL_331e: Unknown result type (might be due to invalid IL or missing references) //IL_3324: Unknown result type (might be due to invalid IL or missing references) //IL_3329: Unknown result type (might be due to invalid IL or missing references) //IL_332f: Unknown result type (might be due to invalid IL or missing references) //IL_3339: Unknown result type (might be due to invalid IL or missing references) //IL_333e: Unknown result type (might be due to invalid IL or missing references) //IL_3344: Unknown result type (might be due to invalid IL or missing references) //IL_334e: Unknown result type (might be due to invalid IL or missing references) //IL_3354: Unknown result type (might be due to invalid IL or missing references) //IL_3359: Unknown result type (might be due to invalid IL or missing references) //IL_335f: Unknown result type (might be due to invalid IL or missing references) //IL_3364: Unknown result type (might be due to invalid IL or missing references) //IL_3369: Unknown result type (might be due to invalid IL or missing references) //IL_336f: Unknown result type (might be due to invalid IL or missing references) //IL_3379: Unknown result type (might be due to invalid IL or missing references) //IL_337e: Unknown result type (might be due to invalid IL or missing references) //IL_338a: Unknown result type (might be due to invalid IL or missing references) //IL_31e9: Unknown result type (might be due to invalid IL or missing references) //IL_31ee: Unknown result type (might be due to invalid IL or missing references) //IL_2622: Unknown result type (might be due to invalid IL or missing references) //IL_2628: Unknown result type (might be due to invalid IL or missing references) //IL_262d: Unknown result type (might be due to invalid IL or missing references) //IL_2633: Unknown result type (might be due to invalid IL or missing references) //IL_2638: Unknown result type (might be due to invalid IL or missing references) //IL_263e: Unknown result type (might be due to invalid IL or missing references) //IL_2648: Unknown result type (might be due to invalid IL or missing references) //IL_264e: Unknown result type (might be due to invalid IL or missing references) //IL_2653: Unknown result type (might be due to invalid IL or missing references) //IL_2659: Unknown result type (might be due to invalid IL or missing references) //IL_265e: Unknown result type (might be due to invalid IL or missing references) //IL_2663: Unknown result type (might be due to invalid IL or missing references) //IL_2669: Unknown result type (might be due to invalid IL or missing references) //IL_2673: Unknown result type (might be due to invalid IL or missing references) //IL_2678: Unknown result type (might be due to invalid IL or missing references) //IL_2683: Unknown result type (might be due to invalid IL or missing references) //IL_2689: Unknown result type (might be due to invalid IL or missing references) //IL_268e: Unknown result type (might be due to invalid IL or missing references) //IL_2694: Unknown result type (might be due to invalid IL or missing references) //IL_2699: Unknown result type (might be due to invalid IL or missing references) //IL_269f: Unknown result type (might be due to invalid IL or missing references) //IL_26a9: Unknown result type (might be due to invalid IL or missing references) //IL_26ae: Unknown result type (might be due to invalid IL or missing references) //IL_26b4: Unknown result type (might be due to invalid IL or missing references) //IL_26be: Unknown result type (might be due to invalid IL or missing references) //IL_26c4: Unknown result type (might be due to invalid IL or missing references) //IL_26c9: Unknown result type (might be due to invalid IL or missing references) //IL_26cf: Unknown result type (might be due to invalid IL or missing references) //IL_26d4: Unknown result type (might be due to invalid IL or missing references) //IL_26d9: Unknown result type (might be due to invalid IL or missing references) //IL_26df: Unknown result type (might be due to invalid IL or missing references) //IL_26e9: Unknown result type (might be due to invalid IL or missing references) //IL_26ee: Unknown result type (might be due to invalid IL or missing references) //IL_26fa: Unknown result type (might be due to invalid IL or missing references) //IL_256e: Unknown result type (might be due to invalid IL or missing references) //IL_2573: Unknown result type (might be due to invalid IL or missing references) //IL_23ed: Unknown result type (might be due to invalid IL or missing references) //IL_23f2: Unknown result type (might be due to invalid IL or missing references) //IL_2401: Unknown result type (might be due to invalid IL or missing references) //IL_2406: Unknown result type (might be due to invalid IL or missing references) //IL_2422: Unknown result type (might be due to invalid IL or missing references) //IL_2427: Unknown result type (might be due to invalid IL or missing references) //IL_2430: Unknown result type (might be due to invalid IL or missing references) //IL_243b: Unknown result type (might be due to invalid IL or missing references) //IL_244c: Unknown result type (might be due to invalid IL or missing references) //IL_2451: Unknown result type (might be due to invalid IL or missing references) //IL_2456: Unknown result type (might be due to invalid IL or missing references) //IL_1968: Unknown result type (might be due to invalid IL or missing references) //IL_196e: Unknown result type (might be due to invalid IL or missing references) //IL_1973: Unknown result type (might be due to invalid IL or missing references) //IL_1979: Unknown result type (might be due to invalid IL or missing references) //IL_197e: Unknown result type (might be due to invalid IL or missing references) //IL_1984: Unknown result type (might be due to invalid IL or missing references) //IL_198e: Unknown result type (might be due to invalid IL or missing references) //IL_1994: Unknown result type (might be due to invalid IL or missing references) //IL_1999: Unknown result type (might be due to invalid IL or missing references) //IL_199f: Unknown result type (might be due to invalid IL or missing references) //IL_19a4: Unknown result type (might be due to invalid IL or missing references) //IL_19a9: Unknown result type (might be due to invalid IL or missing references) //IL_19af: Unknown result type (might be due to invalid IL or missing references) //IL_19b9: Unknown result type (might be due to invalid IL or missing references) //IL_19be: Unknown result type (might be due to invalid IL or missing references) //IL_19c9: Unknown result type (might be due to invalid IL or missing references) //IL_19cf: Unknown result type (might be due to invalid IL or missing references) //IL_19d4: Unknown result type (might be due to invalid IL or missing references) //IL_19da: Unknown result type (might be due to invalid IL or missing references) //IL_19df: Unknown result type (might be due to invalid IL or missing references) //IL_19e5: Unknown result type (might be due to invalid IL or missing references) //IL_19ef: Unknown result type (might be due to invalid IL or missing references) //IL_19f4: Unknown result type (might be due to invalid IL or missing references) //IL_19fa: Unknown result type (might be due to invalid IL or missing references) //IL_1a04: Unknown result type (might be due to invalid IL or missing references) //IL_1a0a: Unknown result type (might be due to invalid IL or missing references) //IL_1a0f: Unknown result type (might be due to invalid IL or missing references) //IL_1a15: Unknown result type (might be due to invalid IL or missing references) //IL_1a1a: Unknown result type (might be due to invalid IL or missing references) //IL_1a1f: Unknown result type (might be due to invalid IL or missing references) //IL_1a25: Unknown result type (might be due to invalid IL or missing references) //IL_1a2f: Unknown result type (might be due to invalid IL or missing references) //IL_1a34: Unknown result type (might be due to invalid IL or missing references) //IL_1a40: Unknown result type (might be due to invalid IL or missing references) //IL_18b4: Unknown result type (might be due to invalid IL or missing references) //IL_18b9: Unknown result type (might be due to invalid IL or missing references) //IL_1748: Unknown result type (might be due to invalid IL or missing references) //IL_174d: Unknown result type (might be due to invalid IL or missing references) //IL_175c: Unknown result type (might be due to invalid IL or missing references) //IL_1761: Unknown result type (might be due to invalid IL or missing references) //IL_177d: Unknown result type (might be due to invalid IL or missing references) //IL_1782: Unknown result type (might be due to invalid IL or missing references) //IL_178b: Unknown result type (might be due to invalid IL or missing references) //IL_1796: Unknown result type (might be due to invalid IL or missing references) //IL_17a7: Unknown result type (might be due to invalid IL or missing references) //IL_17ac: Unknown result type (might be due to invalid IL or missing references) //IL_17b1: Unknown result type (might be due to invalid IL or missing references) //IL_3458: Unknown result type (might be due to invalid IL or missing references) //IL_345e: Unknown result type (might be due to invalid IL or missing references) //IL_3463: Unknown result type (might be due to invalid IL or missing references) //IL_3469: Unknown result type (might be due to invalid IL or missing references) //IL_346e: Unknown result type (might be due to invalid IL or missing references) //IL_3474: Unknown result type (might be due to invalid IL or missing references) //IL_347e: Unknown result type (might be due to invalid IL or missing references) //IL_3483: Unknown result type (might be due to invalid IL or missing references) //IL_3489: Unknown result type (might be due to invalid IL or missing references) //IL_3493: Unknown result type (might be due to invalid IL or missing references) //IL_3499: Unknown result type (might be due to invalid IL or missing references) //IL_349e: Unknown result type (might be due to invalid IL or missing references) //IL_34a4: Unknown result type (might be due to invalid IL or missing references) //IL_34a9: Unknown result type (might be due to invalid IL or missing references) //IL_34ae: Unknown result type (might be due to invalid IL or missing references) //IL_34b4: Unknown result type (might be due to invalid IL or missing references) //IL_34be: Unknown result type (might be due to invalid IL or missing references) //IL_34c3: Unknown result type (might be due to invalid IL or missing references) //IL_34ce: Unknown result type (might be due to invalid IL or missing references) //IL_34d4: Unknown result type (might be due to invalid IL or missing references) //IL_34d9: Unknown result type (might be due to invalid IL or missing references) //IL_34df: Unknown result type (might be due to invalid IL or missing references) //IL_34e4: Unknown result type (might be due to invalid IL or missing references) //IL_34ea: Unknown result type (might be due to invalid IL or missing references) //IL_34f4: Unknown result type (might be due to invalid IL or missing references) //IL_34f9: Unknown result type (might be due to invalid IL or missing references) //IL_34ff: Unknown result type (might be due to invalid IL or missing references) //IL_3509: Unknown result type (might be due to invalid IL or missing references) //IL_350f: Unknown result type (might be due to invalid IL or missing references) //IL_3514: Unknown result type (might be due to invalid IL or missing references) //IL_351a: Unknown result type (might be due to invalid IL or missing references) //IL_351f: Unknown result type (might be due to invalid IL or missing references) //IL_3524: Unknown result type (might be due to invalid IL or missing references) //IL_352a: Unknown result type (might be due to invalid IL or missing references) //IL_3534: Unknown result type (might be due to invalid IL or missing references) //IL_3539: Unknown result type (might be due to invalid IL or missing references) //IL_3545: Unknown result type (might be due to invalid IL or missing references) //IL_33a4: Unknown result type (might be due to invalid IL or missing references) //IL_33a9: Unknown result type (might be due to invalid IL or missing references) //IL_3223: Unknown result type (might be due to invalid IL or missing references) //IL_3228: Unknown result type (might be due to invalid IL or missing references) //IL_3237: Unknown result type (might be due to invalid IL or missing references) //IL_323c: Unknown result type (might be due to invalid IL or missing references) //IL_3258: Unknown result type (might be due to invalid IL or missing references) //IL_325d: Unknown result type (might be due to invalid IL or missing references) //IL_3266: Unknown result type (might be due to invalid IL or missing references) //IL_3271: Unknown result type (might be due to invalid IL or missing references) //IL_3282: Unknown result type (might be due to invalid IL or missing references) //IL_3287: Unknown result type (might be due to invalid IL or missing references) //IL_328c: Unknown result type (might be due to invalid IL or missing references) //IL_27c8: Unknown result type (might be due to invalid IL or missing references) //IL_27ce: Unknown result type (might be due to invalid IL or missing references) //IL_27d3: Unknown result type (might be due to invalid IL or missing references) //IL_27d9: Unknown result type (might be due to invalid IL or missing references) //IL_27de: Unknown result type (might be due to invalid IL or missing references) //IL_27e4: Unknown result type (might be due to invalid IL or missing references) //IL_27ee: Unknown result type (might be due to invalid IL or missing references) //IL_27f4: Unknown result type (might be due to invalid IL or missing references) //IL_27f9: Unknown result type (might be due to invalid IL or missing references) //IL_27ff: Unknown result type (might be due to invalid IL or missing references) //IL_2804: Unknown result type (might be due to invalid IL or missing references) //IL_2809: Unknown result type (might be due to invalid IL or missing references) //IL_280f: Unknown result type (might be due to invalid IL or missing references) //IL_2819: Unknown result type (might be due to invalid IL or missing references) //IL_281e: Unknown result type (might be due to invalid IL or missing references) //IL_2829: Unknown result type (might be due to invalid IL or missing references) //IL_282f: Unknown result type (might be due to invalid IL or missing references) //IL_2834: Unknown result type (might be due to invalid IL or missing references) //IL_283a: Unknown result type (might be due to invalid IL or missing references) //IL_283f: Unknown result type (might be due to invalid IL or missing references) //IL_2845: Unknown result type (might be due to invalid IL or missing references) //IL_284f: Unknown result type (might be due to invalid IL or missing references) //IL_2854: Unknown result type (might be due to invalid IL or missing references) //IL_285a: Unknown result type (might be due to invalid IL or missing references) //IL_2864: Unknown result type (might be due to invalid IL or missing references) //IL_286a: Unknown result type (might be due to invalid IL or missing references) //IL_286f: Unknown result type (might be due to invalid IL or missing references) //IL_2875: Unknown result type (might be due to invalid IL or missing references) //IL_287a: Unknown result type (might be due to invalid IL or missing references) //IL_287f: Unknown result type (might be due to invalid IL or missing references) //IL_2885: Unknown result type (might be due to invalid IL or missing references) //IL_288f: Unknown result type (might be due to invalid IL or missing references) //IL_2894: Unknown result type (might be due to invalid IL or missing references) //IL_28a0: Unknown result type (might be due to invalid IL or missing references) //IL_2714: Unknown result type (might be due to invalid IL or missing references) //IL_2719: Unknown result type (might be due to invalid IL or missing references) //IL_25a8: Unknown result type (might be due to invalid IL or missing references) //IL_25ad: Unknown result type (might be due to invalid IL or missing references) //IL_25bc: Unknown result type (might be due to invalid IL or missing references) //IL_25c1: Unknown result type (might be due to invalid IL or missing references) //IL_25dd: Unknown result type (might be due to invalid IL or missing references) //IL_25e2: Unknown result type (might be due to invalid IL or missing references) //IL_25eb: Unknown result type (might be due to invalid IL or missing references) //IL_25f6: Unknown result type (might be due to invalid IL or missing references) //IL_2607: Unknown result type (might be due to invalid IL or missing references) //IL_260c: Unknown result type (might be due to invalid IL or missing references) //IL_2611: Unknown result type (might be due to invalid IL or missing references) //IL_1b10: Unknown result type (might be due to invalid IL or missing references) //IL_1b15: Unknown result type (might be due to invalid IL or missing references) //IL_1b24: Unknown result type (might be due to invalid IL or missing references) //IL_1b29: Unknown result type (might be due to invalid IL or missing references) //IL_1b40: Unknown result type (might be due to invalid IL or missing references) //IL_1b45: Unknown result type (might be due to invalid IL or missing references) //IL_1b61: Unknown result type (might be due to invalid IL or missing references) //IL_1b66: Unknown result type (might be due to invalid IL or missing references) //IL_1b75: Unknown result type (might be due to invalid IL or missing references) //IL_1b7a: Unknown result type (might be due to invalid IL or missing references) //IL_1b8b: Unknown result type (might be due to invalid IL or missing references) //IL_1b96: Unknown result type (might be due to invalid IL or missing references) //IL_1b9b: Unknown result type (might be due to invalid IL or missing references) //IL_1bc4: Unknown result type (might be due to invalid IL or missing references) //IL_1bc9: Unknown result type (might be due to invalid IL or missing references) //IL_1be0: Unknown result type (might be due to invalid IL or missing references) //IL_1be5: Unknown result type (might be due to invalid IL or missing references) //IL_1bea: Unknown result type (might be due to invalid IL or missing references) //IL_1a5a: Unknown result type (might be due to invalid IL or missing references) //IL_1a5f: Unknown result type (might be due to invalid IL or missing references) //IL_18ee: Unknown result type (might be due to invalid IL or missing references) //IL_18f3: Unknown result type (might be due to invalid IL or missing references) //IL_1902: Unknown result type (might be due to invalid IL or missing references) //IL_1907: Unknown result type (might be due to invalid IL or missing references) //IL_1923: Unknown result type (might be due to invalid IL or missing references) //IL_1928: Unknown result type (might be due to invalid IL or missing references) //IL_1931: Unknown result type (might be due to invalid IL or missing references) //IL_193c: Unknown result type (might be due to invalid IL or missing references) //IL_194d: Unknown result type (might be due to invalid IL or missing references) //IL_1952: Unknown result type (might be due to invalid IL or missing references) //IL_1957: Unknown result type (might be due to invalid IL or missing references) //IL_3613: Unknown result type (might be due to invalid IL or missing references) //IL_3619: Unknown result type (might be due to invalid IL or missing references) //IL_361e: Unknown result type (might be due to invalid IL or missing references) //IL_3624: Unknown result type (might be due to invalid IL or missing references) //IL_3629: Unknown result type (might be due to invalid IL or missing references) //IL_362f: Unknown result type (might be due to invalid IL or missing references) //IL_3639: Unknown result type (might be due to invalid IL or missing references) //IL_363e: Unknown result type (might be due to invalid IL or missing references) //IL_3644: Unknown result type (might be due to invalid IL or missing references) //IL_364e: Unknown result type (might be due to invalid IL or missing references) //IL_3654: Unknown result type (might be due to invalid IL or missing references) //IL_3659: Unknown result type (might be due to invalid IL or missing references) //IL_365f: Unknown result type (might be due to invalid IL or missing references) //IL_3664: Unknown result type (might be due to invalid IL or missing references) //IL_3669: Unknown result type (might be due to invalid IL or missing references) //IL_366f: Unknown result type (might be due to invalid IL or missing references) //IL_3679: Unknown result type (might be due to invalid IL or missing references) //IL_367e: Unknown result type (might be due to invalid IL or missing references) //IL_3689: Unknown result type (might be due to invalid IL or missing references) //IL_368f: Unknown result type (might be due to invalid IL or missing references) //IL_3694: Unknown result type (might be due to invalid IL or missing references) //IL_369a: Unknown result type (might be due to invalid IL or missing references) //IL_369f: Unknown result type (might be due to invalid IL or missing references) //IL_36a5: Unknown result type (might be due to invalid IL or missing references) //IL_36af: Unknown result type (might be due to invalid IL or missing references) //IL_36b4: Unknown result type (might be due to invalid IL or missing references) //IL_36ba: Unknown result type (might be due to invalid IL or missing references) //IL_36c4: Unknown result type (might be due to invalid IL or missing references) //IL_36ca: Unknown result type (might be due to invalid IL or missing references) //IL_36cf: Unknown result type (might be due to invalid IL or missing references) //IL_36d5: Unknown result type (might be due to invalid IL or missing references) //IL_36da: Unknown result type (might be due to invalid IL or missing references) //IL_36df: Unknown result type (might be due to invalid IL or missing references) //IL_36e5: Unknown result type (might be due to invalid IL or missing references) //IL_36ef: Unknown result type (might be due to invalid IL or missing references) //IL_36f4: Unknown result type (might be due to invalid IL or missing references) //IL_3700: Unknown result type (might be due to invalid IL or missing references) //IL_355f: Unknown result type (might be due to invalid IL or missing references) //IL_3564: Unknown result type (might be due to invalid IL or missing references) //IL_33de: Unknown result type (might be due to invalid IL or missing references) //IL_33e3: Unknown result type (might be due to invalid IL or missing references) //IL_33f2: Unknown result type (might be due to invalid IL or missing references) //IL_33f7: Unknown result type (might be due to invalid IL or missing references) //IL_3413: Unknown result type (might be due to invalid IL or missing references) //IL_3418: Unknown result type (might be due to invalid IL or missing references) //IL_3421: Unknown result type (might be due to invalid IL or missing references) //IL_342c: Unknown result type (might be due to invalid IL or missing references) //IL_343d: Unknown result type (might be due to invalid IL or missing references) //IL_3442: Unknown result type (might be due to invalid IL or missing references) //IL_3447: Unknown result type (might be due to invalid IL or missing references) //IL_296e: Unknown result type (might be due to invalid IL or missing references) //IL_2974: Unknown result type (might be due to invalid IL or missing references) //IL_2979: Unknown result type (might be due to invalid IL or missing references) //IL_297f: Unknown result type (might be due to invalid IL or missing references) //IL_2984: Unknown result type (might be due to invalid IL or missing references) //IL_298a: Unknown result type (might be due to invalid IL or missing references) //IL_2994: Unknown result type (might be due to invalid IL or missing references) //IL_299a: Unknown result type (might be due to invalid IL or missing references) //IL_299f: Unknown result type (might be due to invalid IL or missing references) //IL_29a5: Unknown result type (might be due to invalid IL or missing references) //IL_29aa: Unknown result type (might be due to invalid IL or missing references) //IL_29af: Unknown result type (might be due to invalid IL or missing references) //IL_29b5: Unknown result type (might be due to invalid IL or missing references) //IL_29bf: Unknown result type (might be due to invalid IL or missing references) //IL_29c4: Unknown result type (might be due to invalid IL or missing references) //IL_29cf: Unknown result type (might be due to invalid IL or missing references) //IL_29d5: Unknown result type (might be due to invalid IL or missing references) //IL_29da: Unknown result type (might be due to invalid IL or missing references) //IL_29e0: Unknown result type (might be due to invalid IL or missing references) //IL_29e5: Unknown result type (might be due to invalid IL or missing references) //IL_29eb: Unknown result type (might be due to invalid IL or missing references) //IL_29f5: Unknown result type (might be due to invalid IL or missing references) //IL_29fa: Unknown result type (might be due to invalid IL or missing references) //IL_2a00: Unknown result type (might be due to invalid IL or missing references) //IL_2a0a: Unknown result type (might be due to invalid IL or missing references) //IL_2a10: Unknown result type (might be due to invalid IL or missing references) //IL_2a15: Unknown result type (might be due to invalid IL or missing references) //IL_2a1b: Unknown result type (might be due to invalid IL or missing references) //IL_2a20: Unknown result type (might be due to invalid IL or missing references) //IL_2a25: Unknown result type (might be due to invalid IL or missing references) //IL_2a2b: Unknown result type (might be due to invalid IL or missing references) //IL_2a35: Unknown result type (might be due to invalid IL or missing references) //IL_2a3a: Unknown result type (might be due to invalid IL or missing references) //IL_2a46: Unknown result type (might be due to invalid IL or missing references) //IL_28ba: Unknown result type (might be due to invalid IL or missing references) //IL_28bf: Unknown result type (might be due to invalid IL or missing references) //IL_274e: Unknown result type (might be due to invalid IL or missing references) //IL_2753: Unknown result type (might be due to invalid IL or missing references) //IL_2762: Unknown result type (might be due to invalid IL or missing references) //IL_2767: Unknown result type (might be due to invalid IL or missing references) //IL_2783: Unknown result type (might be due to invalid IL or missing references) //IL_2788: Unknown result type (might be due to invalid IL or missing references) //IL_2791: Unknown result type (might be due to invalid IL or missing references) //IL_279c: Unknown result type (might be due to invalid IL or missing references) //IL_27ad: Unknown result type (might be due to invalid IL or missing references) //IL_27b2: Unknown result type (might be due to invalid IL or missing references) //IL_27b7: Unknown result type (might be due to invalid IL or missing references) //IL_1a94: Unknown result type (might be due to invalid IL or missing references) //IL_1a99: Unknown result type (might be due to invalid IL or missing references) //IL_1aa8: Unknown result type (might be due to invalid IL or missing references) //IL_1aad: Unknown result type (might be due to invalid IL or missing references) //IL_1ac9: Unknown result type (might be due to invalid IL or missing references) //IL_1ace: Unknown result type (might be due to invalid IL or missing references) //IL_1ad7: Unknown result type (might be due to invalid IL or missing references) //IL_1ae2: Unknown result type (might be due to invalid IL or missing references) //IL_1af3: Unknown result type (might be due to invalid IL or missing references) //IL_1af8: Unknown result type (might be due to invalid IL or missing references) //IL_1afd: Unknown result type (might be due to invalid IL or missing references) //IL_37ce: Unknown result type (might be due to invalid IL or missing references) //IL_37d4: Unknown result type (might be due to invalid IL or missing references) //IL_37d9: Unknown result type (might be due to invalid IL or missing references) //IL_37df: Unknown result type (might be due to invalid IL or missing references) //IL_37e4: Unknown result type (might be due to invalid IL or missing references) //IL_37ea: Unknown result type (might be due to invalid IL or missing references) //IL_37f4: Unknown result type (might be due to invalid IL or missing references) //IL_37fa: Unknown result type (might be due to invalid IL or missing references) //IL_37ff: Unknown result type (might be due to invalid IL or missing references) //IL_3805: Unknown result type (might be due to invalid IL or missing references) //IL_380a: Unknown result type (might be due to invalid IL or missing references) //IL_380f: Unknown result type (might be due to invalid IL or missing references) //IL_3815: Unknown result type (might be due to invalid IL or missing references) //IL_381f: Unknown result type (might be due to invalid IL or missing references) //IL_3824: Unknown result type (might be due to invalid IL or missing references) //IL_382f: Unknown result type (might be due to invalid IL or missing references) //IL_3835: Unknown result type (might be due to invalid IL or missing references) //IL_383a: Unknown result type (might be due to invalid IL or missing references) //IL_3840: Unknown result type (might be due to invalid IL or missing references) //IL_3845: Unknown result type (might be due to invalid IL or missing references) //IL_384b: Unknown result type (might be due to invalid IL or missing references) //IL_3855: Unknown result type (might be due to invalid IL or missing references) //IL_385a: Unknown result type (might be due to invalid IL or missing references) //IL_3860: Unknown result type (might be due to invalid IL or missing references) //IL_386a: Unknown result type (might be due to invalid IL or missing references) //IL_3870: Unknown result type (might be due to invalid IL or missing references) //IL_3875: Unknown result type (might be due to invalid IL or missing references) //IL_387b: Unknown result type (might be due to invalid IL or missing references) //IL_3880: Unknown result type (might be due to invalid IL or missing references) //IL_3885: Unknown result type (might be due to invalid IL or missing references) //IL_388b: Unknown result type (might be due to invalid IL or missing references) //IL_3895: Unknown result type (might be due to invalid IL or missing references) //IL_389a: Unknown result type (might be due to invalid IL or missing references) //IL_38a6: Unknown result type (might be due to invalid IL or missing references) //IL_371a: Unknown result type (might be due to invalid IL or missing references) //IL_371f: Unknown result type (might be due to invalid IL or missing references) //IL_3599: Unknown result type (might be due to invalid IL or missing references) //IL_359e: Unknown result type (might be due to invalid IL or missing references) //IL_35ad: Unknown result type (might be due to invalid IL or missing references) //IL_35b2: Unknown result type (might be due to invalid IL or missing references) //IL_35ce: Unknown result type (might be due to invalid IL or missing references) //IL_35d3: Unknown result type (might be due to invalid IL or missing references) //IL_35dc: Unknown result type (might be due to invalid IL or missing references) //IL_35e7: Unknown result type (might be due to invalid IL or missing references) //IL_35f8: Unknown result type (might be due to invalid IL or missing references) //IL_35fd: Unknown result type (might be due to invalid IL or missing references) //IL_3602: Unknown result type (might be due to invalid IL or missing references) //IL_2b14: Unknown result type (might be due to invalid IL or missing references) //IL_2b1a: Unknown result type (might be due to invalid IL or missing references) //IL_2b1f: Unknown result type (might be due to invalid IL or missing references) //IL_2b25: Unknown result type (might be due to invalid IL or missing references) //IL_2b2a: Unknown result type (might be due to invalid IL or missing references) //IL_2b30: Unknown result type (might be due to invalid IL or missing references) //IL_2b3a: Unknown result type (might be due to invalid IL or missing references) //IL_2b40: Unknown result type (might be due to invalid IL or missing references) //IL_2b45: Unknown result type (might be due to invalid IL or missing references) //IL_2b4b: Unknown result type (might be due to invalid IL or missing references) //IL_2b50: Unknown result type (might be due to invalid IL or missing references) //IL_2b55: Unknown result type (might be due to invalid IL or missing references) //IL_2b5b: Unknown result type (might be due to invalid IL or missing references) //IL_2b65: Unknown result type (might be due to invalid IL or missing references) //IL_2b6a: Unknown result type (might be due to invalid IL or missing references) //IL_2b75: Unknown result type (might be due to invalid IL or missing references) //IL_2b7b: Unknown result type (might be due to invalid IL or missing references) //IL_2b80: Unknown result type (might be due to invalid IL or missing references) //IL_2b86: Unknown result type (might be due to invalid IL or missing references) //IL_2b8b: Unknown result type (might be due to invalid IL or missing references) //IL_2b91: Unknown result type (might be due to invalid IL or missing references) //IL_2b9b: Unknown result type (might be due to invalid IL or missing references) //IL_2ba0: Unknown result type (might be due to invalid IL or missing references) //IL_2ba6: Unknown result type (might be due to invalid IL or missing references) //IL_2bb0: Unknown result type (might be due to invalid IL or missing references) //IL_2bb6: Unknown result type (might be due to invalid IL or missing references) //IL_2bbb: Unknown result type (might be due to invalid IL or missing references) //IL_2bc1: Unknown result type (might be due to invalid IL or missing references) //IL_2bc6: Unknown result type (might be due to invalid IL or missing references) //IL_2bcb: Unknown result type (might be due to invalid IL or missing references) //IL_2bd1: Unknown result type (might be due to invalid IL or missing references) //IL_2bdb: Unknown result type (might be due to invalid IL or missing references) //IL_2be0: Unknown result type (might be due to invalid IL or missing references) //IL_2bec: Unknown result type (might be due to invalid IL or missing references) //IL_2a60: Unknown result type (might be due to invalid IL or missing references) //IL_2a65: Unknown result type (might be due to invalid IL or missing references) //IL_28f4: Unknown result type (might be due to invalid IL or missing references) //IL_28f9: Unknown result type (might be due to invalid IL or missing references) //IL_2908: Unknown result type (might be due to invalid IL or missing references) //IL_290d: Unknown result type (might be due to invalid IL or missing references) //IL_2929: Unknown result type (might be due to invalid IL or missing references) //IL_292e: Unknown result type (might be due to invalid IL or missing references) //IL_2937: Unknown result type (might be due to invalid IL or missing references) //IL_2942: Unknown result type (might be due to invalid IL or missing references) //IL_2953: Unknown result type (might be due to invalid IL or missing references) //IL_2958: Unknown result type (might be due to invalid IL or missing references) //IL_295d: Unknown result type (might be due to invalid IL or missing references) //IL_3974: Unknown result type (might be due to invalid IL or missing references) //IL_397a: Unknown result type (might be due to invalid IL or missing references) //IL_397f: Unknown result type (might be due to invalid IL or missing references) //IL_3985: Unknown result type (might be due to invalid IL or missing references) //IL_398a: Unknown result type (might be due to invalid IL or missing references) //IL_3990: Unknown result type (might be due to invalid IL or missing references) //IL_399a: Unknown result type (might be due to invalid IL or missing references) //IL_39a0: Unknown result type (might be due to invalid IL or missing references) //IL_39a5: Unknown result type (might be due to invalid IL or missing references) //IL_39ab: Unknown result type (might be due to invalid IL or missing references) //IL_39b0: Unknown result type (might be due to invalid IL or missing references) //IL_39b5: Unknown result type (might be due to invalid IL or missing references) //IL_39bb: Unknown result type (might be due to invalid IL or missing references) //IL_39c5: Unknown result type (might be due to invalid IL or missing references) //IL_39ca: Unknown result type (might be due to invalid IL or missing references) //IL_39d5: Unknown result type (might be due to invalid IL or missing references) //IL_39db: Unknown result type (might be due to invalid IL or missing references) //IL_39e0: Unknown result type (might be due to invalid IL or missing references) //IL_39e6: Unknown result type (might be due to invalid IL or missing references) //IL_39eb: Unknown result type (might be due to invalid IL or missing references) //IL_39f1: Unknown result type (might be due to invalid IL or missing references) //IL_39fb: Unknown result type (might be due to invalid IL or missing references) //IL_3a00: Unknown result type (might be due to invalid IL or missing references) //IL_3a06: Unknown result type (might be due to invalid IL or missing references) //IL_3a10: Unknown result type (might be due to invalid IL or missing references) //IL_3a16: Unknown result type (might be due to invalid IL or missing references) //IL_3a1b: Unknown result type (might be due to invalid IL or missing references) //IL_3a21: Unknown result type (might be due to invalid IL or missing references) //IL_3a26: Unknown result type (might be due to invalid IL or missing references) //IL_3a2b: Unknown result type (might be due to invalid IL or missing references) //IL_3a31: Unknown result type (might be due to invalid IL or missing references) //IL_3a3b: Unknown result type (might be due to invalid IL or missing references) //IL_3a40: Unknown result type (might be due to invalid IL or missing references) //IL_3a4c: Unknown result type (might be due to invalid IL or missing references) //IL_38c0: Unknown result type (might be due to invalid IL or missing references) //IL_38c5: Unknown result type (might be due to invalid IL or missing references) //IL_3754: Unknown result type (might be due to invalid IL or missing references) //IL_3759: Unknown result type (might be due to invalid IL or missing references) //IL_3768: Unknown result type (might be due to invalid IL or missing references) //IL_376d: Unknown result type (might be due to invalid IL or missing references) //IL_3789: Unknown result type (might be due to invalid IL or missing references) //IL_378e: Unknown result type (might be due to invalid IL or missing references) //IL_3797: Unknown result type (might be due to invalid IL or missing references) //IL_37a2: Unknown result type (might be due to invalid IL or missing references) //IL_37b3: Unknown result type (might be due to invalid IL or missing references) //IL_37b8: Unknown result type (might be due to invalid IL or missing references) //IL_37bd: Unknown result type (might be due to invalid IL or missing references) //IL_2cbc: Unknown result type (might be due to invalid IL or missing references) //IL_2cc1: Unknown result type (might be due to invalid IL or missing references) //IL_2cd0: Unknown result type (might be due to invalid IL or missing references) //IL_2cd5: Unknown result type (might be due to invalid IL or missing references) //IL_2cec: Unknown result type (might be due to invalid IL or missing references) //IL_2cf1: Unknown result type (might be due to invalid IL or missing references) //IL_2d0d: Unknown result type (might be due to invalid IL or missing references) //IL_2d12: Unknown result type (might be due to invalid IL or missing references) //IL_2d21: Unknown result type (might be due to invalid IL or missing references) //IL_2d26: Unknown result type (might be due to invalid IL or missing references) //IL_2d37: Unknown result type (might be due to invalid IL or missing references) //IL_2d42: Unknown result type (might be due to invalid IL or missing references) //IL_2d47: Unknown result type (might be due to invalid IL or missing references) //IL_2d70: Unknown result type (might be due to invalid IL or missing references) //IL_2d75: Unknown result type (might be due to invalid IL or missing references) //IL_2d8c: Unknown result type (might be due to invalid IL or missing references) //IL_2d91: Unknown result type (might be due to invalid IL or missing references) //IL_2d96: Unknown result type (might be due to invalid IL or missing references) //IL_2c06: Unknown result type (might be due to invalid IL or missing references) //IL_2c0b: Unknown result type (might be due to invalid IL or missing references) //IL_2a9a: Unknown result type (might be due to invalid IL or missing references) //IL_2a9f: Unknown result type (might be due to invalid IL or missing references) //IL_2aae: Unknown result type (might be due to invalid IL or missing references) //IL_2ab3: Unknown result type (might be due to invalid IL or missing references) //IL_2acf: Unknown result type (might be due to invalid IL or missing references) //IL_2ad4: Unknown result type (might be due to invalid IL or missing references) //IL_2add: Unknown result type (might be due to invalid IL or missing references) //IL_2ae8: Unknown result type (might be due to invalid IL or missing references) //IL_2af9: Unknown result type (might be due to invalid IL or missing references) //IL_2afe: Unknown result type (might be due to invalid IL or missing references) //IL_2b03: Unknown result type (might be due to invalid IL or missing references) //IL_3b1a: Unknown result type (might be due to invalid IL or missing references) //IL_3b20: Unknown result type (might be due to invalid IL or missing references) //IL_3b25: Unknown result type (might be due to invalid IL or missing references) //IL_3b2b: Unknown result type (might be due to invalid IL or missing references) //IL_3b30: Unknown result type (might be due to invalid IL or missing references) //IL_3b36: Unknown result type (might be due to invalid IL or missing references) //IL_3b40: Unknown result type (might be due to invalid IL or missing references) //IL_3b46: Unknown result type (might be due to invalid IL or missing references) //IL_3b4b: Unknown result type (might be due to invalid IL or missing references) //IL_3b51: Unknown result type (might be due to invalid IL or missing references) //IL_3b56: Unknown result type (might be due to invalid IL or missing references) //IL_3b5b: Unknown result type (might be due to invalid IL or missing references) //IL_3b61: Unknown result type (might be due to invalid IL or missing references) //IL_3b6b: Unknown result type (might be due to invalid IL or missing references) //IL_3b70: Unknown result type (might be due to invalid IL or missing references) //IL_3b7b: Unknown result type (might be due to invalid IL or missing references) //IL_3b81: Unknown result type (might be due to invalid IL or missing references) //IL_3b86: Unknown result type (might be due to invalid IL or missing references) //IL_3b8c: Unknown result type (might be due to invalid IL or missing references) //IL_3b91: Unknown result type (might be due to invalid IL or missing references) //IL_3b97: Unknown result type (might be due to invalid IL or missing references) //IL_3ba1: Unknown result type (might be due to invalid IL or missing references) //IL_3ba6: Unknown result type (might be due to invalid IL or missing references) //IL_3bac: Unknown result type (might be due to invalid IL or missing references) //IL_3bb6: Unknown result type (might be due to invalid IL or missing references) //IL_3bbc: Unknown result type (might be due to invalid IL or missing references) //IL_3bc1: Unknown result type (might be due to invalid IL or missing references) //IL_3bc7: Unknown result type (might be due to invalid IL or missing references) //IL_3bcc: Unknown result type (might be due to invalid IL or missing references) //IL_3bd1: Unknown result type (might be due to invalid IL or missing references) //IL_3bd7: Unknown result type (might be due to invalid IL or missing references) //IL_3be1: Unknown result type (might be due to invalid IL or missing references) //IL_3be6: Unknown result type (might be due to invalid IL or missing references) //IL_3bf2: Unknown result type (might be due to invalid IL or missing references) //IL_3a66: Unknown result type (might be due to invalid IL or missing references) //IL_3a6b: Unknown result type (might be due to invalid IL or missing references) //IL_38fa: Unknown result type (might be due to invalid IL or missing references) //IL_38ff: Unknown result type (might be due to invalid IL or missing references) //IL_390e: Unknown result type (might be due to invalid IL or missing references) //IL_3913: Unknown result type (might be due to invalid IL or missing references) //IL_392f: Unknown result type (might be due to invalid IL or missing references) //IL_3934: Unknown result type (might be due to invalid IL or missing references) //IL_393d: Unknown result type (might be due to invalid IL or missing references) //IL_3948: Unknown result type (might be due to invalid IL or missing references) //IL_3959: Unknown result type (might be due to invalid IL or missing references) //IL_395e: Unknown result type (might be due to invalid IL or missing references) //IL_3963: Unknown result type (might be due to invalid IL or missing references) //IL_2c40: Unknown result type (might be due to invalid IL or missing references) //IL_2c45: Unknown result type (might be due to invalid IL or missing references) //IL_2c54: Unknown result type (might be due to invalid IL or missing references) //IL_2c59: Unknown result type (might be due to invalid IL or missing references) //IL_2c75: Unknown result type (might be due to invalid IL or missing references) //IL_2c7a: Unknown result type (might be due to invalid IL or missing references) //IL_2c83: Unknown result type (might be due to invalid IL or missing references) //IL_2c8e: Unknown result type (might be due to invalid IL or missing references) //IL_2c9f: Unknown result type (might be due to invalid IL or missing references) //IL_2ca4: Unknown result type (might be due to invalid IL or missing references) //IL_2ca9: Unknown result type (might be due to invalid IL or missing references) //IL_3cc0: Unknown result type (might be due to invalid IL or missing references) //IL_3cc6: Unknown result type (might be due to invalid IL or missing references) //IL_3ccb: Unknown result type (might be due to invalid IL or missing references) //IL_3cd1: Unknown result type (might be due to invalid IL or missing references) //IL_3cd6: Unknown result type (might be due to invalid IL or missing references) //IL_3cdc: Unknown result type (might be due to invalid IL or missing references) //IL_3ce6: Unknown result type (might be due to invalid IL or missing references) //IL_3cec: Unknown result type (might be due to invalid IL or missing references) //IL_3cf1: Unknown result type (might be due to invalid IL or missing references) //IL_3cf7: Unknown result type (might be due to invalid IL or missing references) //IL_3cfc: Unknown result type (might be due to invalid IL or missing references) //IL_3d01: Unknown result type (might be due to invalid IL or missing references) //IL_3d07: Unknown result type (might be due to invalid IL or missing references) //IL_3d11: Unknown result type (might be due to invalid IL or missing references) //IL_3d16: Unknown result type (might be due to invalid IL or missing references) //IL_3d21: Unknown result type (might be due to invalid IL or missing references) //IL_3d27: Unknown result type (might be due to invalid IL or missing references) //IL_3d2c: Unknown result type (might be due to invalid IL or missing references) //IL_3d32: Unknown result type (might be due to invalid IL or missing references) //IL_3d37: Unknown result type (might be due to invalid IL or missing references) //IL_3d3d: Unknown result type (might be due to invalid IL or missing references) //IL_3d47: Unknown result type (might be due to invalid IL or missing references) //IL_3d4c: Unknown result type (might be due to invalid IL or missing references) //IL_3d52: Unknown result type (might be due to invalid IL or missing references) //IL_3d5c: Unknown result type (might be due to invalid IL or missing references) //IL_3d62: Unknown result type (might be due to invalid IL or missing references) //IL_3d67: Unknown result type (might be due to invalid IL or missing references) //IL_3d6d: Unknown result type (might be due to invalid IL or missing references) //IL_3d72: Unknown result type (might be due to invalid IL or missing references) //IL_3d77: Unknown result type (might be due to invalid IL or missing references) //IL_3d7d: Unknown result type (might be due to invalid IL or missing references) //IL_3d87: Unknown result type (might be due to invalid IL or missing references) //IL_3d8c: Unknown result type (might be due to invalid IL or missing references) //IL_3d98: Unknown result type (might be due to invalid IL or missing references) //IL_3c0c: Unknown result type (might be due to invalid IL or missing references) //IL_3c11: Unknown result type (might be due to invalid IL or missing references) //IL_3aa0: Unknown result type (might be due to invalid IL or missing references) //IL_3aa5: Unknown result type (might be due to invalid IL or missing references) //IL_3ab4: Unknown result type (might be due to invalid IL or missing references) //IL_3ab9: Unknown result type (might be due to invalid IL or missing references) //IL_3ad5: Unknown result type (might be due to invalid IL or missing references) //IL_3ada: Unknown result type (might be due to invalid IL or missing references) //IL_3ae3: Unknown result type (might be due to invalid IL or missing references) //IL_3aee: Unknown result type (might be due to invalid IL or missing references) //IL_3aff: Unknown result type (might be due to invalid IL or missing references) //IL_3b04: Unknown result type (might be due to invalid IL or missing references) //IL_3b09: Unknown result type (might be due to invalid IL or missing references) //IL_3e68: Unknown result type (might be due to invalid IL or missing references) //IL_3e6d: Unknown result type (might be due to invalid IL or missing references) //IL_3e7c: Unknown result type (might be due to invalid IL or missing references) //IL_3e81: Unknown result type (might be due to invalid IL or missing references) //IL_3e98: Unknown result type (might be due to invalid IL or missing references) //IL_3e9d: Unknown result type (might be due to invalid IL or missing references) //IL_3eb9: Unknown result type (might be due to invalid IL or missing references) //IL_3ebe: Unknown result type (might be due to invalid IL or missing references) //IL_3ecd: Unknown result type (might be due to invalid IL or missing references) //IL_3ed2: Unknown result type (might be due to invalid IL or missing references) //IL_3ee3: Unknown result type (might be due to invalid IL or missing references) //IL_3eee: Unknown result type (might be due to invalid IL or missing references) //IL_3ef3: Unknown result type (might be due to invalid IL or missing references) //IL_3f1c: Unknown result type (might be due to invalid IL or missing references) //IL_3f21: Unknown result type (might be due to invalid IL or missing references) //IL_3f38: Unknown result type (might be due to invalid IL or missing references) //IL_3f3d: Unknown result type (might be due to invalid IL or missing references) //IL_3f42: Unknown result type (might be due to invalid IL or missing references) //IL_3db2: Unknown result type (might be due to invalid IL or missing references) //IL_3db7: Unknown result type (might be due to invalid IL or missing references) //IL_3c46: Unknown result type (might be due to invalid IL or missing references) //IL_3c4b: Unknown result type (might be due to invalid IL or missing references) //IL_3c5a: Unknown result type (might be due to invalid IL or missing references) //IL_3c5f: Unknown result type (might be due to invalid IL or missing references) //IL_3c7b: Unknown result type (might be due to invalid IL or missing references) //IL_3c80: Unknown result type (might be due to invalid IL or missing references) //IL_3c89: Unknown result type (might be due to invalid IL or missing references) //IL_3c94: Unknown result type (might be due to invalid IL or missing references) //IL_3ca5: Unknown result type (might be due to invalid IL or missing references) //IL_3caa: Unknown result type (might be due to invalid IL or missing references) //IL_3caf: Unknown result type (might be due to invalid IL or missing references) //IL_3dec: Unknown result type (might be due to invalid IL or missing references) //IL_3df1: Unknown result type (might be due to invalid IL or missing references) //IL_3e00: Unknown result type (might be due to invalid IL or missing references) //IL_3e05: Unknown result type (might be due to invalid IL or missing references) //IL_3e21: Unknown result type (might be due to invalid IL or missing references) //IL_3e26: Unknown result type (might be due to invalid IL or missing references) //IL_3e2f: Unknown result type (might be due to invalid IL or missing references) //IL_3e3a: Unknown result type (might be due to invalid IL or missing references) //IL_3e4b: Unknown result type (might be due to invalid IL or missing references) //IL_3e50: Unknown result type (might be due to invalid IL or missing references) //IL_3e55: Unknown result type (might be due to invalid IL or missing references) if (switching || !ledgeSwitchingDetectors.allowLedgeSwitching || !grabbedOn) { return; } if ((!Physics.Linecast(((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.8f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { r1MiddleSurfaceDetectorsHit = true; } else { r1MiddleSurfaceDetectorsHit = false; r1MiddleHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.8f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { r2MiddleSurfaceDetectorsHit = true; } else { r2MiddleSurfaceDetectorsHit = false; r2MiddleHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.8f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { r3MiddleSurfaceDetectorsHit = true; } else { r3MiddleSurfaceDetectorsHit = false; r3MiddleHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) { if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref switchHitPoint)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit) { r1MiddleHit = true; if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2), ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r1MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r1MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r1MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r1MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r1MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r1MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r1MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r1MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else { r1MiddleHitPoint = new Vector3(((RaycastHit)(ref switchHitPoint)).point.x - ((Component)this).transform.forward.x * length2, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref switchHitPoint)).point.z - ((Component)this).transform.forward.x * length2) + new Vector3((0f - ((Component)this).transform.forward.x) * length2 / 10f, onLedgeHeight2 / 10f, (0f - ((Component)this).transform.forward.z) * length2 / 10f); } } else { r1MiddleHit = false; } } else { r1MiddleHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) { if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref switchHitPoint)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit) { r2MiddleHit = true; if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2), ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r2MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r2MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r2MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r2MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r2MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r2MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r2MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r2MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else { r2MiddleHitPoint = new Vector3(((RaycastHit)(ref switchHitPoint)).point.x - ((Component)this).transform.forward.x * length2, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref switchHitPoint)).point.z - ((Component)this).transform.forward.x * length2) + new Vector3((0f - ((Component)this).transform.forward.x) * length2 / 10f, onLedgeHeight2 / 10f, (0f - ((Component)this).transform.forward.z) * length2 / 10f); } } else { r2MiddleHit = false; } } else { r2MiddleHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 2.2f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f + ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) { if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref switchHitPoint)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit) { r3MiddleHit = true; if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2), ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r3MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r3MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r3MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r3MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r3MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r3MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r3MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r3MiddleHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (3.8f / length2); } else { r3MiddleHitPoint = new Vector3(((RaycastHit)(ref switchHitPoint)).point.x - ((Component)this).transform.forward.x * length2, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref switchHitPoint)).point.z - ((Component)this).transform.forward.x * length2) + new Vector3((0f - ((Component)this).transform.forward.x) * length2 / 10f, onLedgeHeight2 / 10f, (0f - ((Component)this).transform.forward.z) * length2 / 10f); } } else { r3MiddleHit = false; } } else { r3MiddleHit = false; } } private void LedgeSwitchHitPointsFirstBackRight() { //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_006a: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_0084: Unknown result type (might be due to invalid IL or missing references) //IL_008a: Unknown result type (might be due to invalid IL or missing references) //IL_008f: Unknown result type (might be due to invalid IL or missing references) //IL_009a: Unknown result type (might be due to invalid IL or missing references) //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_00a5: Unknown result type (might be due to invalid IL or missing references) //IL_00ab: Unknown result type (might be due to invalid IL or missing references) //IL_00b0: Unknown result type (might be due to invalid IL or missing references) //IL_00b6: Unknown result type (might be due to invalid IL or missing references) //IL_00bb: Unknown result type (might be due to invalid IL or missing references) //IL_00c1: Unknown result type (might be due to invalid IL or missing references) //IL_00cb: Unknown result type (might be due to invalid IL or missing references) //IL_00d0: Unknown result type (might be due to invalid IL or missing references) //IL_00d6: Unknown result type (might be due to invalid IL or missing references) //IL_00e0: Unknown result type (might be due to invalid IL or missing references) //IL_00e5: Unknown result type (might be due to invalid IL or missing references) //IL_00eb: Unknown result type (might be due to invalid IL or missing references) //IL_00f0: Unknown result type (might be due to invalid IL or missing references) //IL_00f6: Unknown result type (might be due to invalid IL or missing references) //IL_00fb: Unknown result type (might be due to invalid IL or missing references) //IL_0107: Unknown result type (might be due to invalid IL or missing references) //IL_0214: Unknown result type (might be due to invalid IL or missing references) //IL_021a: Unknown result type (might be due to invalid IL or missing references) //IL_021f: Unknown result type (might be due to invalid IL or missing references) //IL_0225: Unknown result type (might be due to invalid IL or missing references) //IL_022a: Unknown result type (might be due to invalid IL or missing references) //IL_0230: Unknown result type (might be due to invalid IL or missing references) //IL_0235: Unknown result type (might be due to invalid IL or missing references) //IL_023b: Unknown result type (might be due to invalid IL or missing references) //IL_0245: Unknown result type (might be due to invalid IL or missing references) //IL_024a: Unknown result type (might be due to invalid IL or missing references) //IL_0250: Unknown result type (might be due to invalid IL or missing references) //IL_025a: Unknown result type (might be due to invalid IL or missing references) //IL_025f: Unknown result type (might be due to invalid IL or missing references) //IL_0265: Unknown result type (might be due to invalid IL or missing references) //IL_026a: Unknown result type (might be due to invalid IL or missing references) //IL_0270: Unknown result type (might be due to invalid IL or missing references) //IL_0275: Unknown result type (might be due to invalid IL or missing references) //IL_0280: Unknown result type (might be due to invalid IL or missing references) //IL_0286: Unknown result type (might be due to invalid IL or missing references) //IL_028b: Unknown result type (might be due to invalid IL or missing references) //IL_0291: Unknown result type (might be due to invalid IL or missing references) //IL_0296: Unknown result type (might be due to invalid IL or missing references) //IL_029c: Unknown result type (might be due to invalid IL or missing references) //IL_02a1: Unknown result type (might be due to invalid IL or missing references) //IL_02a7: Unknown result type (might be due to invalid IL or missing references) //IL_02b1: Unknown result type (might be due to invalid IL or missing references) //IL_02b6: Unknown result type (might be due to invalid IL or missing references) //IL_02bc: Unknown result type (might be due to invalid IL or missing references) //IL_02c6: Unknown result type (might be due to invalid IL or missing references) //IL_02cb: Unknown result type (might be due to invalid IL or missing references) //IL_02d1: Unknown result type (might be due to invalid IL or missing references) //IL_02d6: Unknown result type (might be due to invalid IL or missing references) //IL_02e2: Unknown result type (might be due to invalid IL or missing references) //IL_0121: Unknown result type (might be due to invalid IL or missing references) //IL_0127: Unknown result type (might be due to invalid IL or missing references) //IL_012c: Unknown result type (might be due to invalid IL or missing references) //IL_0132: Unknown result type (might be due to invalid IL or missing references) //IL_0137: Unknown result type (might be due to invalid IL or missing references) //IL_013d: Unknown result type (might be due to invalid IL or missing references) //IL_0142: Unknown result type (might be due to invalid IL or missing references) //IL_0148: Unknown result type (might be due to invalid IL or missing references) //IL_0152: Unknown result type (might be due to invalid IL or missing references) //IL_0157: Unknown result type (might be due to invalid IL or missing references) //IL_015d: Unknown result type (might be due to invalid IL or missing references) //IL_0167: Unknown result type (might be due to invalid IL or missing references) //IL_016c: Unknown result type (might be due to invalid IL or missing references) //IL_0172: Unknown result type (might be due to invalid IL or missing references) //IL_0177: Unknown result type (might be due to invalid IL or missing references) //IL_017d: Unknown result type (might be due to invalid IL or missing references) //IL_0182: Unknown result type (might be due to invalid IL or missing references) //IL_018d: Unknown result type (might be due to invalid IL or missing references) //IL_0193: Unknown result type (might be due to invalid IL or missing references) //IL_0198: Unknown result type (might be due to invalid IL or missing references) //IL_019e: Unknown result type (might be due to invalid IL or missing references) //IL_01a3: Unknown result type (might be due to invalid IL or missing references) //IL_01a9: Unknown result type (might be due to invalid IL or missing references) //IL_01ae: Unknown result type (might be due to invalid IL or missing references) //IL_01b4: Unknown result type (might be due to invalid IL or missing references) //IL_01be: Unknown result type (might be due to invalid IL or missing references) //IL_01c3: Unknown result type (might be due to invalid IL or missing references) //IL_01c9: Unknown result type (might be due to invalid IL or missing references) //IL_01ce: Unknown result type (might be due to invalid IL or missing references) //IL_01d4: Unknown result type (might be due to invalid IL or missing references) //IL_01de: Unknown result type (might be due to invalid IL or missing references) //IL_01e3: Unknown result type (might be due to invalid IL or missing references) //IL_01e9: Unknown result type (might be due to invalid IL or missing references) //IL_01ee: Unknown result type (might be due to invalid IL or missing references) //IL_01fa: Unknown result type (might be due to invalid IL or missing references) //IL_031a: Unknown result type (might be due to invalid IL or missing references) //IL_0320: Unknown result type (might be due to invalid IL or missing references) //IL_0325: Unknown result type (might be due to invalid IL or missing references) //IL_032b: Unknown result type (might be due to invalid IL or missing references) //IL_0330: Unknown result type (might be due to invalid IL or missing references) //IL_0336: Unknown result type (might be due to invalid IL or missing references) //IL_033b: Unknown result type (might be due to invalid IL or missing references) //IL_0341: Unknown result type (might be due to invalid IL or missing references) //IL_034b: Unknown result type (might be due to invalid IL or missing references) //IL_0350: Unknown result type (might be due to invalid IL or missing references) //IL_0356: Unknown result type (might be due to invalid IL or missing references) //IL_0360: Unknown result type (might be due to invalid IL or missing references) //IL_0365: Unknown result type (might be due to invalid IL or missing references) //IL_036b: Unknown result type (might be due to invalid IL or missing references) //IL_0370: Unknown result type (might be due to invalid IL or missing references) //IL_0376: Unknown result type (might be due to invalid IL or missing references) //IL_037b: Unknown result type (might be due to invalid IL or missing references) //IL_0386: Unknown result type (might be due to invalid IL or missing references) //IL_038c: Unknown result type (might be due to invalid IL or missing references) //IL_0391: Unknown result type (might be due to invalid IL or missing references) //IL_0397: Unknown result type (might be due to invalid IL or missing references) //IL_039c: Unknown result type (might be due to invalid IL or missing references) //IL_03a2: Unknown result type (might be due to invalid IL or missing references) //IL_03a7: Unknown result type (might be due to invalid IL or missing references) //IL_03ad: Unknown result type (might be due to invalid IL or missing references) //IL_03b7: Unknown result type (might be due to invalid IL or missing references) //IL_03bc: Unknown result type (might be due to invalid IL or missing references) //IL_03c2: Unknown result type (might be due to invalid IL or missing references) //IL_03cc: Unknown result type (might be due to invalid IL or missing references) //IL_03d1: Unknown result type (might be due to invalid IL or missing references) //IL_03d7: Unknown result type (might be due to invalid IL or missing references) //IL_03dc: Unknown result type (might be due to invalid IL or missing references) //IL_03e2: Unknown result type (might be due to invalid IL or missing references) //IL_03e7: Unknown result type (might be due to invalid IL or missing references) //IL_03f3: Unknown result type (might be due to invalid IL or missing references) //IL_0500: Unknown result type (might be due to invalid IL or missing references) //IL_0506: Unknown result type (might be due to invalid IL or missing references) //IL_050b: Unknown result type (might be due to invalid IL or missing references) //IL_0511: Unknown result type (might be due to invalid IL or missing references) //IL_0516: Unknown result type (might be due to invalid IL or missing references) //IL_051c: Unknown result type (might be due to invalid IL or missing references) //IL_0521: Unknown result type (might be due to invalid IL or missing references) //IL_0527: Unknown result type (might be due to invalid IL or missing references) //IL_0531: Unknown result type (might be due to invalid IL or missing references) //IL_0536: Unknown result type (might be due to invalid IL or missing references) //IL_053c: Unknown result type (might be due to invalid IL or missing references) //IL_0546: Unknown result type (might be due to invalid IL or missing references) //IL_054b: Unknown result type (might be due to invalid IL or missing references) //IL_0551: Unknown result type (might be due to invalid IL or missing references) //IL_0556: Unknown result type (might be due to invalid IL or missing references) //IL_055c: Unknown result type (might be due to invalid IL or missing references) //IL_0561: Unknown result type (might be due to invalid IL or missing references) //IL_056c: Unknown result type (might be due to invalid IL or missing references) //IL_0572: Unknown result type (might be due to invalid IL or missing references) //IL_0577: Unknown result type (might be due to invalid IL or missing references) //IL_057d: Unknown result type (might be due to invalid IL or missing references) //IL_0582: Unknown result type (might be due to invalid IL or missing references) //IL_0588: Unknown result type (might be due to invalid IL or missing references) //IL_058d: Unknown result type (might be due to invalid IL or missing references) //IL_0593: Unknown result type (might be due to invalid IL or missing references) //IL_059d: Unknown result type (might be due to invalid IL or missing references) //IL_05a2: Unknown result type (might be due to invalid IL or missing references) //IL_05a8: Unknown result type (might be due to invalid IL or missing references) //IL_05b2: Unknown result type (might be due to invalid IL or missing references) //IL_05b7: Unknown result type (might be due to invalid IL or missing references) //IL_05bd: Unknown result type (might be due to invalid IL or missing references) //IL_05c2: Unknown result type (might be due to invalid IL or missing references) //IL_05ce: Unknown result type (might be due to invalid IL or missing references) //IL_040d: Unknown result type (might be due to invalid IL or missing references) //IL_0413: Unknown result type (might be due to invalid IL or missing references) //IL_0418: Unknown result type (might be due to invalid IL or missing references) //IL_041e: Unknown result type (might be due to invalid IL or missing references) //IL_0423: Unknown result type (might be due to invalid IL or missing references) //IL_0429: Unknown result type (might be due to invalid IL or missing references) //IL_042e: Unknown result type (might be due to invalid IL or missing references) //IL_0434: Unknown result type (might be due to invalid IL or missing references) //IL_043e: Unknown result type (might be due to invalid IL or missing references) //IL_0443: Unknown result type (might be due to invalid IL or missing references) //IL_0449: Unknown result type (might be due to invalid IL or missing references) //IL_0453: Unknown result type (might be due to invalid IL or missing references) //IL_0458: Unknown result type (might be due to invalid IL or missing references) //IL_045e: Unknown result type (might be due to invalid IL or missing references) //IL_0463: Unknown result type (might be due to invalid IL or missing references) //IL_0469: Unknown result type (might be due to invalid IL or missing references) //IL_046e: Unknown result type (might be due to invalid IL or missing references) //IL_0479: Unknown result type (might be due to invalid IL or missing references) //IL_047f: Unknown result type (might be due to invalid IL or missing references) //IL_0484: Unknown result type (might be due to invalid IL or missing references) //IL_048a: Unknown result type (might be due to invalid IL or missing references) //IL_048f: Unknown result type (might be due to invalid IL or missing references) //IL_0495: Unknown result type (might be due to invalid IL or missing references) //IL_049a: Unknown result type (might be due to invalid IL or missing references) //IL_04a0: Unknown result type (might be due to invalid IL or missing references) //IL_04aa: Unknown result type (might be due to invalid IL or missing references) //IL_04af: Unknown result type (might be due to invalid IL or missing references) //IL_04b5: Unknown result type (might be due to invalid IL or missing references) //IL_04ba: Unknown result type (might be due to invalid IL or missing references) //IL_04c0: Unknown result type (might be due to invalid IL or missing references) //IL_04ca: Unknown result type (might be due to invalid IL or missing references) //IL_04cf: Unknown result type (might be due to invalid IL or missing references) //IL_04d5: Unknown result type (might be due to invalid IL or missing references) //IL_04da: Unknown result type (might be due to invalid IL or missing references) //IL_04e6: Unknown result type (might be due to invalid IL or missing references) //IL_0606: Unknown result type (might be due to invalid IL or missing references) //IL_060c: Unknown result type (might be due to invalid IL or missing references) //IL_0611: Unknown result type (might be due to invalid IL or missing references) //IL_0617: Unknown result type (might be due to invalid IL or missing references) //IL_061c: Unknown result type (might be due to invalid IL or missing references) //IL_0622: Unknown result type (might be due to invalid IL or missing references) //IL_0627: Unknown result type (might be due to invalid IL or missing references) //IL_062d: Unknown result type (might be due to invalid IL or missing references) //IL_0637: Unknown result type (might be due to invalid IL or missing references) //IL_063c: Unknown result type (might be due to invalid IL or missing references) //IL_0642: Unknown result type (might be due to invalid IL or missing references) //IL_064c: Unknown result type (might be due to invalid IL or missing references) //IL_0651: Unknown result type (might be due to invalid IL or missing references) //IL_0657: Unknown result type (might be due to invalid IL or missing references) //IL_065c: Unknown result type (might be due to invalid IL or missing references) //IL_0662: Unknown result type (might be due to invalid IL or missing references) //IL_0667: Unknown result type (might be due to invalid IL or missing references) //IL_0672: Unknown result type (might be due to invalid IL or missing references) //IL_0678: Unknown result type (might be due to invalid IL or missing references) //IL_067d: Unknown result type (might be due to invalid IL or missing references) //IL_0683: Unknown result type (might be due to invalid IL or missing references) //IL_0688: Unknown result type (might be due to invalid IL or missing references) //IL_068e: Unknown result type (might be due to invalid IL or missing references) //IL_0693: Unknown result type (might be due to invalid IL or missing references) //IL_0699: Unknown result type (might be due to invalid IL or missing references) //IL_06a3: Unknown result type (might be due to invalid IL or missing references) //IL_06a8: Unknown result type (might be due to invalid IL or missing references) //IL_06ae: Unknown result type (might be due to invalid IL or missing references) //IL_06b8: Unknown result type (might be due to invalid IL or missing references) //IL_06bd: Unknown result type (might be due to invalid IL or missing references) //IL_06c3: Unknown result type (might be due to invalid IL or missing references) //IL_06c8: Unknown result type (might be due to invalid IL or missing references) //IL_06ce: Unknown result type (might be due to invalid IL or missing references) //IL_06d3: Unknown result type (might be due to invalid IL or missing references) //IL_06df: Unknown result type (might be due to invalid IL or missing references) //IL_07ec: Unknown result type (might be due to invalid IL or missing references) //IL_07f2: Unknown result type (might be due to invalid IL or missing references) //IL_07f7: Unknown result type (might be due to invalid IL or missing references) //IL_07fd: Unknown result type (might be due to invalid IL or missing references) //IL_0802: Unknown result type (might be due to invalid IL or missing references) //IL_0808: Unknown result type (might be due to invalid IL or missing references) //IL_080d: Unknown result type (might be due to invalid IL or missing references) //IL_0813: Unknown result type (might be due to invalid IL or missing references) //IL_081d: Unknown result type (might be due to invalid IL or missing references) //IL_0822: Unknown result type (might be due to invalid IL or missing references) //IL_0828: Unknown result type (might be due to invalid IL or missing references) //IL_0832: Unknown result type (might be due to invalid IL or missing references) //IL_0837: Unknown result type (might be due to invalid IL or missing references) //IL_083d: Unknown result type (might be due to invalid IL or missing references) //IL_0842: Unknown result type (might be due to invalid IL or missing references) //IL_0848: Unknown result type (might be due to invalid IL or missing references) //IL_084d: Unknown result type (might be due to invalid IL or missing references) //IL_0858: Unknown result type (might be due to invalid IL or missing references) //IL_085e: Unknown result type (might be due to invalid IL or missing references) //IL_0863: Unknown result type (might be due to invalid IL or missing references) //IL_0869: Unknown result type (might be due to invalid IL or missing references) //IL_086e: Unknown result type (might be due to invalid IL or missing references) //IL_0874: Unknown result type (might be due to invalid IL or missing references) //IL_0879: Unknown result type (might be due to invalid IL or missing references) //IL_087f: Unknown result type (might be due to invalid IL or missing references) //IL_0889: Unknown result type (might be due to invalid IL or missing references) //IL_088e: Unknown result type (might be due to invalid IL or missing references) //IL_0894: Unknown result type (might be due to invalid IL or missing references) //IL_089e: Unknown result type (might be due to invalid IL or missing references) //IL_08a3: Unknown result type (might be due to invalid IL or missing references) //IL_08a9: Unknown result type (might be due to invalid IL or missing references) //IL_08ae: Unknown result type (might be due to invalid IL or missing references) //IL_08ba: Unknown result type (might be due to invalid IL or missing references) //IL_06f9: Unknown result type (might be due to invalid IL or missing references) //IL_06ff: Unknown result type (might be due to invalid IL or missing references) //IL_0704: Unknown result type (might be due to invalid IL or missing references) //IL_070a: Unknown result type (might be due to invalid IL or missing references) //IL_070f: Unknown result type (might be due to invalid IL or missing references) //IL_0715: Unknown result type (might be due to invalid IL or missing references) //IL_071a: Unknown result type (might be due to invalid IL or missing references) //IL_0720: Unknown result type (might be due to invalid IL or missing references) //IL_072a: Unknown result type (might be due to invalid IL or missing references) //IL_072f: Unknown result type (might be due to invalid IL or missing references) //IL_0735: Unknown result type (might be due to invalid IL or missing references) //IL_073f: Unknown result type (might be due to invalid IL or missing references) //IL_0744: Unknown result type (might be due to invalid IL or missing references) //IL_074a: Unknown result type (might be due to invalid IL or missing references) //IL_074f: Unknown result type (might be due to invalid IL or missing references) //IL_0755: Unknown result type (might be due to invalid IL or missing references) //IL_075a: Unknown result type (might be due to invalid IL or missing references) //IL_0765: Unknown result type (might be due to invalid IL or missing references) //IL_076b: Unknown result type (might be due to invalid IL or missing references) //IL_0770: Unknown result type (might be due to invalid IL or missing references) //IL_0776: Unknown result type (might be due to invalid IL or missing references) //IL_077b: Unknown result type (might be due to invalid IL or missing references) //IL_0781: Unknown result type (might be due to invalid IL or missing references) //IL_0786: Unknown result type (might be due to invalid IL or missing references) //IL_078c: Unknown result type (might be due to invalid IL or missing references) //IL_0796: Unknown result type (might be due to invalid IL or missing references) //IL_079b: Unknown result type (might be due to invalid IL or missing references) //IL_07a1: Unknown result type (might be due to invalid IL or missing references) //IL_07a6: Unknown result type (might be due to invalid IL or missing references) //IL_07ac: Unknown result type (might be due to invalid IL or missing references) //IL_07b6: Unknown result type (might be due to invalid IL or missing references) //IL_07bb: Unknown result type (might be due to invalid IL or missing references) //IL_07c1: Unknown result type (might be due to invalid IL or missing references) //IL_07c6: Unknown result type (might be due to invalid IL or missing references) //IL_07d2: Unknown result type (might be due to invalid IL or missing references) //IL_08f2: Unknown result type (might be due to invalid IL or missing references) //IL_08f8: Unknown result type (might be due to invalid IL or missing references) //IL_08fd: Unknown result type (might be due to invalid IL or missing references) //IL_0903: Unknown result type (might be due to invalid IL or missing references) //IL_090d: Unknown result type (might be due to invalid IL or missing references) //IL_0912: Unknown result type (might be due to invalid IL or missing references) //IL_0918: Unknown result type (might be due to invalid IL or missing references) //IL_0922: Unknown result type (might be due to invalid IL or missing references) //IL_0927: Unknown result type (might be due to invalid IL or missing references) //IL_092d: Unknown result type (might be due to invalid IL or missing references) //IL_0932: Unknown result type (might be due to invalid IL or missing references) //IL_0938: Unknown result type (might be due to invalid IL or missing references) //IL_093d: Unknown result type (might be due to invalid IL or missing references) //IL_0943: Unknown result type (might be due to invalid IL or missing references) //IL_0948: Unknown result type (might be due to invalid IL or missing references) //IL_0953: Unknown result type (might be due to invalid IL or missing references) //IL_0959: Unknown result type (might be due to invalid IL or missing references) //IL_095e: Unknown result type (might be due to invalid IL or missing references) //IL_0964: Unknown result type (might be due to invalid IL or missing references) //IL_096e: Unknown result type (might be due to invalid IL or missing references) //IL_0973: Unknown result type (might be due to invalid IL or missing references) //IL_0979: Unknown result type (might be due to invalid IL or missing references) //IL_0983: Unknown result type (might be due to invalid IL or missing references) //IL_0988: Unknown result type (might be due to invalid IL or missing references) //IL_098e: Unknown result type (might be due to invalid IL or missing references) //IL_0993: Unknown result type (might be due to invalid IL or missing references) //IL_0999: Unknown result type (might be due to invalid IL or missing references) //IL_099e: Unknown result type (might be due to invalid IL or missing references) //IL_09a4: Unknown result type (might be due to invalid IL or missing references) //IL_09a9: Unknown result type (might be due to invalid IL or missing references) //IL_09b5: Unknown result type (might be due to invalid IL or missing references) //IL_0aac: Unknown result type (might be due to invalid IL or missing references) //IL_0ab2: Unknown result type (might be due to invalid IL or missing references) //IL_0ab7: Unknown result type (might be due to invalid IL or missing references) //IL_0abd: Unknown result type (might be due to invalid IL or missing references) //IL_0ac7: Unknown result type (might be due to invalid IL or missing references) //IL_0acc: Unknown result type (might be due to invalid IL or missing references) //IL_0ad2: Unknown result type (might be due to invalid IL or missing references) //IL_0adc: Unknown result type (might be due to invalid IL or missing references) //IL_0ae1: Unknown result type (might be due to invalid IL or missing references) //IL_0ae7: Unknown result type (might be due to invalid IL or missing references) //IL_0aec: Unknown result type (might be due to invalid IL or missing references) //IL_0af2: Unknown result type (might be due to invalid IL or missing references) //IL_0af7: Unknown result type (might be due to invalid IL or missing references) //IL_0afd: Unknown result type (might be due to invalid IL or missing references) //IL_0b02: Unknown result type (might be due to invalid IL or missing references) //IL_0b0d: Unknown result type (might be due to invalid IL or missing references) //IL_0b13: Unknown result type (might be due to invalid IL or missing references) //IL_0b18: Unknown result type (might be due to invalid IL or missing references) //IL_0b1e: Unknown result type (might be due to invalid IL or missing references) //IL_0b28: Unknown result type (might be due to invalid IL or missing references) //IL_0b2d: Unknown result type (might be due to invalid IL or missing references) //IL_0b33: Unknown result type (might be due to invalid IL or missing references) //IL_0b3d: Unknown result type (might be due to invalid IL or missing references) //IL_0b42: Unknown result type (might be due to invalid IL or missing references) //IL_0b48: Unknown result type (might be due to invalid IL or missing references) //IL_0b4d: Unknown result type (might be due to invalid IL or missing references) //IL_0b53: Unknown result type (might be due to invalid IL or missing references) //IL_0b58: Unknown result type (might be due to invalid IL or missing references) //IL_0b64: Unknown result type (might be due to invalid IL or missing references) //IL_09cf: Unknown result type (might be due to invalid IL or missing references) //IL_09d5: Unknown result type (might be due to invalid IL or missing references) //IL_09da: Unknown result type (might be due to invalid IL or missing references) //IL_09e0: Unknown result type (might be due to invalid IL or missing references) //IL_09ea: Unknown result type (might be due to invalid IL or missing references) //IL_09ef: Unknown result type (might be due to invalid IL or missing references) //IL_09f5: Unknown result type (might be due to invalid IL or missing references) //IL_09ff: Unknown result type (might be due to invalid IL or missing references) //IL_0a04: Unknown result type (might be due to invalid IL or missing references) //IL_0a0a: Unknown result type (might be due to invalid IL or missing references) //IL_0a0f: Unknown result type (might be due to invalid IL or missing references) //IL_0a15: Unknown result type (might be due to invalid IL or missing references) //IL_0a1a: Unknown result type (might be due to invalid IL or missing references) //IL_0a20: Unknown result type (might be due to invalid IL or missing references) //IL_0a25: Unknown result type (might be due to invalid IL or missing references) //IL_0a30: Unknown result type (might be due to invalid IL or missing references) //IL_0a36: Unknown result type (might be due to invalid IL or missing references) //IL_0a3b: Unknown result type (might be due to invalid IL or missing references) //IL_0a41: Unknown result type (might be due to invalid IL or missing references) //IL_0a4b: Unknown result type (might be due to invalid IL or missing references) //IL_0a50: Unknown result type (might be due to invalid IL or missing references) //IL_0a56: Unknown result type (might be due to invalid IL or missing references) //IL_0a5b: Unknown result type (might be due to invalid IL or missing references) //IL_0a61: Unknown result type (might be due to invalid IL or missing references) //IL_0a6b: Unknown result type (might be due to invalid IL or missing references) //IL_0a70: Unknown result type (might be due to invalid IL or missing references) //IL_0a76: Unknown result type (might be due to invalid IL or missing references) //IL_0a7b: Unknown result type (might be due to invalid IL or missing references) //IL_0a81: Unknown result type (might be due to invalid IL or missing references) //IL_0a86: Unknown result type (might be due to invalid IL or missing references) //IL_0a92: Unknown result type (might be due to invalid IL or missing references) //IL_0b7f: Unknown result type (might be due to invalid IL or missing references) //IL_0b84: Unknown result type (might be due to invalid IL or missing references) //IL_1a1c: Unknown result type (might be due to invalid IL or missing references) //IL_1a22: Unknown result type (might be due to invalid IL or missing references) //IL_1a27: Unknown result type (might be due to invalid IL or missing references) //IL_1a2d: Unknown result type (might be due to invalid IL or missing references) //IL_1a37: Unknown result type (might be due to invalid IL or missing references) //IL_1a3c: Unknown result type (might be due to invalid IL or missing references) //IL_1a42: Unknown result type (might be due to invalid IL or missing references) //IL_1a4c: Unknown result type (might be due to invalid IL or missing references) //IL_1a51: Unknown result type (might be due to invalid IL or missing references) //IL_1a57: Unknown result type (might be due to invalid IL or missing references) //IL_1a5c: Unknown result type (might be due to invalid IL or missing references) //IL_1a62: Unknown result type (might be due to invalid IL or missing references) //IL_1a67: Unknown result type (might be due to invalid IL or missing references) //IL_1a6d: Unknown result type (might be due to invalid IL or missing references) //IL_1a72: Unknown result type (might be due to invalid IL or missing references) //IL_1a7d: Unknown result type (might be due to invalid IL or missing references) //IL_1a83: Unknown result type (might be due to invalid IL or missing references) //IL_1a88: Unknown result type (might be due to invalid IL or missing references) //IL_1a8e: Unknown result type (might be due to invalid IL or missing references) //IL_1a98: Unknown result type (might be due to invalid IL or missing references) //IL_1a9d: Unknown result type (might be due to invalid IL or missing references) //IL_1aa3: Unknown result type (might be due to invalid IL or missing references) //IL_1aad: Unknown result type (might be due to invalid IL or missing references) //IL_1ab2: Unknown result type (might be due to invalid IL or missing references) //IL_1ab8: Unknown result type (might be due to invalid IL or missing references) //IL_1abd: Unknown result type (might be due to invalid IL or missing references) //IL_1ac3: Unknown result type (might be due to invalid IL or missing references) //IL_1ac8: Unknown result type (might be due to invalid IL or missing references) //IL_1ace: Unknown result type (might be due to invalid IL or missing references) //IL_1ad3: Unknown result type (might be due to invalid IL or missing references) //IL_1adf: Unknown result type (might be due to invalid IL or missing references) //IL_0bbf: Unknown result type (might be due to invalid IL or missing references) //IL_0bc5: Unknown result type (might be due to invalid IL or missing references) //IL_0bca: Unknown result type (might be due to invalid IL or missing references) //IL_0bd0: Unknown result type (might be due to invalid IL or missing references) //IL_0bd5: Unknown result type (might be due to invalid IL or missing references) //IL_0bdb: Unknown result type (might be due to invalid IL or missing references) //IL_0be5: Unknown result type (might be due to invalid IL or missing references) //IL_0bea: Unknown result type (might be due to invalid IL or missing references) //IL_0bf0: Unknown result type (might be due to invalid IL or missing references) //IL_0bfa: Unknown result type (might be due to invalid IL or missing references) //IL_0c00: Unknown result type (might be due to invalid IL or missing references) //IL_0c05: Unknown result type (might be due to invalid IL or missing references) //IL_0c0b: Unknown result type (might be due to invalid IL or missing references) //IL_0c10: Unknown result type (might be due to invalid IL or missing references) //IL_0c15: Unknown result type (might be due to invalid IL or missing references) //IL_0c20: Unknown result type (might be due to invalid IL or missing references) //IL_0c26: Unknown result type (might be due to invalid IL or missing references) //IL_0c2b: Unknown result type (might be due to invalid IL or missing references) //IL_0c31: Unknown result type (might be due to invalid IL or missing references) //IL_0c36: Unknown result type (might be due to invalid IL or missing references) //IL_0c3c: Unknown result type (might be due to invalid IL or missing references) //IL_0c46: Unknown result type (might be due to invalid IL or missing references) //IL_0c4c: Unknown result type (might be due to invalid IL or missing references) //IL_0c51: Unknown result type (might be due to invalid IL or missing references) //IL_0c57: Unknown result type (might be due to invalid IL or missing references) //IL_0c5c: Unknown result type (might be due to invalid IL or missing references) //IL_0c61: Unknown result type (might be due to invalid IL or missing references) //IL_0c6d: Unknown result type (might be due to invalid IL or missing references) //IL_1bd6: Unknown result type (might be due to invalid IL or missing references) //IL_1bdc: Unknown result type (might be due to invalid IL or missing references) //IL_1be1: Unknown result type (might be due to invalid IL or missing references) //IL_1be7: Unknown result type (might be due to invalid IL or missing references) //IL_1bf1: Unknown result type (might be due to invalid IL or missing references) //IL_1bf6: Unknown result type (might be due to invalid IL or missing references) //IL_1bfc: Unknown result type (might be due to invalid IL or missing references) //IL_1c06: Unknown result type (might be due to invalid IL or missing references) //IL_1c0b: Unknown result type (might be due to invalid IL or missing references) //IL_1c11: Unknown result type (might be due to invalid IL or missing references) //IL_1c16: Unknown result type (might be due to invalid IL or missing references) //IL_1c1c: Unknown result type (might be due to invalid IL or missing references) //IL_1c21: Unknown result type (might be due to invalid IL or missing references) //IL_1c27: Unknown result type (might be due to invalid IL or missing references) //IL_1c2c: Unknown result type (might be due to invalid IL or missing references) //IL_1c37: Unknown result type (might be due to invalid IL or missing references) //IL_1c3d: Unknown result type (might be due to invalid IL or missing references) //IL_1c42: Unknown result type (might be due to invalid IL or missing references) //IL_1c48: Unknown result type (might be due to invalid IL or missing references) //IL_1c52: Unknown result type (might be due to invalid IL or missing references) //IL_1c57: Unknown result type (might be due to invalid IL or missing references) //IL_1c5d: Unknown result type (might be due to invalid IL or missing references) //IL_1c67: Unknown result type (might be due to invalid IL or missing references) //IL_1c6c: Unknown result type (might be due to invalid IL or missing references) //IL_1c72: Unknown result type (might be due to invalid IL or missing references) //IL_1c77: Unknown result type (might be due to invalid IL or missing references) //IL_1c7d: Unknown result type (might be due to invalid IL or missing references) //IL_1c82: Unknown result type (might be due to invalid IL or missing references) //IL_1c8e: Unknown result type (might be due to invalid IL or missing references) //IL_1af9: Unknown result type (might be due to invalid IL or missing references) //IL_1aff: Unknown result type (might be due to invalid IL or missing references) //IL_1b04: Unknown result type (might be due to invalid IL or missing references) //IL_1b0a: Unknown result type (might be due to invalid IL or missing references) //IL_1b14: Unknown result type (might be due to invalid IL or missing references) //IL_1b19: Unknown result type (might be due to invalid IL or missing references) //IL_1b1f: Unknown result type (might be due to invalid IL or missing references) //IL_1b29: Unknown result type (might be due to invalid IL or missing references) //IL_1b2e: Unknown result type (might be due to invalid IL or missing references) //IL_1b34: Unknown result type (might be due to invalid IL or missing references) //IL_1b39: Unknown result type (might be due to invalid IL or missing references) //IL_1b3f: Unknown result type (might be due to invalid IL or missing references) //IL_1b44: Unknown result type (might be due to invalid IL or missing references) //IL_1b4a: Unknown result type (might be due to invalid IL or missing references) //IL_1b4f: Unknown result type (might be due to invalid IL or missing references) //IL_1b5a: Unknown result type (might be due to invalid IL or missing references) //IL_1b60: Unknown result type (might be due to invalid IL or missing references) //IL_1b65: Unknown result type (might be due to invalid IL or missing references) //IL_1b6b: Unknown result type (might be due to invalid IL or missing references) //IL_1b75: Unknown result type (might be due to invalid IL or missing references) //IL_1b7a: Unknown result type (might be due to invalid IL or missing references) //IL_1b80: Unknown result type (might be due to invalid IL or missing references) //IL_1b85: Unknown result type (might be due to invalid IL or missing references) //IL_1b8b: Unknown result type (might be due to invalid IL or missing references) //IL_1b95: Unknown result type (might be due to invalid IL or missing references) //IL_1b9a: Unknown result type (might be due to invalid IL or missing references) //IL_1ba0: Unknown result type (might be due to invalid IL or missing references) //IL_1ba5: Unknown result type (might be due to invalid IL or missing references) //IL_1bab: Unknown result type (might be due to invalid IL or missing references) //IL_1bb0: Unknown result type (might be due to invalid IL or missing references) //IL_1bbc: Unknown result type (might be due to invalid IL or missing references) //IL_0d38: Unknown result type (might be due to invalid IL or missing references) //IL_0d3e: Unknown result type (might be due to invalid IL or missing references) //IL_0d43: Unknown result type (might be due to invalid IL or missing references) //IL_0d49: Unknown result type (might be due to invalid IL or missing references) //IL_0d4e: Unknown result type (might be due to invalid IL or missing references) //IL_0d54: Unknown result type (might be due to invalid IL or missing references) //IL_0d5e: Unknown result type (might be due to invalid IL or missing references) //IL_0d63: Unknown result type (might be due to invalid IL or missing references) //IL_0d69: Unknown result type (might be due to invalid IL or missing references) //IL_0d73: Unknown result type (might be due to invalid IL or missing references) //IL_0d79: Unknown result type (might be due to invalid IL or missing references) //IL_0d7e: Unknown result type (might be due to invalid IL or missing references) //IL_0d84: Unknown result type (might be due to invalid IL or missing references) //IL_0d89: Unknown result type (might be due to invalid IL or missing references) //IL_0d8e: Unknown result type (might be due to invalid IL or missing references) //IL_0d94: Unknown result type (might be due to invalid IL or missing references) //IL_0d9e: Unknown result type (might be due to invalid IL or missing references) //IL_0da3: Unknown result type (might be due to invalid IL or missing references) //IL_0dae: Unknown result type (might be due to invalid IL or missing references) //IL_0db4: Unknown result type (might be due to invalid IL or missing references) //IL_0db9: Unknown result type (might be due to invalid IL or missing references) //IL_0dbf: Unknown result type (might be due to invalid IL or missing references) //IL_0dc4: Unknown result type (might be due to invalid IL or missing references) //IL_0dca: Unknown result type (might be due to invalid IL or missing references) //IL_0dd4: Unknown result type (might be due to invalid IL or missing references) //IL_0dda: Unknown result type (might be due to invalid IL or missing references) //IL_0ddf: Unknown result type (might be due to invalid IL or missing references) //IL_0de5: Unknown result type (might be due to invalid IL or missing references) //IL_0dea: Unknown result type (might be due to invalid IL or missing references) //IL_0def: Unknown result type (might be due to invalid IL or missing references) //IL_0df5: Unknown result type (might be due to invalid IL or missing references) //IL_0dff: Unknown result type (might be due to invalid IL or missing references) //IL_0e04: Unknown result type (might be due to invalid IL or missing references) //IL_0e10: Unknown result type (might be due to invalid IL or missing references) //IL_0c87: Unknown result type (might be due to invalid IL or missing references) //IL_0c8c: Unknown result type (might be due to invalid IL or missing references) //IL_1ca9: Unknown result type (might be due to invalid IL or missing references) //IL_1cae: Unknown result type (might be due to invalid IL or missing references) //IL_0ede: Unknown result type (might be due to invalid IL or missing references) //IL_0ee4: Unknown result type (might be due to invalid IL or missing references) //IL_0ee9: Unknown result type (might be due to invalid IL or missing references) //IL_0eef: Unknown result type (might be due to invalid IL or missing references) //IL_0ef4: Unknown result type (might be due to invalid IL or missing references) //IL_0efa: Unknown result type (might be due to invalid IL or missing references) //IL_0f04: Unknown result type (might be due to invalid IL or missing references) //IL_0f09: Unknown result type (might be due to invalid IL or missing references) //IL_0f0f: Unknown result type (might be due to invalid IL or missing references) //IL_0f19: Unknown result type (might be due to invalid IL or missing references) //IL_0f1f: Unknown result type (might be due to invalid IL or missing references) //IL_0f24: Unknown result type (might be due to invalid IL or missing references) //IL_0f2a: Unknown result type (might be due to invalid IL or missing references) //IL_0f2f: Unknown result type (might be due to invalid IL or missing references) //IL_0f34: Unknown result type (might be due to invalid IL or missing references) //IL_0f3a: Unknown result type (might be due to invalid IL or missing references) //IL_0f44: Unknown result type (might be due to invalid IL or missing references) //IL_0f49: Unknown result type (might be due to invalid IL or missing references) //IL_0f54: Unknown result type (might be due to invalid IL or missing references) //IL_0f5a: Unknown result type (might be due to invalid IL or missing references) //IL_0f5f: Unknown result type (might be due to invalid IL or missing references) //IL_0f65: Unknown result type (might be due to invalid IL or missing references) //IL_0f6a: Unknown result type (might be due to invalid IL or missing references) //IL_0f70: Unknown result type (might be due to invalid IL or missing references) //IL_0f7a: Unknown result type (might be due to invalid IL or missing references) //IL_0f80: Unknown result type (might be due to invalid IL or missing references) //IL_0f85: Unknown result type (might be due to invalid IL or missing references) //IL_0f8b: Unknown result type (might be due to invalid IL or missing references) //IL_0f90: Unknown result type (might be due to invalid IL or missing references) //IL_0f95: Unknown result type (might be due to invalid IL or missing references) //IL_0f9b: Unknown result type (might be due to invalid IL or missing references) //IL_0fa5: Unknown result type (might be due to invalid IL or missing references) //IL_0faa: Unknown result type (might be due to invalid IL or missing references) //IL_0fb6: Unknown result type (might be due to invalid IL or missing references) //IL_0e2a: Unknown result type (might be due to invalid IL or missing references) //IL_0e2f: Unknown result type (might be due to invalid IL or missing references) //IL_0cc0: Unknown result type (might be due to invalid IL or missing references) //IL_0cc5: Unknown result type (might be due to invalid IL or missing references) //IL_0cd3: Unknown result type (might be due to invalid IL or missing references) //IL_0cd8: Unknown result type (might be due to invalid IL or missing references) //IL_0cf3: Unknown result type (might be due to invalid IL or missing references) //IL_0cf8: Unknown result type (might be due to invalid IL or missing references) //IL_0d01: Unknown result type (might be due to invalid IL or missing references) //IL_0d0c: Unknown result type (might be due to invalid IL or missing references) //IL_0d1d: Unknown result type (might be due to invalid IL or missing references) //IL_0d22: Unknown result type (might be due to invalid IL or missing references) //IL_0d27: Unknown result type (might be due to invalid IL or missing references) //IL_2b4a: Unknown result type (might be due to invalid IL or missing references) //IL_2b50: Unknown result type (might be due to invalid IL or missing references) //IL_2b55: Unknown result type (might be due to invalid IL or missing references) //IL_2b5b: Unknown result type (might be due to invalid IL or missing references) //IL_2b65: Unknown result type (might be due to invalid IL or missing references) //IL_2b6a: Unknown result type (might be due to invalid IL or missing references) //IL_2b70: Unknown result type (might be due to invalid IL or missing references) //IL_2b7a: Unknown result type (might be due to invalid IL or missing references) //IL_2b7f: Unknown result type (might be due to invalid IL or missing references) //IL_2b85: Unknown result type (might be due to invalid IL or missing references) //IL_2b8a: Unknown result type (might be due to invalid IL or missing references) //IL_2b90: Unknown result type (might be due to invalid IL or missing references) //IL_2b95: Unknown result type (might be due to invalid IL or missing references) //IL_2b9b: Unknown result type (might be due to invalid IL or missing references) //IL_2ba0: Unknown result type (might be due to invalid IL or missing references) //IL_2bab: Unknown result type (might be due to invalid IL or missing references) //IL_2bb1: Unknown result type (might be due to invalid IL or missing references) //IL_2bb6: Unknown result type (might be due to invalid IL or missing references) //IL_2bbc: Unknown result type (might be due to invalid IL or missing references) //IL_2bc6: Unknown result type (might be due to invalid IL or missing references) //IL_2bcb: Unknown result type (might be due to invalid IL or missing references) //IL_2bd1: Unknown result type (might be due to invalid IL or missing references) //IL_2bdb: Unknown result type (might be due to invalid IL or missing references) //IL_2be0: Unknown result type (might be due to invalid IL or missing references) //IL_2be6: Unknown result type (might be due to invalid IL or missing references) //IL_2beb: Unknown result type (might be due to invalid IL or missing references) //IL_2bf1: Unknown result type (might be due to invalid IL or missing references) //IL_2bf6: Unknown result type (might be due to invalid IL or missing references) //IL_2bfc: Unknown result type (might be due to invalid IL or missing references) //IL_2c01: Unknown result type (might be due to invalid IL or missing references) //IL_2c0d: Unknown result type (might be due to invalid IL or missing references) //IL_1cea: Unknown result type (might be due to invalid IL or missing references) //IL_1cf0: Unknown result type (might be due to invalid IL or missing references) //IL_1cf5: Unknown result type (might be due to invalid IL or missing references) //IL_1cfb: Unknown result type (might be due to invalid IL or missing references) //IL_1d00: Unknown result type (might be due to invalid IL or missing references) //IL_1d06: Unknown result type (might be due to invalid IL or missing references) //IL_1d10: Unknown result type (might be due to invalid IL or missing references) //IL_1d15: Unknown result type (might be due to invalid IL or missing references) //IL_1d1b: Unknown result type (might be due to invalid IL or missing references) //IL_1d25: Unknown result type (might be due to invalid IL or missing references) //IL_1d2b: Unknown result type (might be due to invalid IL or missing references) //IL_1d30: Unknown result type (might be due to invalid IL or missing references) //IL_1d36: Unknown result type (might be due to invalid IL or missing references) //IL_1d3b: Unknown result type (might be due to invalid IL or missing references) //IL_1d40: Unknown result type (might be due to invalid IL or missing references) //IL_1d4b: Unknown result type (might be due to invalid IL or missing references) //IL_1d51: Unknown result type (might be due to invalid IL or missing references) //IL_1d56: Unknown result type (might be due to invalid IL or missing references) //IL_1d5c: Unknown result type (might be due to invalid IL or missing references) //IL_1d61: Unknown result type (might be due to invalid IL or missing references) //IL_1d67: Unknown result type (might be due to invalid IL or missing references) //IL_1d71: Unknown result type (might be due to invalid IL or missing references) //IL_1d77: Unknown result type (might be due to invalid IL or missing references) //IL_1d7c: Unknown result type (might be due to invalid IL or missing references) //IL_1d82: Unknown result type (might be due to invalid IL or missing references) //IL_1d87: Unknown result type (might be due to invalid IL or missing references) //IL_1d8c: Unknown result type (might be due to invalid IL or missing references) //IL_1d98: Unknown result type (might be due to invalid IL or missing references) //IL_1084: Unknown result type (might be due to invalid IL or missing references) //IL_108a: Unknown result type (might be due to invalid IL or missing references) //IL_108f: Unknown result type (might be due to invalid IL or missing references) //IL_1095: Unknown result type (might be due to invalid IL or missing references) //IL_109a: Unknown result type (might be due to invalid IL or missing references) //IL_10a0: Unknown result type (might be due to invalid IL or missing references) //IL_10aa: Unknown result type (might be due to invalid IL or missing references) //IL_10af: Unknown result type (might be due to invalid IL or missing references) //IL_10b5: Unknown result type (might be due to invalid IL or missing references) //IL_10bf: Unknown result type (might be due to invalid IL or missing references) //IL_10c5: Unknown result type (might be due to invalid IL or missing references) //IL_10ca: Unknown result type (might be due to invalid IL or missing references) //IL_10d0: Unknown result type (might be due to invalid IL or missing references) //IL_10d5: Unknown result type (might be due to invalid IL or missing references) //IL_10da: Unknown result type (might be due to invalid IL or missing references) //IL_10e0: Unknown result type (might be due to invalid IL or missing references) //IL_10ea: Unknown result type (might be due to invalid IL or missing references) //IL_10ef: Unknown result type (might be due to invalid IL or missing references) //IL_10fa: Unknown result type (might be due to invalid IL or missing references) //IL_1100: Unknown result type (might be due to invalid IL or missing references) //IL_1105: Unknown result type (might be due to invalid IL or missing references) //IL_110b: Unknown result type (might be due to invalid IL or missing references) //IL_1110: Unknown result type (might be due to invalid IL or missing references) //IL_1116: Unknown result type (might be due to invalid IL or missing references) //IL_1120: Unknown result type (might be due to invalid IL or missing references) //IL_1126: Unknown result type (might be due to invalid IL or missing references) //IL_112b: Unknown result type (might be due to invalid IL or missing references) //IL_1131: Unknown result type (might be due to invalid IL or missing references) //IL_1136: Unknown result type (might be due to invalid IL or missing references) //IL_113b: Unknown result type (might be due to invalid IL or missing references) //IL_1141: Unknown result type (might be due to invalid IL or missing references) //IL_114b: Unknown result type (might be due to invalid IL or missing references) //IL_1150: Unknown result type (might be due to invalid IL or missing references) //IL_115c: Unknown result type (might be due to invalid IL or missing references) //IL_0fd0: Unknown result type (might be due to invalid IL or missing references) //IL_0fd5: Unknown result type (might be due to invalid IL or missing references) //IL_0e64: Unknown result type (might be due to invalid IL or missing references) //IL_0e69: Unknown result type (might be due to invalid IL or missing references) //IL_0e78: Unknown result type (might be due to invalid IL or missing references) //IL_0e7d: Unknown result type (might be due to invalid IL or missing references) //IL_0e99: Unknown result type (might be due to invalid IL or missing references) //IL_0e9e: Unknown result type (might be due to invalid IL or missing references) //IL_0ea7: Unknown result type (might be due to invalid IL or missing references) //IL_0eb2: Unknown result type (might be due to invalid IL or missing references) //IL_0ec3: Unknown result type (might be due to invalid IL or missing references) //IL_0ec8: Unknown result type (might be due to invalid IL or missing references) //IL_0ecd: Unknown result type (might be due to invalid IL or missing references) //IL_2d04: Unknown result type (might be due to invalid IL or missing references) //IL_2d0a: Unknown result type (might be due to invalid IL or missing references) //IL_2d0f: Unknown result type (might be due to invalid IL or missing references) //IL_2d15: Unknown result type (might be due to invalid IL or missing references) //IL_2d1f: Unknown result type (might be due to invalid IL or missing references) //IL_2d24: Unknown result type (might be due to invalid IL or missing references) //IL_2d2a: Unknown result type (might be due to invalid IL or missing references) //IL_2d34: Unknown result type (might be due to invalid IL or missing references) //IL_2d39: Unknown result type (might be due to invalid IL or missing references) //IL_2d3f: Unknown result type (might be due to invalid IL or missing references) //IL_2d44: Unknown result type (might be due to invalid IL or missing references) //IL_2d4a: Unknown result type (might be due to invalid IL or missing references) //IL_2d4f: Unknown result type (might be due to invalid IL or missing references) //IL_2d55: Unknown result type (might be due to invalid IL or missing references) //IL_2d5a: Unknown result type (might be due to invalid IL or missing references) //IL_2d65: Unknown result type (might be due to invalid IL or missing references) //IL_2d6b: Unknown result type (might be due to invalid IL or missing references) //IL_2d70: Unknown result type (might be due to invalid IL or missing references) //IL_2d76: Unknown result type (might be due to invalid IL or missing references) //IL_2d80: Unknown result type (might be due to invalid IL or missing references) //IL_2d85: Unknown result type (might be due to invalid IL or missing references) //IL_2d8b: Unknown result type (might be due to invalid IL or missing references) //IL_2d95: Unknown result type (might be due to invalid IL or missing references) //IL_2d9a: Unknown result type (might be due to invalid IL or missing references) //IL_2da0: Unknown result type (might be due to invalid IL or missing references) //IL_2da5: Unknown result type (might be due to invalid IL or missing references) //IL_2dab: Unknown result type (might be due to invalid IL or missing references) //IL_2db0: Unknown result type (might be due to invalid IL or missing references) //IL_2dbc: Unknown result type (might be due to invalid IL or missing references) //IL_2c27: Unknown result type (might be due to invalid IL or missing references) //IL_2c2d: Unknown result type (might be due to invalid IL or missing references) //IL_2c32: Unknown result type (might be due to invalid IL or missing references) //IL_2c38: Unknown result type (might be due to invalid IL or missing references) //IL_2c42: Unknown result type (might be due to invalid IL or missing references) //IL_2c47: Unknown result type (might be due to invalid IL or missing references) //IL_2c4d: Unknown result type (might be due to invalid IL or missing references) //IL_2c57: Unknown result type (might be due to invalid IL or missing references) //IL_2c5c: Unknown result type (might be due to invalid IL or missing references) //IL_2c62: Unknown result type (might be due to invalid IL or missing references) //IL_2c67: Unknown result type (might be due to invalid IL or missing references) //IL_2c6d: Unknown result type (might be due to invalid IL or missing references) //IL_2c72: Unknown result type (might be due to invalid IL or missing references) //IL_2c78: Unknown result type (might be due to invalid IL or missing references) //IL_2c7d: Unknown result type (might be due to invalid IL or missing references) //IL_2c88: Unknown result type (might be due to invalid IL or missing references) //IL_2c8e: Unknown result type (might be due to invalid IL or missing references) //IL_2c93: Unknown result type (might be due to invalid IL or missing references) //IL_2c99: Unknown result type (might be due to invalid IL or missing references) //IL_2ca3: Unknown result type (might be due to invalid IL or missing references) //IL_2ca8: Unknown result type (might be due to invalid IL or missing references) //IL_2cae: Unknown result type (might be due to invalid IL or missing references) //IL_2cb3: Unknown result type (might be due to invalid IL or missing references) //IL_2cb9: Unknown result type (might be due to invalid IL or missing references) //IL_2cc3: Unknown result type (might be due to invalid IL or missing references) //IL_2cc8: Unknown result type (might be due to invalid IL or missing references) //IL_2cce: Unknown result type (might be due to invalid IL or missing references) //IL_2cd3: Unknown result type (might be due to invalid IL or missing references) //IL_2cd9: Unknown result type (might be due to invalid IL or missing references) //IL_2cde: Unknown result type (might be due to invalid IL or missing references) //IL_2cea: Unknown result type (might be due to invalid IL or missing references) //IL_1e66: Unknown result type (might be due to invalid IL or missing references) //IL_1e6c: Unknown result type (might be due to invalid IL or missing references) //IL_1e71: Unknown result type (might be due to invalid IL or missing references) //IL_1e77: Unknown result type (might be due to invalid IL or missing references) //IL_1e7c: Unknown result type (might be due to invalid IL or missing references) //IL_1e82: Unknown result type (might be due to invalid IL or missing references) //IL_1e8c: Unknown result type (might be due to invalid IL or missing references) //IL_1e91: Unknown result type (might be due to invalid IL or missing references) //IL_1e97: Unknown result type (might be due to invalid IL or missing references) //IL_1ea1: Unknown result type (might be due to invalid IL or missing references) //IL_1ea7: Unknown result type (might be due to invalid IL or missing references) //IL_1eac: Unknown result type (might be due to invalid IL or missing references) //IL_1eb2: Unknown result type (might be due to invalid IL or missing references) //IL_1eb7: Unknown result type (might be due to invalid IL or missing references) //IL_1ebc: Unknown result type (might be due to invalid IL or missing references) //IL_1ec2: Unknown result type (might be due to invalid IL or missing references) //IL_1ecc: Unknown result type (might be due to invalid IL or missing references) //IL_1ed1: Unknown result type (might be due to invalid IL or missing references) //IL_1edc: Unknown result type (might be due to invalid IL or missing references) //IL_1ee2: Unknown result type (might be due to invalid IL or missing references) //IL_1ee7: Unknown result type (might be due to invalid IL or missing references) //IL_1eed: Unknown result type (might be due to invalid IL or missing references) //IL_1ef2: Unknown result type (might be due to invalid IL or missing references) //IL_1ef8: Unknown result type (might be due to invalid IL or missing references) //IL_1f02: Unknown result type (might be due to invalid IL or missing references) //IL_1f08: Unknown result type (might be due to invalid IL or missing references) //IL_1f0d: Unknown result type (might be due to invalid IL or missing references) //IL_1f13: Unknown result type (might be due to invalid IL or missing references) //IL_1f18: Unknown result type (might be due to invalid IL or missing references) //IL_1f1d: Unknown result type (might be due to invalid IL or missing references) //IL_1f23: Unknown result type (might be due to invalid IL or missing references) //IL_1f2d: Unknown result type (might be due to invalid IL or missing references) //IL_1f32: Unknown result type (might be due to invalid IL or missing references) //IL_1f3e: Unknown result type (might be due to invalid IL or missing references) //IL_1db2: Unknown result type (might be due to invalid IL or missing references) //IL_1db7: Unknown result type (might be due to invalid IL or missing references) //IL_122a: Unknown result type (might be due to invalid IL or missing references) //IL_1230: Unknown result type (might be due to invalid IL or missing references) //IL_1235: Unknown result type (might be due to invalid IL or missing references) //IL_123b: Unknown result type (might be due to invalid IL or missing references) //IL_1240: Unknown result type (might be due to invalid IL or missing references) //IL_1246: Unknown result type (might be due to invalid IL or missing references) //IL_1250: Unknown result type (might be due to invalid IL or missing references) //IL_1255: Unknown result type (might be due to invalid IL or missing references) //IL_125b: Unknown result type (might be due to invalid IL or missing references) //IL_1265: Unknown result type (might be due to invalid IL or missing references) //IL_126b: Unknown result type (might be due to invalid IL or missing references) //IL_1270: Unknown result type (might be due to invalid IL or missing references) //IL_1276: Unknown result type (might be due to invalid IL or missing references) //IL_127b: Unknown result type (might be due to invalid IL or missing references) //IL_1280: Unknown result type (might be due to invalid IL or missing references) //IL_1286: Unknown result type (might be due to invalid IL or missing references) //IL_1290: Unknown result type (might be due to invalid IL or missing references) //IL_1295: Unknown result type (might be due to invalid IL or missing references) //IL_12a0: Unknown result type (might be due to invalid IL or missing references) //IL_12a6: Unknown result type (might be due to invalid IL or missing references) //IL_12ab: Unknown result type (might be due to invalid IL or missing references) //IL_12b1: Unknown result type (might be due to invalid IL or missing references) //IL_12b6: Unknown result type (might be due to invalid IL or missing references) //IL_12bc: Unknown result type (might be due to invalid IL or missing references) //IL_12c6: Unknown result type (might be due to invalid IL or missing references) //IL_12cb: Unknown result type (might be due to invalid IL or missing references) //IL_12d1: Unknown result type (might be due to invalid IL or missing references) //IL_12db: Unknown result type (might be due to invalid IL or missing references) //IL_12e1: Unknown result type (might be due to invalid IL or missing references) //IL_12e6: Unknown result type (might be due to invalid IL or missing references) //IL_12ec: Unknown result type (might be due to invalid IL or missing references) //IL_12f1: Unknown result type (might be due to invalid IL or missing references) //IL_12f6: Unknown result type (might be due to invalid IL or missing references) //IL_12fc: Unknown result type (might be due to invalid IL or missing references) //IL_1306: Unknown result type (might be due to invalid IL or missing references) //IL_130b: Unknown result type (might be due to invalid IL or missing references) //IL_1317: Unknown result type (might be due to invalid IL or missing references) //IL_1176: Unknown result type (might be due to invalid IL or missing references) //IL_117b: Unknown result type (might be due to invalid IL or missing references) //IL_100a: Unknown result type (might be due to invalid IL or missing references) //IL_100f: Unknown result type (might be due to invalid IL or missing references) //IL_101e: Unknown result type (might be due to invalid IL or missing references) //IL_1023: Unknown result type (might be due to invalid IL or missing references) //IL_103f: Unknown result type (might be due to invalid IL or missing references) //IL_1044: Unknown result type (might be due to invalid IL or missing references) //IL_104d: Unknown result type (might be due to invalid IL or missing references) //IL_1058: Unknown result type (might be due to invalid IL or missing references) //IL_1069: Unknown result type (might be due to invalid IL or missing references) //IL_106e: Unknown result type (might be due to invalid IL or missing references) //IL_1073: Unknown result type (might be due to invalid IL or missing references) //IL_2dd7: Unknown result type (might be due to invalid IL or missing references) //IL_2ddc: Unknown result type (might be due to invalid IL or missing references) //IL_200c: Unknown result type (might be due to invalid IL or missing references) //IL_2012: Unknown result type (might be due to invalid IL or missing references) //IL_2017: Unknown result type (might be due to invalid IL or missing references) //IL_201d: Unknown result type (might be due to invalid IL or missing references) //IL_2022: Unknown result type (might be due to invalid IL or missing references) //IL_2028: Unknown result type (might be due to invalid IL or missing references) //IL_2032: Unknown result type (might be due to invalid IL or missing references) //IL_2037: Unknown result type (might be due to invalid IL or missing references) //IL_203d: Unknown result type (might be due to invalid IL or missing references) //IL_2047: Unknown result type (might be due to invalid IL or missing references) //IL_204d: Unknown result type (might be due to invalid IL or missing references) //IL_2052: Unknown result type (might be due to invalid IL or missing references) //IL_2058: Unknown result type (might be due to invalid IL or missing references) //IL_205d: Unknown result type (might be due to invalid IL or missing references) //IL_2062: Unknown result type (might be due to invalid IL or missing references) //IL_2068: Unknown result type (might be due to invalid IL or missing references) //IL_2072: Unknown result type (might be due to invalid IL or missing references) //IL_2077: Unknown result type (might be due to invalid IL or missing references) //IL_2082: Unknown result type (might be due to invalid IL or missing references) //IL_2088: Unknown result type (might be due to invalid IL or missing references) //IL_208d: Unknown result type (might be due to invalid IL or missing references) //IL_2093: Unknown result type (might be due to invalid IL or missing references) //IL_2098: Unknown result type (might be due to invalid IL or missing references) //IL_209e: Unknown result type (might be due to invalid IL or missing references) //IL_20a8: Unknown result type (might be due to invalid IL or missing references) //IL_20ae: Unknown result type (might be due to invalid IL or missing references) //IL_20b3: Unknown result type (might be due to invalid IL or missing references) //IL_20b9: Unknown result type (might be due to invalid IL or missing references) //IL_20be: Unknown result type (might be due to invalid IL or missing references) //IL_20c3: Unknown result type (might be due to invalid IL or missing references) //IL_20c9: Unknown result type (might be due to invalid IL or missing references) //IL_20d3: Unknown result type (might be due to invalid IL or missing references) //IL_20d8: Unknown result type (might be due to invalid IL or missing references) //IL_20e4: Unknown result type (might be due to invalid IL or missing references) //IL_1f58: Unknown result type (might be due to invalid IL or missing references) //IL_1f5d: Unknown result type (might be due to invalid IL or missing references) //IL_1dec: Unknown result type (might be due to invalid IL or missing references) //IL_1df1: Unknown result type (might be due to invalid IL or missing references) //IL_1e00: Unknown result type (might be due to invalid IL or missing references) //IL_1e05: Unknown result type (might be due to invalid IL or missing references) //IL_1e21: Unknown result type (might be due to invalid IL or missing references) //IL_1e26: Unknown result type (might be due to invalid IL or missing references) //IL_1e2f: Unknown result type (might be due to invalid IL or missing references) //IL_1e3a: Unknown result type (might be due to invalid IL or missing references) //IL_1e4b: Unknown result type (might be due to invalid IL or missing references) //IL_1e50: Unknown result type (might be due to invalid IL or missing references) //IL_1e55: Unknown result type (might be due to invalid IL or missing references) //IL_13e5: Unknown result type (might be due to invalid IL or missing references) //IL_13eb: Unknown result type (might be due to invalid IL or missing references) //IL_13f0: Unknown result type (might be due to invalid IL or missing references) //IL_13f6: Unknown result type (might be due to invalid IL or missing references) //IL_13fb: Unknown result type (might be due to invalid IL or missing references) //IL_1401: Unknown result type (might be due to invalid IL or missing references) //IL_140b: Unknown result type (might be due to invalid IL or missing references) //IL_1410: Unknown result type (might be due to invalid IL or missing references) //IL_1416: Unknown result type (might be due to invalid IL or missing references) //IL_1420: Unknown result type (might be due to invalid IL or missing references) //IL_1426: Unknown result type (might be due to invalid IL or missing references) //IL_142b: Unknown result type (might be due to invalid IL or missing references) //IL_1431: Unknown result type (might be due to invalid IL or missing references) //IL_1436: Unknown result type (might be due to invalid IL or missing references) //IL_143b: Unknown result type (might be due to invalid IL or missing references) //IL_1441: Unknown result type (might be due to invalid IL or missing references) //IL_144b: Unknown result type (might be due to invalid IL or missing references) //IL_1450: Unknown result type (might be due to invalid IL or missing references) //IL_145b: Unknown result type (might be due to invalid IL or missing references) //IL_1461: Unknown result type (might be due to invalid IL or missing references) //IL_1466: Unknown result type (might be due to invalid IL or missing references) //IL_146c: Unknown result type (might be due to invalid IL or missing references) //IL_1471: Unknown result type (might be due to invalid IL or missing references) //IL_1477: Unknown result type (might be due to invalid IL or missing references) //IL_1481: Unknown result type (might be due to invalid IL or missing references) //IL_1486: Unknown result type (might be due to invalid IL or missing references) //IL_148c: Unknown result type (might be due to invalid IL or missing references) //IL_1496: Unknown result type (might be due to invalid IL or missing references) //IL_149c: Unknown result type (might be due to invalid IL or missing references) //IL_14a1: Unknown result type (might be due to invalid IL or missing references) //IL_14a7: Unknown result type (might be due to invalid IL or missing references) //IL_14ac: Unknown result type (might be due to invalid IL or missing references) //IL_14b1: Unknown result type (might be due to invalid IL or missing references) //IL_14b7: Unknown result type (might be due to invalid IL or missing references) //IL_14c1: Unknown result type (might be due to invalid IL or missing references) //IL_14c6: Unknown result type (might be due to invalid IL or missing references) //IL_14d2: Unknown result type (might be due to invalid IL or missing references) //IL_1331: Unknown result type (might be due to invalid IL or missing references) //IL_1336: Unknown result type (might be due to invalid IL or missing references) //IL_11b0: Unknown result type (might be due to invalid IL or missing references) //IL_11b5: Unknown result type (might be due to invalid IL or missing references) //IL_11c4: Unknown result type (might be due to invalid IL or missing references) //IL_11c9: Unknown result type (might be due to invalid IL or missing references) //IL_11e5: Unknown result type (might be due to invalid IL or missing references) //IL_11ea: Unknown result type (might be due to invalid IL or missing references) //IL_11f3: Unknown result type (might be due to invalid IL or missing references) //IL_11fe: Unknown result type (might be due to invalid IL or missing references) //IL_120f: Unknown result type (might be due to invalid IL or missing references) //IL_1214: Unknown result type (might be due to invalid IL or missing references) //IL_1219: Unknown result type (might be due to invalid IL or missing references) //IL_2e18: Unknown result type (might be due to invalid IL or missing references) //IL_2e1e: Unknown result type (might be due to invalid IL or missing references) //IL_2e23: Unknown result type (might be due to invalid IL or missing references) //IL_2e29: Unknown result type (might be due to invalid IL or missing references) //IL_2e2e: Unknown result type (might be due to invalid IL or missing references) //IL_2e34: Unknown result type (might be due to invalid IL or missing references) //IL_2e3e: Unknown result type (might be due to invalid IL or missing references) //IL_2e43: Unknown result type (might be due to invalid IL or missing references) //IL_2e49: Unknown result type (might be due to invalid IL or missing references) //IL_2e53: Unknown result type (might be due to invalid IL or missing references) //IL_2e59: Unknown result type (might be due to invalid IL or missing references) //IL_2e5e: Unknown result type (might be due to invalid IL or missing references) //IL_2e64: Unknown result type (might be due to invalid IL or missing references) //IL_2e69: Unknown result type (might be due to invalid IL or missing references) //IL_2e6e: Unknown result type (might be due to invalid IL or missing references) //IL_2e79: Unknown result type (might be due to invalid IL or missing references) //IL_2e7f: Unknown result type (might be due to invalid IL or missing references) //IL_2e84: Unknown result type (might be due to invalid IL or missing references) //IL_2e8a: Unknown result type (might be due to invalid IL or missing references) //IL_2e8f: Unknown result type (might be due to invalid IL or missing references) //IL_2e95: Unknown result type (might be due to invalid IL or missing references) //IL_2e9f: Unknown result type (might be due to invalid IL or missing references) //IL_2ea5: Unknown result type (might be due to invalid IL or missing references) //IL_2eaa: Unknown result type (might be due to invalid IL or missing references) //IL_2eb0: Unknown result type (might be due to invalid IL or missing references) //IL_2eb5: Unknown result type (might be due to invalid IL or missing references) //IL_2eba: Unknown result type (might be due to invalid IL or missing references) //IL_2ec6: Unknown result type (might be due to invalid IL or missing references) //IL_21b2: Unknown result type (might be due to invalid IL or missing references) //IL_21b8: Unknown result type (might be due to invalid IL or missing references) //IL_21bd: Unknown result type (might be due to invalid IL or missing references) //IL_21c3: Unknown result type (might be due to invalid IL or missing references) //IL_21c8: Unknown result type (might be due to invalid IL or missing references) //IL_21ce: Unknown result type (might be due to invalid IL or missing references) //IL_21d8: Unknown result type (might be due to invalid IL or missing references) //IL_21dd: Unknown result type (might be due to invalid IL or missing references) //IL_21e3: Unknown result type (might be due to invalid IL or missing references) //IL_21ed: Unknown result type (might be due to invalid IL or missing references) //IL_21f3: Unknown result type (might be due to invalid IL or missing references) //IL_21f8: Unknown result type (might be due to invalid IL or missing references) //IL_21fe: Unknown result type (might be due to invalid IL or missing references) //IL_2203: Unknown result type (might be due to invalid IL or missing references) //IL_2208: Unknown result type (might be due to invalid IL or missing references) //IL_220e: Unknown result type (might be due to invalid IL or missing references) //IL_2218: Unknown result type (might be due to invalid IL or missing references) //IL_221d: Unknown result type (might be due to invalid IL or missing references) //IL_2228: Unknown result type (might be due to invalid IL or missing references) //IL_222e: Unknown result type (might be due to invalid IL or missing references) //IL_2233: Unknown result type (might be due to invalid IL or missing references) //IL_2239: Unknown result type (might be due to invalid IL or missing references) //IL_223e: Unknown result type (might be due to invalid IL or missing references) //IL_2244: Unknown result type (might be due to invalid IL or missing references) //IL_224e: Unknown result type (might be due to invalid IL or missing references) //IL_2254: Unknown result type (might be due to invalid IL or missing references) //IL_2259: Unknown result type (might be due to invalid IL or missing references) //IL_225f: Unknown result type (might be due to invalid IL or missing references) //IL_2264: Unknown result type (might be due to invalid IL or missing references) //IL_2269: Unknown result type (might be due to invalid IL or missing references) //IL_226f: Unknown result type (might be due to invalid IL or missing references) //IL_2279: Unknown result type (might be due to invalid IL or missing references) //IL_227e: Unknown result type (might be due to invalid IL or missing references) //IL_228a: Unknown result type (might be due to invalid IL or missing references) //IL_20fe: Unknown result type (might be due to invalid IL or missing references) //IL_2103: Unknown result type (might be due to invalid IL or missing references) //IL_1f92: Unknown result type (might be due to invalid IL or missing references) //IL_1f97: Unknown result type (might be due to invalid IL or missing references) //IL_1fa6: Unknown result type (might be due to invalid IL or missing references) //IL_1fab: Unknown result type (might be due to invalid IL or missing references) //IL_1fc7: Unknown result type (might be due to invalid IL or missing references) //IL_1fcc: Unknown result type (might be due to invalid IL or missing references) //IL_1fd5: Unknown result type (might be due to invalid IL or missing references) //IL_1fe0: Unknown result type (might be due to invalid IL or missing references) //IL_1ff1: Unknown result type (might be due to invalid IL or missing references) //IL_1ff6: Unknown result type (might be due to invalid IL or missing references) //IL_1ffb: Unknown result type (might be due to invalid IL or missing references) //IL_15a0: Unknown result type (might be due to invalid IL or missing references) //IL_15a6: Unknown result type (might be due to invalid IL or missing references) //IL_15ab: Unknown result type (might be due to invalid IL or missing references) //IL_15b1: Unknown result type (might be due to invalid IL or missing references) //IL_15b6: Unknown result type (might be due to invalid IL or missing references) //IL_15bc: Unknown result type (might be due to invalid IL or missing references) //IL_15c6: Unknown result type (might be due to invalid IL or missing references) //IL_15cb: Unknown result type (might be due to invalid IL or missing references) //IL_15d1: Unknown result type (might be due to invalid IL or missing references) //IL_15db: Unknown result type (might be due to invalid IL or missing references) //IL_15e1: Unknown result type (might be due to invalid IL or missing references) //IL_15e6: Unknown result type (might be due to invalid IL or missing references) //IL_15ec: Unknown result type (might be due to invalid IL or missing references) //IL_15f1: Unknown result type (might be due to invalid IL or missing references) //IL_15f6: Unknown result type (might be due to invalid IL or missing references) //IL_15fc: Unknown result type (might be due to invalid IL or missing references) //IL_1606: Unknown result type (might be due to invalid IL or missing references) //IL_160b: Unknown result type (might be due to invalid IL or missing references) //IL_1616: Unknown result type (might be due to invalid IL or missing references) //IL_161c: Unknown result type (might be due to invalid IL or missing references) //IL_1621: Unknown result type (might be due to invalid IL or missing references) //IL_1627: Unknown result type (might be due to invalid IL or missing references) //IL_162c: Unknown result type (might be due to invalid IL or missing references) //IL_1632: Unknown result type (might be due to invalid IL or missing references) //IL_163c: Unknown result type (might be due to invalid IL or missing references) //IL_1641: Unknown result type (might be due to invalid IL or missing references) //IL_1647: Unknown result type (might be due to invalid IL or missing references) //IL_1651: Unknown result type (might be due to invalid IL or missing references) //IL_1657: Unknown result type (might be due to invalid IL or missing references) //IL_165c: Unknown result type (might be due to invalid IL or missing references) //IL_1662: Unknown result type (might be due to invalid IL or missing references) //IL_1667: Unknown result type (might be due to invalid IL or missing references) //IL_166c: Unknown result type (might be due to invalid IL or missing references) //IL_1672: Unknown result type (might be due to invalid IL or missing references) //IL_167c: Unknown result type (might be due to invalid IL or missing references) //IL_1681: Unknown result type (might be due to invalid IL or missing references) //IL_168d: Unknown result type (might be due to invalid IL or missing references) //IL_14ec: Unknown result type (might be due to invalid IL or missing references) //IL_14f1: Unknown result type (might be due to invalid IL or missing references) //IL_136b: Unknown result type (might be due to invalid IL or missing references) //IL_1370: Unknown result type (might be due to invalid IL or missing references) //IL_137f: Unknown result type (might be due to invalid IL or missing references) //IL_1384: Unknown result type (might be due to invalid IL or missing references) //IL_13a0: Unknown result type (might be due to invalid IL or missing references) //IL_13a5: Unknown result type (might be due to invalid IL or missing references) //IL_13ae: Unknown result type (might be due to invalid IL or missing references) //IL_13b9: Unknown result type (might be due to invalid IL or missing references) //IL_13ca: Unknown result type (might be due to invalid IL or missing references) //IL_13cf: Unknown result type (might be due to invalid IL or missing references) //IL_13d4: Unknown result type (might be due to invalid IL or missing references) //IL_2f94: Unknown result type (might be due to invalid IL or missing references) //IL_2f9a: Unknown result type (might be due to invalid IL or missing references) //IL_2f9f: Unknown result type (might be due to invalid IL or missing references) //IL_2fa5: Unknown result type (might be due to invalid IL or missing references) //IL_2faa: Unknown result type (might be due to invalid IL or missing references) //IL_2fb0: Unknown result type (might be due to invalid IL or missing references) //IL_2fba: Unknown result type (might be due to invalid IL or missing references) //IL_2fbf: Unknown result type (might be due to invalid IL or missing references) //IL_2fc5: Unknown result type (might be due to invalid IL or missing references) //IL_2fcf: Unknown result type (might be due to invalid IL or missing references) //IL_2fd5: Unknown result type (might be due to invalid IL or missing references) //IL_2fda: Unknown result type (might be due to invalid IL or missing references) //IL_2fe0: Unknown result type (might be due to invalid IL or missing references) //IL_2fe5: Unknown result type (might be due to invalid IL or missing references) //IL_2fea: Unknown result type (might be due to invalid IL or missing references) //IL_2ff0: Unknown result type (might be due to invalid IL or missing references) //IL_2ffa: Unknown result type (might be due to invalid IL or missing references) //IL_2fff: Unknown result type (might be due to invalid IL or missing references) //IL_300a: Unknown result type (might be due to invalid IL or missing references) //IL_3010: Unknown result type (might be due to invalid IL or missing references) //IL_3015: Unknown result type (might be due to invalid IL or missing references) //IL_301b: Unknown result type (might be due to invalid IL or missing references) //IL_3020: Unknown result type (might be due to invalid IL or missing references) //IL_3026: Unknown result type (might be due to invalid IL or missing references) //IL_3030: Unknown result type (might be due to invalid IL or missing references) //IL_3036: Unknown result type (might be due to invalid IL or missing references) //IL_303b: Unknown result type (might be due to invalid IL or missing references) //IL_3041: Unknown result type (might be due to invalid IL or missing references) //IL_3046: Unknown result type (might be due to invalid IL or missing references) //IL_304b: Unknown result type (might be due to invalid IL or missing references) //IL_3051: Unknown result type (might be due to invalid IL or missing references) //IL_305b: Unknown result type (might be due to invalid IL or missing references) //IL_3060: Unknown result type (might be due to invalid IL or missing references) //IL_306c: Unknown result type (might be due to invalid IL or missing references) //IL_2ee0: Unknown result type (might be due to invalid IL or missing references) //IL_2ee5: Unknown result type (might be due to invalid IL or missing references) //IL_2358: Unknown result type (might be due to invalid IL or missing references) //IL_235e: Unknown result type (might be due to invalid IL or missing references) //IL_2363: Unknown result type (might be due to invalid IL or missing references) //IL_2369: Unknown result type (might be due to invalid IL or missing references) //IL_236e: Unknown result type (might be due to invalid IL or missing references) //IL_2374: Unknown result type (might be due to invalid IL or missing references) //IL_237e: Unknown result type (might be due to invalid IL or missing references) //IL_2383: Unknown result type (might be due to invalid IL or missing references) //IL_2389: Unknown result type (might be due to invalid IL or missing references) //IL_2393: Unknown result type (might be due to invalid IL or missing references) //IL_2399: Unknown result type (might be due to invalid IL or missing references) //IL_239e: Unknown result type (might be due to invalid IL or missing references) //IL_23a4: Unknown result type (might be due to invalid IL or missing references) //IL_23a9: Unknown result type (might be due to invalid IL or missing references) //IL_23ae: Unknown result type (might be due to invalid IL or missing references) //IL_23b4: Unknown result type (might be due to invalid IL or missing references) //IL_23be: Unknown result type (might be due to invalid IL or missing references) //IL_23c3: Unknown result type (might be due to invalid IL or missing references) //IL_23ce: Unknown result type (might be due to invalid IL or missing references) //IL_23d4: Unknown result type (might be due to invalid IL or missing references) //IL_23d9: Unknown result type (might be due to invalid IL or missing references) //IL_23df: Unknown result type (might be due to invalid IL or missing references) //IL_23e4: Unknown result type (might be due to invalid IL or missing references) //IL_23ea: Unknown result type (might be due to invalid IL or missing references) //IL_23f4: Unknown result type (might be due to invalid IL or missing references) //IL_23f9: Unknown result type (might be due to invalid IL or missing references) //IL_23ff: Unknown result type (might be due to invalid IL or missing references) //IL_2409: Unknown result type (might be due to invalid IL or missing references) //IL_240f: Unknown result type (might be due to invalid IL or missing references) //IL_2414: Unknown result type (might be due to invalid IL or missing references) //IL_241a: Unknown result type (might be due to invalid IL or missing references) //IL_241f: Unknown result type (might be due to invalid IL or missing references) //IL_2424: Unknown result type (might be due to invalid IL or missing references) //IL_242a: Unknown result type (might be due to invalid IL or missing references) //IL_2434: Unknown result type (might be due to invalid IL or missing references) //IL_2439: Unknown result type (might be due to invalid IL or missing references) //IL_2445: Unknown result type (might be due to invalid IL or missing references) //IL_22a4: Unknown result type (might be due to invalid IL or missing references) //IL_22a9: Unknown result type (might be due to invalid IL or missing references) //IL_2138: Unknown result type (might be due to invalid IL or missing references) //IL_213d: Unknown result type (might be due to invalid IL or missing references) //IL_214c: Unknown result type (might be due to invalid IL or missing references) //IL_2151: Unknown result type (might be due to invalid IL or missing references) //IL_216d: Unknown result type (might be due to invalid IL or missing references) //IL_2172: Unknown result type (might be due to invalid IL or missing references) //IL_217b: Unknown result type (might be due to invalid IL or missing references) //IL_2186: Unknown result type (might be due to invalid IL or missing references) //IL_2197: Unknown result type (might be due to invalid IL or missing references) //IL_219c: Unknown result type (might be due to invalid IL or missing references) //IL_21a1: Unknown result type (might be due to invalid IL or missing references) //IL_175b: Unknown result type (might be due to invalid IL or missing references) //IL_1761: Unknown result type (might be due to invalid IL or missing references) //IL_1766: Unknown result type (might be due to invalid IL or missing references) //IL_176c: Unknown result type (might be due to invalid IL or missing references) //IL_1771: Unknown result type (might be due to invalid IL or missing references) //IL_1777: Unknown result type (might be due to invalid IL or missing references) //IL_1781: Unknown result type (might be due to invalid IL or missing references) //IL_1786: Unknown result type (might be due to invalid IL or missing references) //IL_178c: Unknown result type (might be due to invalid IL or missing references) //IL_1796: Unknown result type (might be due to invalid IL or missing references) //IL_179c: Unknown result type (might be due to invalid IL or missing references) //IL_17a1: Unknown result type (might be due to invalid IL or missing references) //IL_17a7: Unknown result type (might be due to invalid IL or missing references) //IL_17ac: Unknown result type (might be due to invalid IL or missing references) //IL_17b1: Unknown result type (might be due to invalid IL or missing references) //IL_17b7: Unknown result type (might be due to invalid IL or missing references) //IL_17c1: Unknown result type (might be due to invalid IL or missing references) //IL_17c6: Unknown result type (might be due to invalid IL or missing references) //IL_17d1: Unknown result type (might be due to invalid IL or missing references) //IL_17d7: Unknown result type (might be due to invalid IL or missing references) //IL_17dc: Unknown result type (might be due to invalid IL or missing references) //IL_17e2: Unknown result type (might be due to invalid IL or missing references) //IL_17e7: Unknown result type (might be due to invalid IL or missing references) //IL_17ed: Unknown result type (might be due to invalid IL or missing references) //IL_17f7: Unknown result type (might be due to invalid IL or missing references) //IL_17fc: Unknown result type (might be due to invalid IL or missing references) //IL_1802: Unknown result type (might be due to invalid IL or missing references) //IL_180c: Unknown result type (might be due to invalid IL or missing references) //IL_1812: Unknown result type (might be due to invalid IL or missing references) //IL_1817: Unknown result type (might be due to invalid IL or missing references) //IL_181d: Unknown result type (might be due to invalid IL or missing references) //IL_1822: Unknown result type (might be due to invalid IL or missing references) //IL_1827: Unknown result type (might be due to invalid IL or missing references) //IL_182d: Unknown result type (might be due to invalid IL or missing references) //IL_1837: Unknown result type (might be due to invalid IL or missing references) //IL_183c: Unknown result type (might be due to invalid IL or missing references) //IL_1848: Unknown result type (might be due to invalid IL or missing references) //IL_16a7: Unknown result type (might be due to invalid IL or missing references) //IL_16ac: Unknown result type (might be due to invalid IL or missing references) //IL_1526: Unknown result type (might be due to invalid IL or missing references) //IL_152b: Unknown result type (might be due to invalid IL or missing references) //IL_153a: Unknown result type (might be due to invalid IL or missing references) //IL_153f: Unknown result type (might be due to invalid IL or missing references) //IL_155b: Unknown result type (might be due to invalid IL or missing references) //IL_1560: Unknown result type (might be due to invalid IL or missing references) //IL_1569: Unknown result type (might be due to invalid IL or missing references) //IL_1574: Unknown result type (might be due to invalid IL or missing references) //IL_1585: Unknown result type (might be due to invalid IL or missing references) //IL_158a: Unknown result type (might be due to invalid IL or missing references) //IL_158f: Unknown result type (might be due to invalid IL or missing references) //IL_313a: Unknown result type (might be due to invalid IL or missing references) //IL_3140: Unknown result type (might be due to invalid IL or missing references) //IL_3145: Unknown result type (might be due to invalid IL or missing references) //IL_314b: Unknown result type (might be due to invalid IL or missing references) //IL_3150: Unknown result type (might be due to invalid IL or missing references) //IL_3156: Unknown result type (might be due to invalid IL or missing references) //IL_3160: Unknown result type (might be due to invalid IL or missing references) //IL_3165: Unknown result type (might be due to invalid IL or missing references) //IL_316b: Unknown result type (might be due to invalid IL or missing references) //IL_3175: Unknown result type (might be due to invalid IL or missing references) //IL_317b: Unknown result type (might be due to invalid IL or missing references) //IL_3180: Unknown result type (might be due to invalid IL or missing references) //IL_3186: Unknown result type (might be due to invalid IL or missing references) //IL_318b: Unknown result type (might be due to invalid IL or missing references) //IL_3190: Unknown result type (might be due to invalid IL or missing references) //IL_3196: Unknown result type (might be due to invalid IL or missing references) //IL_31a0: Unknown result type (might be due to invalid IL or missing references) //IL_31a5: Unknown result type (might be due to invalid IL or missing references) //IL_31b0: Unknown result type (might be due to invalid IL or missing references) //IL_31b6: Unknown result type (might be due to invalid IL or missing references) //IL_31bb: Unknown result type (might be due to invalid IL or missing references) //IL_31c1: Unknown result type (might be due to invalid IL or missing references) //IL_31c6: Unknown result type (might be due to invalid IL or missing references) //IL_31cc: Unknown result type (might be due to invalid IL or missing references) //IL_31d6: Unknown result type (might be due to invalid IL or missing references) //IL_31dc: Unknown result type (might be due to invalid IL or missing references) //IL_31e1: Unknown result type (might be due to invalid IL or missing references) //IL_31e7: Unknown result type (might be due to invalid IL or missing references) //IL_31ec: Unknown result type (might be due to invalid IL or missing references) //IL_31f1: Unknown result type (might be due to invalid IL or missing references) //IL_31f7: Unknown result type (might be due to invalid IL or missing references) //IL_3201: Unknown result type (might be due to invalid IL or missing references) //IL_3206: Unknown result type (might be due to invalid IL or missing references) //IL_3212: Unknown result type (might be due to invalid IL or missing references) //IL_3086: Unknown result type (might be due to invalid IL or missing references) //IL_308b: Unknown result type (might be due to invalid IL or missing references) //IL_2f1a: Unknown result type (might be due to invalid IL or missing references) //IL_2f1f: Unknown result type (might be due to invalid IL or missing references) //IL_2f2e: Unknown result type (might be due to invalid IL or missing references) //IL_2f33: Unknown result type (might be due to invalid IL or missing references) //IL_2f4f: Unknown result type (might be due to invalid IL or missing references) //IL_2f54: Unknown result type (might be due to invalid IL or missing references) //IL_2f5d: Unknown result type (might be due to invalid IL or missing references) //IL_2f68: Unknown result type (might be due to invalid IL or missing references) //IL_2f79: Unknown result type (might be due to invalid IL or missing references) //IL_2f7e: Unknown result type (might be due to invalid IL or missing references) //IL_2f83: Unknown result type (might be due to invalid IL or missing references) //IL_2513: Unknown result type (might be due to invalid IL or missing references) //IL_2519: Unknown result type (might be due to invalid IL or missing references) //IL_251e: Unknown result type (might be due to invalid IL or missing references) //IL_2524: Unknown result type (might be due to invalid IL or missing references) //IL_2529: Unknown result type (might be due to invalid IL or missing references) //IL_252f: Unknown result type (might be due to invalid IL or missing references) //IL_2539: Unknown result type (might be due to invalid IL or missing references) //IL_253e: Unknown result type (might be due to invalid IL or missing references) //IL_2544: Unknown result type (might be due to invalid IL or missing references) //IL_254e: Unknown result type (might be due to invalid IL or missing references) //IL_2554: Unknown result type (might be due to invalid IL or missing references) //IL_2559: Unknown result type (might be due to invalid IL or missing references) //IL_255f: Unknown result type (might be due to invalid IL or missing references) //IL_2564: Unknown result type (might be due to invalid IL or missing references) //IL_2569: Unknown result type (might be due to invalid IL or missing references) //IL_256f: Unknown result type (might be due to invalid IL or missing references) //IL_2579: Unknown result type (might be due to invalid IL or missing references) //IL_257e: Unknown result type (might be due to invalid IL or missing references) //IL_2589: Unknown result type (might be due to invalid IL or missing references) //IL_258f: Unknown result type (might be due to invalid IL or missing references) //IL_2594: Unknown result type (might be due to invalid IL or missing references) //IL_259a: Unknown result type (might be due to invalid IL or missing references) //IL_259f: Unknown result type (might be due to invalid IL or missing references) //IL_25a5: Unknown result type (might be due to invalid IL or missing references) //IL_25af: Unknown result type (might be due to invalid IL or missing references) //IL_25b4: Unknown result type (might be due to invalid IL or missing references) //IL_25ba: Unknown result type (might be due to invalid IL or missing references) //IL_25c4: Unknown result type (might be due to invalid IL or missing references) //IL_25ca: Unknown result type (might be due to invalid IL or missing references) //IL_25cf: Unknown result type (might be due to invalid IL or missing references) //IL_25d5: Unknown result type (might be due to invalid IL or missing references) //IL_25da: Unknown result type (might be due to invalid IL or missing references) //IL_25df: Unknown result type (might be due to invalid IL or missing references) //IL_25e5: Unknown result type (might be due to invalid IL or missing references) //IL_25ef: Unknown result type (might be due to invalid IL or missing references) //IL_25f4: Unknown result type (might be due to invalid IL or missing references) //IL_2600: Unknown result type (might be due to invalid IL or missing references) //IL_245f: Unknown result type (might be due to invalid IL or missing references) //IL_2464: Unknown result type (might be due to invalid IL or missing references) //IL_22de: Unknown result type (might be due to invalid IL or missing references) //IL_22e3: Unknown result type (might be due to invalid IL or missing references) //IL_22f2: Unknown result type (might be due to invalid IL or missing references) //IL_22f7: Unknown result type (might be due to invalid IL or missing references) //IL_2313: Unknown result type (might be due to invalid IL or missing references) //IL_2318: Unknown result type (might be due to invalid IL or missing references) //IL_2321: Unknown result type (might be due to invalid IL or missing references) //IL_232c: Unknown result type (might be due to invalid IL or missing references) //IL_233d: Unknown result type (might be due to invalid IL or missing references) //IL_2342: Unknown result type (might be due to invalid IL or missing references) //IL_2347: Unknown result type (might be due to invalid IL or missing references) //IL_1918: Unknown result type (might be due to invalid IL or missing references) //IL_191d: Unknown result type (might be due to invalid IL or missing references) //IL_192c: Unknown result type (might be due to invalid IL or missing references) //IL_1931: Unknown result type (might be due to invalid IL or missing references) //IL_1948: Unknown result type (might be due to invalid IL or missing references) //IL_194d: Unknown result type (might be due to invalid IL or missing references) //IL_1969: Unknown result type (might be due to invalid IL or missing references) //IL_196e: Unknown result type (might be due to invalid IL or missing references) //IL_197d: Unknown result type (might be due to invalid IL or missing references) //IL_1982: Unknown result type (might be due to invalid IL or missing references) //IL_1993: Unknown result type (might be due to invalid IL or missing references) //IL_199e: Unknown result type (might be due to invalid IL or missing references) //IL_19a3: Unknown result type (might be due to invalid IL or missing references) //IL_19cc: Unknown result type (might be due to invalid IL or missing references) //IL_19d1: Unknown result type (might be due to invalid IL or missing references) //IL_19e8: Unknown result type (might be due to invalid IL or missing references) //IL_19ed: Unknown result type (might be due to invalid IL or missing references) //IL_19f2: Unknown result type (might be due to invalid IL or missing references) //IL_1862: Unknown result type (might be due to invalid IL or missing references) //IL_1867: Unknown result type (might be due to invalid IL or missing references) //IL_16e1: Unknown result type (might be due to invalid IL or missing references) //IL_16e6: Unknown result type (might be due to invalid IL or missing references) //IL_16f5: Unknown result type (might be due to invalid IL or missing references) //IL_16fa: Unknown result type (might be due to invalid IL or missing references) //IL_1716: Unknown result type (might be due to invalid IL or missing references) //IL_171b: Unknown result type (might be due to invalid IL or missing references) //IL_1724: Unknown result type (might be due to invalid IL or missing references) //IL_172f: Unknown result type (might be due to invalid IL or missing references) //IL_1740: Unknown result type (might be due to invalid IL or missing references) //IL_1745: Unknown result type (might be due to invalid IL or missing references) //IL_174a: Unknown result type (might be due to invalid IL or missing references) //IL_32e0: Unknown result type (might be due to invalid IL or missing references) //IL_32e6: Unknown result type (might be due to invalid IL or missing references) //IL_32eb: Unknown result type (might be due to invalid IL or missing references) //IL_32f1: Unknown result type (might be due to invalid IL or missing references) //IL_32f6: Unknown result type (might be due to invalid IL or missing references) //IL_32fc: Unknown result type (might be due to invalid IL or missing references) //IL_3306: Unknown result type (might be due to invalid IL or missing references) //IL_330b: Unknown result type (might be due to invalid IL or missing references) //IL_3311: Unknown result type (might be due to invalid IL or missing references) //IL_331b: Unknown result type (might be due to invalid IL or missing references) //IL_3321: Unknown result type (might be due to invalid IL or missing references) //IL_3326: Unknown result type (might be due to invalid IL or missing references) //IL_332c: Unknown result type (might be due to invalid IL or missing references) //IL_3331: Unknown result type (might be due to invalid IL or missing references) //IL_3336: Unknown result type (might be due to invalid IL or missing references) //IL_333c: Unknown result type (might be due to invalid IL or missing references) //IL_3346: Unknown result type (might be due to invalid IL or missing references) //IL_334b: Unknown result type (might be due to invalid IL or missing references) //IL_3356: Unknown result type (might be due to invalid IL or missing references) //IL_335c: Unknown result type (might be due to invalid IL or missing references) //IL_3361: Unknown result type (might be due to invalid IL or missing references) //IL_3367: Unknown result type (might be due to invalid IL or missing references) //IL_336c: Unknown result type (might be due to invalid IL or missing references) //IL_3372: Unknown result type (might be due to invalid IL or missing references) //IL_337c: Unknown result type (might be due to invalid IL or missing references) //IL_3382: Unknown result type (might be due to invalid IL or missing references) //IL_3387: Unknown result type (might be due to invalid IL or missing references) //IL_338d: Unknown result type (might be due to invalid IL or missing references) //IL_3392: Unknown result type (might be due to invalid IL or missing references) //IL_3397: Unknown result type (might be due to invalid IL or missing references) //IL_339d: Unknown result type (might be due to invalid IL or missing references) //IL_33a7: Unknown result type (might be due to invalid IL or missing references) //IL_33ac: Unknown result type (might be due to invalid IL or missing references) //IL_33b8: Unknown result type (might be due to invalid IL or missing references) //IL_322c: Unknown result type (might be due to invalid IL or missing references) //IL_3231: Unknown result type (might be due to invalid IL or missing references) //IL_30c0: Unknown result type (might be due to invalid IL or missing references) //IL_30c5: Unknown result type (might be due to invalid IL or missing references) //IL_30d4: Unknown result type (might be due to invalid IL or missing references) //IL_30d9: Unknown result type (might be due to invalid IL or missing references) //IL_30f5: Unknown result type (might be due to invalid IL or missing references) //IL_30fa: Unknown result type (might be due to invalid IL or missing references) //IL_3103: Unknown result type (might be due to invalid IL or missing references) //IL_310e: Unknown result type (might be due to invalid IL or missing references) //IL_311f: Unknown result type (might be due to invalid IL or missing references) //IL_3124: Unknown result type (might be due to invalid IL or missing references) //IL_3129: Unknown result type (might be due to invalid IL or missing references) //IL_26ce: Unknown result type (might be due to invalid IL or missing references) //IL_26d4: Unknown result type (might be due to invalid IL or missing references) //IL_26d9: Unknown result type (might be due to invalid IL or missing references) //IL_26df: Unknown result type (might be due to invalid IL or missing references) //IL_26e4: Unknown result type (might be due to invalid IL or missing references) //IL_26ea: Unknown result type (might be due to invalid IL or missing references) //IL_26f4: Unknown result type (might be due to invalid IL or missing references) //IL_26f9: Unknown result type (might be due to invalid IL or missing references) //IL_26ff: Unknown result type (might be due to invalid IL or missing references) //IL_2709: Unknown result type (might be due to invalid IL or missing references) //IL_270f: Unknown result type (might be due to invalid IL or missing references) //IL_2714: Unknown result type (might be due to invalid IL or missing references) //IL_271a: Unknown result type (might be due to invalid IL or missing references) //IL_271f: Unknown result type (might be due to invalid IL or missing references) //IL_2724: Unknown result type (might be due to invalid IL or missing references) //IL_272a: Unknown result type (might be due to invalid IL or missing references) //IL_2734: Unknown result type (might be due to invalid IL or missing references) //IL_2739: Unknown result type (might be due to invalid IL or missing references) //IL_2744: Unknown result type (might be due to invalid IL or missing references) //IL_274a: Unknown result type (might be due to invalid IL or missing references) //IL_274f: Unknown result type (might be due to invalid IL or missing references) //IL_2755: Unknown result type (might be due to invalid IL or missing references) //IL_275a: Unknown result type (might be due to invalid IL or missing references) //IL_2760: Unknown result type (might be due to invalid IL or missing references) //IL_276a: Unknown result type (might be due to invalid IL or missing references) //IL_276f: Unknown result type (might be due to invalid IL or missing references) //IL_2775: Unknown result type (might be due to invalid IL or missing references) //IL_277f: Unknown result type (might be due to invalid IL or missing references) //IL_2785: Unknown result type (might be due to invalid IL or missing references) //IL_278a: Unknown result type (might be due to invalid IL or missing references) //IL_2790: Unknown result type (might be due to invalid IL or missing references) //IL_2795: Unknown result type (might be due to invalid IL or missing references) //IL_279a: Unknown result type (might be due to invalid IL or missing references) //IL_27a0: Unknown result type (might be due to invalid IL or missing references) //IL_27aa: Unknown result type (might be due to invalid IL or missing references) //IL_27af: Unknown result type (might be due to invalid IL or missing references) //IL_27bb: Unknown result type (might be due to invalid IL or missing references) //IL_261a: Unknown result type (might be due to invalid IL or missing references) //IL_261f: Unknown result type (might be due to invalid IL or missing references) //IL_2499: Unknown result type (might be due to invalid IL or missing references) //IL_249e: Unknown result type (might be due to invalid IL or missing references) //IL_24ad: Unknown result type (might be due to invalid IL or missing references) //IL_24b2: Unknown result type (might be due to invalid IL or missing references) //IL_24ce: Unknown result type (might be due to invalid IL or missing references) //IL_24d3: Unknown result type (might be due to invalid IL or missing references) //IL_24dc: Unknown result type (might be due to invalid IL or missing references) //IL_24e7: Unknown result type (might be due to invalid IL or missing references) //IL_24f8: Unknown result type (might be due to invalid IL or missing references) //IL_24fd: Unknown result type (might be due to invalid IL or missing references) //IL_2502: Unknown result type (might be due to invalid IL or missing references) //IL_189c: Unknown result type (might be due to invalid IL or missing references) //IL_18a1: Unknown result type (might be due to invalid IL or missing references) //IL_18b0: Unknown result type (might be due to invalid IL or missing references) //IL_18b5: Unknown result type (might be due to invalid IL or missing references) //IL_18d1: Unknown result type (might be due to invalid IL or missing references) //IL_18d6: Unknown result type (might be due to invalid IL or missing references) //IL_18df: Unknown result type (might be due to invalid IL or missing references) //IL_18ea: Unknown result type (might be due to invalid IL or missing references) //IL_18fb: Unknown result type (might be due to invalid IL or missing references) //IL_1900: Unknown result type (might be due to invalid IL or missing references) //IL_1905: Unknown result type (might be due to invalid IL or missing references) //IL_3486: Unknown result type (might be due to invalid IL or missing references) //IL_348c: Unknown result type (might be due to invalid IL or missing references) //IL_3491: Unknown result type (might be due to invalid IL or missing references) //IL_3497: Unknown result type (might be due to invalid IL or missing references) //IL_349c: Unknown result type (might be due to invalid IL or missing references) //IL_34a2: Unknown result type (might be due to invalid IL or missing references) //IL_34ac: Unknown result type (might be due to invalid IL or missing references) //IL_34b1: Unknown result type (might be due to invalid IL or missing references) //IL_34b7: Unknown result type (might be due to invalid IL or missing references) //IL_34c1: Unknown result type (might be due to invalid IL or missing references) //IL_34c7: Unknown result type (might be due to invalid IL or missing references) //IL_34cc: Unknown result type (might be due to invalid IL or missing references) //IL_34d2: Unknown result type (might be due to invalid IL or missing references) //IL_34d7: Unknown result type (might be due to invalid IL or missing references) //IL_34dc: Unknown result type (might be due to invalid IL or missing references) //IL_34e2: Unknown result type (might be due to invalid IL or missing references) //IL_34ec: Unknown result type (might be due to invalid IL or missing references) //IL_34f1: Unknown result type (might be due to invalid IL or missing references) //IL_34fc: Unknown result type (might be due to invalid IL or missing references) //IL_3502: Unknown result type (might be due to invalid IL or missing references) //IL_3507: Unknown result type (might be due to invalid IL or missing references) //IL_350d: Unknown result type (might be due to invalid IL or missing references) //IL_3512: Unknown result type (might be due to invalid IL or missing references) //IL_3518: Unknown result type (might be due to invalid IL or missing references) //IL_3522: Unknown result type (might be due to invalid IL or missing references) //IL_3527: Unknown result type (might be due to invalid IL or missing references) //IL_352d: Unknown result type (might be due to invalid IL or missing references) //IL_3537: Unknown result type (might be due to invalid IL or missing references) //IL_353d: Unknown result type (might be due to invalid IL or missing references) //IL_3542: Unknown result type (might be due to invalid IL or missing references) //IL_3548: Unknown result type (might be due to invalid IL or missing references) //IL_354d: Unknown result type (might be due to invalid IL or missing references) //IL_3552: Unknown result type (might be due to invalid IL or missing references) //IL_3558: Unknown result type (might be due to invalid IL or missing references) //IL_3562: Unknown result type (might be due to invalid IL or missing references) //IL_3567: Unknown result type (might be due to invalid IL or missing references) //IL_3573: Unknown result type (might be due to invalid IL or missing references) //IL_33d2: Unknown result type (might be due to invalid IL or missing references) //IL_33d7: Unknown result type (might be due to invalid IL or missing references) //IL_3266: Unknown result type (might be due to invalid IL or missing references) //IL_326b: Unknown result type (might be due to invalid IL or missing references) //IL_327a: Unknown result type (might be due to invalid IL or missing references) //IL_327f: Unknown result type (might be due to invalid IL or missing references) //IL_329b: Unknown result type (might be due to invalid IL or missing references) //IL_32a0: Unknown result type (might be due to invalid IL or missing references) //IL_32a9: Unknown result type (might be due to invalid IL or missing references) //IL_32b4: Unknown result type (might be due to invalid IL or missing references) //IL_32c5: Unknown result type (might be due to invalid IL or missing references) //IL_32ca: Unknown result type (might be due to invalid IL or missing references) //IL_32cf: Unknown result type (might be due to invalid IL or missing references) //IL_2889: Unknown result type (might be due to invalid IL or missing references) //IL_288f: Unknown result type (might be due to invalid IL or missing references) //IL_2894: Unknown result type (might be due to invalid IL or missing references) //IL_289a: Unknown result type (might be due to invalid IL or missing references) //IL_289f: Unknown result type (might be due to invalid IL or missing references) //IL_28a5: Unknown result type (might be due to invalid IL or missing references) //IL_28af: Unknown result type (might be due to invalid IL or missing references) //IL_28b4: Unknown result type (might be due to invalid IL or missing references) //IL_28ba: Unknown result type (might be due to invalid IL or missing references) //IL_28c4: Unknown result type (might be due to invalid IL or missing references) //IL_28ca: Unknown result type (might be due to invalid IL or missing references) //IL_28cf: Unknown result type (might be due to invalid IL or missing references) //IL_28d5: Unknown result type (might be due to invalid IL or missing references) //IL_28da: Unknown result type (might be due to invalid IL or missing references) //IL_28df: Unknown result type (might be due to invalid IL or missing references) //IL_28e5: Unknown result type (might be due to invalid IL or missing references) //IL_28ef: Unknown result type (might be due to invalid IL or missing references) //IL_28f4: Unknown result type (might be due to invalid IL or missing references) //IL_28ff: Unknown result type (might be due to invalid IL or missing references) //IL_2905: Unknown result type (might be due to invalid IL or missing references) //IL_290a: Unknown result type (might be due to invalid IL or missing references) //IL_2910: Unknown result type (might be due to invalid IL or missing references) //IL_2915: Unknown result type (might be due to invalid IL or missing references) //IL_291b: Unknown result type (might be due to invalid IL or missing references) //IL_2925: Unknown result type (might be due to invalid IL or missing references) //IL_292a: Unknown result type (might be due to invalid IL or missing references) //IL_2930: Unknown result type (might be due to invalid IL or missing references) //IL_293a: Unknown result type (might be due to invalid IL or missing references) //IL_2940: Unknown result type (might be due to invalid IL or missing references) //IL_2945: Unknown result type (might be due to invalid IL or missing references) //IL_294b: Unknown result type (might be due to invalid IL or missing references) //IL_2950: Unknown result type (might be due to invalid IL or missing references) //IL_2955: Unknown result type (might be due to invalid IL or missing references) //IL_295b: Unknown result type (might be due to invalid IL or missing references) //IL_2965: Unknown result type (might be due to invalid IL or missing references) //IL_296a: Unknown result type (might be due to invalid IL or missing references) //IL_2976: Unknown result type (might be due to invalid IL or missing references) //IL_27d5: Unknown result type (might be due to invalid IL or missing references) //IL_27da: Unknown result type (might be due to invalid IL or missing references) //IL_2654: Unknown result type (might be due to invalid IL or missing references) //IL_2659: Unknown result type (might be due to invalid IL or missing references) //IL_2668: Unknown result type (might be due to invalid IL or missing references) //IL_266d: Unknown result type (might be due to invalid IL or missing references) //IL_2689: Unknown result type (might be due to invalid IL or missing references) //IL_268e: Unknown result type (might be due to invalid IL or missing references) //IL_2697: Unknown result type (might be due to invalid IL or missing references) //IL_26a2: Unknown result type (might be due to invalid IL or missing references) //IL_26b3: Unknown result type (might be due to invalid IL or missing references) //IL_26b8: Unknown result type (might be due to invalid IL or missing references) //IL_26bd: Unknown result type (might be due to invalid IL or missing references) //IL_3641: Unknown result type (might be due to invalid IL or missing references) //IL_3647: Unknown result type (might be due to invalid IL or missing references) //IL_364c: Unknown result type (might be due to invalid IL or missing references) //IL_3652: Unknown result type (might be due to invalid IL or missing references) //IL_3657: Unknown result type (might be due to invalid IL or missing references) //IL_365d: Unknown result type (might be due to invalid IL or missing references) //IL_3667: Unknown result type (might be due to invalid IL or missing references) //IL_366c: Unknown result type (might be due to invalid IL or missing references) //IL_3672: Unknown result type (might be due to invalid IL or missing references) //IL_367c: Unknown result type (might be due to invalid IL or missing references) //IL_3682: Unknown result type (might be due to invalid IL or missing references) //IL_3687: Unknown result type (might be due to invalid IL or missing references) //IL_368d: Unknown result type (might be due to invalid IL or missing references) //IL_3692: Unknown result type (might be due to invalid IL or missing references) //IL_3697: Unknown result type (might be due to invalid IL or missing references) //IL_369d: Unknown result type (might be due to invalid IL or missing references) //IL_36a7: Unknown result type (might be due to invalid IL or missing references) //IL_36ac: Unknown result type (might be due to invalid IL or missing references) //IL_36b7: Unknown result type (might be due to invalid IL or missing references) //IL_36bd: Unknown result type (might be due to invalid IL or missing references) //IL_36c2: Unknown result type (might be due to invalid IL or missing references) //IL_36c8: Unknown result type (might be due to invalid IL or missing references) //IL_36cd: Unknown result type (might be due to invalid IL or missing references) //IL_36d3: Unknown result type (might be due to invalid IL or missing references) //IL_36dd: Unknown result type (might be due to invalid IL or missing references) //IL_36e2: Unknown result type (might be due to invalid IL or missing references) //IL_36e8: Unknown result type (might be due to invalid IL or missing references) //IL_36f2: Unknown result type (might be due to invalid IL or missing references) //IL_36f8: Unknown result type (might be due to invalid IL or missing references) //IL_36fd: Unknown result type (might be due to invalid IL or missing references) //IL_3703: Unknown result type (might be due to invalid IL or missing references) //IL_3708: Unknown result type (might be due to invalid IL or missing references) //IL_370d: Unknown result type (might be due to invalid IL or missing references) //IL_3713: Unknown result type (might be due to invalid IL or missing references) //IL_371d: Unknown result type (might be due to invalid IL or missing references) //IL_3722: Unknown result type (might be due to invalid IL or missing references) //IL_372e: Unknown result type (might be due to invalid IL or missing references) //IL_358d: Unknown result type (might be due to invalid IL or missing references) //IL_3592: Unknown result type (might be due to invalid IL or missing references) //IL_340c: Unknown result type (might be due to invalid IL or missing references) //IL_3411: Unknown result type (might be due to invalid IL or missing references) //IL_3420: Unknown result type (might be due to invalid IL or missing references) //IL_3425: Unknown result type (might be due to invalid IL or missing references) //IL_3441: Unknown result type (might be due to invalid IL or missing references) //IL_3446: Unknown result type (might be due to invalid IL or missing references) //IL_344f: Unknown result type (might be due to invalid IL or missing references) //IL_345a: Unknown result type (might be due to invalid IL or missing references) //IL_346b: Unknown result type (might be due to invalid IL or missing references) //IL_3470: Unknown result type (might be due to invalid IL or missing references) //IL_3475: Unknown result type (might be due to invalid IL or missing references) //IL_2a46: Unknown result type (might be due to invalid IL or missing references) //IL_2a4b: Unknown result type (might be due to invalid IL or missing references) //IL_2a5a: Unknown result type (might be due to invalid IL or missing references) //IL_2a5f: Unknown result type (might be due to invalid IL or missing references) //IL_2a76: Unknown result type (might be due to invalid IL or missing references) //IL_2a7b: Unknown result type (might be due to invalid IL or missing references) //IL_2a97: Unknown result type (might be due to invalid IL or missing references) //IL_2a9c: Unknown result type (might be due to invalid IL or missing references) //IL_2aab: Unknown result type (might be due to invalid IL or missing references) //IL_2ab0: Unknown result type (might be due to invalid IL or missing references) //IL_2ac1: Unknown result type (might be due to invalid IL or missing references) //IL_2acc: Unknown result type (might be due to invalid IL or missing references) //IL_2ad1: Unknown result type (might be due to invalid IL or missing references) //IL_2afa: Unknown result type (might be due to invalid IL or missing references) //IL_2aff: Unknown result type (might be due to invalid IL or missing references) //IL_2b16: Unknown result type (might be due to invalid IL or missing references) //IL_2b1b: Unknown result type (might be due to invalid IL or missing references) //IL_2b20: Unknown result type (might be due to invalid IL or missing references) //IL_2990: Unknown result type (might be due to invalid IL or missing references) //IL_2995: Unknown result type (might be due to invalid IL or missing references) //IL_280f: Unknown result type (might be due to invalid IL or missing references) //IL_2814: Unknown result type (might be due to invalid IL or missing references) //IL_2823: Unknown result type (might be due to invalid IL or missing references) //IL_2828: Unknown result type (might be due to invalid IL or missing references) //IL_2844: Unknown result type (might be due to invalid IL or missing references) //IL_2849: Unknown result type (might be due to invalid IL or missing references) //IL_2852: Unknown result type (might be due to invalid IL or missing references) //IL_285d: Unknown result type (might be due to invalid IL or missing references) //IL_286e: Unknown result type (might be due to invalid IL or missing references) //IL_2873: Unknown result type (might be due to invalid IL or missing references) //IL_2878: Unknown result type (might be due to invalid IL or missing references) //IL_37fc: Unknown result type (might be due to invalid IL or missing references) //IL_3802: Unknown result type (might be due to invalid IL or missing references) //IL_3807: Unknown result type (might be due to invalid IL or missing references) //IL_380d: Unknown result type (might be due to invalid IL or missing references) //IL_3812: Unknown result type (might be due to invalid IL or missing references) //IL_3818: Unknown result type (might be due to invalid IL or missing references) //IL_3822: Unknown result type (might be due to invalid IL or missing references) //IL_3827: Unknown result type (might be due to invalid IL or missing references) //IL_382d: Unknown result type (might be due to invalid IL or missing references) //IL_3837: Unknown result type (might be due to invalid IL or missing references) //IL_383d: Unknown result type (might be due to invalid IL or missing references) //IL_3842: Unknown result type (might be due to invalid IL or missing references) //IL_3848: Unknown result type (might be due to invalid IL or missing references) //IL_384d: Unknown result type (might be due to invalid IL or missing references) //IL_3852: Unknown result type (might be due to invalid IL or missing references) //IL_3858: Unknown result type (might be due to invalid IL or missing references) //IL_3862: Unknown result type (might be due to invalid IL or missing references) //IL_3867: Unknown result type (might be due to invalid IL or missing references) //IL_3872: Unknown result type (might be due to invalid IL or missing references) //IL_3878: Unknown result type (might be due to invalid IL or missing references) //IL_387d: Unknown result type (might be due to invalid IL or missing references) //IL_3883: Unknown result type (might be due to invalid IL or missing references) //IL_3888: Unknown result type (might be due to invalid IL or missing references) //IL_388e: Unknown result type (might be due to invalid IL or missing references) //IL_3898: Unknown result type (might be due to invalid IL or missing references) //IL_389d: Unknown result type (might be due to invalid IL or missing references) //IL_38a3: Unknown result type (might be due to invalid IL or missing references) //IL_38ad: Unknown result type (might be due to invalid IL or missing references) //IL_38b3: Unknown result type (might be due to invalid IL or missing references) //IL_38b8: Unknown result type (might be due to invalid IL or missing references) //IL_38be: Unknown result type (might be due to invalid IL or missing references) //IL_38c3: Unknown result type (might be due to invalid IL or missing references) //IL_38c8: Unknown result type (might be due to invalid IL or missing references) //IL_38ce: Unknown result type (might be due to invalid IL or missing references) //IL_38d8: Unknown result type (might be due to invalid IL or missing references) //IL_38dd: Unknown result type (might be due to invalid IL or missing references) //IL_38e9: Unknown result type (might be due to invalid IL or missing references) //IL_3748: Unknown result type (might be due to invalid IL or missing references) //IL_374d: Unknown result type (might be due to invalid IL or missing references) //IL_35c7: Unknown result type (might be due to invalid IL or missing references) //IL_35cc: Unknown result type (might be due to invalid IL or missing references) //IL_35db: Unknown result type (might be due to invalid IL or missing references) //IL_35e0: Unknown result type (might be due to invalid IL or missing references) //IL_35fc: Unknown result type (might be due to invalid IL or missing references) //IL_3601: Unknown result type (might be due to invalid IL or missing references) //IL_360a: Unknown result type (might be due to invalid IL or missing references) //IL_3615: Unknown result type (might be due to invalid IL or missing references) //IL_3626: Unknown result type (might be due to invalid IL or missing references) //IL_362b: Unknown result type (might be due to invalid IL or missing references) //IL_3630: Unknown result type (might be due to invalid IL or missing references) //IL_29ca: Unknown result type (might be due to invalid IL or missing references) //IL_29cf: Unknown result type (might be due to invalid IL or missing references) //IL_29de: Unknown result type (might be due to invalid IL or missing references) //IL_29e3: Unknown result type (might be due to invalid IL or missing references) //IL_29ff: Unknown result type (might be due to invalid IL or missing references) //IL_2a04: Unknown result type (might be due to invalid IL or missing references) //IL_2a0d: Unknown result type (might be due to invalid IL or missing references) //IL_2a18: Unknown result type (might be due to invalid IL or missing references) //IL_2a29: Unknown result type (might be due to invalid IL or missing references) //IL_2a2e: Unknown result type (might be due to invalid IL or missing references) //IL_2a33: Unknown result type (might be due to invalid IL or missing references) //IL_39b7: Unknown result type (might be due to invalid IL or missing references) //IL_39bd: Unknown result type (might be due to invalid IL or missing references) //IL_39c2: Unknown result type (might be due to invalid IL or missing references) //IL_39c8: Unknown result type (might be due to invalid IL or missing references) //IL_39cd: Unknown result type (might be due to invalid IL or missing references) //IL_39d3: Unknown result type (might be due to invalid IL or missing references) //IL_39dd: Unknown result type (might be due to invalid IL or missing references) //IL_39e2: Unknown result type (might be due to invalid IL or missing references) //IL_39e8: Unknown result type (might be due to invalid IL or missing references) //IL_39f2: Unknown result type (might be due to invalid IL or missing references) //IL_39f8: Unknown result type (might be due to invalid IL or missing references) //IL_39fd: Unknown result type (might be due to invalid IL or missing references) //IL_3a03: Unknown result type (might be due to invalid IL or missing references) //IL_3a08: Unknown result type (might be due to invalid IL or missing references) //IL_3a0d: Unknown result type (might be due to invalid IL or missing references) //IL_3a13: Unknown result type (might be due to invalid IL or missing references) //IL_3a1d: Unknown result type (might be due to invalid IL or missing references) //IL_3a22: Unknown result type (might be due to invalid IL or missing references) //IL_3a2d: Unknown result type (might be due to invalid IL or missing references) //IL_3a33: Unknown result type (might be due to invalid IL or missing references) //IL_3a38: Unknown result type (might be due to invalid IL or missing references) //IL_3a3e: Unknown result type (might be due to invalid IL or missing references) //IL_3a43: Unknown result type (might be due to invalid IL or missing references) //IL_3a49: Unknown result type (might be due to invalid IL or missing references) //IL_3a53: Unknown result type (might be due to invalid IL or missing references) //IL_3a58: Unknown result type (might be due to invalid IL or missing references) //IL_3a5e: Unknown result type (might be due to invalid IL or missing references) //IL_3a68: Unknown result type (might be due to invalid IL or missing references) //IL_3a6e: Unknown result type (might be due to invalid IL or missing references) //IL_3a73: Unknown result type (might be due to invalid IL or missing references) //IL_3a79: Unknown result type (might be due to invalid IL or missing references) //IL_3a7e: Unknown result type (might be due to invalid IL or missing references) //IL_3a83: Unknown result type (might be due to invalid IL or missing references) //IL_3a89: Unknown result type (might be due to invalid IL or missing references) //IL_3a93: Unknown result type (might be due to invalid IL or missing references) //IL_3a98: Unknown result type (might be due to invalid IL or missing references) //IL_3aa4: Unknown result type (might be due to invalid IL or missing references) //IL_3903: Unknown result type (might be due to invalid IL or missing references) //IL_3908: Unknown result type (might be due to invalid IL or missing references) //IL_3782: Unknown result type (might be due to invalid IL or missing references) //IL_3787: Unknown result type (might be due to invalid IL or missing references) //IL_3796: Unknown result type (might be due to invalid IL or missing references) //IL_379b: Unknown result type (might be due to invalid IL or missing references) //IL_37b7: Unknown result type (might be due to invalid IL or missing references) //IL_37bc: Unknown result type (might be due to invalid IL or missing references) //IL_37c5: Unknown result type (might be due to invalid IL or missing references) //IL_37d0: Unknown result type (might be due to invalid IL or missing references) //IL_37e1: Unknown result type (might be due to invalid IL or missing references) //IL_37e6: Unknown result type (might be due to invalid IL or missing references) //IL_37eb: Unknown result type (might be due to invalid IL or missing references) //IL_3b74: Unknown result type (might be due to invalid IL or missing references) //IL_3b79: Unknown result type (might be due to invalid IL or missing references) //IL_3b88: Unknown result type (might be due to invalid IL or missing references) //IL_3b8d: Unknown result type (might be due to invalid IL or missing references) //IL_3ba4: Unknown result type (might be due to invalid IL or missing references) //IL_3ba9: Unknown result type (might be due to invalid IL or missing references) //IL_3bc5: Unknown result type (might be due to invalid IL or missing references) //IL_3bca: Unknown result type (might be due to invalid IL or missing references) //IL_3bd9: Unknown result type (might be due to invalid IL or missing references) //IL_3bde: Unknown result type (might be due to invalid IL or missing references) //IL_3bef: Unknown result type (might be due to invalid IL or missing references) //IL_3bfa: Unknown result type (might be due to invalid IL or missing references) //IL_3bff: Unknown result type (might be due to invalid IL or missing references) //IL_3c28: Unknown result type (might be due to invalid IL or missing references) //IL_3c2d: Unknown result type (might be due to invalid IL or missing references) //IL_3c44: Unknown result type (might be due to invalid IL or missing references) //IL_3c49: Unknown result type (might be due to invalid IL or missing references) //IL_3c4e: Unknown result type (might be due to invalid IL or missing references) //IL_3abe: Unknown result type (might be due to invalid IL or missing references) //IL_3ac3: Unknown result type (might be due to invalid IL or missing references) //IL_393d: Unknown result type (might be due to invalid IL or missing references) //IL_3942: Unknown result type (might be due to invalid IL or missing references) //IL_3951: Unknown result type (might be due to invalid IL or missing references) //IL_3956: Unknown result type (might be due to invalid IL or missing references) //IL_3972: Unknown result type (might be due to invalid IL or missing references) //IL_3977: Unknown result type (might be due to invalid IL or missing references) //IL_3980: Unknown result type (might be due to invalid IL or missing references) //IL_398b: Unknown result type (might be due to invalid IL or missing references) //IL_399c: Unknown result type (might be due to invalid IL or missing references) //IL_39a1: Unknown result type (might be due to invalid IL or missing references) //IL_39a6: Unknown result type (might be due to invalid IL or missing references) //IL_3af8: Unknown result type (might be due to invalid IL or missing references) //IL_3afd: Unknown result type (might be due to invalid IL or missing references) //IL_3b0c: Unknown result type (might be due to invalid IL or missing references) //IL_3b11: Unknown result type (might be due to invalid IL or missing references) //IL_3b2d: Unknown result type (might be due to invalid IL or missing references) //IL_3b32: Unknown result type (might be due to invalid IL or missing references) //IL_3b3b: Unknown result type (might be due to invalid IL or missing references) //IL_3b46: Unknown result type (might be due to invalid IL or missing references) //IL_3b57: Unknown result type (might be due to invalid IL or missing references) //IL_3b5c: Unknown result type (might be due to invalid IL or missing references) //IL_3b61: Unknown result type (might be due to invalid IL or missing references) if (switching || !ledgeSwitchingDetectors.allowLedgeSwitching || !grabbedOn) { return; } if ((!Physics.Linecast(((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + rightWidth * 2f + surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.8f + rightWidth * 2f + surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { r1FirstBackSurfaceDetectorsHit = true; } else { r1FirstBackSurfaceDetectorsHit = false; r1FirstBackHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + rightWidth * 2f + surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.8f + rightWidth * 2f + surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { r2FirstBackSurfaceDetectorsHit = true; } else { r2FirstBackSurfaceDetectorsHit = false; r2FirstBackHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + rightWidth * 2f + surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.8f + rightWidth * 2f + surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { r3FirstBackSurfaceDetectorsHit = true; } else { r3FirstBackSurfaceDetectorsHit = false; r3FirstBackHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 2.2f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) { if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref switchHitPoint)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit) { r1FirstBackHit = true; if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2), ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r1FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r1FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r1FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r1FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r1FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r1FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r1FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r1FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else { r1FirstBackHitPoint = new Vector3(((RaycastHit)(ref switchHitPoint)).point.x - ((Component)this).transform.forward.x * length2, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref switchHitPoint)).point.z - ((Component)this).transform.forward.x * length2) + new Vector3((0f - ((Component)this).transform.forward.x) * length2 / 10f, onLedgeHeight2 / 10f, (0f - ((Component)this).transform.forward.z) * length2 / 10f); } } else { r1FirstBackHit = false; } } else { r1FirstBackHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 2.2f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) { if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref switchHitPoint)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit) { r2FirstBackHit = true; if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2), ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r2FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r2FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r2FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r2FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r2FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r2FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r2FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r2FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else { r2FirstBackHitPoint = new Vector3(((RaycastHit)(ref switchHitPoint)).point.x - ((Component)this).transform.forward.x * length2, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref switchHitPoint)).point.z - ((Component)this).transform.forward.x * length2) + new Vector3((0f - ((Component)this).transform.forward.x) * length2 / 10f, onLedgeHeight2 / 10f, (0f - ((Component)this).transform.forward.z) * length2 / 10f); } } else { r2FirstBackHit = false; } } else { r2FirstBackHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 2.2f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) { if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref switchHitPoint)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit) { r3FirstBackHit = true; if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2), ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r3FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r3FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r3FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r3FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r3FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r3FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r3FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r3FirstBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.9f / length2); } else { r3FirstBackHitPoint = new Vector3(((RaycastHit)(ref switchHitPoint)).point.x - ((Component)this).transform.forward.x * length2, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref switchHitPoint)).point.z - ((Component)this).transform.forward.x * length2) + new Vector3((0f - ((Component)this).transform.forward.x) * length2 / 10f, onLedgeHeight2 / 10f, (0f - ((Component)this).transform.forward.z) * length2 / 10f); } } else { r3FirstBackHit = false; } } else { r3FirstBackHit = false; } } private void LedgeSwitchHitPointsSecondBackRight() { //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_006a: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_0089: Unknown result type (might be due to invalid IL or missing references) //IL_008e: Unknown result type (might be due to invalid IL or missing references) //IL_0094: Unknown result type (might be due to invalid IL or missing references) //IL_0099: Unknown result type (might be due to invalid IL or missing references) //IL_009f: Unknown result type (might be due to invalid IL or missing references) //IL_00a4: Unknown result type (might be due to invalid IL or missing references) //IL_00af: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) //IL_00ba: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_00cb: Unknown result type (might be due to invalid IL or missing references) //IL_00d0: Unknown result type (might be due to invalid IL or missing references) //IL_00d6: Unknown result type (might be due to invalid IL or missing references) //IL_00e0: Unknown result type (might be due to invalid IL or missing references) //IL_00e5: Unknown result type (might be due to invalid IL or missing references) //IL_00eb: Unknown result type (might be due to invalid IL or missing references) //IL_00f5: Unknown result type (might be due to invalid IL or missing references) //IL_00fa: Unknown result type (might be due to invalid IL or missing references) //IL_0100: Unknown result type (might be due to invalid IL or missing references) //IL_010a: Unknown result type (might be due to invalid IL or missing references) //IL_010f: Unknown result type (might be due to invalid IL or missing references) //IL_0115: Unknown result type (might be due to invalid IL or missing references) //IL_011a: Unknown result type (might be due to invalid IL or missing references) //IL_0120: Unknown result type (might be due to invalid IL or missing references) //IL_0125: Unknown result type (might be due to invalid IL or missing references) //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_0268: Unknown result type (might be due to invalid IL or missing references) //IL_026e: Unknown result type (might be due to invalid IL or missing references) //IL_0273: Unknown result type (might be due to invalid IL or missing references) //IL_0279: Unknown result type (might be due to invalid IL or missing references) //IL_027e: Unknown result type (might be due to invalid IL or missing references) //IL_0284: Unknown result type (might be due to invalid IL or missing references) //IL_0289: Unknown result type (might be due to invalid IL or missing references) //IL_028f: Unknown result type (might be due to invalid IL or missing references) //IL_0299: Unknown result type (might be due to invalid IL or missing references) //IL_029e: Unknown result type (might be due to invalid IL or missing references) //IL_02a4: Unknown result type (might be due to invalid IL or missing references) //IL_02ae: Unknown result type (might be due to invalid IL or missing references) //IL_02b3: Unknown result type (might be due to invalid IL or missing references) //IL_02b9: Unknown result type (might be due to invalid IL or missing references) //IL_02c3: Unknown result type (might be due to invalid IL or missing references) //IL_02c8: Unknown result type (might be due to invalid IL or missing references) //IL_02ce: Unknown result type (might be due to invalid IL or missing references) //IL_02d3: Unknown result type (might be due to invalid IL or missing references) //IL_02d9: Unknown result type (might be due to invalid IL or missing references) //IL_02de: Unknown result type (might be due to invalid IL or missing references) //IL_02e9: Unknown result type (might be due to invalid IL or missing references) //IL_02ef: Unknown result type (might be due to invalid IL or missing references) //IL_02f4: Unknown result type (might be due to invalid IL or missing references) //IL_02fa: Unknown result type (might be due to invalid IL or missing references) //IL_02ff: Unknown result type (might be due to invalid IL or missing references) //IL_0305: Unknown result type (might be due to invalid IL or missing references) //IL_030a: Unknown result type (might be due to invalid IL or missing references) //IL_0310: Unknown result type (might be due to invalid IL or missing references) //IL_031a: Unknown result type (might be due to invalid IL or missing references) //IL_031f: Unknown result type (might be due to invalid IL or missing references) //IL_0325: Unknown result type (might be due to invalid IL or missing references) //IL_032f: Unknown result type (might be due to invalid IL or missing references) //IL_0334: Unknown result type (might be due to invalid IL or missing references) //IL_033a: Unknown result type (might be due to invalid IL or missing references) //IL_0344: Unknown result type (might be due to invalid IL or missing references) //IL_0349: Unknown result type (might be due to invalid IL or missing references) //IL_034f: Unknown result type (might be due to invalid IL or missing references) //IL_0354: Unknown result type (might be due to invalid IL or missing references) //IL_0360: Unknown result type (might be due to invalid IL or missing references) //IL_014b: Unknown result type (might be due to invalid IL or missing references) //IL_0151: Unknown result type (might be due to invalid IL or missing references) //IL_0156: Unknown result type (might be due to invalid IL or missing references) //IL_015c: Unknown result type (might be due to invalid IL or missing references) //IL_0161: Unknown result type (might be due to invalid IL or missing references) //IL_0167: Unknown result type (might be due to invalid IL or missing references) //IL_016c: Unknown result type (might be due to invalid IL or missing references) //IL_0172: Unknown result type (might be due to invalid IL or missing references) //IL_017c: Unknown result type (might be due to invalid IL or missing references) //IL_0181: Unknown result type (might be due to invalid IL or missing references) //IL_0187: Unknown result type (might be due to invalid IL or missing references) //IL_0191: Unknown result type (might be due to invalid IL or missing references) //IL_0196: Unknown result type (might be due to invalid IL or missing references) //IL_019c: Unknown result type (might be due to invalid IL or missing references) //IL_01a6: Unknown result type (might be due to invalid IL or missing references) //IL_01ab: Unknown result type (might be due to invalid IL or missing references) //IL_01b1: Unknown result type (might be due to invalid IL or missing references) //IL_01b6: Unknown result type (might be due to invalid IL or missing references) //IL_01bc: Unknown result type (might be due to invalid IL or missing references) //IL_01c1: Unknown result type (might be due to invalid IL or missing references) //IL_01cc: Unknown result type (might be due to invalid IL or missing references) //IL_01d2: Unknown result type (might be due to invalid IL or missing references) //IL_01d7: Unknown result type (might be due to invalid IL or missing references) //IL_01dd: Unknown result type (might be due to invalid IL or missing references) //IL_01e2: Unknown result type (might be due to invalid IL or missing references) //IL_01e8: Unknown result type (might be due to invalid IL or missing references) //IL_01ed: Unknown result type (might be due to invalid IL or missing references) //IL_01f3: Unknown result type (might be due to invalid IL or missing references) //IL_01fd: Unknown result type (might be due to invalid IL or missing references) //IL_0202: Unknown result type (might be due to invalid IL or missing references) //IL_0208: Unknown result type (might be due to invalid IL or missing references) //IL_020d: Unknown result type (might be due to invalid IL or missing references) //IL_0213: Unknown result type (might be due to invalid IL or missing references) //IL_021d: Unknown result type (might be due to invalid IL or missing references) //IL_0222: Unknown result type (might be due to invalid IL or missing references) //IL_0228: Unknown result type (might be due to invalid IL or missing references) //IL_0232: Unknown result type (might be due to invalid IL or missing references) //IL_0237: Unknown result type (might be due to invalid IL or missing references) //IL_023d: Unknown result type (might be due to invalid IL or missing references) //IL_0242: Unknown result type (might be due to invalid IL or missing references) //IL_024e: Unknown result type (might be due to invalid IL or missing references) //IL_0398: Unknown result type (might be due to invalid IL or missing references) //IL_039e: Unknown result type (might be due to invalid IL or missing references) //IL_03a3: Unknown result type (might be due to invalid IL or missing references) //IL_03a9: Unknown result type (might be due to invalid IL or missing references) //IL_03ae: Unknown result type (might be due to invalid IL or missing references) //IL_03b4: Unknown result type (might be due to invalid IL or missing references) //IL_03b9: Unknown result type (might be due to invalid IL or missing references) //IL_03bf: Unknown result type (might be due to invalid IL or missing references) //IL_03c9: Unknown result type (might be due to invalid IL or missing references) //IL_03ce: Unknown result type (might be due to invalid IL or missing references) //IL_03d4: Unknown result type (might be due to invalid IL or missing references) //IL_03de: Unknown result type (might be due to invalid IL or missing references) //IL_03e3: Unknown result type (might be due to invalid IL or missing references) //IL_03e9: Unknown result type (might be due to invalid IL or missing references) //IL_03f3: Unknown result type (might be due to invalid IL or missing references) //IL_03f8: Unknown result type (might be due to invalid IL or missing references) //IL_03fe: Unknown result type (might be due to invalid IL or missing references) //IL_0403: Unknown result type (might be due to invalid IL or missing references) //IL_0409: Unknown result type (might be due to invalid IL or missing references) //IL_040e: Unknown result type (might be due to invalid IL or missing references) //IL_0419: Unknown result type (might be due to invalid IL or missing references) //IL_041f: Unknown result type (might be due to invalid IL or missing references) //IL_0424: Unknown result type (might be due to invalid IL or missing references) //IL_042a: Unknown result type (might be due to invalid IL or missing references) //IL_042f: Unknown result type (might be due to invalid IL or missing references) //IL_0435: Unknown result type (might be due to invalid IL or missing references) //IL_043a: Unknown result type (might be due to invalid IL or missing references) //IL_0440: Unknown result type (might be due to invalid IL or missing references) //IL_044a: Unknown result type (might be due to invalid IL or missing references) //IL_044f: Unknown result type (might be due to invalid IL or missing references) //IL_0455: Unknown result type (might be due to invalid IL or missing references) //IL_045f: Unknown result type (might be due to invalid IL or missing references) //IL_0464: Unknown result type (might be due to invalid IL or missing references) //IL_046a: Unknown result type (might be due to invalid IL or missing references) //IL_0474: Unknown result type (might be due to invalid IL or missing references) //IL_0479: Unknown result type (might be due to invalid IL or missing references) //IL_047f: Unknown result type (might be due to invalid IL or missing references) //IL_0484: Unknown result type (might be due to invalid IL or missing references) //IL_048a: Unknown result type (might be due to invalid IL or missing references) //IL_048f: Unknown result type (might be due to invalid IL or missing references) //IL_049b: Unknown result type (might be due to invalid IL or missing references) //IL_05d2: Unknown result type (might be due to invalid IL or missing references) //IL_05d8: Unknown result type (might be due to invalid IL or missing references) //IL_05dd: Unknown result type (might be due to invalid IL or missing references) //IL_05e3: Unknown result type (might be due to invalid IL or missing references) //IL_05e8: Unknown result type (might be due to invalid IL or missing references) //IL_05ee: Unknown result type (might be due to invalid IL or missing references) //IL_05f3: Unknown result type (might be due to invalid IL or missing references) //IL_05f9: Unknown result type (might be due to invalid IL or missing references) //IL_0603: Unknown result type (might be due to invalid IL or missing references) //IL_0608: Unknown result type (might be due to invalid IL or missing references) //IL_060e: Unknown result type (might be due to invalid IL or missing references) //IL_0618: Unknown result type (might be due to invalid IL or missing references) //IL_061d: Unknown result type (might be due to invalid IL or missing references) //IL_0623: Unknown result type (might be due to invalid IL or missing references) //IL_062d: Unknown result type (might be due to invalid IL or missing references) //IL_0632: Unknown result type (might be due to invalid IL or missing references) //IL_0638: Unknown result type (might be due to invalid IL or missing references) //IL_063d: Unknown result type (might be due to invalid IL or missing references) //IL_0643: Unknown result type (might be due to invalid IL or missing references) //IL_0648: Unknown result type (might be due to invalid IL or missing references) //IL_0653: Unknown result type (might be due to invalid IL or missing references) //IL_0659: Unknown result type (might be due to invalid IL or missing references) //IL_065e: Unknown result type (might be due to invalid IL or missing references) //IL_0664: Unknown result type (might be due to invalid IL or missing references) //IL_0669: Unknown result type (might be due to invalid IL or missing references) //IL_066f: Unknown result type (might be due to invalid IL or missing references) //IL_0674: Unknown result type (might be due to invalid IL or missing references) //IL_067a: Unknown result type (might be due to invalid IL or missing references) //IL_0684: Unknown result type (might be due to invalid IL or missing references) //IL_0689: Unknown result type (might be due to invalid IL or missing references) //IL_068f: Unknown result type (might be due to invalid IL or missing references) //IL_0699: Unknown result type (might be due to invalid IL or missing references) //IL_069e: Unknown result type (might be due to invalid IL or missing references) //IL_06a4: Unknown result type (might be due to invalid IL or missing references) //IL_06ae: Unknown result type (might be due to invalid IL or missing references) //IL_06b3: Unknown result type (might be due to invalid IL or missing references) //IL_06b9: Unknown result type (might be due to invalid IL or missing references) //IL_06be: Unknown result type (might be due to invalid IL or missing references) //IL_06ca: Unknown result type (might be due to invalid IL or missing references) //IL_04b5: Unknown result type (might be due to invalid IL or missing references) //IL_04bb: Unknown result type (might be due to invalid IL or missing references) //IL_04c0: Unknown result type (might be due to invalid IL or missing references) //IL_04c6: Unknown result type (might be due to invalid IL or missing references) //IL_04cb: Unknown result type (might be due to invalid IL or missing references) //IL_04d1: Unknown result type (might be due to invalid IL or missing references) //IL_04d6: Unknown result type (might be due to invalid IL or missing references) //IL_04dc: Unknown result type (might be due to invalid IL or missing references) //IL_04e6: Unknown result type (might be due to invalid IL or missing references) //IL_04eb: Unknown result type (might be due to invalid IL or missing references) //IL_04f1: Unknown result type (might be due to invalid IL or missing references) //IL_04fb: Unknown result type (might be due to invalid IL or missing references) //IL_0500: Unknown result type (might be due to invalid IL or missing references) //IL_0506: Unknown result type (might be due to invalid IL or missing references) //IL_0510: Unknown result type (might be due to invalid IL or missing references) //IL_0515: Unknown result type (might be due to invalid IL or missing references) //IL_051b: Unknown result type (might be due to invalid IL or missing references) //IL_0520: Unknown result type (might be due to invalid IL or missing references) //IL_0526: Unknown result type (might be due to invalid IL or missing references) //IL_052b: Unknown result type (might be due to invalid IL or missing references) //IL_0536: Unknown result type (might be due to invalid IL or missing references) //IL_053c: Unknown result type (might be due to invalid IL or missing references) //IL_0541: Unknown result type (might be due to invalid IL or missing references) //IL_0547: Unknown result type (might be due to invalid IL or missing references) //IL_054c: Unknown result type (might be due to invalid IL or missing references) //IL_0552: Unknown result type (might be due to invalid IL or missing references) //IL_0557: Unknown result type (might be due to invalid IL or missing references) //IL_055d: Unknown result type (might be due to invalid IL or missing references) //IL_0567: Unknown result type (might be due to invalid IL or missing references) //IL_056c: Unknown result type (might be due to invalid IL or missing references) //IL_0572: Unknown result type (might be due to invalid IL or missing references) //IL_0577: Unknown result type (might be due to invalid IL or missing references) //IL_057d: Unknown result type (might be due to invalid IL or missing references) //IL_0587: Unknown result type (might be due to invalid IL or missing references) //IL_058c: Unknown result type (might be due to invalid IL or missing references) //IL_0592: Unknown result type (might be due to invalid IL or missing references) //IL_059c: Unknown result type (might be due to invalid IL or missing references) //IL_05a1: Unknown result type (might be due to invalid IL or missing references) //IL_05a7: Unknown result type (might be due to invalid IL or missing references) //IL_05ac: Unknown result type (might be due to invalid IL or missing references) //IL_05b8: Unknown result type (might be due to invalid IL or missing references) //IL_0702: Unknown result type (might be due to invalid IL or missing references) //IL_0708: Unknown result type (might be due to invalid IL or missing references) //IL_070d: Unknown result type (might be due to invalid IL or missing references) //IL_0713: Unknown result type (might be due to invalid IL or missing references) //IL_0718: Unknown result type (might be due to invalid IL or missing references) //IL_071e: Unknown result type (might be due to invalid IL or missing references) //IL_0723: Unknown result type (might be due to invalid IL or missing references) //IL_0729: Unknown result type (might be due to invalid IL or missing references) //IL_0733: Unknown result type (might be due to invalid IL or missing references) //IL_0738: Unknown result type (might be due to invalid IL or missing references) //IL_073e: Unknown result type (might be due to invalid IL or missing references) //IL_0748: Unknown result type (might be due to invalid IL or missing references) //IL_074d: Unknown result type (might be due to invalid IL or missing references) //IL_0753: Unknown result type (might be due to invalid IL or missing references) //IL_075d: Unknown result type (might be due to invalid IL or missing references) //IL_0762: Unknown result type (might be due to invalid IL or missing references) //IL_0768: Unknown result type (might be due to invalid IL or missing references) //IL_076d: Unknown result type (might be due to invalid IL or missing references) //IL_0773: Unknown result type (might be due to invalid IL or missing references) //IL_0778: Unknown result type (might be due to invalid IL or missing references) //IL_0783: Unknown result type (might be due to invalid IL or missing references) //IL_0789: Unknown result type (might be due to invalid IL or missing references) //IL_078e: Unknown result type (might be due to invalid IL or missing references) //IL_0794: Unknown result type (might be due to invalid IL or missing references) //IL_0799: Unknown result type (might be due to invalid IL or missing references) //IL_079f: Unknown result type (might be due to invalid IL or missing references) //IL_07a4: Unknown result type (might be due to invalid IL or missing references) //IL_07aa: Unknown result type (might be due to invalid IL or missing references) //IL_07b4: Unknown result type (might be due to invalid IL or missing references) //IL_07b9: Unknown result type (might be due to invalid IL or missing references) //IL_07bf: Unknown result type (might be due to invalid IL or missing references) //IL_07c9: Unknown result type (might be due to invalid IL or missing references) //IL_07ce: Unknown result type (might be due to invalid IL or missing references) //IL_07d4: Unknown result type (might be due to invalid IL or missing references) //IL_07de: Unknown result type (might be due to invalid IL or missing references) //IL_07e3: Unknown result type (might be due to invalid IL or missing references) //IL_07e9: Unknown result type (might be due to invalid IL or missing references) //IL_07ee: Unknown result type (might be due to invalid IL or missing references) //IL_07f4: Unknown result type (might be due to invalid IL or missing references) //IL_07f9: Unknown result type (might be due to invalid IL or missing references) //IL_0805: Unknown result type (might be due to invalid IL or missing references) //IL_093c: Unknown result type (might be due to invalid IL or missing references) //IL_0942: Unknown result type (might be due to invalid IL or missing references) //IL_0947: Unknown result type (might be due to invalid IL or missing references) //IL_094d: Unknown result type (might be due to invalid IL or missing references) //IL_0952: Unknown result type (might be due to invalid IL or missing references) //IL_0958: Unknown result type (might be due to invalid IL or missing references) //IL_095d: Unknown result type (might be due to invalid IL or missing references) //IL_0963: Unknown result type (might be due to invalid IL or missing references) //IL_096d: Unknown result type (might be due to invalid IL or missing references) //IL_0972: Unknown result type (might be due to invalid IL or missing references) //IL_0978: Unknown result type (might be due to invalid IL or missing references) //IL_0982: Unknown result type (might be due to invalid IL or missing references) //IL_0987: Unknown result type (might be due to invalid IL or missing references) //IL_098d: Unknown result type (might be due to invalid IL or missing references) //IL_0997: Unknown result type (might be due to invalid IL or missing references) //IL_099c: Unknown result type (might be due to invalid IL or missing references) //IL_09a2: Unknown result type (might be due to invalid IL or missing references) //IL_09a7: Unknown result type (might be due to invalid IL or missing references) //IL_09ad: Unknown result type (might be due to invalid IL or missing references) //IL_09b2: Unknown result type (might be due to invalid IL or missing references) //IL_09bd: Unknown result type (might be due to invalid IL or missing references) //IL_09c3: Unknown result type (might be due to invalid IL or missing references) //IL_09c8: Unknown result type (might be due to invalid IL or missing references) //IL_09ce: Unknown result type (might be due to invalid IL or missing references) //IL_09d3: Unknown result type (might be due to invalid IL or missing references) //IL_09d9: Unknown result type (might be due to invalid IL or missing references) //IL_09de: Unknown result type (might be due to invalid IL or missing references) //IL_09e4: Unknown result type (might be due to invalid IL or missing references) //IL_09ee: Unknown result type (might be due to invalid IL or missing references) //IL_09f3: Unknown result type (might be due to invalid IL or missing references) //IL_09f9: Unknown result type (might be due to invalid IL or missing references) //IL_0a03: Unknown result type (might be due to invalid IL or missing references) //IL_0a08: Unknown result type (might be due to invalid IL or missing references) //IL_0a0e: Unknown result type (might be due to invalid IL or missing references) //IL_0a18: Unknown result type (might be due to invalid IL or missing references) //IL_0a1d: Unknown result type (might be due to invalid IL or missing references) //IL_0a23: Unknown result type (might be due to invalid IL or missing references) //IL_0a28: Unknown result type (might be due to invalid IL or missing references) //IL_0a34: Unknown result type (might be due to invalid IL or missing references) //IL_081f: Unknown result type (might be due to invalid IL or missing references) //IL_0825: Unknown result type (might be due to invalid IL or missing references) //IL_082a: Unknown result type (might be due to invalid IL or missing references) //IL_0830: Unknown result type (might be due to invalid IL or missing references) //IL_0835: Unknown result type (might be due to invalid IL or missing references) //IL_083b: Unknown result type (might be due to invalid IL or missing references) //IL_0840: Unknown result type (might be due to invalid IL or missing references) //IL_0846: Unknown result type (might be due to invalid IL or missing references) //IL_0850: Unknown result type (might be due to invalid IL or missing references) //IL_0855: Unknown result type (might be due to invalid IL or missing references) //IL_085b: Unknown result type (might be due to invalid IL or missing references) //IL_0865: Unknown result type (might be due to invalid IL or missing references) //IL_086a: Unknown result type (might be due to invalid IL or missing references) //IL_0870: Unknown result type (might be due to invalid IL or missing references) //IL_087a: Unknown result type (might be due to invalid IL or missing references) //IL_087f: Unknown result type (might be due to invalid IL or missing references) //IL_0885: Unknown result type (might be due to invalid IL or missing references) //IL_088a: Unknown result type (might be due to invalid IL or missing references) //IL_0890: Unknown result type (might be due to invalid IL or missing references) //IL_0895: Unknown result type (might be due to invalid IL or missing references) //IL_08a0: Unknown result type (might be due to invalid IL or missing references) //IL_08a6: Unknown result type (might be due to invalid IL or missing references) //IL_08ab: Unknown result type (might be due to invalid IL or missing references) //IL_08b1: Unknown result type (might be due to invalid IL or missing references) //IL_08b6: Unknown result type (might be due to invalid IL or missing references) //IL_08bc: Unknown result type (might be due to invalid IL or missing references) //IL_08c1: Unknown result type (might be due to invalid IL or missing references) //IL_08c7: Unknown result type (might be due to invalid IL or missing references) //IL_08d1: Unknown result type (might be due to invalid IL or missing references) //IL_08d6: Unknown result type (might be due to invalid IL or missing references) //IL_08dc: Unknown result type (might be due to invalid IL or missing references) //IL_08e1: Unknown result type (might be due to invalid IL or missing references) //IL_08e7: Unknown result type (might be due to invalid IL or missing references) //IL_08f1: Unknown result type (might be due to invalid IL or missing references) //IL_08f6: Unknown result type (might be due to invalid IL or missing references) //IL_08fc: Unknown result type (might be due to invalid IL or missing references) //IL_0906: Unknown result type (might be due to invalid IL or missing references) //IL_090b: Unknown result type (might be due to invalid IL or missing references) //IL_0911: Unknown result type (might be due to invalid IL or missing references) //IL_0916: Unknown result type (might be due to invalid IL or missing references) //IL_0922: Unknown result type (might be due to invalid IL or missing references) //IL_0a6c: Unknown result type (might be due to invalid IL or missing references) //IL_0a72: Unknown result type (might be due to invalid IL or missing references) //IL_0a77: Unknown result type (might be due to invalid IL or missing references) //IL_0a7d: Unknown result type (might be due to invalid IL or missing references) //IL_0a87: Unknown result type (might be due to invalid IL or missing references) //IL_0a8c: Unknown result type (might be due to invalid IL or missing references) //IL_0a92: Unknown result type (might be due to invalid IL or missing references) //IL_0a9c: Unknown result type (might be due to invalid IL or missing references) //IL_0aa1: Unknown result type (might be due to invalid IL or missing references) //IL_0aa7: Unknown result type (might be due to invalid IL or missing references) //IL_0ab1: Unknown result type (might be due to invalid IL or missing references) //IL_0ab6: Unknown result type (might be due to invalid IL or missing references) //IL_0abc: Unknown result type (might be due to invalid IL or missing references) //IL_0ac1: Unknown result type (might be due to invalid IL or missing references) //IL_0ac7: Unknown result type (might be due to invalid IL or missing references) //IL_0acc: Unknown result type (might be due to invalid IL or missing references) //IL_0ad2: Unknown result type (might be due to invalid IL or missing references) //IL_0ad7: Unknown result type (might be due to invalid IL or missing references) //IL_0ae2: Unknown result type (might be due to invalid IL or missing references) //IL_0ae8: Unknown result type (might be due to invalid IL or missing references) //IL_0aed: Unknown result type (might be due to invalid IL or missing references) //IL_0af3: Unknown result type (might be due to invalid IL or missing references) //IL_0afd: Unknown result type (might be due to invalid IL or missing references) //IL_0b02: Unknown result type (might be due to invalid IL or missing references) //IL_0b08: Unknown result type (might be due to invalid IL or missing references) //IL_0b12: Unknown result type (might be due to invalid IL or missing references) //IL_0b17: Unknown result type (might be due to invalid IL or missing references) //IL_0b1d: Unknown result type (might be due to invalid IL or missing references) //IL_0b27: Unknown result type (might be due to invalid IL or missing references) //IL_0b2c: Unknown result type (might be due to invalid IL or missing references) //IL_0b32: Unknown result type (might be due to invalid IL or missing references) //IL_0b37: Unknown result type (might be due to invalid IL or missing references) //IL_0b3d: Unknown result type (might be due to invalid IL or missing references) //IL_0b42: Unknown result type (might be due to invalid IL or missing references) //IL_0b48: Unknown result type (might be due to invalid IL or missing references) //IL_0b4d: Unknown result type (might be due to invalid IL or missing references) //IL_0b59: Unknown result type (might be due to invalid IL or missing references) //IL_0c7a: Unknown result type (might be due to invalid IL or missing references) //IL_0c80: Unknown result type (might be due to invalid IL or missing references) //IL_0c85: Unknown result type (might be due to invalid IL or missing references) //IL_0c8b: Unknown result type (might be due to invalid IL or missing references) //IL_0c95: Unknown result type (might be due to invalid IL or missing references) //IL_0c9a: Unknown result type (might be due to invalid IL or missing references) //IL_0ca0: Unknown result type (might be due to invalid IL or missing references) //IL_0caa: Unknown result type (might be due to invalid IL or missing references) //IL_0caf: Unknown result type (might be due to invalid IL or missing references) //IL_0cb5: Unknown result type (might be due to invalid IL or missing references) //IL_0cbf: Unknown result type (might be due to invalid IL or missing references) //IL_0cc4: Unknown result type (might be due to invalid IL or missing references) //IL_0cca: Unknown result type (might be due to invalid IL or missing references) //IL_0ccf: Unknown result type (might be due to invalid IL or missing references) //IL_0cd5: Unknown result type (might be due to invalid IL or missing references) //IL_0cda: Unknown result type (might be due to invalid IL or missing references) //IL_0ce0: Unknown result type (might be due to invalid IL or missing references) //IL_0ce5: Unknown result type (might be due to invalid IL or missing references) //IL_0cf0: Unknown result type (might be due to invalid IL or missing references) //IL_0cf6: Unknown result type (might be due to invalid IL or missing references) //IL_0cfb: Unknown result type (might be due to invalid IL or missing references) //IL_0d01: Unknown result type (might be due to invalid IL or missing references) //IL_0d0b: Unknown result type (might be due to invalid IL or missing references) //IL_0d10: Unknown result type (might be due to invalid IL or missing references) //IL_0d16: Unknown result type (might be due to invalid IL or missing references) //IL_0d20: Unknown result type (might be due to invalid IL or missing references) //IL_0d25: Unknown result type (might be due to invalid IL or missing references) //IL_0d2b: Unknown result type (might be due to invalid IL or missing references) //IL_0d35: Unknown result type (might be due to invalid IL or missing references) //IL_0d3a: Unknown result type (might be due to invalid IL or missing references) //IL_0d40: Unknown result type (might be due to invalid IL or missing references) //IL_0d45: Unknown result type (might be due to invalid IL or missing references) //IL_0d4b: Unknown result type (might be due to invalid IL or missing references) //IL_0d50: Unknown result type (might be due to invalid IL or missing references) //IL_0d5c: Unknown result type (might be due to invalid IL or missing references) //IL_0b73: Unknown result type (might be due to invalid IL or missing references) //IL_0b79: Unknown result type (might be due to invalid IL or missing references) //IL_0b7e: Unknown result type (might be due to invalid IL or missing references) //IL_0b84: Unknown result type (might be due to invalid IL or missing references) //IL_0b8e: Unknown result type (might be due to invalid IL or missing references) //IL_0b93: Unknown result type (might be due to invalid IL or missing references) //IL_0b99: Unknown result type (might be due to invalid IL or missing references) //IL_0ba3: Unknown result type (might be due to invalid IL or missing references) //IL_0ba8: Unknown result type (might be due to invalid IL or missing references) //IL_0bae: Unknown result type (might be due to invalid IL or missing references) //IL_0bb8: Unknown result type (might be due to invalid IL or missing references) //IL_0bbd: Unknown result type (might be due to invalid IL or missing references) //IL_0bc3: Unknown result type (might be due to invalid IL or missing references) //IL_0bc8: Unknown result type (might be due to invalid IL or missing references) //IL_0bce: Unknown result type (might be due to invalid IL or missing references) //IL_0bd3: Unknown result type (might be due to invalid IL or missing references) //IL_0bd9: Unknown result type (might be due to invalid IL or missing references) //IL_0bde: Unknown result type (might be due to invalid IL or missing references) //IL_0be9: Unknown result type (might be due to invalid IL or missing references) //IL_0bef: Unknown result type (might be due to invalid IL or missing references) //IL_0bf4: Unknown result type (might be due to invalid IL or missing references) //IL_0bfa: Unknown result type (might be due to invalid IL or missing references) //IL_0c04: Unknown result type (might be due to invalid IL or missing references) //IL_0c09: Unknown result type (might be due to invalid IL or missing references) //IL_0c0f: Unknown result type (might be due to invalid IL or missing references) //IL_0c14: Unknown result type (might be due to invalid IL or missing references) //IL_0c1a: Unknown result type (might be due to invalid IL or missing references) //IL_0c24: Unknown result type (might be due to invalid IL or missing references) //IL_0c29: Unknown result type (might be due to invalid IL or missing references) //IL_0c2f: Unknown result type (might be due to invalid IL or missing references) //IL_0c39: Unknown result type (might be due to invalid IL or missing references) //IL_0c3e: Unknown result type (might be due to invalid IL or missing references) //IL_0c44: Unknown result type (might be due to invalid IL or missing references) //IL_0c49: Unknown result type (might be due to invalid IL or missing references) //IL_0c4f: Unknown result type (might be due to invalid IL or missing references) //IL_0c54: Unknown result type (might be due to invalid IL or missing references) //IL_0c60: Unknown result type (might be due to invalid IL or missing references) //IL_0d77: Unknown result type (might be due to invalid IL or missing references) //IL_0d7c: Unknown result type (might be due to invalid IL or missing references) //IL_1c68: Unknown result type (might be due to invalid IL or missing references) //IL_1c6e: Unknown result type (might be due to invalid IL or missing references) //IL_1c73: Unknown result type (might be due to invalid IL or missing references) //IL_1c79: Unknown result type (might be due to invalid IL or missing references) //IL_1c83: Unknown result type (might be due to invalid IL or missing references) //IL_1c88: Unknown result type (might be due to invalid IL or missing references) //IL_1c8e: Unknown result type (might be due to invalid IL or missing references) //IL_1c98: Unknown result type (might be due to invalid IL or missing references) //IL_1c9d: Unknown result type (might be due to invalid IL or missing references) //IL_1ca3: Unknown result type (might be due to invalid IL or missing references) //IL_1cad: Unknown result type (might be due to invalid IL or missing references) //IL_1cb2: Unknown result type (might be due to invalid IL or missing references) //IL_1cb8: Unknown result type (might be due to invalid IL or missing references) //IL_1cbd: Unknown result type (might be due to invalid IL or missing references) //IL_1cc3: Unknown result type (might be due to invalid IL or missing references) //IL_1cc8: Unknown result type (might be due to invalid IL or missing references) //IL_1cce: Unknown result type (might be due to invalid IL or missing references) //IL_1cd3: Unknown result type (might be due to invalid IL or missing references) //IL_1cde: Unknown result type (might be due to invalid IL or missing references) //IL_1ce4: Unknown result type (might be due to invalid IL or missing references) //IL_1ce9: Unknown result type (might be due to invalid IL or missing references) //IL_1cef: Unknown result type (might be due to invalid IL or missing references) //IL_1cf9: Unknown result type (might be due to invalid IL or missing references) //IL_1cfe: Unknown result type (might be due to invalid IL or missing references) //IL_1d04: Unknown result type (might be due to invalid IL or missing references) //IL_1d0e: Unknown result type (might be due to invalid IL or missing references) //IL_1d13: Unknown result type (might be due to invalid IL or missing references) //IL_1d19: Unknown result type (might be due to invalid IL or missing references) //IL_1d23: Unknown result type (might be due to invalid IL or missing references) //IL_1d28: Unknown result type (might be due to invalid IL or missing references) //IL_1d2e: Unknown result type (might be due to invalid IL or missing references) //IL_1d33: Unknown result type (might be due to invalid IL or missing references) //IL_1d39: Unknown result type (might be due to invalid IL or missing references) //IL_1d3e: Unknown result type (might be due to invalid IL or missing references) //IL_1d44: Unknown result type (might be due to invalid IL or missing references) //IL_1d49: Unknown result type (might be due to invalid IL or missing references) //IL_1d55: Unknown result type (might be due to invalid IL or missing references) //IL_0db7: Unknown result type (might be due to invalid IL or missing references) //IL_0dbd: Unknown result type (might be due to invalid IL or missing references) //IL_0dc2: Unknown result type (might be due to invalid IL or missing references) //IL_0dc8: Unknown result type (might be due to invalid IL or missing references) //IL_0dcd: Unknown result type (might be due to invalid IL or missing references) //IL_0dd3: Unknown result type (might be due to invalid IL or missing references) //IL_0ddd: Unknown result type (might be due to invalid IL or missing references) //IL_0de2: Unknown result type (might be due to invalid IL or missing references) //IL_0de8: Unknown result type (might be due to invalid IL or missing references) //IL_0df2: Unknown result type (might be due to invalid IL or missing references) //IL_0df8: Unknown result type (might be due to invalid IL or missing references) //IL_0dfd: Unknown result type (might be due to invalid IL or missing references) //IL_0e03: Unknown result type (might be due to invalid IL or missing references) //IL_0e08: Unknown result type (might be due to invalid IL or missing references) //IL_0e0d: Unknown result type (might be due to invalid IL or missing references) //IL_0e18: Unknown result type (might be due to invalid IL or missing references) //IL_0e1e: Unknown result type (might be due to invalid IL or missing references) //IL_0e23: Unknown result type (might be due to invalid IL or missing references) //IL_0e29: Unknown result type (might be due to invalid IL or missing references) //IL_0e2e: Unknown result type (might be due to invalid IL or missing references) //IL_0e34: Unknown result type (might be due to invalid IL or missing references) //IL_0e3e: Unknown result type (might be due to invalid IL or missing references) //IL_0e43: Unknown result type (might be due to invalid IL or missing references) //IL_0e49: Unknown result type (might be due to invalid IL or missing references) //IL_0e53: Unknown result type (might be due to invalid IL or missing references) //IL_0e59: Unknown result type (might be due to invalid IL or missing references) //IL_0e5e: Unknown result type (might be due to invalid IL or missing references) //IL_0e64: Unknown result type (might be due to invalid IL or missing references) //IL_0e69: Unknown result type (might be due to invalid IL or missing references) //IL_0e6e: Unknown result type (might be due to invalid IL or missing references) //IL_0e7a: Unknown result type (might be due to invalid IL or missing references) //IL_1e76: Unknown result type (might be due to invalid IL or missing references) //IL_1e7c: Unknown result type (might be due to invalid IL or missing references) //IL_1e81: Unknown result type (might be due to invalid IL or missing references) //IL_1e87: Unknown result type (might be due to invalid IL or missing references) //IL_1e91: Unknown result type (might be due to invalid IL or missing references) //IL_1e96: Unknown result type (might be due to invalid IL or missing references) //IL_1e9c: Unknown result type (might be due to invalid IL or missing references) //IL_1ea6: Unknown result type (might be due to invalid IL or missing references) //IL_1eab: Unknown result type (might be due to invalid IL or missing references) //IL_1eb1: Unknown result type (might be due to invalid IL or missing references) //IL_1ebb: Unknown result type (might be due to invalid IL or missing references) //IL_1ec0: Unknown result type (might be due to invalid IL or missing references) //IL_1ec6: Unknown result type (might be due to invalid IL or missing references) //IL_1ecb: Unknown result type (might be due to invalid IL or missing references) //IL_1ed1: Unknown result type (might be due to invalid IL or missing references) //IL_1ed6: Unknown result type (might be due to invalid IL or missing references) //IL_1edc: Unknown result type (might be due to invalid IL or missing references) //IL_1ee1: Unknown result type (might be due to invalid IL or missing references) //IL_1eec: Unknown result type (might be due to invalid IL or missing references) //IL_1ef2: Unknown result type (might be due to invalid IL or missing references) //IL_1ef7: Unknown result type (might be due to invalid IL or missing references) //IL_1efd: Unknown result type (might be due to invalid IL or missing references) //IL_1f07: Unknown result type (might be due to invalid IL or missing references) //IL_1f0c: Unknown result type (might be due to invalid IL or missing references) //IL_1f12: Unknown result type (might be due to invalid IL or missing references) //IL_1f1c: Unknown result type (might be due to invalid IL or missing references) //IL_1f21: Unknown result type (might be due to invalid IL or missing references) //IL_1f27: Unknown result type (might be due to invalid IL or missing references) //IL_1f31: Unknown result type (might be due to invalid IL or missing references) //IL_1f36: Unknown result type (might be due to invalid IL or missing references) //IL_1f3c: Unknown result type (might be due to invalid IL or missing references) //IL_1f41: Unknown result type (might be due to invalid IL or missing references) //IL_1f47: Unknown result type (might be due to invalid IL or missing references) //IL_1f4c: Unknown result type (might be due to invalid IL or missing references) //IL_1f58: Unknown result type (might be due to invalid IL or missing references) //IL_1d6f: Unknown result type (might be due to invalid IL or missing references) //IL_1d75: Unknown result type (might be due to invalid IL or missing references) //IL_1d7a: Unknown result type (might be due to invalid IL or missing references) //IL_1d80: Unknown result type (might be due to invalid IL or missing references) //IL_1d8a: Unknown result type (might be due to invalid IL or missing references) //IL_1d8f: Unknown result type (might be due to invalid IL or missing references) //IL_1d95: Unknown result type (might be due to invalid IL or missing references) //IL_1d9f: Unknown result type (might be due to invalid IL or missing references) //IL_1da4: Unknown result type (might be due to invalid IL or missing references) //IL_1daa: Unknown result type (might be due to invalid IL or missing references) //IL_1db4: Unknown result type (might be due to invalid IL or missing references) //IL_1db9: Unknown result type (might be due to invalid IL or missing references) //IL_1dbf: Unknown result type (might be due to invalid IL or missing references) //IL_1dc4: Unknown result type (might be due to invalid IL or missing references) //IL_1dca: Unknown result type (might be due to invalid IL or missing references) //IL_1dcf: Unknown result type (might be due to invalid IL or missing references) //IL_1dd5: Unknown result type (might be due to invalid IL or missing references) //IL_1dda: Unknown result type (might be due to invalid IL or missing references) //IL_1de5: Unknown result type (might be due to invalid IL or missing references) //IL_1deb: Unknown result type (might be due to invalid IL or missing references) //IL_1df0: Unknown result type (might be due to invalid IL or missing references) //IL_1df6: Unknown result type (might be due to invalid IL or missing references) //IL_1e00: Unknown result type (might be due to invalid IL or missing references) //IL_1e05: Unknown result type (might be due to invalid IL or missing references) //IL_1e0b: Unknown result type (might be due to invalid IL or missing references) //IL_1e10: Unknown result type (might be due to invalid IL or missing references) //IL_1e16: Unknown result type (might be due to invalid IL or missing references) //IL_1e20: Unknown result type (might be due to invalid IL or missing references) //IL_1e25: Unknown result type (might be due to invalid IL or missing references) //IL_1e2b: Unknown result type (might be due to invalid IL or missing references) //IL_1e35: Unknown result type (might be due to invalid IL or missing references) //IL_1e3a: Unknown result type (might be due to invalid IL or missing references) //IL_1e40: Unknown result type (might be due to invalid IL or missing references) //IL_1e45: Unknown result type (might be due to invalid IL or missing references) //IL_1e4b: Unknown result type (might be due to invalid IL or missing references) //IL_1e50: Unknown result type (might be due to invalid IL or missing references) //IL_1e5c: Unknown result type (might be due to invalid IL or missing references) //IL_0f45: Unknown result type (might be due to invalid IL or missing references) //IL_0f4b: Unknown result type (might be due to invalid IL or missing references) //IL_0f50: Unknown result type (might be due to invalid IL or missing references) //IL_0f56: Unknown result type (might be due to invalid IL or missing references) //IL_0f5b: Unknown result type (might be due to invalid IL or missing references) //IL_0f61: Unknown result type (might be due to invalid IL or missing references) //IL_0f6b: Unknown result type (might be due to invalid IL or missing references) //IL_0f70: Unknown result type (might be due to invalid IL or missing references) //IL_0f76: Unknown result type (might be due to invalid IL or missing references) //IL_0f80: Unknown result type (might be due to invalid IL or missing references) //IL_0f86: Unknown result type (might be due to invalid IL or missing references) //IL_0f8b: Unknown result type (might be due to invalid IL or missing references) //IL_0f91: Unknown result type (might be due to invalid IL or missing references) //IL_0f96: Unknown result type (might be due to invalid IL or missing references) //IL_0f9b: Unknown result type (might be due to invalid IL or missing references) //IL_0fa1: Unknown result type (might be due to invalid IL or missing references) //IL_0fab: Unknown result type (might be due to invalid IL or missing references) //IL_0fb0: Unknown result type (might be due to invalid IL or missing references) //IL_0fbb: Unknown result type (might be due to invalid IL or missing references) //IL_0fc1: Unknown result type (might be due to invalid IL or missing references) //IL_0fc6: Unknown result type (might be due to invalid IL or missing references) //IL_0fcc: Unknown result type (might be due to invalid IL or missing references) //IL_0fd1: Unknown result type (might be due to invalid IL or missing references) //IL_0fd7: Unknown result type (might be due to invalid IL or missing references) //IL_0fe1: Unknown result type (might be due to invalid IL or missing references) //IL_0fe6: Unknown result type (might be due to invalid IL or missing references) //IL_0fec: Unknown result type (might be due to invalid IL or missing references) //IL_0ff6: Unknown result type (might be due to invalid IL or missing references) //IL_0ffc: Unknown result type (might be due to invalid IL or missing references) //IL_1001: Unknown result type (might be due to invalid IL or missing references) //IL_1007: Unknown result type (might be due to invalid IL or missing references) //IL_100c: Unknown result type (might be due to invalid IL or missing references) //IL_1011: Unknown result type (might be due to invalid IL or missing references) //IL_1017: Unknown result type (might be due to invalid IL or missing references) //IL_1021: Unknown result type (might be due to invalid IL or missing references) //IL_1026: Unknown result type (might be due to invalid IL or missing references) //IL_1032: Unknown result type (might be due to invalid IL or missing references) //IL_0e94: Unknown result type (might be due to invalid IL or missing references) //IL_0e99: Unknown result type (might be due to invalid IL or missing references) //IL_1f73: Unknown result type (might be due to invalid IL or missing references) //IL_1f78: Unknown result type (might be due to invalid IL or missing references) //IL_1100: Unknown result type (might be due to invalid IL or missing references) //IL_1106: Unknown result type (might be due to invalid IL or missing references) //IL_110b: Unknown result type (might be due to invalid IL or missing references) //IL_1111: Unknown result type (might be due to invalid IL or missing references) //IL_1116: Unknown result type (might be due to invalid IL or missing references) //IL_111c: Unknown result type (might be due to invalid IL or missing references) //IL_1126: Unknown result type (might be due to invalid IL or missing references) //IL_112b: Unknown result type (might be due to invalid IL or missing references) //IL_1131: Unknown result type (might be due to invalid IL or missing references) //IL_113b: Unknown result type (might be due to invalid IL or missing references) //IL_1141: Unknown result type (might be due to invalid IL or missing references) //IL_1146: Unknown result type (might be due to invalid IL or missing references) //IL_114c: Unknown result type (might be due to invalid IL or missing references) //IL_1151: Unknown result type (might be due to invalid IL or missing references) //IL_1156: Unknown result type (might be due to invalid IL or missing references) //IL_115c: Unknown result type (might be due to invalid IL or missing references) //IL_1166: Unknown result type (might be due to invalid IL or missing references) //IL_116b: Unknown result type (might be due to invalid IL or missing references) //IL_1176: Unknown result type (might be due to invalid IL or missing references) //IL_117c: Unknown result type (might be due to invalid IL or missing references) //IL_1181: Unknown result type (might be due to invalid IL or missing references) //IL_1187: Unknown result type (might be due to invalid IL or missing references) //IL_118c: Unknown result type (might be due to invalid IL or missing references) //IL_1192: Unknown result type (might be due to invalid IL or missing references) //IL_119c: Unknown result type (might be due to invalid IL or missing references) //IL_11a1: Unknown result type (might be due to invalid IL or missing references) //IL_11a7: Unknown result type (might be due to invalid IL or missing references) //IL_11b1: Unknown result type (might be due to invalid IL or missing references) //IL_11b7: Unknown result type (might be due to invalid IL or missing references) //IL_11bc: Unknown result type (might be due to invalid IL or missing references) //IL_11c2: Unknown result type (might be due to invalid IL or missing references) //IL_11c7: Unknown result type (might be due to invalid IL or missing references) //IL_11cc: Unknown result type (might be due to invalid IL or missing references) //IL_11d2: Unknown result type (might be due to invalid IL or missing references) //IL_11dc: Unknown result type (might be due to invalid IL or missing references) //IL_11e1: Unknown result type (might be due to invalid IL or missing references) //IL_11ed: Unknown result type (might be due to invalid IL or missing references) //IL_104c: Unknown result type (might be due to invalid IL or missing references) //IL_1051: Unknown result type (might be due to invalid IL or missing references) //IL_0ecd: Unknown result type (might be due to invalid IL or missing references) //IL_0ed2: Unknown result type (might be due to invalid IL or missing references) //IL_0ee0: Unknown result type (might be due to invalid IL or missing references) //IL_0ee5: Unknown result type (might be due to invalid IL or missing references) //IL_0f00: Unknown result type (might be due to invalid IL or missing references) //IL_0f05: Unknown result type (might be due to invalid IL or missing references) //IL_0f0e: Unknown result type (might be due to invalid IL or missing references) //IL_0f19: Unknown result type (might be due to invalid IL or missing references) //IL_0f2a: Unknown result type (might be due to invalid IL or missing references) //IL_0f2f: Unknown result type (might be due to invalid IL or missing references) //IL_0f34: Unknown result type (might be due to invalid IL or missing references) //IL_2e68: Unknown result type (might be due to invalid IL or missing references) //IL_2e6e: Unknown result type (might be due to invalid IL or missing references) //IL_2e73: Unknown result type (might be due to invalid IL or missing references) //IL_2e79: Unknown result type (might be due to invalid IL or missing references) //IL_2e83: Unknown result type (might be due to invalid IL or missing references) //IL_2e88: Unknown result type (might be due to invalid IL or missing references) //IL_2e8e: Unknown result type (might be due to invalid IL or missing references) //IL_2e98: Unknown result type (might be due to invalid IL or missing references) //IL_2e9d: Unknown result type (might be due to invalid IL or missing references) //IL_2ea3: Unknown result type (might be due to invalid IL or missing references) //IL_2ead: Unknown result type (might be due to invalid IL or missing references) //IL_2eb2: Unknown result type (might be due to invalid IL or missing references) //IL_2eb8: Unknown result type (might be due to invalid IL or missing references) //IL_2ebd: Unknown result type (might be due to invalid IL or missing references) //IL_2ec3: Unknown result type (might be due to invalid IL or missing references) //IL_2ec8: Unknown result type (might be due to invalid IL or missing references) //IL_2ece: Unknown result type (might be due to invalid IL or missing references) //IL_2ed3: Unknown result type (might be due to invalid IL or missing references) //IL_2ede: Unknown result type (might be due to invalid IL or missing references) //IL_2ee4: Unknown result type (might be due to invalid IL or missing references) //IL_2ee9: Unknown result type (might be due to invalid IL or missing references) //IL_2eef: Unknown result type (might be due to invalid IL or missing references) //IL_2ef9: Unknown result type (might be due to invalid IL or missing references) //IL_2efe: Unknown result type (might be due to invalid IL or missing references) //IL_2f04: Unknown result type (might be due to invalid IL or missing references) //IL_2f0e: Unknown result type (might be due to invalid IL or missing references) //IL_2f13: Unknown result type (might be due to invalid IL or missing references) //IL_2f19: Unknown result type (might be due to invalid IL or missing references) //IL_2f23: Unknown result type (might be due to invalid IL or missing references) //IL_2f28: Unknown result type (might be due to invalid IL or missing references) //IL_2f2e: Unknown result type (might be due to invalid IL or missing references) //IL_2f33: Unknown result type (might be due to invalid IL or missing references) //IL_2f39: Unknown result type (might be due to invalid IL or missing references) //IL_2f3e: Unknown result type (might be due to invalid IL or missing references) //IL_2f44: Unknown result type (might be due to invalid IL or missing references) //IL_2f49: Unknown result type (might be due to invalid IL or missing references) //IL_2f55: Unknown result type (might be due to invalid IL or missing references) //IL_1fb4: Unknown result type (might be due to invalid IL or missing references) //IL_1fba: Unknown result type (might be due to invalid IL or missing references) //IL_1fbf: Unknown result type (might be due to invalid IL or missing references) //IL_1fc5: Unknown result type (might be due to invalid IL or missing references) //IL_1fca: Unknown result type (might be due to invalid IL or missing references) //IL_1fd0: Unknown result type (might be due to invalid IL or missing references) //IL_1fda: Unknown result type (might be due to invalid IL or missing references) //IL_1fdf: Unknown result type (might be due to invalid IL or missing references) //IL_1fe5: Unknown result type (might be due to invalid IL or missing references) //IL_1fef: Unknown result type (might be due to invalid IL or missing references) //IL_1ff5: Unknown result type (might be due to invalid IL or missing references) //IL_1ffa: Unknown result type (might be due to invalid IL or missing references) //IL_2000: Unknown result type (might be due to invalid IL or missing references) //IL_2005: Unknown result type (might be due to invalid IL or missing references) //IL_200a: Unknown result type (might be due to invalid IL or missing references) //IL_2015: Unknown result type (might be due to invalid IL or missing references) //IL_201b: Unknown result type (might be due to invalid IL or missing references) //IL_2020: Unknown result type (might be due to invalid IL or missing references) //IL_2026: Unknown result type (might be due to invalid IL or missing references) //IL_202b: Unknown result type (might be due to invalid IL or missing references) //IL_2031: Unknown result type (might be due to invalid IL or missing references) //IL_203b: Unknown result type (might be due to invalid IL or missing references) //IL_2040: Unknown result type (might be due to invalid IL or missing references) //IL_2046: Unknown result type (might be due to invalid IL or missing references) //IL_2050: Unknown result type (might be due to invalid IL or missing references) //IL_2056: Unknown result type (might be due to invalid IL or missing references) //IL_205b: Unknown result type (might be due to invalid IL or missing references) //IL_2061: Unknown result type (might be due to invalid IL or missing references) //IL_2066: Unknown result type (might be due to invalid IL or missing references) //IL_206b: Unknown result type (might be due to invalid IL or missing references) //IL_2077: Unknown result type (might be due to invalid IL or missing references) //IL_12bb: Unknown result type (might be due to invalid IL or missing references) //IL_12c1: Unknown result type (might be due to invalid IL or missing references) //IL_12c6: Unknown result type (might be due to invalid IL or missing references) //IL_12cc: Unknown result type (might be due to invalid IL or missing references) //IL_12d1: Unknown result type (might be due to invalid IL or missing references) //IL_12d7: Unknown result type (might be due to invalid IL or missing references) //IL_12e1: Unknown result type (might be due to invalid IL or missing references) //IL_12e6: Unknown result type (might be due to invalid IL or missing references) //IL_12ec: Unknown result type (might be due to invalid IL or missing references) //IL_12f6: Unknown result type (might be due to invalid IL or missing references) //IL_12fc: Unknown result type (might be due to invalid IL or missing references) //IL_1301: Unknown result type (might be due to invalid IL or missing references) //IL_1307: Unknown result type (might be due to invalid IL or missing references) //IL_130c: Unknown result type (might be due to invalid IL or missing references) //IL_1311: Unknown result type (might be due to invalid IL or missing references) //IL_1317: Unknown result type (might be due to invalid IL or missing references) //IL_1321: Unknown result type (might be due to invalid IL or missing references) //IL_1326: Unknown result type (might be due to invalid IL or missing references) //IL_1331: Unknown result type (might be due to invalid IL or missing references) //IL_1337: Unknown result type (might be due to invalid IL or missing references) //IL_133c: Unknown result type (might be due to invalid IL or missing references) //IL_1342: Unknown result type (might be due to invalid IL or missing references) //IL_1347: Unknown result type (might be due to invalid IL or missing references) //IL_134d: Unknown result type (might be due to invalid IL or missing references) //IL_1357: Unknown result type (might be due to invalid IL or missing references) //IL_135c: Unknown result type (might be due to invalid IL or missing references) //IL_1362: Unknown result type (might be due to invalid IL or missing references) //IL_136c: Unknown result type (might be due to invalid IL or missing references) //IL_1372: Unknown result type (might be due to invalid IL or missing references) //IL_1377: Unknown result type (might be due to invalid IL or missing references) //IL_137d: Unknown result type (might be due to invalid IL or missing references) //IL_1382: Unknown result type (might be due to invalid IL or missing references) //IL_1387: Unknown result type (might be due to invalid IL or missing references) //IL_138d: Unknown result type (might be due to invalid IL or missing references) //IL_1397: Unknown result type (might be due to invalid IL or missing references) //IL_139c: Unknown result type (might be due to invalid IL or missing references) //IL_13a8: Unknown result type (might be due to invalid IL or missing references) //IL_1207: Unknown result type (might be due to invalid IL or missing references) //IL_120c: Unknown result type (might be due to invalid IL or missing references) //IL_1086: Unknown result type (might be due to invalid IL or missing references) //IL_108b: Unknown result type (might be due to invalid IL or missing references) //IL_109a: Unknown result type (might be due to invalid IL or missing references) //IL_109f: Unknown result type (might be due to invalid IL or missing references) //IL_10bb: Unknown result type (might be due to invalid IL or missing references) //IL_10c0: Unknown result type (might be due to invalid IL or missing references) //IL_10c9: Unknown result type (might be due to invalid IL or missing references) //IL_10d4: Unknown result type (might be due to invalid IL or missing references) //IL_10e5: Unknown result type (might be due to invalid IL or missing references) //IL_10ea: Unknown result type (might be due to invalid IL or missing references) //IL_10ef: Unknown result type (might be due to invalid IL or missing references) //IL_3076: Unknown result type (might be due to invalid IL or missing references) //IL_307c: Unknown result type (might be due to invalid IL or missing references) //IL_3081: Unknown result type (might be due to invalid IL or missing references) //IL_3087: Unknown result type (might be due to invalid IL or missing references) //IL_3091: Unknown result type (might be due to invalid IL or missing references) //IL_3096: Unknown result type (might be due to invalid IL or missing references) //IL_309c: Unknown result type (might be due to invalid IL or missing references) //IL_30a6: Unknown result type (might be due to invalid IL or missing references) //IL_30ab: Unknown result type (might be due to invalid IL or missing references) //IL_30b1: Unknown result type (might be due to invalid IL or missing references) //IL_30bb: Unknown result type (might be due to invalid IL or missing references) //IL_30c0: Unknown result type (might be due to invalid IL or missing references) //IL_30c6: Unknown result type (might be due to invalid IL or missing references) //IL_30cb: Unknown result type (might be due to invalid IL or missing references) //IL_30d1: Unknown result type (might be due to invalid IL or missing references) //IL_30d6: Unknown result type (might be due to invalid IL or missing references) //IL_30dc: Unknown result type (might be due to invalid IL or missing references) //IL_30e1: Unknown result type (might be due to invalid IL or missing references) //IL_30ec: Unknown result type (might be due to invalid IL or missing references) //IL_30f2: Unknown result type (might be due to invalid IL or missing references) //IL_30f7: Unknown result type (might be due to invalid IL or missing references) //IL_30fd: Unknown result type (might be due to invalid IL or missing references) //IL_3107: Unknown result type (might be due to invalid IL or missing references) //IL_310c: Unknown result type (might be due to invalid IL or missing references) //IL_3112: Unknown result type (might be due to invalid IL or missing references) //IL_311c: Unknown result type (might be due to invalid IL or missing references) //IL_3121: Unknown result type (might be due to invalid IL or missing references) //IL_3127: Unknown result type (might be due to invalid IL or missing references) //IL_3131: Unknown result type (might be due to invalid IL or missing references) //IL_3136: Unknown result type (might be due to invalid IL or missing references) //IL_313c: Unknown result type (might be due to invalid IL or missing references) //IL_3141: Unknown result type (might be due to invalid IL or missing references) //IL_3147: Unknown result type (might be due to invalid IL or missing references) //IL_314c: Unknown result type (might be due to invalid IL or missing references) //IL_3158: Unknown result type (might be due to invalid IL or missing references) //IL_2f6f: Unknown result type (might be due to invalid IL or missing references) //IL_2f75: Unknown result type (might be due to invalid IL or missing references) //IL_2f7a: Unknown result type (might be due to invalid IL or missing references) //IL_2f80: Unknown result type (might be due to invalid IL or missing references) //IL_2f8a: Unknown result type (might be due to invalid IL or missing references) //IL_2f8f: Unknown result type (might be due to invalid IL or missing references) //IL_2f95: Unknown result type (might be due to invalid IL or missing references) //IL_2f9f: Unknown result type (might be due to invalid IL or missing references) //IL_2fa4: Unknown result type (might be due to invalid IL or missing references) //IL_2faa: Unknown result type (might be due to invalid IL or missing references) //IL_2fb4: Unknown result type (might be due to invalid IL or missing references) //IL_2fb9: Unknown result type (might be due to invalid IL or missing references) //IL_2fbf: Unknown result type (might be due to invalid IL or missing references) //IL_2fc4: Unknown result type (might be due to invalid IL or missing references) //IL_2fca: Unknown result type (might be due to invalid IL or missing references) //IL_2fcf: Unknown result type (might be due to invalid IL or missing references) //IL_2fd5: Unknown result type (might be due to invalid IL or missing references) //IL_2fda: Unknown result type (might be due to invalid IL or missing references) //IL_2fe5: Unknown result type (might be due to invalid IL or missing references) //IL_2feb: Unknown result type (might be due to invalid IL or missing references) //IL_2ff0: Unknown result type (might be due to invalid IL or missing references) //IL_2ff6: Unknown result type (might be due to invalid IL or missing references) //IL_3000: Unknown result type (might be due to invalid IL or missing references) //IL_3005: Unknown result type (might be due to invalid IL or missing references) //IL_300b: Unknown result type (might be due to invalid IL or missing references) //IL_3010: Unknown result type (might be due to invalid IL or missing references) //IL_3016: Unknown result type (might be due to invalid IL or missing references) //IL_3020: Unknown result type (might be due to invalid IL or missing references) //IL_3025: Unknown result type (might be due to invalid IL or missing references) //IL_302b: Unknown result type (might be due to invalid IL or missing references) //IL_3035: Unknown result type (might be due to invalid IL or missing references) //IL_303a: Unknown result type (might be due to invalid IL or missing references) //IL_3040: Unknown result type (might be due to invalid IL or missing references) //IL_3045: Unknown result type (might be due to invalid IL or missing references) //IL_304b: Unknown result type (might be due to invalid IL or missing references) //IL_3050: Unknown result type (might be due to invalid IL or missing references) //IL_305c: Unknown result type (might be due to invalid IL or missing references) //IL_2145: Unknown result type (might be due to invalid IL or missing references) //IL_214b: Unknown result type (might be due to invalid IL or missing references) //IL_2150: Unknown result type (might be due to invalid IL or missing references) //IL_2156: Unknown result type (might be due to invalid IL or missing references) //IL_215b: Unknown result type (might be due to invalid IL or missing references) //IL_2161: Unknown result type (might be due to invalid IL or missing references) //IL_216b: Unknown result type (might be due to invalid IL or missing references) //IL_2170: Unknown result type (might be due to invalid IL or missing references) //IL_2176: Unknown result type (might be due to invalid IL or missing references) //IL_2180: Unknown result type (might be due to invalid IL or missing references) //IL_2186: Unknown result type (might be due to invalid IL or missing references) //IL_218b: Unknown result type (might be due to invalid IL or missing references) //IL_2191: Unknown result type (might be due to invalid IL or missing references) //IL_2196: Unknown result type (might be due to invalid IL or missing references) //IL_219b: Unknown result type (might be due to invalid IL or missing references) //IL_21a1: Unknown result type (might be due to invalid IL or missing references) //IL_21ab: Unknown result type (might be due to invalid IL or missing references) //IL_21b0: Unknown result type (might be due to invalid IL or missing references) //IL_21bb: Unknown result type (might be due to invalid IL or missing references) //IL_21c1: Unknown result type (might be due to invalid IL or missing references) //IL_21c6: Unknown result type (might be due to invalid IL or missing references) //IL_21cc: Unknown result type (might be due to invalid IL or missing references) //IL_21d1: Unknown result type (might be due to invalid IL or missing references) //IL_21d7: Unknown result type (might be due to invalid IL or missing references) //IL_21e1: Unknown result type (might be due to invalid IL or missing references) //IL_21e6: Unknown result type (might be due to invalid IL or missing references) //IL_21ec: Unknown result type (might be due to invalid IL or missing references) //IL_21f6: Unknown result type (might be due to invalid IL or missing references) //IL_21fc: Unknown result type (might be due to invalid IL or missing references) //IL_2201: Unknown result type (might be due to invalid IL or missing references) //IL_2207: Unknown result type (might be due to invalid IL or missing references) //IL_220c: Unknown result type (might be due to invalid IL or missing references) //IL_2211: Unknown result type (might be due to invalid IL or missing references) //IL_2217: Unknown result type (might be due to invalid IL or missing references) //IL_2221: Unknown result type (might be due to invalid IL or missing references) //IL_2226: Unknown result type (might be due to invalid IL or missing references) //IL_2232: Unknown result type (might be due to invalid IL or missing references) //IL_2091: Unknown result type (might be due to invalid IL or missing references) //IL_2096: Unknown result type (might be due to invalid IL or missing references) //IL_1476: Unknown result type (might be due to invalid IL or missing references) //IL_147c: Unknown result type (might be due to invalid IL or missing references) //IL_1481: Unknown result type (might be due to invalid IL or missing references) //IL_1487: Unknown result type (might be due to invalid IL or missing references) //IL_148c: Unknown result type (might be due to invalid IL or missing references) //IL_1492: Unknown result type (might be due to invalid IL or missing references) //IL_149c: Unknown result type (might be due to invalid IL or missing references) //IL_14a1: Unknown result type (might be due to invalid IL or missing references) //IL_14a7: Unknown result type (might be due to invalid IL or missing references) //IL_14b1: Unknown result type (might be due to invalid IL or missing references) //IL_14b7: Unknown result type (might be due to invalid IL or missing references) //IL_14bc: Unknown result type (might be due to invalid IL or missing references) //IL_14c2: Unknown result type (might be due to invalid IL or missing references) //IL_14c7: Unknown result type (might be due to invalid IL or missing references) //IL_14cc: Unknown result type (might be due to invalid IL or missing references) //IL_14d2: Unknown result type (might be due to invalid IL or missing references) //IL_14dc: Unknown result type (might be due to invalid IL or missing references) //IL_14e1: Unknown result type (might be due to invalid IL or missing references) //IL_14ec: Unknown result type (might be due to invalid IL or missing references) //IL_14f2: Unknown result type (might be due to invalid IL or missing references) //IL_14f7: Unknown result type (might be due to invalid IL or missing references) //IL_14fd: Unknown result type (might be due to invalid IL or missing references) //IL_1502: Unknown result type (might be due to invalid IL or missing references) //IL_1508: Unknown result type (might be due to invalid IL or missing references) //IL_1512: Unknown result type (might be due to invalid IL or missing references) //IL_1517: Unknown result type (might be due to invalid IL or missing references) //IL_151d: Unknown result type (might be due to invalid IL or missing references) //IL_1527: Unknown result type (might be due to invalid IL or missing references) //IL_152d: Unknown result type (might be due to invalid IL or missing references) //IL_1532: Unknown result type (might be due to invalid IL or missing references) //IL_1538: Unknown result type (might be due to invalid IL or missing references) //IL_153d: Unknown result type (might be due to invalid IL or missing references) //IL_1542: Unknown result type (might be due to invalid IL or missing references) //IL_1548: Unknown result type (might be due to invalid IL or missing references) //IL_1552: Unknown result type (might be due to invalid IL or missing references) //IL_1557: Unknown result type (might be due to invalid IL or missing references) //IL_1563: Unknown result type (might be due to invalid IL or missing references) //IL_13c2: Unknown result type (might be due to invalid IL or missing references) //IL_13c7: Unknown result type (might be due to invalid IL or missing references) //IL_1241: Unknown result type (might be due to invalid IL or missing references) //IL_1246: Unknown result type (might be due to invalid IL or missing references) //IL_1255: Unknown result type (might be due to invalid IL or missing references) //IL_125a: Unknown result type (might be due to invalid IL or missing references) //IL_1276: Unknown result type (might be due to invalid IL or missing references) //IL_127b: Unknown result type (might be due to invalid IL or missing references) //IL_1284: Unknown result type (might be due to invalid IL or missing references) //IL_128f: Unknown result type (might be due to invalid IL or missing references) //IL_12a0: Unknown result type (might be due to invalid IL or missing references) //IL_12a5: Unknown result type (might be due to invalid IL or missing references) //IL_12aa: Unknown result type (might be due to invalid IL or missing references) //IL_3173: Unknown result type (might be due to invalid IL or missing references) //IL_3178: Unknown result type (might be due to invalid IL or missing references) //IL_2300: Unknown result type (might be due to invalid IL or missing references) //IL_2306: Unknown result type (might be due to invalid IL or missing references) //IL_230b: Unknown result type (might be due to invalid IL or missing references) //IL_2311: Unknown result type (might be due to invalid IL or missing references) //IL_2316: Unknown result type (might be due to invalid IL or missing references) //IL_231c: Unknown result type (might be due to invalid IL or missing references) //IL_2326: Unknown result type (might be due to invalid IL or missing references) //IL_232b: Unknown result type (might be due to invalid IL or missing references) //IL_2331: Unknown result type (might be due to invalid IL or missing references) //IL_233b: Unknown result type (might be due to invalid IL or missing references) //IL_2341: Unknown result type (might be due to invalid IL or missing references) //IL_2346: Unknown result type (might be due to invalid IL or missing references) //IL_234c: Unknown result type (might be due to invalid IL or missing references) //IL_2351: Unknown result type (might be due to invalid IL or missing references) //IL_2356: Unknown result type (might be due to invalid IL or missing references) //IL_235c: Unknown result type (might be due to invalid IL or missing references) //IL_2366: Unknown result type (might be due to invalid IL or missing references) //IL_236b: Unknown result type (might be due to invalid IL or missing references) //IL_2376: Unknown result type (might be due to invalid IL or missing references) //IL_237c: Unknown result type (might be due to invalid IL or missing references) //IL_2381: Unknown result type (might be due to invalid IL or missing references) //IL_2387: Unknown result type (might be due to invalid IL or missing references) //IL_238c: Unknown result type (might be due to invalid IL or missing references) //IL_2392: Unknown result type (might be due to invalid IL or missing references) //IL_239c: Unknown result type (might be due to invalid IL or missing references) //IL_23a1: Unknown result type (might be due to invalid IL or missing references) //IL_23a7: Unknown result type (might be due to invalid IL or missing references) //IL_23b1: Unknown result type (might be due to invalid IL or missing references) //IL_23b7: Unknown result type (might be due to invalid IL or missing references) //IL_23bc: Unknown result type (might be due to invalid IL or missing references) //IL_23c2: Unknown result type (might be due to invalid IL or missing references) //IL_23c7: Unknown result type (might be due to invalid IL or missing references) //IL_23cc: Unknown result type (might be due to invalid IL or missing references) //IL_23d2: Unknown result type (might be due to invalid IL or missing references) //IL_23dc: Unknown result type (might be due to invalid IL or missing references) //IL_23e1: Unknown result type (might be due to invalid IL or missing references) //IL_23ed: Unknown result type (might be due to invalid IL or missing references) //IL_224c: Unknown result type (might be due to invalid IL or missing references) //IL_2251: Unknown result type (might be due to invalid IL or missing references) //IL_20cb: Unknown result type (might be due to invalid IL or missing references) //IL_20d0: Unknown result type (might be due to invalid IL or missing references) //IL_20df: Unknown result type (might be due to invalid IL or missing references) //IL_20e4: Unknown result type (might be due to invalid IL or missing references) //IL_2100: Unknown result type (might be due to invalid IL or missing references) //IL_2105: Unknown result type (might be due to invalid IL or missing references) //IL_210e: Unknown result type (might be due to invalid IL or missing references) //IL_2119: Unknown result type (might be due to invalid IL or missing references) //IL_212a: Unknown result type (might be due to invalid IL or missing references) //IL_212f: Unknown result type (might be due to invalid IL or missing references) //IL_2134: Unknown result type (might be due to invalid IL or missing references) //IL_1631: Unknown result type (might be due to invalid IL or missing references) //IL_1637: Unknown result type (might be due to invalid IL or missing references) //IL_163c: Unknown result type (might be due to invalid IL or missing references) //IL_1642: Unknown result type (might be due to invalid IL or missing references) //IL_1647: Unknown result type (might be due to invalid IL or missing references) //IL_164d: Unknown result type (might be due to invalid IL or missing references) //IL_1657: Unknown result type (might be due to invalid IL or missing references) //IL_165c: Unknown result type (might be due to invalid IL or missing references) //IL_1662: Unknown result type (might be due to invalid IL or missing references) //IL_166c: Unknown result type (might be due to invalid IL or missing references) //IL_1672: Unknown result type (might be due to invalid IL or missing references) //IL_1677: Unknown result type (might be due to invalid IL or missing references) //IL_167d: Unknown result type (might be due to invalid IL or missing references) //IL_1682: Unknown result type (might be due to invalid IL or missing references) //IL_1687: Unknown result type (might be due to invalid IL or missing references) //IL_168d: Unknown result type (might be due to invalid IL or missing references) //IL_1697: Unknown result type (might be due to invalid IL or missing references) //IL_169c: Unknown result type (might be due to invalid IL or missing references) //IL_16a7: Unknown result type (might be due to invalid IL or missing references) //IL_16ad: Unknown result type (might be due to invalid IL or missing references) //IL_16b2: Unknown result type (might be due to invalid IL or missing references) //IL_16b8: Unknown result type (might be due to invalid IL or missing references) //IL_16bd: Unknown result type (might be due to invalid IL or missing references) //IL_16c3: Unknown result type (might be due to invalid IL or missing references) //IL_16cd: Unknown result type (might be due to invalid IL or missing references) //IL_16d2: Unknown result type (might be due to invalid IL or missing references) //IL_16d8: Unknown result type (might be due to invalid IL or missing references) //IL_16e2: Unknown result type (might be due to invalid IL or missing references) //IL_16e8: Unknown result type (might be due to invalid IL or missing references) //IL_16ed: Unknown result type (might be due to invalid IL or missing references) //IL_16f3: Unknown result type (might be due to invalid IL or missing references) //IL_16f8: Unknown result type (might be due to invalid IL or missing references) //IL_16fd: Unknown result type (might be due to invalid IL or missing references) //IL_1703: Unknown result type (might be due to invalid IL or missing references) //IL_170d: Unknown result type (might be due to invalid IL or missing references) //IL_1712: Unknown result type (might be due to invalid IL or missing references) //IL_171e: Unknown result type (might be due to invalid IL or missing references) //IL_157d: Unknown result type (might be due to invalid IL or missing references) //IL_1582: Unknown result type (might be due to invalid IL or missing references) //IL_13fc: Unknown result type (might be due to invalid IL or missing references) //IL_1401: Unknown result type (might be due to invalid IL or missing references) //IL_1410: Unknown result type (might be due to invalid IL or missing references) //IL_1415: Unknown result type (might be due to invalid IL or missing references) //IL_1431: Unknown result type (might be due to invalid IL or missing references) //IL_1436: Unknown result type (might be due to invalid IL or missing references) //IL_143f: Unknown result type (might be due to invalid IL or missing references) //IL_144a: Unknown result type (might be due to invalid IL or missing references) //IL_145b: Unknown result type (might be due to invalid IL or missing references) //IL_1460: Unknown result type (might be due to invalid IL or missing references) //IL_1465: Unknown result type (might be due to invalid IL or missing references) //IL_31b4: Unknown result type (might be due to invalid IL or missing references) //IL_31ba: Unknown result type (might be due to invalid IL or missing references) //IL_31bf: Unknown result type (might be due to invalid IL or missing references) //IL_31c5: Unknown result type (might be due to invalid IL or missing references) //IL_31ca: Unknown result type (might be due to invalid IL or missing references) //IL_31d0: Unknown result type (might be due to invalid IL or missing references) //IL_31da: Unknown result type (might be due to invalid IL or missing references) //IL_31df: Unknown result type (might be due to invalid IL or missing references) //IL_31e5: Unknown result type (might be due to invalid IL or missing references) //IL_31ef: Unknown result type (might be due to invalid IL or missing references) //IL_31f5: Unknown result type (might be due to invalid IL or missing references) //IL_31fa: Unknown result type (might be due to invalid IL or missing references) //IL_3200: Unknown result type (might be due to invalid IL or missing references) //IL_3205: Unknown result type (might be due to invalid IL or missing references) //IL_320a: Unknown result type (might be due to invalid IL or missing references) //IL_3215: Unknown result type (might be due to invalid IL or missing references) //IL_321b: Unknown result type (might be due to invalid IL or missing references) //IL_3220: Unknown result type (might be due to invalid IL or missing references) //IL_3226: Unknown result type (might be due to invalid IL or missing references) //IL_322b: Unknown result type (might be due to invalid IL or missing references) //IL_3231: Unknown result type (might be due to invalid IL or missing references) //IL_323b: Unknown result type (might be due to invalid IL or missing references) //IL_3240: Unknown result type (might be due to invalid IL or missing references) //IL_3246: Unknown result type (might be due to invalid IL or missing references) //IL_3250: Unknown result type (might be due to invalid IL or missing references) //IL_3256: Unknown result type (might be due to invalid IL or missing references) //IL_325b: Unknown result type (might be due to invalid IL or missing references) //IL_3261: Unknown result type (might be due to invalid IL or missing references) //IL_3266: Unknown result type (might be due to invalid IL or missing references) //IL_326b: Unknown result type (might be due to invalid IL or missing references) //IL_3277: Unknown result type (might be due to invalid IL or missing references) //IL_24bb: Unknown result type (might be due to invalid IL or missing references) //IL_24c1: Unknown result type (might be due to invalid IL or missing references) //IL_24c6: Unknown result type (might be due to invalid IL or missing references) //IL_24cc: Unknown result type (might be due to invalid IL or missing references) //IL_24d1: Unknown result type (might be due to invalid IL or missing references) //IL_24d7: Unknown result type (might be due to invalid IL or missing references) //IL_24e1: Unknown result type (might be due to invalid IL or missing references) //IL_24e6: Unknown result type (might be due to invalid IL or missing references) //IL_24ec: Unknown result type (might be due to invalid IL or missing references) //IL_24f6: Unknown result type (might be due to invalid IL or missing references) //IL_24fc: Unknown result type (might be due to invalid IL or missing references) //IL_2501: Unknown result type (might be due to invalid IL or missing references) //IL_2507: Unknown result type (might be due to invalid IL or missing references) //IL_250c: Unknown result type (might be due to invalid IL or missing references) //IL_2511: Unknown result type (might be due to invalid IL or missing references) //IL_2517: Unknown result type (might be due to invalid IL or missing references) //IL_2521: Unknown result type (might be due to invalid IL or missing references) //IL_2526: Unknown result type (might be due to invalid IL or missing references) //IL_2531: Unknown result type (might be due to invalid IL or missing references) //IL_2537: Unknown result type (might be due to invalid IL or missing references) //IL_253c: Unknown result type (might be due to invalid IL or missing references) //IL_2542: Unknown result type (might be due to invalid IL or missing references) //IL_2547: Unknown result type (might be due to invalid IL or missing references) //IL_254d: Unknown result type (might be due to invalid IL or missing references) //IL_2557: Unknown result type (might be due to invalid IL or missing references) //IL_255c: Unknown result type (might be due to invalid IL or missing references) //IL_2562: Unknown result type (might be due to invalid IL or missing references) //IL_256c: Unknown result type (might be due to invalid IL or missing references) //IL_2572: Unknown result type (might be due to invalid IL or missing references) //IL_2577: Unknown result type (might be due to invalid IL or missing references) //IL_257d: Unknown result type (might be due to invalid IL or missing references) //IL_2582: Unknown result type (might be due to invalid IL or missing references) //IL_2587: Unknown result type (might be due to invalid IL or missing references) //IL_258d: Unknown result type (might be due to invalid IL or missing references) //IL_2597: Unknown result type (might be due to invalid IL or missing references) //IL_259c: Unknown result type (might be due to invalid IL or missing references) //IL_25a8: Unknown result type (might be due to invalid IL or missing references) //IL_2407: Unknown result type (might be due to invalid IL or missing references) //IL_240c: Unknown result type (might be due to invalid IL or missing references) //IL_2286: Unknown result type (might be due to invalid IL or missing references) //IL_228b: Unknown result type (might be due to invalid IL or missing references) //IL_229a: Unknown result type (might be due to invalid IL or missing references) //IL_229f: Unknown result type (might be due to invalid IL or missing references) //IL_22bb: Unknown result type (might be due to invalid IL or missing references) //IL_22c0: Unknown result type (might be due to invalid IL or missing references) //IL_22c9: Unknown result type (might be due to invalid IL or missing references) //IL_22d4: Unknown result type (might be due to invalid IL or missing references) //IL_22e5: Unknown result type (might be due to invalid IL or missing references) //IL_22ea: Unknown result type (might be due to invalid IL or missing references) //IL_22ef: Unknown result type (might be due to invalid IL or missing references) //IL_17ec: Unknown result type (might be due to invalid IL or missing references) //IL_17f2: Unknown result type (might be due to invalid IL or missing references) //IL_17f7: Unknown result type (might be due to invalid IL or missing references) //IL_17fd: Unknown result type (might be due to invalid IL or missing references) //IL_1802: Unknown result type (might be due to invalid IL or missing references) //IL_1808: Unknown result type (might be due to invalid IL or missing references) //IL_1812: Unknown result type (might be due to invalid IL or missing references) //IL_1817: Unknown result type (might be due to invalid IL or missing references) //IL_181d: Unknown result type (might be due to invalid IL or missing references) //IL_1827: Unknown result type (might be due to invalid IL or missing references) //IL_182d: Unknown result type (might be due to invalid IL or missing references) //IL_1832: Unknown result type (might be due to invalid IL or missing references) //IL_1838: Unknown result type (might be due to invalid IL or missing references) //IL_183d: Unknown result type (might be due to invalid IL or missing references) //IL_1842: Unknown result type (might be due to invalid IL or missing references) //IL_1848: Unknown result type (might be due to invalid IL or missing references) //IL_1852: Unknown result type (might be due to invalid IL or missing references) //IL_1857: Unknown result type (might be due to invalid IL or missing references) //IL_1862: Unknown result type (might be due to invalid IL or missing references) //IL_1868: Unknown result type (might be due to invalid IL or missing references) //IL_186d: Unknown result type (might be due to invalid IL or missing references) //IL_1873: Unknown result type (might be due to invalid IL or missing references) //IL_1878: Unknown result type (might be due to invalid IL or missing references) //IL_187e: Unknown result type (might be due to invalid IL or missing references) //IL_1888: Unknown result type (might be due to invalid IL or missing references) //IL_188d: Unknown result type (might be due to invalid IL or missing references) //IL_1893: Unknown result type (might be due to invalid IL or missing references) //IL_189d: Unknown result type (might be due to invalid IL or missing references) //IL_18a3: Unknown result type (might be due to invalid IL or missing references) //IL_18a8: Unknown result type (might be due to invalid IL or missing references) //IL_18ae: Unknown result type (might be due to invalid IL or missing references) //IL_18b3: Unknown result type (might be due to invalid IL or missing references) //IL_18b8: Unknown result type (might be due to invalid IL or missing references) //IL_18be: Unknown result type (might be due to invalid IL or missing references) //IL_18c8: Unknown result type (might be due to invalid IL or missing references) //IL_18cd: Unknown result type (might be due to invalid IL or missing references) //IL_18d9: Unknown result type (might be due to invalid IL or missing references) //IL_1738: Unknown result type (might be due to invalid IL or missing references) //IL_173d: Unknown result type (might be due to invalid IL or missing references) //IL_15b7: Unknown result type (might be due to invalid IL or missing references) //IL_15bc: Unknown result type (might be due to invalid IL or missing references) //IL_15cb: Unknown result type (might be due to invalid IL or missing references) //IL_15d0: Unknown result type (might be due to invalid IL or missing references) //IL_15ec: Unknown result type (might be due to invalid IL or missing references) //IL_15f1: Unknown result type (might be due to invalid IL or missing references) //IL_15fa: Unknown result type (might be due to invalid IL or missing references) //IL_1605: Unknown result type (might be due to invalid IL or missing references) //IL_1616: Unknown result type (might be due to invalid IL or missing references) //IL_161b: Unknown result type (might be due to invalid IL or missing references) //IL_1620: Unknown result type (might be due to invalid IL or missing references) //IL_3345: Unknown result type (might be due to invalid IL or missing references) //IL_334b: Unknown result type (might be due to invalid IL or missing references) //IL_3350: Unknown result type (might be due to invalid IL or missing references) //IL_3356: Unknown result type (might be due to invalid IL or missing references) //IL_335b: Unknown result type (might be due to invalid IL or missing references) //IL_3361: Unknown result type (might be due to invalid IL or missing references) //IL_336b: Unknown result type (might be due to invalid IL or missing references) //IL_3370: Unknown result type (might be due to invalid IL or missing references) //IL_3376: Unknown result type (might be due to invalid IL or missing references) //IL_3380: Unknown result type (might be due to invalid IL or missing references) //IL_3386: Unknown result type (might be due to invalid IL or missing references) //IL_338b: Unknown result type (might be due to invalid IL or missing references) //IL_3391: Unknown result type (might be due to invalid IL or missing references) //IL_3396: Unknown result type (might be due to invalid IL or missing references) //IL_339b: Unknown result type (might be due to invalid IL or missing references) //IL_33a1: Unknown result type (might be due to invalid IL or missing references) //IL_33ab: Unknown result type (might be due to invalid IL or missing references) //IL_33b0: Unknown result type (might be due to invalid IL or missing references) //IL_33bb: Unknown result type (might be due to invalid IL or missing references) //IL_33c1: Unknown result type (might be due to invalid IL or missing references) //IL_33c6: Unknown result type (might be due to invalid IL or missing references) //IL_33cc: Unknown result type (might be due to invalid IL or missing references) //IL_33d1: Unknown result type (might be due to invalid IL or missing references) //IL_33d7: Unknown result type (might be due to invalid IL or missing references) //IL_33e1: Unknown result type (might be due to invalid IL or missing references) //IL_33e6: Unknown result type (might be due to invalid IL or missing references) //IL_33ec: Unknown result type (might be due to invalid IL or missing references) //IL_33f6: Unknown result type (might be due to invalid IL or missing references) //IL_33fc: Unknown result type (might be due to invalid IL or missing references) //IL_3401: Unknown result type (might be due to invalid IL or missing references) //IL_3407: Unknown result type (might be due to invalid IL or missing references) //IL_340c: Unknown result type (might be due to invalid IL or missing references) //IL_3411: Unknown result type (might be due to invalid IL or missing references) //IL_3417: Unknown result type (might be due to invalid IL or missing references) //IL_3421: Unknown result type (might be due to invalid IL or missing references) //IL_3426: Unknown result type (might be due to invalid IL or missing references) //IL_3432: Unknown result type (might be due to invalid IL or missing references) //IL_3291: Unknown result type (might be due to invalid IL or missing references) //IL_3296: Unknown result type (might be due to invalid IL or missing references) //IL_2676: Unknown result type (might be due to invalid IL or missing references) //IL_267c: Unknown result type (might be due to invalid IL or missing references) //IL_2681: Unknown result type (might be due to invalid IL or missing references) //IL_2687: Unknown result type (might be due to invalid IL or missing references) //IL_268c: Unknown result type (might be due to invalid IL or missing references) //IL_2692: Unknown result type (might be due to invalid IL or missing references) //IL_269c: Unknown result type (might be due to invalid IL or missing references) //IL_26a1: Unknown result type (might be due to invalid IL or missing references) //IL_26a7: Unknown result type (might be due to invalid IL or missing references) //IL_26b1: Unknown result type (might be due to invalid IL or missing references) //IL_26b7: Unknown result type (might be due to invalid IL or missing references) //IL_26bc: Unknown result type (might be due to invalid IL or missing references) //IL_26c2: Unknown result type (might be due to invalid IL or missing references) //IL_26c7: Unknown result type (might be due to invalid IL or missing references) //IL_26cc: Unknown result type (might be due to invalid IL or missing references) //IL_26d2: Unknown result type (might be due to invalid IL or missing references) //IL_26dc: Unknown result type (might be due to invalid IL or missing references) //IL_26e1: Unknown result type (might be due to invalid IL or missing references) //IL_26ec: Unknown result type (might be due to invalid IL or missing references) //IL_26f2: Unknown result type (might be due to invalid IL or missing references) //IL_26f7: Unknown result type (might be due to invalid IL or missing references) //IL_26fd: Unknown result type (might be due to invalid IL or missing references) //IL_2702: Unknown result type (might be due to invalid IL or missing references) //IL_2708: Unknown result type (might be due to invalid IL or missing references) //IL_2712: Unknown result type (might be due to invalid IL or missing references) //IL_2717: Unknown result type (might be due to invalid IL or missing references) //IL_271d: Unknown result type (might be due to invalid IL or missing references) //IL_2727: Unknown result type (might be due to invalid IL or missing references) //IL_272d: Unknown result type (might be due to invalid IL or missing references) //IL_2732: Unknown result type (might be due to invalid IL or missing references) //IL_2738: Unknown result type (might be due to invalid IL or missing references) //IL_273d: Unknown result type (might be due to invalid IL or missing references) //IL_2742: Unknown result type (might be due to invalid IL or missing references) //IL_2748: Unknown result type (might be due to invalid IL or missing references) //IL_2752: Unknown result type (might be due to invalid IL or missing references) //IL_2757: Unknown result type (might be due to invalid IL or missing references) //IL_2763: Unknown result type (might be due to invalid IL or missing references) //IL_25c2: Unknown result type (might be due to invalid IL or missing references) //IL_25c7: Unknown result type (might be due to invalid IL or missing references) //IL_2441: Unknown result type (might be due to invalid IL or missing references) //IL_2446: Unknown result type (might be due to invalid IL or missing references) //IL_2455: Unknown result type (might be due to invalid IL or missing references) //IL_245a: Unknown result type (might be due to invalid IL or missing references) //IL_2476: Unknown result type (might be due to invalid IL or missing references) //IL_247b: Unknown result type (might be due to invalid IL or missing references) //IL_2484: Unknown result type (might be due to invalid IL or missing references) //IL_248f: Unknown result type (might be due to invalid IL or missing references) //IL_24a0: Unknown result type (might be due to invalid IL or missing references) //IL_24a5: Unknown result type (might be due to invalid IL or missing references) //IL_24aa: Unknown result type (might be due to invalid IL or missing references) //IL_19a7: Unknown result type (might be due to invalid IL or missing references) //IL_19ad: Unknown result type (might be due to invalid IL or missing references) //IL_19b2: Unknown result type (might be due to invalid IL or missing references) //IL_19b8: Unknown result type (might be due to invalid IL or missing references) //IL_19bd: Unknown result type (might be due to invalid IL or missing references) //IL_19c3: Unknown result type (might be due to invalid IL or missing references) //IL_19cd: Unknown result type (might be due to invalid IL or missing references) //IL_19d2: Unknown result type (might be due to invalid IL or missing references) //IL_19d8: Unknown result type (might be due to invalid IL or missing references) //IL_19e2: Unknown result type (might be due to invalid IL or missing references) //IL_19e8: Unknown result type (might be due to invalid IL or missing references) //IL_19ed: Unknown result type (might be due to invalid IL or missing references) //IL_19f3: Unknown result type (might be due to invalid IL or missing references) //IL_19f8: Unknown result type (might be due to invalid IL or missing references) //IL_19fd: Unknown result type (might be due to invalid IL or missing references) //IL_1a03: Unknown result type (might be due to invalid IL or missing references) //IL_1a0d: Unknown result type (might be due to invalid IL or missing references) //IL_1a12: Unknown result type (might be due to invalid IL or missing references) //IL_1a1d: Unknown result type (might be due to invalid IL or missing references) //IL_1a23: Unknown result type (might be due to invalid IL or missing references) //IL_1a28: Unknown result type (might be due to invalid IL or missing references) //IL_1a2e: Unknown result type (might be due to invalid IL or missing references) //IL_1a33: Unknown result type (might be due to invalid IL or missing references) //IL_1a39: Unknown result type (might be due to invalid IL or missing references) //IL_1a43: Unknown result type (might be due to invalid IL or missing references) //IL_1a48: Unknown result type (might be due to invalid IL or missing references) //IL_1a4e: Unknown result type (might be due to invalid IL or missing references) //IL_1a58: Unknown result type (might be due to invalid IL or missing references) //IL_1a5e: Unknown result type (might be due to invalid IL or missing references) //IL_1a63: Unknown result type (might be due to invalid IL or missing references) //IL_1a69: Unknown result type (might be due to invalid IL or missing references) //IL_1a6e: Unknown result type (might be due to invalid IL or missing references) //IL_1a73: Unknown result type (might be due to invalid IL or missing references) //IL_1a79: Unknown result type (might be due to invalid IL or missing references) //IL_1a83: Unknown result type (might be due to invalid IL or missing references) //IL_1a88: Unknown result type (might be due to invalid IL or missing references) //IL_1a94: Unknown result type (might be due to invalid IL or missing references) //IL_18f3: Unknown result type (might be due to invalid IL or missing references) //IL_18f8: Unknown result type (might be due to invalid IL or missing references) //IL_1772: Unknown result type (might be due to invalid IL or missing references) //IL_1777: Unknown result type (might be due to invalid IL or missing references) //IL_1786: Unknown result type (might be due to invalid IL or missing references) //IL_178b: Unknown result type (might be due to invalid IL or missing references) //IL_17a7: Unknown result type (might be due to invalid IL or missing references) //IL_17ac: Unknown result type (might be due to invalid IL or missing references) //IL_17b5: Unknown result type (might be due to invalid IL or missing references) //IL_17c0: Unknown result type (might be due to invalid IL or missing references) //IL_17d1: Unknown result type (might be due to invalid IL or missing references) //IL_17d6: Unknown result type (might be due to invalid IL or missing references) //IL_17db: Unknown result type (might be due to invalid IL or missing references) //IL_3500: Unknown result type (might be due to invalid IL or missing references) //IL_3506: Unknown result type (might be due to invalid IL or missing references) //IL_350b: Unknown result type (might be due to invalid IL or missing references) //IL_3511: Unknown result type (might be due to invalid IL or missing references) //IL_3516: Unknown result type (might be due to invalid IL or missing references) //IL_351c: Unknown result type (might be due to invalid IL or missing references) //IL_3526: Unknown result type (might be due to invalid IL or missing references) //IL_352b: Unknown result type (might be due to invalid IL or missing references) //IL_3531: Unknown result type (might be due to invalid IL or missing references) //IL_353b: Unknown result type (might be due to invalid IL or missing references) //IL_3541: Unknown result type (might be due to invalid IL or missing references) //IL_3546: Unknown result type (might be due to invalid IL or missing references) //IL_354c: Unknown result type (might be due to invalid IL or missing references) //IL_3551: Unknown result type (might be due to invalid IL or missing references) //IL_3556: Unknown result type (might be due to invalid IL or missing references) //IL_355c: Unknown result type (might be due to invalid IL or missing references) //IL_3566: Unknown result type (might be due to invalid IL or missing references) //IL_356b: Unknown result type (might be due to invalid IL or missing references) //IL_3576: Unknown result type (might be due to invalid IL or missing references) //IL_357c: Unknown result type (might be due to invalid IL or missing references) //IL_3581: Unknown result type (might be due to invalid IL or missing references) //IL_3587: Unknown result type (might be due to invalid IL or missing references) //IL_358c: Unknown result type (might be due to invalid IL or missing references) //IL_3592: Unknown result type (might be due to invalid IL or missing references) //IL_359c: Unknown result type (might be due to invalid IL or missing references) //IL_35a1: Unknown result type (might be due to invalid IL or missing references) //IL_35a7: Unknown result type (might be due to invalid IL or missing references) //IL_35b1: Unknown result type (might be due to invalid IL or missing references) //IL_35b7: Unknown result type (might be due to invalid IL or missing references) //IL_35bc: Unknown result type (might be due to invalid IL or missing references) //IL_35c2: Unknown result type (might be due to invalid IL or missing references) //IL_35c7: Unknown result type (might be due to invalid IL or missing references) //IL_35cc: Unknown result type (might be due to invalid IL or missing references) //IL_35d2: Unknown result type (might be due to invalid IL or missing references) //IL_35dc: Unknown result type (might be due to invalid IL or missing references) //IL_35e1: Unknown result type (might be due to invalid IL or missing references) //IL_35ed: Unknown result type (might be due to invalid IL or missing references) //IL_344c: Unknown result type (might be due to invalid IL or missing references) //IL_3451: Unknown result type (might be due to invalid IL or missing references) //IL_32cb: Unknown result type (might be due to invalid IL or missing references) //IL_32d0: Unknown result type (might be due to invalid IL or missing references) //IL_32df: Unknown result type (might be due to invalid IL or missing references) //IL_32e4: Unknown result type (might be due to invalid IL or missing references) //IL_3300: Unknown result type (might be due to invalid IL or missing references) //IL_3305: Unknown result type (might be due to invalid IL or missing references) //IL_330e: Unknown result type (might be due to invalid IL or missing references) //IL_3319: Unknown result type (might be due to invalid IL or missing references) //IL_332a: Unknown result type (might be due to invalid IL or missing references) //IL_332f: Unknown result type (might be due to invalid IL or missing references) //IL_3334: Unknown result type (might be due to invalid IL or missing references) //IL_2831: Unknown result type (might be due to invalid IL or missing references) //IL_2837: Unknown result type (might be due to invalid IL or missing references) //IL_283c: Unknown result type (might be due to invalid IL or missing references) //IL_2842: Unknown result type (might be due to invalid IL or missing references) //IL_2847: Unknown result type (might be due to invalid IL or missing references) //IL_284d: Unknown result type (might be due to invalid IL or missing references) //IL_2857: Unknown result type (might be due to invalid IL or missing references) //IL_285c: Unknown result type (might be due to invalid IL or missing references) //IL_2862: Unknown result type (might be due to invalid IL or missing references) //IL_286c: Unknown result type (might be due to invalid IL or missing references) //IL_2872: Unknown result type (might be due to invalid IL or missing references) //IL_2877: Unknown result type (might be due to invalid IL or missing references) //IL_287d: Unknown result type (might be due to invalid IL or missing references) //IL_2882: Unknown result type (might be due to invalid IL or missing references) //IL_2887: Unknown result type (might be due to invalid IL or missing references) //IL_288d: Unknown result type (might be due to invalid IL or missing references) //IL_2897: Unknown result type (might be due to invalid IL or missing references) //IL_289c: Unknown result type (might be due to invalid IL or missing references) //IL_28a7: Unknown result type (might be due to invalid IL or missing references) //IL_28ad: Unknown result type (might be due to invalid IL or missing references) //IL_28b2: Unknown result type (might be due to invalid IL or missing references) //IL_28b8: Unknown result type (might be due to invalid IL or missing references) //IL_28bd: Unknown result type (might be due to invalid IL or missing references) //IL_28c3: Unknown result type (might be due to invalid IL or missing references) //IL_28cd: Unknown result type (might be due to invalid IL or missing references) //IL_28d2: Unknown result type (might be due to invalid IL or missing references) //IL_28d8: Unknown result type (might be due to invalid IL or missing references) //IL_28e2: Unknown result type (might be due to invalid IL or missing references) //IL_28e8: Unknown result type (might be due to invalid IL or missing references) //IL_28ed: Unknown result type (might be due to invalid IL or missing references) //IL_28f3: Unknown result type (might be due to invalid IL or missing references) //IL_28f8: Unknown result type (might be due to invalid IL or missing references) //IL_28fd: Unknown result type (might be due to invalid IL or missing references) //IL_2903: Unknown result type (might be due to invalid IL or missing references) //IL_290d: Unknown result type (might be due to invalid IL or missing references) //IL_2912: Unknown result type (might be due to invalid IL or missing references) //IL_291e: Unknown result type (might be due to invalid IL or missing references) //IL_277d: Unknown result type (might be due to invalid IL or missing references) //IL_2782: Unknown result type (might be due to invalid IL or missing references) //IL_25fc: Unknown result type (might be due to invalid IL or missing references) //IL_2601: Unknown result type (might be due to invalid IL or missing references) //IL_2610: Unknown result type (might be due to invalid IL or missing references) //IL_2615: Unknown result type (might be due to invalid IL or missing references) //IL_2631: Unknown result type (might be due to invalid IL or missing references) //IL_2636: Unknown result type (might be due to invalid IL or missing references) //IL_263f: Unknown result type (might be due to invalid IL or missing references) //IL_264a: Unknown result type (might be due to invalid IL or missing references) //IL_265b: Unknown result type (might be due to invalid IL or missing references) //IL_2660: Unknown result type (might be due to invalid IL or missing references) //IL_2665: Unknown result type (might be due to invalid IL or missing references) //IL_1b64: Unknown result type (might be due to invalid IL or missing references) //IL_1b69: Unknown result type (might be due to invalid IL or missing references) //IL_1b78: Unknown result type (might be due to invalid IL or missing references) //IL_1b7d: Unknown result type (might be due to invalid IL or missing references) //IL_1b94: Unknown result type (might be due to invalid IL or missing references) //IL_1b99: Unknown result type (might be due to invalid IL or missing references) //IL_1bb5: Unknown result type (might be due to invalid IL or missing references) //IL_1bba: Unknown result type (might be due to invalid IL or missing references) //IL_1bc9: Unknown result type (might be due to invalid IL or missing references) //IL_1bce: Unknown result type (might be due to invalid IL or missing references) //IL_1bdf: Unknown result type (might be due to invalid IL or missing references) //IL_1bea: Unknown result type (might be due to invalid IL or missing references) //IL_1bef: Unknown result type (might be due to invalid IL or missing references) //IL_1c18: Unknown result type (might be due to invalid IL or missing references) //IL_1c1d: Unknown result type (might be due to invalid IL or missing references) //IL_1c34: Unknown result type (might be due to invalid IL or missing references) //IL_1c39: Unknown result type (might be due to invalid IL or missing references) //IL_1c3e: Unknown result type (might be due to invalid IL or missing references) //IL_1aae: Unknown result type (might be due to invalid IL or missing references) //IL_1ab3: Unknown result type (might be due to invalid IL or missing references) //IL_192d: Unknown result type (might be due to invalid IL or missing references) //IL_1932: Unknown result type (might be due to invalid IL or missing references) //IL_1941: Unknown result type (might be due to invalid IL or missing references) //IL_1946: Unknown result type (might be due to invalid IL or missing references) //IL_1962: Unknown result type (might be due to invalid IL or missing references) //IL_1967: Unknown result type (might be due to invalid IL or missing references) //IL_1970: Unknown result type (might be due to invalid IL or missing references) //IL_197b: Unknown result type (might be due to invalid IL or missing references) //IL_198c: Unknown result type (might be due to invalid IL or missing references) //IL_1991: Unknown result type (might be due to invalid IL or missing references) //IL_1996: Unknown result type (might be due to invalid IL or missing references) //IL_36bb: Unknown result type (might be due to invalid IL or missing references) //IL_36c1: Unknown result type (might be due to invalid IL or missing references) //IL_36c6: Unknown result type (might be due to invalid IL or missing references) //IL_36cc: Unknown result type (might be due to invalid IL or missing references) //IL_36d1: Unknown result type (might be due to invalid IL or missing references) //IL_36d7: Unknown result type (might be due to invalid IL or missing references) //IL_36e1: Unknown result type (might be due to invalid IL or missing references) //IL_36e6: Unknown result type (might be due to invalid IL or missing references) //IL_36ec: Unknown result type (might be due to invalid IL or missing references) //IL_36f6: Unknown result type (might be due to invalid IL or missing references) //IL_36fc: Unknown result type (might be due to invalid IL or missing references) //IL_3701: Unknown result type (might be due to invalid IL or missing references) //IL_3707: Unknown result type (might be due to invalid IL or missing references) //IL_370c: Unknown result type (might be due to invalid IL or missing references) //IL_3711: Unknown result type (might be due to invalid IL or missing references) //IL_3717: Unknown result type (might be due to invalid IL or missing references) //IL_3721: Unknown result type (might be due to invalid IL or missing references) //IL_3726: Unknown result type (might be due to invalid IL or missing references) //IL_3731: Unknown result type (might be due to invalid IL or missing references) //IL_3737: Unknown result type (might be due to invalid IL or missing references) //IL_373c: Unknown result type (might be due to invalid IL or missing references) //IL_3742: Unknown result type (might be due to invalid IL or missing references) //IL_3747: Unknown result type (might be due to invalid IL or missing references) //IL_374d: Unknown result type (might be due to invalid IL or missing references) //IL_3757: Unknown result type (might be due to invalid IL or missing references) //IL_375c: Unknown result type (might be due to invalid IL or missing references) //IL_3762: Unknown result type (might be due to invalid IL or missing references) //IL_376c: Unknown result type (might be due to invalid IL or missing references) //IL_3772: Unknown result type (might be due to invalid IL or missing references) //IL_3777: Unknown result type (might be due to invalid IL or missing references) //IL_377d: Unknown result type (might be due to invalid IL or missing references) //IL_3782: Unknown result type (might be due to invalid IL or missing references) //IL_3787: Unknown result type (might be due to invalid IL or missing references) //IL_378d: Unknown result type (might be due to invalid IL or missing references) //IL_3797: Unknown result type (might be due to invalid IL or missing references) //IL_379c: Unknown result type (might be due to invalid IL or missing references) //IL_37a8: Unknown result type (might be due to invalid IL or missing references) //IL_3607: Unknown result type (might be due to invalid IL or missing references) //IL_360c: Unknown result type (might be due to invalid IL or missing references) //IL_3486: Unknown result type (might be due to invalid IL or missing references) //IL_348b: Unknown result type (might be due to invalid IL or missing references) //IL_349a: Unknown result type (might be due to invalid IL or missing references) //IL_349f: Unknown result type (might be due to invalid IL or missing references) //IL_34bb: Unknown result type (might be due to invalid IL or missing references) //IL_34c0: Unknown result type (might be due to invalid IL or missing references) //IL_34c9: Unknown result type (might be due to invalid IL or missing references) //IL_34d4: Unknown result type (might be due to invalid IL or missing references) //IL_34e5: Unknown result type (might be due to invalid IL or missing references) //IL_34ea: Unknown result type (might be due to invalid IL or missing references) //IL_34ef: Unknown result type (might be due to invalid IL or missing references) //IL_29ec: Unknown result type (might be due to invalid IL or missing references) //IL_29f2: Unknown result type (might be due to invalid IL or missing references) //IL_29f7: Unknown result type (might be due to invalid IL or missing references) //IL_29fd: Unknown result type (might be due to invalid IL or missing references) //IL_2a02: Unknown result type (might be due to invalid IL or missing references) //IL_2a08: Unknown result type (might be due to invalid IL or missing references) //IL_2a12: Unknown result type (might be due to invalid IL or missing references) //IL_2a17: Unknown result type (might be due to invalid IL or missing references) //IL_2a1d: Unknown result type (might be due to invalid IL or missing references) //IL_2a27: Unknown result type (might be due to invalid IL or missing references) //IL_2a2d: Unknown result type (might be due to invalid IL or missing references) //IL_2a32: Unknown result type (might be due to invalid IL or missing references) //IL_2a38: Unknown result type (might be due to invalid IL or missing references) //IL_2a3d: Unknown result type (might be due to invalid IL or missing references) //IL_2a42: Unknown result type (might be due to invalid IL or missing references) //IL_2a48: Unknown result type (might be due to invalid IL or missing references) //IL_2a52: Unknown result type (might be due to invalid IL or missing references) //IL_2a57: Unknown result type (might be due to invalid IL or missing references) //IL_2a62: Unknown result type (might be due to invalid IL or missing references) //IL_2a68: Unknown result type (might be due to invalid IL or missing references) //IL_2a6d: Unknown result type (might be due to invalid IL or missing references) //IL_2a73: Unknown result type (might be due to invalid IL or missing references) //IL_2a78: Unknown result type (might be due to invalid IL or missing references) //IL_2a7e: Unknown result type (might be due to invalid IL or missing references) //IL_2a88: Unknown result type (might be due to invalid IL or missing references) //IL_2a8d: Unknown result type (might be due to invalid IL or missing references) //IL_2a93: Unknown result type (might be due to invalid IL or missing references) //IL_2a9d: Unknown result type (might be due to invalid IL or missing references) //IL_2aa3: Unknown result type (might be due to invalid IL or missing references) //IL_2aa8: Unknown result type (might be due to invalid IL or missing references) //IL_2aae: Unknown result type (might be due to invalid IL or missing references) //IL_2ab3: Unknown result type (might be due to invalid IL or missing references) //IL_2ab8: Unknown result type (might be due to invalid IL or missing references) //IL_2abe: Unknown result type (might be due to invalid IL or missing references) //IL_2ac8: Unknown result type (might be due to invalid IL or missing references) //IL_2acd: Unknown result type (might be due to invalid IL or missing references) //IL_2ad9: Unknown result type (might be due to invalid IL or missing references) //IL_2938: Unknown result type (might be due to invalid IL or missing references) //IL_293d: Unknown result type (might be due to invalid IL or missing references) //IL_27b7: Unknown result type (might be due to invalid IL or missing references) //IL_27bc: Unknown result type (might be due to invalid IL or missing references) //IL_27cb: Unknown result type (might be due to invalid IL or missing references) //IL_27d0: Unknown result type (might be due to invalid IL or missing references) //IL_27ec: Unknown result type (might be due to invalid IL or missing references) //IL_27f1: Unknown result type (might be due to invalid IL or missing references) //IL_27fa: Unknown result type (might be due to invalid IL or missing references) //IL_2805: Unknown result type (might be due to invalid IL or missing references) //IL_2816: Unknown result type (might be due to invalid IL or missing references) //IL_281b: Unknown result type (might be due to invalid IL or missing references) //IL_2820: Unknown result type (might be due to invalid IL or missing references) //IL_1ae8: Unknown result type (might be due to invalid IL or missing references) //IL_1aed: Unknown result type (might be due to invalid IL or missing references) //IL_1afc: Unknown result type (might be due to invalid IL or missing references) //IL_1b01: Unknown result type (might be due to invalid IL or missing references) //IL_1b1d: Unknown result type (might be due to invalid IL or missing references) //IL_1b22: Unknown result type (might be due to invalid IL or missing references) //IL_1b2b: Unknown result type (might be due to invalid IL or missing references) //IL_1b36: Unknown result type (might be due to invalid IL or missing references) //IL_1b47: Unknown result type (might be due to invalid IL or missing references) //IL_1b4c: Unknown result type (might be due to invalid IL or missing references) //IL_1b51: Unknown result type (might be due to invalid IL or missing references) //IL_3876: Unknown result type (might be due to invalid IL or missing references) //IL_387c: Unknown result type (might be due to invalid IL or missing references) //IL_3881: Unknown result type (might be due to invalid IL or missing references) //IL_3887: Unknown result type (might be due to invalid IL or missing references) //IL_388c: Unknown result type (might be due to invalid IL or missing references) //IL_3892: Unknown result type (might be due to invalid IL or missing references) //IL_389c: Unknown result type (might be due to invalid IL or missing references) //IL_38a1: Unknown result type (might be due to invalid IL or missing references) //IL_38a7: Unknown result type (might be due to invalid IL or missing references) //IL_38b1: Unknown result type (might be due to invalid IL or missing references) //IL_38b7: Unknown result type (might be due to invalid IL or missing references) //IL_38bc: Unknown result type (might be due to invalid IL or missing references) //IL_38c2: Unknown result type (might be due to invalid IL or missing references) //IL_38c7: Unknown result type (might be due to invalid IL or missing references) //IL_38cc: Unknown result type (might be due to invalid IL or missing references) //IL_38d2: Unknown result type (might be due to invalid IL or missing references) //IL_38dc: Unknown result type (might be due to invalid IL or missing references) //IL_38e1: Unknown result type (might be due to invalid IL or missing references) //IL_38ec: Unknown result type (might be due to invalid IL or missing references) //IL_38f2: Unknown result type (might be due to invalid IL or missing references) //IL_38f7: Unknown result type (might be due to invalid IL or missing references) //IL_38fd: Unknown result type (might be due to invalid IL or missing references) //IL_3902: Unknown result type (might be due to invalid IL or missing references) //IL_3908: Unknown result type (might be due to invalid IL or missing references) //IL_3912: Unknown result type (might be due to invalid IL or missing references) //IL_3917: Unknown result type (might be due to invalid IL or missing references) //IL_391d: Unknown result type (might be due to invalid IL or missing references) //IL_3927: Unknown result type (might be due to invalid IL or missing references) //IL_392d: Unknown result type (might be due to invalid IL or missing references) //IL_3932: Unknown result type (might be due to invalid IL or missing references) //IL_3938: Unknown result type (might be due to invalid IL or missing references) //IL_393d: Unknown result type (might be due to invalid IL or missing references) //IL_3942: Unknown result type (might be due to invalid IL or missing references) //IL_3948: Unknown result type (might be due to invalid IL or missing references) //IL_3952: Unknown result type (might be due to invalid IL or missing references) //IL_3957: Unknown result type (might be due to invalid IL or missing references) //IL_3963: Unknown result type (might be due to invalid IL or missing references) //IL_37c2: Unknown result type (might be due to invalid IL or missing references) //IL_37c7: Unknown result type (might be due to invalid IL or missing references) //IL_3641: Unknown result type (might be due to invalid IL or missing references) //IL_3646: Unknown result type (might be due to invalid IL or missing references) //IL_3655: Unknown result type (might be due to invalid IL or missing references) //IL_365a: Unknown result type (might be due to invalid IL or missing references) //IL_3676: Unknown result type (might be due to invalid IL or missing references) //IL_367b: Unknown result type (might be due to invalid IL or missing references) //IL_3684: Unknown result type (might be due to invalid IL or missing references) //IL_368f: Unknown result type (might be due to invalid IL or missing references) //IL_36a0: Unknown result type (might be due to invalid IL or missing references) //IL_36a5: Unknown result type (might be due to invalid IL or missing references) //IL_36aa: Unknown result type (might be due to invalid IL or missing references) //IL_2ba7: Unknown result type (might be due to invalid IL or missing references) //IL_2bad: Unknown result type (might be due to invalid IL or missing references) //IL_2bb2: Unknown result type (might be due to invalid IL or missing references) //IL_2bb8: Unknown result type (might be due to invalid IL or missing references) //IL_2bbd: Unknown result type (might be due to invalid IL or missing references) //IL_2bc3: Unknown result type (might be due to invalid IL or missing references) //IL_2bcd: Unknown result type (might be due to invalid IL or missing references) //IL_2bd2: Unknown result type (might be due to invalid IL or missing references) //IL_2bd8: Unknown result type (might be due to invalid IL or missing references) //IL_2be2: Unknown result type (might be due to invalid IL or missing references) //IL_2be8: Unknown result type (might be due to invalid IL or missing references) //IL_2bed: Unknown result type (might be due to invalid IL or missing references) //IL_2bf3: Unknown result type (might be due to invalid IL or missing references) //IL_2bf8: Unknown result type (might be due to invalid IL or missing references) //IL_2bfd: Unknown result type (might be due to invalid IL or missing references) //IL_2c03: Unknown result type (might be due to invalid IL or missing references) //IL_2c0d: Unknown result type (might be due to invalid IL or missing references) //IL_2c12: Unknown result type (might be due to invalid IL or missing references) //IL_2c1d: Unknown result type (might be due to invalid IL or missing references) //IL_2c23: Unknown result type (might be due to invalid IL or missing references) //IL_2c28: Unknown result type (might be due to invalid IL or missing references) //IL_2c2e: Unknown result type (might be due to invalid IL or missing references) //IL_2c33: Unknown result type (might be due to invalid IL or missing references) //IL_2c39: Unknown result type (might be due to invalid IL or missing references) //IL_2c43: Unknown result type (might be due to invalid IL or missing references) //IL_2c48: Unknown result type (might be due to invalid IL or missing references) //IL_2c4e: Unknown result type (might be due to invalid IL or missing references) //IL_2c58: Unknown result type (might be due to invalid IL or missing references) //IL_2c5e: Unknown result type (might be due to invalid IL or missing references) //IL_2c63: Unknown result type (might be due to invalid IL or missing references) //IL_2c69: Unknown result type (might be due to invalid IL or missing references) //IL_2c6e: Unknown result type (might be due to invalid IL or missing references) //IL_2c73: Unknown result type (might be due to invalid IL or missing references) //IL_2c79: Unknown result type (might be due to invalid IL or missing references) //IL_2c83: Unknown result type (might be due to invalid IL or missing references) //IL_2c88: Unknown result type (might be due to invalid IL or missing references) //IL_2c94: Unknown result type (might be due to invalid IL or missing references) //IL_2af3: Unknown result type (might be due to invalid IL or missing references) //IL_2af8: Unknown result type (might be due to invalid IL or missing references) //IL_2972: Unknown result type (might be due to invalid IL or missing references) //IL_2977: Unknown result type (might be due to invalid IL or missing references) //IL_2986: Unknown result type (might be due to invalid IL or missing references) //IL_298b: Unknown result type (might be due to invalid IL or missing references) //IL_29a7: Unknown result type (might be due to invalid IL or missing references) //IL_29ac: Unknown result type (might be due to invalid IL or missing references) //IL_29b5: Unknown result type (might be due to invalid IL or missing references) //IL_29c0: Unknown result type (might be due to invalid IL or missing references) //IL_29d1: Unknown result type (might be due to invalid IL or missing references) //IL_29d6: Unknown result type (might be due to invalid IL or missing references) //IL_29db: Unknown result type (might be due to invalid IL or missing references) //IL_3a31: Unknown result type (might be due to invalid IL or missing references) //IL_3a37: Unknown result type (might be due to invalid IL or missing references) //IL_3a3c: Unknown result type (might be due to invalid IL or missing references) //IL_3a42: Unknown result type (might be due to invalid IL or missing references) //IL_3a47: Unknown result type (might be due to invalid IL or missing references) //IL_3a4d: Unknown result type (might be due to invalid IL or missing references) //IL_3a57: Unknown result type (might be due to invalid IL or missing references) //IL_3a5c: Unknown result type (might be due to invalid IL or missing references) //IL_3a62: Unknown result type (might be due to invalid IL or missing references) //IL_3a6c: Unknown result type (might be due to invalid IL or missing references) //IL_3a72: Unknown result type (might be due to invalid IL or missing references) //IL_3a77: Unknown result type (might be due to invalid IL or missing references) //IL_3a7d: Unknown result type (might be due to invalid IL or missing references) //IL_3a82: Unknown result type (might be due to invalid IL or missing references) //IL_3a87: Unknown result type (might be due to invalid IL or missing references) //IL_3a8d: Unknown result type (might be due to invalid IL or missing references) //IL_3a97: Unknown result type (might be due to invalid IL or missing references) //IL_3a9c: Unknown result type (might be due to invalid IL or missing references) //IL_3aa7: Unknown result type (might be due to invalid IL or missing references) //IL_3aad: Unknown result type (might be due to invalid IL or missing references) //IL_3ab2: Unknown result type (might be due to invalid IL or missing references) //IL_3ab8: Unknown result type (might be due to invalid IL or missing references) //IL_3abd: Unknown result type (might be due to invalid IL or missing references) //IL_3ac3: Unknown result type (might be due to invalid IL or missing references) //IL_3acd: Unknown result type (might be due to invalid IL or missing references) //IL_3ad2: Unknown result type (might be due to invalid IL or missing references) //IL_3ad8: Unknown result type (might be due to invalid IL or missing references) //IL_3ae2: Unknown result type (might be due to invalid IL or missing references) //IL_3ae8: Unknown result type (might be due to invalid IL or missing references) //IL_3aed: Unknown result type (might be due to invalid IL or missing references) //IL_3af3: Unknown result type (might be due to invalid IL or missing references) //IL_3af8: Unknown result type (might be due to invalid IL or missing references) //IL_3afd: Unknown result type (might be due to invalid IL or missing references) //IL_3b03: Unknown result type (might be due to invalid IL or missing references) //IL_3b0d: Unknown result type (might be due to invalid IL or missing references) //IL_3b12: Unknown result type (might be due to invalid IL or missing references) //IL_3b1e: Unknown result type (might be due to invalid IL or missing references) //IL_397d: Unknown result type (might be due to invalid IL or missing references) //IL_3982: Unknown result type (might be due to invalid IL or missing references) //IL_37fc: Unknown result type (might be due to invalid IL or missing references) //IL_3801: Unknown result type (might be due to invalid IL or missing references) //IL_3810: Unknown result type (might be due to invalid IL or missing references) //IL_3815: Unknown result type (might be due to invalid IL or missing references) //IL_3831: Unknown result type (might be due to invalid IL or missing references) //IL_3836: Unknown result type (might be due to invalid IL or missing references) //IL_383f: Unknown result type (might be due to invalid IL or missing references) //IL_384a: Unknown result type (might be due to invalid IL or missing references) //IL_385b: Unknown result type (might be due to invalid IL or missing references) //IL_3860: Unknown result type (might be due to invalid IL or missing references) //IL_3865: Unknown result type (might be due to invalid IL or missing references) //IL_2d64: Unknown result type (might be due to invalid IL or missing references) //IL_2d69: Unknown result type (might be due to invalid IL or missing references) //IL_2d78: Unknown result type (might be due to invalid IL or missing references) //IL_2d7d: Unknown result type (might be due to invalid IL or missing references) //IL_2d94: Unknown result type (might be due to invalid IL or missing references) //IL_2d99: Unknown result type (might be due to invalid IL or missing references) //IL_2db5: Unknown result type (might be due to invalid IL or missing references) //IL_2dba: Unknown result type (might be due to invalid IL or missing references) //IL_2dc9: Unknown result type (might be due to invalid IL or missing references) //IL_2dce: Unknown result type (might be due to invalid IL or missing references) //IL_2ddf: Unknown result type (might be due to invalid IL or missing references) //IL_2dea: Unknown result type (might be due to invalid IL or missing references) //IL_2def: Unknown result type (might be due to invalid IL or missing references) //IL_2e18: Unknown result type (might be due to invalid IL or missing references) //IL_2e1d: Unknown result type (might be due to invalid IL or missing references) //IL_2e34: Unknown result type (might be due to invalid IL or missing references) //IL_2e39: Unknown result type (might be due to invalid IL or missing references) //IL_2e3e: Unknown result type (might be due to invalid IL or missing references) //IL_2cae: Unknown result type (might be due to invalid IL or missing references) //IL_2cb3: Unknown result type (might be due to invalid IL or missing references) //IL_2b2d: Unknown result type (might be due to invalid IL or missing references) //IL_2b32: Unknown result type (might be due to invalid IL or missing references) //IL_2b41: Unknown result type (might be due to invalid IL or missing references) //IL_2b46: Unknown result type (might be due to invalid IL or missing references) //IL_2b62: Unknown result type (might be due to invalid IL or missing references) //IL_2b67: Unknown result type (might be due to invalid IL or missing references) //IL_2b70: Unknown result type (might be due to invalid IL or missing references) //IL_2b7b: Unknown result type (might be due to invalid IL or missing references) //IL_2b8c: Unknown result type (might be due to invalid IL or missing references) //IL_2b91: Unknown result type (might be due to invalid IL or missing references) //IL_2b96: Unknown result type (might be due to invalid IL or missing references) //IL_3bec: Unknown result type (might be due to invalid IL or missing references) //IL_3bf2: Unknown result type (might be due to invalid IL or missing references) //IL_3bf7: Unknown result type (might be due to invalid IL or missing references) //IL_3bfd: Unknown result type (might be due to invalid IL or missing references) //IL_3c02: Unknown result type (might be due to invalid IL or missing references) //IL_3c08: Unknown result type (might be due to invalid IL or missing references) //IL_3c12: Unknown result type (might be due to invalid IL or missing references) //IL_3c17: Unknown result type (might be due to invalid IL or missing references) //IL_3c1d: Unknown result type (might be due to invalid IL or missing references) //IL_3c27: Unknown result type (might be due to invalid IL or missing references) //IL_3c2d: Unknown result type (might be due to invalid IL or missing references) //IL_3c32: Unknown result type (might be due to invalid IL or missing references) //IL_3c38: Unknown result type (might be due to invalid IL or missing references) //IL_3c3d: Unknown result type (might be due to invalid IL or missing references) //IL_3c42: Unknown result type (might be due to invalid IL or missing references) //IL_3c48: Unknown result type (might be due to invalid IL or missing references) //IL_3c52: Unknown result type (might be due to invalid IL or missing references) //IL_3c57: Unknown result type (might be due to invalid IL or missing references) //IL_3c62: Unknown result type (might be due to invalid IL or missing references) //IL_3c68: Unknown result type (might be due to invalid IL or missing references) //IL_3c6d: Unknown result type (might be due to invalid IL or missing references) //IL_3c73: Unknown result type (might be due to invalid IL or missing references) //IL_3c78: Unknown result type (might be due to invalid IL or missing references) //IL_3c7e: Unknown result type (might be due to invalid IL or missing references) //IL_3c88: Unknown result type (might be due to invalid IL or missing references) //IL_3c8d: Unknown result type (might be due to invalid IL or missing references) //IL_3c93: Unknown result type (might be due to invalid IL or missing references) //IL_3c9d: Unknown result type (might be due to invalid IL or missing references) //IL_3ca3: Unknown result type (might be due to invalid IL or missing references) //IL_3ca8: Unknown result type (might be due to invalid IL or missing references) //IL_3cae: Unknown result type (might be due to invalid IL or missing references) //IL_3cb3: Unknown result type (might be due to invalid IL or missing references) //IL_3cb8: Unknown result type (might be due to invalid IL or missing references) //IL_3cbe: Unknown result type (might be due to invalid IL or missing references) //IL_3cc8: Unknown result type (might be due to invalid IL or missing references) //IL_3ccd: Unknown result type (might be due to invalid IL or missing references) //IL_3cd9: Unknown result type (might be due to invalid IL or missing references) //IL_3b38: Unknown result type (might be due to invalid IL or missing references) //IL_3b3d: Unknown result type (might be due to invalid IL or missing references) //IL_39b7: Unknown result type (might be due to invalid IL or missing references) //IL_39bc: Unknown result type (might be due to invalid IL or missing references) //IL_39cb: Unknown result type (might be due to invalid IL or missing references) //IL_39d0: Unknown result type (might be due to invalid IL or missing references) //IL_39ec: Unknown result type (might be due to invalid IL or missing references) //IL_39f1: Unknown result type (might be due to invalid IL or missing references) //IL_39fa: Unknown result type (might be due to invalid IL or missing references) //IL_3a05: Unknown result type (might be due to invalid IL or missing references) //IL_3a16: Unknown result type (might be due to invalid IL or missing references) //IL_3a1b: Unknown result type (might be due to invalid IL or missing references) //IL_3a20: Unknown result type (might be due to invalid IL or missing references) //IL_2ce8: Unknown result type (might be due to invalid IL or missing references) //IL_2ced: Unknown result type (might be due to invalid IL or missing references) //IL_2cfc: Unknown result type (might be due to invalid IL or missing references) //IL_2d01: Unknown result type (might be due to invalid IL or missing references) //IL_2d1d: Unknown result type (might be due to invalid IL or missing references) //IL_2d22: Unknown result type (might be due to invalid IL or missing references) //IL_2d2b: Unknown result type (might be due to invalid IL or missing references) //IL_2d36: Unknown result type (might be due to invalid IL or missing references) //IL_2d47: Unknown result type (might be due to invalid IL or missing references) //IL_2d4c: Unknown result type (might be due to invalid IL or missing references) //IL_2d51: Unknown result type (might be due to invalid IL or missing references) //IL_3da7: Unknown result type (might be due to invalid IL or missing references) //IL_3dad: Unknown result type (might be due to invalid IL or missing references) //IL_3db2: Unknown result type (might be due to invalid IL or missing references) //IL_3db8: Unknown result type (might be due to invalid IL or missing references) //IL_3dbd: Unknown result type (might be due to invalid IL or missing references) //IL_3dc3: Unknown result type (might be due to invalid IL or missing references) //IL_3dcd: Unknown result type (might be due to invalid IL or missing references) //IL_3dd2: Unknown result type (might be due to invalid IL or missing references) //IL_3dd8: Unknown result type (might be due to invalid IL or missing references) //IL_3de2: Unknown result type (might be due to invalid IL or missing references) //IL_3de8: Unknown result type (might be due to invalid IL or missing references) //IL_3ded: Unknown result type (might be due to invalid IL or missing references) //IL_3df3: Unknown result type (might be due to invalid IL or missing references) //IL_3df8: Unknown result type (might be due to invalid IL or missing references) //IL_3dfd: Unknown result type (might be due to invalid IL or missing references) //IL_3e03: Unknown result type (might be due to invalid IL or missing references) //IL_3e0d: Unknown result type (might be due to invalid IL or missing references) //IL_3e12: Unknown result type (might be due to invalid IL or missing references) //IL_3e1d: Unknown result type (might be due to invalid IL or missing references) //IL_3e23: Unknown result type (might be due to invalid IL or missing references) //IL_3e28: Unknown result type (might be due to invalid IL or missing references) //IL_3e2e: Unknown result type (might be due to invalid IL or missing references) //IL_3e33: Unknown result type (might be due to invalid IL or missing references) //IL_3e39: Unknown result type (might be due to invalid IL or missing references) //IL_3e43: Unknown result type (might be due to invalid IL or missing references) //IL_3e48: Unknown result type (might be due to invalid IL or missing references) //IL_3e4e: Unknown result type (might be due to invalid IL or missing references) //IL_3e58: Unknown result type (might be due to invalid IL or missing references) //IL_3e5e: Unknown result type (might be due to invalid IL or missing references) //IL_3e63: Unknown result type (might be due to invalid IL or missing references) //IL_3e69: Unknown result type (might be due to invalid IL or missing references) //IL_3e6e: Unknown result type (might be due to invalid IL or missing references) //IL_3e73: Unknown result type (might be due to invalid IL or missing references) //IL_3e79: Unknown result type (might be due to invalid IL or missing references) //IL_3e83: Unknown result type (might be due to invalid IL or missing references) //IL_3e88: Unknown result type (might be due to invalid IL or missing references) //IL_3e94: Unknown result type (might be due to invalid IL or missing references) //IL_3cf3: Unknown result type (might be due to invalid IL or missing references) //IL_3cf8: Unknown result type (might be due to invalid IL or missing references) //IL_3b72: Unknown result type (might be due to invalid IL or missing references) //IL_3b77: Unknown result type (might be due to invalid IL or missing references) //IL_3b86: Unknown result type (might be due to invalid IL or missing references) //IL_3b8b: Unknown result type (might be due to invalid IL or missing references) //IL_3ba7: Unknown result type (might be due to invalid IL or missing references) //IL_3bac: Unknown result type (might be due to invalid IL or missing references) //IL_3bb5: Unknown result type (might be due to invalid IL or missing references) //IL_3bc0: Unknown result type (might be due to invalid IL or missing references) //IL_3bd1: Unknown result type (might be due to invalid IL or missing references) //IL_3bd6: Unknown result type (might be due to invalid IL or missing references) //IL_3bdb: Unknown result type (might be due to invalid IL or missing references) //IL_3f64: Unknown result type (might be due to invalid IL or missing references) //IL_3f69: Unknown result type (might be due to invalid IL or missing references) //IL_3f78: Unknown result type (might be due to invalid IL or missing references) //IL_3f7d: Unknown result type (might be due to invalid IL or missing references) //IL_3f94: Unknown result type (might be due to invalid IL or missing references) //IL_3f99: Unknown result type (might be due to invalid IL or missing references) //IL_3fb5: Unknown result type (might be due to invalid IL or missing references) //IL_3fba: Unknown result type (might be due to invalid IL or missing references) //IL_3fc9: Unknown result type (might be due to invalid IL or missing references) //IL_3fce: Unknown result type (might be due to invalid IL or missing references) //IL_3fdf: Unknown result type (might be due to invalid IL or missing references) //IL_3fea: Unknown result type (might be due to invalid IL or missing references) //IL_3fef: Unknown result type (might be due to invalid IL or missing references) //IL_4018: Unknown result type (might be due to invalid IL or missing references) //IL_401d: Unknown result type (might be due to invalid IL or missing references) //IL_4034: Unknown result type (might be due to invalid IL or missing references) //IL_4039: Unknown result type (might be due to invalid IL or missing references) //IL_403e: Unknown result type (might be due to invalid IL or missing references) //IL_3eae: Unknown result type (might be due to invalid IL or missing references) //IL_3eb3: Unknown result type (might be due to invalid IL or missing references) //IL_3d2d: Unknown result type (might be due to invalid IL or missing references) //IL_3d32: Unknown result type (might be due to invalid IL or missing references) //IL_3d41: Unknown result type (might be due to invalid IL or missing references) //IL_3d46: Unknown result type (might be due to invalid IL or missing references) //IL_3d62: Unknown result type (might be due to invalid IL or missing references) //IL_3d67: Unknown result type (might be due to invalid IL or missing references) //IL_3d70: Unknown result type (might be due to invalid IL or missing references) //IL_3d7b: Unknown result type (might be due to invalid IL or missing references) //IL_3d8c: Unknown result type (might be due to invalid IL or missing references) //IL_3d91: Unknown result type (might be due to invalid IL or missing references) //IL_3d96: Unknown result type (might be due to invalid IL or missing references) //IL_3ee8: Unknown result type (might be due to invalid IL or missing references) //IL_3eed: Unknown result type (might be due to invalid IL or missing references) //IL_3efc: Unknown result type (might be due to invalid IL or missing references) //IL_3f01: Unknown result type (might be due to invalid IL or missing references) //IL_3f1d: Unknown result type (might be due to invalid IL or missing references) //IL_3f22: Unknown result type (might be due to invalid IL or missing references) //IL_3f2b: Unknown result type (might be due to invalid IL or missing references) //IL_3f36: Unknown result type (might be due to invalid IL or missing references) //IL_3f47: Unknown result type (might be due to invalid IL or missing references) //IL_3f4c: Unknown result type (might be due to invalid IL or missing references) //IL_3f51: Unknown result type (might be due to invalid IL or missing references) if (switching || !ledgeSwitchingDetectors.allowLedgeSwitching || !grabbedOn) { return; } if ((!Physics.Linecast(((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.8f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { r1SecondBackSurfaceDetectorsHit = true; } else { r1SecondBackSurfaceDetectorsHit = false; r1SecondBackHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.8f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { r2SecondBackSurfaceDetectorsHit = true; } else { r2SecondBackSurfaceDetectorsHit = false; r2SecondBackHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.8f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2f + surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { r3SecondBackSurfaceDetectorsHit = true; } else { r3SecondBackSurfaceDetectorsHit = false; r3SecondBackHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) { if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref switchHitPoint)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit) { r1SecondBackHit = true; if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2), ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r1SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r1SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r1SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r1SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r1SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r1SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r1SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r1SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else { r1SecondBackHitPoint = new Vector3(((RaycastHit)(ref switchHitPoint)).point.x - ((Component)this).transform.forward.x * length2, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref switchHitPoint)).point.z - ((Component)this).transform.forward.x * length2) + new Vector3((0f - ((Component)this).transform.forward.x) * length2 / 10f, onLedgeHeight2 / 10f, (0f - ((Component)this).transform.forward.z) * length2 / 10f); } } else { r1SecondBackHit = false; } } else { r1SecondBackHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) { if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref switchHitPoint)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit) { r2SecondBackHit = true; if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2), ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r2SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r2SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r2SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r2SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r2SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r2SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r2SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r2SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else { r2SecondBackHitPoint = new Vector3(((RaycastHit)(ref switchHitPoint)).point.x - ((Component)this).transform.forward.x * length2, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref switchHitPoint)).point.z - ((Component)this).transform.forward.x * length2) + new Vector3((0f - ((Component)this).transform.forward.x) * length2 / 10f, onLedgeHeight2 / 10f, (0f - ((Component)this).transform.forward.z) * length2 / 10f); } } else { r2SecondBackHit = false; } } else { r2SecondBackHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f - ledgeSwitchSurfaceLength / 1.75f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) { if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref switchHitPoint)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit) { r3SecondBackHit = true; if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2), ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2), ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r3SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r3SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r3SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 1.75f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r3SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.45f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r3SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 1.8f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r3SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r3SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else if (Physics.Linecast(((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 - ledgeSwitchSurfaceLength / 0.875f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ((Component)this).transform.position + posChange2 + wallInFrontDetectorUpAmount2 + ledgeSwitchSurfaceLength / 0.585f + (rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2) + ledgeSwitchHeight * 2.405f, ref hit, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { r3SecondBackHitPoint = new Vector3(((RaycastHit)(ref hit)).point.x, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref hit)).point.z) + ((RaycastHit)(ref hit)).normal / (2.6f / length2); } else { r3SecondBackHitPoint = new Vector3(((RaycastHit)(ref switchHitPoint)).point.x - ((Component)this).transform.forward.x * length2, ((RaycastHit)(ref switchHitPoint)).point.y - height2 * 1.15f, ((RaycastHit)(ref switchHitPoint)).point.z - ((Component)this).transform.forward.x * length2) + new Vector3((0f - ((Component)this).transform.forward.x) * length2 / 10f, onLedgeHeight2 / 10f, (0f - ((Component)this).transform.forward.z) * length2 / 10f); } } else { r3SecondBackHit = false; } } else { r3SecondBackHit = false; } } private void LedgeSwitchHitPointsThirdBackRight() { //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_006a: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_0089: Unknown result type (might be due to invalid IL or missing references) //IL_008e: Unknown result type (might be due to invalid IL or missing references) //IL_0094: Unknown result type (might be due to invalid IL or missing references) //IL_0099: Unknown result type (might be due to invalid IL or missing references) //IL_009f: Unknown result type (might be due to invalid IL or missing references) //IL_00a4: Unknown result type (might be due to invalid IL or missing references) //IL_00af: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) //IL_00ba: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_00cb: Unknown result type (might be due to invalid IL or missing references) //IL_00d0: Unknown result type (might be due to invalid IL or missing references) //IL_00d6: Unknown result type (might be due to invalid IL or missing references) //IL_00e0: Unknown result type (might be due to invalid IL or missing references) //IL_00e5: Unknown result type (might be due to invalid IL or missing references) //IL_00eb: Unknown result type (might be due to invalid IL or missing references) //IL_00f5: Unknown result type (might be due to invalid IL or missing references) //IL_00fa: Unknown result type (might be due to invalid IL or missing references) //IL_0100: Unknown result type (might be due to invalid IL or missing references) //IL_010a: Unknown result type (might be due to invalid IL or missing references) //IL_010f: Unknown result type (might be due to invalid IL or missing references) //IL_0115: Unknown result type (might be due to invalid IL or missing references) //IL_011a: Unknown result type (might be due to invalid IL or missing references) //IL_0120: Unknown result type (might be due to invalid IL or missing references) //IL_0125: Unknown result type (might be due to invalid IL or missing references) //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_0268: Unknown result type (might be due to invalid IL or missing references) //IL_026e: Unknown result type (might be due to invalid IL or missing references) //IL_0273: Unknown result type (might be due to invalid IL or missing references) //IL_0279: Unknown result type (might be due to invalid IL or missing references) //IL_027e: Unknown result type (might be due to invalid IL or missing references) //IL_0284: Unknown result type (might be due to invalid IL or missing references) //IL_0289: Unknown result type (might be due to invalid IL or missing references) //IL_028f: Unknown result type (might be due to invalid IL or missing references) //IL_0299: Unknown result type (might be due to invalid IL or missing references) //IL_029e: Unknown result type (might be due to invalid IL or missing references) //IL_02a4: Unknown result type (might be due to invalid IL or missing references) //IL_02ae: Unknown result type (might be due to invalid IL or missing references) //IL_02b3: Unknown result type (might be due to invalid IL or missing references) //IL_02b9: Unknown result type (might be due to invalid IL or missing references) //IL_02c3: Unknown result type (might be due to invalid IL or missing references) //IL_02c8: Unknown result type (might be due to invalid IL or missing references) //IL_02ce: Unknown result type (might be due to invalid IL or missing references) //IL_02d3: Unknown result type (might be due to invalid IL or missing references) //IL_02d9: Unknown result type (might be due to invalid IL or missing references) //IL_02de: Unknown result type (might be due to invalid IL or missing references) //IL_02e9: Unknown result type (might be due to invalid IL or missing references) //IL_02ef: Unknown result type (might be due to invalid IL or missing references) //IL_02f4: Unknown result type (might be due to invalid IL or missing references) //IL_02fa: Unknown result type (might be due to invalid IL or missing references) //IL_02ff: Unknown result type (might be due to invalid IL or missing references) //IL_0305: Unknown result type (might be due to invalid IL or missing references) //IL_030a: Unknown result type (might be due to invalid IL or missing references) //IL_0310: Unknown result type (might be due to invalid IL or missing references) //IL_031a: Unknown result type (might be due to invalid IL or missing references) //IL_031f: Unknown result type (might be due to invalid IL or missing references) //IL_0325: Unknown result type (might be due to invalid IL or missing references) //IL_032f: Unknown result type (might be due to invalid IL or missing references) //IL_0334: Unknown result type (might be due to invalid IL or missing references) //IL_033a: Unknown result type (might be due to invalid IL or missing references) //IL_0344: Unknown result type (might be due to invalid IL or missing references) //IL_0349: Unknown result type (might be due to invalid IL or missing references) //IL_034f: Unknown result type (might be due to invalid IL or missing references) //IL_0354: Unknown result type (might be due to invalid IL or missing references) //IL_0360: Unknown result type (might be due to invalid IL or missing references) //IL_014b: Unknown result type (might be due to invalid IL or missing references) //IL_0151: Unknown result type (might be due to invalid IL or missing references) //IL_0156: Unknown result type (might be due to invalid IL or missing references) //IL_015c: Unknown result type (might be due to invalid IL or missing references) //IL_0161: Unknown result type (might be due to invalid IL or missing references) //IL_0167: Unknown result type (might be due to invalid IL or missing references) //IL_016c: Unknown result type (might be due to invalid IL or missing references) //IL_0172: Unknown result type (might be due to invalid IL or missing references) //IL_017c: Unknown result type (might be due to invalid IL or missing references) //IL_0181: Unknown result type (might be due to invalid IL or missing references) //IL_0187: Unknown result type (might be due to invalid IL or missing references) //IL_0191: Unknown result type (might be due to invalid IL or missing references) //IL_0196: Unknown result type (might be due to invalid IL or missing references) //IL_019c: Unknown result type (might be due to invalid IL or missing references) //IL_01a6: Unknown result type (might be due to invalid IL or missing references) //IL_01ab: Unknown result type (might be due to invalid IL or missing references) //IL_01b1: Unknown result type (might be due to invalid IL or missing references) //IL_01b6: Unknown result type (might be due to invalid IL or missing references) //IL_01bc: Unknown result type (might be due to invalid IL or missing references) //IL_01c1: Unknown result type (might be due to invalid IL or missing references) //IL_01cc: Unknown result type (might be due to invalid IL or missing references) //IL_01d2: Unknown result type (might be due to invalid IL or missing references) //IL_01d7: Unknown result type (might be due to invalid IL or missing references) //IL_01dd: Unknown result type (might be due to invalid IL or missing references) //IL_01e2: Unknown result type (might be due to invalid IL or missing references) //IL_01e8: Unknown result type (might be due to invalid IL or missing references) //IL_01ed: Unknown result type (might be due to invalid IL or missing references) //IL_01f3: Unknown result type (might be due to invalid IL or missing references) //IL_01fd: Unknown result type (might be due to invalid IL or missing references) //IL_0202: Unknown result type (might be due to invalid IL or missing references) //IL_0208: Unknown result type (might be due to invalid IL or missing references) //IL_020d: Unknown result type (might be due to invalid IL or missing references) //IL_0213: Unknown result type (might be due to invalid IL or missing references) //IL_021d: Unknown result type (might be due to invalid IL or missing references) //IL_0222: Unknown result type (might be due to invalid IL or missing references) //IL_0228: Unknown result type (might be due to invalid IL or missing references) //IL_0232: Unknown result type (might be due to invalid IL or missing references) //IL_0237: Unknown result type (might be due to invalid IL or missing references) //IL_023d: Unknown result type (might be due to invalid IL or missing references) //IL_0242: Unknown result type (might be due to invalid IL or missing references) //IL_024e: Unknown result type (might be due to invalid IL or missing references) //IL_0398: Unknown result type (might be due to invalid IL or missing references) //IL_039e: Unknown result type (might be due to invalid IL or missing references) //IL_03a3: Unknown result type (might be due to invalid IL or missing references) //IL_03a9: Unknown result type (might be due to invalid IL or missing references) //IL_03ae: Unknown result type (might be due to invalid IL or missing references) //IL_03b4: Unknown result type (might be due to invalid IL or missing references) //IL_03b9: Unknown result type (might be due to invalid IL or missing references) //IL_03bf: Unknown result type (might be due to invalid IL or missing references) //IL_03c9: Unknown result type (might be due to invalid IL or missing references) //IL_03ce: Unknown result type (might be due to invalid IL or missing references) //IL_03d4: Unknown result type (might be due to invalid IL or missing references) //IL_03de: Unknown result type (might be due to invalid IL or missing references) //IL_03e3: Unknown result type (might be due to invalid IL or missing references) //IL_03e9: Unknown result type (might be due to invalid IL or missing references) //IL_03f3: Unknown result type (might be due to invalid IL or missing references) //IL_03f8: Unknown result type (might be due to invalid IL or missing references) //IL_03fe: Unknown result type (might be due to invalid IL or missing references) //IL_0403: Unknown result type (might be due to invalid IL or missing references) //IL_0409: Unknown result type (might be due to invalid IL or missing references) //IL_040e: Unknown result type (might be due to invalid IL or missing references) //IL_0419: Unknown result type (might be due to invalid IL or missing references) //IL_041f: Unknown result type (might be due to invalid IL or missing references) //IL_0424: Unknown result type (might be due to invalid IL or missing references) //IL_042a: Unknown result type (might be due to invalid IL or missing references) //IL_042f: Unknown result type (might be due to invalid IL or missing references) //IL_0435: Unknown result type (might be due to invalid IL or missing references) //IL_043a: Unknown result type (might be due to invalid IL or missing references) //IL_0440: Unknown result type (might be due to invalid IL or missing references) //IL_044a: Unknown result type (might be due to invalid IL or missing references) //IL_044f: Unknown result type (might be due to invalid IL or missing references) //IL_0455: Unknown result type (might be due to invalid IL or missing references) //IL_045f: Unknown result type (might be due to invalid IL or missing references) //IL_0464: Unknown result type (might be due to invalid IL or missing references) //IL_046a: Unknown result type (might be due to invalid IL or missing references) //IL_0474: Unknown result type (might be due to invalid IL or missing references) //IL_0479: Unknown result type (might be due to invalid IL or missing references) //IL_047f: Unknown result type (might be due to invalid IL or missing references) //IL_0484: Unknown result type (might be due to invalid IL or missing references) //IL_048a: Unknown result type (might be due to invalid IL or missing references) //IL_048f: Unknown result type (might be due to invalid IL or missing references) //IL_049b: Unknown result type (might be due to invalid IL or missing references) //IL_05d2: Unknown result type (might be due to invalid IL or missing references) //IL_05d8: Unknown result type (might be due to invalid IL or missing references) //IL_05dd: Unknown result type (might be due to invalid IL or missing references) //IL_05e3: Unknown result type (might be due to invalid IL or missing references) //IL_05e8: Unknown result type (might be due to invalid IL or missing references) //IL_05ee: Unknown result type (might be due to invalid IL or missing references) //IL_05f3: Unknown result type (might be due to invalid IL or missing references) //IL_05f9: Unknown result type (might be due to invalid IL or missing references) //IL_0603: Unknown result type (might be due to invalid IL or missing references) //IL_0608: Unknown result type (might be due to invalid IL or missing references) //IL_060e: Unknown result type (might be due to invalid IL or missing references) //IL_0618: Unknown result type (might be due to invalid IL or missing references) //IL_061d: Unknown result type (might be due to invalid IL or missing references) //IL_0623: Unknown result type (might be due to invalid IL or missing references) //IL_062d: Unknown result type (might be due to invalid IL or missing references) //IL_0632: Unknown result type (might be due to invalid IL or missing references) //IL_0638: Unknown result type (might be due to invalid IL or missing references) //IL_063d: Unknown result type (might be due to invalid IL or missing references) //IL_0643: Unknown result type (might be due to invalid IL or missing references) //IL_0648: Unknown result type (might be due to invalid IL or missing references) //IL_0653: Unknown result type (might be due to invalid IL or missing references) //IL_0659: Unknown result type (might be due to invalid IL or missing references) //IL_065e: Unknown result type (might be due to invalid IL or missing references) //IL_0664: Unknown result type (might be due to invalid IL or missing references) //IL_0669: Unknown result type (might be due to invalid IL or missing references) //IL_066f: Unknown result type (might be due to invalid IL or missing references) //IL_0674: Unknown result type (might be due to invalid IL or missing references) //IL_067a: Unknown result type (might be due to invalid IL or missing references) //IL_0684: Unknown result type (might be due to invalid IL or missing references) //IL_0689: Unknown result type (might be due to invalid IL or missing references) //IL_068f: Unknown result type (might be due to invalid IL or missing references) //IL_0699: Unknown result type (might be due to invalid IL or missing references) //IL_069e: Unknown result type (might be due to invalid IL or missing references) //IL_06a4: Unknown result type (might be due to invalid IL or missing references) //IL_06ae: Unknown result type (might be due to invalid IL or missing references) //IL_06b3: Unknown result type (might be due to invalid IL or missing references) //IL_06b9: Unknown result type (might be due to invalid IL or missing references) //IL_06be: Unknown result type (might be due to invalid IL or missing references) //IL_06ca: Unknown result type (might be due to invalid IL or missing references) //IL_04b5: Unknown result type (might be due to invalid IL or missing references) //IL_04bb: Unknown result type (might be due to invalid IL or missing references) //IL_04c0: Unknown result type (might be due to invalid IL or missing references) //IL_04c6: Unknown result type (might be due to invalid IL or missing references) //IL_04cb: Unknown result type (might be due to invalid IL or missing references) //IL_04d1: Unknown result type (might be due to invalid IL or missing references) //IL_04d6: Unknown result type (might be due to invalid IL or missing references) //IL_04dc: Unknown result type (might be due to invalid IL or missing references) //IL_04e6: Unknown result type (might be due to invalid IL or missing references) //IL_04eb: Unknown result type (might be due to invalid IL or missing references) //IL_04f1: Unknown result type (might be due to invalid IL or missing references) //IL_04fb: Unknown result type (might be due to invalid IL or missing references) //IL_0500: Unknown result type (might be due to invalid IL or missing references) //IL_0506: Unknown result type (might be due to invalid IL or missing references) //IL_0510: Unknown result type (might be due to invalid IL or missing references) //IL_0515: Unknown result type (might be due to invalid IL or missing references) //IL_051b: Unknown result type (might be due to invalid IL or missing references) //IL_0520: Unknown result type (might be due to invalid IL or missing references) //IL_0526: Unknown result type (might be due to invalid IL or missing references) //IL_052b: Unknown result type (might be due to invalid IL or missing references) //IL_0536: Unknown result type (might be due to invalid IL or missing references) //IL_053c: Unknown result type (might be due to invalid IL or missing references) //IL_0541: Unknown result type (might be due to invalid IL or missing references) //IL_0547: Unknown result type (might be due to invalid IL or missing references) //IL_054c: Unknown result type (might be due to invalid IL or missing references) //IL_0552: Unknown result type (might be due to invalid IL or missing references) //IL_0557: Unknown result type (might be due to invalid IL or missing references) //IL_055d: Unknown result type (might be due to invalid IL or missing references) //IL_0567: Unknown result type (might be due to invalid IL or missing references) //IL_056c: Unknown result type (might be due to invalid IL or missing references) //IL_0572: Unknown result type (might be due to invalid IL or missing references) //IL_0577: Unknown result type (might be due to invalid IL or missing references) //IL_057d: Unknown result type (might be due to invalid IL or missing references) //IL_0587: Unknown result type (might be due to invalid IL or missing references) //IL_058c: Unknown result type (might be due to invalid IL or missing references) //IL_0592: Unknown result type (might be due to invalid IL or missing references) //IL_059c: Unknown result type (might be due to invalid IL or missing references) //IL_05a1: Unknown result type (might be due to invalid IL or missing references) //IL_05a7: Unknown result type (might be due to invalid IL or missing references) //IL_05ac: Unknown result type (might be due to invalid IL or missing references) //IL_05b8: Unknown result type (might be due to invalid IL or missing references) //IL_0702: Unknown result type (might be due to invalid IL or missing references) //IL_0708: Unknown result type (might be due to invalid IL or missing references) //IL_070d: Unknown result type (might be due to invalid IL or missing references) //IL_0713: Unknown result type (might be due to invalid IL or missing references) //IL_0718: Unknown result type (might be due to invalid IL or missing references) //IL_071e: Unknown result type (might be due to invalid IL or missing references) //IL_0723: Unknown result type (might be due to invalid IL or missing references) //IL_0729: Unknown result type (might be due to invalid IL or missing references) //IL_0733: Unknown result type (might be due to invalid IL or missing references) //IL_0738: Unknown result type (might be due to invalid IL or missing references) //IL_073e: Unknown result type (might be due to invalid IL or missing references) //IL_0748: Unknown result type (might be due to invalid IL or missing references) //IL_074d: Unknown result type (might be due to invalid IL or missing references) //IL_0753: Unknown result type (might be due to invalid IL or missing references) //IL_075d: Unknown result type (might be due to invalid IL or missing references) //IL_0762: Unknown result type (might be due to invalid IL or missing references) //IL_0768: Unknown result type (might be due to invalid IL or missing references) //IL_076d: Unknown result type (might be due to invalid IL or missing references) //IL_0773: Unknown result type (might be due to invalid IL or missing references) //IL_0778: Unknown result type (might be due to invalid IL or missing references) //IL_0783: Unknown result type (might be due to invalid IL or missing references) //IL_0789: Unknown result type (might be due to invalid IL or missing references) //IL_078e: Unknown result type (might be due to invalid IL or missing references) //IL_0794: Unknown result type (might be due to invalid IL or missing references) //IL_0799: Unknown result type (might be due to invalid IL or missing references) //IL_079f: Unknown result type (might be due to invalid IL or missing references) //IL_07a4: Unknown result type (might be due to invalid IL or missing references) //IL_07aa: Unknown result type (might be due to invalid IL or missing references) //IL_07b4: Unknown result type (might be due to invalid IL or missing references) //IL_07b9: Unknown result type (might be due to invalid IL or missing references) //IL_07bf: Unknown result type (might be due to invalid IL or missing references) //IL_07c9: Unknown result type (might be due to invalid IL or missing references) //IL_07ce: Unknown result type (might be due to invalid IL or missing references) //IL_07d4: Unknown result type (might be due to invalid IL or missing references) //IL_07de: Unknown result type (might be due to invalid IL or missing references) //IL_07e3: Unknown result type (might be due to invalid IL or missing references) //IL_07e9: Unknown result type (might be due to invalid IL or missing references) //IL_07ee: Unknown result type (might be due to invalid IL or missing references) //IL_07f4: Unknown result type (might be due to invalid IL or missing references) //IL_07f9: Unknown result type (might be due to invalid IL or missing references) //IL_0805: Unknown result type (might be due to invalid IL or missing references) //IL_093c: Unknown result type (might be due to invalid IL or missing references) //IL_0942: Unknown result type (might be due to invalid IL or missing references) //IL_0947: Unknown result type (might be due to invalid IL or missing references) //IL_094d: Unknown result type (might be due to invalid IL or missing references) //IL_0952: Unknown result type (might be due to invalid IL or missing references) //IL_0958: Unknown result type (might be due to invalid IL or missing references) //IL_095d: Unknown result type (might be due to invalid IL or missing references) //IL_0963: Unknown result type (might be due to invalid IL or missing references) //IL_096d: Unknown result type (might be due to invalid IL or missing references) //IL_0972: Unknown result type (might be due to invalid IL or missing references) //IL_0978: Unknown result type (might be due to invalid IL or missing references) //IL_0982: Unknown result type (might be due to invalid IL or missing references) //IL_0987: Unknown result type (might be due to invalid IL or missing references) //IL_098d: Unknown result type (might be due to invalid IL or missing references) //IL_0997: Unknown result type (might be due to invalid IL or missing references) //IL_099c: Unknown result type (might be due to invalid IL or missing references) //IL_09a2: Unknown result type (might be due to invalid IL or missing references) //IL_09a7: Unknown result type (might be due to invalid IL or missing references) //IL_09ad: Unknown result type (might be due to invalid IL or missing references) //IL_09b2: Unknown result type (might be due to invalid IL or missing references) //IL_09bd: Unknown result type (might be due to invalid IL or missing references) //IL_09c3: Unknown result type (might be due to invalid IL or missing references) //IL_09c8: Unknown result type (might be due to invalid IL or missing references) //IL_09ce: Unknown result type (might be due to invalid IL or missing references) //IL_09d3: Unknown result type (might be due to invalid IL or missing references) //IL_09d9: Unknown result type (might be due to invalid IL or missing references) //IL_09de: Unknown result type (might be due to invalid IL or missing references) //IL_09e4: Unknown result type (might be due to invalid IL or missing references) //IL_09ee: Unknown result type (might be due to invalid IL or missing references) //IL_09f3: Unknown result type (might be due to invalid IL or missing references) //IL_09f9: Unknown result type (might be due to invalid IL or missing references) //IL_0a03: Unknown result type (might be due to invalid IL or missing references) //IL_0a08: Unknown result type (might be due to invalid IL or missing references) //IL_0a0e: Unknown result type (might be due to invalid IL or missing references) //IL_0a18: Unknown result type (might be due to invalid IL or missing references) //IL_0a1d: Unknown result type (might be due to invalid IL or missing references) //IL_0a23: Unknown result type (might be due to invalid IL or missing references) //IL_0a28: Unknown result type (might be due to invalid IL or missing references) //IL_0a34: Unknown result type (might be due to invalid IL or missing references) //IL_081f: Unknown result type (might be due to invalid IL or missing references) //IL_0825: Unknown result type (might be due to invalid IL or missing references) //IL_082a: Unknown result type (might be due to invalid IL or missing references) //IL_0830: Unknown result type (might be due to invalid IL or missing references) //IL_0835: Unknown result type (might be due to invalid IL or missing references) //IL_083b: Unknown result type (might be due to invalid IL or missing references) //IL_0840: Unknown result type (might be due to invalid IL or missing references) //IL_0846: Unknown result type (might be due to invalid IL or missing references) //IL_0850: Unknown result type (might be due to invalid IL or missing references) //IL_0855: Unknown result type (might be due to invalid IL or missing references) //IL_085b: Unknown result type (might be due to invalid IL or missing references) //IL_0865: Unknown result type (might be due to invalid IL or missing references) //IL_086a: Unknown result type (might be due to invalid IL or missing references) //IL_0870: Unknown result type (might be due to invalid IL or missing references) //IL_087a: Unknown result type (might be due to invalid IL or missing references) //IL_087f: Unknown result type (might be due to invalid IL or missing references) //IL_0885: Unknown result type (might be due to invalid IL or missing references) //IL_088a: Unknown result type (might be due to invalid IL or missing references) //IL_0890: Unknown result type (might be due to invalid IL or missing references) //IL_0895: Unknown result type (might be due to invalid IL or missing references) //IL_08a0: Unknown result type (might be due to invalid IL or missing references) //IL_08a6: Unknown result type (might be due to invalid IL or missing references) //IL_08ab: Unknown result type (might be due to invalid IL or missing references) //IL_08b1: Unknown result type (might be due to invalid IL or missing references) //IL_08b6: Unknown result type (might be due to invalid IL or missing references) //IL_08bc: Unknown result type (might be due to invalid IL or missing references) //IL_08c1: Unknown result type (might be due to invalid IL or missing references) //IL_08c7: Unknown result type (might be due to invalid IL or missing references) //IL_08d1: Unknown result type (might be due to invalid IL or missing references) //IL_08d6: Unknown result type (might be due to invalid IL or missing references) //IL_08dc: Unknown result type (might be due to invalid IL or missing references) //IL_08e1: Unknown result type (might be due to invalid IL or missing references) //IL_08e7: Unknown result type (might be due to invalid IL or missing references) //IL_08f1: Unknown result type (might be due to invalid IL or missing references) //IL_08f6: Unknown result type (might be due to invalid IL or missing references) //IL_08fc: Unknown result type (might be due to invalid IL or missing references) //IL_0906: Unknown result type (might be due to invalid IL or missing references) //IL_090b: Unknown result type (might be due to invalid IL or missing references) //IL_0911: Unknown result type (might be due to invalid IL or missing references) //IL_0916: Unknown result type (might be due to invalid IL or missing references) //IL_0922: Unknown result type (might be due to invalid IL or missing references) //IL_0a6c: Unknown result type (might be due to invalid IL or missing references) //IL_0a72: Unknown result type (might be due to invalid IL or missing references) //IL_0a77: Unknown result type (might be due to invalid IL or missing references) //IL_0a7d: Unknown result type (might be due to invalid IL or missing references) //IL_0a87: Unknown result type (might be due to invalid IL or missing references) //IL_0a8c: Unknown result type (might be due to invalid IL or missing references) //IL_0a92: Unknown result type (might be due to invalid IL or missing references) //IL_0a9c: Unknown result type (might be due to invalid IL or missing references) //IL_0aa1: Unknown result type (might be due to invalid IL or missing references) //IL_0aa7: Unknown result type (might be due to invalid IL or missing references) //IL_0ab1: Unknown result type (might be due to invalid IL or missing references) //IL_0ab6: Unknown result type (might be due to invalid IL or missing references) //IL_0abc: Unknown result type (might be due to invalid IL or missing references) //IL_0ac1: Unknown result type (might be due to invalid IL or missing references) //IL_0ac7: Unknown result type (might be due to invalid IL or missing references) //IL_0acc: Unknown result type (might be due to invalid IL or missing references) //IL_0ad2: Unknown result type (might be due to invalid IL or missing references) //IL_0ad7: Unknown result type (might be due to invalid IL or missing references) //IL_0ae2: Unknown result type (might be due to invalid IL or missing references) //IL_0ae8: Unknown result type (might be due to invalid IL or missing references) //IL_0aed: Unknown result type (might be due to invalid IL or missing references) //IL_0af3: Unknown result type (might be due to invalid IL or missing references) //IL_0afd: Unknown result type (might be due to invalid IL or missing references) //IL_0b02: Unknown result type (might be due to invalid IL or missing references) //IL_0b08: Unknown result type (might be due to invalid IL or missing references) //IL_0b12: Unknown result type (might be due to invalid IL or missing references) //IL_0b17: Unknown result type (might be due to invalid IL or missing references) //IL_0b1d: Unknown result type (might be due to invalid IL or missing references) //IL_0b27: Unknown result type (might be due to invalid IL or missing references) //IL_0b2c: Unknown result type (might be due to invalid IL or missing references) //IL_0b32: Unknown result type (might be due to invalid IL or missing references) //IL_0b37: Unknown result type (might be due to invalid IL or missing references) //IL_0b3d: Unknown result type (might be due to invalid IL or missing references) //IL_0b42: Unknown result type (might be due to invalid IL or missing references) //IL_0b48: Unknown result type (might be due to invalid IL or missing references) //IL_0b4d: Unknown result type (might be due to invalid IL or missing references) //IL_0b59: Unknown result type (might be due to invalid IL or missing references) //IL_0c7a: Unknown result type (might be due to invalid IL or missing references) //IL_0c80: Unknown result type (might be due to invalid IL or missing references) //IL_0c85: Unknown result type (might be due to invalid IL or missing references) //IL_0c8b: Unknown result type (might be due to invalid IL or missing references) //IL_0c95: Unknown result type (might be due to invalid IL or missing references) //IL_0c9a: Unknown result type (might be due to invalid IL or missing references) //IL_0ca0: Unknown result type (might be due to invalid IL or missing references) //IL_0caa: Unknown result type (might be due to invalid IL or missing references) //IL_0caf: Unknown result type (might be due to invalid IL or missing references) //IL_0cb5: Unknown result type (might be due to invalid IL or missing references) //IL_0cbf: Unknown result type (might be due to invalid IL or missing references) //IL_0cc4: Unknown result type (might be due to invalid IL or missing references) //IL_0cca: Unknown result type (might be due to invalid IL or missing references) //IL_0ccf: Unknown result type (might be due to invalid IL or missing references) //IL_0cd5: Unknown result type (might be due to invalid IL or missing references) //IL_0cda: Unknown result type (might be due to invalid IL or missing references) //IL_0ce0: Unknown result type (might be due to invalid IL or missing references) //IL_0ce5: Unknown result type (might be due to invalid IL or missing references) //IL_0cf0: Unknown result type (might be due to invalid IL or missing references) //IL_0cf6: Unknown result type (might be due to invalid IL or missing references) //IL_0cfb: Unknown result type (might be due to invalid IL or missing references) //IL_0d01: Unknown result type (might be due to invalid IL or missing references) //IL_0d0b: Unknown result type (might be due to invalid IL or missing references) //IL_0d10: Unknown result type (might be due to invalid IL or missing references) //IL_0d16: Unknown result type (might be due to invalid IL or missing references) //IL_0d20: Unknown result type (might be due to invalid IL or missing references) //IL_0d25: Unknown result type (might be due to invalid IL or missing references) //IL_0d2b: Unknown result type (might be due to invalid IL or missing references) //IL_0d35: Unknown result type (might be due to invalid IL or missing references) //IL_0d3a: Unknown result type (might be due to invalid IL or missing references) //IL_0d40: Unknown result type (might be due to invalid IL or missing references) //IL_0d45: Unknown result type (might be due to invalid IL or missing references) //IL_0d4b: Unknown result type (might be due to invalid IL or missing references) //IL_0d50: Unknown result type (might be due to invalid IL or missing references) //IL_0d5c: Unknown result type (might be due to invalid IL or missing references) //IL_0b73: Unknown result type (might be due to invalid IL or missing references) //IL_0b79: Unknown result type (might be due to invalid IL or missing references) //IL_0b7e: Unknown result type (might be due to invalid IL or missing references) //IL_0b84: Unknown result type (might be due to invalid IL or missing references) //IL_0b8e: Unknown result type (might be due to invalid IL or missing references) //IL_0b93: Unknown result type (might be due to invalid IL or missing references) //IL_0b99: Unknown result type (might be due to invalid IL or missing references) //IL_0ba3: Unknown result type (might be due to invalid IL or missing references) //IL_0ba8: Unknown result type (might be due to invalid IL or missing references) //IL_0bae: Unknown result type (might be due to invalid IL or missing references) //IL_0bb8: Unknown result type (might be due to invalid IL or missing references) //IL_0bbd: Unknown result type (might be due to invalid IL or missing references) //IL_0bc3: Unknown result type (might be due to invalid IL or missing references) //IL_0bc8: Unknown result type (might be due to invalid IL or missing references) //IL_0bce: Unknown result type (might be due to invalid IL or missing references) //IL_0bd3: Unknown result type (might be due to invalid IL or missing references) //IL_0bd9: Unknown result type (might be due to invalid IL or missing references) //IL_0bde: Unknown result type (might be due to invalid IL or missing references) //IL_0be9: Unknown result type (might be due to invalid IL or missing references) //IL_0bef: Unknown result type (might be due to invalid IL or missing references) //IL_0bf4: Unknown result type (might be due to invalid IL or missing references) //IL_0bfa: Unknown result type (might be due to invalid IL or missing references) //IL_0c04: Unknown result type (might be due to invalid IL or missing references) //IL_0c09: Unknown result type (might be due to invalid IL or missing references) //IL_0c0f: Unknown result type (might be due to invalid IL or missing references) //IL_0c14: Unknown result type (might be due to invalid IL or missing references) //IL_0c1a: Unknown result type (might be due to invalid IL or missing references) //IL_0c24: Unknown result type (might be due to invalid IL or missing references) //IL_0c29: Unknown result type (might be due to invalid IL or missing references) //IL_0c2f: Unknown result type (might be due to invalid IL or missing references) //IL_0c39: Unknown result type (might be due to invalid IL or missing references) //IL_0c3e: Unknown result type (might be due to invalid IL or missing references) //IL_0c44: Unknown result type (might be due to invalid IL or missing references) //IL_0c49: Unknown result type (might be due to invalid IL or missing references) //IL_0c4f: Unknown result type (might be due to invalid IL or missing references) //IL_0c54: Unknown result type (might be due to invalid IL or missing references) //IL_0c60: Unknown result type (might be due to invalid IL or missing references) //IL_0d77: Unknown result type (might be due to invalid IL or missing references) //IL_0d7c: Unknown result type (might be due to invalid IL or missing references) //IL_0dd5: Unknown result type (might be due to invalid IL or missing references) //IL_0ddb: Unknown result type (might be due to invalid IL or missing references) //IL_0de0: Unknown result type (might be due to invalid IL or missing references) //IL_0de6: Unknown result type (might be due to invalid IL or missing references) //IL_0df0: Unknown result type (might be due to invalid IL or missing references) //IL_0df5: Unknown result type (might be due to invalid IL or missing references) //IL_0dfb: Unknown result type (might be due to invalid IL or missing references) //IL_0e05: Unknown result type (might be due to invalid IL or missing references) //IL_0e0a: Unknown result type (might be due to invalid IL or missing references) //IL_0e10: Unknown result type (might be due to invalid IL or missing references) //IL_0e1a: Unknown result type (might be due to invalid IL or missing references) //IL_0e1f: Unknown result type (might be due to invalid IL or missing references) //IL_0e25: Unknown result type (might be due to invalid IL or missing references) //IL_0e2a: Unknown result type (might be due to invalid IL or missing references) //IL_0e30: Unknown result type (might be due to invalid IL or missing references) //IL_0e35: Unknown result type (might be due to invalid IL or missing references) //IL_0e3b: Unknown result type (might be due to invalid IL or missing references) //IL_0e40: Unknown result type (might be due to invalid IL or missing references) //IL_0e4b: Unknown result type (might be due to invalid IL or missing references) //IL_0e51: Unknown result type (might be due to invalid IL or missing references) //IL_0e56: Unknown result type (might be due to invalid IL or missing references) //IL_0e5c: Unknown result type (might be due to invalid IL or missing references) //IL_0e66: Unknown result type (might be due to invalid IL or missing references) //IL_0e6b: Unknown result type (might be due to invalid IL or missing references) //IL_0e71: Unknown result type (might be due to invalid IL or missing references) //IL_0e7b: Unknown result type (might be due to invalid IL or missing references) //IL_0e80: Unknown result type (might be due to invalid IL or missing references) //IL_0e86: Unknown result type (might be due to invalid IL or missing references) //IL_0e90: Unknown result type (might be due to invalid IL or missing references) //IL_0e95: Unknown result type (might be due to invalid IL or missing references) //IL_0e9b: Unknown result type (might be due to invalid IL or missing references) //IL_0ea0: Unknown result type (might be due to invalid IL or missing references) //IL_0ea6: Unknown result type (might be due to invalid IL or missing references) //IL_0eab: Unknown result type (might be due to invalid IL or missing references) //IL_0eb1: Unknown result type (might be due to invalid IL or missing references) //IL_0eb6: Unknown result type (might be due to invalid IL or missing references) //IL_0ec2: Unknown result type (might be due to invalid IL or missing references) //IL_0fe3: Unknown result type (might be due to invalid IL or missing references) //IL_0fe9: Unknown result type (might be due to invalid IL or missing references) //IL_0fee: Unknown result type (might be due to invalid IL or missing references) //IL_0ff4: Unknown result type (might be due to invalid IL or missing references) //IL_0ffe: Unknown result type (might be due to invalid IL or missing references) //IL_1003: Unknown result type (might be due to invalid IL or missing references) //IL_1009: Unknown result type (might be due to invalid IL or missing references) //IL_1013: Unknown result type (might be due to invalid IL or missing references) //IL_1018: Unknown result type (might be due to invalid IL or missing references) //IL_101e: Unknown result type (might be due to invalid IL or missing references) //IL_1028: Unknown result type (might be due to invalid IL or missing references) //IL_102d: Unknown result type (might be due to invalid IL or missing references) //IL_1033: Unknown result type (might be due to invalid IL or missing references) //IL_1038: Unknown result type (might be due to invalid IL or missing references) //IL_103e: Unknown result type (might be due to invalid IL or missing references) //IL_1043: Unknown result type (might be due to invalid IL or missing references) //IL_1049: Unknown result type (might be due to invalid IL or missing references) //IL_104e: Unknown result type (might be due to invalid IL or missing references) //IL_1059: Unknown result type (might be due to invalid IL or missing references) //IL_105f: Unknown result type (might be due to invalid IL or missing references) //IL_1064: Unknown result type (might be due to invalid IL or missing references) //IL_106a: Unknown result type (might be due to invalid IL or missing references) //IL_1074: Unknown result type (might be due to invalid IL or missing references) //IL_1079: Unknown result type (might be due to invalid IL or missing references) //IL_107f: Unknown result type (might be due to invalid IL or missing references) //IL_1089: Unknown result type (might be due to invalid IL or missing references) //IL_108e: Unknown result type (might be due to invalid IL or missing references) //IL_1094: Unknown result type (might be due to invalid IL or missing references) //IL_109e: Unknown result type (might be due to invalid IL or missing references) //IL_10a3: Unknown result type (might be due to invalid IL or missing references) //IL_10a9: Unknown result type (might be due to invalid IL or missing references) //IL_10ae: Unknown result type (might be due to invalid IL or missing references) //IL_10b4: Unknown result type (might be due to invalid IL or missing references) //IL_10b9: Unknown result type (might be due to invalid IL or missing references) //IL_10c5: Unknown result type (might be due to invalid IL or missing references) //IL_0edc: Unknown result type (might be due to invalid IL or missing references) //IL_0ee2: Unknown result type (might be due to invalid IL or missing references) //IL_0ee7: Unknown result type (might be due to invalid IL or missing references) //IL_0eed: Unknown result type (might be due to invalid IL or missing references) //IL_0ef7: Unknown result type (might be due to invalid IL or missing references) //IL_0efc: Unknown result type (might be due to invalid IL or missing references) //IL_0f02: Unknown result type (might be due to invalid IL or missing references) //IL_0f0c: Unknown result type (might be due to invalid IL or missing references) //IL_0f11: Unknown result type (might be due to invalid IL or missing references) //IL_0f17: Unknown result type (might be due to invalid IL or missing references) //IL_0f21: Unknown result type (might be due to invalid IL or missing references) //IL_0f26: Unknown result type (might be due to invalid IL or missing references) //IL_0f2c: Unknown result type (might be due to invalid IL or missing references) //IL_0f31: Unknown result type (might be due to invalid IL or missing references) //IL_0f37: Unknown result type (might be due to invalid IL or missing references) //IL_0f3c: Unknown result type (might be due to invalid IL or missing references) //IL_0f42: Unknown result type (might be due to invalid IL or missing references) //IL_0f47: Unknown result type (might be due to invalid IL or missing references) //IL_0f52: Unknown result type (might be due to invalid IL or missing references) //IL_0f58: Unknown result type (might be due to invalid IL or missing references) //IL_0f5d: Unknown result type (might be due to invalid IL or missing references) //IL_0f63: Unknown result type (might be due to invalid IL or missing references) //IL_0f6d: Unknown result type (might be due to invalid IL or missing references) //IL_0f72: Unknown result type (might be due to invalid IL or missing references) //IL_0f78: Unknown result type (might be due to invalid IL or missing references) //IL_0f7d: Unknown result type (might be due to invalid IL or missing references) //IL_0f83: Unknown result type (might be due to invalid IL or missing references) //IL_0f8d: Unknown result type (might be due to invalid IL or missing references) //IL_0f92: Unknown result type (might be due to invalid IL or missing references) //IL_0f98: Unknown result type (might be due to invalid IL or missing references) //IL_0fa2: Unknown result type (might be due to invalid IL or missing references) //IL_0fa7: Unknown result type (might be due to invalid IL or missing references) //IL_0fad: Unknown result type (might be due to invalid IL or missing references) //IL_0fb2: Unknown result type (might be due to invalid IL or missing references) //IL_0fb8: Unknown result type (might be due to invalid IL or missing references) //IL_0fbd: Unknown result type (might be due to invalid IL or missing references) //IL_0fc9: Unknown result type (might be due to invalid IL or missing references) //IL_10e0: Unknown result type (might be due to invalid IL or missing references) //IL_10e5: Unknown result type (might be due to invalid IL or missing references) //IL_113e: Unknown result type (might be due to invalid IL or missing references) //IL_1144: Unknown result type (might be due to invalid IL or missing references) //IL_1149: Unknown result type (might be due to invalid IL or missing references) //IL_114f: Unknown result type (might be due to invalid IL or missing references) //IL_1159: Unknown result type (might be due to invalid IL or missing references) //IL_115e: Unknown result type (might be due to invalid IL or missing references) //IL_1164: Unknown result type (might be due to invalid IL or missing references) //IL_116e: Unknown result type (might be due to invalid IL or missing references) //IL_1173: Unknown result type (might be due to invalid IL or missing references) //IL_1179: Unknown result type (might be due to invalid IL or missing references) //IL_1183: Unknown result type (might be due to invalid IL or missing references) //IL_1188: Unknown result type (might be due to invalid IL or missing references) //IL_118e: Unknown result type (might be due to invalid IL or missing references) //IL_1193: Unknown result type (might be due to invalid IL or missing references) //IL_1199: Unknown result type (might be due to invalid IL or missing references) //IL_119e: Unknown result type (might be due to invalid IL or missing references) //IL_11a4: Unknown result type (might be due to invalid IL or missing references) //IL_11a9: Unknown result type (might be due to invalid IL or missing references) //IL_11b4: Unknown result type (might be due to invalid IL or missing references) //IL_11ba: Unknown result type (might be due to invalid IL or missing references) //IL_11bf: Unknown result type (might be due to invalid IL or missing references) //IL_11c5: Unknown result type (might be due to invalid IL or missing references) //IL_11cf: Unknown result type (might be due to invalid IL or missing references) //IL_11d4: Unknown result type (might be due to invalid IL or missing references) //IL_11da: Unknown result type (might be due to invalid IL or missing references) //IL_11e4: Unknown result type (might be due to invalid IL or missing references) //IL_11e9: Unknown result type (might be due to invalid IL or missing references) //IL_11ef: Unknown result type (might be due to invalid IL or missing references) //IL_11f9: Unknown result type (might be due to invalid IL or missing references) //IL_11fe: Unknown result type (might be due to invalid IL or missing references) //IL_1204: Unknown result type (might be due to invalid IL or missing references) //IL_1209: Unknown result type (might be due to invalid IL or missing references) //IL_120f: Unknown result type (might be due to invalid IL or missing references) //IL_1214: Unknown result type (might be due to invalid IL or missing references) //IL_121a: Unknown result type (might be due to invalid IL or missing references) //IL_121f: Unknown result type (might be due to invalid IL or missing references) //IL_122b: Unknown result type (might be due to invalid IL or missing references) //IL_134c: Unknown result type (might be due to invalid IL or missing references) //IL_1352: Unknown result type (might be due to invalid IL or missing references) //IL_1357: Unknown result type (might be due to invalid IL or missing references) //IL_135d: Unknown result type (might be due to invalid IL or missing references) //IL_1367: Unknown result type (might be due to invalid IL or missing references) //IL_136c: Unknown result type (might be due to invalid IL or missing references) //IL_1372: Unknown result type (might be due to invalid IL or missing references) //IL_137c: Unknown result type (might be due to invalid IL or missing references) //IL_1381: Unknown result type (might be due to invalid IL or missing references) //IL_1387: Unknown result type (might be due to invalid IL or missing references) //IL_1391: Unknown result type (might be due to invalid IL or missing references) //IL_1396: Unknown result type (might be due to invalid IL or missing references) //IL_139c: Unknown result type (might be due to invalid IL or missing references) //IL_13a1: Unknown result type (might be due to invalid IL or missing references) //IL_13a7: Unknown result type (might be due to invalid IL or missing references) //IL_13ac: Unknown result type (might be due to invalid IL or missing references) //IL_13b2: Unknown result type (might be due to invalid IL or missing references) //IL_13b7: Unknown result type (might be due to invalid IL or missing references) //IL_13c2: Unknown result type (might be due to invalid IL or missing references) //IL_13c8: Unknown result type (might be due to invalid IL or missing references) //IL_13cd: Unknown result type (might be due to invalid IL or missing references) //IL_13d3: Unknown result type (might be due to invalid IL or missing references) //IL_13dd: Unknown result type (might be due to invalid IL or missing references) //IL_13e2: Unknown result type (might be due to invalid IL or missing references) //IL_13e8: Unknown result type (might be due to invalid IL or missing references) //IL_13f2: Unknown result type (might be due to invalid IL or missing references) //IL_13f7: Unknown result type (might be due to invalid IL or missing references) //IL_13fd: Unknown result type (might be due to invalid IL or missing references) //IL_1407: Unknown result type (might be due to invalid IL or missing references) //IL_140c: Unknown result type (might be due to invalid IL or missing references) //IL_1412: Unknown result type (might be due to invalid IL or missing references) //IL_1417: Unknown result type (might be due to invalid IL or missing references) //IL_141d: Unknown result type (might be due to invalid IL or missing references) //IL_1422: Unknown result type (might be due to invalid IL or missing references) //IL_142e: Unknown result type (might be due to invalid IL or missing references) //IL_1245: Unknown result type (might be due to invalid IL or missing references) //IL_124b: Unknown result type (might be due to invalid IL or missing references) //IL_1250: Unknown result type (might be due to invalid IL or missing references) //IL_1256: Unknown result type (might be due to invalid IL or missing references) //IL_1260: Unknown result type (might be due to invalid IL or missing references) //IL_1265: Unknown result type (might be due to invalid IL or missing references) //IL_126b: Unknown result type (might be due to invalid IL or missing references) //IL_1275: Unknown result type (might be due to invalid IL or missing references) //IL_127a: Unknown result type (might be due to invalid IL or missing references) //IL_1280: Unknown result type (might be due to invalid IL or missing references) //IL_128a: Unknown result type (might be due to invalid IL or missing references) //IL_128f: Unknown result type (might be due to invalid IL or missing references) //IL_1295: Unknown result type (might be due to invalid IL or missing references) //IL_129a: Unknown result type (might be due to invalid IL or missing references) //IL_12a0: Unknown result type (might be due to invalid IL or missing references) //IL_12a5: Unknown result type (might be due to invalid IL or missing references) //IL_12ab: Unknown result type (might be due to invalid IL or missing references) //IL_12b0: Unknown result type (might be due to invalid IL or missing references) //IL_12bb: Unknown result type (might be due to invalid IL or missing references) //IL_12c1: Unknown result type (might be due to invalid IL or missing references) //IL_12c6: Unknown result type (might be due to invalid IL or missing references) //IL_12cc: Unknown result type (might be due to invalid IL or missing references) //IL_12d6: Unknown result type (might be due to invalid IL or missing references) //IL_12db: Unknown result type (might be due to invalid IL or missing references) //IL_12e1: Unknown result type (might be due to invalid IL or missing references) //IL_12e6: Unknown result type (might be due to invalid IL or missing references) //IL_12ec: Unknown result type (might be due to invalid IL or missing references) //IL_12f6: Unknown result type (might be due to invalid IL or missing references) //IL_12fb: Unknown result type (might be due to invalid IL or missing references) //IL_1301: Unknown result type (might be due to invalid IL or missing references) //IL_130b: Unknown result type (might be due to invalid IL or missing references) //IL_1310: Unknown result type (might be due to invalid IL or missing references) //IL_1316: Unknown result type (might be due to invalid IL or missing references) //IL_131b: Unknown result type (might be due to invalid IL or missing references) //IL_1321: Unknown result type (might be due to invalid IL or missing references) //IL_1326: Unknown result type (might be due to invalid IL or missing references) //IL_1332: Unknown result type (might be due to invalid IL or missing references) //IL_1449: Unknown result type (might be due to invalid IL or missing references) //IL_144e: Unknown result type (might be due to invalid IL or missing references) if (switching || !ledgeSwitchingDetectors.allowLedgeSwitching || !grabbedOn) { return; } if ((!Physics.Linecast(((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + firstSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.8f - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { r1ThirdBackSurfaceDetectorsHit = true; } else { r1ThirdBackSurfaceDetectorsHit = false; r1ThirdBackHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + secondSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.8f - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { r2ThirdBackSurfaceDetectorsHit = true; } else { r2ThirdBackSurfaceDetectorsHit = false; r2ThirdBackHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ref hit, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + surfaceDetectorHeight2, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + thirdSurfaceDetectorWidth2 + surfaceDetectorForward2 + posChange2 + upHeight * 0.8f - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2f + surfaceDetectorWidth2, ref hit, LayerMask.op_Implicit(collisionLayers))) { r3ThirdBackSurfaceDetectorsHit = true; } else { r3ThirdBackSurfaceDetectorsHit = false; r3ThirdBackHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + firstSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) { if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref switchHitPoint)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit) { r1ThirdBackHit = true; } else { r1ThirdBackHit = false; } } else { r1ThirdBackHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + secondSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) { if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref switchHitPoint)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit) { r2ThirdBackHit = true; } else { r2ThirdBackHit = false; } } else { r2ThirdBackHit = false; } if ((!Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers)) && Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 2.2f - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2 + surfaceDetectorHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.3f - surfaceDetectorHeight2 - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) || Physics.Linecast(((Component)this).transform.position + posChange2 + upHeight * 1.5f - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2 + underPlatformMaxSurfaceLevelHeight2, ((Component)this).transform.position + posChange2 + upHeight * 0.8f - ledgeSwitchSurfaceLength / 0.875f + rightWidth * 2.67f + thirdSwitchSurfaceWidth + surfaceDetectorForward2, ref switchHitPoint, LayerMask.op_Implicit(collisionLayers))) { if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref switchHitPoint)).normal.y, -1f, 1f)) * 57.2958f <= ledgeAngleLimit) { r3ThirdBackHit = true; } else { r3ThirdBackHit = false; } } else { r3ThirdBackHit = false; } } private void OnControllerColliderHit(ControllerColliderHit hit) { //IL_002b: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) if (getOn && (climbable || climbPossible)) { playerPosXZ = ((Component)this).transform.position + posChange2; grabbedOn = true; canGrabBackOn = false; } noCollisionTimer = 0f; } private void OnCollisionStay(Collision hit) { //IL_002b: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) if (getOn && (climbable || climbPossible)) { playerPosXZ = ((Component)this).transform.position + posChange2; grabbedOn = true; canGrabBackOn = false; } noCollisionTimer = 0f; } } public class MovingPlatformController_Standalone : MonoBehaviour { public bool allowMovingPlatformSupport = true; public string movingPlatformTag = "Platform"; private float noCollisionWithPlatformTimer; [HideInInspector] public GameObject oldParent; [HideInInspector] public GameObject emptyObject; private GameObject emptyObjectParent; private void Start() { } private void Update() { if (!allowMovingPlatformSupport || !(noCollisionWithPlatformTimer >= 5f) || !((Object)(object)emptyObject != (Object)null)) { return; } if ((Object)(object)((Component)this).transform.parent == (Object)(object)emptyObject.transform) { if ((Object)(object)oldParent != (Object)null) { ((Component)this).transform.parent = oldParent.transform; } else { ((Component)this).transform.parent = null; } } if ((Object)(object)((Component)this).transform.parent != (Object)(object)emptyObject.transform && emptyObject.transform.childCount == 0 && ((Object)(object)((Component)this).transform.parent == (Object)(object)oldParent || (Object)(object)((Component)this).transform.parent == (Object)null)) { ((Component)this).transform.parent = null; if ((Object)(object)((Component)this).transform.parent != (Object)(object)emptyObject.transform) { ((Component)this).transform.parent = null; Object.Destroy((Object)(object)emptyObject); } if ((Object)(object)oldParent != (Object)null) { ((Component)this).transform.parent = oldParent.transform; } else { ((Component)this).transform.parent = null; } } } private void FixedUpdate() { MovingPlatformParenting(); } private void MovingPlatformParenting() { //IL_005b: Unknown result type (might be due to invalid IL or missing references) //IL_0060: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_007e: Unknown result type (might be due to invalid IL or missing references) //IL_0097: Unknown result type (might be due to invalid IL or missing references) //IL_009c: Unknown result type (might be due to invalid IL or missing references) //IL_00a5: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_00ca: Unknown result type (might be due to invalid IL or missing references) //IL_00de: Unknown result type (might be due to invalid IL or missing references) //IL_00e3: Unknown result type (might be due to invalid IL or missing references) //IL_00f8: Unknown result type (might be due to invalid IL or missing references) //IL_00fd: Unknown result type (might be due to invalid IL or missing references) //IL_0107: Unknown result type (might be due to invalid IL or missing references) noCollisionWithPlatformTimer += 1f; if ((Object)(object)emptyObject != (Object)null) { emptyObjectParent = ((Component)emptyObject.transform.parent).gameObject; emptyObject.transform.localScale = new Vector3(1f / emptyObjectParent.transform.localScale.x, 1f / emptyObjectParent.transform.localScale.y, 1f / emptyObjectParent.transform.localScale.z); emptyObject.transform.localRotation = Quaternion.Euler(0f - emptyObjectParent.transform.localRotation.x, 0f - emptyObjectParent.transform.localRotation.y, 0f - emptyObjectParent.transform.localRotation.z); } else { emptyObjectParent = null; } if ((Object)(object)((Component)this).transform.parent == (Object)null) { oldParent = null; } else if ((Object)(object)emptyObject == (Object)null || (Object)(object)((Component)this).transform.parent != (Object)(object)emptyObject.transform) { oldParent = ((Component)((Component)this).transform.parent).gameObject; } else { oldParent = null; } } private void OnControllerColliderHit(ControllerColliderHit hit) { //IL_00a8: Unknown result type (might be due to invalid IL or missing references) //IL_00ad: Unknown result type (might be due to invalid IL or missing references) //IL_00c1: Unknown result type (might be due to invalid IL or missing references) //IL_00c6: Unknown result type (might be due to invalid IL or missing references) //IL_00da: Unknown result type (might be due to invalid IL or missing references) //IL_00df: Unknown result type (might be due to invalid IL or missing references) //IL_00e8: Unknown result type (might be due to invalid IL or missing references) //IL_0103: Unknown result type (might be due to invalid IL or missing references) //IL_0108: Unknown result type (might be due to invalid IL or missing references) //IL_0117: Unknown result type (might be due to invalid IL or missing references) //IL_011c: Unknown result type (might be due to invalid IL or missing references) //IL_012c: Unknown result type (might be due to invalid IL or missing references) //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_013b: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) //IL_0050: Expected O, but got Unknown //IL_0061: Unknown result type (might be due to invalid IL or missing references) if (hit.gameObject.tag == movingPlatformTag && allowMovingPlatformSupport) { noCollisionWithPlatformTimer = 0f; if ((Object)(object)emptyObject == (Object)null) { emptyObject = new GameObject(); emptyObject.transform.position = hit.transform.position; } ((Object)emptyObject).name = "PlatformPlayerConnector"; emptyObject.transform.parent = hit.transform; emptyObject.transform.localScale = new Vector3(1f / hit.transform.localScale.x, 1f / hit.transform.localScale.y, 1f / hit.transform.localScale.z); emptyObject.transform.localRotation = Quaternion.Euler(0f - hit.transform.localRotation.x, 0f - hit.transform.localRotation.y, 0f - hit.transform.localRotation.z); ((Component)this).transform.parent = emptyObject.transform; } } private void OnCollisionStay(Collision hit) { //IL_00a8: Unknown result type (might be due to invalid IL or missing references) //IL_00ad: Unknown result type (might be due to invalid IL or missing references) //IL_00c1: Unknown result type (might be due to invalid IL or missing references) //IL_00c6: Unknown result type (might be due to invalid IL or missing references) //IL_00da: Unknown result type (might be due to invalid IL or missing references) //IL_00df: Unknown result type (might be due to invalid IL or missing references) //IL_00e8: Unknown result type (might be due to invalid IL or missing references) //IL_0103: Unknown result type (might be due to invalid IL or missing references) //IL_0108: Unknown result type (might be due to invalid IL or missing references) //IL_0117: Unknown result type (might be due to invalid IL or missing references) //IL_011c: Unknown result type (might be due to invalid IL or missing references) //IL_012c: Unknown result type (might be due to invalid IL or missing references) //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_013b: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) //IL_0050: Expected O, but got Unknown //IL_0061: Unknown result type (might be due to invalid IL or missing references) if (hit.gameObject.tag == movingPlatformTag && allowMovingPlatformSupport) { noCollisionWithPlatformTimer = 0f; if ((Object)(object)emptyObject == (Object)null) { emptyObject = new GameObject(); emptyObject.transform.position = hit.transform.position; } ((Object)emptyObject).name = "PlatformPlayerConnector"; emptyObject.transform.parent = hit.transform; emptyObject.transform.localScale = new Vector3(1f / hit.transform.localScale.x, 1f / hit.transform.localScale.y, 1f / hit.transform.localScale.z); emptyObject.transform.localRotation = Quaternion.Euler(0f - hit.transform.localRotation.x, 0f - hit.transform.localRotation.y, 0f - hit.transform.localRotation.z); ((Component)this).transform.parent = emptyObject.transform; } } private void OnTriggerStay(Collider hit) { //IL_00a8: Unknown result type (might be due to invalid IL or missing references) //IL_00ad: Unknown result type (might be due to invalid IL or missing references) //IL_00c1: Unknown result type (might be due to invalid IL or missing references) //IL_00c6: Unknown result type (might be due to invalid IL or missing references) //IL_00da: Unknown result type (might be due to invalid IL or missing references) //IL_00df: Unknown result type (might be due to invalid IL or missing references) //IL_00e8: Unknown result type (might be due to invalid IL or missing references) //IL_0103: Unknown result type (might be due to invalid IL or missing references) //IL_0108: Unknown result type (might be due to invalid IL or missing references) //IL_0117: Unknown result type (might be due to invalid IL or missing references) //IL_011c: Unknown result type (might be due to invalid IL or missing references) //IL_012c: Unknown result type (might be due to invalid IL or missing references) //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_013b: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) //IL_0050: Expected O, but got Unknown //IL_0061: Unknown result type (might be due to invalid IL or missing references) if (((Component)hit).gameObject.tag == movingPlatformTag && allowMovingPlatformSupport) { noCollisionWithPlatformTimer = 0f; if ((Object)(object)emptyObject == (Object)null) { emptyObject = new GameObject(); emptyObject.transform.position = ((Component)hit).transform.position; } ((Object)emptyObject).name = "PlatformPlayerConnector"; emptyObject.transform.parent = ((Component)hit).transform; emptyObject.transform.localScale = new Vector3(1f / ((Component)hit).transform.localScale.x, 1f / ((Component)hit).transform.localScale.y, 1f / ((Component)hit).transform.localScale.z); emptyObject.transform.localRotation = Quaternion.Euler(0f - ((Component)hit).transform.localRotation.x, 0f - ((Component)hit).transform.localRotation.y, 0f - ((Component)hit).transform.localRotation.z); ((Component)this).transform.parent = emptyObject.transform; } } } public class PlayerController : MonoBehaviour { [Serializable] public class Grounded { public bool showGroundDetectionRays; public float maxGroundedHeight = 0.2f; public float maxGroundedRadius = 0.2f; public float maxGroundedDistance = 0.2f; public bool currentlyGrounded; } [Serializable] public class Movement { [Serializable] public class Running { public bool useRunningButton = false; public string runInputButton = "Fire3"; public float runSpeedMultiple = 1.3f; } [Serializable] public class Crouching { public bool allowCrouching = true; public float crouchMovementSpeedMultiple = 0.4f; public float crouchColliderHeightMultiple = 0.7f; } [Serializable] public class SideScrolling { public float movementSpeedIfAxisLocked = 6f; public bool lockMovementOnZAxis = false; public float zValue = 0f; public bool lockMovementOnXAxis = false; public float xValue = 0f; public bool flipAxisRotation = false; public bool rotateInwards = true; } [Serializable] public class FirstPerson { public bool useCameraControllerSettingsIfPossible = true; public bool alwaysUseFirstPerson = false; public bool switchToFirstPersonIfInputButtonPressed = false; public string firstPersonInputButton = "Fire3"; public bool startOffInFirstPersonModeForSwitching = false; public bool walkBackwardsWhenDownKeyIsPressed = true; public bool onlyRotateWithCamera = true; } public float forwardSpeed = 6f; public float sideSpeed = 4f; public float backSpeed = 5f; public Running running = new Running(); public Crouching crouching = new Crouching(); public float midAirMovementSpeedMultiple = 1.1f; public float acceleration = 50f; public float movementFriction = 0f; public float rotationSpeed = 8f; public float midAirRotationSpeedMultiple = 1f; public float slopeSlideSpeed = 1f; public float slideFriction = 4f; public bool hardStickToGround = false; public SideScrolling sideScrolling = new SideScrolling(); public FirstPerson firstPerson = new FirstPerson(); } [Serializable] public class Jumping { public float[] numberAndHeightOfJumps = new float[3] { 6f, 8f, 12f }; public float timeLimitBetweenJumps = 1f; public bool allowJumpWhenSlidingFacingUphill = false; public bool allowJumpWhenSlidingFacingDownhill = true; public bool doNotIncreaseJumpNumberWhenSliding = true; public GameObject jumpLandingEffect; public bool allowDoubleJump = true; public bool allowEndlessDoubleJump = true; public bool doubleJumpPerformableOutOfWallJump = true; public bool doubleJumpPerformableIfInMidAirInGeneral = true; public float doubleJumpHeight = 7f; public GameObject doubleJumpEffect; public float maxFallingSpeed = 90f; } [Serializable] public class WallJumping { public bool allowWallJumping = true; public float minimumWallAngle = 80f; public float wallJumpDistance = 6f; public float wallJumpHeight = 10f; public float wallJumpDecelerationRate = 2f; public float overallMovementSpeed = 2f; public float forwardMovementSpeedMultiple = 0.85f; public float sideMovementSpeedMultiple = 0.85f; public float backMovementSpeedMultiple = 0.75f; public float rotationSpeedMultiple = 0f; public float distanceToKeepFromWallWhenOnWall = 1f; public bool useWallJumpTimeLimit = true; public float wallJumpTimeLimit = 2f; public bool slideDownWalls = true; public float slideDownSpeed = 8f; public float rotationToWallSpeed = 6f; public float inputPercentageNeededToWallJump = 50f; public bool showWallJumpDetectors = false; public float spaceOnWallNeededToWallJumpUpAmount = 0f; public float spaceOnWallNeededToWallJumpHeight = 0f; public float spaceOnWallNeededToWallJumpLength = 0f; public float spaceOnWallNeededToWallJumpWidth = 0f; public float spaceBelowNeededToWallJump = 0f; } [Serializable] public class Attacking { [Serializable] public class Ground { [Serializable] public class WaitingBeforeAttackingAgain { public float waitingTime = 0.2f; public bool waitForAnimationToFinish = false; } public float[] numberAndStrengthOfAttacks = new float[3] { 1f, 1f, 2f }; public float comboTimeLimit = 0.5f; public bool rememberAttackButtonPresses = false; public WaitingBeforeAttackingAgain waitingBeforeAttackingAgain = new WaitingBeforeAttackingAgain(); } [Serializable] public class Crouch { public bool allowCrouchAttack = true; public float crouchAttackStrength = 1f; public float timeLimitBetweenCrouchAttacks = 0.5f; } [Serializable] public class Air { [Serializable] public class WaitingBeforeAttackingAgain { public float waitingTime = 0.2f; public bool waitForAnimationToFinish = false; } public float[] numberAndStrengthOfMidAirAttacks = new float[1] { 1f }; public bool onlyAllowAttackOnceInMidAir = true; public float comboTimeLimit = 0.5f; public bool rememberAttackButtonPresses = false; public WaitingBeforeAttackingAgain waitingBeforeAttackingAgain = new WaitingBeforeAttackingAgain(); } public Ground ground = new Ground(); public Crouch crouch = new Crouch(); public Air air = new Air(); public string attackInputButton = "Fire1"; } [Serializable] public class Climbing { [Serializable] public class WalkingOffOfClimbableSurface { public bool allowGrabbingOnAfterWalkingOffLedge = true; public bool showWalkingOffLedgeRays = false; public float spaceInFrontNeededToGrabBackOn = 0f; public float spaceBelowNeededToGrabBackOnHeight = 0f; public float spaceBelowNeededToGrabBackOnForward = 0f; public float firstSideLedgeDetectorsHeight = 0f; public float secondSideLedgeDetectorsHeight = 0f; public float thirdSideLedgeDetectorsHeight = 0f; public float sideLedgeDetectorsWidth = 0f; public float sideLedgeDetectorsLength = 0f; public float grabBackOnLocationHeight = 0f; public float grabBackOnLocationWidth = 0f; public float grabBackOnLocationForward = 0f; } public string climbableTag = "Ladder"; public bool climbVertically = true; public bool climbHorizontally = false; public float climbMovementSpeed = 4f; public float climbRotationSpeed = 10f; public bool snapToCenterOfObject = true; public bool moveInBursts = true; public float burstLength = 1f; public bool stayUpright = false; public float distanceToPushOffAfterLettingGo = 0.5f; public float rotationToClimbableObjectSpeed = 6f; public bool showClimbingDetectors = false; public float climbingSurfaceDetectorsUpAmount = 0f; public float climbingSurfaceDetectorsHeight = 0f; public float climbingSurfaceDetectorsLength = 0f; public bool showEdgeOfObjectDetctors = false; public float topNoSurfaceDetectorHeight = 0f; public float bottomNoSurfaceDetectorHeight = 0f; public float topAndBottomNoSurfaceDetectorsWidth = 0f; public float sideNoSurfaceDetectorsHeight = 0f; public float sideNoSurfaceDetectorsWidth = 0f; public bool stopAtSides = true; public bool dropOffAtBottom = false; public bool dropOffAtFloor = true; public bool pullUpAtTop = true; public float pullUpSpeed = 4f; public bool showPullUpDetector = false; public float pullUpLocationForward = 0f; public WalkingOffOfClimbableSurface walkingOffOfClimbableSurface = new WalkingOffOfClimbableSurface(); public string[] scriptsToEnableOnGrab; public string[] scriptsToDisableOnGrab = new string[1] { "LedgeClimbController" }; public bool pushAgainstWallIfPlayerIsStuck = true; } [Serializable] public class Swimming { [Serializable] public class FirstPerson { [Serializable] public class RotationLimitsIfMovementIsNotAllowed { public int yMinLimit = -68; public int yMaxLimit = 68; public int xMinLimit = -68; public int xMaxLimit = 68; } public bool allowMovement = true; public bool allowShiftingWithJoystick = true; public float joystickMovementSpeed = 4f; public float joystickDecelerationSpeed = 3f; public float cameraAngleOffset = 0f; public RotationLimitsIfMovementIsNotAllowed rotationLimitsIfMovementIsNotAllowed = new RotationLimitsIfMovementIsNotAllowed(); } public bool allowSwimming = true; public float swimMovementSpeed = 6f; public float accelerationRate = 6f; public float decelerationRate = 4f; public float swimRotationSpeed = 6f; public int ySwimmingRotationMaxLimit = 70; public int ySwimmingRotationMinLimit = -80; public int yIdleRotationMaxLimit = 40; public int yIdleRotationMinLimit = -50; public Vector3 idleFloatingDirection = new Vector3(0f, 0.2f, 0f); public bool invertXRotation = false; public bool invertYRotation = false; public float angleNeededToJumpOut = 39f; public float jumpInHeight = 0f; public float jumpOutHeight = 0f; public float walkOutHeight = 0f; public bool allowColliderRotationByUsingRigidbody = true; public FirstPerson firstPerson = new FirstPerson(); public string[] scriptsToEnableOnEnter; public string[] scriptsToDisableOnEnter = new string[1] { "LedgeClimbController" }; public GameObject splashEffect; } [Serializable] public class MovingPlatforms { public bool allowMovingPlatformSupport = true; public string movingPlatformTag = "Platform"; } public Transform playerCamera; public float gravity = 20f; public float slopeLimit = 25f; public Grounded grounded = new Grounded(); public Movement movement = new Movement(); public Jumping jumping = new Jumping(); public WallJumping wallJumping = new WallJumping(); public Attacking attacking = new Attacking(); public Climbing[] climbing = new Climbing[1]; public Swimming swimming = new Swimming(); public MovingPlatforms movingPlatforms = new MovingPlatforms(); private Vector3 maxGroundedHeight2; private float maxGroundedRadius2; private float maxGroundedDistance2; private Vector3 maxGroundedDistanceDown; private float forwardSpeed2; private float sideSpeed2; private float backSpeed2; private float midAirMovementSpeedMultiple2; private float acceleration2; private float rotationSpeed2; private float slopeSlideSpeed2; private float[] jumpsToPerform; private bool allowDoubleJump2; private bool doubleJumpPerformableIfInMidAirInGeneral2; private float doubleJumpHeight2; private float timeLimitBetweenJumps2; private float maxFallingSpeed2; private GameObject jumpLandingEffect2; private GameObject doubleJumpEffect2; private Vector3 spaceOnWallNeededToWallJumpUpAmount2; private float spaceOnWallNeededToWallJumpHeight2; private float spaceOnWallNeededToWallJumpLength2; private float spaceOnWallNeededToWallJumpWidth2; private Vector3 spaceBelowNeededToWallJump2; [NonSerialized] public float[] attacksToPerform; private float comboTimeLimitGround; private float comboTimeLimitAir; private bool rememberAttackButtonPressesGround; private bool rememberAttackButtonPressesAir; private Vector3 climbingSurfaceDetectorsUpAmount2; private float climbingSurfaceDetectorsHeight2; private float climbingSurfaceDetectorsLength2; private float distanceToPushOffAfterLettingGo2; private float rotationToClimbableObjectSpeed2; private bool climbHorizontally2; private bool climbVertically2; private float climbMovementSpeed2; private float climbRotationSpeed2; private bool moveInBursts; private float burstLength; [HideInInspector] public string climbableTag2; private bool stayUpright2; private bool snapToCenterOfObject2; private Vector3 bottomNoSurfaceDetectorHeight2; private Vector3 topNoSurfaceDetectorHeight2; private Vector3 topAndBottomNoSurfaceDetectorsWidth2; private float sideNoSurfaceDetectorsHeight2; private Vector3 sideNoSurfaceDetectorsWidth2; private float sideNoSurfaceDetectorsWidthTurnBack2; private bool stopAtSides2; private bool dropOffAtBottom2; private bool dropOffAtFloor2; private bool pullUpAtTop2; private float pullUpSpeed; private Vector3 pullUpLocationForward2; private bool pushAgainstWallIfPlayerIsStuck2; private bool allowGrabbingOnAfterWalkingOffLedge2; private Vector3 spaceInFrontNeededToGrabBackOn2; private Vector3 spaceBelowNeededToGrabBackOnHeight2; private Vector3 spaceBelowNeededToGrabBackOnForward2; private Vector3 firstSideLedgeDetectorsHeight2; private Vector3 secondSideLedgeDetectorsHeight2; private Vector3 thirdSideLedgeDetectorsHeight2; private Vector3 sideLedgeDetectorsWidth2; private Vector3 sideLedgeDetectorsLength2; private bool showClimbingDetectors3; private Vector3 climbingSurfaceDetectorsUpAmount3; private float climbingSurfaceDetectorsHeight3; private float climbingSurfaceDetectorsLength3; private bool showEdgeOfObjectDetctors3; private Vector3 bottomNoSurfaceDetectorHeight3; private Vector3 topNoSurfaceDetectorHeight3; private Vector3 topAndBottomNoSurfaceDetectorsWidth3; private float sideNoSurfaceDetectorsHeight3; private Vector3 sideNoSurfaceDetectorsWidth3; private bool showPullUpDetector3; private Vector3 pullUpLocationForward3; private bool showWalkingOffLedgeRays3; private Vector3 spaceInFrontNeededToGrabBackOn3; private Vector3 firstSideLedgeDetectorsHeight3; private Vector3 secondSideLedgeDetectorsHeight3; private Vector3 thirdSideLedgeDetectorsHeight3; private Vector3 sideLedgeDetectorsWidth3; private Vector3 sideLedgeDetectorsLength3; private Vector3 spaceBelowNeededToGrabBackOnHeight3; private Vector3 spaceBelowNeededToGrabBackOnForward3; private Vector3 grabBackOnLocationHeight3; private Vector3 grabBackOnLocationWidth3; private Vector3 grabBackOnLocationForward3; private bool allowMovingPlatformSupport; private string movingPlatformTag; private float jumpInHeight2; private float jumpOutHeight2; private Vector3 moveDirection; private float moveSpeed; private float moveSpeedAndFriction; private float runSpeedMultiplier; private float accelerationRate; private float deceleration = 1f; private float decelerationRate; private float h; private float v; private Vector3 directionVector; private bool inBetweenSlidableSurfaces; private bool uphill; private bool angHit; private float collisionSlopeAngle; private float raycastSlopeAngle; private float slidingAngle; private bool slidePossible; private bool sliding; private float slideSpeed = 6f; private Vector3 slidingVector; private Vector3 slideMovement; [HideInInspector] public float bodyRotation; private bool touchingWall; private bool middleTouchingWall; private bool leftTouchingWall; private bool rightTouchingWall; private bool pushingThroughWall; private bool collidingWithWall; private bool inCorner; private float updateFrame = 2f; private bool canCrouch; [HideInInspector] public bool crouching; [HideInInspector] public bool crouchCancelsAttack; private bool finishedCrouching; private float originalColliderY; private float originalColliderHeight; private bool colliderAdjusted; private float oldYPos; private Vector3 feetPosition; private Vector3 headPosition; private float feetPositionNew; private float headPositionNew; [HideInInspector] public Vector3 colliderBottom; [HideInInspector] public Vector3 colliderTop; [HideInInspector] public Vector3 colliderBottom2; [HideInInspector] public Vector3 colliderTop2; private Vector3 colliderLeft; private Vector3 colliderRight; private Vector3 colliderLeft2; private Vector3 colliderRight2; private Vector3 colliderLeftLonger; private Vector3 colliderRightLonger; private Vector3 colliderLeftLonger2; private Vector3 colliderRightLonger2; private Vector3 colliderBack; private Vector3 colliderFront; private Vector3 colliderBackLonger; private Vector3 colliderFrontLonger; private Vector3 colliderFrontLonger2; private bool colliderInWall; [HideInInspector] public bool canCrouchToAction; [HideInInspector] public bool firstPersonButtonPressed; [HideInInspector] public bool firstPersonStart; [HideInInspector] public bool inFirstPersonMode; private bool enabledLastUpdate; private int currentJumpNumber; private int totalJumpNumber; private float airSpeed; private float jumpTimer; private float jumpPerformedTime; private bool inMidAirFromJump; private bool jumpEnabled; private bool jumpPossible; private bool doubleJumpPossible = true; private bool jumpPressed; private float jumpPressedTimer; private bool jumpPerformed; private bool headHit; private float yPos; private float yVel; private Vector3 pos; private Vector3 contactPoint; private float noCollisionTimer; [NonSerialized] public int attackState; [NonSerialized] public int currentAttackNumber; [NonSerialized] public int totalAttackNumber; private int attackPressesRemembered; private float attackPressedTimer; private bool attackPressed; private bool attackButtonPressed; [NonSerialized] public float attackTimer; private bool attackFinished; [HideInInspector] public bool attackFinishedLastUpdate; private float waitingBetweenAttacksTimerGround; private float waitingBetweenAttacksTimerAir; private float attackPerformedTime; private bool canAttack; private bool attackedInMidAir; [HideInInspector] public bool currentlyOnWall; private bool onWallLastUpdate; [HideInInspector] public bool turningToWall; private bool middleWallJumpable; private bool leftWallJumpable; private bool rightWallJumpable; private Vector3 wallNormal; private Vector3 wallHitPoint; private float forwardDir; private float rightDir; private float originalForwardDir; private float originalRightDir; private bool jumpedOffWallForWallJump; private Vector3 originalWallJumpDirection; private Vector3 wallJumpDirection; private float angleBetweenPlayerAndWall; private bool wallBackHit; private float distFromWall; private float firstDistFromWall; private bool inMidAirFromWallJump; private float wallJumpTimer; private float slideDownSpeed2; private bool onWallAnimation; private bool rbUsesGravity; private bool canChangeRbGravity; [HideInInspector] public bool currentlyClimbingWall = false; [HideInInspector] public bool wallIsClimbable; [HideInInspector] public bool climbableWallInFront; private bool wallInFront; [HideInInspector] public bool finishedRotatingToWall; private float jumpedOffClimbableObjectTimer = 1f; private Vector3 jumpedOffClimbableObjectDirection; private Vector3 climbDirection; private bool downCanBePressed; private bool climbedUpAlready; private Vector3 colCenter; private Vector3 colTop; private bool aboveTop; private bool reachedTopPoint = false; private bool reachedBottomPoint = false; private bool reachedRightPoint = false; private bool reachedLeftPoint = false; private float climbingMovement; private bool beginClimbBurst; private bool switchedDirection; private float lastAxis; private float horizontalClimbSpeed; private float verticalClimbSpeed; private float arm; private Vector3 centerPoint; private float snapTimer = 1f; private bool snappingToCenter; private bool startedClimbing; private bool firstTest; private bool secondTest; private bool thirdTest; private bool fourthTest; [HideInInspector] public bool fifthTest; private int i = 0; private int tagNum; [HideInInspector] public bool turnBack = false; private float turnBackTimer = 0f; private bool turnBackMiddle = true; private bool turnBackLeft; private bool turnBackRight; [HideInInspector] public bool back2 = false; private Vector3 backPoint; private Vector3 turnBackPoint; private Quaternion backRotation; private Quaternion normalRotation; private Vector3 playerPosXZ; private float playerPosY; private bool pullingUp; private float pullingUpTimer; private bool pullUpLocationAcquired; private bool movingToPullUpLocation; private Vector3 movementVector; private Vector3 hitPoint; private bool animatePullingUp; [HideInInspector] public Vector3 rotationHit; private Quaternion rotationNormal; private float rotationState; private bool hasNotMovedOnWallYet; private Quaternion lastRot3; private bool axisChanged; private float horizontalAxis; private float climbingHeight; private float lastYPosOnWall; [HideInInspector] public float horizontalValue = 1f; private Vector3 lastPos; private Quaternion lastRot2; private float distFromWallWhenStuck; private float firstDistFromWallWhenStuck; private bool stuckInSamePos; private bool stuckInSamePosNoCol; private string[] wallScriptsToEnableOnGrab; private MonoBehaviour wallScriptToEnable; private string[] wallScriptsToDisableOnGrab; private MonoBehaviour wallScriptToDisable; private bool currentlyEnablingAndDisablingWallScripts = false; private bool wallScriptWarning = false; private bool onWallScriptsFinished = false; [HideInInspector] public bool inWater; private float inWaterTimer = 5f; [HideInInspector] public float outOfWaterTimer = 5f; [HideInInspector] public float currentHeadPosition; [HideInInspector] public float currentFeetPosition; private float rbHeadPositionOriginal; private float rbFeetPositionOriginal; private float rbHeadPositionInWater; private float rbFeetPositionInWater; [HideInInspector] public float rbHeadPositionInWater2; [HideInInspector] public float rbFeetPositionInWater2; private Vector3 boundMin1; private Vector3 boundMax1; private Vector3 boundMin2; private Vector3 boundMax2; private bool submergedEnough; private bool submergedOnceAlready; private bool canPressSwimButton; private bool swimButtonPressed; private bool reachedTopOfWater; private bool atJumpHeight; private bool stillAtTop; private bool groundedAfterSwimming; private bool notInWaterCollider; private float inWaterPosY; private Vector3 lastPosBeforeCollision; private Vector3 lastRotBeforeCollision; [HideInInspector] public float xDeg = 0f; [HideInInspector] public float yDeg = 0f; private float xDeg2 = 0f; private bool yDegIsLessThan92; private float swimHorizontalValue = 1f; private bool axisNotPushedLeftOrRight; private bool hPositive = true; private bool vPositive = true; private float hAxis; private float vAxis; private float hAxis2; private float vAxis2; private float horizontalRotValue = 0f; private float verticalRotValue = 0f; private float cameraYDeg; private float cameraYDeg2; private float cameraYDeg3; private float rotDiff; private bool rotDiffSet; private float yRotMinLimit; private float yRotMaxLimit; private Quaternion swimRotation; private bool canJumpOut; [HideInInspector] public float noCollisionWithWaterTimer = 5f; private float noCollisionWithWaterSplashTimer = 5f; private bool collidingWithWater; private float ranThroughUpdateCount = 0f; private Vector3 swimDirection; private float swimmingMovementSpeed; private bool swimmingMovementTransferred = true; private float swimState = 0f; private bool donePulling; private bool justSwitchedToSwimming; private bool heldSwimButtonOnEnter; private string[] swimScriptsToEnableOnEnter; private MonoBehaviour swimScriptToEnable; private string[] swimScriptsToDisableOnEnter; private MonoBehaviour swimScriptToDisable; private bool currentlyEnablingAndDisablingSwimScripts = false; private bool swimScriptWarning = false; private bool swimScriptsFinished = false; private bool playerUsesCC; private bool canChangeCC; private float noCollisionWithPlatformTimer; [HideInInspector] public GameObject oldParent; [HideInInspector] public GameObject emptyObject; private GameObject emptyObjectParent; private RaycastHit hit = default(RaycastHit); private RaycastHit frontHit = default(RaycastHit); private RaycastHit backHit = default(RaycastHit); private Animator animator; private CharacterController characterController; private Rigidbody rigidBody; public LayerMask collisionLayers = LayerMask.op_Implicit(-5); private LayerMask noWaterCollisionLayers = LayerMask.op_Implicit(-21); private void Start() { if (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Collider)((Component)this).GetComponent()).enabled) { characterController = ((Component)this).GetComponent(); rigidBody = null; } else if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { rigidBody = ((Component)this).GetComponent(); characterController = null; } StartUp(); waitingBetweenAttacksTimerGround = attacking.ground.waitingBeforeAttackingAgain.waitingTime; waitingBetweenAttacksTimerAir = attacking.air.waitingBeforeAttackingAgain.waitingTime; if (movement.firstPerson.switchToFirstPersonIfInputButtonPressed && movement.firstPerson.startOffInFirstPersonModeForSwitching && (!Object.op_Implicit((Object)(object)((Component)playerCamera).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)playerCamera).GetComponent()) && !((Component)playerCamera).GetComponent().mouseOrbit.startOffMouseOrbitingForSwitching))) { firstPersonStart = true; firstPersonButtonPressed = true; } yRotMinLimit = swimming.yIdleRotationMinLimit; yRotMaxLimit = swimming.yIdleRotationMaxLimit; if (Object.op_Implicit((Object)(object)rigidBody) && rigidBody.useGravity && !currentlyOnWall && !currentlyClimbingWall && !turnBack && !back2 && !inWater) { rbUsesGravity = true; } if (Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled) { playerUsesCC = true; } } private void StartUp() { ((Behaviour)this).enabled = false; ((Behaviour)this).enabled = true; } private void Update() { //IL_0100: Unknown result type (might be due to invalid IL or missing references) //IL_0110: Unknown result type (might be due to invalid IL or missing references) //IL_0115: Unknown result type (might be due to invalid IL or missing references) //IL_0143: Unknown result type (might be due to invalid IL or missing references) //IL_0153: Unknown result type (might be due to invalid IL or missing references) //IL_0158: Unknown result type (might be due to invalid IL or missing references) //IL_0271: Unknown result type (might be due to invalid IL or missing references) //IL_0281: Unknown result type (might be due to invalid IL or missing references) //IL_0286: Unknown result type (might be due to invalid IL or missing references) //IL_02cb: Unknown result type (might be due to invalid IL or missing references) //IL_02db: Unknown result type (might be due to invalid IL or missing references) //IL_02e0: Unknown result type (might be due to invalid IL or missing references) //IL_00d5: Unknown result type (might be due to invalid IL or missing references) //IL_00da: Unknown result type (might be due to invalid IL or missing references) //IL_00e7: Unknown result type (might be due to invalid IL or missing references) //IL_03fc: Unknown result type (might be due to invalid IL or missing references) //IL_0401: Unknown result type (might be due to invalid IL or missing references) //IL_0412: Unknown result type (might be due to invalid IL or missing references) //IL_0417: Unknown result type (might be due to invalid IL or missing references) //IL_041a: Unknown result type (might be due to invalid IL or missing references) //IL_041f: Unknown result type (might be due to invalid IL or missing references) //IL_0449: Unknown result type (might be due to invalid IL or missing references) //IL_044f: Unknown result type (might be due to invalid IL or missing references) //IL_0454: Unknown result type (might be due to invalid IL or missing references) //IL_045f: Unknown result type (might be due to invalid IL or missing references) //IL_0465: Unknown result type (might be due to invalid IL or missing references) //IL_046a: Unknown result type (might be due to invalid IL or missing references) //IL_0475: Unknown result type (might be due to invalid IL or missing references) //IL_0486: Unknown result type (might be due to invalid IL or missing references) //IL_048b: Unknown result type (might be due to invalid IL or missing references) //IL_0490: Unknown result type (might be due to invalid IL or missing references) //IL_04a0: Unknown result type (might be due to invalid IL or missing references) //IL_04a6: Unknown result type (might be due to invalid IL or missing references) //IL_04ab: Unknown result type (might be due to invalid IL or missing references) //IL_04b6: Unknown result type (might be due to invalid IL or missing references) //IL_04c7: Unknown result type (might be due to invalid IL or missing references) //IL_04d1: Unknown result type (might be due to invalid IL or missing references) //IL_04d6: Unknown result type (might be due to invalid IL or missing references) //IL_04e1: Unknown result type (might be due to invalid IL or missing references) //IL_04e7: Unknown result type (might be due to invalid IL or missing references) //IL_04ec: Unknown result type (might be due to invalid IL or missing references) //IL_04f7: Unknown result type (might be due to invalid IL or missing references) //IL_0508: Unknown result type (might be due to invalid IL or missing references) //IL_050d: Unknown result type (might be due to invalid IL or missing references) //IL_0518: Unknown result type (might be due to invalid IL or missing references) //IL_0529: Unknown result type (might be due to invalid IL or missing references) //IL_0533: Unknown result type (might be due to invalid IL or missing references) //IL_0538: Unknown result type (might be due to invalid IL or missing references) //IL_053d: Unknown result type (might be due to invalid IL or missing references) //IL_054d: Unknown result type (might be due to invalid IL or missing references) //IL_0553: Unknown result type (might be due to invalid IL or missing references) //IL_0558: Unknown result type (might be due to invalid IL or missing references) //IL_0563: Unknown result type (might be due to invalid IL or missing references) //IL_0574: Unknown result type (might be due to invalid IL or missing references) //IL_057e: Unknown result type (might be due to invalid IL or missing references) //IL_0583: Unknown result type (might be due to invalid IL or missing references) //IL_058e: Unknown result type (might be due to invalid IL or missing references) //IL_0594: Unknown result type (might be due to invalid IL or missing references) //IL_0599: Unknown result type (might be due to invalid IL or missing references) //IL_05a4: Unknown result type (might be due to invalid IL or missing references) //IL_05b5: Unknown result type (might be due to invalid IL or missing references) //IL_05ba: Unknown result type (might be due to invalid IL or missing references) //IL_05c5: Unknown result type (might be due to invalid IL or missing references) //IL_05d6: Unknown result type (might be due to invalid IL or missing references) //IL_05e0: Unknown result type (might be due to invalid IL or missing references) //IL_05e5: Unknown result type (might be due to invalid IL or missing references) //IL_05ea: Unknown result type (might be due to invalid IL or missing references) //IL_05fa: Unknown result type (might be due to invalid IL or missing references) //IL_0600: Unknown result type (might be due to invalid IL or missing references) //IL_0605: Unknown result type (might be due to invalid IL or missing references) //IL_0610: Unknown result type (might be due to invalid IL or missing references) //IL_0621: Unknown result type (might be due to invalid IL or missing references) //IL_062b: Unknown result type (might be due to invalid IL or missing references) //IL_0630: Unknown result type (might be due to invalid IL or missing references) //IL_063b: Unknown result type (might be due to invalid IL or missing references) //IL_0641: Unknown result type (might be due to invalid IL or missing references) //IL_0646: Unknown result type (might be due to invalid IL or missing references) //IL_0651: Unknown result type (might be due to invalid IL or missing references) //IL_0662: Unknown result type (might be due to invalid IL or missing references) //IL_0667: Unknown result type (might be due to invalid IL or missing references) //IL_0672: Unknown result type (might be due to invalid IL or missing references) //IL_0683: Unknown result type (might be due to invalid IL or missing references) //IL_068d: Unknown result type (might be due to invalid IL or missing references) //IL_0692: Unknown result type (might be due to invalid IL or missing references) //IL_0697: Unknown result type (might be due to invalid IL or missing references) //IL_06a7: Unknown result type (might be due to invalid IL or missing references) //IL_06ad: Unknown result type (might be due to invalid IL or missing references) //IL_06b2: Unknown result type (might be due to invalid IL or missing references) //IL_06bd: Unknown result type (might be due to invalid IL or missing references) //IL_06ce: Unknown result type (might be due to invalid IL or missing references) //IL_06d8: Unknown result type (might be due to invalid IL or missing references) //IL_06dd: Unknown result type (might be due to invalid IL or missing references) //IL_06e8: Unknown result type (might be due to invalid IL or missing references) //IL_06ee: Unknown result type (might be due to invalid IL or missing references) //IL_06f3: Unknown result type (might be due to invalid IL or missing references) //IL_06fe: Unknown result type (might be due to invalid IL or missing references) //IL_070f: Unknown result type (might be due to invalid IL or missing references) //IL_0714: Unknown result type (might be due to invalid IL or missing references) //IL_071f: Unknown result type (might be due to invalid IL or missing references) //IL_0730: Unknown result type (might be due to invalid IL or missing references) //IL_073a: Unknown result type (might be due to invalid IL or missing references) //IL_073f: Unknown result type (might be due to invalid IL or missing references) //IL_0744: Unknown result type (might be due to invalid IL or missing references) //IL_0754: Unknown result type (might be due to invalid IL or missing references) //IL_075a: Unknown result type (might be due to invalid IL or missing references) //IL_075f: Unknown result type (might be due to invalid IL or missing references) //IL_076a: Unknown result type (might be due to invalid IL or missing references) //IL_077b: Unknown result type (might be due to invalid IL or missing references) //IL_0785: Unknown result type (might be due to invalid IL or missing references) //IL_078a: Unknown result type (might be due to invalid IL or missing references) //IL_0795: Unknown result type (might be due to invalid IL or missing references) //IL_079b: Unknown result type (might be due to invalid IL or missing references) //IL_07a0: Unknown result type (might be due to invalid IL or missing references) //IL_07ab: Unknown result type (might be due to invalid IL or missing references) //IL_07bc: Unknown result type (might be due to invalid IL or missing references) //IL_07c1: Unknown result type (might be due to invalid IL or missing references) //IL_07cc: Unknown result type (might be due to invalid IL or missing references) //IL_07dd: Unknown result type (might be due to invalid IL or missing references) //IL_07e7: Unknown result type (might be due to invalid IL or missing references) //IL_07ec: Unknown result type (might be due to invalid IL or missing references) //IL_07f1: Unknown result type (might be due to invalid IL or missing references) //IL_0801: Unknown result type (might be due to invalid IL or missing references) //IL_0807: Unknown result type (might be due to invalid IL or missing references) //IL_080c: Unknown result type (might be due to invalid IL or missing references) //IL_0817: Unknown result type (might be due to invalid IL or missing references) //IL_0828: Unknown result type (might be due to invalid IL or missing references) //IL_0832: Unknown result type (might be due to invalid IL or missing references) //IL_0837: Unknown result type (might be due to invalid IL or missing references) //IL_0842: Unknown result type (might be due to invalid IL or missing references) //IL_0848: Unknown result type (might be due to invalid IL or missing references) //IL_084d: Unknown result type (might be due to invalid IL or missing references) //IL_0858: Unknown result type (might be due to invalid IL or missing references) //IL_0869: Unknown result type (might be due to invalid IL or missing references) //IL_086e: Unknown result type (might be due to invalid IL or missing references) //IL_0879: Unknown result type (might be due to invalid IL or missing references) //IL_088a: Unknown result type (might be due to invalid IL or missing references) //IL_0894: Unknown result type (might be due to invalid IL or missing references) //IL_0899: Unknown result type (might be due to invalid IL or missing references) //IL_089e: Unknown result type (might be due to invalid IL or missing references) //IL_08ae: Unknown result type (might be due to invalid IL or missing references) //IL_08b4: Unknown result type (might be due to invalid IL or missing references) //IL_08b9: Unknown result type (might be due to invalid IL or missing references) //IL_08c4: Unknown result type (might be due to invalid IL or missing references) //IL_08ca: Unknown result type (might be due to invalid IL or missing references) //IL_08cf: Unknown result type (might be due to invalid IL or missing references) //IL_08da: Unknown result type (might be due to invalid IL or missing references) //IL_08eb: Unknown result type (might be due to invalid IL or missing references) //IL_08f0: Unknown result type (might be due to invalid IL or missing references) //IL_08fb: Unknown result type (might be due to invalid IL or missing references) //IL_090c: Unknown result type (might be due to invalid IL or missing references) //IL_0916: Unknown result type (might be due to invalid IL or missing references) //IL_091b: Unknown result type (might be due to invalid IL or missing references) //IL_0920: Unknown result type (might be due to invalid IL or missing references) //IL_0930: Unknown result type (might be due to invalid IL or missing references) //IL_0936: Unknown result type (might be due to invalid IL or missing references) //IL_093b: Unknown result type (might be due to invalid IL or missing references) //IL_0946: Unknown result type (might be due to invalid IL or missing references) //IL_0957: Unknown result type (might be due to invalid IL or missing references) //IL_0961: Unknown result type (might be due to invalid IL or missing references) //IL_0966: Unknown result type (might be due to invalid IL or missing references) //IL_0971: Unknown result type (might be due to invalid IL or missing references) //IL_0977: Unknown result type (might be due to invalid IL or missing references) //IL_097c: Unknown result type (might be due to invalid IL or missing references) //IL_0987: Unknown result type (might be due to invalid IL or missing references) //IL_0998: Unknown result type (might be due to invalid IL or missing references) //IL_099d: Unknown result type (might be due to invalid IL or missing references) //IL_09a8: Unknown result type (might be due to invalid IL or missing references) //IL_09b9: Unknown result type (might be due to invalid IL or missing references) //IL_09c3: Unknown result type (might be due to invalid IL or missing references) //IL_09c8: Unknown result type (might be due to invalid IL or missing references) //IL_09d3: Unknown result type (might be due to invalid IL or missing references) //IL_09e4: Unknown result type (might be due to invalid IL or missing references) //IL_09ee: Unknown result type (might be due to invalid IL or missing references) //IL_09f3: Unknown result type (might be due to invalid IL or missing references) //IL_09f8: Unknown result type (might be due to invalid IL or missing references) //IL_0a08: Unknown result type (might be due to invalid IL or missing references) //IL_0a0e: Unknown result type (might be due to invalid IL or missing references) //IL_0a13: Unknown result type (might be due to invalid IL or missing references) //IL_0a1e: Unknown result type (might be due to invalid IL or missing references) //IL_0a2f: Unknown result type (might be due to invalid IL or missing references) //IL_0a39: Unknown result type (might be due to invalid IL or missing references) //IL_0a3e: Unknown result type (might be due to invalid IL or missing references) //IL_0a49: Unknown result type (might be due to invalid IL or missing references) //IL_0a4f: Unknown result type (might be due to invalid IL or missing references) //IL_0a54: Unknown result type (might be due to invalid IL or missing references) //IL_0a5f: Unknown result type (might be due to invalid IL or missing references) //IL_0a70: Unknown result type (might be due to invalid IL or missing references) //IL_0a75: Unknown result type (might be due to invalid IL or missing references) //IL_0a80: Unknown result type (might be due to invalid IL or missing references) //IL_0a91: Unknown result type (might be due to invalid IL or missing references) //IL_0a9b: Unknown result type (might be due to invalid IL or missing references) //IL_0aa0: Unknown result type (might be due to invalid IL or missing references) //IL_0aab: Unknown result type (might be due to invalid IL or missing references) //IL_0abc: Unknown result type (might be due to invalid IL or missing references) //IL_0ac6: Unknown result type (might be due to invalid IL or missing references) //IL_0acb: Unknown result type (might be due to invalid IL or missing references) //IL_0ad0: Unknown result type (might be due to invalid IL or missing references) //IL_0ae0: Unknown result type (might be due to invalid IL or missing references) //IL_0ae6: Unknown result type (might be due to invalid IL or missing references) //IL_0aeb: Unknown result type (might be due to invalid IL or missing references) //IL_0af6: Unknown result type (might be due to invalid IL or missing references) //IL_0b07: Unknown result type (might be due to invalid IL or missing references) //IL_0b11: Unknown result type (might be due to invalid IL or missing references) //IL_0b16: Unknown result type (might be due to invalid IL or missing references) //IL_0b21: Unknown result type (might be due to invalid IL or missing references) //IL_0b27: Unknown result type (might be due to invalid IL or missing references) //IL_0b2c: Unknown result type (might be due to invalid IL or missing references) //IL_0b37: Unknown result type (might be due to invalid IL or missing references) //IL_0b48: Unknown result type (might be due to invalid IL or missing references) //IL_0b4d: Unknown result type (might be due to invalid IL or missing references) //IL_0b58: Unknown result type (might be due to invalid IL or missing references) //IL_0b69: Unknown result type (might be due to invalid IL or missing references) //IL_0b73: Unknown result type (might be due to invalid IL or missing references) //IL_0b78: Unknown result type (might be due to invalid IL or missing references) //IL_0b83: Unknown result type (might be due to invalid IL or missing references) //IL_0b94: Unknown result type (might be due to invalid IL or missing references) //IL_0b9e: Unknown result type (might be due to invalid IL or missing references) //IL_0ba3: Unknown result type (might be due to invalid IL or missing references) //IL_0ba8: Unknown result type (might be due to invalid IL or missing references) //IL_0bb8: Unknown result type (might be due to invalid IL or missing references) //IL_0bbe: Unknown result type (might be due to invalid IL or missing references) //IL_0bc3: Unknown result type (might be due to invalid IL or missing references) //IL_0bce: Unknown result type (might be due to invalid IL or missing references) //IL_0bdf: Unknown result type (might be due to invalid IL or missing references) //IL_0be9: Unknown result type (might be due to invalid IL or missing references) //IL_0bee: Unknown result type (might be due to invalid IL or missing references) //IL_0bf9: Unknown result type (might be due to invalid IL or missing references) //IL_0bff: Unknown result type (might be due to invalid IL or missing references) //IL_0c04: Unknown result type (might be due to invalid IL or missing references) //IL_0c0f: Unknown result type (might be due to invalid IL or missing references) //IL_0c20: Unknown result type (might be due to invalid IL or missing references) //IL_0c25: Unknown result type (might be due to invalid IL or missing references) //IL_0c30: Unknown result type (might be due to invalid IL or missing references) //IL_0c41: Unknown result type (might be due to invalid IL or missing references) //IL_0c4b: Unknown result type (might be due to invalid IL or missing references) //IL_0c50: Unknown result type (might be due to invalid IL or missing references) //IL_0c5b: Unknown result type (might be due to invalid IL or missing references) //IL_0c6c: Unknown result type (might be due to invalid IL or missing references) //IL_0c76: Unknown result type (might be due to invalid IL or missing references) //IL_0c7b: Unknown result type (might be due to invalid IL or missing references) //IL_0c80: Unknown result type (might be due to invalid IL or missing references) //IL_0c90: Unknown result type (might be due to invalid IL or missing references) //IL_0c96: Unknown result type (might be due to invalid IL or missing references) //IL_0c9b: Unknown result type (might be due to invalid IL or missing references) //IL_0ca6: Unknown result type (might be due to invalid IL or missing references) //IL_0cb7: Unknown result type (might be due to invalid IL or missing references) //IL_0cc1: Unknown result type (might be due to invalid IL or missing references) //IL_0cc6: Unknown result type (might be due to invalid IL or missing references) //IL_0cd1: Unknown result type (might be due to invalid IL or missing references) //IL_0cd7: Unknown result type (might be due to invalid IL or missing references) //IL_0cdc: Unknown result type (might be due to invalid IL or missing references) //IL_0ce7: Unknown result type (might be due to invalid IL or missing references) //IL_0cf8: Unknown result type (might be due to invalid IL or missing references) //IL_0cfd: Unknown result type (might be due to invalid IL or missing references) //IL_0d08: Unknown result type (might be due to invalid IL or missing references) //IL_0d19: Unknown result type (might be due to invalid IL or missing references) //IL_0d23: Unknown result type (might be due to invalid IL or missing references) //IL_0d28: Unknown result type (might be due to invalid IL or missing references) //IL_0d33: Unknown result type (might be due to invalid IL or missing references) //IL_0d44: Unknown result type (might be due to invalid IL or missing references) //IL_0d4e: Unknown result type (might be due to invalid IL or missing references) //IL_0d53: Unknown result type (might be due to invalid IL or missing references) //IL_0d58: Unknown result type (might be due to invalid IL or missing references) //IL_0d68: Unknown result type (might be due to invalid IL or missing references) //IL_0d6e: Unknown result type (might be due to invalid IL or missing references) //IL_0d73: Unknown result type (might be due to invalid IL or missing references) //IL_0d7e: Unknown result type (might be due to invalid IL or missing references) //IL_0d8f: Unknown result type (might be due to invalid IL or missing references) //IL_0d99: Unknown result type (might be due to invalid IL or missing references) //IL_0d9e: Unknown result type (might be due to invalid IL or missing references) //IL_0da9: Unknown result type (might be due to invalid IL or missing references) //IL_0daf: Unknown result type (might be due to invalid IL or missing references) //IL_0db4: Unknown result type (might be due to invalid IL or missing references) //IL_0dbf: Unknown result type (might be due to invalid IL or missing references) //IL_0dd0: Unknown result type (might be due to invalid IL or missing references) //IL_0dd5: Unknown result type (might be due to invalid IL or missing references) //IL_0de0: Unknown result type (might be due to invalid IL or missing references) //IL_0df1: Unknown result type (might be due to invalid IL or missing references) //IL_0dfb: Unknown result type (might be due to invalid IL or missing references) //IL_0e00: Unknown result type (might be due to invalid IL or missing references) //IL_0e0b: Unknown result type (might be due to invalid IL or missing references) //IL_0e1c: Unknown result type (might be due to invalid IL or missing references) //IL_0e26: Unknown result type (might be due to invalid IL or missing references) //IL_0e2b: Unknown result type (might be due to invalid IL or missing references) //IL_0e30: Unknown result type (might be due to invalid IL or missing references) //IL_0e40: Unknown result type (might be due to invalid IL or missing references) //IL_0e46: Unknown result type (might be due to invalid IL or missing references) //IL_0e4b: Unknown result type (might be due to invalid IL or missing references) //IL_0e56: Unknown result type (might be due to invalid IL or missing references) //IL_0e5c: Unknown result type (might be due to invalid IL or missing references) //IL_0e61: Unknown result type (might be due to invalid IL or missing references) //IL_0e6c: Unknown result type (might be due to invalid IL or missing references) //IL_0e7d: Unknown result type (might be due to invalid IL or missing references) //IL_0e82: Unknown result type (might be due to invalid IL or missing references) //IL_0e8d: Unknown result type (might be due to invalid IL or missing references) //IL_0e9e: Unknown result type (might be due to invalid IL or missing references) //IL_0ea8: Unknown result type (might be due to invalid IL or missing references) //IL_0ead: Unknown result type (might be due to invalid IL or missing references) //IL_0eb2: Unknown result type (might be due to invalid IL or missing references) //IL_0ec2: Unknown result type (might be due to invalid IL or missing references) //IL_0ec8: Unknown result type (might be due to invalid IL or missing references) //IL_0ecd: Unknown result type (might be due to invalid IL or missing references) //IL_0ed8: Unknown result type (might be due to invalid IL or missing references) //IL_0ee9: Unknown result type (might be due to invalid IL or missing references) //IL_0ef3: Unknown result type (might be due to invalid IL or missing references) //IL_0ef8: Unknown result type (might be due to invalid IL or missing references) //IL_0f03: Unknown result type (might be due to invalid IL or missing references) //IL_0f09: Unknown result type (might be due to invalid IL or missing references) //IL_0f0e: Unknown result type (might be due to invalid IL or missing references) //IL_0f19: Unknown result type (might be due to invalid IL or missing references) //IL_0f2a: Unknown result type (might be due to invalid IL or missing references) //IL_0f2f: Unknown result type (might be due to invalid IL or missing references) //IL_0f3a: Unknown result type (might be due to invalid IL or missing references) //IL_0f4b: Unknown result type (might be due to invalid IL or missing references) //IL_0f55: Unknown result type (might be due to invalid IL or missing references) //IL_0f5a: Unknown result type (might be due to invalid IL or missing references) //IL_0f65: Unknown result type (might be due to invalid IL or missing references) //IL_0f76: Unknown result type (might be due to invalid IL or missing references) //IL_0f80: Unknown result type (might be due to invalid IL or missing references) //IL_0f85: Unknown result type (might be due to invalid IL or missing references) //IL_0f8a: Unknown result type (might be due to invalid IL or missing references) //IL_0f9a: Unknown result type (might be due to invalid IL or missing references) //IL_0fa0: Unknown result type (might be due to invalid IL or missing references) //IL_0fa5: Unknown result type (might be due to invalid IL or missing references) //IL_0fb0: Unknown result type (might be due to invalid IL or missing references) //IL_0fc1: Unknown result type (might be due to invalid IL or missing references) //IL_0fcb: Unknown result type (might be due to invalid IL or missing references) //IL_0fd0: Unknown result type (might be due to invalid IL or missing references) //IL_0fdb: Unknown result type (might be due to invalid IL or missing references) //IL_0fe1: Unknown result type (might be due to invalid IL or missing references) //IL_0fe6: Unknown result type (might be due to invalid IL or missing references) //IL_0ff1: Unknown result type (might be due to invalid IL or missing references) //IL_1002: Unknown result type (might be due to invalid IL or missing references) //IL_1007: Unknown result type (might be due to invalid IL or missing references) //IL_1012: Unknown result type (might be due to invalid IL or missing references) //IL_1023: Unknown result type (might be due to invalid IL or missing references) //IL_102d: Unknown result type (might be due to invalid IL or missing references) //IL_1032: Unknown result type (might be due to invalid IL or missing references) //IL_103d: Unknown result type (might be due to invalid IL or missing references) //IL_104e: Unknown result type (might be due to invalid IL or missing references) //IL_1058: Unknown result type (might be due to invalid IL or missing references) //IL_105d: Unknown result type (might be due to invalid IL or missing references) //IL_1062: Unknown result type (might be due to invalid IL or missing references) //IL_1072: Unknown result type (might be due to invalid IL or missing references) //IL_1078: Unknown result type (might be due to invalid IL or missing references) //IL_107d: Unknown result type (might be due to invalid IL or missing references) //IL_1088: Unknown result type (might be due to invalid IL or missing references) //IL_1099: Unknown result type (might be due to invalid IL or missing references) //IL_10a3: Unknown result type (might be due to invalid IL or missing references) //IL_10a8: Unknown result type (might be due to invalid IL or missing references) //IL_10b3: Unknown result type (might be due to invalid IL or missing references) //IL_10b9: Unknown result type (might be due to invalid IL or missing references) //IL_10be: Unknown result type (might be due to invalid IL or missing references) //IL_10c9: Unknown result type (might be due to invalid IL or missing references) //IL_10da: Unknown result type (might be due to invalid IL or missing references) //IL_10df: Unknown result type (might be due to invalid IL or missing references) //IL_10ea: Unknown result type (might be due to invalid IL or missing references) //IL_10fb: Unknown result type (might be due to invalid IL or missing references) //IL_1105: Unknown result type (might be due to invalid IL or missing references) //IL_110a: Unknown result type (might be due to invalid IL or missing references) //IL_1115: Unknown result type (might be due to invalid IL or missing references) //IL_1126: Unknown result type (might be due to invalid IL or missing references) //IL_1130: Unknown result type (might be due to invalid IL or missing references) //IL_1135: Unknown result type (might be due to invalid IL or missing references) //IL_113a: Unknown result type (might be due to invalid IL or missing references) //IL_114a: Unknown result type (might be due to invalid IL or missing references) //IL_1150: Unknown result type (might be due to invalid IL or missing references) //IL_1155: Unknown result type (might be due to invalid IL or missing references) //IL_1160: Unknown result type (might be due to invalid IL or missing references) //IL_1171: Unknown result type (might be due to invalid IL or missing references) //IL_117b: Unknown result type (might be due to invalid IL or missing references) //IL_1180: Unknown result type (might be due to invalid IL or missing references) //IL_118b: Unknown result type (might be due to invalid IL or missing references) //IL_1191: Unknown result type (might be due to invalid IL or missing references) //IL_1196: Unknown result type (might be due to invalid IL or missing references) //IL_11a1: Unknown result type (might be due to invalid IL or missing references) //IL_11b2: Unknown result type (might be due to invalid IL or missing references) //IL_11b7: Unknown result type (might be due to invalid IL or missing references) //IL_11c2: Unknown result type (might be due to invalid IL or missing references) //IL_11d3: Unknown result type (might be due to invalid IL or missing references) //IL_11dd: Unknown result type (might be due to invalid IL or missing references) //IL_11e2: Unknown result type (might be due to invalid IL or missing references) //IL_11ed: Unknown result type (might be due to invalid IL or missing references) //IL_11fe: Unknown result type (might be due to invalid IL or missing references) //IL_1208: Unknown result type (might be due to invalid IL or missing references) //IL_120d: Unknown result type (might be due to invalid IL or missing references) //IL_1212: Unknown result type (might be due to invalid IL or missing references) //IL_1222: Unknown result type (might be due to invalid IL or missing references) //IL_1228: Unknown result type (might be due to invalid IL or missing references) //IL_122d: Unknown result type (might be due to invalid IL or missing references) //IL_1238: Unknown result type (might be due to invalid IL or missing references) //IL_1249: Unknown result type (might be due to invalid IL or missing references) //IL_1253: Unknown result type (might be due to invalid IL or missing references) //IL_1258: Unknown result type (might be due to invalid IL or missing references) //IL_1263: Unknown result type (might be due to invalid IL or missing references) //IL_1269: Unknown result type (might be due to invalid IL or missing references) //IL_126e: Unknown result type (might be due to invalid IL or missing references) //IL_1279: Unknown result type (might be due to invalid IL or missing references) //IL_128a: Unknown result type (might be due to invalid IL or missing references) //IL_128f: Unknown result type (might be due to invalid IL or missing references) //IL_129a: Unknown result type (might be due to invalid IL or missing references) //IL_12ab: Unknown result type (might be due to invalid IL or missing references) //IL_12b5: Unknown result type (might be due to invalid IL or missing references) //IL_12ba: Unknown result type (might be due to invalid IL or missing references) //IL_12c5: Unknown result type (might be due to invalid IL or missing references) //IL_12d6: Unknown result type (might be due to invalid IL or missing references) //IL_12e0: Unknown result type (might be due to invalid IL or missing references) //IL_12e5: Unknown result type (might be due to invalid IL or missing references) //IL_12ea: Unknown result type (might be due to invalid IL or missing references) //IL_12fa: Unknown result type (might be due to invalid IL or missing references) //IL_1300: Unknown result type (might be due to invalid IL or missing references) //IL_1305: Unknown result type (might be due to invalid IL or missing references) //IL_1310: Unknown result type (might be due to invalid IL or missing references) //IL_1321: Unknown result type (might be due to invalid IL or missing references) //IL_132b: Unknown result type (might be due to invalid IL or missing references) //IL_1330: Unknown result type (might be due to invalid IL or missing references) //IL_133b: Unknown result type (might be due to invalid IL or missing references) //IL_1341: Unknown result type (might be due to invalid IL or missing references) //IL_1346: Unknown result type (might be due to invalid IL or missing references) //IL_1351: Unknown result type (might be due to invalid IL or missing references) //IL_1362: Unknown result type (might be due to invalid IL or missing references) //IL_1367: Unknown result type (might be due to invalid IL or missing references) //IL_1372: Unknown result type (might be due to invalid IL or missing references) //IL_1383: Unknown result type (might be due to invalid IL or missing references) //IL_138d: Unknown result type (might be due to invalid IL or missing references) //IL_1392: Unknown result type (might be due to invalid IL or missing references) //IL_139d: Unknown result type (might be due to invalid IL or missing references) //IL_13ae: Unknown result type (might be due to invalid IL or missing references) //IL_13b8: Unknown result type (might be due to invalid IL or missing references) //IL_13bd: Unknown result type (might be due to invalid IL or missing references) //IL_13c2: Unknown result type (might be due to invalid IL or missing references) //IL_13d2: Unknown result type (might be due to invalid IL or missing references) //IL_13dd: Unknown result type (might be due to invalid IL or missing references) //IL_13e8: Unknown result type (might be due to invalid IL or missing references) //IL_13f2: Unknown result type (might be due to invalid IL or missing references) //IL_13f7: Unknown result type (might be due to invalid IL or missing references) //IL_13fd: Unknown result type (might be due to invalid IL or missing references) //IL_1402: Unknown result type (might be due to invalid IL or missing references) //IL_1407: Unknown result type (might be due to invalid IL or missing references) //IL_1503: Unknown result type (might be due to invalid IL or missing references) //IL_1508: Unknown result type (might be due to invalid IL or missing references) //IL_1469: Unknown result type (might be due to invalid IL or missing references) //IL_146e: Unknown result type (might be due to invalid IL or missing references) //IL_151c: Unknown result type (might be due to invalid IL or missing references) //IL_1521: Unknown result type (might be due to invalid IL or missing references) //IL_15d5: Unknown result type (might be due to invalid IL or missing references) //IL_15da: Unknown result type (might be due to invalid IL or missing references) //IL_15ef: Unknown result type (might be due to invalid IL or missing references) //IL_15f4: Unknown result type (might be due to invalid IL or missing references) //IL_14cd: Unknown result type (might be due to invalid IL or missing references) //IL_14d2: Unknown result type (might be due to invalid IL or missing references) //IL_19c4: Unknown result type (might be due to invalid IL or missing references) //IL_19d8: Unknown result type (might be due to invalid IL or missing references) //IL_19dd: Unknown result type (might be due to invalid IL or missing references) //IL_19ed: Unknown result type (might be due to invalid IL or missing references) //IL_1a7e: Unknown result type (might be due to invalid IL or missing references) //IL_1a92: Unknown result type (might be due to invalid IL or missing references) //IL_1a97: Unknown result type (might be due to invalid IL or missing references) //IL_1aa7: Unknown result type (might be due to invalid IL or missing references) //IL_1830: Unknown result type (might be due to invalid IL or missing references) //IL_1835: Unknown result type (might be due to invalid IL or missing references) //IL_1846: Unknown result type (might be due to invalid IL or missing references) //IL_185b: Unknown result type (might be due to invalid IL or missing references) //IL_1860: Unknown result type (might be due to invalid IL or missing references) //IL_1871: Unknown result type (might be due to invalid IL or missing references) //IL_1c0d: Unknown result type (might be due to invalid IL or missing references) //IL_1c12: Unknown result type (might be due to invalid IL or missing references) //IL_1c27: Unknown result type (might be due to invalid IL or missing references) //IL_1c2c: Unknown result type (might be due to invalid IL or missing references) //IL_1c35: Unknown result type (might be due to invalid IL or missing references) //IL_1c40: Unknown result type (might be due to invalid IL or missing references) //IL_1c45: Unknown result type (might be due to invalid IL or missing references) //IL_1c5a: Unknown result type (might be due to invalid IL or missing references) //IL_1c5f: Unknown result type (might be due to invalid IL or missing references) //IL_1c68: Unknown result type (might be due to invalid IL or missing references) //IL_1c74: Unknown result type (might be due to invalid IL or missing references) //IL_1df7: Unknown result type (might be due to invalid IL or missing references) //IL_1dfc: Unknown result type (might be due to invalid IL or missing references) //IL_1e11: Unknown result type (might be due to invalid IL or missing references) //IL_1e16: Unknown result type (might be due to invalid IL or missing references) //IL_1e1f: Unknown result type (might be due to invalid IL or missing references) //IL_1e2a: Unknown result type (might be due to invalid IL or missing references) //IL_1e2f: Unknown result type (might be due to invalid IL or missing references) //IL_1e44: Unknown result type (might be due to invalid IL or missing references) //IL_1e49: Unknown result type (might be due to invalid IL or missing references) //IL_1e52: Unknown result type (might be due to invalid IL or missing references) //IL_1e5e: Unknown result type (might be due to invalid IL or missing references) //IL_1d0e: Unknown result type (might be due to invalid IL or missing references) //IL_1d13: Unknown result type (might be due to invalid IL or missing references) //IL_1d28: Unknown result type (might be due to invalid IL or missing references) //IL_1d2d: Unknown result type (might be due to invalid IL or missing references) //IL_1d36: Unknown result type (might be due to invalid IL or missing references) //IL_1d41: Unknown result type (might be due to invalid IL or missing references) //IL_1d46: Unknown result type (might be due to invalid IL or missing references) //IL_1d5b: Unknown result type (might be due to invalid IL or missing references) //IL_1d60: Unknown result type (might be due to invalid IL or missing references) //IL_1d69: Unknown result type (might be due to invalid IL or missing references) //IL_1d75: Unknown result type (might be due to invalid IL or missing references) if (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Collider)((Component)this).GetComponent()).enabled) { characterController = ((Component)this).GetComponent(); rigidBody = null; } else if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { rigidBody = ((Component)this).GetComponent(); characterController = null; } if (currentlyOnWall) { jumpedOffWallForWallJump = false; } else if (inMidAirFromWallJump && noCollisionTimer >= 5f) { jumpedOffWallForWallJump = true; } if (jumpedOffWallForWallJump && noCollisionTimer < 5f && inMidAirFromWallJump) { ((Component)this).transform.eulerAngles = new Vector3(0f, ((Component)this).transform.eulerAngles.y, 0f); inMidAirFromWallJump = false; } maxGroundedHeight2 = ((Component)this).transform.up * grounded.maxGroundedHeight; maxGroundedRadius2 = grounded.maxGroundedRadius - 0.0075f; maxGroundedDistance2 = grounded.maxGroundedDistance; maxGroundedDistanceDown = Vector3.down * grounded.maxGroundedDistance; forwardSpeed2 = movement.forwardSpeed; sideSpeed2 = movement.sideSpeed; backSpeed2 = movement.backSpeed; if (!inMidAirFromWallJump) { midAirMovementSpeedMultiple2 = movement.midAirMovementSpeedMultiple; } else { midAirMovementSpeedMultiple2 = 0f; } acceleration2 = movement.acceleration; slopeSlideSpeed2 = movement.slopeSlideSpeed; jumpsToPerform = jumping.numberAndHeightOfJumps; timeLimitBetweenJumps2 = jumping.timeLimitBetweenJumps; jumpLandingEffect2 = jumping.jumpLandingEffect; allowDoubleJump2 = jumping.allowDoubleJump; doubleJumpPerformableIfInMidAirInGeneral2 = jumping.doubleJumpPerformableIfInMidAirInGeneral; doubleJumpHeight2 = jumping.doubleJumpHeight; doubleJumpEffect2 = jumping.doubleJumpEffect; maxFallingSpeed2 = jumping.maxFallingSpeed; spaceOnWallNeededToWallJumpUpAmount2 = ((Component)this).transform.up * wallJumping.spaceOnWallNeededToWallJumpUpAmount; spaceOnWallNeededToWallJumpHeight2 = wallJumping.spaceOnWallNeededToWallJumpHeight; spaceOnWallNeededToWallJumpLength2 = wallJumping.spaceOnWallNeededToWallJumpLength - 0.5f; spaceOnWallNeededToWallJumpWidth2 = wallJumping.spaceOnWallNeededToWallJumpWidth; spaceBelowNeededToWallJump2 = ((Component)this).transform.up * wallJumping.spaceBelowNeededToWallJump; if (attackState == 0) { attacksToPerform = attacking.ground.numberAndStrengthOfAttacks; } else { attacksToPerform = attacking.air.numberAndStrengthOfMidAirAttacks; } comboTimeLimitGround = attacking.ground.comboTimeLimit; comboTimeLimitAir = attacking.air.comboTimeLimit; rememberAttackButtonPressesGround = attacking.ground.rememberAttackButtonPresses; rememberAttackButtonPressesAir = attacking.air.rememberAttackButtonPresses; allowMovingPlatformSupport = movingPlatforms.allowMovingPlatformSupport; movingPlatformTag = movingPlatforms.movingPlatformTag; jumpInHeight2 = swimming.jumpInHeight / 2f; jumpOutHeight2 = (swimming.jumpOutHeight - 0.8f) / 2f; swimScriptsToEnableOnEnter = swimming.scriptsToEnableOnEnter; swimScriptsToDisableOnEnter = swimming.scriptsToDisableOnEnter; pos = ((Component)this).transform.position; ref Vector3 reference = ref pos; Bounds bounds = ((Component)this).GetComponent().bounds; reference.y = ((Bounds)(ref bounds)).min.y + 0.1f; if (wallJumping.showWallJumpDetectors) { Debug.DrawLine(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f), Color.yellow); Debug.DrawLine(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.1875f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.1875f, Color.yellow); Debug.DrawLine(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.375f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.375f, Color.yellow); Debug.DrawLine(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.5625f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.5625f, Color.yellow); Debug.DrawLine(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.75f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.75f, Color.yellow); Debug.DrawLine(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.9375f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.9375f, Color.yellow); Debug.DrawLine(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 1.125f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 1.125f, Color.yellow); Debug.DrawLine(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) - ((Component)this).transform.right * (spaceOnWallNeededToWallJumpWidth2 + 1f) / 3f, Color.yellow); Debug.DrawLine(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.1875f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.1875f - ((Component)this).transform.right * (spaceOnWallNeededToWallJumpWidth2 + 1f) / 3f, Color.yellow); Debug.DrawLine(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.375f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.375f - ((Component)this).transform.right * (spaceOnWallNeededToWallJumpWidth2 + 1f) / 3f, Color.yellow); Debug.DrawLine(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.5625f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.5625f - ((Component)this).transform.right * (spaceOnWallNeededToWallJumpWidth2 + 1f) / 3f, Color.yellow); Debug.DrawLine(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.75f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.75f - ((Component)this).transform.right * (spaceOnWallNeededToWallJumpWidth2 + 1f) / 3f, Color.yellow); Debug.DrawLine(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.9375f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.9375f - ((Component)this).transform.right * (spaceOnWallNeededToWallJumpWidth2 + 1f) / 3f, Color.yellow); Debug.DrawLine(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 1.125f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 1.125f - ((Component)this).transform.right * (spaceOnWallNeededToWallJumpWidth2 + 1f) / 3f, Color.yellow); Debug.DrawLine(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.right * (spaceOnWallNeededToWallJumpWidth2 + 1f) / 3f, Color.yellow); Debug.DrawLine(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.1875f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.1875f + ((Component)this).transform.right * (spaceOnWallNeededToWallJumpWidth2 + 1f) / 3f, Color.yellow); Debug.DrawLine(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.375f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.375f + ((Component)this).transform.right * (spaceOnWallNeededToWallJumpWidth2 + 1f) / 3f, Color.yellow); Debug.DrawLine(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.5625f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.5625f + ((Component)this).transform.right * (spaceOnWallNeededToWallJumpWidth2 + 1f) / 3f, Color.yellow); Debug.DrawLine(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.75f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.75f + ((Component)this).transform.right * (spaceOnWallNeededToWallJumpWidth2 + 1f) / 3f, Color.yellow); Debug.DrawLine(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.9375f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.9375f + ((Component)this).transform.right * (spaceOnWallNeededToWallJumpWidth2 + 1f) / 3f, Color.yellow); Debug.DrawLine(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 1.125f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 1.125f + ((Component)this).transform.right * (spaceOnWallNeededToWallJumpWidth2 + 1f) / 3f, Color.yellow); Debug.DrawLine(((Component)this).transform.position, ((Component)this).transform.position - ((Component)this).transform.up * 0.3f - spaceBelowNeededToWallJump2, Color.cyan); } DrawClimbingDetectors(); if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { animator = ((Component)this).GetComponent(); } if (inWater) { return; } if (Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled) { if ((double)characterController.velocity.y < 0.5 && (double)moveDirection.y > 0.5 && !grounded.currentlyGrounded) { headHit = true; } else { headHit = false; } yVel = characterController.velocity.y; } else if (Object.op_Implicit((Object)(object)rigidBody)) { if (yPos == ((Component)this).transform.position.y && rigidBody.velocity.y + 0.1f > yVel && !jumpPerformed && noCollisionTimer == 0f && !sliding && moveDirection.y > 0f && !grounded.currentlyGrounded) { if (collisionSlopeAngle < slopeLimit || collisionSlopeAngle > 91f) { headHit = true; } else { headHit = false; } } else { headHit = false; } yPos = ((Component)this).transform.position.y; yVel = rigidBody.velocity.y; } if (jumpsToPerform.Length > 0) { totalJumpNumber = jumpsToPerform.Length; } else { totalJumpNumber = 0; } if (Input.GetButtonDown("Jump") && (!Object.op_Implicit((Object)(object)((Component)this).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Component)this).GetComponent().canGrabBackOn))) { jumpPressedTimer = 0f; jumpPressed = true; } else { jumpPressedTimer += 0.02f; } if (jumpPressedTimer > 0.2f) { jumpPressed = false; } if (grounded.currentlyGrounded) { if (jumpPressed && jumpPossible && !jumpPerformed && totalJumpNumber > 0 && !onWallLastUpdate && jumpEnabled && ((raycastSlopeAngle > slopeLimit && ((uphill && jumping.allowJumpWhenSlidingFacingUphill) || (!uphill && jumping.allowJumpWhenSlidingFacingDownhill) || inBetweenSlidableSurfaces)) || raycastSlopeAngle <= slopeLimit) && canCrouchToAction) { Jump(); } doubleJumpPossible = true; } if (Input.GetButtonDown("Jump") && doubleJumpPossible && !grounded.currentlyGrounded && allowDoubleJump2 && jumpEnabled && (doubleJumpPerformableIfInMidAirInGeneral2 || (!doubleJumpPerformableIfInMidAirInGeneral2 && inMidAirFromJump)) && (jumping.doubleJumpPerformableOutOfWallJump || !inMidAirFromWallJump) && !currentlyOnWall && !currentlyClimbingWall && !onWallLastUpdate && canCrouchToAction && (((!Physics.Raycast(pos, Vector3.down, ref hit, 0.5f, LayerMask.op_Implicit(noWaterCollisionLayers)) || (Physics.Raycast(pos, Vector3.down, ref hit, 0.5f, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).GetComponent().isTrigger)) && moveDirection.y < 0f) || (!grounded.currentlyGrounded && moveDirection.y >= 0f))) { DoubleJump(); jumpPressed = false; if (!jumping.allowEndlessDoubleJump) { doubleJumpPossible = false; } } jumpEnabled = true; if (currentlyOnWall || currentlyClimbingWall || turnBack || back2) { onWallLastUpdate = true; } else { onWallLastUpdate = false; } if (jumpPerformed) { jumpPerformedTime += 0.02f; } else { jumpPerformedTime = 0f; } if (inMidAirFromJump && grounded.currentlyGrounded) { if (!jumpPerformed) { if ((Object)(object)jumpLandingEffect2 != (Object)null) { Object.Instantiate(jumpLandingEffect2, ((Component)this).transform.position + new Vector3(0f, 0.05f, 0f), jumpLandingEffect2.transform.rotation); } if ((Object)(object)animator != (Object)null && (Object)(object)animator.runtimeAnimatorController != (Object)null) { animator.CrossFade("Movement", 0.2f); } inMidAirFromJump = false; } if (jumpTimer == 0f && jumpPerformedTime > 0.1f) { if ((Object)(object)jumpLandingEffect2 != (Object)null) { Object.Instantiate(jumpLandingEffect2, ((Component)this).transform.position + new Vector3(0f, 0.05f, 0f), jumpLandingEffect2.transform.rotation); } jumpPerformed = false; inMidAirFromJump = false; } } if (!inMidAirFromJump) { jumpTimer += 0.02f; } if (jumpTimer > timeLimitBetweenJumps2 && timeLimitBetweenJumps2 > 0f) { currentJumpNumber = totalJumpNumber; } if ((Object)(object)animator != (Object)null && (Object)(object)animator.runtimeAnimatorController != (Object)null) { animator.SetFloat("jumpNumber", (float)currentJumpNumber); } if (jumpPerformed && (!grounded.currentlyGrounded || headHit)) { jumpPerformed = false; } if (movement.crouching.allowCrouching) { if (!canCrouch && (Input.GetKeyDown((KeyCode)306) || Input.GetKeyDown((KeyCode)358)) && finishedCrouching) { finishedCrouching = false; crouchCancelsAttack = true; canCrouch = true; } else if ((Input.GetKeyDown((KeyCode)306) || Input.GetKeyDown((KeyCode)358)) && !Physics.Linecast(new Vector3(((Component)this).transform.position.x, feetPositionNew, ((Component)this).transform.position.z), new Vector3(((Component)this).transform.position.x, headPositionNew, ((Component)this).transform.position.z), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && finishedCrouching) { finishedCrouching = false; crouchCancelsAttack = true; crouching = false; canCrouch = false; } if (grounded.currentlyGrounded && canCrouch && !crouching) { crouchCancelsAttack = true; crouching = true; } if (crouching && (currentlyClimbingWall || currentlyOnWall) && !Physics.Linecast(new Vector3(((Component)this).transform.position.x, feetPositionNew, ((Component)this).transform.position.z), new Vector3(((Component)this).transform.position.x, headPositionNew, ((Component)this).transform.position.z), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers))) { finishedCrouching = false; canCrouch = false; crouching = false; } } else { canCrouch = false; crouching = false; } if ((Object)(object)animator != (Object)null) { animator.SetBool("crouch", crouching); } finishedCrouching = true; if (!crouching || !Physics.Linecast(new Vector3(((Component)this).transform.position.x, feetPositionNew, ((Component)this).transform.position.z), new Vector3(((Component)this).transform.position.x, headPositionNew, ((Component)this).transform.position.z), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers))) { canCrouchToAction = true; } else { canCrouchToAction = false; } if (!allowMovingPlatformSupport || !(noCollisionWithPlatformTimer >= 5f) || !((Object)(object)emptyObject != (Object)null)) { return; } if ((Object)(object)((Component)this).transform.parent == (Object)(object)emptyObject.transform) { if ((Object)(object)oldParent != (Object)null) { ((Component)this).transform.parent = oldParent.transform; } else { ((Component)this).transform.parent = null; } } if ((Object)(object)((Component)this).transform.parent != (Object)(object)emptyObject.transform && emptyObject.transform.childCount == 0 && ((Object)(object)((Component)this).transform.parent == (Object)(object)oldParent || (Object)(object)((Component)this).transform.parent == (Object)null)) { ((Component)this).transform.parent = null; if ((Object)(object)((Component)this).transform.parent != (Object)(object)emptyObject.transform) { ((Component)this).transform.parent = null; Object.Destroy((Object)(object)emptyObject); } if ((Object)(object)oldParent != (Object)null) { ((Component)this).transform.parent = oldParent.transform; } else { ((Component)this).transform.parent = null; } } } private void FixedUpdate() { //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0028: Unknown result type (might be due to invalid IL or missing references) //IL_00c7: Unknown result type (might be due to invalid IL or missing references) //IL_00cc: Unknown result type (might be due to invalid IL or missing references) //IL_00e7: Unknown result type (might be due to invalid IL or missing references) //IL_00ec: Unknown result type (might be due to invalid IL or missing references) //IL_00f4: Unknown result type (might be due to invalid IL or missing references) //IL_00ff: Unknown result type (might be due to invalid IL or missing references) //IL_010b: Unknown result type (might be due to invalid IL or missing references) //IL_0142: Unknown result type (might be due to invalid IL or missing references) //IL_0147: Unknown result type (might be due to invalid IL or missing references) //IL_0155: Unknown result type (might be due to invalid IL or missing references) //IL_015a: Unknown result type (might be due to invalid IL or missing references) //IL_0168: Unknown result type (might be due to invalid IL or missing references) //IL_016d: Unknown result type (might be due to invalid IL or missing references) //IL_0176: Unknown result type (might be due to invalid IL or missing references) //IL_018a: Unknown result type (might be due to invalid IL or missing references) //IL_018f: Unknown result type (might be due to invalid IL or missing references) //IL_01a4: Unknown result type (might be due to invalid IL or missing references) if (!inWater) { ChangeColliderHeightForCrouch(); } noWaterCollisionLayers = LayerMask.op_Implicit(LayerMask.op_Implicit(collisionLayers) & -17); if (climbing.Length > 0) { GettingClimbingValues(); } noCollisionTimer += 1f; if (!inWater) { AvoidSlidingWhileClimbing(); MovingPlatformParenting(); Attacks(); GettingRotationDirection(); } CheckRBForUseGravity(); if (!collidingWithWater && noCollisionWithWaterSplashTimer < 5f && !grounded.currentlyGrounded && (Object)(object)swimming.splashEffect != (Object)null && Physics.Linecast(new Vector3(((Component)this).transform.position.x, currentHeadPosition - jumpInHeight2, ((Component)this).transform.position.z), ((Component)this).transform.position, ref hit, LayerMask.op_Implicit(collisionLayers))) { if (ranThroughUpdateCount > 1f) { Object.Instantiate(swimming.splashEffect, new Vector3(((Component)this).transform.localPosition.x, ((RaycastHit)(ref hit)).point.y, ((Component)this).transform.localPosition.z) + new Vector3(0f, 0.05f, 0f), swimming.splashEffect.transform.rotation); } collidingWithWater = true; } if (noCollisionWithWaterSplashTimer >= 5f) { collidingWithWater = false; } else { collidingWithWater = true; } ranThroughUpdateCount += 1f; if (!inWater) { CheckIfWallJumpIsPossible(); DirectionOfWallJump(); PerformWallJump(); CheckForWallRigidbody(); KeepRigidbodyFromStickingToWall(); if (climbing.Length > 0) { CheckIfPlayerCanClimb(); ClimbingWall(); JumpOffOfClimb(); ClimbableObjectEdgeDetection(); PullingUpClimbableObject(); AnimatingClimbing(); } RotatePlayer(); SettingPlayerSpeed(); DetermineGroundedState(); GettingGroundAndSlopeAngles(); GettingMovementDirection(); } LockAxisForSideScrolling(); if (!inWater) { SlopeSliding(); PreventBouncing(); ApplyGravity(); MovePlayer(); AvoidFallingWhileClimbing(); CrouchAttack(); } SwitchingToFirstPersonMode(); Swim(); } private void ChangeColliderHeightForCrouch() { //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_002b: Unknown result type (might be due to invalid IL or missing references) //IL_0030: Unknown result type (might be due to invalid IL or missing references) //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_0043: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_005c: Unknown result type (might be due to invalid IL or missing references) //IL_0061: Unknown result type (might be due to invalid IL or missing references) //IL_0069: Unknown result type (might be due to invalid IL or missing references) //IL_0075: Unknown result type (might be due to invalid IL or missing references) //IL_0655: Unknown result type (might be due to invalid IL or missing references) //IL_065a: Unknown result type (might be due to invalid IL or missing references) //IL_0682: Unknown result type (might be due to invalid IL or missing references) //IL_0687: Unknown result type (might be due to invalid IL or missing references) //IL_0242: Unknown result type (might be due to invalid IL or missing references) //IL_0247: Unknown result type (might be due to invalid IL or missing references) //IL_026d: Unknown result type (might be due to invalid IL or missing references) //IL_0195: Unknown result type (might be due to invalid IL or missing references) //IL_019a: Unknown result type (might be due to invalid IL or missing references) //IL_01c0: Unknown result type (might be due to invalid IL or missing references) //IL_01c5: Unknown result type (might be due to invalid IL or missing references) //IL_01c9: Unknown result type (might be due to invalid IL or missing references) //IL_01ce: Unknown result type (might be due to invalid IL or missing references) //IL_01da: Unknown result type (might be due to invalid IL or missing references) //IL_01df: Unknown result type (might be due to invalid IL or missing references) //IL_01e3: Unknown result type (might be due to invalid IL or missing references) //IL_01e8: Unknown result type (might be due to invalid IL or missing references) //IL_01f4: Unknown result type (might be due to invalid IL or missing references) //IL_01f9: Unknown result type (might be due to invalid IL or missing references) //IL_0154: Unknown result type (might be due to invalid IL or missing references) //IL_0159: Unknown result type (might be due to invalid IL or missing references) //IL_016e: Unknown result type (might be due to invalid IL or missing references) //IL_00df: Unknown result type (might be due to invalid IL or missing references) //IL_00e4: Unknown result type (might be due to invalid IL or missing references) //IL_010a: Unknown result type (might be due to invalid IL or missing references) //IL_0393: Unknown result type (might be due to invalid IL or missing references) //IL_0398: Unknown result type (might be due to invalid IL or missing references) //IL_03be: Unknown result type (might be due to invalid IL or missing references) //IL_02f7: Unknown result type (might be due to invalid IL or missing references) //IL_02fc: Unknown result type (might be due to invalid IL or missing references) //IL_0322: Unknown result type (might be due to invalid IL or missing references) //IL_0327: Unknown result type (might be due to invalid IL or missing references) //IL_032b: Unknown result type (might be due to invalid IL or missing references) //IL_0330: Unknown result type (might be due to invalid IL or missing references) //IL_033c: Unknown result type (might be due to invalid IL or missing references) //IL_0341: Unknown result type (might be due to invalid IL or missing references) //IL_0345: Unknown result type (might be due to invalid IL or missing references) //IL_034a: Unknown result type (might be due to invalid IL or missing references) //IL_0356: Unknown result type (might be due to invalid IL or missing references) //IL_035b: Unknown result type (might be due to invalid IL or missing references) //IL_02b6: Unknown result type (might be due to invalid IL or missing references) //IL_02bb: Unknown result type (might be due to invalid IL or missing references) //IL_02d0: Unknown result type (might be due to invalid IL or missing references) //IL_04e4: Unknown result type (might be due to invalid IL or missing references) //IL_04e9: Unknown result type (might be due to invalid IL or missing references) //IL_050f: Unknown result type (might be due to invalid IL or missing references) //IL_051c: Unknown result type (might be due to invalid IL or missing references) //IL_0521: Unknown result type (might be due to invalid IL or missing references) //IL_0547: Unknown result type (might be due to invalid IL or missing references) //IL_0448: Unknown result type (might be due to invalid IL or missing references) //IL_044d: Unknown result type (might be due to invalid IL or missing references) //IL_0473: Unknown result type (might be due to invalid IL or missing references) //IL_0478: Unknown result type (might be due to invalid IL or missing references) //IL_047c: Unknown result type (might be due to invalid IL or missing references) //IL_0481: Unknown result type (might be due to invalid IL or missing references) //IL_048d: Unknown result type (might be due to invalid IL or missing references) //IL_0492: Unknown result type (might be due to invalid IL or missing references) //IL_0496: Unknown result type (might be due to invalid IL or missing references) //IL_049b: Unknown result type (might be due to invalid IL or missing references) //IL_04a7: Unknown result type (might be due to invalid IL or missing references) //IL_04ac: Unknown result type (might be due to invalid IL or missing references) //IL_0407: Unknown result type (might be due to invalid IL or missing references) //IL_040c: Unknown result type (might be due to invalid IL or missing references) //IL_0421: Unknown result type (might be due to invalid IL or missing references) //IL_05c5: Unknown result type (might be due to invalid IL or missing references) //IL_05ca: Unknown result type (might be due to invalid IL or missing references) //IL_05df: Unknown result type (might be due to invalid IL or missing references) //IL_05e4: Unknown result type (might be due to invalid IL or missing references) //IL_05f9: Unknown result type (might be due to invalid IL or missing references) //IL_05fe: Unknown result type (might be due to invalid IL or missing references) //IL_0602: Unknown result type (might be due to invalid IL or missing references) //IL_0607: Unknown result type (might be due to invalid IL or missing references) //IL_0613: Unknown result type (might be due to invalid IL or missing references) //IL_0618: Unknown result type (might be due to invalid IL or missing references) //IL_061c: Unknown result type (might be due to invalid IL or missing references) //IL_0621: Unknown result type (might be due to invalid IL or missing references) //IL_062d: Unknown result type (might be due to invalid IL or missing references) //IL_0632: Unknown result type (might be due to invalid IL or missing references) //IL_056e: Unknown result type (might be due to invalid IL or missing references) //IL_0573: Unknown result type (might be due to invalid IL or missing references) //IL_0588: Unknown result type (might be due to invalid IL or missing references) //IL_0595: Unknown result type (might be due to invalid IL or missing references) //IL_059a: Unknown result type (might be due to invalid IL or missing references) //IL_05af: Unknown result type (might be due to invalid IL or missing references) if (!crouching || !Physics.Linecast(new Vector3(((Component)this).transform.position.x, feetPositionNew, ((Component)this).transform.position.z), new Vector3(((Component)this).transform.position.x, headPositionNew, ((Component)this).transform.position.z), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers))) { canCrouchToAction = true; } else { canCrouchToAction = false; } if (Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled) { if (crouching) { if (!colliderAdjusted) { Vector3 center = characterController.center; center.y = originalColliderY * movement.crouching.crouchColliderHeightMultiple; characterController.center = center; characterController.height = originalColliderHeight * movement.crouching.crouchColliderHeightMultiple; colliderAdjusted = true; } } else { if (colliderAdjusted) { Vector3 center2 = characterController.center; center2.y = originalColliderY; characterController.center = center2; characterController.height = originalColliderHeight; } colliderAdjusted = false; originalColliderY = characterController.center.y; originalColliderHeight = characterController.height; Bounds bounds = ((Collider)characterController).bounds; feetPosition = ((Bounds)(ref bounds)).min; Bounds bounds2 = ((Collider)characterController).bounds; headPosition = ((Bounds)(ref bounds2)).max; oldYPos = ((Component)this).transform.position.y; } } else if (Object.op_Implicit((Object)(object)rigidBody)) { if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { if (crouching) { Vector3 center3 = ((Component)this).GetComponent().center; center3.y = originalColliderY * movement.crouching.crouchColliderHeightMultiple; ((Component)this).GetComponent().center = center3; ((Component)this).GetComponent().height = originalColliderHeight * movement.crouching.crouchColliderHeightMultiple; colliderAdjusted = true; } else { if (colliderAdjusted) { Vector3 center4 = ((Component)this).GetComponent().center; center4.y = originalColliderY; ((Component)this).GetComponent().center = center4; ((Component)this).GetComponent().height = originalColliderHeight; } colliderAdjusted = false; originalColliderY = ((Component)this).GetComponent().center.y; originalColliderHeight = ((Component)this).GetComponent().height; Bounds bounds3 = ((Collider)((Component)this).GetComponent()).bounds; feetPosition = ((Bounds)(ref bounds3)).min; Bounds bounds4 = ((Collider)((Component)this).GetComponent()).bounds; headPosition = ((Bounds)(ref bounds4)).max; oldYPos = ((Component)this).transform.position.y; } } else if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { if (crouching) { Vector3 center5 = ((Component)this).GetComponent().center; center5.y = originalColliderY * movement.crouching.crouchColliderHeightMultiple; ((Component)this).GetComponent().center = center5; ((Component)this).GetComponent().radius = originalColliderHeight * movement.crouching.crouchColliderHeightMultiple; colliderAdjusted = true; } else { if (colliderAdjusted) { Vector3 center6 = ((Component)this).GetComponent().center; center6.y = originalColliderY; ((Component)this).GetComponent().center = center6; ((Component)this).GetComponent().radius = originalColliderHeight; } colliderAdjusted = false; originalColliderY = ((Component)this).GetComponent().center.y; originalColliderHeight = ((Component)this).GetComponent().radius; Bounds bounds5 = ((Collider)((Component)this).GetComponent()).bounds; feetPosition = ((Bounds)(ref bounds5)).min; Bounds bounds6 = ((Collider)((Component)this).GetComponent()).bounds; headPosition = ((Bounds)(ref bounds6)).max; oldYPos = ((Component)this).transform.position.y; } } else if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { if (crouching) { Vector3 center7 = ((Component)this).GetComponent().center; center7.y = originalColliderY * movement.crouching.crouchColliderHeightMultiple; ((Component)this).GetComponent().center = center7; Vector3 size = ((Component)this).GetComponent().size; size.y = originalColliderHeight * movement.crouching.crouchColliderHeightMultiple; ((Component)this).GetComponent().size = size; colliderAdjusted = true; } else { if (colliderAdjusted) { Vector3 center8 = ((Component)this).GetComponent().center; center8.y = originalColliderY; ((Component)this).GetComponent().center = center8; Vector3 size2 = ((Component)this).GetComponent().size; size2.y = originalColliderHeight; ((Component)this).GetComponent().size = size2; } colliderAdjusted = false; originalColliderY = ((Component)this).GetComponent().center.y; originalColliderHeight = ((Component)this).GetComponent().size.y; Bounds bounds7 = ((Collider)((Component)this).GetComponent()).bounds; feetPosition = ((Bounds)(ref bounds7)).min; Bounds bounds8 = ((Collider)((Component)this).GetComponent()).bounds; headPosition = ((Bounds)(ref bounds8)).max; oldYPos = ((Component)this).transform.position.y; } } } feetPositionNew = feetPosition.y + (((Component)this).transform.position.y - oldYPos); headPositionNew = headPosition.y + (((Component)this).transform.position.y - oldYPos); } private void GettingClimbingValues() { //IL_00a2: Unknown result type (might be due to invalid IL or missing references) //IL_00bf: Unknown result type (might be due to invalid IL or missing references) //IL_00c4: Unknown result type (might be due to invalid IL or missing references) //IL_0214: Unknown result type (might be due to invalid IL or missing references) //IL_0231: Unknown result type (might be due to invalid IL or missing references) //IL_0236: Unknown result type (might be due to invalid IL or missing references) //IL_0242: Unknown result type (might be due to invalid IL or missing references) //IL_025f: Unknown result type (might be due to invalid IL or missing references) //IL_0264: Unknown result type (might be due to invalid IL or missing references) //IL_0270: Unknown result type (might be due to invalid IL or missing references) //IL_0287: Unknown result type (might be due to invalid IL or missing references) //IL_028c: Unknown result type (might be due to invalid IL or missing references) //IL_02b6: Unknown result type (might be due to invalid IL or missing references) //IL_02d3: Unknown result type (might be due to invalid IL or missing references) //IL_02d8: Unknown result type (might be due to invalid IL or missing references) //IL_037a: Unknown result type (might be due to invalid IL or missing references) //IL_0391: Unknown result type (might be due to invalid IL or missing references) //IL_0396: Unknown result type (might be due to invalid IL or missing references) //IL_03d7: Unknown result type (might be due to invalid IL or missing references) //IL_03f9: Unknown result type (might be due to invalid IL or missing references) //IL_03fe: Unknown result type (might be due to invalid IL or missing references) //IL_040a: Unknown result type (might be due to invalid IL or missing references) //IL_0426: Unknown result type (might be due to invalid IL or missing references) //IL_042b: Unknown result type (might be due to invalid IL or missing references) //IL_0437: Unknown result type (might be due to invalid IL or missing references) //IL_0453: Unknown result type (might be due to invalid IL or missing references) //IL_0458: Unknown result type (might be due to invalid IL or missing references) //IL_0464: Unknown result type (might be due to invalid IL or missing references) //IL_0480: Unknown result type (might be due to invalid IL or missing references) //IL_0485: Unknown result type (might be due to invalid IL or missing references) //IL_0491: Unknown result type (might be due to invalid IL or missing references) //IL_04ad: Unknown result type (might be due to invalid IL or missing references) //IL_04b2: Unknown result type (might be due to invalid IL or missing references) //IL_04be: Unknown result type (might be due to invalid IL or missing references) //IL_04da: Unknown result type (might be due to invalid IL or missing references) //IL_04df: Unknown result type (might be due to invalid IL or missing references) //IL_04eb: Unknown result type (might be due to invalid IL or missing references) //IL_050d: Unknown result type (might be due to invalid IL or missing references) //IL_0512: Unknown result type (might be due to invalid IL or missing references) //IL_051e: Unknown result type (might be due to invalid IL or missing references) //IL_0540: Unknown result type (might be due to invalid IL or missing references) //IL_0545: Unknown result type (might be due to invalid IL or missing references) if (!wallIsClimbable && !currentlyClimbingWall && !turnBack && !back2 && !pullingUp) { if (i == climbing.Length) { i = 0; } if (!firstTest && !secondTest && !thirdTest && !fourthTest && !fifthTest) { tagNum = i; } } climbingSurfaceDetectorsUpAmount2 = ((Component)this).transform.up * (climbing[tagNum].climbingSurfaceDetectorsUpAmount + 0.2f); climbingSurfaceDetectorsHeight2 = climbing[tagNum].climbingSurfaceDetectorsHeight - 0.18f; climbingSurfaceDetectorsLength2 = climbing[tagNum].climbingSurfaceDetectorsLength - 0.5f; distanceToPushOffAfterLettingGo2 = climbing[tagNum].distanceToPushOffAfterLettingGo; rotationToClimbableObjectSpeed2 = climbing[tagNum].rotationToClimbableObjectSpeed; climbHorizontally2 = climbing[tagNum].climbHorizontally; climbVertically2 = climbing[tagNum].climbVertically; climbMovementSpeed2 = climbing[tagNum].climbMovementSpeed; climbRotationSpeed2 = climbing[tagNum].climbRotationSpeed; moveInBursts = climbing[tagNum].moveInBursts; burstLength = climbing[tagNum].burstLength; climbableTag2 = climbing[tagNum].climbableTag; stayUpright2 = climbing[tagNum].stayUpright; snapToCenterOfObject2 = climbing[tagNum].snapToCenterOfObject; bottomNoSurfaceDetectorHeight2 = ((Component)this).transform.up * (climbing[tagNum].bottomNoSurfaceDetectorHeight + 0.15f); topNoSurfaceDetectorHeight2 = ((Component)this).transform.up * (climbing[tagNum].topNoSurfaceDetectorHeight + 0.15f); topAndBottomNoSurfaceDetectorsWidth2 = ((Component)this).transform.right * climbing[tagNum].topAndBottomNoSurfaceDetectorsWidth; sideNoSurfaceDetectorsHeight2 = climbing[tagNum].sideNoSurfaceDetectorsHeight - 0.15f; sideNoSurfaceDetectorsWidth2 = ((Component)this).transform.right * (climbing[tagNum].sideNoSurfaceDetectorsWidth - 0.25f); sideNoSurfaceDetectorsWidthTurnBack2 = climbing[tagNum].sideNoSurfaceDetectorsWidth - 0.25f; stopAtSides2 = climbing[tagNum].stopAtSides; dropOffAtBottom2 = climbing[tagNum].dropOffAtBottom; dropOffAtFloor2 = climbing[tagNum].dropOffAtFloor; pullUpAtTop2 = climbing[tagNum].pullUpAtTop; pullUpSpeed = climbing[tagNum].pullUpSpeed; pullUpLocationForward2 = ((Component)this).transform.forward * climbing[tagNum].pullUpLocationForward; pushAgainstWallIfPlayerIsStuck2 = climbing[tagNum].pushAgainstWallIfPlayerIsStuck; allowGrabbingOnAfterWalkingOffLedge2 = climbing[tagNum].walkingOffOfClimbableSurface.allowGrabbingOnAfterWalkingOffLedge; spaceInFrontNeededToGrabBackOn2 = ((Component)this).transform.forward * (climbing[tagNum].walkingOffOfClimbableSurface.spaceInFrontNeededToGrabBackOn + 0.03f); firstSideLedgeDetectorsHeight2 = ((Component)this).transform.up * climbing[tagNum].walkingOffOfClimbableSurface.firstSideLedgeDetectorsHeight; secondSideLedgeDetectorsHeight2 = ((Component)this).transform.up * climbing[tagNum].walkingOffOfClimbableSurface.secondSideLedgeDetectorsHeight; thirdSideLedgeDetectorsHeight2 = ((Component)this).transform.up * climbing[tagNum].walkingOffOfClimbableSurface.thirdSideLedgeDetectorsHeight; sideLedgeDetectorsWidth2 = ((Component)this).transform.right * climbing[tagNum].walkingOffOfClimbableSurface.sideLedgeDetectorsWidth; sideLedgeDetectorsLength2 = ((Component)this).transform.forward * climbing[tagNum].walkingOffOfClimbableSurface.sideLedgeDetectorsLength; spaceBelowNeededToGrabBackOnHeight2 = ((Component)this).transform.up * (climbing[tagNum].walkingOffOfClimbableSurface.spaceBelowNeededToGrabBackOnHeight + 0.07f); spaceBelowNeededToGrabBackOnForward2 = ((Component)this).transform.forward * (climbing[tagNum].walkingOffOfClimbableSurface.spaceBelowNeededToGrabBackOnForward + 0.06f); wallScriptsToEnableOnGrab = climbing[tagNum].scriptsToEnableOnGrab; wallScriptsToDisableOnGrab = climbing[tagNum].scriptsToDisableOnGrab; } private void AvoidSlidingWhileClimbing() { //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_00a9: Unknown result type (might be due to invalid IL or missing references) //IL_00ae: Unknown result type (might be due to invalid IL or missing references) //IL_00c3: Unknown result type (might be due to invalid IL or missing references) //IL_00c8: Unknown result type (might be due to invalid IL or missing references) //IL_006b: Unknown result type (might be due to invalid IL or missing references) //IL_0070: Unknown result type (might be due to invalid IL or missing references) //IL_0084: Unknown result type (might be due to invalid IL or missing references) //IL_0089: Unknown result type (might be due to invalid IL or missing references) //IL_0091: Unknown result type (might be due to invalid IL or missing references) //IL_0138: Unknown result type (might be due to invalid IL or missing references) if (currentlyClimbingWall && !pullingUp) { if (Mathf.Abs(((Component)this).transform.position.y - lastYPosOnWall) >= 0.2f * (climbMovementSpeed2 / 4f) && lastYPosOnWall != 0f) { ((Component)this).transform.position = new Vector3(((Component)this).transform.position.x, climbingHeight, ((Component)this).transform.position.z); } else { climbingHeight = ((Component)this).transform.position.y; } lastYPosOnWall = ((Component)this).transform.position.y; } else { lastYPosOnWall = 0f; } if (currentlyClimbingWall || pullingUp || turnBack || back2) { if (Object.op_Implicit((Object)(object)rigidBody) && !startedClimbing) { rigidBody.velocity = Vector3.zero; } startedClimbing = true; } else { startedClimbing = false; } } private void MovingPlatformParenting() { //IL_005b: Unknown result type (might be due to invalid IL or missing references) //IL_0060: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_007e: Unknown result type (might be due to invalid IL or missing references) //IL_0097: Unknown result type (might be due to invalid IL or missing references) //IL_009c: Unknown result type (might be due to invalid IL or missing references) //IL_00a5: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_00ca: Unknown result type (might be due to invalid IL or missing references) //IL_00de: Unknown result type (might be due to invalid IL or missing references) //IL_00e3: Unknown result type (might be due to invalid IL or missing references) //IL_00f8: Unknown result type (might be due to invalid IL or missing references) //IL_00fd: Unknown result type (might be due to invalid IL or missing references) //IL_0107: Unknown result type (might be due to invalid IL or missing references) noCollisionWithPlatformTimer += 1f; if ((Object)(object)emptyObject != (Object)null) { emptyObjectParent = ((Component)emptyObject.transform.parent).gameObject; emptyObject.transform.localScale = new Vector3(1f / emptyObjectParent.transform.localScale.x, 1f / emptyObjectParent.transform.localScale.y, 1f / emptyObjectParent.transform.localScale.z); emptyObject.transform.localRotation = Quaternion.Euler(0f - emptyObjectParent.transform.localRotation.x, 0f - emptyObjectParent.transform.localRotation.y, 0f - emptyObjectParent.transform.localRotation.z); } else { emptyObjectParent = null; } if ((Object)(object)((Component)this).transform.parent == (Object)null) { oldParent = null; } else if ((Object)(object)emptyObject == (Object)null || (Object)(object)((Component)this).transform.parent != (Object)(object)emptyObject.transform) { oldParent = ((Component)((Component)this).transform.parent).gameObject; } else { oldParent = null; } } private void Attacks() { //IL_0468: Unknown result type (might be due to invalid IL or missing references) //IL_046d: Unknown result type (might be due to invalid IL or missing references) //IL_0511: Unknown result type (might be due to invalid IL or missing references) //IL_0516: Unknown result type (might be due to invalid IL or missing references) //IL_02ae: Unknown result type (might be due to invalid IL or missing references) //IL_02b3: Unknown result type (might be due to invalid IL or missing references) //IL_0357: Unknown result type (might be due to invalid IL or missing references) //IL_035c: Unknown result type (might be due to invalid IL or missing references) if (attacking.ground.numberAndStrengthOfAttacks.Length > 0) { if (attackState == 0) { totalAttackNumber = attacking.ground.numberAndStrengthOfAttacks.Length; if (attackedInMidAir) { currentAttackNumber = totalAttackNumber; attackPressesRemembered = totalAttackNumber; } attackedInMidAir = false; } else { totalAttackNumber = attacking.air.numberAndStrengthOfMidAirAttacks.Length; } } else { totalAttackNumber = 0; } if (!crouching) { if (grounded.currentlyGrounded || currentlyOnWall || currentlyClimbingWall || turnBack || back2) { if (attackState == 1) { waitingBetweenAttacksTimerGround = attacking.ground.waitingBeforeAttackingAgain.waitingTime; } attackState = 0; } else { if (attackState == 0) { waitingBetweenAttacksTimerGround = attacking.air.waitingBeforeAttackingAgain.waitingTime; } attackState = 1; } } else { attackState = 2; } if ((Input.GetKey((KeyCode)306) || Input.GetKey((KeyCode)358)) && movement.crouching.allowCrouching) { return; } if (Input.GetButton(attacking.attackInputButton) && !attackButtonPressed) { attackPressedTimer = 0f; attackPressed = true; canAttack = true; attackButtonPressed = true; } else { attackPressedTimer += 0.02f; if (!Input.GetButton(attacking.attackInputButton)) { attackButtonPressed = false; } } if (attackPressedTimer > 0.2f) { attackPressed = false; } if (attackPressed && !currentlyOnWall && !currentlyClimbingWall && !turnBack && !back2 && !crouchCancelsAttack && canCrouchToAction && !crouching) { if (canAttack) { if (attackState == 0) { if (attacking.ground.waitingBeforeAttackingAgain.waitForAnimationToFinish) { AnimatorStateInfo currentAnimatorStateInfo = animator.GetCurrentAnimatorStateInfo(0); if (!((AnimatorStateInfo)(ref currentAnimatorStateInfo)).IsName("Attack") && waitingBetweenAttacksTimerGround > attacking.ground.waitingBeforeAttackingAgain.waitingTime) { goto IL_03f3; } } if ((!attacking.ground.waitingBeforeAttackingAgain.waitForAnimationToFinish && waitingBetweenAttacksTimerGround > attacking.ground.waitingBeforeAttackingAgain.waitingTime) || rememberAttackButtonPressesGround) { goto IL_03f3; } } if (attackState == 1) { if (attacking.air.waitingBeforeAttackingAgain.waitForAnimationToFinish) { AnimatorStateInfo currentAnimatorStateInfo2 = animator.GetCurrentAnimatorStateInfo(0); if (!((AnimatorStateInfo)(ref currentAnimatorStateInfo2)).IsName("Attack") && waitingBetweenAttacksTimerAir > attacking.air.waitingBeforeAttackingAgain.waitingTime) { goto IL_03d3; } } if ((!attacking.air.waitingBeforeAttackingAgain.waitForAnimationToFinish && waitingBetweenAttacksTimerAir > attacking.air.waitingBeforeAttackingAgain.waitingTime) || rememberAttackButtonPressesAir) { goto IL_03d3; } } } } else if (attackState == 0) { canAttack = true; } goto IL_0431; IL_0582: if (currentAttackNumber != attackPressesRemembered) { currentAttackNumber++; if ((Object)(object)animator != (Object)null && (Object)(object)animator.runtimeAnimatorController != (Object)null) { animator.CrossFade("Attack", 0f, -1, 0f); } waitingBetweenAttacksTimerGround = 0f; waitingBetweenAttacksTimerAir = 0f; attackTimer = 0f; } goto IL_0608; IL_03d3: if (!attackedInMidAir || !attacking.air.onlyAllowAttackOnceInMidAir) { goto IL_03f3; } goto IL_0431; IL_0431: if (attackState == 0 && rememberAttackButtonPressesGround) { if (attacking.ground.waitingBeforeAttackingAgain.waitForAnimationToFinish) { AnimatorStateInfo currentAnimatorStateInfo3 = animator.GetCurrentAnimatorStateInfo(0); if (!((AnimatorStateInfo)(ref currentAnimatorStateInfo3)).IsName("Attack") && waitingBetweenAttacksTimerGround > attacking.ground.waitingBeforeAttackingAgain.waitingTime) { goto IL_0582; } } if (!attacking.ground.waitingBeforeAttackingAgain.waitForAnimationToFinish && waitingBetweenAttacksTimerGround > attacking.ground.waitingBeforeAttackingAgain.waitingTime) { goto IL_0582; } } if (attackState == 1 && rememberAttackButtonPressesAir) { if (attacking.air.waitingBeforeAttackingAgain.waitForAnimationToFinish) { AnimatorStateInfo currentAnimatorStateInfo4 = animator.GetCurrentAnimatorStateInfo(0); if (!((AnimatorStateInfo)(ref currentAnimatorStateInfo4)).IsName("Attack") && waitingBetweenAttacksTimerAir > attacking.air.waitingBeforeAttackingAgain.waitingTime) { goto IL_0582; } } if (!attacking.air.waitingBeforeAttackingAgain.waitForAnimationToFinish && waitingBetweenAttacksTimerAir > attacking.air.waitingBeforeAttackingAgain.waitingTime) { goto IL_0582; } } goto IL_0608; IL_03f3: Attack(); if (attackState == 1) { attackedInMidAir = true; } canAttack = false; goto IL_0431; IL_0608: attackTimer += 0.02f; waitingBetweenAttacksTimerGround += 0.02f; waitingBetweenAttacksTimerAir += 0.02f; if ((attackState == 0 && attackTimer > comboTimeLimitGround && comboTimeLimitGround > 0f) || (attackState == 1 && attackTimer > comboTimeLimitAir && comboTimeLimitAir > 0f)) { currentAttackNumber = totalAttackNumber; attackPressesRemembered = totalAttackNumber; } if ((Object)(object)animator != (Object)null && (Object)(object)animator.runtimeAnimatorController != (Object)null) { animator.SetFloat("attackState", (float)attackState); animator.SetFloat("attackNumber", (float)currentAttackNumber); } } private void GettingRotationDirection() { //IL_001b: Unknown result type (might be due to invalid IL or missing references) //IL_0020: Unknown result type (might be due to invalid IL or missing references) //IL_0026: Unknown result type (might be due to invalid IL or missing references) //IL_002b: Unknown result type (might be due to invalid IL or missing references) //IL_0049: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0054: Unknown result type (might be due to invalid IL or missing references) //IL_006b: Unknown result type (might be due to invalid IL or missing references) //IL_0071: Unknown result type (might be due to invalid IL or missing references) //IL_0076: Unknown result type (might be due to invalid IL or missing references) directionVector = new Vector3(Input.GetAxis("Horizontal"), 0f, Input.GetAxis("Vertical")); if (directionVector != Vector3.zero) { float magnitude = ((Vector3)(ref directionVector)).magnitude; directionVector /= magnitude; magnitude = Mathf.Min(1f, magnitude); magnitude *= magnitude; directionVector *= magnitude; } } private void CheckRBForUseGravity() { if (Object.op_Implicit((Object)(object)rigidBody)) { if (rigidBody.useGravity && !currentlyOnWall && !currentlyClimbingWall && !turnBack && !back2 && !inWater) { rbUsesGravity = true; } if (currentlyOnWall || currentlyClimbingWall || turnBack || back2 || inWater) { canChangeRbGravity = true; rigidBody.useGravity = false; } else if (rbUsesGravity && canChangeRbGravity) { rigidBody.useGravity = true; canChangeRbGravity = false; } if (!rigidBody.useGravity && !currentlyOnWall && !currentlyClimbingWall && !turnBack && !back2 && !inWater) { rbUsesGravity = false; } } } private void CheckForCharacterController() { //IL_009c: Unknown result type (might be due to invalid IL or missing references) if (!swimming.allowColliderRotationByUsingRigidbody) { return; } if (Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled) { playerUsesCC = true; } if (inWater) { canChangeCC = true; if (Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled) { Rigidbody val = ((Component)this).gameObject.AddComponent(); val.freezeRotation = true; val.useGravity = false; CapsuleCollider val2 = ((Component)this).gameObject.AddComponent(); val2.center = characterController.center; val2.radius = characterController.radius; val2.height = characterController.height; } if ((Object)(object)characterController != (Object)null) { ((Collider)characterController).enabled = false; } } else if (playerUsesCC && canChangeCC && Object.op_Implicit((Object)(object)rigidBody)) { if (!Object.op_Implicit((Object)(object)characterController) || !((Collider)characterController).enabled) { Object.Destroy((Object)(object)rigidBody); Object.Destroy((Object)(object)((Component)this).GetComponent()); } ((Collider)((Component)this).GetComponent()).enabled = true; canChangeCC = false; } if (!Object.op_Implicit((Object)(object)characterController) && !inWater) { playerUsesCC = false; } } private void CheckIfWallJumpIsPossible() { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0028: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_0049: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Unknown result type (might be due to invalid IL or missing references) //IL_0073: Unknown result type (might be due to invalid IL or missing references) //IL_007e: Unknown result type (might be due to invalid IL or missing references) //IL_06d5: Unknown result type (might be due to invalid IL or missing references) //IL_06db: Unknown result type (might be due to invalid IL or missing references) //IL_06e0: Unknown result type (might be due to invalid IL or missing references) //IL_06eb: Unknown result type (might be due to invalid IL or missing references) //IL_06f1: Unknown result type (might be due to invalid IL or missing references) //IL_06f6: Unknown result type (might be due to invalid IL or missing references) //IL_0701: Unknown result type (might be due to invalid IL or missing references) //IL_0712: Unknown result type (might be due to invalid IL or missing references) //IL_0717: Unknown result type (might be due to invalid IL or missing references) //IL_0722: Unknown result type (might be due to invalid IL or missing references) //IL_0733: Unknown result type (might be due to invalid IL or missing references) //IL_073d: Unknown result type (might be due to invalid IL or missing references) //IL_0742: Unknown result type (might be due to invalid IL or missing references) //IL_074e: Unknown result type (might be due to invalid IL or missing references) //IL_00a5: Unknown result type (might be due to invalid IL or missing references) //IL_00ab: Unknown result type (might be due to invalid IL or missing references) //IL_00b0: Unknown result type (might be due to invalid IL or missing references) //IL_00bb: Unknown result type (might be due to invalid IL or missing references) //IL_00cc: Unknown result type (might be due to invalid IL or missing references) //IL_00d6: Unknown result type (might be due to invalid IL or missing references) //IL_00db: Unknown result type (might be due to invalid IL or missing references) //IL_00e6: Unknown result type (might be due to invalid IL or missing references) //IL_00ec: Unknown result type (might be due to invalid IL or missing references) //IL_00f1: Unknown result type (might be due to invalid IL or missing references) //IL_00fc: Unknown result type (might be due to invalid IL or missing references) //IL_010d: Unknown result type (might be due to invalid IL or missing references) //IL_0112: Unknown result type (might be due to invalid IL or missing references) //IL_011d: Unknown result type (might be due to invalid IL or missing references) //IL_012e: Unknown result type (might be due to invalid IL or missing references) //IL_0138: Unknown result type (might be due to invalid IL or missing references) //IL_013d: Unknown result type (might be due to invalid IL or missing references) //IL_0149: Unknown result type (might be due to invalid IL or missing references) //IL_076c: Unknown result type (might be due to invalid IL or missing references) //IL_0777: Unknown result type (might be due to invalid IL or missing references) //IL_0167: Unknown result type (might be due to invalid IL or missing references) //IL_0172: Unknown result type (might be due to invalid IL or missing references) //IL_0ed0: Unknown result type (might be due to invalid IL or missing references) //IL_0ed6: Unknown result type (might be due to invalid IL or missing references) //IL_0edb: Unknown result type (might be due to invalid IL or missing references) //IL_0ee6: Unknown result type (might be due to invalid IL or missing references) //IL_0eec: Unknown result type (might be due to invalid IL or missing references) //IL_0ef1: Unknown result type (might be due to invalid IL or missing references) //IL_0efc: Unknown result type (might be due to invalid IL or missing references) //IL_0f0d: Unknown result type (might be due to invalid IL or missing references) //IL_0f12: Unknown result type (might be due to invalid IL or missing references) //IL_0f1d: Unknown result type (might be due to invalid IL or missing references) //IL_0f2e: Unknown result type (might be due to invalid IL or missing references) //IL_0f38: Unknown result type (might be due to invalid IL or missing references) //IL_0f3d: Unknown result type (might be due to invalid IL or missing references) //IL_0f49: Unknown result type (might be due to invalid IL or missing references) //IL_079e: Unknown result type (might be due to invalid IL or missing references) //IL_07a4: Unknown result type (might be due to invalid IL or missing references) //IL_07a9: Unknown result type (might be due to invalid IL or missing references) //IL_07b4: Unknown result type (might be due to invalid IL or missing references) //IL_07c5: Unknown result type (might be due to invalid IL or missing references) //IL_07cf: Unknown result type (might be due to invalid IL or missing references) //IL_07d4: Unknown result type (might be due to invalid IL or missing references) //IL_07df: Unknown result type (might be due to invalid IL or missing references) //IL_07e5: Unknown result type (might be due to invalid IL or missing references) //IL_07ea: Unknown result type (might be due to invalid IL or missing references) //IL_07f5: Unknown result type (might be due to invalid IL or missing references) //IL_0806: Unknown result type (might be due to invalid IL or missing references) //IL_080b: Unknown result type (might be due to invalid IL or missing references) //IL_0816: Unknown result type (might be due to invalid IL or missing references) //IL_0827: Unknown result type (might be due to invalid IL or missing references) //IL_0831: Unknown result type (might be due to invalid IL or missing references) //IL_0836: Unknown result type (might be due to invalid IL or missing references) //IL_0841: Unknown result type (might be due to invalid IL or missing references) //IL_0852: Unknown result type (might be due to invalid IL or missing references) //IL_085c: Unknown result type (might be due to invalid IL or missing references) //IL_0861: Unknown result type (might be due to invalid IL or missing references) //IL_086d: Unknown result type (might be due to invalid IL or missing references) //IL_0199: Unknown result type (might be due to invalid IL or missing references) //IL_019f: Unknown result type (might be due to invalid IL or missing references) //IL_01a4: Unknown result type (might be due to invalid IL or missing references) //IL_01af: Unknown result type (might be due to invalid IL or missing references) //IL_01c0: Unknown result type (might be due to invalid IL or missing references) //IL_01ca: Unknown result type (might be due to invalid IL or missing references) //IL_01cf: Unknown result type (might be due to invalid IL or missing references) //IL_01da: Unknown result type (might be due to invalid IL or missing references) //IL_01e0: Unknown result type (might be due to invalid IL or missing references) //IL_01e5: Unknown result type (might be due to invalid IL or missing references) //IL_01f0: Unknown result type (might be due to invalid IL or missing references) //IL_0201: Unknown result type (might be due to invalid IL or missing references) //IL_0206: Unknown result type (might be due to invalid IL or missing references) //IL_0211: Unknown result type (might be due to invalid IL or missing references) //IL_0222: Unknown result type (might be due to invalid IL or missing references) //IL_022c: Unknown result type (might be due to invalid IL or missing references) //IL_0231: Unknown result type (might be due to invalid IL or missing references) //IL_023d: Unknown result type (might be due to invalid IL or missing references) //IL_0f67: Unknown result type (might be due to invalid IL or missing references) //IL_0f72: Unknown result type (might be due to invalid IL or missing references) //IL_088b: Unknown result type (might be due to invalid IL or missing references) //IL_0896: Unknown result type (might be due to invalid IL or missing references) //IL_025b: Unknown result type (might be due to invalid IL or missing references) //IL_0266: Unknown result type (might be due to invalid IL or missing references) //IL_0f99: Unknown result type (might be due to invalid IL or missing references) //IL_0f9f: Unknown result type (might be due to invalid IL or missing references) //IL_0fa4: Unknown result type (might be due to invalid IL or missing references) //IL_0faf: Unknown result type (might be due to invalid IL or missing references) //IL_0fc0: Unknown result type (might be due to invalid IL or missing references) //IL_0fca: Unknown result type (might be due to invalid IL or missing references) //IL_0fcf: Unknown result type (might be due to invalid IL or missing references) //IL_0fda: Unknown result type (might be due to invalid IL or missing references) //IL_0fe0: Unknown result type (might be due to invalid IL or missing references) //IL_0fe5: Unknown result type (might be due to invalid IL or missing references) //IL_0ff0: Unknown result type (might be due to invalid IL or missing references) //IL_1001: Unknown result type (might be due to invalid IL or missing references) //IL_1006: Unknown result type (might be due to invalid IL or missing references) //IL_1011: Unknown result type (might be due to invalid IL or missing references) //IL_1022: Unknown result type (might be due to invalid IL or missing references) //IL_102c: Unknown result type (might be due to invalid IL or missing references) //IL_1031: Unknown result type (might be due to invalid IL or missing references) //IL_103c: Unknown result type (might be due to invalid IL or missing references) //IL_104d: Unknown result type (might be due to invalid IL or missing references) //IL_1057: Unknown result type (might be due to invalid IL or missing references) //IL_105c: Unknown result type (might be due to invalid IL or missing references) //IL_1068: Unknown result type (might be due to invalid IL or missing references) //IL_08bd: Unknown result type (might be due to invalid IL or missing references) //IL_08c3: Unknown result type (might be due to invalid IL or missing references) //IL_08c8: Unknown result type (might be due to invalid IL or missing references) //IL_08d3: Unknown result type (might be due to invalid IL or missing references) //IL_08e4: Unknown result type (might be due to invalid IL or missing references) //IL_08ee: Unknown result type (might be due to invalid IL or missing references) //IL_08f3: Unknown result type (might be due to invalid IL or missing references) //IL_08fe: Unknown result type (might be due to invalid IL or missing references) //IL_0904: Unknown result type (might be due to invalid IL or missing references) //IL_0909: Unknown result type (might be due to invalid IL or missing references) //IL_0914: Unknown result type (might be due to invalid IL or missing references) //IL_0925: Unknown result type (might be due to invalid IL or missing references) //IL_092a: Unknown result type (might be due to invalid IL or missing references) //IL_0935: Unknown result type (might be due to invalid IL or missing references) //IL_0946: Unknown result type (might be due to invalid IL or missing references) //IL_0950: Unknown result type (might be due to invalid IL or missing references) //IL_0955: Unknown result type (might be due to invalid IL or missing references) //IL_0960: Unknown result type (might be due to invalid IL or missing references) //IL_0971: Unknown result type (might be due to invalid IL or missing references) //IL_097b: Unknown result type (might be due to invalid IL or missing references) //IL_0980: Unknown result type (might be due to invalid IL or missing references) //IL_098c: Unknown result type (might be due to invalid IL or missing references) //IL_028d: Unknown result type (might be due to invalid IL or missing references) //IL_0293: Unknown result type (might be due to invalid IL or missing references) //IL_0298: Unknown result type (might be due to invalid IL or missing references) //IL_02a3: Unknown result type (might be due to invalid IL or missing references) //IL_02b4: Unknown result type (might be due to invalid IL or missing references) //IL_02be: Unknown result type (might be due to invalid IL or missing references) //IL_02c3: Unknown result type (might be due to invalid IL or missing references) //IL_02ce: Unknown result type (might be due to invalid IL or missing references) //IL_02d4: Unknown result type (might be due to invalid IL or missing references) //IL_02d9: Unknown result type (might be due to invalid IL or missing references) //IL_02e4: Unknown result type (might be due to invalid IL or missing references) //IL_02f5: Unknown result type (might be due to invalid IL or missing references) //IL_02fa: Unknown result type (might be due to invalid IL or missing references) //IL_0305: Unknown result type (might be due to invalid IL or missing references) //IL_0316: Unknown result type (might be due to invalid IL or missing references) //IL_0320: Unknown result type (might be due to invalid IL or missing references) //IL_0325: Unknown result type (might be due to invalid IL or missing references) //IL_0331: Unknown result type (might be due to invalid IL or missing references) //IL_1086: Unknown result type (might be due to invalid IL or missing references) //IL_1091: Unknown result type (might be due to invalid IL or missing references) //IL_09aa: Unknown result type (might be due to invalid IL or missing references) //IL_09b5: Unknown result type (might be due to invalid IL or missing references) //IL_034f: Unknown result type (might be due to invalid IL or missing references) //IL_035a: Unknown result type (might be due to invalid IL or missing references) //IL_10b8: Unknown result type (might be due to invalid IL or missing references) //IL_10be: Unknown result type (might be due to invalid IL or missing references) //IL_10c3: Unknown result type (might be due to invalid IL or missing references) //IL_10ce: Unknown result type (might be due to invalid IL or missing references) //IL_10df: Unknown result type (might be due to invalid IL or missing references) //IL_10e9: Unknown result type (might be due to invalid IL or missing references) //IL_10ee: Unknown result type (might be due to invalid IL or missing references) //IL_10f9: Unknown result type (might be due to invalid IL or missing references) //IL_10ff: Unknown result type (might be due to invalid IL or missing references) //IL_1104: Unknown result type (might be due to invalid IL or missing references) //IL_110f: Unknown result type (might be due to invalid IL or missing references) //IL_1120: Unknown result type (might be due to invalid IL or missing references) //IL_1125: Unknown result type (might be due to invalid IL or missing references) //IL_1130: Unknown result type (might be due to invalid IL or missing references) //IL_1141: Unknown result type (might be due to invalid IL or missing references) //IL_114b: Unknown result type (might be due to invalid IL or missing references) //IL_1150: Unknown result type (might be due to invalid IL or missing references) //IL_115b: Unknown result type (might be due to invalid IL or missing references) //IL_116c: Unknown result type (might be due to invalid IL or missing references) //IL_1176: Unknown result type (might be due to invalid IL or missing references) //IL_117b: Unknown result type (might be due to invalid IL or missing references) //IL_1187: Unknown result type (might be due to invalid IL or missing references) //IL_09dc: Unknown result type (might be due to invalid IL or missing references) //IL_09e2: Unknown result type (might be due to invalid IL or missing references) //IL_09e7: Unknown result type (might be due to invalid IL or missing references) //IL_09f2: Unknown result type (might be due to invalid IL or missing references) //IL_0a03: Unknown result type (might be due to invalid IL or missing references) //IL_0a0d: Unknown result type (might be due to invalid IL or missing references) //IL_0a12: Unknown result type (might be due to invalid IL or missing references) //IL_0a1d: Unknown result type (might be due to invalid IL or missing references) //IL_0a23: Unknown result type (might be due to invalid IL or missing references) //IL_0a28: Unknown result type (might be due to invalid IL or missing references) //IL_0a33: Unknown result type (might be due to invalid IL or missing references) //IL_0a44: Unknown result type (might be due to invalid IL or missing references) //IL_0a49: Unknown result type (might be due to invalid IL or missing references) //IL_0a54: Unknown result type (might be due to invalid IL or missing references) //IL_0a65: Unknown result type (might be due to invalid IL or missing references) //IL_0a6f: Unknown result type (might be due to invalid IL or missing references) //IL_0a74: Unknown result type (might be due to invalid IL or missing references) //IL_0a7f: Unknown result type (might be due to invalid IL or missing references) //IL_0a90: Unknown result type (might be due to invalid IL or missing references) //IL_0a9a: Unknown result type (might be due to invalid IL or missing references) //IL_0a9f: Unknown result type (might be due to invalid IL or missing references) //IL_0aab: Unknown result type (might be due to invalid IL or missing references) //IL_0381: Unknown result type (might be due to invalid IL or missing references) //IL_0387: Unknown result type (might be due to invalid IL or missing references) //IL_038c: Unknown result type (might be due to invalid IL or missing references) //IL_0397: Unknown result type (might be due to invalid IL or missing references) //IL_03a8: Unknown result type (might be due to invalid IL or missing references) //IL_03b2: Unknown result type (might be due to invalid IL or missing references) //IL_03b7: Unknown result type (might be due to invalid IL or missing references) //IL_03c2: Unknown result type (might be due to invalid IL or missing references) //IL_03c8: Unknown result type (might be due to invalid IL or missing references) //IL_03cd: Unknown result type (might be due to invalid IL or missing references) //IL_03d8: Unknown result type (might be due to invalid IL or missing references) //IL_03e9: Unknown result type (might be due to invalid IL or missing references) //IL_03ee: Unknown result type (might be due to invalid IL or missing references) //IL_03f9: Unknown result type (might be due to invalid IL or missing references) //IL_040a: Unknown result type (might be due to invalid IL or missing references) //IL_0414: Unknown result type (might be due to invalid IL or missing references) //IL_0419: Unknown result type (might be due to invalid IL or missing references) //IL_0425: Unknown result type (might be due to invalid IL or missing references) //IL_11a5: Unknown result type (might be due to invalid IL or missing references) //IL_11b0: Unknown result type (might be due to invalid IL or missing references) //IL_0ac9: Unknown result type (might be due to invalid IL or missing references) //IL_0ad4: Unknown result type (might be due to invalid IL or missing references) //IL_0443: Unknown result type (might be due to invalid IL or missing references) //IL_044e: Unknown result type (might be due to invalid IL or missing references) //IL_11d7: Unknown result type (might be due to invalid IL or missing references) //IL_11dd: Unknown result type (might be due to invalid IL or missing references) //IL_11e2: Unknown result type (might be due to invalid IL or missing references) //IL_11ed: Unknown result type (might be due to invalid IL or missing references) //IL_11fe: Unknown result type (might be due to invalid IL or missing references) //IL_1208: Unknown result type (might be due to invalid IL or missing references) //IL_120d: Unknown result type (might be due to invalid IL or missing references) //IL_1218: Unknown result type (might be due to invalid IL or missing references) //IL_121e: Unknown result type (might be due to invalid IL or missing references) //IL_1223: Unknown result type (might be due to invalid IL or missing references) //IL_122e: Unknown result type (might be due to invalid IL or missing references) //IL_123f: Unknown result type (might be due to invalid IL or missing references) //IL_1244: Unknown result type (might be due to invalid IL or missing references) //IL_124f: Unknown result type (might be due to invalid IL or missing references) //IL_1260: Unknown result type (might be due to invalid IL or missing references) //IL_126a: Unknown result type (might be due to invalid IL or missing references) //IL_126f: Unknown result type (might be due to invalid IL or missing references) //IL_127a: Unknown result type (might be due to invalid IL or missing references) //IL_128b: Unknown result type (might be due to invalid IL or missing references) //IL_1295: Unknown result type (might be due to invalid IL or missing references) //IL_129a: Unknown result type (might be due to invalid IL or missing references) //IL_12a6: Unknown result type (might be due to invalid IL or missing references) //IL_0afb: Unknown result type (might be due to invalid IL or missing references) //IL_0b01: Unknown result type (might be due to invalid IL or missing references) //IL_0b06: Unknown result type (might be due to invalid IL or missing references) //IL_0b11: Unknown result type (might be due to invalid IL or missing references) //IL_0b22: Unknown result type (might be due to invalid IL or missing references) //IL_0b2c: Unknown result type (might be due to invalid IL or missing references) //IL_0b31: Unknown result type (might be due to invalid IL or missing references) //IL_0b3c: Unknown result type (might be due to invalid IL or missing references) //IL_0b42: Unknown result type (might be due to invalid IL or missing references) //IL_0b47: Unknown result type (might be due to invalid IL or missing references) //IL_0b52: Unknown result type (might be due to invalid IL or missing references) //IL_0b63: Unknown result type (might be due to invalid IL or missing references) //IL_0b68: Unknown result type (might be due to invalid IL or missing references) //IL_0b73: Unknown result type (might be due to invalid IL or missing references) //IL_0b84: Unknown result type (might be due to invalid IL or missing references) //IL_0b8e: Unknown result type (might be due to invalid IL or missing references) //IL_0b93: Unknown result type (might be due to invalid IL or missing references) //IL_0b9e: Unknown result type (might be due to invalid IL or missing references) //IL_0baf: Unknown result type (might be due to invalid IL or missing references) //IL_0bb9: Unknown result type (might be due to invalid IL or missing references) //IL_0bbe: Unknown result type (might be due to invalid IL or missing references) //IL_0bca: Unknown result type (might be due to invalid IL or missing references) //IL_0475: Unknown result type (might be due to invalid IL or missing references) //IL_047b: Unknown result type (might be due to invalid IL or missing references) //IL_0480: Unknown result type (might be due to invalid IL or missing references) //IL_048b: Unknown result type (might be due to invalid IL or missing references) //IL_049c: Unknown result type (might be due to invalid IL or missing references) //IL_04a6: Unknown result type (might be due to invalid IL or missing references) //IL_04ab: Unknown result type (might be due to invalid IL or missing references) //IL_04b6: Unknown result type (might be due to invalid IL or missing references) //IL_04bc: Unknown result type (might be due to invalid IL or missing references) //IL_04c1: Unknown result type (might be due to invalid IL or missing references) //IL_04cc: Unknown result type (might be due to invalid IL or missing references) //IL_04dd: Unknown result type (might be due to invalid IL or missing references) //IL_04e2: Unknown result type (might be due to invalid IL or missing references) //IL_04ed: Unknown result type (might be due to invalid IL or missing references) //IL_04fe: Unknown result type (might be due to invalid IL or missing references) //IL_0508: Unknown result type (might be due to invalid IL or missing references) //IL_050d: Unknown result type (might be due to invalid IL or missing references) //IL_0519: Unknown result type (might be due to invalid IL or missing references) //IL_12c4: Unknown result type (might be due to invalid IL or missing references) //IL_12cf: Unknown result type (might be due to invalid IL or missing references) //IL_0be8: Unknown result type (might be due to invalid IL or missing references) //IL_0bf3: Unknown result type (might be due to invalid IL or missing references) //IL_0537: Unknown result type (might be due to invalid IL or missing references) //IL_0542: Unknown result type (might be due to invalid IL or missing references) //IL_12f6: Unknown result type (might be due to invalid IL or missing references) //IL_12fc: Unknown result type (might be due to invalid IL or missing references) //IL_1301: Unknown result type (might be due to invalid IL or missing references) //IL_130c: Unknown result type (might be due to invalid IL or missing references) //IL_131d: Unknown result type (might be due to invalid IL or missing references) //IL_1327: Unknown result type (might be due to invalid IL or missing references) //IL_132c: Unknown result type (might be due to invalid IL or missing references) //IL_1337: Unknown result type (might be due to invalid IL or missing references) //IL_133d: Unknown result type (might be due to invalid IL or missing references) //IL_1342: Unknown result type (might be due to invalid IL or missing references) //IL_134d: Unknown result type (might be due to invalid IL or missing references) //IL_135e: Unknown result type (might be due to invalid IL or missing references) //IL_1363: Unknown result type (might be due to invalid IL or missing references) //IL_136e: Unknown result type (might be due to invalid IL or missing references) //IL_137f: Unknown result type (might be due to invalid IL or missing references) //IL_1389: Unknown result type (might be due to invalid IL or missing references) //IL_138e: Unknown result type (might be due to invalid IL or missing references) //IL_1399: Unknown result type (might be due to invalid IL or missing references) //IL_13aa: Unknown result type (might be due to invalid IL or missing references) //IL_13b4: Unknown result type (might be due to invalid IL or missing references) //IL_13b9: Unknown result type (might be due to invalid IL or missing references) //IL_13c5: Unknown result type (might be due to invalid IL or missing references) //IL_0c1a: Unknown result type (might be due to invalid IL or missing references) //IL_0c20: Unknown result type (might be due to invalid IL or missing references) //IL_0c25: Unknown result type (might be due to invalid IL or missing references) //IL_0c30: Unknown result type (might be due to invalid IL or missing references) //IL_0c41: Unknown result type (might be due to invalid IL or missing references) //IL_0c4b: Unknown result type (might be due to invalid IL or missing references) //IL_0c50: Unknown result type (might be due to invalid IL or missing references) //IL_0c5b: Unknown result type (might be due to invalid IL or missing references) //IL_0c61: Unknown result type (might be due to invalid IL or missing references) //IL_0c66: Unknown result type (might be due to invalid IL or missing references) //IL_0c71: Unknown result type (might be due to invalid IL or missing references) //IL_0c82: Unknown result type (might be due to invalid IL or missing references) //IL_0c87: Unknown result type (might be due to invalid IL or missing references) //IL_0c92: Unknown result type (might be due to invalid IL or missing references) //IL_0ca3: Unknown result type (might be due to invalid IL or missing references) //IL_0cad: Unknown result type (might be due to invalid IL or missing references) //IL_0cb2: Unknown result type (might be due to invalid IL or missing references) //IL_0cbd: Unknown result type (might be due to invalid IL or missing references) //IL_0cce: Unknown result type (might be due to invalid IL or missing references) //IL_0cd8: Unknown result type (might be due to invalid IL or missing references) //IL_0cdd: Unknown result type (might be due to invalid IL or missing references) //IL_0ce9: Unknown result type (might be due to invalid IL or missing references) //IL_0569: Unknown result type (might be due to invalid IL or missing references) //IL_056f: Unknown result type (might be due to invalid IL or missing references) //IL_0574: Unknown result type (might be due to invalid IL or missing references) //IL_057f: Unknown result type (might be due to invalid IL or missing references) //IL_0590: Unknown result type (might be due to invalid IL or missing references) //IL_059a: Unknown result type (might be due to invalid IL or missing references) //IL_059f: Unknown result type (might be due to invalid IL or missing references) //IL_05aa: Unknown result type (might be due to invalid IL or missing references) //IL_05b0: Unknown result type (might be due to invalid IL or missing references) //IL_05b5: Unknown result type (might be due to invalid IL or missing references) //IL_05c0: Unknown result type (might be due to invalid IL or missing references) //IL_05d1: Unknown result type (might be due to invalid IL or missing references) //IL_05d6: Unknown result type (might be due to invalid IL or missing references) //IL_05e1: Unknown result type (might be due to invalid IL or missing references) //IL_05f2: Unknown result type (might be due to invalid IL or missing references) //IL_05fc: Unknown result type (might be due to invalid IL or missing references) //IL_0601: Unknown result type (might be due to invalid IL or missing references) //IL_060d: Unknown result type (might be due to invalid IL or missing references) //IL_13e3: Unknown result type (might be due to invalid IL or missing references) //IL_13ee: Unknown result type (might be due to invalid IL or missing references) //IL_0d07: Unknown result type (might be due to invalid IL or missing references) //IL_0d12: Unknown result type (might be due to invalid IL or missing references) //IL_062b: Unknown result type (might be due to invalid IL or missing references) //IL_0636: Unknown result type (might be due to invalid IL or missing references) //IL_1415: Unknown result type (might be due to invalid IL or missing references) //IL_141b: Unknown result type (might be due to invalid IL or missing references) //IL_1420: Unknown result type (might be due to invalid IL or missing references) //IL_142b: Unknown result type (might be due to invalid IL or missing references) //IL_143c: Unknown result type (might be due to invalid IL or missing references) //IL_1446: Unknown result type (might be due to invalid IL or missing references) //IL_144b: Unknown result type (might be due to invalid IL or missing references) //IL_1456: Unknown result type (might be due to invalid IL or missing references) //IL_145c: Unknown result type (might be due to invalid IL or missing references) //IL_1461: Unknown result type (might be due to invalid IL or missing references) //IL_146c: Unknown result type (might be due to invalid IL or missing references) //IL_147d: Unknown result type (might be due to invalid IL or missing references) //IL_1482: Unknown result type (might be due to invalid IL or missing references) //IL_148d: Unknown result type (might be due to invalid IL or missing references) //IL_149e: Unknown result type (might be due to invalid IL or missing references) //IL_14a8: Unknown result type (might be due to invalid IL or missing references) //IL_14ad: Unknown result type (might be due to invalid IL or missing references) //IL_14b8: Unknown result type (might be due to invalid IL or missing references) //IL_14c9: Unknown result type (might be due to invalid IL or missing references) //IL_14d3: Unknown result type (might be due to invalid IL or missing references) //IL_14d8: Unknown result type (might be due to invalid IL or missing references) //IL_14e4: Unknown result type (might be due to invalid IL or missing references) //IL_0d39: Unknown result type (might be due to invalid IL or missing references) //IL_0d3f: Unknown result type (might be due to invalid IL or missing references) //IL_0d44: Unknown result type (might be due to invalid IL or missing references) //IL_0d4f: Unknown result type (might be due to invalid IL or missing references) //IL_0d60: Unknown result type (might be due to invalid IL or missing references) //IL_0d6a: Unknown result type (might be due to invalid IL or missing references) //IL_0d6f: Unknown result type (might be due to invalid IL or missing references) //IL_0d7a: Unknown result type (might be due to invalid IL or missing references) //IL_0d80: Unknown result type (might be due to invalid IL or missing references) //IL_0d85: Unknown result type (might be due to invalid IL or missing references) //IL_0d90: Unknown result type (might be due to invalid IL or missing references) //IL_0da1: Unknown result type (might be due to invalid IL or missing references) //IL_0da6: Unknown result type (might be due to invalid IL or missing references) //IL_0db1: Unknown result type (might be due to invalid IL or missing references) //IL_0dc2: Unknown result type (might be due to invalid IL or missing references) //IL_0dcc: Unknown result type (might be due to invalid IL or missing references) //IL_0dd1: Unknown result type (might be due to invalid IL or missing references) //IL_0ddc: Unknown result type (might be due to invalid IL or missing references) //IL_0ded: Unknown result type (might be due to invalid IL or missing references) //IL_0df7: Unknown result type (might be due to invalid IL or missing references) //IL_0dfc: Unknown result type (might be due to invalid IL or missing references) //IL_0e08: Unknown result type (might be due to invalid IL or missing references) //IL_1774: Unknown result type (might be due to invalid IL or missing references) //IL_177f: Unknown result type (might be due to invalid IL or missing references) //IL_178a: Unknown result type (might be due to invalid IL or missing references) //IL_1794: Unknown result type (might be due to invalid IL or missing references) //IL_1799: Unknown result type (might be due to invalid IL or missing references) //IL_179f: Unknown result type (might be due to invalid IL or missing references) //IL_17a4: Unknown result type (might be due to invalid IL or missing references) //IL_17b0: Unknown result type (might be due to invalid IL or missing references) //IL_1502: Unknown result type (might be due to invalid IL or missing references) //IL_150d: Unknown result type (might be due to invalid IL or missing references) //IL_0e26: Unknown result type (might be due to invalid IL or missing references) //IL_0e31: Unknown result type (might be due to invalid IL or missing references) //IL_1534: Unknown result type (might be due to invalid IL or missing references) //IL_153a: Unknown result type (might be due to invalid IL or missing references) //IL_153f: Unknown result type (might be due to invalid IL or missing references) //IL_154a: Unknown result type (might be due to invalid IL or missing references) //IL_155b: Unknown result type (might be due to invalid IL or missing references) //IL_1565: Unknown result type (might be due to invalid IL or missing references) //IL_156a: Unknown result type (might be due to invalid IL or missing references) //IL_1575: Unknown result type (might be due to invalid IL or missing references) //IL_157b: Unknown result type (might be due to invalid IL or missing references) //IL_1580: Unknown result type (might be due to invalid IL or missing references) //IL_158b: Unknown result type (might be due to invalid IL or missing references) //IL_159c: Unknown result type (might be due to invalid IL or missing references) //IL_15a1: Unknown result type (might be due to invalid IL or missing references) //IL_15ac: Unknown result type (might be due to invalid IL or missing references) //IL_15bd: Unknown result type (might be due to invalid IL or missing references) //IL_15c7: Unknown result type (might be due to invalid IL or missing references) //IL_15cc: Unknown result type (might be due to invalid IL or missing references) //IL_15d7: Unknown result type (might be due to invalid IL or missing references) //IL_15e8: Unknown result type (might be due to invalid IL or missing references) //IL_15f2: Unknown result type (might be due to invalid IL or missing references) //IL_15f7: Unknown result type (might be due to invalid IL or missing references) //IL_1603: Unknown result type (might be due to invalid IL or missing references) //IL_1807: Unknown result type (might be due to invalid IL or missing references) //IL_180c: Unknown result type (might be due to invalid IL or missing references) //IL_17e2: Unknown result type (might be due to invalid IL or missing references) //IL_17e7: Unknown result type (might be due to invalid IL or missing references) //IL_17f4: Unknown result type (might be due to invalid IL or missing references) //IL_1621: Unknown result type (might be due to invalid IL or missing references) //IL_162c: Unknown result type (might be due to invalid IL or missing references) //IL_1839: Unknown result type (might be due to invalid IL or missing references) //IL_183f: Unknown result type (might be due to invalid IL or missing references) //IL_1844: Unknown result type (might be due to invalid IL or missing references) //IL_184f: Unknown result type (might be due to invalid IL or missing references) //IL_1855: Unknown result type (might be due to invalid IL or missing references) //IL_185a: Unknown result type (might be due to invalid IL or missing references) //IL_1865: Unknown result type (might be due to invalid IL or missing references) //IL_1876: Unknown result type (might be due to invalid IL or missing references) //IL_187b: Unknown result type (might be due to invalid IL or missing references) //IL_1887: Unknown result type (might be due to invalid IL or missing references) //IL_1926: Unknown result type (might be due to invalid IL or missing references) //IL_192c: Unknown result type (might be due to invalid IL or missing references) //IL_1931: Unknown result type (might be due to invalid IL or missing references) //IL_193c: Unknown result type (might be due to invalid IL or missing references) //IL_194d: Unknown result type (might be due to invalid IL or missing references) //IL_1957: Unknown result type (might be due to invalid IL or missing references) //IL_195c: Unknown result type (might be due to invalid IL or missing references) //IL_1967: Unknown result type (might be due to invalid IL or missing references) //IL_196d: Unknown result type (might be due to invalid IL or missing references) //IL_1972: Unknown result type (might be due to invalid IL or missing references) //IL_197d: Unknown result type (might be due to invalid IL or missing references) //IL_198e: Unknown result type (might be due to invalid IL or missing references) //IL_1993: Unknown result type (might be due to invalid IL or missing references) //IL_199e: Unknown result type (might be due to invalid IL or missing references) //IL_19af: Unknown result type (might be due to invalid IL or missing references) //IL_19b9: Unknown result type (might be due to invalid IL or missing references) //IL_19be: Unknown result type (might be due to invalid IL or missing references) //IL_19ca: Unknown result type (might be due to invalid IL or missing references) //IL_18a5: Unknown result type (might be due to invalid IL or missing references) //IL_18b0: Unknown result type (might be due to invalid IL or missing references) //IL_1a69: Unknown result type (might be due to invalid IL or missing references) //IL_1a6f: Unknown result type (might be due to invalid IL or missing references) //IL_1a74: Unknown result type (might be due to invalid IL or missing references) //IL_1a7f: Unknown result type (might be due to invalid IL or missing references) //IL_1a90: Unknown result type (might be due to invalid IL or missing references) //IL_1a9a: Unknown result type (might be due to invalid IL or missing references) //IL_1a9f: Unknown result type (might be due to invalid IL or missing references) //IL_1aaa: Unknown result type (might be due to invalid IL or missing references) //IL_1ab0: Unknown result type (might be due to invalid IL or missing references) //IL_1ab5: Unknown result type (might be due to invalid IL or missing references) //IL_1ac0: Unknown result type (might be due to invalid IL or missing references) //IL_1ad1: Unknown result type (might be due to invalid IL or missing references) //IL_1ad6: Unknown result type (might be due to invalid IL or missing references) //IL_1ae1: Unknown result type (might be due to invalid IL or missing references) //IL_1af2: Unknown result type (might be due to invalid IL or missing references) //IL_1afc: Unknown result type (might be due to invalid IL or missing references) //IL_1b01: Unknown result type (might be due to invalid IL or missing references) //IL_1b0d: Unknown result type (might be due to invalid IL or missing references) //IL_19e8: Unknown result type (might be due to invalid IL or missing references) //IL_19f3: Unknown result type (might be due to invalid IL or missing references) //IL_18d9: Unknown result type (might be due to invalid IL or missing references) //IL_18de: Unknown result type (might be due to invalid IL or missing references) //IL_18ea: Unknown result type (might be due to invalid IL or missing references) //IL_18f5: Unknown result type (might be due to invalid IL or missing references) //IL_190b: Unknown result type (might be due to invalid IL or missing references) //IL_1910: Unknown result type (might be due to invalid IL or missing references) //IL_1915: Unknown result type (might be due to invalid IL or missing references) //IL_1bac: Unknown result type (might be due to invalid IL or missing references) //IL_1bb2: Unknown result type (might be due to invalid IL or missing references) //IL_1bb7: Unknown result type (might be due to invalid IL or missing references) //IL_1bc2: Unknown result type (might be due to invalid IL or missing references) //IL_1bd3: Unknown result type (might be due to invalid IL or missing references) //IL_1bdd: Unknown result type (might be due to invalid IL or missing references) //IL_1be2: Unknown result type (might be due to invalid IL or missing references) //IL_1bed: Unknown result type (might be due to invalid IL or missing references) //IL_1bf3: Unknown result type (might be due to invalid IL or missing references) //IL_1bf8: Unknown result type (might be due to invalid IL or missing references) //IL_1c03: Unknown result type (might be due to invalid IL or missing references) //IL_1c14: Unknown result type (might be due to invalid IL or missing references) //IL_1c19: Unknown result type (might be due to invalid IL or missing references) //IL_1c24: Unknown result type (might be due to invalid IL or missing references) //IL_1c35: Unknown result type (might be due to invalid IL or missing references) //IL_1c3f: Unknown result type (might be due to invalid IL or missing references) //IL_1c44: Unknown result type (might be due to invalid IL or missing references) //IL_1c50: Unknown result type (might be due to invalid IL or missing references) //IL_1b2b: Unknown result type (might be due to invalid IL or missing references) //IL_1b36: Unknown result type (might be due to invalid IL or missing references) //IL_1a1c: Unknown result type (might be due to invalid IL or missing references) //IL_1a21: Unknown result type (might be due to invalid IL or missing references) //IL_1a2d: Unknown result type (might be due to invalid IL or missing references) //IL_1a38: Unknown result type (might be due to invalid IL or missing references) //IL_1a4e: Unknown result type (might be due to invalid IL or missing references) //IL_1a53: Unknown result type (might be due to invalid IL or missing references) //IL_1a58: Unknown result type (might be due to invalid IL or missing references) //IL_20b4: Unknown result type (might be due to invalid IL or missing references) //IL_20bf: Unknown result type (might be due to invalid IL or missing references) //IL_1cef: Unknown result type (might be due to invalid IL or missing references) //IL_1cf5: Unknown result type (might be due to invalid IL or missing references) //IL_1cfa: Unknown result type (might be due to invalid IL or missing references) //IL_1d05: Unknown result type (might be due to invalid IL or missing references) //IL_1d16: Unknown result type (might be due to invalid IL or missing references) //IL_1d20: Unknown result type (might be due to invalid IL or missing references) //IL_1d25: Unknown result type (might be due to invalid IL or missing references) //IL_1d30: Unknown result type (might be due to invalid IL or missing references) //IL_1d36: Unknown result type (might be due to invalid IL or missing references) //IL_1d3b: Unknown result type (might be due to invalid IL or missing references) //IL_1d46: Unknown result type (might be due to invalid IL or missing references) //IL_1d57: Unknown result type (might be due to invalid IL or missing references) //IL_1d5c: Unknown result type (might be due to invalid IL or missing references) //IL_1d67: Unknown result type (might be due to invalid IL or missing references) //IL_1d78: Unknown result type (might be due to invalid IL or missing references) //IL_1d82: Unknown result type (might be due to invalid IL or missing references) //IL_1d87: Unknown result type (might be due to invalid IL or missing references) //IL_1d93: Unknown result type (might be due to invalid IL or missing references) //IL_1c6e: Unknown result type (might be due to invalid IL or missing references) //IL_1c79: Unknown result type (might be due to invalid IL or missing references) //IL_1b5f: Unknown result type (might be due to invalid IL or missing references) //IL_1b64: Unknown result type (might be due to invalid IL or missing references) //IL_1b70: Unknown result type (might be due to invalid IL or missing references) //IL_1b7b: Unknown result type (might be due to invalid IL or missing references) //IL_1b91: Unknown result type (might be due to invalid IL or missing references) //IL_1b96: Unknown result type (might be due to invalid IL or missing references) //IL_1b9b: Unknown result type (might be due to invalid IL or missing references) //IL_1e32: Unknown result type (might be due to invalid IL or missing references) //IL_1e38: Unknown result type (might be due to invalid IL or missing references) //IL_1e3d: Unknown result type (might be due to invalid IL or missing references) //IL_1e48: Unknown result type (might be due to invalid IL or missing references) //IL_1e59: Unknown result type (might be due to invalid IL or missing references) //IL_1e63: Unknown result type (might be due to invalid IL or missing references) //IL_1e68: Unknown result type (might be due to invalid IL or missing references) //IL_1e73: Unknown result type (might be due to invalid IL or missing references) //IL_1e79: Unknown result type (might be due to invalid IL or missing references) //IL_1e7e: Unknown result type (might be due to invalid IL or missing references) //IL_1e89: Unknown result type (might be due to invalid IL or missing references) //IL_1e9a: Unknown result type (might be due to invalid IL or missing references) //IL_1e9f: Unknown result type (might be due to invalid IL or missing references) //IL_1eaa: Unknown result type (might be due to invalid IL or missing references) //IL_1ebb: Unknown result type (might be due to invalid IL or missing references) //IL_1ec5: Unknown result type (might be due to invalid IL or missing references) //IL_1eca: Unknown result type (might be due to invalid IL or missing references) //IL_1ed6: Unknown result type (might be due to invalid IL or missing references) //IL_1db1: Unknown result type (might be due to invalid IL or missing references) //IL_1dbc: Unknown result type (might be due to invalid IL or missing references) //IL_1ca2: Unknown result type (might be due to invalid IL or missing references) //IL_1ca7: Unknown result type (might be due to invalid IL or missing references) //IL_1cb3: Unknown result type (might be due to invalid IL or missing references) //IL_1cbe: Unknown result type (might be due to invalid IL or missing references) //IL_1cd4: Unknown result type (might be due to invalid IL or missing references) //IL_1cd9: Unknown result type (might be due to invalid IL or missing references) //IL_1cde: Unknown result type (might be due to invalid IL or missing references) //IL_1f75: Unknown result type (might be due to invalid IL or missing references) //IL_1f7b: Unknown result type (might be due to invalid IL or missing references) //IL_1f80: Unknown result type (might be due to invalid IL or missing references) //IL_1f8b: Unknown result type (might be due to invalid IL or missing references) //IL_1f9c: Unknown result type (might be due to invalid IL or missing references) //IL_1fa6: Unknown result type (might be due to invalid IL or missing references) //IL_1fab: Unknown result type (might be due to invalid IL or missing references) //IL_1fb6: Unknown result type (might be due to invalid IL or missing references) //IL_1fbc: Unknown result type (might be due to invalid IL or missing references) //IL_1fc1: Unknown result type (might be due to invalid IL or missing references) //IL_1fcc: Unknown result type (might be due to invalid IL or missing references) //IL_1fdd: Unknown result type (might be due to invalid IL or missing references) //IL_1fe2: Unknown result type (might be due to invalid IL or missing references) //IL_1fed: Unknown result type (might be due to invalid IL or missing references) //IL_1ffe: Unknown result type (might be due to invalid IL or missing references) //IL_2008: Unknown result type (might be due to invalid IL or missing references) //IL_200d: Unknown result type (might be due to invalid IL or missing references) //IL_2019: Unknown result type (might be due to invalid IL or missing references) //IL_1ef4: Unknown result type (might be due to invalid IL or missing references) //IL_1eff: Unknown result type (might be due to invalid IL or missing references) //IL_1de5: Unknown result type (might be due to invalid IL or missing references) //IL_1dea: Unknown result type (might be due to invalid IL or missing references) //IL_1df6: Unknown result type (might be due to invalid IL or missing references) //IL_1e01: Unknown result type (might be due to invalid IL or missing references) //IL_1e17: Unknown result type (might be due to invalid IL or missing references) //IL_1e1c: Unknown result type (might be due to invalid IL or missing references) //IL_1e21: Unknown result type (might be due to invalid IL or missing references) //IL_2037: Unknown result type (might be due to invalid IL or missing references) //IL_2042: Unknown result type (might be due to invalid IL or missing references) //IL_1f28: Unknown result type (might be due to invalid IL or missing references) //IL_1f2d: Unknown result type (might be due to invalid IL or missing references) //IL_1f39: Unknown result type (might be due to invalid IL or missing references) //IL_1f44: Unknown result type (might be due to invalid IL or missing references) //IL_1f5a: Unknown result type (might be due to invalid IL or missing references) //IL_1f5f: Unknown result type (might be due to invalid IL or missing references) //IL_1f64: Unknown result type (might be due to invalid IL or missing references) //IL_206b: Unknown result type (might be due to invalid IL or missing references) //IL_2070: Unknown result type (might be due to invalid IL or missing references) //IL_207c: Unknown result type (might be due to invalid IL or missing references) //IL_2087: Unknown result type (might be due to invalid IL or missing references) //IL_209d: Unknown result type (might be due to invalid IL or missing references) //IL_20a2: Unknown result type (might be due to invalid IL or missing references) //IL_20a7: Unknown result type (might be due to invalid IL or missing references) if (Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle && Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.1875f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.1875f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle && Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.375f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.375f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle && Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.5625f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.5625f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle && Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.75f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.75f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle && Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.9375f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.9375f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle && Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 1.125f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 1.125f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle && noCollisionTimer < 5f && !grounded.currentlyGrounded && ((Vector3)(ref directionVector)).magnitude >= wallJumping.inputPercentageNeededToWallJump / 100f && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2) { middleWallJumpable = true; } else { middleWallJumpable = false; } if (Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) - ((Component)this).transform.right * (spaceOnWallNeededToWallJumpWidth2 + 1f) / 3f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle && Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.1875f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.1875f - ((Component)this).transform.right * (spaceOnWallNeededToWallJumpWidth2 + 1f) / 3f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle && Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.375f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.375f - ((Component)this).transform.right * (spaceOnWallNeededToWallJumpWidth2 + 1f) / 3f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle && Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.5625f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.5625f - ((Component)this).transform.right * (spaceOnWallNeededToWallJumpWidth2 + 1f) / 3f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle && Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.75f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.75f - ((Component)this).transform.right * (spaceOnWallNeededToWallJumpWidth2 + 1f) / 3f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle && Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.9375f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.9375f - ((Component)this).transform.right * (spaceOnWallNeededToWallJumpWidth2 + 1f) / 3f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle && Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 1.125f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 1.125f - ((Component)this).transform.right * (spaceOnWallNeededToWallJumpWidth2 + 1f) / 3f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle && noCollisionTimer < 5f && !grounded.currentlyGrounded && ((Vector3)(ref directionVector)).magnitude >= wallJumping.inputPercentageNeededToWallJump / 100f && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2) { leftWallJumpable = true; } else { leftWallJumpable = false; } if (Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.right * (spaceOnWallNeededToWallJumpWidth2 + 1f) / 3f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle && Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.1875f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.1875f + ((Component)this).transform.right * (spaceOnWallNeededToWallJumpWidth2 + 1f) / 3f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle && Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.375f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.375f + ((Component)this).transform.right * (spaceOnWallNeededToWallJumpWidth2 + 1f) / 3f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle && Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.5625f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.5625f + ((Component)this).transform.right * (spaceOnWallNeededToWallJumpWidth2 + 1f) / 3f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle && Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.75f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.75f + ((Component)this).transform.right * (spaceOnWallNeededToWallJumpWidth2 + 1f) / 3f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle && Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.9375f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.9375f + ((Component)this).transform.right * (spaceOnWallNeededToWallJumpWidth2 + 1f) / 3f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle && Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 1.125f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 1.125f + ((Component)this).transform.right * (spaceOnWallNeededToWallJumpWidth2 + 1f) / 3f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle && noCollisionTimer < 5f && !grounded.currentlyGrounded && ((Vector3)(ref directionVector)).magnitude >= wallJumping.inputPercentageNeededToWallJump / 100f && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2) { rightWallJumpable = true; } else { rightWallJumpable = false; } if (headHit || !wallJumping.allowWallJumping || grounded.currentlyGrounded || wallIsClimbable || turnBack || back2 || (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && (!Object.op_Implicit((Object)(object)((Component)this).GetComponent()) || !((Component)this).GetComponent().canGrabBackOn)) || ((!middleWallJumpable || !leftWallJumpable) && (!middleWallJumpable || !rightWallJumpable)) || Physics.Linecast(((Component)this).transform.position, ((Component)this).transform.position - ((Component)this).transform.up * 0.3f - spaceBelowNeededToWallJump2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers))) { return; } if (inMidAirFromWallJump) { ((Component)this).transform.eulerAngles = new Vector3(0f, ((Component)this).transform.eulerAngles.y, 0f); inMidAirFromWallJump = false; } wallJumpDirection = Vector3.zero; if (!currentlyOnWall) { wallJumpTimer = 0f; slideDownSpeed2 = 0f; if (Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle) { wallNormal = ((RaycastHit)(ref hit)).normal; wallHitPoint = ((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal * (wallJumping.distanceToKeepFromWallWhenOnWall / 3.75f); } else if (Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.1875f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.1875f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle) { wallNormal = ((RaycastHit)(ref hit)).normal; wallHitPoint = ((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal * (wallJumping.distanceToKeepFromWallWhenOnWall / 3.75f); } else if (Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.375f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.375f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle) { wallNormal = ((RaycastHit)(ref hit)).normal; wallHitPoint = ((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal * (wallJumping.distanceToKeepFromWallWhenOnWall / 3.75f); } else if (Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.5625f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.5625f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle) { wallNormal = ((RaycastHit)(ref hit)).normal; wallHitPoint = ((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal * (wallJumping.distanceToKeepFromWallWhenOnWall / 3.75f); } else if (Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.75f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.75f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle) { wallNormal = ((RaycastHit)(ref hit)).normal; wallHitPoint = ((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal * (wallJumping.distanceToKeepFromWallWhenOnWall / 3.75f); } else if (Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.9375f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.9375f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle) { wallNormal = ((RaycastHit)(ref hit)).normal; wallHitPoint = ((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal * (wallJumping.distanceToKeepFromWallWhenOnWall / 3.75f); } else if (Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 1.125f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 1.125f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle) { wallNormal = ((RaycastHit)(ref hit)).normal; wallHitPoint = ((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal * (wallJumping.distanceToKeepFromWallWhenOnWall / 3.75f); } angleBetweenPlayerAndWall = Vector3.Angle(((Component)this).transform.right, ((RaycastHit)(ref hit)).normal); } if (!sliding) { turningToWall = true; currentlyOnWall = true; } } private void DirectionOfWallJump() { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0056: Unknown result type (might be due to invalid IL or missing references) //IL_005c: Unknown result type (might be due to invalid IL or missing references) //IL_002f: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_00a4: Unknown result type (might be due to invalid IL or missing references) //IL_00aa: Unknown result type (might be due to invalid IL or missing references) //IL_0082: Unknown result type (might be due to invalid IL or missing references) //IL_0088: Unknown result type (might be due to invalid IL or missing references) //IL_00f3: Unknown result type (might be due to invalid IL or missing references) //IL_00f9: Unknown result type (might be due to invalid IL or missing references) //IL_00cc: Unknown result type (might be due to invalid IL or missing references) //IL_00d2: Unknown result type (might be due to invalid IL or missing references) //IL_0141: Unknown result type (might be due to invalid IL or missing references) //IL_0147: Unknown result type (might be due to invalid IL or missing references) //IL_011f: Unknown result type (might be due to invalid IL or missing references) //IL_0125: Unknown result type (might be due to invalid IL or missing references) //IL_0190: Unknown result type (might be due to invalid IL or missing references) //IL_0196: Unknown result type (might be due to invalid IL or missing references) //IL_0169: Unknown result type (might be due to invalid IL or missing references) //IL_016f: Unknown result type (might be due to invalid IL or missing references) //IL_01de: Unknown result type (might be due to invalid IL or missing references) //IL_01e4: Unknown result type (might be due to invalid IL or missing references) //IL_01bc: Unknown result type (might be due to invalid IL or missing references) //IL_01c2: Unknown result type (might be due to invalid IL or missing references) //IL_022d: Unknown result type (might be due to invalid IL or missing references) //IL_0233: Unknown result type (might be due to invalid IL or missing references) //IL_0206: Unknown result type (might be due to invalid IL or missing references) //IL_020c: Unknown result type (might be due to invalid IL or missing references) //IL_027b: Unknown result type (might be due to invalid IL or missing references) //IL_0281: Unknown result type (might be due to invalid IL or missing references) //IL_0286: Unknown result type (might be due to invalid IL or missing references) //IL_0291: Unknown result type (might be due to invalid IL or missing references) //IL_0297: Unknown result type (might be due to invalid IL or missing references) //IL_029c: Unknown result type (might be due to invalid IL or missing references) //IL_02a7: Unknown result type (might be due to invalid IL or missing references) //IL_02b8: Unknown result type (might be due to invalid IL or missing references) //IL_02bd: Unknown result type (might be due to invalid IL or missing references) //IL_02c9: Unknown result type (might be due to invalid IL or missing references) //IL_0259: Unknown result type (might be due to invalid IL or missing references) //IL_025f: Unknown result type (might be due to invalid IL or missing references) //IL_0760: Unknown result type (might be due to invalid IL or missing references) //IL_0765: Unknown result type (might be due to invalid IL or missing references) //IL_0778: Unknown result type (might be due to invalid IL or missing references) //IL_077d: Unknown result type (might be due to invalid IL or missing references) //IL_0785: Unknown result type (might be due to invalid IL or missing references) //IL_0790: Unknown result type (might be due to invalid IL or missing references) //IL_0795: Unknown result type (might be due to invalid IL or missing references) //IL_07a8: Unknown result type (might be due to invalid IL or missing references) //IL_07ad: Unknown result type (might be due to invalid IL or missing references) //IL_07b5: Unknown result type (might be due to invalid IL or missing references) //IL_02e3: Unknown result type (might be due to invalid IL or missing references) //IL_02e9: Unknown result type (might be due to invalid IL or missing references) //IL_02ee: Unknown result type (might be due to invalid IL or missing references) //IL_02f9: Unknown result type (might be due to invalid IL or missing references) //IL_030a: Unknown result type (might be due to invalid IL or missing references) //IL_0314: Unknown result type (might be due to invalid IL or missing references) //IL_0319: Unknown result type (might be due to invalid IL or missing references) //IL_0324: Unknown result type (might be due to invalid IL or missing references) //IL_032a: Unknown result type (might be due to invalid IL or missing references) //IL_032f: Unknown result type (might be due to invalid IL or missing references) //IL_033a: Unknown result type (might be due to invalid IL or missing references) //IL_034b: Unknown result type (might be due to invalid IL or missing references) //IL_0350: Unknown result type (might be due to invalid IL or missing references) //IL_035b: Unknown result type (might be due to invalid IL or missing references) //IL_036c: Unknown result type (might be due to invalid IL or missing references) //IL_0376: Unknown result type (might be due to invalid IL or missing references) //IL_037b: Unknown result type (might be due to invalid IL or missing references) //IL_0387: Unknown result type (might be due to invalid IL or missing references) //IL_07d4: Unknown result type (might be due to invalid IL or missing references) //IL_07d9: Unknown result type (might be due to invalid IL or missing references) //IL_03a1: Unknown result type (might be due to invalid IL or missing references) //IL_03a7: Unknown result type (might be due to invalid IL or missing references) //IL_03ac: Unknown result type (might be due to invalid IL or missing references) //IL_03b7: Unknown result type (might be due to invalid IL or missing references) //IL_03c8: Unknown result type (might be due to invalid IL or missing references) //IL_03d2: Unknown result type (might be due to invalid IL or missing references) //IL_03d7: Unknown result type (might be due to invalid IL or missing references) //IL_03e2: Unknown result type (might be due to invalid IL or missing references) //IL_03e8: Unknown result type (might be due to invalid IL or missing references) //IL_03ed: Unknown result type (might be due to invalid IL or missing references) //IL_03f8: Unknown result type (might be due to invalid IL or missing references) //IL_0409: Unknown result type (might be due to invalid IL or missing references) //IL_040e: Unknown result type (might be due to invalid IL or missing references) //IL_0419: Unknown result type (might be due to invalid IL or missing references) //IL_042a: Unknown result type (might be due to invalid IL or missing references) //IL_0434: Unknown result type (might be due to invalid IL or missing references) //IL_0439: Unknown result type (might be due to invalid IL or missing references) //IL_0445: Unknown result type (might be due to invalid IL or missing references) //IL_07ee: Unknown result type (might be due to invalid IL or missing references) //IL_07f4: Unknown result type (might be due to invalid IL or missing references) //IL_07f9: Unknown result type (might be due to invalid IL or missing references) //IL_045f: Unknown result type (might be due to invalid IL or missing references) //IL_0465: Unknown result type (might be due to invalid IL or missing references) //IL_046a: Unknown result type (might be due to invalid IL or missing references) //IL_0475: Unknown result type (might be due to invalid IL or missing references) //IL_0486: Unknown result type (might be due to invalid IL or missing references) //IL_0490: Unknown result type (might be due to invalid IL or missing references) //IL_0495: Unknown result type (might be due to invalid IL or missing references) //IL_04a0: Unknown result type (might be due to invalid IL or missing references) //IL_04a6: Unknown result type (might be due to invalid IL or missing references) //IL_04ab: Unknown result type (might be due to invalid IL or missing references) //IL_04b6: Unknown result type (might be due to invalid IL or missing references) //IL_04c7: Unknown result type (might be due to invalid IL or missing references) //IL_04cc: Unknown result type (might be due to invalid IL or missing references) //IL_04d7: Unknown result type (might be due to invalid IL or missing references) //IL_04e8: Unknown result type (might be due to invalid IL or missing references) //IL_04f2: Unknown result type (might be due to invalid IL or missing references) //IL_04f7: Unknown result type (might be due to invalid IL or missing references) //IL_0503: Unknown result type (might be due to invalid IL or missing references) //IL_051d: Unknown result type (might be due to invalid IL or missing references) //IL_0523: Unknown result type (might be due to invalid IL or missing references) //IL_0528: Unknown result type (might be due to invalid IL or missing references) //IL_0533: Unknown result type (might be due to invalid IL or missing references) //IL_0544: Unknown result type (might be due to invalid IL or missing references) //IL_054e: Unknown result type (might be due to invalid IL or missing references) //IL_0553: Unknown result type (might be due to invalid IL or missing references) //IL_055e: Unknown result type (might be due to invalid IL or missing references) //IL_0564: Unknown result type (might be due to invalid IL or missing references) //IL_0569: Unknown result type (might be due to invalid IL or missing references) //IL_0574: Unknown result type (might be due to invalid IL or missing references) //IL_0585: Unknown result type (might be due to invalid IL or missing references) //IL_058a: Unknown result type (might be due to invalid IL or missing references) //IL_0595: Unknown result type (might be due to invalid IL or missing references) //IL_05a6: Unknown result type (might be due to invalid IL or missing references) //IL_05b0: Unknown result type (might be due to invalid IL or missing references) //IL_05b5: Unknown result type (might be due to invalid IL or missing references) //IL_05c1: Unknown result type (might be due to invalid IL or missing references) //IL_05db: Unknown result type (might be due to invalid IL or missing references) //IL_05e1: Unknown result type (might be due to invalid IL or missing references) //IL_05e6: Unknown result type (might be due to invalid IL or missing references) //IL_05f1: Unknown result type (might be due to invalid IL or missing references) //IL_0602: Unknown result type (might be due to invalid IL or missing references) //IL_060c: Unknown result type (might be due to invalid IL or missing references) //IL_0611: Unknown result type (might be due to invalid IL or missing references) //IL_061c: Unknown result type (might be due to invalid IL or missing references) //IL_0622: Unknown result type (might be due to invalid IL or missing references) //IL_0627: Unknown result type (might be due to invalid IL or missing references) //IL_0632: Unknown result type (might be due to invalid IL or missing references) //IL_0643: Unknown result type (might be due to invalid IL or missing references) //IL_0648: Unknown result type (might be due to invalid IL or missing references) //IL_0653: Unknown result type (might be due to invalid IL or missing references) //IL_0664: Unknown result type (might be due to invalid IL or missing references) //IL_066e: Unknown result type (might be due to invalid IL or missing references) //IL_0673: Unknown result type (might be due to invalid IL or missing references) //IL_067f: Unknown result type (might be due to invalid IL or missing references) //IL_0903: Unknown result type (might be due to invalid IL or missing references) //IL_0908: Unknown result type (might be due to invalid IL or missing references) //IL_0920: Unknown result type (might be due to invalid IL or missing references) //IL_0925: Unknown result type (might be due to invalid IL or missing references) //IL_0699: Unknown result type (might be due to invalid IL or missing references) //IL_069f: Unknown result type (might be due to invalid IL or missing references) //IL_06a4: Unknown result type (might be due to invalid IL or missing references) //IL_06af: Unknown result type (might be due to invalid IL or missing references) //IL_06c0: Unknown result type (might be due to invalid IL or missing references) //IL_06ca: Unknown result type (might be due to invalid IL or missing references) //IL_06cf: Unknown result type (might be due to invalid IL or missing references) //IL_06da: Unknown result type (might be due to invalid IL or missing references) //IL_06e0: Unknown result type (might be due to invalid IL or missing references) //IL_06e5: Unknown result type (might be due to invalid IL or missing references) //IL_06f0: Unknown result type (might be due to invalid IL or missing references) //IL_0701: Unknown result type (might be due to invalid IL or missing references) //IL_0706: Unknown result type (might be due to invalid IL or missing references) //IL_0711: Unknown result type (might be due to invalid IL or missing references) //IL_0722: Unknown result type (might be due to invalid IL or missing references) //IL_072c: Unknown result type (might be due to invalid IL or missing references) //IL_0731: Unknown result type (might be due to invalid IL or missing references) //IL_073d: Unknown result type (might be due to invalid IL or missing references) //IL_0952: Unknown result type (might be due to invalid IL or missing references) //IL_0958: Unknown result type (might be due to invalid IL or missing references) //IL_095d: Unknown result type (might be due to invalid IL or missing references) //IL_0941: Unknown result type (might be due to invalid IL or missing references) //IL_09c5: Unknown result type (might be due to invalid IL or missing references) //IL_09db: Unknown result type (might be due to invalid IL or missing references) //IL_09e0: Unknown result type (might be due to invalid IL or missing references) //IL_09f4: Unknown result type (might be due to invalid IL or missing references) //IL_0a04: Unknown result type (might be due to invalid IL or missing references) //IL_0a14: Unknown result type (might be due to invalid IL or missing references) //IL_0a1a: Unknown result type (might be due to invalid IL or missing references) //IL_0a1f: Unknown result type (might be due to invalid IL or missing references) //IL_0e14: Unknown result type (might be due to invalid IL or missing references) //IL_0e19: Unknown result type (might be due to invalid IL or missing references) //IL_0e27: Unknown result type (might be due to invalid IL or missing references) //IL_0e52: Unknown result type (might be due to invalid IL or missing references) //IL_0e57: Unknown result type (might be due to invalid IL or missing references) //IL_0a90: Unknown result type (might be due to invalid IL or missing references) //IL_0a96: Unknown result type (might be due to invalid IL or missing references) //IL_0a9b: Unknown result type (might be due to invalid IL or missing references) //IL_0a65: Unknown result type (might be due to invalid IL or missing references) //IL_0a70: Unknown result type (might be due to invalid IL or missing references) //IL_0a7a: Unknown result type (might be due to invalid IL or missing references) //IL_0a7f: Unknown result type (might be due to invalid IL or missing references) //IL_0994: Unknown result type (might be due to invalid IL or missing references) //IL_099f: Unknown result type (might be due to invalid IL or missing references) //IL_09a9: Unknown result type (might be due to invalid IL or missing references) //IL_09ae: Unknown result type (might be due to invalid IL or missing references) //IL_09b3: Unknown result type (might be due to invalid IL or missing references) //IL_0e8b: Unknown result type (might be due to invalid IL or missing references) //IL_0e90: Unknown result type (might be due to invalid IL or missing references) //IL_0ac4: Unknown result type (might be due to invalid IL or missing references) //IL_0aca: Unknown result type (might be due to invalid IL or missing references) //IL_0acf: Unknown result type (might be due to invalid IL or missing references) //IL_0aeb: Unknown result type (might be due to invalid IL or missing references) //IL_0afc: Unknown result type (might be due to invalid IL or missing references) //IL_0b0c: Unknown result type (might be due to invalid IL or missing references) //IL_0b17: Unknown result type (might be due to invalid IL or missing references) //IL_0b27: Unknown result type (might be due to invalid IL or missing references) //IL_0b2c: Unknown result type (might be due to invalid IL or missing references) //IL_0b31: Unknown result type (might be due to invalid IL or missing references) //IL_0b3d: Unknown result type (might be due to invalid IL or missing references) //IL_0b4d: Unknown result type (might be due to invalid IL or missing references) //IL_0b58: Unknown result type (might be due to invalid IL or missing references) //IL_0b68: Unknown result type (might be due to invalid IL or missing references) //IL_0b6d: Unknown result type (might be due to invalid IL or missing references) //IL_0b72: Unknown result type (might be due to invalid IL or missing references) //IL_0eaa: Unknown result type (might be due to invalid IL or missing references) //IL_0eaf: Unknown result type (might be due to invalid IL or missing references) //IL_0f24: Unknown result type (might be due to invalid IL or missing references) //IL_0f29: Unknown result type (might be due to invalid IL or missing references) //IL_0ec9: Unknown result type (might be due to invalid IL or missing references) //IL_0ece: Unknown result type (might be due to invalid IL or missing references) //IL_0f43: Unknown result type (might be due to invalid IL or missing references) //IL_0f48: Unknown result type (might be due to invalid IL or missing references) //IL_0ee8: Unknown result type (might be due to invalid IL or missing references) //IL_0eed: Unknown result type (might be due to invalid IL or missing references) //IL_0f6e: Unknown result type (might be due to invalid IL or missing references) //IL_0f73: Unknown result type (might be due to invalid IL or missing references) //IL_0c8e: Unknown result type (might be due to invalid IL or missing references) //IL_0c94: Unknown result type (might be due to invalid IL or missing references) //IL_0c99: Unknown result type (might be due to invalid IL or missing references) //IL_0c58: Unknown result type (might be due to invalid IL or missing references) //IL_0c6e: Unknown result type (might be due to invalid IL or missing references) //IL_0c78: Unknown result type (might be due to invalid IL or missing references) //IL_0c7d: Unknown result type (might be due to invalid IL or missing references) //IL_0c20: Unknown result type (might be due to invalid IL or missing references) //IL_0c2a: Unknown result type (might be due to invalid IL or missing references) //IL_0c2f: Unknown result type (might be due to invalid IL or missing references) //IL_0cc5: Unknown result type (might be due to invalid IL or missing references) //IL_0cd0: Unknown result type (might be due to invalid IL or missing references) //IL_0cda: Unknown result type (might be due to invalid IL or missing references) //IL_0cdf: Unknown result type (might be due to invalid IL or missing references) //IL_0ce4: Unknown result type (might be due to invalid IL or missing references) if (Vector3.Dot(((Component)this).transform.forward, wallJumpDirection) + 1f > 0f) { forwardDir = Vector3.Dot(((Component)this).transform.forward, wallJumpDirection) + 1f; } else if (Mathf.Abs(Vector3.Dot(((Component)this).transform.forward, wallJumpDirection)) != 0f) { forwardDir = 1f / Mathf.Abs(Vector3.Dot(((Component)this).transform.forward, wallJumpDirection)); } if (Vector3.Dot(((Component)this).transform.right, wallJumpDirection) + 1f > 0f) { rightDir = Vector3.Dot(((Component)this).transform.right, wallJumpDirection) + 1f; } else if (Mathf.Abs(Vector3.Dot(((Component)this).transform.right, wallJumpDirection)) != 0f) { rightDir = 1f / Mathf.Abs(Vector3.Dot(((Component)this).transform.right, wallJumpDirection)); } if (Vector3.Dot(((Component)this).transform.forward, originalWallJumpDirection) + 1f >= 0f) { originalForwardDir = Vector3.Dot(((Component)this).transform.forward, originalWallJumpDirection) + 1f; } else if (Mathf.Abs(Vector3.Dot(((Component)this).transform.forward, originalWallJumpDirection)) != 0f) { originalForwardDir = 1f / Mathf.Abs(Vector3.Dot(((Component)this).transform.forward, originalWallJumpDirection)); } if (Vector3.Dot(((Component)this).transform.right, originalWallJumpDirection) + 1f >= 0f) { originalRightDir = Vector3.Dot(((Component)this).transform.right, originalWallJumpDirection) + 1f; } else if (Mathf.Abs(Vector3.Dot(((Component)this).transform.right, originalWallJumpDirection)) != 0f) { originalRightDir = 1f / Mathf.Abs(Vector3.Dot(((Component)this).transform.right, originalWallJumpDirection)); } if (Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 - ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.1875f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 - ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.1875f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.375f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 - ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.375f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.5625f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 - ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.5625f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.75f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 - ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.75f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.9375f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 - ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.9375f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 1.125f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 - ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 1.125f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers))) { wallBackHit = true; distFromWall = Vector3.Distance(new Vector3(((RaycastHit)(ref hit)).point.x, 0f, ((RaycastHit)(ref hit)).point.z), new Vector3(((Component)this).transform.position.x, 0f, ((Component)this).transform.position.z)); } else { wallBackHit = false; } if (wallNormal != Vector3.zero && Quaternion.Angle(((Component)this).transform.rotation, Quaternion.LookRotation(wallNormal)) < 0.1f && !wallBackHit) { if ((Object)(object)animator != (Object)null && currentlyOnWall) { onWallAnimation = false; } currentlyOnWall = false; } if (wallJumping.allowWallJumping && currentlyOnWall) { if ((Object)(object)animator != (Object)null && !onWallAnimation && !sliding) { if (angleBetweenPlayerAndWall >= 90f) { animator.SetFloat("wallState", 4f); } else { animator.SetFloat("wallState", 3f); } animator.CrossFade("WallJump", 0f, -1, 0f); onWallAnimation = true; } wallJumpTimer += 0.02f; swimDirection = Vector3.zero; swimmingMovementSpeed = 0f; swimmingMovementTransferred = true; moveDirection = Vector3.zero; if (Object.op_Implicit((Object)(object)rigidBody)) { rigidBody.velocity = Vector3.zero; } if (Quaternion.Angle(((Component)this).transform.rotation, Quaternion.LookRotation(wallNormal)) < 0.1f && wallJumping.slideDownWalls && noCollisionTimer < 5f) { wallHitPoint += ((Component)this).transform.forward / 125f; } ((Component)this).transform.position = Vector3.Lerp(((Component)this).transform.position, new Vector3(wallHitPoint.x, ((Component)this).transform.position.y, wallHitPoint.z), 10f * Time.deltaTime); if (Quaternion.Angle(((Component)this).transform.rotation, Quaternion.LookRotation(wallNormal)) >= 0.01f) { firstDistFromWall = distFromWall; } else if (distFromWall - firstDistFromWall > 0.01f) { Transform transform = ((Component)this).transform; transform.position -= ((Component)this).transform.forward / 125f; } if (Quaternion.Angle(((Component)this).transform.rotation, Quaternion.LookRotation(wallNormal)) < 1f) { turningToWall = false; } ((Component)this).transform.rotation = Quaternion.Slerp(((Component)this).transform.rotation, Quaternion.LookRotation(wallNormal), wallJumping.rotationToWallSpeed * 2f * Time.deltaTime); originalWallJumpDirection = ((Component)this).transform.forward * wallJumping.wallJumpDistance + ((Component)this).transform.up * wallJumping.wallJumpHeight; wallJumpDirection = ((Component)this).transform.forward * wallJumping.wallJumpDistance + ((Component)this).transform.up * wallJumping.wallJumpHeight; if (wallJumping.slideDownWalls && wallJumping.slideDownSpeed != 0f) { if (slideDownSpeed2 < gravity) { slideDownSpeed2 += wallJumping.slideDownSpeed / 100f * wallJumpTimer; } else { slideDownSpeed2 = gravity; } if (Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled) { characterController.Move(new Vector3(0f, 0f - slideDownSpeed2, 0f) * Time.deltaTime); } else if (Object.op_Implicit((Object)(object)rigidBody)) { rigidBody.MovePosition(((Component)this).transform.position + new Vector3(0f, 0f - slideDownSpeed2, 0f) * Time.deltaTime); } if (Quaternion.Angle(((Component)this).transform.rotation, Quaternion.LookRotation(wallNormal)) < 0.1f && noCollisionTimer < 5f) { wallHitPoint = ((Component)this).transform.position + ((Component)this).transform.forward / 125f; } } if (jumpPressed && canCrouchToAction) { inMidAirFromWallJump = true; doubleJumpPossible = true; WallJump(); currentlyOnWall = false; } if (wallJumping.useWallJumpTimeLimit && wallJumpTimer > wallJumping.wallJumpTimeLimit) { currentlyOnWall = false; } } else if ((Object)(object)animator != (Object)null) { onWallAnimation = false; } if (!currentlyOnWall) { turningToWall = false; } if ((Object)(object)animator != (Object)null) { if (grounded.currentlyGrounded && outOfWaterTimer > 0.2f) { animator.SetBool("grounded", true); } else { animator.SetBool("grounded", false); } } if (!grounded.currentlyGrounded) { return; } currentlyOnWall = false; if (inMidAirFromWallJump) { ((Component)this).transform.eulerAngles = new Vector3(0f, ((Component)this).transform.eulerAngles.y, 0f); inMidAirFromWallJump = false; } if (!((Object)(object)animator != (Object)null)) { return; } AnimatorStateInfo currentAnimatorStateInfo = animator.GetCurrentAnimatorStateInfo(0); if (!((AnimatorStateInfo)(ref currentAnimatorStateInfo)).IsName("WallJump") || animator.GetFloat("wallState") != 0f) { AnimatorTransitionInfo animatorTransitionInfo = animator.GetAnimatorTransitionInfo(0); if (!((AnimatorTransitionInfo)(ref animatorTransitionInfo)).IsName("Movement -> Falling")) { AnimatorTransitionInfo animatorTransitionInfo2 = animator.GetAnimatorTransitionInfo(0); if (!((AnimatorTransitionInfo)(ref animatorTransitionInfo2)).IsName("Falling -> Movement")) { AnimatorTransitionInfo animatorTransitionInfo3 = animator.GetAnimatorTransitionInfo(0); if (!((AnimatorTransitionInfo)(ref animatorTransitionInfo3)).IsName("Jump -> Falling")) { AnimatorTransitionInfo animatorTransitionInfo4 = animator.GetAnimatorTransitionInfo(0); if (!((AnimatorTransitionInfo)(ref animatorTransitionInfo4)).IsName("DoubleJump -> Falling")) { goto IL_0f1d; } } } } } animator.CrossFade("Movement", 0f, -1, 0f); goto IL_0f1d; IL_0f1d: AnimatorStateInfo currentAnimatorStateInfo2 = animator.GetCurrentAnimatorStateInfo(0); if (((AnimatorStateInfo)(ref currentAnimatorStateInfo2)).IsName("Crouching")) { return; } AnimatorTransitionInfo animatorTransitionInfo5 = animator.GetAnimatorTransitionInfo(0); if (!((AnimatorTransitionInfo)(ref animatorTransitionInfo5)).IsName("Movement -> Crouching") && attackState != 2) { AnimatorStateInfo currentAnimatorStateInfo3 = animator.GetCurrentAnimatorStateInfo(0); if (!((AnimatorStateInfo)(ref currentAnimatorStateInfo3)).IsName("Attack") && crouching) { animator.CrossFade("Crouching", 0f, -1, 0f); } } } private void PerformWallJump() { //IL_009e: Unknown result type (might be due to invalid IL or missing references) //IL_00b8: Unknown result type (might be due to invalid IL or missing references) //IL_00ce: Unknown result type (might be due to invalid IL or missing references) //IL_00d3: Unknown result type (might be due to invalid IL or missing references) //IL_00da: Unknown result type (might be due to invalid IL or missing references) //IL_00f4: Unknown result type (might be due to invalid IL or missing references) //IL_010a: Unknown result type (might be due to invalid IL or missing references) //IL_010f: Unknown result type (might be due to invalid IL or missing references) //IL_07ca: Unknown result type (might be due to invalid IL or missing references) //IL_07ea: Unknown result type (might be due to invalid IL or missing references) //IL_07f4: Unknown result type (might be due to invalid IL or missing references) //IL_07f9: Unknown result type (might be due to invalid IL or missing references) //IL_0792: Unknown result type (might be due to invalid IL or missing references) //IL_079c: Unknown result type (might be due to invalid IL or missing references) //IL_07a1: Unknown result type (might be due to invalid IL or missing references) //IL_015d: Unknown result type (might be due to invalid IL or missing references) //IL_0189: Unknown result type (might be due to invalid IL or missing references) //IL_018e: Unknown result type (might be due to invalid IL or missing references) //IL_0193: Unknown result type (might be due to invalid IL or missing references) //IL_0198: Unknown result type (might be due to invalid IL or missing references) //IL_019f: Unknown result type (might be due to invalid IL or missing references) //IL_01cb: Unknown result type (might be due to invalid IL or missing references) //IL_01d0: Unknown result type (might be due to invalid IL or missing references) //IL_01d5: Unknown result type (might be due to invalid IL or missing references) //IL_01da: Unknown result type (might be due to invalid IL or missing references) //IL_0317: Unknown result type (might be due to invalid IL or missing references) //IL_031c: Unknown result type (might be due to invalid IL or missing references) //IL_0218: Unknown result type (might be due to invalid IL or missing references) //IL_021d: Unknown result type (might be due to invalid IL or missing references) //IL_04ea: Unknown result type (might be due to invalid IL or missing references) //IL_04ef: Unknown result type (might be due to invalid IL or missing references) //IL_0423: Unknown result type (might be due to invalid IL or missing references) //IL_0428: Unknown result type (might be due to invalid IL or missing references) //IL_036e: Unknown result type (might be due to invalid IL or missing references) //IL_0395: Unknown result type (might be due to invalid IL or missing references) //IL_039a: Unknown result type (might be due to invalid IL or missing references) //IL_039f: Unknown result type (might be due to invalid IL or missing references) //IL_03a4: Unknown result type (might be due to invalid IL or missing references) //IL_0335: Unknown result type (might be due to invalid IL or missing references) //IL_033a: Unknown result type (might be due to invalid IL or missing references) //IL_0252: Unknown result type (might be due to invalid IL or missing references) //IL_0257: Unknown result type (might be due to invalid IL or missing references) //IL_0235: Unknown result type (might be due to invalid IL or missing references) //IL_023a: Unknown result type (might be due to invalid IL or missing references) //IL_05bb: Unknown result type (might be due to invalid IL or missing references) //IL_05c6: Unknown result type (might be due to invalid IL or missing references) //IL_05d8: Unknown result type (might be due to invalid IL or missing references) //IL_05fb: Unknown result type (might be due to invalid IL or missing references) //IL_0600: Unknown result type (might be due to invalid IL or missing references) //IL_0605: Unknown result type (might be due to invalid IL or missing references) //IL_0568: Unknown result type (might be due to invalid IL or missing references) //IL_058f: Unknown result type (might be due to invalid IL or missing references) //IL_0594: Unknown result type (might be due to invalid IL or missing references) //IL_0599: Unknown result type (might be due to invalid IL or missing references) //IL_059e: Unknown result type (might be due to invalid IL or missing references) //IL_0508: Unknown result type (might be due to invalid IL or missing references) //IL_050d: Unknown result type (might be due to invalid IL or missing references) //IL_04a0: Unknown result type (might be due to invalid IL or missing references) //IL_04c8: Unknown result type (might be due to invalid IL or missing references) //IL_04cd: Unknown result type (might be due to invalid IL or missing references) //IL_04d2: Unknown result type (might be due to invalid IL or missing references) //IL_04d7: Unknown result type (might be due to invalid IL or missing references) //IL_0441: Unknown result type (might be due to invalid IL or missing references) //IL_0446: Unknown result type (might be due to invalid IL or missing references) //IL_03b2: Unknown result type (might be due to invalid IL or missing references) //IL_03da: Unknown result type (might be due to invalid IL or missing references) //IL_03df: Unknown result type (might be due to invalid IL or missing references) //IL_03e4: Unknown result type (might be due to invalid IL or missing references) //IL_03e9: Unknown result type (might be due to invalid IL or missing references) //IL_0353: Unknown result type (might be due to invalid IL or missing references) //IL_0358: Unknown result type (might be due to invalid IL or missing references) //IL_02ce: Unknown result type (might be due to invalid IL or missing references) //IL_02f5: Unknown result type (might be due to invalid IL or missing references) //IL_02fa: Unknown result type (might be due to invalid IL or missing references) //IL_02ff: Unknown result type (might be due to invalid IL or missing references) //IL_0304: Unknown result type (might be due to invalid IL or missing references) //IL_026f: Unknown result type (might be due to invalid IL or missing references) //IL_0274: Unknown result type (might be due to invalid IL or missing references) //IL_0289: Unknown result type (might be due to invalid IL or missing references) //IL_02b1: Unknown result type (might be due to invalid IL or missing references) //IL_02b6: Unknown result type (might be due to invalid IL or missing references) //IL_02bb: Unknown result type (might be due to invalid IL or missing references) //IL_02c0: Unknown result type (might be due to invalid IL or missing references) //IL_0624: Unknown result type (might be due to invalid IL or missing references) //IL_062f: Unknown result type (might be due to invalid IL or missing references) //IL_0641: Unknown result type (might be due to invalid IL or missing references) //IL_0664: Unknown result type (might be due to invalid IL or missing references) //IL_0669: Unknown result type (might be due to invalid IL or missing references) //IL_066e: Unknown result type (might be due to invalid IL or missing references) //IL_0523: Unknown result type (might be due to invalid IL or missing references) //IL_054b: Unknown result type (might be due to invalid IL or missing references) //IL_0550: Unknown result type (might be due to invalid IL or missing references) //IL_0555: Unknown result type (might be due to invalid IL or missing references) //IL_055a: Unknown result type (might be due to invalid IL or missing references) //IL_045c: Unknown result type (might be due to invalid IL or missing references) //IL_0483: Unknown result type (might be due to invalid IL or missing references) //IL_0488: Unknown result type (might be due to invalid IL or missing references) //IL_048d: Unknown result type (might be due to invalid IL or missing references) //IL_0492: Unknown result type (might be due to invalid IL or missing references) //IL_0688: Unknown result type (might be due to invalid IL or missing references) //IL_0693: Unknown result type (might be due to invalid IL or missing references) //IL_06ac: Unknown result type (might be due to invalid IL or missing references) //IL_06cf: Unknown result type (might be due to invalid IL or missing references) //IL_06d4: Unknown result type (might be due to invalid IL or missing references) //IL_06d9: Unknown result type (might be due to invalid IL or missing references) //IL_06f8: Unknown result type (might be due to invalid IL or missing references) //IL_0703: Unknown result type (might be due to invalid IL or missing references) //IL_071b: Unknown result type (might be due to invalid IL or missing references) //IL_073e: Unknown result type (might be due to invalid IL or missing references) //IL_0743: Unknown result type (might be due to invalid IL or missing references) //IL_0748: Unknown result type (might be due to invalid IL or missing references) if (inMidAirFromWallJump) { if ((Object)(object)animator != (Object)null && onWallAnimation) { if (angleBetweenPlayerAndWall >= 90f) { animator.SetFloat("wallState", 2f); } else { animator.SetFloat("wallState", 1f); } animator.CrossFade("WallJump", 0f, -1, 0f); onWallAnimation = false; } if (jumpedOffWallForWallJump) { originalWallJumpDirection = Vector3.Lerp(originalWallJumpDirection, new Vector3(0f, originalWallJumpDirection.y, 0f), wallJumping.wallJumpDecelerationRate * Time.deltaTime); wallJumpDirection = Vector3.Lerp(wallJumpDirection, new Vector3(0f, wallJumpDirection.y, 0f), wallJumping.wallJumpDecelerationRate * Time.deltaTime); if (noCollisionTimer >= 5f && !currentlyOnWall) { if (!movement.sideScrolling.lockMovementOnXAxis && !movement.sideScrolling.lockMovementOnZAxis) { wallJumpDirection += Input.GetAxis("Horizontal") * (wallJumping.overallMovementSpeed / 8f) * ((Component)playerCamera).transform.right; wallJumpDirection += Input.GetAxis("Vertical") * (wallJumping.overallMovementSpeed / 8f) * ((Component)playerCamera).transform.forward; } else { if (movement.sideScrolling.lockMovementOnXAxis) { if (!movement.sideScrolling.flipAxisRotation) { if ((((Component)this).transform.eulerAngles.y >= 270f && ((Component)this).transform.eulerAngles.y <= 360f) || (((Component)this).transform.eulerAngles.y <= 90f && ((Component)this).transform.eulerAngles.y >= -90f)) { wallJumpDirection += (0f - Input.GetAxis("Horizontal")) * (wallJumping.overallMovementSpeed / 8f) * ((Component)this).transform.forward; } else { wallJumpDirection += Input.GetAxis("Horizontal") * (wallJumping.overallMovementSpeed / 8f) * ((Component)this).transform.forward; } } else if (((Component)this).transform.eulerAngles.y >= 270f || (((Component)this).transform.eulerAngles.y <= 90f && ((Component)this).transform.eulerAngles.y >= -90f)) { wallJumpDirection += Input.GetAxis("Horizontal") * (wallJumping.overallMovementSpeed / 8f) * ((Component)this).transform.forward; } else { wallJumpDirection += (0f - Input.GetAxis("Horizontal")) * (wallJumping.overallMovementSpeed / 8f) * ((Component)this).transform.forward; } } if (movement.sideScrolling.lockMovementOnZAxis) { if (!movement.sideScrolling.flipAxisRotation) { if (((Component)this).transform.eulerAngles.y >= 0f && ((Component)this).transform.eulerAngles.y <= 180f) { wallJumpDirection += Input.GetAxis("Horizontal") * (wallJumping.overallMovementSpeed / 8f) * ((Component)this).transform.forward; } else { wallJumpDirection += (0f - Input.GetAxis("Horizontal")) * (wallJumping.overallMovementSpeed / 8f) * ((Component)this).transform.forward; } } else if (((Component)this).transform.eulerAngles.y >= 0f && ((Component)this).transform.eulerAngles.y <= 180f) { wallJumpDirection += (0f - Input.GetAxis("Horizontal")) * (wallJumping.overallMovementSpeed / 8f) * ((Component)this).transform.forward; } else { wallJumpDirection += Input.GetAxis("Horizontal") * (wallJumping.overallMovementSpeed / 8f) * ((Component)this).transform.forward; } } } if (forwardDir > originalForwardDir) { wallJumpDirection -= ((Component)this).transform.forward * (forwardDir / originalForwardDir) * (0f - (wallJumping.forwardMovementSpeedMultiple * 0.1f + 0.9f) + 1f); } else if (forwardDir < originalForwardDir) { wallJumpDirection += ((Component)this).transform.forward / (forwardDir / originalForwardDir) * (0f - (wallJumping.backMovementSpeedMultiple * 0.1f + 0.9f) + 1f); } if (rightDir > originalRightDir) { wallJumpDirection -= ((Component)this).transform.right * ((rightDir - originalRightDir) * originalRightDir) * (0f - (wallJumping.sideMovementSpeedMultiple / 2f + 0.5f) + 1f); } else if (rightDir < originalRightDir) { wallJumpDirection += ((Component)this).transform.right / (rightDir / originalRightDir * 2f) * (0f - (wallJumping.sideMovementSpeedMultiple * 0.075f + 0.925f) + 1f); } } } if (Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled) { characterController.Move(new Vector3(wallJumpDirection.x, 0f, wallJumpDirection.z) * Time.deltaTime); } else if (Object.op_Implicit((Object)(object)rigidBody)) { rigidBody.MovePosition(((Component)this).transform.position + new Vector3(wallJumpDirection.x, 0f, wallJumpDirection.z) * Time.deltaTime); } } if ((Object)(object)animator != (Object)null && ((!currentlyOnWall && (animator.GetFloat("wallState") == 3f || animator.GetFloat("wallState") == 4f)) || grounded.currentlyGrounded)) { animator.SetFloat("wallState", 0f); } } private void CheckForWallRigidbody() { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_002b: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0043: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_005a: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_0068: Unknown result type (might be due to invalid IL or missing references) //IL_006d: Unknown result type (might be due to invalid IL or missing references) //IL_0097: Unknown result type (might be due to invalid IL or missing references) //IL_009c: Unknown result type (might be due to invalid IL or missing references) //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_00b0: Unknown result type (might be due to invalid IL or missing references) //IL_00b1: Unknown result type (might be due to invalid IL or missing references) //IL_00b6: Unknown result type (might be due to invalid IL or missing references) //IL_00bb: Unknown result type (might be due to invalid IL or missing references) //IL_00c7: Unknown result type (might be due to invalid IL or missing references) //IL_00cc: Unknown result type (might be due to invalid IL or missing references) //IL_00d0: Unknown result type (might be due to invalid IL or missing references) //IL_00e0: Unknown result type (might be due to invalid IL or missing references) //IL_00e1: Unknown result type (might be due to invalid IL or missing references) //IL_00e6: Unknown result type (might be due to invalid IL or missing references) //IL_00eb: Unknown result type (might be due to invalid IL or missing references) //IL_00f7: Unknown result type (might be due to invalid IL or missing references) //IL_00fc: Unknown result type (might be due to invalid IL or missing references) //IL_0100: Unknown result type (might be due to invalid IL or missing references) //IL_0110: Unknown result type (might be due to invalid IL or missing references) //IL_0111: Unknown result type (might be due to invalid IL or missing references) //IL_0116: Unknown result type (might be due to invalid IL or missing references) //IL_011b: Unknown result type (might be due to invalid IL or missing references) //IL_0127: Unknown result type (might be due to invalid IL or missing references) //IL_012c: Unknown result type (might be due to invalid IL or missing references) //IL_0130: Unknown result type (might be due to invalid IL or missing references) //IL_0140: Unknown result type (might be due to invalid IL or missing references) //IL_0141: Unknown result type (might be due to invalid IL or missing references) //IL_0146: Unknown result type (might be due to invalid IL or missing references) //IL_014b: Unknown result type (might be due to invalid IL or missing references) //IL_0a5d: Unknown result type (might be due to invalid IL or missing references) //IL_0a67: Unknown result type (might be due to invalid IL or missing references) //IL_0a6d: Unknown result type (might be due to invalid IL or missing references) //IL_0a77: Unknown result type (might be due to invalid IL or missing references) //IL_0a7c: Unknown result type (might be due to invalid IL or missing references) //IL_0a86: Unknown result type (might be due to invalid IL or missing references) //IL_0a8c: Unknown result type (might be due to invalid IL or missing references) //IL_0a96: Unknown result type (might be due to invalid IL or missing references) //IL_0a9c: Unknown result type (might be due to invalid IL or missing references) //IL_0aa6: Unknown result type (might be due to invalid IL or missing references) //IL_0aab: Unknown result type (might be due to invalid IL or missing references) //IL_0ab5: Unknown result type (might be due to invalid IL or missing references) //IL_0ac1: Unknown result type (might be due to invalid IL or missing references) //IL_017f: Unknown result type (might be due to invalid IL or missing references) //IL_0184: Unknown result type (might be due to invalid IL or missing references) //IL_0188: Unknown result type (might be due to invalid IL or missing references) //IL_0198: Unknown result type (might be due to invalid IL or missing references) //IL_0199: Unknown result type (might be due to invalid IL or missing references) //IL_019e: Unknown result type (might be due to invalid IL or missing references) //IL_01a3: Unknown result type (might be due to invalid IL or missing references) //IL_01af: Unknown result type (might be due to invalid IL or missing references) //IL_01b4: Unknown result type (might be due to invalid IL or missing references) //IL_01b8: Unknown result type (might be due to invalid IL or missing references) //IL_01c8: Unknown result type (might be due to invalid IL or missing references) //IL_01c9: Unknown result type (might be due to invalid IL or missing references) //IL_01ce: Unknown result type (might be due to invalid IL or missing references) //IL_01d3: Unknown result type (might be due to invalid IL or missing references) //IL_01df: Unknown result type (might be due to invalid IL or missing references) //IL_01e4: Unknown result type (might be due to invalid IL or missing references) //IL_01e8: Unknown result type (might be due to invalid IL or missing references) //IL_01fe: Unknown result type (might be due to invalid IL or missing references) //IL_01ff: Unknown result type (might be due to invalid IL or missing references) //IL_0204: Unknown result type (might be due to invalid IL or missing references) //IL_0209: Unknown result type (might be due to invalid IL or missing references) //IL_0215: Unknown result type (might be due to invalid IL or missing references) //IL_021a: Unknown result type (might be due to invalid IL or missing references) //IL_021e: Unknown result type (might be due to invalid IL or missing references) //IL_0234: Unknown result type (might be due to invalid IL or missing references) //IL_0235: Unknown result type (might be due to invalid IL or missing references) //IL_023a: Unknown result type (might be due to invalid IL or missing references) //IL_023f: Unknown result type (might be due to invalid IL or missing references) //IL_024b: Unknown result type (might be due to invalid IL or missing references) //IL_0250: Unknown result type (might be due to invalid IL or missing references) //IL_0254: Unknown result type (might be due to invalid IL or missing references) //IL_026a: Unknown result type (might be due to invalid IL or missing references) //IL_026b: Unknown result type (might be due to invalid IL or missing references) //IL_0270: Unknown result type (might be due to invalid IL or missing references) //IL_0275: Unknown result type (might be due to invalid IL or missing references) //IL_0281: Unknown result type (might be due to invalid IL or missing references) //IL_0286: Unknown result type (might be due to invalid IL or missing references) //IL_028a: Unknown result type (might be due to invalid IL or missing references) //IL_02a0: Unknown result type (might be due to invalid IL or missing references) //IL_02a1: Unknown result type (might be due to invalid IL or missing references) //IL_02a6: Unknown result type (might be due to invalid IL or missing references) //IL_02ab: Unknown result type (might be due to invalid IL or missing references) //IL_02b7: Unknown result type (might be due to invalid IL or missing references) //IL_02bc: Unknown result type (might be due to invalid IL or missing references) //IL_02c0: Unknown result type (might be due to invalid IL or missing references) //IL_02d0: Unknown result type (might be due to invalid IL or missing references) //IL_02d1: Unknown result type (might be due to invalid IL or missing references) //IL_02d6: Unknown result type (might be due to invalid IL or missing references) //IL_02db: Unknown result type (might be due to invalid IL or missing references) //IL_02e7: Unknown result type (might be due to invalid IL or missing references) //IL_02ec: Unknown result type (might be due to invalid IL or missing references) //IL_02f0: Unknown result type (might be due to invalid IL or missing references) //IL_0300: Unknown result type (might be due to invalid IL or missing references) //IL_0301: Unknown result type (might be due to invalid IL or missing references) //IL_0306: Unknown result type (might be due to invalid IL or missing references) //IL_030b: Unknown result type (might be due to invalid IL or missing references) //IL_0317: Unknown result type (might be due to invalid IL or missing references) //IL_031c: Unknown result type (might be due to invalid IL or missing references) //IL_0320: Unknown result type (might be due to invalid IL or missing references) //IL_0336: Unknown result type (might be due to invalid IL or missing references) //IL_0337: Unknown result type (might be due to invalid IL or missing references) //IL_033c: Unknown result type (might be due to invalid IL or missing references) //IL_0341: Unknown result type (might be due to invalid IL or missing references) //IL_034d: Unknown result type (might be due to invalid IL or missing references) //IL_0352: Unknown result type (might be due to invalid IL or missing references) //IL_0356: Unknown result type (might be due to invalid IL or missing references) //IL_036c: Unknown result type (might be due to invalid IL or missing references) //IL_036d: Unknown result type (might be due to invalid IL or missing references) //IL_0372: Unknown result type (might be due to invalid IL or missing references) //IL_0377: Unknown result type (might be due to invalid IL or missing references) //IL_0383: Unknown result type (might be due to invalid IL or missing references) //IL_0388: Unknown result type (might be due to invalid IL or missing references) //IL_038c: Unknown result type (might be due to invalid IL or missing references) //IL_03a2: Unknown result type (might be due to invalid IL or missing references) //IL_03a3: Unknown result type (might be due to invalid IL or missing references) //IL_03a8: Unknown result type (might be due to invalid IL or missing references) //IL_03ad: Unknown result type (might be due to invalid IL or missing references) //IL_03b9: Unknown result type (might be due to invalid IL or missing references) //IL_03be: Unknown result type (might be due to invalid IL or missing references) //IL_03c2: Unknown result type (might be due to invalid IL or missing references) //IL_03d8: Unknown result type (might be due to invalid IL or missing references) //IL_03da: Unknown result type (might be due to invalid IL or missing references) //IL_03df: Unknown result type (might be due to invalid IL or missing references) //IL_03e4: Unknown result type (might be due to invalid IL or missing references) //IL_03f0: Unknown result type (might be due to invalid IL or missing references) //IL_03f5: Unknown result type (might be due to invalid IL or missing references) //IL_03f9: Unknown result type (might be due to invalid IL or missing references) //IL_040f: Unknown result type (might be due to invalid IL or missing references) //IL_0411: Unknown result type (might be due to invalid IL or missing references) //IL_0416: Unknown result type (might be due to invalid IL or missing references) //IL_041b: Unknown result type (might be due to invalid IL or missing references) //IL_0ed0: Unknown result type (might be due to invalid IL or missing references) //IL_0eda: Unknown result type (might be due to invalid IL or missing references) //IL_0ee0: Unknown result type (might be due to invalid IL or missing references) //IL_0eea: Unknown result type (might be due to invalid IL or missing references) //IL_0eef: Unknown result type (might be due to invalid IL or missing references) //IL_0ef9: Unknown result type (might be due to invalid IL or missing references) //IL_0eff: Unknown result type (might be due to invalid IL or missing references) //IL_0f09: Unknown result type (might be due to invalid IL or missing references) //IL_0f0f: Unknown result type (might be due to invalid IL or missing references) //IL_0f19: Unknown result type (might be due to invalid IL or missing references) //IL_0f1e: Unknown result type (might be due to invalid IL or missing references) //IL_0f28: Unknown result type (might be due to invalid IL or missing references) //IL_0f34: Unknown result type (might be due to invalid IL or missing references) //IL_0ad6: Unknown result type (might be due to invalid IL or missing references) //IL_0ae0: Unknown result type (might be due to invalid IL or missing references) //IL_0ae6: Unknown result type (might be due to invalid IL or missing references) //IL_0af0: Unknown result type (might be due to invalid IL or missing references) //IL_0af5: Unknown result type (might be due to invalid IL or missing references) //IL_0aff: Unknown result type (might be due to invalid IL or missing references) //IL_0b05: Unknown result type (might be due to invalid IL or missing references) //IL_0b0f: Unknown result type (might be due to invalid IL or missing references) //IL_0b15: Unknown result type (might be due to invalid IL or missing references) //IL_0b1f: Unknown result type (might be due to invalid IL or missing references) //IL_0b24: Unknown result type (might be due to invalid IL or missing references) //IL_0b2e: Unknown result type (might be due to invalid IL or missing references) //IL_0b3a: Unknown result type (might be due to invalid IL or missing references) //IL_043e: Unknown result type (might be due to invalid IL or missing references) //IL_0443: Unknown result type (might be due to invalid IL or missing references) //IL_0447: Unknown result type (might be due to invalid IL or missing references) //IL_0457: Unknown result type (might be due to invalid IL or missing references) //IL_0458: Unknown result type (might be due to invalid IL or missing references) //IL_045d: Unknown result type (might be due to invalid IL or missing references) //IL_0462: Unknown result type (might be due to invalid IL or missing references) //IL_046e: Unknown result type (might be due to invalid IL or missing references) //IL_0473: Unknown result type (might be due to invalid IL or missing references) //IL_0477: Unknown result type (might be due to invalid IL or missing references) //IL_0487: Unknown result type (might be due to invalid IL or missing references) //IL_0488: Unknown result type (might be due to invalid IL or missing references) //IL_048d: Unknown result type (might be due to invalid IL or missing references) //IL_0492: Unknown result type (might be due to invalid IL or missing references) //IL_049e: Unknown result type (might be due to invalid IL or missing references) //IL_04a3: Unknown result type (might be due to invalid IL or missing references) //IL_04a7: Unknown result type (might be due to invalid IL or missing references) //IL_04bd: Unknown result type (might be due to invalid IL or missing references) //IL_04be: Unknown result type (might be due to invalid IL or missing references) //IL_04c3: Unknown result type (might be due to invalid IL or missing references) //IL_04c8: Unknown result type (might be due to invalid IL or missing references) //IL_04d4: Unknown result type (might be due to invalid IL or missing references) //IL_04d9: Unknown result type (might be due to invalid IL or missing references) //IL_04dd: Unknown result type (might be due to invalid IL or missing references) //IL_04f3: Unknown result type (might be due to invalid IL or missing references) //IL_04f4: Unknown result type (might be due to invalid IL or missing references) //IL_04f9: Unknown result type (might be due to invalid IL or missing references) //IL_04fe: Unknown result type (might be due to invalid IL or missing references) //IL_050a: Unknown result type (might be due to invalid IL or missing references) //IL_050f: Unknown result type (might be due to invalid IL or missing references) //IL_0513: Unknown result type (might be due to invalid IL or missing references) //IL_0529: Unknown result type (might be due to invalid IL or missing references) //IL_052a: Unknown result type (might be due to invalid IL or missing references) //IL_052f: Unknown result type (might be due to invalid IL or missing references) //IL_0534: Unknown result type (might be due to invalid IL or missing references) //IL_0540: Unknown result type (might be due to invalid IL or missing references) //IL_0545: Unknown result type (might be due to invalid IL or missing references) //IL_0549: Unknown result type (might be due to invalid IL or missing references) //IL_055f: Unknown result type (might be due to invalid IL or missing references) //IL_0560: Unknown result type (might be due to invalid IL or missing references) //IL_0565: Unknown result type (might be due to invalid IL or missing references) //IL_056a: Unknown result type (might be due to invalid IL or missing references) //IL_0576: Unknown result type (might be due to invalid IL or missing references) //IL_057b: Unknown result type (might be due to invalid IL or missing references) //IL_057f: Unknown result type (might be due to invalid IL or missing references) //IL_058f: Unknown result type (might be due to invalid IL or missing references) //IL_0590: Unknown result type (might be due to invalid IL or missing references) //IL_0595: Unknown result type (might be due to invalid IL or missing references) //IL_059a: Unknown result type (might be due to invalid IL or missing references) //IL_05a6: Unknown result type (might be due to invalid IL or missing references) //IL_05ab: Unknown result type (might be due to invalid IL or missing references) //IL_05af: Unknown result type (might be due to invalid IL or missing references) //IL_05bf: Unknown result type (might be due to invalid IL or missing references) //IL_05c0: Unknown result type (might be due to invalid IL or missing references) //IL_05c5: Unknown result type (might be due to invalid IL or missing references) //IL_05ca: Unknown result type (might be due to invalid IL or missing references) //IL_05d6: Unknown result type (might be due to invalid IL or missing references) //IL_05db: Unknown result type (might be due to invalid IL or missing references) //IL_05df: Unknown result type (might be due to invalid IL or missing references) //IL_05f5: Unknown result type (might be due to invalid IL or missing references) //IL_05f6: Unknown result type (might be due to invalid IL or missing references) //IL_05fb: Unknown result type (might be due to invalid IL or missing references) //IL_0600: Unknown result type (might be due to invalid IL or missing references) //IL_060c: Unknown result type (might be due to invalid IL or missing references) //IL_0611: Unknown result type (might be due to invalid IL or missing references) //IL_0615: Unknown result type (might be due to invalid IL or missing references) //IL_062b: Unknown result type (might be due to invalid IL or missing references) //IL_062c: Unknown result type (might be due to invalid IL or missing references) //IL_0631: Unknown result type (might be due to invalid IL or missing references) //IL_0636: Unknown result type (might be due to invalid IL or missing references) //IL_0642: Unknown result type (might be due to invalid IL or missing references) //IL_0647: Unknown result type (might be due to invalid IL or missing references) //IL_064b: Unknown result type (might be due to invalid IL or missing references) //IL_0661: Unknown result type (might be due to invalid IL or missing references) //IL_0662: Unknown result type (might be due to invalid IL or missing references) //IL_0667: Unknown result type (might be due to invalid IL or missing references) //IL_066c: Unknown result type (might be due to invalid IL or missing references) //IL_0678: Unknown result type (might be due to invalid IL or missing references) //IL_067d: Unknown result type (might be due to invalid IL or missing references) //IL_0681: Unknown result type (might be due to invalid IL or missing references) //IL_0691: Unknown result type (might be due to invalid IL or missing references) //IL_0693: Unknown result type (might be due to invalid IL or missing references) //IL_0698: Unknown result type (might be due to invalid IL or missing references) //IL_069d: Unknown result type (might be due to invalid IL or missing references) //IL_06a9: Unknown result type (might be due to invalid IL or missing references) //IL_06ae: Unknown result type (might be due to invalid IL or missing references) //IL_06b2: Unknown result type (might be due to invalid IL or missing references) //IL_06c2: Unknown result type (might be due to invalid IL or missing references) //IL_06c4: Unknown result type (might be due to invalid IL or missing references) //IL_06c9: Unknown result type (might be due to invalid IL or missing references) //IL_06ce: Unknown result type (might be due to invalid IL or missing references) //IL_10dd: Unknown result type (might be due to invalid IL or missing references) //IL_10e3: Unknown result type (might be due to invalid IL or missing references) //IL_10e8: Unknown result type (might be due to invalid IL or missing references) //IL_10ee: Unknown result type (might be due to invalid IL or missing references) //IL_10f4: Unknown result type (might be due to invalid IL or missing references) //IL_10f9: Unknown result type (might be due to invalid IL or missing references) //IL_1105: Unknown result type (might be due to invalid IL or missing references) //IL_0f49: Unknown result type (might be due to invalid IL or missing references) //IL_0f4f: Unknown result type (might be due to invalid IL or missing references) //IL_0f54: Unknown result type (might be due to invalid IL or missing references) //IL_0f5e: Unknown result type (might be due to invalid IL or missing references) //IL_0f64: Unknown result type (might be due to invalid IL or missing references) //IL_0f6a: Unknown result type (might be due to invalid IL or missing references) //IL_0f6f: Unknown result type (might be due to invalid IL or missing references) //IL_0f79: Unknown result type (might be due to invalid IL or missing references) //IL_0f85: Unknown result type (might be due to invalid IL or missing references) //IL_0c9e: Unknown result type (might be due to invalid IL or missing references) //IL_0ca3: Unknown result type (might be due to invalid IL or missing references) //IL_0ca7: Unknown result type (might be due to invalid IL or missing references) //IL_0cad: Unknown result type (might be due to invalid IL or missing references) //IL_0cb9: Unknown result type (might be due to invalid IL or missing references) //IL_0b4f: Unknown result type (might be due to invalid IL or missing references) //IL_0b55: Unknown result type (might be due to invalid IL or missing references) //IL_0b5a: Unknown result type (might be due to invalid IL or missing references) //IL_0b64: Unknown result type (might be due to invalid IL or missing references) //IL_0b6a: Unknown result type (might be due to invalid IL or missing references) //IL_0b70: Unknown result type (might be due to invalid IL or missing references) //IL_0b75: Unknown result type (might be due to invalid IL or missing references) //IL_0b7f: Unknown result type (might be due to invalid IL or missing references) //IL_0b8b: Unknown result type (might be due to invalid IL or missing references) //IL_06f1: Unknown result type (might be due to invalid IL or missing references) //IL_06f6: Unknown result type (might be due to invalid IL or missing references) //IL_06fa: Unknown result type (might be due to invalid IL or missing references) //IL_0705: Unknown result type (might be due to invalid IL or missing references) //IL_070a: Unknown result type (might be due to invalid IL or missing references) //IL_0719: Unknown result type (might be due to invalid IL or missing references) //IL_071a: Unknown result type (might be due to invalid IL or missing references) //IL_071f: Unknown result type (might be due to invalid IL or missing references) //IL_0724: Unknown result type (might be due to invalid IL or missing references) //IL_0730: Unknown result type (might be due to invalid IL or missing references) //IL_0735: Unknown result type (might be due to invalid IL or missing references) //IL_0739: Unknown result type (might be due to invalid IL or missing references) //IL_0744: Unknown result type (might be due to invalid IL or missing references) //IL_0749: Unknown result type (might be due to invalid IL or missing references) //IL_0758: Unknown result type (might be due to invalid IL or missing references) //IL_0759: Unknown result type (might be due to invalid IL or missing references) //IL_075e: Unknown result type (might be due to invalid IL or missing references) //IL_0763: Unknown result type (might be due to invalid IL or missing references) //IL_076f: Unknown result type (might be due to invalid IL or missing references) //IL_0774: Unknown result type (might be due to invalid IL or missing references) //IL_0778: Unknown result type (might be due to invalid IL or missing references) //IL_0783: Unknown result type (might be due to invalid IL or missing references) //IL_0788: Unknown result type (might be due to invalid IL or missing references) //IL_079d: Unknown result type (might be due to invalid IL or missing references) //IL_079e: Unknown result type (might be due to invalid IL or missing references) //IL_07a3: Unknown result type (might be due to invalid IL or missing references) //IL_07a8: Unknown result type (might be due to invalid IL or missing references) //IL_07b4: Unknown result type (might be due to invalid IL or missing references) //IL_07b9: Unknown result type (might be due to invalid IL or missing references) //IL_07bd: Unknown result type (might be due to invalid IL or missing references) //IL_07c8: Unknown result type (might be due to invalid IL or missing references) //IL_07cd: Unknown result type (might be due to invalid IL or missing references) //IL_07e2: Unknown result type (might be due to invalid IL or missing references) //IL_07e3: Unknown result type (might be due to invalid IL or missing references) //IL_07e8: Unknown result type (might be due to invalid IL or missing references) //IL_07ed: Unknown result type (might be due to invalid IL or missing references) //IL_07f9: Unknown result type (might be due to invalid IL or missing references) //IL_07fe: Unknown result type (might be due to invalid IL or missing references) //IL_0802: Unknown result type (might be due to invalid IL or missing references) //IL_080d: Unknown result type (might be due to invalid IL or missing references) //IL_0812: Unknown result type (might be due to invalid IL or missing references) //IL_0827: Unknown result type (might be due to invalid IL or missing references) //IL_0828: Unknown result type (might be due to invalid IL or missing references) //IL_082d: Unknown result type (might be due to invalid IL or missing references) //IL_0832: Unknown result type (might be due to invalid IL or missing references) //IL_083e: Unknown result type (might be due to invalid IL or missing references) //IL_0843: Unknown result type (might be due to invalid IL or missing references) //IL_0847: Unknown result type (might be due to invalid IL or missing references) //IL_0852: Unknown result type (might be due to invalid IL or missing references) //IL_0857: Unknown result type (might be due to invalid IL or missing references) //IL_086c: Unknown result type (might be due to invalid IL or missing references) //IL_086d: Unknown result type (might be due to invalid IL or missing references) //IL_0872: Unknown result type (might be due to invalid IL or missing references) //IL_0877: Unknown result type (might be due to invalid IL or missing references) //IL_0883: Unknown result type (might be due to invalid IL or missing references) //IL_0888: Unknown result type (might be due to invalid IL or missing references) //IL_088c: Unknown result type (might be due to invalid IL or missing references) //IL_0897: Unknown result type (might be due to invalid IL or missing references) //IL_089c: Unknown result type (might be due to invalid IL or missing references) //IL_08ab: Unknown result type (might be due to invalid IL or missing references) //IL_08ac: Unknown result type (might be due to invalid IL or missing references) //IL_08b1: Unknown result type (might be due to invalid IL or missing references) //IL_08b6: Unknown result type (might be due to invalid IL or missing references) //IL_08c2: Unknown result type (might be due to invalid IL or missing references) //IL_08c7: Unknown result type (might be due to invalid IL or missing references) //IL_08cb: Unknown result type (might be due to invalid IL or missing references) //IL_08d6: Unknown result type (might be due to invalid IL or missing references) //IL_08db: Unknown result type (might be due to invalid IL or missing references) //IL_08ea: Unknown result type (might be due to invalid IL or missing references) //IL_08eb: Unknown result type (might be due to invalid IL or missing references) //IL_08f0: Unknown result type (might be due to invalid IL or missing references) //IL_08f5: Unknown result type (might be due to invalid IL or missing references) //IL_0901: Unknown result type (might be due to invalid IL or missing references) //IL_0906: Unknown result type (might be due to invalid IL or missing references) //IL_090a: Unknown result type (might be due to invalid IL or missing references) //IL_0915: Unknown result type (might be due to invalid IL or missing references) //IL_091a: Unknown result type (might be due to invalid IL or missing references) //IL_092f: Unknown result type (might be due to invalid IL or missing references) //IL_0930: Unknown result type (might be due to invalid IL or missing references) //IL_0935: Unknown result type (might be due to invalid IL or missing references) //IL_093a: Unknown result type (might be due to invalid IL or missing references) //IL_0946: Unknown result type (might be due to invalid IL or missing references) //IL_094b: Unknown result type (might be due to invalid IL or missing references) //IL_094f: Unknown result type (might be due to invalid IL or missing references) //IL_095a: Unknown result type (might be due to invalid IL or missing references) //IL_095f: Unknown result type (might be due to invalid IL or missing references) //IL_0974: Unknown result type (might be due to invalid IL or missing references) //IL_0975: Unknown result type (might be due to invalid IL or missing references) //IL_097a: Unknown result type (might be due to invalid IL or missing references) //IL_097f: Unknown result type (might be due to invalid IL or missing references) //IL_098b: Unknown result type (might be due to invalid IL or missing references) //IL_0990: Unknown result type (might be due to invalid IL or missing references) //IL_0994: Unknown result type (might be due to invalid IL or missing references) //IL_099f: Unknown result type (might be due to invalid IL or missing references) //IL_09a4: Unknown result type (might be due to invalid IL or missing references) //IL_09b9: Unknown result type (might be due to invalid IL or missing references) //IL_09ba: Unknown result type (might be due to invalid IL or missing references) //IL_09bf: Unknown result type (might be due to invalid IL or missing references) //IL_09c4: Unknown result type (might be due to invalid IL or missing references) //IL_09d0: Unknown result type (might be due to invalid IL or missing references) //IL_09d5: Unknown result type (might be due to invalid IL or missing references) //IL_09d9: Unknown result type (might be due to invalid IL or missing references) //IL_09e4: Unknown result type (might be due to invalid IL or missing references) //IL_09e9: Unknown result type (might be due to invalid IL or missing references) //IL_09f8: Unknown result type (might be due to invalid IL or missing references) //IL_09fa: Unknown result type (might be due to invalid IL or missing references) //IL_09ff: Unknown result type (might be due to invalid IL or missing references) //IL_0a04: Unknown result type (might be due to invalid IL or missing references) //IL_0a10: Unknown result type (might be due to invalid IL or missing references) //IL_0a15: Unknown result type (might be due to invalid IL or missing references) //IL_0a19: Unknown result type (might be due to invalid IL or missing references) //IL_0a24: Unknown result type (might be due to invalid IL or missing references) //IL_0a29: Unknown result type (might be due to invalid IL or missing references) //IL_0a38: Unknown result type (might be due to invalid IL or missing references) //IL_0a3a: Unknown result type (might be due to invalid IL or missing references) //IL_0a3f: Unknown result type (might be due to invalid IL or missing references) //IL_0a44: Unknown result type (might be due to invalid IL or missing references) //IL_0f9a: Unknown result type (might be due to invalid IL or missing references) //IL_0fa0: Unknown result type (might be due to invalid IL or missing references) //IL_0fa5: Unknown result type (might be due to invalid IL or missing references) //IL_0faf: Unknown result type (might be due to invalid IL or missing references) //IL_0fb5: Unknown result type (might be due to invalid IL or missing references) //IL_0fbb: Unknown result type (might be due to invalid IL or missing references) //IL_0fc0: Unknown result type (might be due to invalid IL or missing references) //IL_0fca: Unknown result type (might be due to invalid IL or missing references) //IL_0fd6: Unknown result type (might be due to invalid IL or missing references) //IL_0d03: Unknown result type (might be due to invalid IL or missing references) //IL_0d09: Unknown result type (might be due to invalid IL or missing references) //IL_0d0e: Unknown result type (might be due to invalid IL or missing references) //IL_0d18: Unknown result type (might be due to invalid IL or missing references) //IL_0d1e: Unknown result type (might be due to invalid IL or missing references) //IL_0d24: Unknown result type (might be due to invalid IL or missing references) //IL_0d29: Unknown result type (might be due to invalid IL or missing references) //IL_0d33: Unknown result type (might be due to invalid IL or missing references) //IL_0d3f: Unknown result type (might be due to invalid IL or missing references) //IL_0cd3: Unknown result type (might be due to invalid IL or missing references) //IL_0cd8: Unknown result type (might be due to invalid IL or missing references) //IL_0cdc: Unknown result type (might be due to invalid IL or missing references) //IL_0ce2: Unknown result type (might be due to invalid IL or missing references) //IL_0cee: Unknown result type (might be due to invalid IL or missing references) //IL_0ba0: Unknown result type (might be due to invalid IL or missing references) //IL_0ba6: Unknown result type (might be due to invalid IL or missing references) //IL_0bab: Unknown result type (might be due to invalid IL or missing references) //IL_0bb5: Unknown result type (might be due to invalid IL or missing references) //IL_0bbb: Unknown result type (might be due to invalid IL or missing references) //IL_0bc1: Unknown result type (might be due to invalid IL or missing references) //IL_0bc6: Unknown result type (might be due to invalid IL or missing references) //IL_0bd0: Unknown result type (might be due to invalid IL or missing references) //IL_0bdc: Unknown result type (might be due to invalid IL or missing references) //IL_1146: Unknown result type (might be due to invalid IL or missing references) //IL_114c: Unknown result type (might be due to invalid IL or missing references) //IL_1151: Unknown result type (might be due to invalid IL or missing references) //IL_115c: Unknown result type (might be due to invalid IL or missing references) //IL_1162: Unknown result type (might be due to invalid IL or missing references) //IL_1167: Unknown result type (might be due to invalid IL or missing references) //IL_1172: Unknown result type (might be due to invalid IL or missing references) //IL_1183: Unknown result type (might be due to invalid IL or missing references) //IL_1188: Unknown result type (might be due to invalid IL or missing references) //IL_1194: Unknown result type (might be due to invalid IL or missing references) //IL_0feb: Unknown result type (might be due to invalid IL or missing references) //IL_0ff5: Unknown result type (might be due to invalid IL or missing references) //IL_0ffb: Unknown result type (might be due to invalid IL or missing references) //IL_1005: Unknown result type (might be due to invalid IL or missing references) //IL_100a: Unknown result type (might be due to invalid IL or missing references) //IL_1014: Unknown result type (might be due to invalid IL or missing references) //IL_101a: Unknown result type (might be due to invalid IL or missing references) //IL_1024: Unknown result type (might be due to invalid IL or missing references) //IL_102a: Unknown result type (might be due to invalid IL or missing references) //IL_1034: Unknown result type (might be due to invalid IL or missing references) //IL_1039: Unknown result type (might be due to invalid IL or missing references) //IL_1043: Unknown result type (might be due to invalid IL or missing references) //IL_104f: Unknown result type (might be due to invalid IL or missing references) //IL_0daa: Unknown result type (might be due to invalid IL or missing references) //IL_0daf: Unknown result type (might be due to invalid IL or missing references) //IL_0db3: Unknown result type (might be due to invalid IL or missing references) //IL_0db9: Unknown result type (might be due to invalid IL or missing references) //IL_0dc5: Unknown result type (might be due to invalid IL or missing references) //IL_0d54: Unknown result type (might be due to invalid IL or missing references) //IL_0d5a: Unknown result type (might be due to invalid IL or missing references) //IL_0d5f: Unknown result type (might be due to invalid IL or missing references) //IL_0d69: Unknown result type (might be due to invalid IL or missing references) //IL_0d6f: Unknown result type (might be due to invalid IL or missing references) //IL_0d75: Unknown result type (might be due to invalid IL or missing references) //IL_0d7a: Unknown result type (might be due to invalid IL or missing references) //IL_0d84: Unknown result type (might be due to invalid IL or missing references) //IL_0d90: Unknown result type (might be due to invalid IL or missing references) //IL_0bf1: Unknown result type (might be due to invalid IL or missing references) //IL_0bf7: Unknown result type (might be due to invalid IL or missing references) //IL_0c03: Unknown result type (might be due to invalid IL or missing references) //IL_11e4: Unknown result type (might be due to invalid IL or missing references) //IL_11ea: Unknown result type (might be due to invalid IL or missing references) //IL_11ef: Unknown result type (might be due to invalid IL or missing references) //IL_11fa: Unknown result type (might be due to invalid IL or missing references) //IL_120b: Unknown result type (might be due to invalid IL or missing references) //IL_1215: Unknown result type (might be due to invalid IL or missing references) //IL_121a: Unknown result type (might be due to invalid IL or missing references) //IL_1225: Unknown result type (might be due to invalid IL or missing references) //IL_122b: Unknown result type (might be due to invalid IL or missing references) //IL_1230: Unknown result type (might be due to invalid IL or missing references) //IL_123b: Unknown result type (might be due to invalid IL or missing references) //IL_124c: Unknown result type (might be due to invalid IL or missing references) //IL_1251: Unknown result type (might be due to invalid IL or missing references) //IL_125c: Unknown result type (might be due to invalid IL or missing references) //IL_126d: Unknown result type (might be due to invalid IL or missing references) //IL_1277: Unknown result type (might be due to invalid IL or missing references) //IL_127c: Unknown result type (might be due to invalid IL or missing references) //IL_1288: Unknown result type (might be due to invalid IL or missing references) //IL_11b2: Unknown result type (might be due to invalid IL or missing references) //IL_11bd: Unknown result type (might be due to invalid IL or missing references) //IL_1064: Unknown result type (might be due to invalid IL or missing references) //IL_106e: Unknown result type (might be due to invalid IL or missing references) //IL_1074: Unknown result type (might be due to invalid IL or missing references) //IL_107e: Unknown result type (might be due to invalid IL or missing references) //IL_1083: Unknown result type (might be due to invalid IL or missing references) //IL_108d: Unknown result type (might be due to invalid IL or missing references) //IL_1093: Unknown result type (might be due to invalid IL or missing references) //IL_109d: Unknown result type (might be due to invalid IL or missing references) //IL_10a3: Unknown result type (might be due to invalid IL or missing references) //IL_10ad: Unknown result type (might be due to invalid IL or missing references) //IL_10b2: Unknown result type (might be due to invalid IL or missing references) //IL_10bc: Unknown result type (might be due to invalid IL or missing references) //IL_10c8: Unknown result type (might be due to invalid IL or missing references) //IL_0e29: Unknown result type (might be due to invalid IL or missing references) //IL_0e2e: Unknown result type (might be due to invalid IL or missing references) //IL_0e32: Unknown result type (might be due to invalid IL or missing references) //IL_0e38: Unknown result type (might be due to invalid IL or missing references) //IL_0e44: Unknown result type (might be due to invalid IL or missing references) //IL_0ddf: Unknown result type (might be due to invalid IL or missing references) //IL_0de4: Unknown result type (might be due to invalid IL or missing references) //IL_0de8: Unknown result type (might be due to invalid IL or missing references) //IL_0dee: Unknown result type (might be due to invalid IL or missing references) //IL_0df4: Unknown result type (might be due to invalid IL or missing references) //IL_0df9: Unknown result type (might be due to invalid IL or missing references) //IL_0e03: Unknown result type (might be due to invalid IL or missing references) //IL_0e0f: Unknown result type (might be due to invalid IL or missing references) //IL_0c1d: Unknown result type (might be due to invalid IL or missing references) //IL_0c22: Unknown result type (might be due to invalid IL or missing references) //IL_0c26: Unknown result type (might be due to invalid IL or missing references) //IL_0c2c: Unknown result type (might be due to invalid IL or missing references) //IL_0c38: Unknown result type (might be due to invalid IL or missing references) //IL_12d8: Unknown result type (might be due to invalid IL or missing references) //IL_12de: Unknown result type (might be due to invalid IL or missing references) //IL_12e3: Unknown result type (might be due to invalid IL or missing references) //IL_12ee: Unknown result type (might be due to invalid IL or missing references) //IL_12ff: Unknown result type (might be due to invalid IL or missing references) //IL_1309: Unknown result type (might be due to invalid IL or missing references) //IL_130e: Unknown result type (might be due to invalid IL or missing references) //IL_1319: Unknown result type (might be due to invalid IL or missing references) //IL_131f: Unknown result type (might be due to invalid IL or missing references) //IL_1324: Unknown result type (might be due to invalid IL or missing references) //IL_132f: Unknown result type (might be due to invalid IL or missing references) //IL_1340: Unknown result type (might be due to invalid IL or missing references) //IL_1345: Unknown result type (might be due to invalid IL or missing references) //IL_1350: Unknown result type (might be due to invalid IL or missing references) //IL_1361: Unknown result type (might be due to invalid IL or missing references) //IL_136b: Unknown result type (might be due to invalid IL or missing references) //IL_1370: Unknown result type (might be due to invalid IL or missing references) //IL_137c: Unknown result type (might be due to invalid IL or missing references) //IL_12a6: Unknown result type (might be due to invalid IL or missing references) //IL_12b1: Unknown result type (might be due to invalid IL or missing references) //IL_0e5e: Unknown result type (might be due to invalid IL or missing references) //IL_0e63: Unknown result type (might be due to invalid IL or missing references) //IL_0e67: Unknown result type (might be due to invalid IL or missing references) //IL_0e6d: Unknown result type (might be due to invalid IL or missing references) //IL_0e73: Unknown result type (might be due to invalid IL or missing references) //IL_0e78: Unknown result type (might be due to invalid IL or missing references) //IL_0e82: Unknown result type (might be due to invalid IL or missing references) //IL_0e8e: Unknown result type (might be due to invalid IL or missing references) //IL_0c52: Unknown result type (might be due to invalid IL or missing references) //IL_0c57: Unknown result type (might be due to invalid IL or missing references) //IL_0c5b: Unknown result type (might be due to invalid IL or missing references) //IL_0c61: Unknown result type (might be due to invalid IL or missing references) //IL_0c6d: Unknown result type (might be due to invalid IL or missing references) //IL_13cc: Unknown result type (might be due to invalid IL or missing references) //IL_13d2: Unknown result type (might be due to invalid IL or missing references) //IL_13d7: Unknown result type (might be due to invalid IL or missing references) //IL_13e2: Unknown result type (might be due to invalid IL or missing references) //IL_13f3: Unknown result type (might be due to invalid IL or missing references) //IL_13fd: Unknown result type (might be due to invalid IL or missing references) //IL_1402: Unknown result type (might be due to invalid IL or missing references) //IL_140d: Unknown result type (might be due to invalid IL or missing references) //IL_1413: Unknown result type (might be due to invalid IL or missing references) //IL_1418: Unknown result type (might be due to invalid IL or missing references) //IL_1423: Unknown result type (might be due to invalid IL or missing references) //IL_1434: Unknown result type (might be due to invalid IL or missing references) //IL_1439: Unknown result type (might be due to invalid IL or missing references) //IL_1444: Unknown result type (might be due to invalid IL or missing references) //IL_1455: Unknown result type (might be due to invalid IL or missing references) //IL_145f: Unknown result type (might be due to invalid IL or missing references) //IL_1464: Unknown result type (might be due to invalid IL or missing references) //IL_1470: Unknown result type (might be due to invalid IL or missing references) //IL_139a: Unknown result type (might be due to invalid IL or missing references) //IL_13a5: Unknown result type (might be due to invalid IL or missing references) //IL_14c0: Unknown result type (might be due to invalid IL or missing references) //IL_14c6: Unknown result type (might be due to invalid IL or missing references) //IL_14cb: Unknown result type (might be due to invalid IL or missing references) //IL_14d6: Unknown result type (might be due to invalid IL or missing references) //IL_14e7: Unknown result type (might be due to invalid IL or missing references) //IL_14f1: Unknown result type (might be due to invalid IL or missing references) //IL_14f6: Unknown result type (might be due to invalid IL or missing references) //IL_1501: Unknown result type (might be due to invalid IL or missing references) //IL_1507: Unknown result type (might be due to invalid IL or missing references) //IL_150c: Unknown result type (might be due to invalid IL or missing references) //IL_1517: Unknown result type (might be due to invalid IL or missing references) //IL_1528: Unknown result type (might be due to invalid IL or missing references) //IL_152d: Unknown result type (might be due to invalid IL or missing references) //IL_1538: Unknown result type (might be due to invalid IL or missing references) //IL_1549: Unknown result type (might be due to invalid IL or missing references) //IL_1553: Unknown result type (might be due to invalid IL or missing references) //IL_1558: Unknown result type (might be due to invalid IL or missing references) //IL_1564: Unknown result type (might be due to invalid IL or missing references) //IL_148e: Unknown result type (might be due to invalid IL or missing references) //IL_1499: Unknown result type (might be due to invalid IL or missing references) //IL_17e3: Unknown result type (might be due to invalid IL or missing references) //IL_17e9: Unknown result type (might be due to invalid IL or missing references) //IL_17ee: Unknown result type (might be due to invalid IL or missing references) //IL_17f9: Unknown result type (might be due to invalid IL or missing references) //IL_17ff: Unknown result type (might be due to invalid IL or missing references) //IL_1804: Unknown result type (might be due to invalid IL or missing references) //IL_180f: Unknown result type (might be due to invalid IL or missing references) //IL_1820: Unknown result type (might be due to invalid IL or missing references) //IL_1825: Unknown result type (might be due to invalid IL or missing references) //IL_1830: Unknown result type (might be due to invalid IL or missing references) //IL_1841: Unknown result type (might be due to invalid IL or missing references) //IL_184b: Unknown result type (might be due to invalid IL or missing references) //IL_1850: Unknown result type (might be due to invalid IL or missing references) //IL_185c: Unknown result type (might be due to invalid IL or missing references) //IL_15b4: Unknown result type (might be due to invalid IL or missing references) //IL_15ba: Unknown result type (might be due to invalid IL or missing references) //IL_15bf: Unknown result type (might be due to invalid IL or missing references) //IL_15ca: Unknown result type (might be due to invalid IL or missing references) //IL_15db: Unknown result type (might be due to invalid IL or missing references) //IL_15e5: Unknown result type (might be due to invalid IL or missing references) //IL_15ea: Unknown result type (might be due to invalid IL or missing references) //IL_15f5: Unknown result type (might be due to invalid IL or missing references) //IL_15fb: Unknown result type (might be due to invalid IL or missing references) //IL_1600: Unknown result type (might be due to invalid IL or missing references) //IL_160b: Unknown result type (might be due to invalid IL or missing references) //IL_161c: Unknown result type (might be due to invalid IL or missing references) //IL_1621: Unknown result type (might be due to invalid IL or missing references) //IL_162c: Unknown result type (might be due to invalid IL or missing references) //IL_163d: Unknown result type (might be due to invalid IL or missing references) //IL_1647: Unknown result type (might be due to invalid IL or missing references) //IL_164c: Unknown result type (might be due to invalid IL or missing references) //IL_1658: Unknown result type (might be due to invalid IL or missing references) //IL_1582: Unknown result type (might be due to invalid IL or missing references) //IL_158d: Unknown result type (might be due to invalid IL or missing references) //IL_18ac: Unknown result type (might be due to invalid IL or missing references) //IL_18b2: Unknown result type (might be due to invalid IL or missing references) //IL_18b7: Unknown result type (might be due to invalid IL or missing references) //IL_18c2: Unknown result type (might be due to invalid IL or missing references) //IL_18d3: Unknown result type (might be due to invalid IL or missing references) //IL_18dd: Unknown result type (might be due to invalid IL or missing references) //IL_18e2: Unknown result type (might be due to invalid IL or missing references) //IL_18ed: Unknown result type (might be due to invalid IL or missing references) //IL_18f3: Unknown result type (might be due to invalid IL or missing references) //IL_18f8: Unknown result type (might be due to invalid IL or missing references) //IL_1903: Unknown result type (might be due to invalid IL or missing references) //IL_1914: Unknown result type (might be due to invalid IL or missing references) //IL_1919: Unknown result type (might be due to invalid IL or missing references) //IL_1924: Unknown result type (might be due to invalid IL or missing references) //IL_1935: Unknown result type (might be due to invalid IL or missing references) //IL_193f: Unknown result type (might be due to invalid IL or missing references) //IL_1944: Unknown result type (might be due to invalid IL or missing references) //IL_194f: Unknown result type (might be due to invalid IL or missing references) //IL_1960: Unknown result type (might be due to invalid IL or missing references) //IL_196a: Unknown result type (might be due to invalid IL or missing references) //IL_196f: Unknown result type (might be due to invalid IL or missing references) //IL_197b: Unknown result type (might be due to invalid IL or missing references) //IL_187a: Unknown result type (might be due to invalid IL or missing references) //IL_1885: Unknown result type (might be due to invalid IL or missing references) //IL_16a8: Unknown result type (might be due to invalid IL or missing references) //IL_16ae: Unknown result type (might be due to invalid IL or missing references) //IL_16b3: Unknown result type (might be due to invalid IL or missing references) //IL_16be: Unknown result type (might be due to invalid IL or missing references) //IL_16cf: Unknown result type (might be due to invalid IL or missing references) //IL_16d9: Unknown result type (might be due to invalid IL or missing references) //IL_16de: Unknown result type (might be due to invalid IL or missing references) //IL_16e9: Unknown result type (might be due to invalid IL or missing references) //IL_16ef: Unknown result type (might be due to invalid IL or missing references) //IL_16f4: Unknown result type (might be due to invalid IL or missing references) //IL_16ff: Unknown result type (might be due to invalid IL or missing references) //IL_1710: Unknown result type (might be due to invalid IL or missing references) //IL_1715: Unknown result type (might be due to invalid IL or missing references) //IL_1720: Unknown result type (might be due to invalid IL or missing references) //IL_1731: Unknown result type (might be due to invalid IL or missing references) //IL_173b: Unknown result type (might be due to invalid IL or missing references) //IL_1740: Unknown result type (might be due to invalid IL or missing references) //IL_174c: Unknown result type (might be due to invalid IL or missing references) //IL_1676: Unknown result type (might be due to invalid IL or missing references) //IL_1681: Unknown result type (might be due to invalid IL or missing references) //IL_19cb: Unknown result type (might be due to invalid IL or missing references) //IL_19d1: Unknown result type (might be due to invalid IL or missing references) //IL_19d6: Unknown result type (might be due to invalid IL or missing references) //IL_19e1: Unknown result type (might be due to invalid IL or missing references) //IL_19f2: Unknown result type (might be due to invalid IL or missing references) //IL_19fc: Unknown result type (might be due to invalid IL or missing references) //IL_1a01: Unknown result type (might be due to invalid IL or missing references) //IL_1a0c: Unknown result type (might be due to invalid IL or missing references) //IL_1a12: Unknown result type (might be due to invalid IL or missing references) //IL_1a17: Unknown result type (might be due to invalid IL or missing references) //IL_1a22: Unknown result type (might be due to invalid IL or missing references) //IL_1a33: Unknown result type (might be due to invalid IL or missing references) //IL_1a38: Unknown result type (might be due to invalid IL or missing references) //IL_1a43: Unknown result type (might be due to invalid IL or missing references) //IL_1a54: Unknown result type (might be due to invalid IL or missing references) //IL_1a5e: Unknown result type (might be due to invalid IL or missing references) //IL_1a63: Unknown result type (might be due to invalid IL or missing references) //IL_1a6e: Unknown result type (might be due to invalid IL or missing references) //IL_1a7f: Unknown result type (might be due to invalid IL or missing references) //IL_1a89: Unknown result type (might be due to invalid IL or missing references) //IL_1a8e: Unknown result type (might be due to invalid IL or missing references) //IL_1a9a: Unknown result type (might be due to invalid IL or missing references) //IL_1999: Unknown result type (might be due to invalid IL or missing references) //IL_19a4: Unknown result type (might be due to invalid IL or missing references) //IL_176a: Unknown result type (might be due to invalid IL or missing references) //IL_1775: Unknown result type (might be due to invalid IL or missing references) //IL_1aea: Unknown result type (might be due to invalid IL or missing references) //IL_1af0: Unknown result type (might be due to invalid IL or missing references) //IL_1af5: Unknown result type (might be due to invalid IL or missing references) //IL_1b00: Unknown result type (might be due to invalid IL or missing references) //IL_1b11: Unknown result type (might be due to invalid IL or missing references) //IL_1b1b: Unknown result type (might be due to invalid IL or missing references) //IL_1b20: Unknown result type (might be due to invalid IL or missing references) //IL_1b2b: Unknown result type (might be due to invalid IL or missing references) //IL_1b31: Unknown result type (might be due to invalid IL or missing references) //IL_1b36: Unknown result type (might be due to invalid IL or missing references) //IL_1b41: Unknown result type (might be due to invalid IL or missing references) //IL_1b52: Unknown result type (might be due to invalid IL or missing references) //IL_1b57: Unknown result type (might be due to invalid IL or missing references) //IL_1b62: Unknown result type (might be due to invalid IL or missing references) //IL_1b73: Unknown result type (might be due to invalid IL or missing references) //IL_1b7d: Unknown result type (might be due to invalid IL or missing references) //IL_1b82: Unknown result type (might be due to invalid IL or missing references) //IL_1b8d: Unknown result type (might be due to invalid IL or missing references) //IL_1b9e: Unknown result type (might be due to invalid IL or missing references) //IL_1ba8: Unknown result type (might be due to invalid IL or missing references) //IL_1bad: Unknown result type (might be due to invalid IL or missing references) //IL_1bb9: Unknown result type (might be due to invalid IL or missing references) //IL_1ab8: Unknown result type (might be due to invalid IL or missing references) //IL_1ac3: Unknown result type (might be due to invalid IL or missing references) //IL_1c09: Unknown result type (might be due to invalid IL or missing references) //IL_1c0f: Unknown result type (might be due to invalid IL or missing references) //IL_1c14: Unknown result type (might be due to invalid IL or missing references) //IL_1c1f: Unknown result type (might be due to invalid IL or missing references) //IL_1c30: Unknown result type (might be due to invalid IL or missing references) //IL_1c3a: Unknown result type (might be due to invalid IL or missing references) //IL_1c3f: Unknown result type (might be due to invalid IL or missing references) //IL_1c4a: Unknown result type (might be due to invalid IL or missing references) //IL_1c50: Unknown result type (might be due to invalid IL or missing references) //IL_1c55: Unknown result type (might be due to invalid IL or missing references) //IL_1c60: Unknown result type (might be due to invalid IL or missing references) //IL_1c71: Unknown result type (might be due to invalid IL or missing references) //IL_1c76: Unknown result type (might be due to invalid IL or missing references) //IL_1c81: Unknown result type (might be due to invalid IL or missing references) //IL_1c92: Unknown result type (might be due to invalid IL or missing references) //IL_1c9c: Unknown result type (might be due to invalid IL or missing references) //IL_1ca1: Unknown result type (might be due to invalid IL or missing references) //IL_1cac: Unknown result type (might be due to invalid IL or missing references) //IL_1cbd: Unknown result type (might be due to invalid IL or missing references) //IL_1cc7: Unknown result type (might be due to invalid IL or missing references) //IL_1ccc: Unknown result type (might be due to invalid IL or missing references) //IL_1cd8: Unknown result type (might be due to invalid IL or missing references) //IL_1bd7: Unknown result type (might be due to invalid IL or missing references) //IL_1be2: Unknown result type (might be due to invalid IL or missing references) //IL_1fad: Unknown result type (might be due to invalid IL or missing references) //IL_1fb3: Unknown result type (might be due to invalid IL or missing references) //IL_1fb8: Unknown result type (might be due to invalid IL or missing references) //IL_1fc3: Unknown result type (might be due to invalid IL or missing references) //IL_1fc9: Unknown result type (might be due to invalid IL or missing references) //IL_1fce: Unknown result type (might be due to invalid IL or missing references) //IL_1fd9: Unknown result type (might be due to invalid IL or missing references) //IL_1fea: Unknown result type (might be due to invalid IL or missing references) //IL_1fef: Unknown result type (might be due to invalid IL or missing references) //IL_1ffa: Unknown result type (might be due to invalid IL or missing references) //IL_200b: Unknown result type (might be due to invalid IL or missing references) //IL_2015: Unknown result type (might be due to invalid IL or missing references) //IL_201a: Unknown result type (might be due to invalid IL or missing references) //IL_2026: Unknown result type (might be due to invalid IL or missing references) //IL_1d28: Unknown result type (might be due to invalid IL or missing references) //IL_1d2e: Unknown result type (might be due to invalid IL or missing references) //IL_1d33: Unknown result type (might be due to invalid IL or missing references) //IL_1d3e: Unknown result type (might be due to invalid IL or missing references) //IL_1d4f: Unknown result type (might be due to invalid IL or missing references) //IL_1d59: Unknown result type (might be due to invalid IL or missing references) //IL_1d5e: Unknown result type (might be due to invalid IL or missing references) //IL_1d69: Unknown result type (might be due to invalid IL or missing references) //IL_1d6f: Unknown result type (might be due to invalid IL or missing references) //IL_1d74: Unknown result type (might be due to invalid IL or missing references) //IL_1d7f: Unknown result type (might be due to invalid IL or missing references) //IL_1d90: Unknown result type (might be due to invalid IL or missing references) //IL_1d95: Unknown result type (might be due to invalid IL or missing references) //IL_1da0: Unknown result type (might be due to invalid IL or missing references) //IL_1db1: Unknown result type (might be due to invalid IL or missing references) //IL_1dbb: Unknown result type (might be due to invalid IL or missing references) //IL_1dc0: Unknown result type (might be due to invalid IL or missing references) //IL_1dcb: Unknown result type (might be due to invalid IL or missing references) //IL_1ddc: Unknown result type (might be due to invalid IL or missing references) //IL_1de6: Unknown result type (might be due to invalid IL or missing references) //IL_1deb: Unknown result type (might be due to invalid IL or missing references) //IL_1df7: Unknown result type (might be due to invalid IL or missing references) //IL_1cf6: Unknown result type (might be due to invalid IL or missing references) //IL_1d01: Unknown result type (might be due to invalid IL or missing references) //IL_2076: Unknown result type (might be due to invalid IL or missing references) //IL_207c: Unknown result type (might be due to invalid IL or missing references) //IL_2081: Unknown result type (might be due to invalid IL or missing references) //IL_208c: Unknown result type (might be due to invalid IL or missing references) //IL_209d: Unknown result type (might be due to invalid IL or missing references) //IL_20a7: Unknown result type (might be due to invalid IL or missing references) //IL_20ac: Unknown result type (might be due to invalid IL or missing references) //IL_20b7: Unknown result type (might be due to invalid IL or missing references) //IL_20bd: Unknown result type (might be due to invalid IL or missing references) //IL_20c2: Unknown result type (might be due to invalid IL or missing references) //IL_20cd: Unknown result type (might be due to invalid IL or missing references) //IL_20de: Unknown result type (might be due to invalid IL or missing references) //IL_20e3: Unknown result type (might be due to invalid IL or missing references) //IL_20ee: Unknown result type (might be due to invalid IL or missing references) //IL_20ff: Unknown result type (might be due to invalid IL or missing references) //IL_2109: Unknown result type (might be due to invalid IL or missing references) //IL_210e: Unknown result type (might be due to invalid IL or missing references) //IL_2119: Unknown result type (might be due to invalid IL or missing references) //IL_212a: Unknown result type (might be due to invalid IL or missing references) //IL_2134: Unknown result type (might be due to invalid IL or missing references) //IL_2139: Unknown result type (might be due to invalid IL or missing references) //IL_2145: Unknown result type (might be due to invalid IL or missing references) //IL_2044: Unknown result type (might be due to invalid IL or missing references) //IL_204f: Unknown result type (might be due to invalid IL or missing references) //IL_1e47: Unknown result type (might be due to invalid IL or missing references) //IL_1e4d: Unknown result type (might be due to invalid IL or missing references) //IL_1e52: Unknown result type (might be due to invalid IL or missing references) //IL_1e5d: Unknown result type (might be due to invalid IL or missing references) //IL_1e6e: Unknown result type (might be due to invalid IL or missing references) //IL_1e78: Unknown result type (might be due to invalid IL or missing references) //IL_1e7d: Unknown result type (might be due to invalid IL or missing references) //IL_1e88: Unknown result type (might be due to invalid IL or missing references) //IL_1e8e: Unknown result type (might be due to invalid IL or missing references) //IL_1e93: Unknown result type (might be due to invalid IL or missing references) //IL_1e9e: Unknown result type (might be due to invalid IL or missing references) //IL_1eaf: Unknown result type (might be due to invalid IL or missing references) //IL_1eb4: Unknown result type (might be due to invalid IL or missing references) //IL_1ebf: Unknown result type (might be due to invalid IL or missing references) //IL_1ed0: Unknown result type (might be due to invalid IL or missing references) //IL_1eda: Unknown result type (might be due to invalid IL or missing references) //IL_1edf: Unknown result type (might be due to invalid IL or missing references) //IL_1eea: Unknown result type (might be due to invalid IL or missing references) //IL_1efb: Unknown result type (might be due to invalid IL or missing references) //IL_1f05: Unknown result type (might be due to invalid IL or missing references) //IL_1f0a: Unknown result type (might be due to invalid IL or missing references) //IL_1f16: Unknown result type (might be due to invalid IL or missing references) //IL_1e15: Unknown result type (might be due to invalid IL or missing references) //IL_1e20: Unknown result type (might be due to invalid IL or missing references) //IL_2195: Unknown result type (might be due to invalid IL or missing references) //IL_219b: Unknown result type (might be due to invalid IL or missing references) //IL_21a0: Unknown result type (might be due to invalid IL or missing references) //IL_21ab: Unknown result type (might be due to invalid IL or missing references) //IL_21bc: Unknown result type (might be due to invalid IL or missing references) //IL_21c6: Unknown result type (might be due to invalid IL or missing references) //IL_21cb: Unknown result type (might be due to invalid IL or missing references) //IL_21d6: Unknown result type (might be due to invalid IL or missing references) //IL_21dc: Unknown result type (might be due to invalid IL or missing references) //IL_21e1: Unknown result type (might be due to invalid IL or missing references) //IL_21ec: Unknown result type (might be due to invalid IL or missing references) //IL_21fd: Unknown result type (might be due to invalid IL or missing references) //IL_2202: Unknown result type (might be due to invalid IL or missing references) //IL_220d: Unknown result type (might be due to invalid IL or missing references) //IL_221e: Unknown result type (might be due to invalid IL or missing references) //IL_2228: Unknown result type (might be due to invalid IL or missing references) //IL_222d: Unknown result type (might be due to invalid IL or missing references) //IL_2238: Unknown result type (might be due to invalid IL or missing references) //IL_2249: Unknown result type (might be due to invalid IL or missing references) //IL_2253: Unknown result type (might be due to invalid IL or missing references) //IL_2258: Unknown result type (might be due to invalid IL or missing references) //IL_2264: Unknown result type (might be due to invalid IL or missing references) //IL_2163: Unknown result type (might be due to invalid IL or missing references) //IL_216e: Unknown result type (might be due to invalid IL or missing references) //IL_1f34: Unknown result type (might be due to invalid IL or missing references) //IL_1f3f: Unknown result type (might be due to invalid IL or missing references) //IL_22b4: Unknown result type (might be due to invalid IL or missing references) //IL_22ba: Unknown result type (might be due to invalid IL or missing references) //IL_22bf: Unknown result type (might be due to invalid IL or missing references) //IL_22ca: Unknown result type (might be due to invalid IL or missing references) //IL_22db: Unknown result type (might be due to invalid IL or missing references) //IL_22e5: Unknown result type (might be due to invalid IL or missing references) //IL_22ea: Unknown result type (might be due to invalid IL or missing references) //IL_22f5: Unknown result type (might be due to invalid IL or missing references) //IL_22fb: Unknown result type (might be due to invalid IL or missing references) //IL_2300: Unknown result type (might be due to invalid IL or missing references) //IL_230b: Unknown result type (might be due to invalid IL or missing references) //IL_231c: Unknown result type (might be due to invalid IL or missing references) //IL_2321: Unknown result type (might be due to invalid IL or missing references) //IL_232c: Unknown result type (might be due to invalid IL or missing references) //IL_233d: Unknown result type (might be due to invalid IL or missing references) //IL_2347: Unknown result type (might be due to invalid IL or missing references) //IL_234c: Unknown result type (might be due to invalid IL or missing references) //IL_2357: Unknown result type (might be due to invalid IL or missing references) //IL_2368: Unknown result type (might be due to invalid IL or missing references) //IL_2372: Unknown result type (might be due to invalid IL or missing references) //IL_2377: Unknown result type (might be due to invalid IL or missing references) //IL_2383: Unknown result type (might be due to invalid IL or missing references) //IL_2282: Unknown result type (might be due to invalid IL or missing references) //IL_228d: Unknown result type (might be due to invalid IL or missing references) //IL_23d3: Unknown result type (might be due to invalid IL or missing references) //IL_23d9: Unknown result type (might be due to invalid IL or missing references) //IL_23de: Unknown result type (might be due to invalid IL or missing references) //IL_23e9: Unknown result type (might be due to invalid IL or missing references) //IL_23fa: Unknown result type (might be due to invalid IL or missing references) //IL_2404: Unknown result type (might be due to invalid IL or missing references) //IL_2409: Unknown result type (might be due to invalid IL or missing references) //IL_2414: Unknown result type (might be due to invalid IL or missing references) //IL_241a: Unknown result type (might be due to invalid IL or missing references) //IL_241f: Unknown result type (might be due to invalid IL or missing references) //IL_242a: Unknown result type (might be due to invalid IL or missing references) //IL_243b: Unknown result type (might be due to invalid IL or missing references) //IL_2440: Unknown result type (might be due to invalid IL or missing references) //IL_244b: Unknown result type (might be due to invalid IL or missing references) //IL_245c: Unknown result type (might be due to invalid IL or missing references) //IL_2466: Unknown result type (might be due to invalid IL or missing references) //IL_246b: Unknown result type (might be due to invalid IL or missing references) //IL_2476: Unknown result type (might be due to invalid IL or missing references) //IL_2487: Unknown result type (might be due to invalid IL or missing references) //IL_2491: Unknown result type (might be due to invalid IL or missing references) //IL_2496: Unknown result type (might be due to invalid IL or missing references) //IL_24a2: Unknown result type (might be due to invalid IL or missing references) //IL_23a1: Unknown result type (might be due to invalid IL or missing references) //IL_23ac: Unknown result type (might be due to invalid IL or missing references) //IL_24f2: Unknown result type (might be due to invalid IL or missing references) //IL_24f8: Unknown result type (might be due to invalid IL or missing references) //IL_24fd: Unknown result type (might be due to invalid IL or missing references) //IL_2508: Unknown result type (might be due to invalid IL or missing references) //IL_2519: Unknown result type (might be due to invalid IL or missing references) //IL_2523: Unknown result type (might be due to invalid IL or missing references) //IL_2528: Unknown result type (might be due to invalid IL or missing references) //IL_2533: Unknown result type (might be due to invalid IL or missing references) //IL_2539: Unknown result type (might be due to invalid IL or missing references) //IL_253e: Unknown result type (might be due to invalid IL or missing references) //IL_2549: Unknown result type (might be due to invalid IL or missing references) //IL_255a: Unknown result type (might be due to invalid IL or missing references) //IL_255f: Unknown result type (might be due to invalid IL or missing references) //IL_256a: Unknown result type (might be due to invalid IL or missing references) //IL_257b: Unknown result type (might be due to invalid IL or missing references) //IL_2585: Unknown result type (might be due to invalid IL or missing references) //IL_258a: Unknown result type (might be due to invalid IL or missing references) //IL_2595: Unknown result type (might be due to invalid IL or missing references) //IL_25a6: Unknown result type (might be due to invalid IL or missing references) //IL_25b0: Unknown result type (might be due to invalid IL or missing references) //IL_25b5: Unknown result type (might be due to invalid IL or missing references) //IL_25c1: Unknown result type (might be due to invalid IL or missing references) //IL_24c0: Unknown result type (might be due to invalid IL or missing references) //IL_24cb: Unknown result type (might be due to invalid IL or missing references) //IL_2611: Unknown result type (might be due to invalid IL or missing references) //IL_2617: Unknown result type (might be due to invalid IL or missing references) //IL_261c: Unknown result type (might be due to invalid IL or missing references) //IL_2627: Unknown result type (might be due to invalid IL or missing references) //IL_2638: Unknown result type (might be due to invalid IL or missing references) //IL_2642: Unknown result type (might be due to invalid IL or missing references) //IL_2647: Unknown result type (might be due to invalid IL or missing references) //IL_2652: Unknown result type (might be due to invalid IL or missing references) //IL_2658: Unknown result type (might be due to invalid IL or missing references) //IL_265d: Unknown result type (might be due to invalid IL or missing references) //IL_2668: Unknown result type (might be due to invalid IL or missing references) //IL_2679: Unknown result type (might be due to invalid IL or missing references) //IL_267e: Unknown result type (might be due to invalid IL or missing references) //IL_2689: Unknown result type (might be due to invalid IL or missing references) //IL_269a: Unknown result type (might be due to invalid IL or missing references) //IL_26a4: Unknown result type (might be due to invalid IL or missing references) //IL_26a9: Unknown result type (might be due to invalid IL or missing references) //IL_26b4: Unknown result type (might be due to invalid IL or missing references) //IL_26c5: Unknown result type (might be due to invalid IL or missing references) //IL_26cf: Unknown result type (might be due to invalid IL or missing references) //IL_26d4: Unknown result type (might be due to invalid IL or missing references) //IL_26e0: Unknown result type (might be due to invalid IL or missing references) //IL_25df: Unknown result type (might be due to invalid IL or missing references) //IL_25ea: Unknown result type (might be due to invalid IL or missing references) //IL_26fe: Unknown result type (might be due to invalid IL or missing references) //IL_2709: Unknown result type (might be due to invalid IL or missing references) Vector3 val = ((Component)this).transform.forward * ((Component)this).transform.localScale.z; Vector3 val2 = ((Component)this).transform.right * ((Component)this).transform.localScale.x; Vector3 val3 = ((Component)this).transform.up * ((Component)this).transform.localScale.y; if (Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled) { Bounds bounds = ((Collider)characterController).bounds; colliderLeft = ((Bounds)(ref bounds)).center - characterController.radius * val2; Bounds bounds2 = ((Collider)characterController).bounds; colliderRight = ((Bounds)(ref bounds2)).center + characterController.radius * val2; Bounds bounds3 = ((Collider)characterController).bounds; colliderBack = ((Bounds)(ref bounds3)).center - characterController.radius * val; Bounds bounds4 = ((Collider)characterController).bounds; colliderFront = ((Bounds)(ref bounds4)).center + characterController.radius * val; } else if (Object.op_Implicit((Object)(object)rigidBody)) { if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { Bounds bounds5 = ((Component)this).GetComponent().bounds; colliderLeft = ((Bounds)(ref bounds5)).center - ((Component)this).GetComponent().radius * val2; Bounds bounds6 = ((Component)this).GetComponent().bounds; colliderRight = ((Bounds)(ref bounds6)).center + ((Component)this).GetComponent().radius * val2; Bounds bounds7 = ((Component)this).GetComponent().bounds; colliderLeftLonger = ((Bounds)(ref bounds7)).center - ((Component)this).GetComponent().radius * 1.5f * val2; Bounds bounds8 = ((Component)this).GetComponent().bounds; colliderRightLonger = ((Bounds)(ref bounds8)).center + ((Component)this).GetComponent().radius * 1.5f * val2; Bounds bounds9 = ((Component)this).GetComponent().bounds; colliderLeftLonger2 = ((Bounds)(ref bounds9)).center - ((Component)this).GetComponent().radius * 2f * val2; Bounds bounds10 = ((Component)this).GetComponent().bounds; colliderRightLonger2 = ((Bounds)(ref bounds10)).center + ((Component)this).GetComponent().radius * 2f * val2; Bounds bounds11 = ((Component)this).GetComponent().bounds; colliderBack = ((Bounds)(ref bounds11)).center - ((Component)this).GetComponent().radius * val; Bounds bounds12 = ((Component)this).GetComponent().bounds; colliderFront = ((Bounds)(ref bounds12)).center + ((Component)this).GetComponent().radius * val; Bounds bounds13 = ((Component)this).GetComponent().bounds; colliderBackLonger = ((Bounds)(ref bounds13)).center - ((Component)this).GetComponent().radius * 1.5f * val; Bounds bounds14 = ((Component)this).GetComponent().bounds; colliderFrontLonger = ((Bounds)(ref bounds14)).center + ((Component)this).GetComponent().radius * 1.5f * val; Bounds bounds15 = ((Component)this).GetComponent().bounds; colliderFrontLonger2 = ((Bounds)(ref bounds15)).center + ((Component)this).GetComponent().radius * 2f * val; Bounds bounds16 = ((Component)this).GetComponent().bounds; colliderBottom = ((Bounds)(ref bounds16)).center - ((Component)this).GetComponent().height * 0.5f * val3; Bounds bounds17 = ((Component)this).GetComponent().bounds; colliderTop = ((Bounds)(ref bounds17)).center + ((Component)this).GetComponent().height * 0.5f * val3; } else if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { Bounds bounds18 = ((Component)this).GetComponent().bounds; colliderLeft = ((Bounds)(ref bounds18)).center - ((Component)this).GetComponent().radius * val2; Bounds bounds19 = ((Component)this).GetComponent().bounds; colliderRight = ((Bounds)(ref bounds19)).center + ((Component)this).GetComponent().radius * val2; Bounds bounds20 = ((Component)this).GetComponent().bounds; colliderLeftLonger = ((Bounds)(ref bounds20)).center - ((Component)this).GetComponent().radius * 1.5f * val2; Bounds bounds21 = ((Component)this).GetComponent().bounds; colliderRightLonger = ((Bounds)(ref bounds21)).center + ((Component)this).GetComponent().radius * 1.5f * val2; Bounds bounds22 = ((Component)this).GetComponent().bounds; colliderLeftLonger2 = ((Bounds)(ref bounds22)).center - ((Component)this).GetComponent().radius * 2f * val2; Bounds bounds23 = ((Component)this).GetComponent().bounds; colliderRightLonger2 = ((Bounds)(ref bounds23)).center + ((Component)this).GetComponent().radius * 2f * val2; Bounds bounds24 = ((Component)this).GetComponent().bounds; colliderBack = ((Bounds)(ref bounds24)).center - ((Component)this).GetComponent().radius * val; Bounds bounds25 = ((Component)this).GetComponent().bounds; colliderFront = ((Bounds)(ref bounds25)).center + ((Component)this).GetComponent().radius * val; Bounds bounds26 = ((Component)this).GetComponent().bounds; colliderBackLonger = ((Bounds)(ref bounds26)).center - ((Component)this).GetComponent().radius * 1.5f * val; Bounds bounds27 = ((Component)this).GetComponent().bounds; colliderFrontLonger = ((Bounds)(ref bounds27)).center + ((Component)this).GetComponent().radius * 1.5f * val; Bounds bounds28 = ((Component)this).GetComponent().bounds; colliderFrontLonger2 = ((Bounds)(ref bounds28)).center + ((Component)this).GetComponent().radius * 2f * val; Bounds bounds29 = ((Component)this).GetComponent().bounds; colliderBottom = ((Bounds)(ref bounds29)).center - ((Component)this).GetComponent().radius * val3; Bounds bounds30 = ((Component)this).GetComponent().bounds; colliderTop = ((Bounds)(ref bounds30)).center + ((Component)this).GetComponent().radius * val3; } else if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { Bounds bounds31 = ((Component)this).GetComponent().bounds; colliderLeft = ((Bounds)(ref bounds31)).center - ((Component)this).GetComponent().size.x * 0.5f * val2; Bounds bounds32 = ((Component)this).GetComponent().bounds; colliderRight = ((Bounds)(ref bounds32)).center + ((Component)this).GetComponent().size.x * 0.5f * val2; Bounds bounds33 = ((Component)this).GetComponent().bounds; colliderLeftLonger = ((Bounds)(ref bounds33)).center - ((Component)this).GetComponent().size.x * 0.5f * 1.5f * val2; Bounds bounds34 = ((Component)this).GetComponent().bounds; colliderRightLonger = ((Bounds)(ref bounds34)).center + ((Component)this).GetComponent().size.x * 0.5f * 1.5f * val2; Bounds bounds35 = ((Component)this).GetComponent().bounds; colliderLeftLonger2 = ((Bounds)(ref bounds35)).center - ((Component)this).GetComponent().size.x * 0.5f * 2f * val2; Bounds bounds36 = ((Component)this).GetComponent().bounds; colliderRightLonger2 = ((Bounds)(ref bounds36)).center + ((Component)this).GetComponent().size.x * 0.5f * 2f * val2; Bounds bounds37 = ((Component)this).GetComponent().bounds; colliderBack = ((Bounds)(ref bounds37)).center - ((Component)this).GetComponent().size.z * 0.5f * val; Bounds bounds38 = ((Component)this).GetComponent().bounds; colliderFront = ((Bounds)(ref bounds38)).center + ((Component)this).GetComponent().size.z * 0.5f * val; Bounds bounds39 = ((Component)this).GetComponent().bounds; colliderBackLonger = ((Bounds)(ref bounds39)).center - ((Component)this).GetComponent().size.z * 0.5f * 1.5f * val; Bounds bounds40 = ((Component)this).GetComponent().bounds; colliderFrontLonger = ((Bounds)(ref bounds40)).center + ((Component)this).GetComponent().size.z * 0.5f * 1.5f * val; Bounds bounds41 = ((Component)this).GetComponent().bounds; colliderFrontLonger2 = ((Bounds)(ref bounds41)).center + ((Component)this).GetComponent().size.z * 0.5f * 2f * val; Bounds bounds42 = ((Component)this).GetComponent().bounds; colliderBottom = ((Bounds)(ref bounds42)).center - ((Component)this).GetComponent().size.y * 0.5f * val3; Bounds bounds43 = ((Component)this).GetComponent().bounds; colliderTop = ((Bounds)(ref bounds43)).center + ((Component)this).GetComponent().size.y * 0.5f * val3; } } if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { if (Physics.Linecast((colliderBack * 8.5f + colliderFront * 1.5f) / 10f, (colliderFront * 8.5f + colliderBack * 1.5f) / 10f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast((colliderLeft * 8.5f + colliderRight * 1.5f) / 10f, (colliderRight * 8.5f + colliderLeft * 1.5f) / 10f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers))) { goto IL_0c81; } if (Physics.Linecast((colliderBackLonger + colliderRightLonger) / 2f, (colliderFrontLonger + colliderLeftLonger) / 2f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && Physics.Linecast((colliderBackLonger + colliderLeftLonger) / 2f, (colliderFrontLonger + colliderRightLonger) / 2f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && !Physics.Linecast(colliderBack, colliderFront, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers))) { Bounds bounds44 = ((Component)this).GetComponent().bounds; if (!Physics.Linecast(((Bounds)(ref bounds44)).center, colliderRightLonger, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers))) { Bounds bounds45 = ((Component)this).GetComponent().bounds; if (!Physics.Linecast(((Bounds)(ref bounds45)).center, colliderLeftLonger, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers))) { goto IL_0c81; } } } pushingThroughWall = false; goto IL_0c98; } pushingThroughWall = false; inCorner = false; goto IL_0ecf; IL_0c81: pushingThroughWall = true; goto IL_0c98; IL_0ecf: if ((!Physics.Linecast((colliderBack * 9.5f + colliderFront * 0.5f) / 10f, (colliderFront * 9.5f + colliderBack * 0.5f) / 10f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && !Physics.Linecast((colliderBackLonger + colliderRightLonger) / 2f, (colliderFrontLonger + colliderLeftLonger) / 2f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && !Physics.Linecast((colliderBackLonger + colliderLeftLonger) / 2f, (colliderFrontLonger + colliderRightLonger) / 2f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && !Physics.Linecast((colliderLeft * 9.5f + colliderRight * 0.5f) / 10f, (colliderRight * 9.5f + colliderLeft * 0.5f) / 10f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && !Physics.Linecast((colliderRight * 9.5f + colliderLeft * 0.5f) / 10f, (colliderLeft * 9.5f + colliderRight * 0.5f) / 10f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers))) || Physics.Linecast(pos + maxGroundedHeight2, pos + maxGroundedDistanceDown, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || !Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { colliderInWall = false; } else { colliderInWall = true; } if (((Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle) || (Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.1875f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.1875f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle) || (Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.375f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.375f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle) || (Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.5625f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.5625f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle) || (Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.75f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.75f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle) || (Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.9375f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.9375f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle) || (Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 1.125f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 1.125f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle)) && noCollisionTimer < 5f && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2) { middleTouchingWall = true; } else { middleTouchingWall = false; } if (((Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) - ((Component)this).transform.right * (spaceOnWallNeededToWallJumpWidth2 + 1f) / 3f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle) || (Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.1875f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.1875f - ((Component)this).transform.right * (spaceOnWallNeededToWallJumpWidth2 + 1f) / 3f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle) || (Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.375f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.375f - ((Component)this).transform.right * (spaceOnWallNeededToWallJumpWidth2 + 1f) / 3f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle) || (Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.5625f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.5625f - ((Component)this).transform.right * (spaceOnWallNeededToWallJumpWidth2 + 1f) / 3f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle) || (Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.75f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.75f - ((Component)this).transform.right * (spaceOnWallNeededToWallJumpWidth2 + 1f) / 3f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle) || (Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.9375f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.9375f - ((Component)this).transform.right * (spaceOnWallNeededToWallJumpWidth2 + 1f) / 3f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle) || (Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 1.125f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 1.125f - ((Component)this).transform.right * (spaceOnWallNeededToWallJumpWidth2 + 1f) / 3f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle)) && noCollisionTimer < 5f && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2) { leftTouchingWall = true; } else { leftTouchingWall = false; } if (((Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.right * (spaceOnWallNeededToWallJumpWidth2 + 1f) / 3f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle) || (Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.1875f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.1875f + ((Component)this).transform.right * (spaceOnWallNeededToWallJumpWidth2 + 1f) / 3f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle) || (Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.375f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.375f + ((Component)this).transform.right * (spaceOnWallNeededToWallJumpWidth2 + 1f) / 3f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle) || (Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.5625f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.5625f + ((Component)this).transform.right * (spaceOnWallNeededToWallJumpWidth2 + 1f) / 3f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle) || (Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.75f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.75f + ((Component)this).transform.right * (spaceOnWallNeededToWallJumpWidth2 + 1f) / 3f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle) || (Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.9375f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.9375f + ((Component)this).transform.right * (spaceOnWallNeededToWallJumpWidth2 + 1f) / 3f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle) || (Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 1.125f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 1.125f + ((Component)this).transform.right * (spaceOnWallNeededToWallJumpWidth2 + 1f) / 3f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle)) && noCollisionTimer < 5f && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2) { rightTouchingWall = true; } else { rightTouchingWall = false; } return; IL_0ea2: inCorner = true; goto IL_0ecf; IL_0c98: Bounds bounds46 = ((Component)this).GetComponent().bounds; if (Physics.Linecast(((Bounds)(ref bounds46)).center, colliderRightLonger, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers))) { Bounds bounds47 = ((Component)this).GetComponent().bounds; if (Physics.Linecast(((Bounds)(ref bounds47)).center, colliderLeftLonger, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers))) { goto IL_0ea2; } } if (Physics.Linecast((colliderBackLonger + colliderRightLonger) / 2f, (colliderFrontLonger + colliderLeftLonger) / 2f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && Physics.Linecast((colliderBackLonger + colliderLeftLonger) / 2f, (colliderFrontLonger + colliderRightLonger) / 2f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers))) { goto IL_0ea2; } Bounds bounds48 = ((Component)this).GetComponent().bounds; if (Physics.Linecast(((Bounds)(ref bounds48)).center, colliderRightLonger, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers))) { Bounds bounds49 = ((Component)this).GetComponent().bounds; if (Physics.Linecast(((Bounds)(ref bounds49)).center, (colliderFrontLonger2 + colliderLeftLonger2) / 2f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers))) { goto IL_0ea2; } } Bounds bounds50 = ((Component)this).GetComponent().bounds; if (Physics.Linecast(((Bounds)(ref bounds50)).center, colliderLeftLonger, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers))) { Bounds bounds51 = ((Component)this).GetComponent().bounds; if (Physics.Linecast(((Bounds)(ref bounds51)).center, (colliderFrontLonger2 + colliderRightLonger2) / 2f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers))) { goto IL_0ea2; } } inCorner = false; goto IL_0ecf; } private void KeepRigidbodyFromStickingToWall() { //IL_0075: Unknown result type (might be due to invalid IL or missing references) //IL_007b: Unknown result type (might be due to invalid IL or missing references) //IL_0080: Unknown result type (might be due to invalid IL or missing references) //IL_008b: Unknown result type (might be due to invalid IL or missing references) //IL_0091: Unknown result type (might be due to invalid IL or missing references) //IL_0096: Unknown result type (might be due to invalid IL or missing references) //IL_00a1: Unknown result type (might be due to invalid IL or missing references) //IL_00b2: Unknown result type (might be due to invalid IL or missing references) //IL_00b7: Unknown result type (might be due to invalid IL or missing references) //IL_00c3: Unknown result type (might be due to invalid IL or missing references) //IL_012b: Unknown result type (might be due to invalid IL or missing references) //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_0136: Unknown result type (might be due to invalid IL or missing references) //IL_0141: Unknown result type (might be due to invalid IL or missing references) //IL_0152: Unknown result type (might be due to invalid IL or missing references) //IL_015c: Unknown result type (might be due to invalid IL or missing references) //IL_0161: Unknown result type (might be due to invalid IL or missing references) //IL_016c: Unknown result type (might be due to invalid IL or missing references) //IL_0172: Unknown result type (might be due to invalid IL or missing references) //IL_0177: Unknown result type (might be due to invalid IL or missing references) //IL_0182: Unknown result type (might be due to invalid IL or missing references) //IL_0193: Unknown result type (might be due to invalid IL or missing references) //IL_0198: Unknown result type (might be due to invalid IL or missing references) //IL_01a3: Unknown result type (might be due to invalid IL or missing references) //IL_01b4: Unknown result type (might be due to invalid IL or missing references) //IL_01be: Unknown result type (might be due to invalid IL or missing references) //IL_01c3: Unknown result type (might be due to invalid IL or missing references) //IL_01cf: Unknown result type (might be due to invalid IL or missing references) //IL_00e1: Unknown result type (might be due to invalid IL or missing references) //IL_00ec: Unknown result type (might be due to invalid IL or missing references) //IL_0237: Unknown result type (might be due to invalid IL or missing references) //IL_023d: Unknown result type (might be due to invalid IL or missing references) //IL_0242: Unknown result type (might be due to invalid IL or missing references) //IL_024d: Unknown result type (might be due to invalid IL or missing references) //IL_025e: Unknown result type (might be due to invalid IL or missing references) //IL_0268: Unknown result type (might be due to invalid IL or missing references) //IL_026d: Unknown result type (might be due to invalid IL or missing references) //IL_0278: Unknown result type (might be due to invalid IL or missing references) //IL_027e: Unknown result type (might be due to invalid IL or missing references) //IL_0283: Unknown result type (might be due to invalid IL or missing references) //IL_028e: Unknown result type (might be due to invalid IL or missing references) //IL_029f: Unknown result type (might be due to invalid IL or missing references) //IL_02a4: Unknown result type (might be due to invalid IL or missing references) //IL_02af: Unknown result type (might be due to invalid IL or missing references) //IL_02c0: Unknown result type (might be due to invalid IL or missing references) //IL_02ca: Unknown result type (might be due to invalid IL or missing references) //IL_02cf: Unknown result type (might be due to invalid IL or missing references) //IL_02db: Unknown result type (might be due to invalid IL or missing references) //IL_01ed: Unknown result type (might be due to invalid IL or missing references) //IL_01f8: Unknown result type (might be due to invalid IL or missing references) //IL_0115: Unknown result type (might be due to invalid IL or missing references) //IL_011a: Unknown result type (might be due to invalid IL or missing references) //IL_0343: Unknown result type (might be due to invalid IL or missing references) //IL_0349: Unknown result type (might be due to invalid IL or missing references) //IL_034e: Unknown result type (might be due to invalid IL or missing references) //IL_0359: Unknown result type (might be due to invalid IL or missing references) //IL_036a: Unknown result type (might be due to invalid IL or missing references) //IL_0374: Unknown result type (might be due to invalid IL or missing references) //IL_0379: Unknown result type (might be due to invalid IL or missing references) //IL_0384: Unknown result type (might be due to invalid IL or missing references) //IL_038a: Unknown result type (might be due to invalid IL or missing references) //IL_038f: Unknown result type (might be due to invalid IL or missing references) //IL_039a: Unknown result type (might be due to invalid IL or missing references) //IL_03ab: Unknown result type (might be due to invalid IL or missing references) //IL_03b0: Unknown result type (might be due to invalid IL or missing references) //IL_03bb: Unknown result type (might be due to invalid IL or missing references) //IL_03cc: Unknown result type (might be due to invalid IL or missing references) //IL_03d6: Unknown result type (might be due to invalid IL or missing references) //IL_03db: Unknown result type (might be due to invalid IL or missing references) //IL_03e7: Unknown result type (might be due to invalid IL or missing references) //IL_02f9: Unknown result type (might be due to invalid IL or missing references) //IL_0304: Unknown result type (might be due to invalid IL or missing references) //IL_0221: Unknown result type (might be due to invalid IL or missing references) //IL_0226: Unknown result type (might be due to invalid IL or missing references) //IL_044f: Unknown result type (might be due to invalid IL or missing references) //IL_0455: Unknown result type (might be due to invalid IL or missing references) //IL_045a: Unknown result type (might be due to invalid IL or missing references) //IL_0465: Unknown result type (might be due to invalid IL or missing references) //IL_0476: Unknown result type (might be due to invalid IL or missing references) //IL_0480: Unknown result type (might be due to invalid IL or missing references) //IL_0485: Unknown result type (might be due to invalid IL or missing references) //IL_0490: Unknown result type (might be due to invalid IL or missing references) //IL_0496: Unknown result type (might be due to invalid IL or missing references) //IL_049b: Unknown result type (might be due to invalid IL or missing references) //IL_04a6: Unknown result type (might be due to invalid IL or missing references) //IL_04b7: Unknown result type (might be due to invalid IL or missing references) //IL_04bc: Unknown result type (might be due to invalid IL or missing references) //IL_04c7: Unknown result type (might be due to invalid IL or missing references) //IL_04d8: Unknown result type (might be due to invalid IL or missing references) //IL_04e2: Unknown result type (might be due to invalid IL or missing references) //IL_04e7: Unknown result type (might be due to invalid IL or missing references) //IL_04f3: Unknown result type (might be due to invalid IL or missing references) //IL_0405: Unknown result type (might be due to invalid IL or missing references) //IL_0410: Unknown result type (might be due to invalid IL or missing references) //IL_032d: Unknown result type (might be due to invalid IL or missing references) //IL_0332: Unknown result type (might be due to invalid IL or missing references) //IL_055b: Unknown result type (might be due to invalid IL or missing references) //IL_0561: Unknown result type (might be due to invalid IL or missing references) //IL_0566: Unknown result type (might be due to invalid IL or missing references) //IL_0571: Unknown result type (might be due to invalid IL or missing references) //IL_0582: Unknown result type (might be due to invalid IL or missing references) //IL_058c: Unknown result type (might be due to invalid IL or missing references) //IL_0591: Unknown result type (might be due to invalid IL or missing references) //IL_059c: Unknown result type (might be due to invalid IL or missing references) //IL_05a2: Unknown result type (might be due to invalid IL or missing references) //IL_05a7: Unknown result type (might be due to invalid IL or missing references) //IL_05b2: Unknown result type (might be due to invalid IL or missing references) //IL_05c3: Unknown result type (might be due to invalid IL or missing references) //IL_05c8: Unknown result type (might be due to invalid IL or missing references) //IL_05d3: Unknown result type (might be due to invalid IL or missing references) //IL_05e4: Unknown result type (might be due to invalid IL or missing references) //IL_05ee: Unknown result type (might be due to invalid IL or missing references) //IL_05f3: Unknown result type (might be due to invalid IL or missing references) //IL_05ff: Unknown result type (might be due to invalid IL or missing references) //IL_0511: Unknown result type (might be due to invalid IL or missing references) //IL_051c: Unknown result type (might be due to invalid IL or missing references) //IL_0439: Unknown result type (might be due to invalid IL or missing references) //IL_043e: Unknown result type (might be due to invalid IL or missing references) //IL_0667: Unknown result type (might be due to invalid IL or missing references) //IL_066d: Unknown result type (might be due to invalid IL or missing references) //IL_0672: Unknown result type (might be due to invalid IL or missing references) //IL_067d: Unknown result type (might be due to invalid IL or missing references) //IL_068e: Unknown result type (might be due to invalid IL or missing references) //IL_0698: Unknown result type (might be due to invalid IL or missing references) //IL_069d: Unknown result type (might be due to invalid IL or missing references) //IL_06a8: Unknown result type (might be due to invalid IL or missing references) //IL_06ae: Unknown result type (might be due to invalid IL or missing references) //IL_06b3: Unknown result type (might be due to invalid IL or missing references) //IL_06be: Unknown result type (might be due to invalid IL or missing references) //IL_06cf: Unknown result type (might be due to invalid IL or missing references) //IL_06d4: Unknown result type (might be due to invalid IL or missing references) //IL_06df: Unknown result type (might be due to invalid IL or missing references) //IL_06f0: Unknown result type (might be due to invalid IL or missing references) //IL_06fa: Unknown result type (might be due to invalid IL or missing references) //IL_06ff: Unknown result type (might be due to invalid IL or missing references) //IL_070b: Unknown result type (might be due to invalid IL or missing references) //IL_061d: Unknown result type (might be due to invalid IL or missing references) //IL_0628: Unknown result type (might be due to invalid IL or missing references) //IL_0545: Unknown result type (might be due to invalid IL or missing references) //IL_054a: Unknown result type (might be due to invalid IL or missing references) //IL_0729: Unknown result type (might be due to invalid IL or missing references) //IL_0734: Unknown result type (might be due to invalid IL or missing references) //IL_0651: Unknown result type (might be due to invalid IL or missing references) //IL_0656: Unknown result type (might be due to invalid IL or missing references) //IL_075d: Unknown result type (might be due to invalid IL or missing references) //IL_0762: Unknown result type (might be due to invalid IL or missing references) if (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && !wallJumping.allowWallJumping && !headHit && !wallIsClimbable && !turnBack && !back2 && (leftTouchingWall || middleTouchingWall || rightTouchingWall)) { if (Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle) { wallNormal = ((RaycastHit)(ref hit)).normal; } else if (Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.1875f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.1875f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle) { wallNormal = ((RaycastHit)(ref hit)).normal; } else if (Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.375f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.375f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle) { wallNormal = ((RaycastHit)(ref hit)).normal; } else if (Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.5625f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.5625f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle) { wallNormal = ((RaycastHit)(ref hit)).normal; } else if (Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.75f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.75f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle) { wallNormal = ((RaycastHit)(ref hit)).normal; } else if (Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.9375f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 0.9375f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle) { wallNormal = ((RaycastHit)(ref hit)).normal; } else if (Physics.Linecast(((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 1.125f, ((Component)this).transform.position + spaceOnWallNeededToWallJumpUpAmount2 + ((Component)this).transform.forward * (spaceOnWallNeededToWallJumpLength2 + 1f) + ((Component)this).transform.up * (spaceOnWallNeededToWallJumpHeight2 + 1f) * 1.125f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && 90f - Mathf.Abs(90f - Vector3.Angle(Vector3.up, ((RaycastHit)(ref hit)).normal)) >= wallJumping.minimumWallAngle) { wallNormal = ((RaycastHit)(ref hit)).normal; } touchingWall = true; } else { touchingWall = false; } } private void CheckIfPlayerCanClimb() { //IL_0076: Unknown result type (might be due to invalid IL or missing references) //IL_007c: Unknown result type (might be due to invalid IL or missing references) //IL_0081: Unknown result type (might be due to invalid IL or missing references) //IL_008c: Unknown result type (might be due to invalid IL or missing references) //IL_009d: Unknown result type (might be due to invalid IL or missing references) //IL_00a7: Unknown result type (might be due to invalid IL or missing references) //IL_00ac: Unknown result type (might be due to invalid IL or missing references) //IL_00b7: Unknown result type (might be due to invalid IL or missing references) //IL_00bd: Unknown result type (might be due to invalid IL or missing references) //IL_00c2: Unknown result type (might be due to invalid IL or missing references) //IL_00cd: Unknown result type (might be due to invalid IL or missing references) //IL_00de: Unknown result type (might be due to invalid IL or missing references) //IL_00e3: Unknown result type (might be due to invalid IL or missing references) //IL_00ee: Unknown result type (might be due to invalid IL or missing references) //IL_00ff: Unknown result type (might be due to invalid IL or missing references) //IL_0109: Unknown result type (might be due to invalid IL or missing references) //IL_010e: Unknown result type (might be due to invalid IL or missing references) //IL_011a: Unknown result type (might be due to invalid IL or missing references) //IL_0154: Unknown result type (might be due to invalid IL or missing references) //IL_015a: Unknown result type (might be due to invalid IL or missing references) //IL_015f: Unknown result type (might be due to invalid IL or missing references) //IL_016a: Unknown result type (might be due to invalid IL or missing references) //IL_017b: Unknown result type (might be due to invalid IL or missing references) //IL_0185: Unknown result type (might be due to invalid IL or missing references) //IL_018a: Unknown result type (might be due to invalid IL or missing references) //IL_0195: Unknown result type (might be due to invalid IL or missing references) //IL_019b: Unknown result type (might be due to invalid IL or missing references) //IL_01a0: Unknown result type (might be due to invalid IL or missing references) //IL_01ab: Unknown result type (might be due to invalid IL or missing references) //IL_01bc: Unknown result type (might be due to invalid IL or missing references) //IL_01c1: Unknown result type (might be due to invalid IL or missing references) //IL_01cc: Unknown result type (might be due to invalid IL or missing references) //IL_01dd: Unknown result type (might be due to invalid IL or missing references) //IL_01e7: Unknown result type (might be due to invalid IL or missing references) //IL_01ec: Unknown result type (might be due to invalid IL or missing references) //IL_01f8: Unknown result type (might be due to invalid IL or missing references) //IL_0232: Unknown result type (might be due to invalid IL or missing references) //IL_0238: Unknown result type (might be due to invalid IL or missing references) //IL_023d: Unknown result type (might be due to invalid IL or missing references) //IL_0248: Unknown result type (might be due to invalid IL or missing references) //IL_0259: Unknown result type (might be due to invalid IL or missing references) //IL_0263: Unknown result type (might be due to invalid IL or missing references) //IL_0268: Unknown result type (might be due to invalid IL or missing references) //IL_0273: Unknown result type (might be due to invalid IL or missing references) //IL_0279: Unknown result type (might be due to invalid IL or missing references) //IL_027e: Unknown result type (might be due to invalid IL or missing references) //IL_0289: Unknown result type (might be due to invalid IL or missing references) //IL_029a: Unknown result type (might be due to invalid IL or missing references) //IL_029f: Unknown result type (might be due to invalid IL or missing references) //IL_02aa: Unknown result type (might be due to invalid IL or missing references) //IL_02bb: Unknown result type (might be due to invalid IL or missing references) //IL_02c5: Unknown result type (might be due to invalid IL or missing references) //IL_02ca: Unknown result type (might be due to invalid IL or missing references) //IL_02d6: Unknown result type (might be due to invalid IL or missing references) //IL_0310: Unknown result type (might be due to invalid IL or missing references) //IL_0316: Unknown result type (might be due to invalid IL or missing references) //IL_031b: Unknown result type (might be due to invalid IL or missing references) //IL_0326: Unknown result type (might be due to invalid IL or missing references) //IL_0337: Unknown result type (might be due to invalid IL or missing references) //IL_0341: Unknown result type (might be due to invalid IL or missing references) //IL_0346: Unknown result type (might be due to invalid IL or missing references) //IL_0351: Unknown result type (might be due to invalid IL or missing references) //IL_0357: Unknown result type (might be due to invalid IL or missing references) //IL_035c: Unknown result type (might be due to invalid IL or missing references) //IL_0367: Unknown result type (might be due to invalid IL or missing references) //IL_0378: Unknown result type (might be due to invalid IL or missing references) //IL_037d: Unknown result type (might be due to invalid IL or missing references) //IL_0388: Unknown result type (might be due to invalid IL or missing references) //IL_0399: Unknown result type (might be due to invalid IL or missing references) //IL_03a3: Unknown result type (might be due to invalid IL or missing references) //IL_03a8: Unknown result type (might be due to invalid IL or missing references) //IL_03b4: Unknown result type (might be due to invalid IL or missing references) //IL_05b8: Unknown result type (might be due to invalid IL or missing references) //IL_05bd: Unknown result type (might be due to invalid IL or missing references) //IL_05c2: Unknown result type (might be due to invalid IL or missing references) //IL_05c7: Unknown result type (might be due to invalid IL or missing references) //IL_03ee: Unknown result type (might be due to invalid IL or missing references) //IL_03f4: Unknown result type (might be due to invalid IL or missing references) //IL_03f9: Unknown result type (might be due to invalid IL or missing references) //IL_0404: Unknown result type (might be due to invalid IL or missing references) //IL_0415: Unknown result type (might be due to invalid IL or missing references) //IL_041f: Unknown result type (might be due to invalid IL or missing references) //IL_0424: Unknown result type (might be due to invalid IL or missing references) //IL_042f: Unknown result type (might be due to invalid IL or missing references) //IL_0435: Unknown result type (might be due to invalid IL or missing references) //IL_043a: Unknown result type (might be due to invalid IL or missing references) //IL_0445: Unknown result type (might be due to invalid IL or missing references) //IL_0456: Unknown result type (might be due to invalid IL or missing references) //IL_045b: Unknown result type (might be due to invalid IL or missing references) //IL_0466: Unknown result type (might be due to invalid IL or missing references) //IL_0477: Unknown result type (might be due to invalid IL or missing references) //IL_0481: Unknown result type (might be due to invalid IL or missing references) //IL_0486: Unknown result type (might be due to invalid IL or missing references) //IL_0492: Unknown result type (might be due to invalid IL or missing references) //IL_04cc: Unknown result type (might be due to invalid IL or missing references) //IL_04d2: Unknown result type (might be due to invalid IL or missing references) //IL_04d7: Unknown result type (might be due to invalid IL or missing references) //IL_04e2: Unknown result type (might be due to invalid IL or missing references) //IL_04f3: Unknown result type (might be due to invalid IL or missing references) //IL_04fd: Unknown result type (might be due to invalid IL or missing references) //IL_0502: Unknown result type (might be due to invalid IL or missing references) //IL_050d: Unknown result type (might be due to invalid IL or missing references) //IL_0513: Unknown result type (might be due to invalid IL or missing references) //IL_0518: Unknown result type (might be due to invalid IL or missing references) //IL_0523: Unknown result type (might be due to invalid IL or missing references) //IL_0534: Unknown result type (might be due to invalid IL or missing references) //IL_0539: Unknown result type (might be due to invalid IL or missing references) //IL_0544: Unknown result type (might be due to invalid IL or missing references) //IL_0555: Unknown result type (might be due to invalid IL or missing references) //IL_055f: Unknown result type (might be due to invalid IL or missing references) //IL_0564: Unknown result type (might be due to invalid IL or missing references) //IL_0570: Unknown result type (might be due to invalid IL or missing references) //IL_0666: Unknown result type (might be due to invalid IL or missing references) //IL_066c: Unknown result type (might be due to invalid IL or missing references) //IL_074c: Unknown result type (might be due to invalid IL or missing references) //IL_0752: Unknown result type (might be due to invalid IL or missing references) //IL_0757: Unknown result type (might be due to invalid IL or missing references) //IL_0762: Unknown result type (might be due to invalid IL or missing references) //IL_0773: Unknown result type (might be due to invalid IL or missing references) //IL_077d: Unknown result type (might be due to invalid IL or missing references) //IL_0782: Unknown result type (might be due to invalid IL or missing references) //IL_078d: Unknown result type (might be due to invalid IL or missing references) //IL_0793: Unknown result type (might be due to invalid IL or missing references) //IL_0798: Unknown result type (might be due to invalid IL or missing references) //IL_07a3: Unknown result type (might be due to invalid IL or missing references) //IL_07b4: Unknown result type (might be due to invalid IL or missing references) //IL_07b9: Unknown result type (might be due to invalid IL or missing references) //IL_07c4: Unknown result type (might be due to invalid IL or missing references) //IL_07d5: Unknown result type (might be due to invalid IL or missing references) //IL_07df: Unknown result type (might be due to invalid IL or missing references) //IL_07e4: Unknown result type (might be due to invalid IL or missing references) //IL_07f0: Unknown result type (might be due to invalid IL or missing references) //IL_06b1: Unknown result type (might be due to invalid IL or missing references) //IL_06b7: Unknown result type (might be due to invalid IL or missing references) //IL_0bc0: Unknown result type (might be due to invalid IL or missing references) //IL_0bc6: Unknown result type (might be due to invalid IL or missing references) //IL_0bcb: Unknown result type (might be due to invalid IL or missing references) //IL_0bd6: Unknown result type (might be due to invalid IL or missing references) //IL_0be7: Unknown result type (might be due to invalid IL or missing references) //IL_0bf1: Unknown result type (might be due to invalid IL or missing references) //IL_0bf6: Unknown result type (might be due to invalid IL or missing references) //IL_0c01: Unknown result type (might be due to invalid IL or missing references) //IL_0c0b: Unknown result type (might be due to invalid IL or missing references) //IL_0c10: Unknown result type (might be due to invalid IL or missing references) //IL_0c1b: Unknown result type (might be due to invalid IL or missing references) //IL_0c21: Unknown result type (might be due to invalid IL or missing references) //IL_0c26: Unknown result type (might be due to invalid IL or missing references) //IL_0c31: Unknown result type (might be due to invalid IL or missing references) //IL_0c42: Unknown result type (might be due to invalid IL or missing references) //IL_0c47: Unknown result type (might be due to invalid IL or missing references) //IL_0c52: Unknown result type (might be due to invalid IL or missing references) //IL_0c63: Unknown result type (might be due to invalid IL or missing references) //IL_0c6d: Unknown result type (might be due to invalid IL or missing references) //IL_0c72: Unknown result type (might be due to invalid IL or missing references) //IL_0c7d: Unknown result type (might be due to invalid IL or missing references) //IL_0c87: Unknown result type (might be due to invalid IL or missing references) //IL_0c8c: Unknown result type (might be due to invalid IL or missing references) //IL_0c98: Unknown result type (might be due to invalid IL or missing references) //IL_080a: Unknown result type (might be due to invalid IL or missing references) //IL_0810: Unknown result type (might be due to invalid IL or missing references) //IL_0815: Unknown result type (might be due to invalid IL or missing references) //IL_0820: Unknown result type (might be due to invalid IL or missing references) //IL_0831: Unknown result type (might be due to invalid IL or missing references) //IL_083b: Unknown result type (might be due to invalid IL or missing references) //IL_0840: Unknown result type (might be due to invalid IL or missing references) //IL_084b: Unknown result type (might be due to invalid IL or missing references) //IL_0851: Unknown result type (might be due to invalid IL or missing references) //IL_0856: Unknown result type (might be due to invalid IL or missing references) //IL_0861: Unknown result type (might be due to invalid IL or missing references) //IL_0872: Unknown result type (might be due to invalid IL or missing references) //IL_0877: Unknown result type (might be due to invalid IL or missing references) //IL_0882: Unknown result type (might be due to invalid IL or missing references) //IL_0893: Unknown result type (might be due to invalid IL or missing references) //IL_089d: Unknown result type (might be due to invalid IL or missing references) //IL_08a2: Unknown result type (might be due to invalid IL or missing references) //IL_08ae: Unknown result type (might be due to invalid IL or missing references) //IL_116c: Unknown result type (might be due to invalid IL or missing references) //IL_1172: Unknown result type (might be due to invalid IL or missing references) //IL_1177: Unknown result type (might be due to invalid IL or missing references) //IL_1182: Unknown result type (might be due to invalid IL or missing references) //IL_1193: Unknown result type (might be due to invalid IL or missing references) //IL_119d: Unknown result type (might be due to invalid IL or missing references) //IL_11a2: Unknown result type (might be due to invalid IL or missing references) //IL_11ad: Unknown result type (might be due to invalid IL or missing references) //IL_11b7: Unknown result type (might be due to invalid IL or missing references) //IL_11bc: Unknown result type (might be due to invalid IL or missing references) //IL_11c7: Unknown result type (might be due to invalid IL or missing references) //IL_11cd: Unknown result type (might be due to invalid IL or missing references) //IL_11d2: Unknown result type (might be due to invalid IL or missing references) //IL_11dd: Unknown result type (might be due to invalid IL or missing references) //IL_11ee: Unknown result type (might be due to invalid IL or missing references) //IL_11f3: Unknown result type (might be due to invalid IL or missing references) //IL_11fe: Unknown result type (might be due to invalid IL or missing references) //IL_120f: Unknown result type (might be due to invalid IL or missing references) //IL_1219: Unknown result type (might be due to invalid IL or missing references) //IL_121e: Unknown result type (might be due to invalid IL or missing references) //IL_1229: Unknown result type (might be due to invalid IL or missing references) //IL_1233: Unknown result type (might be due to invalid IL or missing references) //IL_1238: Unknown result type (might be due to invalid IL or missing references) //IL_1244: Unknown result type (might be due to invalid IL or missing references) //IL_0cb2: Unknown result type (might be due to invalid IL or missing references) //IL_0cb8: Unknown result type (might be due to invalid IL or missing references) //IL_0cbd: Unknown result type (might be due to invalid IL or missing references) //IL_0cc8: Unknown result type (might be due to invalid IL or missing references) //IL_0cd9: Unknown result type (might be due to invalid IL or missing references) //IL_0ce3: Unknown result type (might be due to invalid IL or missing references) //IL_0ce8: Unknown result type (might be due to invalid IL or missing references) //IL_0cf3: Unknown result type (might be due to invalid IL or missing references) //IL_0cfd: Unknown result type (might be due to invalid IL or missing references) //IL_0d02: Unknown result type (might be due to invalid IL or missing references) //IL_0d0d: Unknown result type (might be due to invalid IL or missing references) //IL_0d13: Unknown result type (might be due to invalid IL or missing references) //IL_0d18: Unknown result type (might be due to invalid IL or missing references) //IL_0d23: Unknown result type (might be due to invalid IL or missing references) //IL_0d34: Unknown result type (might be due to invalid IL or missing references) //IL_0d39: Unknown result type (might be due to invalid IL or missing references) //IL_0d44: Unknown result type (might be due to invalid IL or missing references) //IL_0d55: Unknown result type (might be due to invalid IL or missing references) //IL_0d5f: Unknown result type (might be due to invalid IL or missing references) //IL_0d64: Unknown result type (might be due to invalid IL or missing references) //IL_0d6f: Unknown result type (might be due to invalid IL or missing references) //IL_0d79: Unknown result type (might be due to invalid IL or missing references) //IL_0d7e: Unknown result type (might be due to invalid IL or missing references) //IL_0d8a: Unknown result type (might be due to invalid IL or missing references) //IL_08c8: Unknown result type (might be due to invalid IL or missing references) //IL_08ce: Unknown result type (might be due to invalid IL or missing references) //IL_08d3: Unknown result type (might be due to invalid IL or missing references) //IL_08de: Unknown result type (might be due to invalid IL or missing references) //IL_08ef: Unknown result type (might be due to invalid IL or missing references) //IL_08f9: Unknown result type (might be due to invalid IL or missing references) //IL_08fe: Unknown result type (might be due to invalid IL or missing references) //IL_0909: Unknown result type (might be due to invalid IL or missing references) //IL_090f: Unknown result type (might be due to invalid IL or missing references) //IL_0914: Unknown result type (might be due to invalid IL or missing references) //IL_091f: Unknown result type (might be due to invalid IL or missing references) //IL_0930: Unknown result type (might be due to invalid IL or missing references) //IL_0935: Unknown result type (might be due to invalid IL or missing references) //IL_0940: Unknown result type (might be due to invalid IL or missing references) //IL_0951: Unknown result type (might be due to invalid IL or missing references) //IL_095b: Unknown result type (might be due to invalid IL or missing references) //IL_0960: Unknown result type (might be due to invalid IL or missing references) //IL_096c: Unknown result type (might be due to invalid IL or missing references) //IL_125e: Unknown result type (might be due to invalid IL or missing references) //IL_1264: Unknown result type (might be due to invalid IL or missing references) //IL_1269: Unknown result type (might be due to invalid IL or missing references) //IL_1274: Unknown result type (might be due to invalid IL or missing references) //IL_1285: Unknown result type (might be due to invalid IL or missing references) //IL_128f: Unknown result type (might be due to invalid IL or missing references) //IL_1294: Unknown result type (might be due to invalid IL or missing references) //IL_129f: Unknown result type (might be due to invalid IL or missing references) //IL_12a9: Unknown result type (might be due to invalid IL or missing references) //IL_12ae: Unknown result type (might be due to invalid IL or missing references) //IL_12b9: Unknown result type (might be due to invalid IL or missing references) //IL_12bf: Unknown result type (might be due to invalid IL or missing references) //IL_12c4: Unknown result type (might be due to invalid IL or missing references) //IL_12cf: Unknown result type (might be due to invalid IL or missing references) //IL_12e0: Unknown result type (might be due to invalid IL or missing references) //IL_12e5: Unknown result type (might be due to invalid IL or missing references) //IL_12f0: Unknown result type (might be due to invalid IL or missing references) //IL_1301: Unknown result type (might be due to invalid IL or missing references) //IL_130b: Unknown result type (might be due to invalid IL or missing references) //IL_1310: Unknown result type (might be due to invalid IL or missing references) //IL_131b: Unknown result type (might be due to invalid IL or missing references) //IL_1325: Unknown result type (might be due to invalid IL or missing references) //IL_132a: Unknown result type (might be due to invalid IL or missing references) //IL_1336: Unknown result type (might be due to invalid IL or missing references) //IL_0da4: Unknown result type (might be due to invalid IL or missing references) //IL_0daa: Unknown result type (might be due to invalid IL or missing references) //IL_0daf: Unknown result type (might be due to invalid IL or missing references) //IL_0dba: Unknown result type (might be due to invalid IL or missing references) //IL_0dcb: Unknown result type (might be due to invalid IL or missing references) //IL_0dd5: Unknown result type (might be due to invalid IL or missing references) //IL_0dda: Unknown result type (might be due to invalid IL or missing references) //IL_0de5: Unknown result type (might be due to invalid IL or missing references) //IL_0def: Unknown result type (might be due to invalid IL or missing references) //IL_0df4: Unknown result type (might be due to invalid IL or missing references) //IL_0dff: Unknown result type (might be due to invalid IL or missing references) //IL_0e05: Unknown result type (might be due to invalid IL or missing references) //IL_0e0a: Unknown result type (might be due to invalid IL or missing references) //IL_0e15: Unknown result type (might be due to invalid IL or missing references) //IL_0e26: Unknown result type (might be due to invalid IL or missing references) //IL_0e2b: Unknown result type (might be due to invalid IL or missing references) //IL_0e36: Unknown result type (might be due to invalid IL or missing references) //IL_0e47: Unknown result type (might be due to invalid IL or missing references) //IL_0e51: Unknown result type (might be due to invalid IL or missing references) //IL_0e56: Unknown result type (might be due to invalid IL or missing references) //IL_0e61: Unknown result type (might be due to invalid IL or missing references) //IL_0e6b: Unknown result type (might be due to invalid IL or missing references) //IL_0e70: Unknown result type (might be due to invalid IL or missing references) //IL_0e7c: Unknown result type (might be due to invalid IL or missing references) //IL_0986: Unknown result type (might be due to invalid IL or missing references) //IL_098c: Unknown result type (might be due to invalid IL or missing references) //IL_0991: Unknown result type (might be due to invalid IL or missing references) //IL_099c: Unknown result type (might be due to invalid IL or missing references) //IL_09ad: Unknown result type (might be due to invalid IL or missing references) //IL_09b7: Unknown result type (might be due to invalid IL or missing references) //IL_09bc: Unknown result type (might be due to invalid IL or missing references) //IL_09c7: Unknown result type (might be due to invalid IL or missing references) //IL_09cd: Unknown result type (might be due to invalid IL or missing references) //IL_09d2: Unknown result type (might be due to invalid IL or missing references) //IL_09dd: Unknown result type (might be due to invalid IL or missing references) //IL_09ee: Unknown result type (might be due to invalid IL or missing references) //IL_09f3: Unknown result type (might be due to invalid IL or missing references) //IL_09fe: Unknown result type (might be due to invalid IL or missing references) //IL_0a0f: Unknown result type (might be due to invalid IL or missing references) //IL_0a19: Unknown result type (might be due to invalid IL or missing references) //IL_0a1e: Unknown result type (might be due to invalid IL or missing references) //IL_0a2a: Unknown result type (might be due to invalid IL or missing references) //IL_06ea: Unknown result type (might be due to invalid IL or missing references) //IL_06ef: Unknown result type (might be due to invalid IL or missing references) //IL_1350: Unknown result type (might be due to invalid IL or missing references) //IL_1356: Unknown result type (might be due to invalid IL or missing references) //IL_135b: Unknown result type (might be due to invalid IL or missing references) //IL_1366: Unknown result type (might be due to invalid IL or missing references) //IL_1377: Unknown result type (might be due to invalid IL or missing references) //IL_1381: Unknown result type (might be due to invalid IL or missing references) //IL_1386: Unknown result type (might be due to invalid IL or missing references) //IL_1391: Unknown result type (might be due to invalid IL or missing references) //IL_139b: Unknown result type (might be due to invalid IL or missing references) //IL_13a0: Unknown result type (might be due to invalid IL or missing references) //IL_13ab: Unknown result type (might be due to invalid IL or missing references) //IL_13b1: Unknown result type (might be due to invalid IL or missing references) //IL_13b6: Unknown result type (might be due to invalid IL or missing references) //IL_13c1: Unknown result type (might be due to invalid IL or missing references) //IL_13d2: Unknown result type (might be due to invalid IL or missing references) //IL_13d7: Unknown result type (might be due to invalid IL or missing references) //IL_13e2: Unknown result type (might be due to invalid IL or missing references) //IL_13f3: Unknown result type (might be due to invalid IL or missing references) //IL_13fd: Unknown result type (might be due to invalid IL or missing references) //IL_1402: Unknown result type (might be due to invalid IL or missing references) //IL_140d: Unknown result type (might be due to invalid IL or missing references) //IL_1417: Unknown result type (might be due to invalid IL or missing references) //IL_141c: Unknown result type (might be due to invalid IL or missing references) //IL_1428: Unknown result type (might be due to invalid IL or missing references) //IL_0e96: Unknown result type (might be due to invalid IL or missing references) //IL_0e9c: Unknown result type (might be due to invalid IL or missing references) //IL_0ea1: Unknown result type (might be due to invalid IL or missing references) //IL_0eac: Unknown result type (might be due to invalid IL or missing references) //IL_0ebd: Unknown result type (might be due to invalid IL or missing references) //IL_0ec7: Unknown result type (might be due to invalid IL or missing references) //IL_0ecc: Unknown result type (might be due to invalid IL or missing references) //IL_0ed7: Unknown result type (might be due to invalid IL or missing references) //IL_0ee1: Unknown result type (might be due to invalid IL or missing references) //IL_0ee6: Unknown result type (might be due to invalid IL or missing references) //IL_0ef1: Unknown result type (might be due to invalid IL or missing references) //IL_0ef7: Unknown result type (might be due to invalid IL or missing references) //IL_0efc: Unknown result type (might be due to invalid IL or missing references) //IL_0f07: Unknown result type (might be due to invalid IL or missing references) //IL_0f18: Unknown result type (might be due to invalid IL or missing references) //IL_0f1d: Unknown result type (might be due to invalid IL or missing references) //IL_0f28: Unknown result type (might be due to invalid IL or missing references) //IL_0f39: Unknown result type (might be due to invalid IL or missing references) //IL_0f43: Unknown result type (might be due to invalid IL or missing references) //IL_0f48: Unknown result type (might be due to invalid IL or missing references) //IL_0f53: Unknown result type (might be due to invalid IL or missing references) //IL_0f5d: Unknown result type (might be due to invalid IL or missing references) //IL_0f62: Unknown result type (might be due to invalid IL or missing references) //IL_0f6e: Unknown result type (might be due to invalid IL or missing references) //IL_0a44: Unknown result type (might be due to invalid IL or missing references) //IL_0a4a: Unknown result type (might be due to invalid IL or missing references) //IL_0a4f: Unknown result type (might be due to invalid IL or missing references) //IL_0a5a: Unknown result type (might be due to invalid IL or missing references) //IL_0a6b: Unknown result type (might be due to invalid IL or missing references) //IL_0a75: Unknown result type (might be due to invalid IL or missing references) //IL_0a7a: Unknown result type (might be due to invalid IL or missing references) //IL_0a85: Unknown result type (might be due to invalid IL or missing references) //IL_0a8b: Unknown result type (might be due to invalid IL or missing references) //IL_0a90: Unknown result type (might be due to invalid IL or missing references) //IL_0a9b: Unknown result type (might be due to invalid IL or missing references) //IL_0aac: Unknown result type (might be due to invalid IL or missing references) //IL_0ab1: Unknown result type (might be due to invalid IL or missing references) //IL_0abc: Unknown result type (might be due to invalid IL or missing references) //IL_0acd: Unknown result type (might be due to invalid IL or missing references) //IL_0ad7: Unknown result type (might be due to invalid IL or missing references) //IL_0adc: Unknown result type (might be due to invalid IL or missing references) //IL_0ae8: Unknown result type (might be due to invalid IL or missing references) //IL_1442: Unknown result type (might be due to invalid IL or missing references) //IL_1448: Unknown result type (might be due to invalid IL or missing references) //IL_144d: Unknown result type (might be due to invalid IL or missing references) //IL_1458: Unknown result type (might be due to invalid IL or missing references) //IL_1469: Unknown result type (might be due to invalid IL or missing references) //IL_1473: Unknown result type (might be due to invalid IL or missing references) //IL_1478: Unknown result type (might be due to invalid IL or missing references) //IL_1483: Unknown result type (might be due to invalid IL or missing references) //IL_148d: Unknown result type (might be due to invalid IL or missing references) //IL_1492: Unknown result type (might be due to invalid IL or missing references) //IL_149d: Unknown result type (might be due to invalid IL or missing references) //IL_14a3: Unknown result type (might be due to invalid IL or missing references) //IL_14a8: Unknown result type (might be due to invalid IL or missing references) //IL_14b3: Unknown result type (might be due to invalid IL or missing references) //IL_14c4: Unknown result type (might be due to invalid IL or missing references) //IL_14c9: Unknown result type (might be due to invalid IL or missing references) //IL_14d4: Unknown result type (might be due to invalid IL or missing references) //IL_14e5: Unknown result type (might be due to invalid IL or missing references) //IL_14ef: Unknown result type (might be due to invalid IL or missing references) //IL_14f4: Unknown result type (might be due to invalid IL or missing references) //IL_14ff: Unknown result type (might be due to invalid IL or missing references) //IL_1509: Unknown result type (might be due to invalid IL or missing references) //IL_150e: Unknown result type (might be due to invalid IL or missing references) //IL_151a: Unknown result type (might be due to invalid IL or missing references) //IL_0f88: Unknown result type (might be due to invalid IL or missing references) //IL_0f8e: Unknown result type (might be due to invalid IL or missing references) //IL_0f93: Unknown result type (might be due to invalid IL or missing references) //IL_0f9e: Unknown result type (might be due to invalid IL or missing references) //IL_0faf: Unknown result type (might be due to invalid IL or missing references) //IL_0fb9: Unknown result type (might be due to invalid IL or missing references) //IL_0fbe: Unknown result type (might be due to invalid IL or missing references) //IL_0fc9: Unknown result type (might be due to invalid IL or missing references) //IL_0fd3: Unknown result type (might be due to invalid IL or missing references) //IL_0fd8: Unknown result type (might be due to invalid IL or missing references) //IL_0fe3: Unknown result type (might be due to invalid IL or missing references) //IL_0fe9: Unknown result type (might be due to invalid IL or missing references) //IL_0fee: Unknown result type (might be due to invalid IL or missing references) //IL_0ff9: Unknown result type (might be due to invalid IL or missing references) //IL_100a: Unknown result type (might be due to invalid IL or missing references) //IL_100f: Unknown result type (might be due to invalid IL or missing references) //IL_101a: Unknown result type (might be due to invalid IL or missing references) //IL_102b: Unknown result type (might be due to invalid IL or missing references) //IL_1035: Unknown result type (might be due to invalid IL or missing references) //IL_103a: Unknown result type (might be due to invalid IL or missing references) //IL_1045: Unknown result type (might be due to invalid IL or missing references) //IL_104f: Unknown result type (might be due to invalid IL or missing references) //IL_1054: Unknown result type (might be due to invalid IL or missing references) //IL_1060: Unknown result type (might be due to invalid IL or missing references) //IL_0b02: Unknown result type (might be due to invalid IL or missing references) //IL_0b08: Unknown result type (might be due to invalid IL or missing references) //IL_0b0d: Unknown result type (might be due to invalid IL or missing references) //IL_0b18: Unknown result type (might be due to invalid IL or missing references) //IL_0b29: Unknown result type (might be due to invalid IL or missing references) //IL_0b33: Unknown result type (might be due to invalid IL or missing references) //IL_0b38: Unknown result type (might be due to invalid IL or missing references) //IL_0b43: Unknown result type (might be due to invalid IL or missing references) //IL_0b49: Unknown result type (might be due to invalid IL or missing references) //IL_0b4e: Unknown result type (might be due to invalid IL or missing references) //IL_0b59: Unknown result type (might be due to invalid IL or missing references) //IL_0b6a: Unknown result type (might be due to invalid IL or missing references) //IL_0b6f: Unknown result type (might be due to invalid IL or missing references) //IL_0b7a: Unknown result type (might be due to invalid IL or missing references) //IL_0b8b: Unknown result type (might be due to invalid IL or missing references) //IL_0b95: Unknown result type (might be due to invalid IL or missing references) //IL_0b9a: Unknown result type (might be due to invalid IL or missing references) //IL_0ba6: Unknown result type (might be due to invalid IL or missing references) //IL_1798: Unknown result type (might be due to invalid IL or missing references) //IL_179e: Unknown result type (might be due to invalid IL or missing references) //IL_17a3: Unknown result type (might be due to invalid IL or missing references) //IL_17ae: Unknown result type (might be due to invalid IL or missing references) //IL_17bf: Unknown result type (might be due to invalid IL or missing references) //IL_17c9: Unknown result type (might be due to invalid IL or missing references) //IL_17ce: Unknown result type (might be due to invalid IL or missing references) //IL_17d9: Unknown result type (might be due to invalid IL or missing references) //IL_17df: Unknown result type (might be due to invalid IL or missing references) //IL_17e4: Unknown result type (might be due to invalid IL or missing references) //IL_17ef: Unknown result type (might be due to invalid IL or missing references) //IL_17f9: Unknown result type (might be due to invalid IL or missing references) //IL_180a: Unknown result type (might be due to invalid IL or missing references) //IL_180f: Unknown result type (might be due to invalid IL or missing references) //IL_181a: Unknown result type (might be due to invalid IL or missing references) //IL_182b: Unknown result type (might be due to invalid IL or missing references) //IL_1835: Unknown result type (might be due to invalid IL or missing references) //IL_183a: Unknown result type (might be due to invalid IL or missing references) //IL_1846: Unknown result type (might be due to invalid IL or missing references) //IL_1534: Unknown result type (might be due to invalid IL or missing references) //IL_153a: Unknown result type (might be due to invalid IL or missing references) //IL_153f: Unknown result type (might be due to invalid IL or missing references) //IL_154a: Unknown result type (might be due to invalid IL or missing references) //IL_155b: Unknown result type (might be due to invalid IL or missing references) //IL_1565: Unknown result type (might be due to invalid IL or missing references) //IL_156a: Unknown result type (might be due to invalid IL or missing references) //IL_1575: Unknown result type (might be due to invalid IL or missing references) //IL_157f: Unknown result type (might be due to invalid IL or missing references) //IL_1584: Unknown result type (might be due to invalid IL or missing references) //IL_158f: Unknown result type (might be due to invalid IL or missing references) //IL_1595: Unknown result type (might be due to invalid IL or missing references) //IL_159a: Unknown result type (might be due to invalid IL or missing references) //IL_15a5: Unknown result type (might be due to invalid IL or missing references) //IL_15b6: Unknown result type (might be due to invalid IL or missing references) //IL_15bb: Unknown result type (might be due to invalid IL or missing references) //IL_15c6: Unknown result type (might be due to invalid IL or missing references) //IL_15d7: Unknown result type (might be due to invalid IL or missing references) //IL_15e1: Unknown result type (might be due to invalid IL or missing references) //IL_15e6: Unknown result type (might be due to invalid IL or missing references) //IL_15f1: Unknown result type (might be due to invalid IL or missing references) //IL_15fb: Unknown result type (might be due to invalid IL or missing references) //IL_1600: Unknown result type (might be due to invalid IL or missing references) //IL_160c: Unknown result type (might be due to invalid IL or missing references) //IL_107a: Unknown result type (might be due to invalid IL or missing references) //IL_1080: Unknown result type (might be due to invalid IL or missing references) //IL_1085: Unknown result type (might be due to invalid IL or missing references) //IL_1090: Unknown result type (might be due to invalid IL or missing references) //IL_10a1: Unknown result type (might be due to invalid IL or missing references) //IL_10ab: Unknown result type (might be due to invalid IL or missing references) //IL_10b0: Unknown result type (might be due to invalid IL or missing references) //IL_10bb: Unknown result type (might be due to invalid IL or missing references) //IL_10c5: Unknown result type (might be due to invalid IL or missing references) //IL_10ca: Unknown result type (might be due to invalid IL or missing references) //IL_10d5: Unknown result type (might be due to invalid IL or missing references) //IL_10db: Unknown result type (might be due to invalid IL or missing references) //IL_10e0: Unknown result type (might be due to invalid IL or missing references) //IL_10eb: Unknown result type (might be due to invalid IL or missing references) //IL_10fc: Unknown result type (might be due to invalid IL or missing references) //IL_1101: Unknown result type (might be due to invalid IL or missing references) //IL_110c: Unknown result type (might be due to invalid IL or missing references) //IL_111d: Unknown result type (might be due to invalid IL or missing references) //IL_1127: Unknown result type (might be due to invalid IL or missing references) //IL_112c: Unknown result type (might be due to invalid IL or missing references) //IL_1137: Unknown result type (might be due to invalid IL or missing references) //IL_1141: Unknown result type (might be due to invalid IL or missing references) //IL_1146: Unknown result type (might be due to invalid IL or missing references) //IL_1152: Unknown result type (might be due to invalid IL or missing references) //IL_1880: Unknown result type (might be due to invalid IL or missing references) //IL_1886: Unknown result type (might be due to invalid IL or missing references) //IL_188b: Unknown result type (might be due to invalid IL or missing references) //IL_1896: Unknown result type (might be due to invalid IL or missing references) //IL_18a7: Unknown result type (might be due to invalid IL or missing references) //IL_18b1: Unknown result type (might be due to invalid IL or missing references) //IL_18b6: Unknown result type (might be due to invalid IL or missing references) //IL_18c1: Unknown result type (might be due to invalid IL or missing references) //IL_18c7: Unknown result type (might be due to invalid IL or missing references) //IL_18cc: Unknown result type (might be due to invalid IL or missing references) //IL_18d7: Unknown result type (might be due to invalid IL or missing references) //IL_18e1: Unknown result type (might be due to invalid IL or missing references) //IL_18f2: Unknown result type (might be due to invalid IL or missing references) //IL_18f7: Unknown result type (might be due to invalid IL or missing references) //IL_1902: Unknown result type (might be due to invalid IL or missing references) //IL_1913: Unknown result type (might be due to invalid IL or missing references) //IL_191d: Unknown result type (might be due to invalid IL or missing references) //IL_1922: Unknown result type (might be due to invalid IL or missing references) //IL_192e: Unknown result type (might be due to invalid IL or missing references) //IL_1626: Unknown result type (might be due to invalid IL or missing references) //IL_162c: Unknown result type (might be due to invalid IL or missing references) //IL_1631: Unknown result type (might be due to invalid IL or missing references) //IL_163c: Unknown result type (might be due to invalid IL or missing references) //IL_164d: Unknown result type (might be due to invalid IL or missing references) //IL_1657: Unknown result type (might be due to invalid IL or missing references) //IL_165c: Unknown result type (might be due to invalid IL or missing references) //IL_1667: Unknown result type (might be due to invalid IL or missing references) //IL_1671: Unknown result type (might be due to invalid IL or missing references) //IL_1676: Unknown result type (might be due to invalid IL or missing references) //IL_1681: Unknown result type (might be due to invalid IL or missing references) //IL_1687: Unknown result type (might be due to invalid IL or missing references) //IL_168c: Unknown result type (might be due to invalid IL or missing references) //IL_1697: Unknown result type (might be due to invalid IL or missing references) //IL_16a8: Unknown result type (might be due to invalid IL or missing references) //IL_16ad: Unknown result type (might be due to invalid IL or missing references) //IL_16b8: Unknown result type (might be due to invalid IL or missing references) //IL_16c9: Unknown result type (might be due to invalid IL or missing references) //IL_16d3: Unknown result type (might be due to invalid IL or missing references) //IL_16d8: Unknown result type (might be due to invalid IL or missing references) //IL_16e3: Unknown result type (might be due to invalid IL or missing references) //IL_16ed: Unknown result type (might be due to invalid IL or missing references) //IL_16f2: Unknown result type (might be due to invalid IL or missing references) //IL_16fe: Unknown result type (might be due to invalid IL or missing references) //IL_1968: Unknown result type (might be due to invalid IL or missing references) //IL_196e: Unknown result type (might be due to invalid IL or missing references) //IL_1973: Unknown result type (might be due to invalid IL or missing references) //IL_197e: Unknown result type (might be due to invalid IL or missing references) //IL_198f: Unknown result type (might be due to invalid IL or missing references) //IL_1999: Unknown result type (might be due to invalid IL or missing references) //IL_199e: Unknown result type (might be due to invalid IL or missing references) //IL_19a9: Unknown result type (might be due to invalid IL or missing references) //IL_19af: Unknown result type (might be due to invalid IL or missing references) //IL_19b4: Unknown result type (might be due to invalid IL or missing references) //IL_19bf: Unknown result type (might be due to invalid IL or missing references) //IL_19c9: Unknown result type (might be due to invalid IL or missing references) //IL_19da: Unknown result type (might be due to invalid IL or missing references) //IL_19df: Unknown result type (might be due to invalid IL or missing references) //IL_19ea: Unknown result type (might be due to invalid IL or missing references) //IL_19fb: Unknown result type (might be due to invalid IL or missing references) //IL_1a05: Unknown result type (might be due to invalid IL or missing references) //IL_1a0a: Unknown result type (might be due to invalid IL or missing references) //IL_1a16: Unknown result type (might be due to invalid IL or missing references) //IL_1d16: Unknown result type (might be due to invalid IL or missing references) //IL_1d1b: Unknown result type (might be due to invalid IL or missing references) //IL_1d29: Unknown result type (might be due to invalid IL or missing references) //IL_1d2e: Unknown result type (might be due to invalid IL or missing references) //IL_1d47: Unknown result type (might be due to invalid IL or missing references) //IL_1d4c: Unknown result type (might be due to invalid IL or missing references) //IL_1d5a: Unknown result type (might be due to invalid IL or missing references) //IL_1d5f: Unknown result type (might be due to invalid IL or missing references) //IL_1d69: Unknown result type (might be due to invalid IL or missing references) //IL_1d6e: Unknown result type (might be due to invalid IL or missing references) //IL_1a50: Unknown result type (might be due to invalid IL or missing references) //IL_1a56: Unknown result type (might be due to invalid IL or missing references) //IL_1a5b: Unknown result type (might be due to invalid IL or missing references) //IL_1a66: Unknown result type (might be due to invalid IL or missing references) //IL_1a77: Unknown result type (might be due to invalid IL or missing references) //IL_1a81: Unknown result type (might be due to invalid IL or missing references) //IL_1a86: Unknown result type (might be due to invalid IL or missing references) //IL_1a91: Unknown result type (might be due to invalid IL or missing references) //IL_1a97: Unknown result type (might be due to invalid IL or missing references) //IL_1a9c: Unknown result type (might be due to invalid IL or missing references) //IL_1aa7: Unknown result type (might be due to invalid IL or missing references) //IL_1ab1: Unknown result type (might be due to invalid IL or missing references) //IL_1ac2: Unknown result type (might be due to invalid IL or missing references) //IL_1ac7: Unknown result type (might be due to invalid IL or missing references) //IL_1ad2: Unknown result type (might be due to invalid IL or missing references) //IL_1ae3: Unknown result type (might be due to invalid IL or missing references) //IL_1aed: Unknown result type (might be due to invalid IL or missing references) //IL_1af2: Unknown result type (might be due to invalid IL or missing references) //IL_1afe: Unknown result type (might be due to invalid IL or missing references) //IL_1b38: Unknown result type (might be due to invalid IL or missing references) //IL_1b3e: Unknown result type (might be due to invalid IL or missing references) //IL_1b43: Unknown result type (might be due to invalid IL or missing references) //IL_1b4e: Unknown result type (might be due to invalid IL or missing references) //IL_1b5f: Unknown result type (might be due to invalid IL or missing references) //IL_1b69: Unknown result type (might be due to invalid IL or missing references) //IL_1b6e: Unknown result type (might be due to invalid IL or missing references) //IL_1b79: Unknown result type (might be due to invalid IL or missing references) //IL_1b7f: Unknown result type (might be due to invalid IL or missing references) //IL_1b84: Unknown result type (might be due to invalid IL or missing references) //IL_1b8f: Unknown result type (might be due to invalid IL or missing references) //IL_1b99: Unknown result type (might be due to invalid IL or missing references) //IL_1baa: Unknown result type (might be due to invalid IL or missing references) //IL_1baf: Unknown result type (might be due to invalid IL or missing references) //IL_1bba: Unknown result type (might be due to invalid IL or missing references) //IL_1bcb: Unknown result type (might be due to invalid IL or missing references) //IL_1bd5: Unknown result type (might be due to invalid IL or missing references) //IL_1bda: Unknown result type (might be due to invalid IL or missing references) //IL_1be6: Unknown result type (might be due to invalid IL or missing references) //IL_1c20: Unknown result type (might be due to invalid IL or missing references) //IL_1c26: Unknown result type (might be due to invalid IL or missing references) //IL_1c2b: Unknown result type (might be due to invalid IL or missing references) //IL_1c36: Unknown result type (might be due to invalid IL or missing references) //IL_1c47: Unknown result type (might be due to invalid IL or missing references) //IL_1c51: Unknown result type (might be due to invalid IL or missing references) //IL_1c56: Unknown result type (might be due to invalid IL or missing references) //IL_1c61: Unknown result type (might be due to invalid IL or missing references) //IL_1c67: Unknown result type (might be due to invalid IL or missing references) //IL_1c6c: Unknown result type (might be due to invalid IL or missing references) //IL_1c77: Unknown result type (might be due to invalid IL or missing references) //IL_1c81: Unknown result type (might be due to invalid IL or missing references) //IL_1c92: Unknown result type (might be due to invalid IL or missing references) //IL_1c97: Unknown result type (might be due to invalid IL or missing references) //IL_1ca2: Unknown result type (might be due to invalid IL or missing references) //IL_1cb3: Unknown result type (might be due to invalid IL or missing references) //IL_1cbd: Unknown result type (might be due to invalid IL or missing references) //IL_1cc2: Unknown result type (might be due to invalid IL or missing references) //IL_1cce: Unknown result type (might be due to invalid IL or missing references) WallScriptEnablingDisabling(); i++; if (i == climbing.Length) { i = 0; } if (!firstTest && !secondTest && !thirdTest && !fourthTest && !fifthTest) { SetClimbingVariables(); } if ((Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2)) { if (!currentlyClimbingWall) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 1f; } firstTest = true; if (currentlyClimbingWall || (!currentlyClimbingWall && !reachedTopPoint && !reachedBottomPoint && ((!reachedLeftPoint && !reachedRightPoint) || !stopAtSides2))) { wallIsClimbable = true; } else if (!currentlyClimbingWall) { wallIsClimbable = false; } climbableWallInFront = true; if (currentlyClimbingWall && ((Component)this).transform.rotation == lastRot2) { finishedRotatingToWall = true; } } else if (!pullingUp) { firstTest = false; wallIsClimbable = false; climbableWallInFront = false; if (((Component)this).transform.rotation == lastRot2 && wallInFront) { if ((Object)(object)animator != (Object)null) { AnimatorStateInfo currentAnimatorStateInfo = animator.GetCurrentAnimatorStateInfo(0); if (((AnimatorStateInfo)(ref currentAnimatorStateInfo)).IsName("Climbing") && !currentlyClimbingWall) { animator.CrossFade("Movement", 0f, -1, 0f); } } currentlyClimbingWall = false; } if (!currentlyClimbingWall) { finishedRotatingToWall = false; } } if ((Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers))) && (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f + ((Component)this).transform.right / 4.25f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f + ((Component)this).transform.right / 4.5f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f + ((Component)this).transform.right / 4.25f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f + ((Component)this).transform.right / 4.5f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f + ((Component)this).transform.right / 4.25f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f + ((Component)this).transform.right / 4.5f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f + ((Component)this).transform.right / 4.25f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f + ((Component)this).transform.right / 4.5f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f + ((Component)this).transform.right / 4.25f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f + ((Component)this).transform.right / 4.5f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f + ((Component)this).transform.right / 4.25f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f + ((Component)this).transform.right / 4.5f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers))) && (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f - ((Component)this).transform.right / 4.25f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f - ((Component)this).transform.right / 4.25f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f - ((Component)this).transform.right / 4.25f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f - ((Component)this).transform.right / 4.25f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f - ((Component)this).transform.right / 4.25f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f - ((Component)this).transform.right / 4.25f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f - ((Component)this).transform.right / 4.25f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f - ((Component)this).transform.right / 4.25f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f - ((Component)this).transform.right / 4.25f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f - ((Component)this).transform.right / 4.25f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f - ((Component)this).transform.right / 4.25f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f - ((Component)this).transform.right / 4.25f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)))) { wallInFront = true; } else { wallInFront = false; } i++; if (i == climbing.Length) { i = 0; } if (!firstTest && !secondTest && !thirdTest && !fourthTest && !fifthTest) { SetClimbingVariables(); } if ((Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * 2f * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * 2f * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * 2f * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * 2f * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * 2f * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * 2f * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2)) { secondTest = true; centerPoint = new Vector3(((RaycastHit)(ref hit)).transform.position.x - ((Component)this).transform.position.x, 0f, ((RaycastHit)(ref hit)).transform.position.z - ((Component)this).transform.position.z); } else { secondTest = false; } } private void ClimbingWall() { //IL_0820: Unknown result type (might be due to invalid IL or missing references) //IL_0825: Unknown result type (might be due to invalid IL or missing references) //IL_0884: Unknown result type (might be due to invalid IL or missing references) //IL_0889: Unknown result type (might be due to invalid IL or missing references) //IL_08c3: Unknown result type (might be due to invalid IL or missing references) //IL_08c8: Unknown result type (might be due to invalid IL or missing references) //IL_08a2: Unknown result type (might be due to invalid IL or missing references) //IL_08a7: Unknown result type (might be due to invalid IL or missing references) //IL_0117: Unknown result type (might be due to invalid IL or missing references) //IL_011c: Unknown result type (might be due to invalid IL or missing references) //IL_0122: Unknown result type (might be due to invalid IL or missing references) //IL_0127: Unknown result type (might be due to invalid IL or missing references) //IL_0150: Unknown result type (might be due to invalid IL or missing references) //IL_0155: Unknown result type (might be due to invalid IL or missing references) //IL_0160: Unknown result type (might be due to invalid IL or missing references) //IL_0165: Unknown result type (might be due to invalid IL or missing references) //IL_0221: Unknown result type (might be due to invalid IL or missing references) //IL_0226: Unknown result type (might be due to invalid IL or missing references) //IL_022c: Unknown result type (might be due to invalid IL or missing references) //IL_0231: Unknown result type (might be due to invalid IL or missing references) //IL_0249: Unknown result type (might be due to invalid IL or missing references) //IL_024e: Unknown result type (might be due to invalid IL or missing references) //IL_0778: Unknown result type (might be due to invalid IL or missing references) //IL_077d: Unknown result type (might be due to invalid IL or missing references) //IL_078d: Unknown result type (might be due to invalid IL or missing references) //IL_0792: Unknown result type (might be due to invalid IL or missing references) //IL_07f8: Unknown result type (might be due to invalid IL or missing references) //IL_07fe: Unknown result type (might be due to invalid IL or missing references) //IL_0808: Unknown result type (might be due to invalid IL or missing references) //IL_080d: Unknown result type (might be due to invalid IL or missing references) //IL_07c0: Unknown result type (might be due to invalid IL or missing references) //IL_07ca: Unknown result type (might be due to invalid IL or missing references) //IL_07cf: Unknown result type (might be due to invalid IL or missing references) //IL_0764: Unknown result type (might be due to invalid IL or missing references) //IL_0769: Unknown result type (might be due to invalid IL or missing references) //IL_0714: Unknown result type (might be due to invalid IL or missing references) //IL_0719: Unknown result type (might be due to invalid IL or missing references) //IL_068a: Unknown result type (might be due to invalid IL or missing references) //IL_068f: Unknown result type (might be due to invalid IL or missing references) //IL_069a: Unknown result type (might be due to invalid IL or missing references) //IL_069f: Unknown result type (might be due to invalid IL or missing references) //IL_0741: Unknown result type (might be due to invalid IL or missing references) //IL_0746: Unknown result type (might be due to invalid IL or missing references) //IL_0751: Unknown result type (might be due to invalid IL or missing references) //IL_0756: Unknown result type (might be due to invalid IL or missing references) //IL_06ac: Unknown result type (might be due to invalid IL or missing references) //IL_06b1: Unknown result type (might be due to invalid IL or missing references) //IL_057c: Unknown result type (might be due to invalid IL or missing references) //IL_0581: Unknown result type (might be due to invalid IL or missing references) //IL_058c: Unknown result type (might be due to invalid IL or missing references) //IL_0591: Unknown result type (might be due to invalid IL or missing references) //IL_044d: Unknown result type (might be due to invalid IL or missing references) //IL_0452: Unknown result type (might be due to invalid IL or missing references) //IL_05b9: Unknown result type (might be due to invalid IL or missing references) //IL_05be: Unknown result type (might be due to invalid IL or missing references) //IL_05d3: Unknown result type (might be due to invalid IL or missing references) //IL_05d8: Unknown result type (might be due to invalid IL or missing references) //IL_05dd: Unknown result type (might be due to invalid IL or missing references) //IL_05e8: Unknown result type (might be due to invalid IL or missing references) //IL_05ed: Unknown result type (might be due to invalid IL or missing references) //IL_0501: Unknown result type (might be due to invalid IL or missing references) //IL_0506: Unknown result type (might be due to invalid IL or missing references) //IL_0511: Unknown result type (might be due to invalid IL or missing references) //IL_0516: Unknown result type (might be due to invalid IL or missing references) if (currentlyClimbingWall && !pullingUp) { if ((Input.GetAxisRaw("Horizontal") > 0f && lastAxis <= 0f) || (Input.GetAxisRaw("Horizontal") < 0f && lastAxis >= 0f)) { switchedDirection = true; } lastAxis = Input.GetAxisRaw("Horizontal"); if (Input.GetAxisRaw("Vertical") >= 0f || (switchedDirection && !downCanBePressed) || !grounded.currentlyGrounded) { downCanBePressed = true; if (Input.GetAxisRaw("Vertical") > 0f || !grounded.currentlyGrounded) { climbedUpAlready = true; } } else if (downCanBePressed && grounded.currentlyGrounded) { if (dropOffAtFloor2) { moveDirection = Vector3.zero; swimDirection = Vector3.zero; swimmingMovementSpeed = 0f; swimmingMovementTransferred = true; jumpedOffClimbableObjectTimer = 0f; jumpedOffClimbableObjectDirection = -((Component)this).transform.forward * distanceToPushOffAfterLettingGo2; inMidAirFromJump = false; inMidAirFromWallJump = false; currentJumpNumber = totalJumpNumber; moveSpeed = 0f; currentlyClimbingWall = false; } else { downCanBePressed = false; climbedUpAlready = false; reachedBottomPoint = true; } } switchedDirection = false; if (Input.GetAxisRaw("Vertical") < 0f && Input.GetAxisRaw("Horizontal") == 0f && (!downCanBePressed || (reachedBottomPoint && (!dropOffAtBottom2 || (grounded.currentlyGrounded && !dropOffAtFloor2))))) { climbDirection = Vector3.zero; swimDirection = Vector3.zero; swimmingMovementSpeed = 0f; swimmingMovementTransferred = true; moveDirection = Vector3.zero; moveSpeed = 0f; } WallClimbingRotation(); CheckIfStuck(); if (moveInBursts) { if (beginClimbBurst) { climbingMovement = Mathf.Lerp(climbingMovement, climbMovementSpeed2, (2f + climbMovementSpeed2) * (climbingMovement / 2f + 1f) / burstLength * Time.deltaTime); } else { climbingMovement = Mathf.Lerp(climbingMovement, 0f, (2f + climbMovementSpeed2) * (climbingMovement / 2f + 1f) / burstLength * Time.deltaTime); } if (climbMovementSpeed2 - climbingMovement < 0.1f) { beginClimbBurst = false; } else if (climbingMovement < 0.1f) { beginClimbBurst = true; } } else { climbingMovement = climbMovementSpeed2; } if (((Vector3)(ref directionVector)).magnitude != 0f) { if (climbHorizontally2 && climbVertically2 && !movement.sideScrolling.lockMovementOnXAxis && !movement.sideScrolling.lockMovementOnZAxis) { if (stopAtSides2 && ((reachedRightPoint && Input.GetAxis("Horizontal") > 0f) || (reachedLeftPoint && Input.GetAxis("Horizontal") < 0f)) && (!downCanBePressed || (reachedTopPoint && Input.GetAxis("Vertical") > 0f) || (reachedBottomPoint && Input.GetAxis("Vertical") < 0f))) { climbDirection = Vector3.zero; } else if (downCanBePressed && stopAtSides2 && ((reachedRightPoint && Input.GetAxis("Horizontal") > 0f) || (reachedLeftPoint && Input.GetAxis("Horizontal") < 0f)) && (!reachedTopPoint || Input.GetAxis("Vertical") <= 0f) && (!reachedBottomPoint || Input.GetAxis("Vertical") >= 0f)) { climbDirection = Input.GetAxis("Vertical") * ((Component)this).transform.up * climbingMovement; } else if (!downCanBePressed || (reachedTopPoint && Input.GetAxis("Vertical") > 0f) || (reachedBottomPoint && Input.GetAxis("Vertical") < 0f)) { climbDirection = Input.GetAxis("Horizontal") * ((Component)this).transform.right * climbingMovement; } else if (downCanBePressed) { climbDirection = (Input.GetAxis("Horizontal") * ((Component)this).transform.right + Input.GetAxis("Vertical") * ((Component)this).transform.up) * climbingMovement; } } else if (climbHorizontally2 && !movement.sideScrolling.lockMovementOnXAxis && !movement.sideScrolling.lockMovementOnZAxis) { if (!stopAtSides2 || ((!reachedRightPoint || Input.GetAxis("Horizontal") < 0f) && (!reachedLeftPoint || Input.GetAxis("Horizontal") > 0f))) { climbDirection = Input.GetAxis("Horizontal") * ((Component)this).transform.right * climbingMovement; } else { climbDirection = Vector3.zero; } } else if (climbVertically2) { if (!downCanBePressed || (reachedTopPoint && Input.GetAxis("Vertical") > 0f) || (reachedBottomPoint && Input.GetAxis("Vertical") < 0f)) { climbDirection = Vector3.zero; } else if (downCanBePressed) { climbDirection = Input.GetAxis("Vertical") * ((Component)this).transform.up * climbingMovement; } } else { climbDirection = Vector3.zero; } } else { climbDirection = Vector3.Slerp(climbDirection, Vector3.zero, 15f * Time.deltaTime); } if (Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled) { characterController.Move(climbDirection * Time.deltaTime); } else if (Object.op_Implicit((Object)(object)rigidBody)) { rigidBody.MovePosition(((Component)this).transform.position + climbDirection * Time.deltaTime); } } else { climbDirection = Vector3.zero; downCanBePressed = false; climbedUpAlready = false; climbingMovement = 0f; beginClimbBurst = true; switchedDirection = false; } if (((Vector3)(ref directionVector)).magnitude != 0f || currentlyOnWall || inMidAirFromWallJump) { float num = ((!(((Component)this).transform.eulerAngles.y > 180f)) ? ((Component)this).transform.eulerAngles.y : (((Component)this).transform.eulerAngles.y - 360f)); if (movement.sideScrolling.lockMovementOnXAxis && !movement.sideScrolling.lockMovementOnZAxis) { if (num >= 90f) { horizontalValue = -1f; swimHorizontalValue = -1f; if (movement.sideScrolling.rotateInwards) { bodyRotation = 180.001f; } else { bodyRotation = 179.999f; } } else { horizontalValue = 1f; swimHorizontalValue = 1f; if (movement.sideScrolling.rotateInwards) { bodyRotation = -0.001f; } else { bodyRotation = 0.001f; } } } else if (movement.sideScrolling.lockMovementOnZAxis && !movement.sideScrolling.lockMovementOnXAxis) { if (num >= 0f) { horizontalValue = 1f; swimHorizontalValue = 1f; if (movement.sideScrolling.rotateInwards) { bodyRotation = 90.001f; } else { bodyRotation = 89.999f; } } else { horizontalValue = -1f; swimHorizontalValue = -1f; if (movement.sideScrolling.rotateInwards) { bodyRotation = -90.001f; } else { bodyRotation = -89.999f; } } } } lastAxis = Input.GetAxisRaw("Horizontal"); } private void JumpOffOfClimb() { //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_003e: Unknown result type (might be due to invalid IL or missing references) //IL_0043: Unknown result type (might be due to invalid IL or missing references) //IL_0083: Unknown result type (might be due to invalid IL or missing references) //IL_0095: Unknown result type (might be due to invalid IL or missing references) //IL_009a: Unknown result type (might be due to invalid IL or missing references) //IL_00a5: Unknown result type (might be due to invalid IL or missing references) //IL_00aa: Unknown result type (might be due to invalid IL or missing references) if ((currentlyClimbingWall || turnBack || back2) && Input.GetButtonDown("Jump")) { moveDirection = Vector3.zero; swimDirection = Vector3.zero; swimmingMovementSpeed = 0f; swimmingMovementTransferred = true; jumpedOffClimbableObjectTimer = 0f; if (turnBack || back2) { ((Component)this).transform.rotation = backRotation; } jumpedOffClimbableObjectDirection = -((Component)this).transform.forward * distanceToPushOffAfterLettingGo2; inMidAirFromJump = false; inMidAirFromWallJump = false; currentJumpNumber = totalJumpNumber; moveSpeed = 0f; turnBack = false; back2 = false; grounded.currentlyGrounded = true; jumpPressed = false; jumpPossible = true; doubleJumpPossible = true; Jump(); currentlyClimbingWall = false; } PushOffWall(); } private void ClimbableObjectEdgeDetection() { //IL_0020: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Unknown result type (might be due to invalid IL or missing references) SnapToCenter(); TurnToGrabLadder(); CheckClimbableEdges(); if (!currentlyClimbingWall) { climbDirection = Vector3.zero; pullUpLocationAcquired = false; movingToPullUpLocation = false; pullingUp = false; } } private void PullingUpClimbableObject() { //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_003c: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Unknown result type (might be due to invalid IL or missing references) //IL_0056: Unknown result type (might be due to invalid IL or missing references) //IL_005b: Unknown result type (might be due to invalid IL or missing references) //IL_0066: Unknown result type (might be due to invalid IL or missing references) //IL_0070: Unknown result type (might be due to invalid IL or missing references) //IL_0075: Unknown result type (might be due to invalid IL or missing references) //IL_007b: Unknown result type (might be due to invalid IL or missing references) //IL_0080: Unknown result type (might be due to invalid IL or missing references) //IL_008b: Unknown result type (might be due to invalid IL or missing references) //IL_0096: Unknown result type (might be due to invalid IL or missing references) //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_00a5: Unknown result type (might be due to invalid IL or missing references) //IL_00b0: Unknown result type (might be due to invalid IL or missing references) //IL_00ba: Unknown result type (might be due to invalid IL or missing references) //IL_00bf: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_00ca: Unknown result type (might be due to invalid IL or missing references) //IL_00d6: Unknown result type (might be due to invalid IL or missing references) //IL_0211: Unknown result type (might be due to invalid IL or missing references) //IL_021c: Unknown result type (might be due to invalid IL or missing references) //IL_0221: Unknown result type (might be due to invalid IL or missing references) //IL_023b: Unknown result type (might be due to invalid IL or missing references) //IL_0240: Unknown result type (might be due to invalid IL or missing references) //IL_0256: Unknown result type (might be due to invalid IL or missing references) //IL_025b: Unknown result type (might be due to invalid IL or missing references) //IL_0264: Unknown result type (might be due to invalid IL or missing references) //IL_0118: Unknown result type (might be due to invalid IL or missing references) //IL_011d: Unknown result type (might be due to invalid IL or missing references) //IL_0136: Unknown result type (might be due to invalid IL or missing references) //IL_013b: Unknown result type (might be due to invalid IL or missing references) //IL_0150: Unknown result type (might be due to invalid IL or missing references) //IL_0155: Unknown result type (might be due to invalid IL or missing references) //IL_015d: Unknown result type (might be due to invalid IL or missing references) //IL_0168: Unknown result type (might be due to invalid IL or missing references) //IL_016d: Unknown result type (might be due to invalid IL or missing references) //IL_0172: Unknown result type (might be due to invalid IL or missing references) //IL_0175: Unknown result type (might be due to invalid IL or missing references) //IL_0180: Unknown result type (might be due to invalid IL or missing references) //IL_0185: Unknown result type (might be due to invalid IL or missing references) //IL_00f2: Unknown result type (might be due to invalid IL or missing references) //IL_00f7: Unknown result type (might be due to invalid IL or missing references) //IL_01ea: Unknown result type (might be due to invalid IL or missing references) //IL_01f0: Unknown result type (might be due to invalid IL or missing references) //IL_01fa: Unknown result type (might be due to invalid IL or missing references) //IL_01ff: Unknown result type (might be due to invalid IL or missing references) //IL_01b2: Unknown result type (might be due to invalid IL or missing references) //IL_01bc: Unknown result type (might be due to invalid IL or missing references) //IL_01c1: Unknown result type (might be due to invalid IL or missing references) //IL_03ba: Unknown result type (might be due to invalid IL or missing references) //IL_03c0: Unknown result type (might be due to invalid IL or missing references) //IL_03cb: Unknown result type (might be due to invalid IL or missing references) //IL_03d5: Unknown result type (might be due to invalid IL or missing references) //IL_03da: Unknown result type (might be due to invalid IL or missing references) //IL_02cc: Unknown result type (might be due to invalid IL or missing references) //IL_02d1: Unknown result type (might be due to invalid IL or missing references) //IL_02df: Unknown result type (might be due to invalid IL or missing references) //IL_02eb: Unknown result type (might be due to invalid IL or missing references) //IL_02f6: Unknown result type (might be due to invalid IL or missing references) //IL_0300: Unknown result type (might be due to invalid IL or missing references) //IL_0305: Unknown result type (might be due to invalid IL or missing references) //IL_0310: Unknown result type (might be due to invalid IL or missing references) //IL_0315: Unknown result type (might be due to invalid IL or missing references) //IL_031a: Unknown result type (might be due to invalid IL or missing references) //IL_031e: Unknown result type (might be due to invalid IL or missing references) //IL_0329: Unknown result type (might be due to invalid IL or missing references) //IL_032e: Unknown result type (might be due to invalid IL or missing references) //IL_0393: Unknown result type (might be due to invalid IL or missing references) //IL_0399: Unknown result type (might be due to invalid IL or missing references) //IL_03a3: Unknown result type (might be due to invalid IL or missing references) //IL_03a8: Unknown result type (might be due to invalid IL or missing references) //IL_035b: Unknown result type (might be due to invalid IL or missing references) //IL_0365: Unknown result type (might be due to invalid IL or missing references) //IL_036a: Unknown result type (might be due to invalid IL or missing references) if (pullingUp) { pullingUpTimer += 0.02f; if (pullUpLocationAcquired) { if (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.up + ((Component)this).transform.forward / 1.25f + ((Component)this).transform.up * 1.5f + pullUpLocationForward2, ((Component)this).transform.position + ((Component)this).transform.up * 0.8f + ((Component)this).transform.forward / 1.75f + pullUpLocationForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers))) { hitPoint = ((RaycastHit)(ref hit)).point; } pullUpLocationAcquired = false; } if (movingToPullUpLocation) { Vector3 val = new Vector3(((Component)this).transform.position.x, hitPoint.y + ((Component)this).transform.up.y / 10f, ((Component)this).transform.position.z) - ((Component)this).transform.position; movementVector = ((Vector3)(ref val)).normalized * pullUpSpeed; if (Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled) { characterController.Move(movementVector * Time.deltaTime); } else if (Object.op_Implicit((Object)(object)rigidBody)) { rigidBody.MovePosition(((Component)this).transform.position + movementVector * Time.deltaTime); } } if (Vector3.Distance(((Component)this).transform.position, new Vector3(((Component)this).transform.position.x, hitPoint.y + ((Component)this).transform.up.y / 10f, ((Component)this).transform.position.z)) <= 0.2f || (pullingUpTimer > Mathf.Abs(pullUpSpeed / 4f) && onWallLastUpdate)) { pullUpLocationAcquired = false; movingToPullUpLocation = false; } if (!movingToPullUpLocation) { ((Component)this).transform.eulerAngles = new Vector3(0f, ((Component)this).transform.eulerAngles.y, 0f); Vector3 val2 = hitPoint + ((Component)this).transform.forward / 10f - ((Component)this).transform.position; movementVector = ((Vector3)(ref val2)).normalized * pullUpSpeed; if (Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled) { characterController.Move(movementVector * Time.deltaTime); } else if (Object.op_Implicit((Object)(object)rigidBody)) { rigidBody.MovePosition(((Component)this).transform.position + movementVector * Time.deltaTime); } } if (Vector3.Distance(((Component)this).transform.position, hitPoint + ((Component)this).transform.forward / 10f) <= 0.2f || (pullingUpTimer > Mathf.Abs(pullUpSpeed / 4f) && onWallLastUpdate)) { movingToPullUpLocation = false; wallIsClimbable = false; currentlyClimbingWall = false; pullingUp = false; } } else { pullingUpTimer = 0f; } } private void AnimatingClimbing() { //IL_0856: Unknown result type (might be due to invalid IL or missing references) //IL_085b: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_00ca: Unknown result type (might be due to invalid IL or missing references) //IL_0210: Unknown result type (might be due to invalid IL or missing references) //IL_0215: Unknown result type (might be due to invalid IL or missing references) if (!((Object)(object)animator != (Object)null)) { return; } if (!pullingUp) { if (currentlyClimbingWall || turnBack || back2) { if (animator.GetFloat("climbState") < 1f) { animator.CrossFade("Climbing", 0f, -1, 0f); animator.SetFloat("climbState", 1f); } goto IL_011a; } if (!grounded.currentlyGrounded || animator.GetFloat("climbState") == 0f) { AnimatorStateInfo currentAnimatorStateInfo = animator.GetCurrentAnimatorStateInfo(0); if (!((AnimatorStateInfo)(ref currentAnimatorStateInfo)).IsName("Climbing")) { goto IL_0104; } } if (!inMidAirFromJump) { animator.CrossFade("Movement", 0f, -1, 0f); } goto IL_0104; } goto IL_0829; IL_0104: animator.SetFloat("climbState", 0f); goto IL_011a; IL_011a: if (currentlyClimbingWall) { if (climbHorizontally2 && !movement.sideScrolling.lockMovementOnXAxis && !movement.sideScrolling.lockMovementOnZAxis) { if (!stopAtSides2 || ((!reachedRightPoint || Input.GetAxis("Horizontal") < 0f) && (!reachedLeftPoint || Input.GetAxis("Horizontal") > 0f))) { animator.SetFloat("climbState", Mathf.Abs(Input.GetAxis("Horizontal")) + 1f); } else { animator.SetFloat("climbState", Mathf.Lerp(animator.GetFloat("climbState"), 1f, 8f * Time.deltaTime)); } } AnimatorStateInfo currentAnimatorStateInfo2 = animator.GetCurrentAnimatorStateInfo(0); if (!((AnimatorStateInfo)(ref currentAnimatorStateInfo2)).IsName("Climbing")) { animator.CrossFade("Climbing", 0f, -1, 0f); } } if (Input.GetAxis("Horizontal") > 0f && currentlyClimbingWall && climbMovementSpeed2 > 0f && (!reachedRightPoint || !stopAtSides2)) { animator.speed = climbMovementSpeed2 / 3f / burstLength / (climbMovementSpeed2 * 2f / (3f + climbMovementSpeed2)); if (horizontalClimbSpeed <= 0f || climbingMovement < 0.1f) { animator.CrossFade("Climbing", 0.5f, -1, 0f); } horizontalClimbSpeed = 1f; } else if (Input.GetAxis("Horizontal") < 0f && currentlyClimbingWall && climbMovementSpeed2 > 0f && (!reachedLeftPoint || !stopAtSides2)) { animator.speed = climbMovementSpeed2 / 3f / burstLength / (climbMovementSpeed2 * 2f / (3f + climbMovementSpeed2)); if (horizontalClimbSpeed >= 0f || climbingMovement < 0.1f) { animator.CrossFade("Climbing", 0.5f, -1, 0f); } horizontalClimbSpeed = -1f; } else { animator.SetFloat("climbSpeedHorizontal", Mathf.Lerp(animator.GetFloat("climbSpeedHorizontal"), 0f, 15f * Time.deltaTime)); } if (Input.GetAxis("Vertical") > 0f && currentlyClimbingWall && climbMovementSpeed2 > 0f && !reachedTopPoint) { animator.speed = climbMovementSpeed2 / 3f / burstLength / (climbMovementSpeed2 * 2f / (3f + climbMovementSpeed2)); if (verticalClimbSpeed <= 0f || climbingMovement < 0.1f) { animator.CrossFade("Climbing", 0.5f, -1, 0f); if (arm == 1f) { arm = 2f; } else { arm = 1f; } } verticalClimbSpeed = 1f; } else if (Input.GetAxis("Vertical") < 0f && currentlyClimbingWall && climbMovementSpeed2 > 0f && downCanBePressed && !reachedBottomPoint) { animator.speed = climbMovementSpeed2 / 3f / burstLength / (climbMovementSpeed2 * 2f / (3f + climbMovementSpeed2)); if (verticalClimbSpeed >= 0f || climbingMovement < 0.1f) { animator.CrossFade("Climbing", 0.5f, -1, 0f); if (arm == 1f) { arm = 2f; } else { arm = 1f; } } verticalClimbSpeed = -1f; } else { animator.SetFloat("climbSpeedVertical", Mathf.Lerp(animator.GetFloat("climbSpeedVertical"), 0f, 15f * Time.deltaTime)); } animator.SetFloat("armToClimbWith", Mathf.Lerp(animator.GetFloat("armToClimbWith"), arm, 15f * Time.deltaTime)); if (currentlyClimbingWall && climbMovementSpeed2 > 0f) { if (Input.GetAxis("Vertical") != 0f && climbVertically2 && climbedUpAlready && (!reachedTopPoint || Input.GetAxis("Vertical") < 0f) && (!reachedBottomPoint || Input.GetAxis("Vertical") > 0f)) { animator.SetFloat("climbSpeedVertical", Mathf.Lerp(animator.GetFloat("climbSpeedVertical"), verticalClimbSpeed, 15f * Time.deltaTime)); } if (Input.GetAxis("Horizontal") != 0f && climbHorizontally2 && !movement.sideScrolling.lockMovementOnXAxis && !movement.sideScrolling.lockMovementOnZAxis && (!stopAtSides2 || ((!reachedRightPoint || Input.GetAxis("Horizontal") < 0f) && (!reachedLeftPoint || Input.GetAxis("Horizontal") > 0f)))) { animator.SetFloat("climbSpeedHorizontal", Mathf.Lerp(animator.GetFloat("climbSpeedHorizontal"), horizontalClimbSpeed, 15f * Time.deltaTime)); } } else { animator.SetFloat("climbSpeedVertical", 0f); animator.SetFloat("climbSpeedHorizontal", 0f); } goto IL_0829; IL_0829: if (pullingUp) { if (animator.GetFloat("climbState") == 0f) { AnimatorStateInfo currentAnimatorStateInfo3 = animator.GetCurrentAnimatorStateInfo(0); if (((AnimatorStateInfo)(ref currentAnimatorStateInfo3)).IsName("Climbing")) { return; } } if (!animatePullingUp) { if (onWallLastUpdate) { animator.speed = Mathf.Abs(pullUpSpeed / 4f); } else { animator.speed = pullUpSpeed / 4f; } animator.SetFloat("climbState", 0f); animator.CrossFade("Climbing", 0f, -1, 0f); animatePullingUp = true; } } else if (animatePullingUp) { animator.speed = 1f; animatePullingUp = false; } } private void RotatePlayer() { //IL_0103: Unknown result type (might be due to invalid IL or missing references) //IL_0108: Unknown result type (might be due to invalid IL or missing references) //IL_0142: Unknown result type (might be due to invalid IL or missing references) //IL_0147: Unknown result type (might be due to invalid IL or missing references) //IL_0121: Unknown result type (might be due to invalid IL or missing references) //IL_0126: Unknown result type (might be due to invalid IL or missing references) //IL_0827: Unknown result type (might be due to invalid IL or missing references) //IL_082c: Unknown result type (might be due to invalid IL or missing references) //IL_083a: Unknown result type (might be due to invalid IL or missing references) //IL_05c1: Unknown result type (might be due to invalid IL or missing references) //IL_05c6: Unknown result type (might be due to invalid IL or missing references) //IL_0668: Unknown result type (might be due to invalid IL or missing references) //IL_067d: Unknown result type (might be due to invalid IL or missing references) //IL_068e: Unknown result type (might be due to invalid IL or missing references) //IL_0619: Unknown result type (might be due to invalid IL or missing references) //IL_062e: Unknown result type (might be due to invalid IL or missing references) //IL_064b: Unknown result type (might be due to invalid IL or missing references) //IL_0735: Unknown result type (might be due to invalid IL or missing references) //IL_074a: Unknown result type (might be due to invalid IL or missing references) //IL_075b: Unknown result type (might be due to invalid IL or missing references) if ((((Vector3)(ref directionVector)).magnitude > 0f || movement.sideScrolling.lockMovementOnXAxis || movement.sideScrolling.lockMovementOnZAxis) && !currentlyClimbingWall && !turnBack && !back2) { float num = Mathf.Atan2(Input.GetAxis("Horizontal"), Input.GetAxis("Vertical")) * 57.29578f; if (!inMidAirFromWallJump && !currentlyOnWall) { if (Input.GetAxis("Horizontal") > 0f) { horizontalValue = 1f; swimHorizontalValue = 1f; } else if (Input.GetAxis("Horizontal") < 0f) { horizontalValue = -1f; swimHorizontalValue = -1f; } } else { float num2 = ((!(((Component)this).transform.eulerAngles.y > 180f)) ? ((Component)this).transform.eulerAngles.y : (((Component)this).transform.eulerAngles.y - 360f)); if (movement.sideScrolling.lockMovementOnXAxis && !movement.sideScrolling.lockMovementOnZAxis) { if (num2 >= 90f) { horizontalValue = -1f; swimHorizontalValue = -1f; if (movement.sideScrolling.rotateInwards) { bodyRotation = 180.001f; } else { bodyRotation = 179.999f; } } else { horizontalValue = 1f; swimHorizontalValue = 1f; if (movement.sideScrolling.rotateInwards) { bodyRotation = -0.001f; } else { bodyRotation = 0.001f; } } } else if (movement.sideScrolling.lockMovementOnZAxis && !movement.sideScrolling.lockMovementOnXAxis) { if (num2 >= 0f) { horizontalValue = 1f; swimHorizontalValue = 1f; if (movement.sideScrolling.rotateInwards) { bodyRotation = 90.001f; } else { bodyRotation = 89.999f; } } else { horizontalValue = -1f; swimHorizontalValue = -1f; if (movement.sideScrolling.rotateInwards) { bodyRotation = -90.001f; } else { bodyRotation = -89.999f; } } } } if (!currentlyOnWall) { if (movement.sideScrolling.lockMovementOnXAxis && !movement.sideScrolling.lockMovementOnZAxis) { if (horizontalValue == 1f) { if (!movement.sideScrolling.flipAxisRotation) { if (movement.sideScrolling.rotateInwards) { bodyRotation = 180.001f; } else { bodyRotation = 179.999f; } } else if (movement.sideScrolling.rotateInwards) { bodyRotation = 360.001f; } else { bodyRotation = 359.999f; } } else if (!movement.sideScrolling.flipAxisRotation) { if (movement.sideScrolling.rotateInwards) { bodyRotation = -0.001f; } else { bodyRotation = 0.001f; } } else if (movement.sideScrolling.rotateInwards) { bodyRotation = 179.999f; } else { bodyRotation = 180.001f; } } else if (movement.sideScrolling.lockMovementOnZAxis && !movement.sideScrolling.lockMovementOnXAxis) { if (horizontalValue == 1f) { if (!movement.sideScrolling.flipAxisRotation) { if (movement.sideScrolling.rotateInwards) { bodyRotation = 90.001f; } else { bodyRotation = 89.999f; } } else if (movement.sideScrolling.rotateInwards) { bodyRotation = 270.001f; } else { bodyRotation = 269.999f; } } else if (!movement.sideScrolling.flipAxisRotation) { if (movement.sideScrolling.rotateInwards) { bodyRotation = -90.001f; } else { bodyRotation = -89.999f; } } else if (movement.sideScrolling.rotateInwards) { bodyRotation = 89.999f; } else { bodyRotation = 90.001f; } } else { bodyRotation = num + playerCamera.eulerAngles.y; } if (inMidAirFromWallJump) { if (!movement.sideScrolling.lockMovementOnZAxis && !movement.sideScrolling.lockMovementOnXAxis) { ((Component)this).transform.rotation = Quaternion.Lerp(((Component)this).transform.rotation, Quaternion.Euler(0f, bodyRotation, 0f), rotationSpeed2 * wallJumping.rotationSpeedMultiple * Time.deltaTime); } else { ((Component)this).transform.rotation = Quaternion.Lerp(((Component)this).transform.rotation, Quaternion.Euler(0f, bodyRotation, 0f), rotationSpeed2 * Time.deltaTime); } } else if ((!movement.firstPerson.walkBackwardsWhenDownKeyIsPressed || Input.GetAxis("Vertical") >= 0f || Input.GetAxis("Horizontal") != 0f || !inFirstPersonMode) && (Object)(object)((Component)playerCamera).transform.parent != (Object)(object)((Component)this).transform && (!movement.firstPerson.onlyRotateWithCamera || !inFirstPersonMode)) { ((Component)this).transform.rotation = Quaternion.Lerp(((Component)this).transform.rotation, Quaternion.Euler(0f, bodyRotation, 0f), rotationSpeed2 * Time.deltaTime); } if (accelerationRate < 1f) { accelerationRate += 0.01f * acceleration2; } else { accelerationRate = 1f; } } } else { accelerationRate = 0f; } if (enabledLastUpdate && movement.firstPerson.onlyRotateWithCamera && !currentlyClimbingWall && !turnBack && !back2 && !currentlyOnWall && inFirstPersonMode) { ((Component)this).transform.eulerAngles = new Vector3(0f, ((Component)playerCamera).transform.eulerAngles.y, 0f); } enabledLastUpdate = true; } private void SettingPlayerSpeed() { if (movement.running.useRunningButton) { if (Input.GetButton(movement.running.runInputButton) || Input.GetAxis(movement.running.runInputButton) != 0f) { runSpeedMultiplier = movement.running.runSpeedMultiple; } else { runSpeedMultiplier = 1f; } } else { runSpeedMultiplier = 1f; } h = Mathf.Lerp(h, (Mathf.Abs(Input.GetAxisRaw("Horizontal")) - Mathf.Abs(Input.GetAxisRaw("Vertical")) + 1f) / 2f, 8f * Time.deltaTime); v = Mathf.Lerp(v, (Mathf.Abs(Input.GetAxisRaw("Vertical")) - Mathf.Abs(Input.GetAxisRaw("Horizontal")) + 1f) / 2f, 8f * Time.deltaTime); if (((Vector3)(ref directionVector)).magnitude != 0f) { if (Input.GetAxis("Vertical") >= 0f) { if (!movement.sideScrolling.lockMovementOnXAxis && !movement.sideScrolling.lockMovementOnZAxis) { if (!crouching) { moveSpeed = Mathf.Lerp(moveSpeed, (h * sideSpeed2 + v * forwardSpeed2) * runSpeedMultiplier, 8f * Time.deltaTime) * ((Vector3)(ref directionVector)).magnitude * accelerationRate; } else { moveSpeed = Mathf.Lerp(moveSpeed, (h * sideSpeed2 + v * forwardSpeed2) * movement.crouching.crouchMovementSpeedMultiple * runSpeedMultiplier, 8f * Time.deltaTime) * ((Vector3)(ref directionVector)).magnitude * accelerationRate; } } else if (!crouching) { moveSpeed = Mathf.Lerp(moveSpeed, Mathf.Abs(Input.GetAxisRaw("Horizontal")) * movement.sideScrolling.movementSpeedIfAxisLocked * runSpeedMultiplier, 8f * Time.deltaTime) * ((Vector3)(ref directionVector)).magnitude * accelerationRate; } else { moveSpeed = Mathf.Lerp(moveSpeed, Mathf.Abs(Input.GetAxisRaw("Horizontal")) * movement.sideScrolling.movementSpeedIfAxisLocked * movement.crouching.crouchMovementSpeedMultiple * runSpeedMultiplier, 8f * Time.deltaTime) * ((Vector3)(ref directionVector)).magnitude * accelerationRate; } } else if (!movement.sideScrolling.lockMovementOnXAxis && !movement.sideScrolling.lockMovementOnZAxis) { if (!crouching) { moveSpeed = Mathf.Lerp(moveSpeed, (h * sideSpeed2 + v * backSpeed2) * runSpeedMultiplier, 8f * Time.deltaTime) * ((Vector3)(ref directionVector)).magnitude * accelerationRate; } else { moveSpeed = Mathf.Lerp(moveSpeed, (h * sideSpeed2 + v * backSpeed2) * movement.crouching.crouchMovementSpeedMultiple * runSpeedMultiplier, 8f * Time.deltaTime) * ((Vector3)(ref directionVector)).magnitude * accelerationRate; } } else if (!crouching) { moveSpeed = Mathf.Lerp(moveSpeed, Mathf.Abs(Input.GetAxisRaw("Horizontal")) * movement.sideScrolling.movementSpeedIfAxisLocked * runSpeedMultiplier, 8f * Time.deltaTime) * ((Vector3)(ref directionVector)).magnitude * accelerationRate; } else { moveSpeed = Mathf.Lerp(moveSpeed, Mathf.Abs(Input.GetAxisRaw("Horizontal")) * movement.sideScrolling.movementSpeedIfAxisLocked * movement.crouching.crouchMovementSpeedMultiple * runSpeedMultiplier, 8f * Time.deltaTime) * ((Vector3)(ref directionVector)).magnitude * accelerationRate; } } if ((Object)(object)animator != (Object)null && (Object)(object)animator.runtimeAnimatorController != (Object)null) { animator.SetFloat("speed", moveSpeed); } decelerationRate += deceleration / 10f; airSpeed = moveSpeed * midAirMovementSpeedMultiple2; if (movement.movementFriction > 0f) { moveSpeedAndFriction = Mathf.Lerp(moveSpeedAndFriction, moveSpeed, 24f / movement.movementFriction * Time.deltaTime); } else { moveSpeedAndFriction = moveSpeed; } } private void DetermineGroundedState() { //IL_0900: Unknown result type (might be due to invalid IL or missing references) //IL_0906: Unknown result type (might be due to invalid IL or missing references) //IL_090b: Unknown result type (might be due to invalid IL or missing references) //IL_0911: Unknown result type (might be due to invalid IL or missing references) //IL_0917: Unknown result type (might be due to invalid IL or missing references) //IL_091c: Unknown result type (might be due to invalid IL or missing references) //IL_0928: Unknown result type (might be due to invalid IL or missing references) //IL_0013: Unknown result type (might be due to invalid IL or missing references) //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_002a: Unknown result type (might be due to invalid IL or missing references) //IL_002f: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_005b: Unknown result type (might be due to invalid IL or missing references) //IL_0060: Unknown result type (might be due to invalid IL or missing references) //IL_0066: Unknown result type (might be due to invalid IL or missing references) //IL_006b: Unknown result type (might be due to invalid IL or missing references) //IL_0071: Unknown result type (might be due to invalid IL or missing references) //IL_007c: Unknown result type (might be due to invalid IL or missing references) //IL_008d: Unknown result type (might be due to invalid IL or missing references) //IL_0092: Unknown result type (might be due to invalid IL or missing references) //IL_0098: Unknown result type (might be due to invalid IL or missing references) //IL_009d: Unknown result type (might be due to invalid IL or missing references) //IL_00a2: Unknown result type (might be due to invalid IL or missing references) //IL_00ad: Unknown result type (might be due to invalid IL or missing references) //IL_00b8: Unknown result type (might be due to invalid IL or missing references) //IL_00c9: Unknown result type (might be due to invalid IL or missing references) //IL_00ce: Unknown result type (might be due to invalid IL or missing references) //IL_00d4: Unknown result type (might be due to invalid IL or missing references) //IL_00d9: Unknown result type (might be due to invalid IL or missing references) //IL_00df: Unknown result type (might be due to invalid IL or missing references) //IL_00ea: Unknown result type (might be due to invalid IL or missing references) //IL_00fb: Unknown result type (might be due to invalid IL or missing references) //IL_0100: Unknown result type (might be due to invalid IL or missing references) //IL_0106: Unknown result type (might be due to invalid IL or missing references) //IL_010b: Unknown result type (might be due to invalid IL or missing references) //IL_0110: Unknown result type (might be due to invalid IL or missing references) //IL_011b: Unknown result type (might be due to invalid IL or missing references) //IL_0126: Unknown result type (might be due to invalid IL or missing references) //IL_0137: Unknown result type (might be due to invalid IL or missing references) //IL_013c: Unknown result type (might be due to invalid IL or missing references) //IL_0142: Unknown result type (might be due to invalid IL or missing references) //IL_0147: Unknown result type (might be due to invalid IL or missing references) //IL_014d: Unknown result type (might be due to invalid IL or missing references) //IL_0158: Unknown result type (might be due to invalid IL or missing references) //IL_0169: Unknown result type (might be due to invalid IL or missing references) //IL_016e: Unknown result type (might be due to invalid IL or missing references) //IL_0174: Unknown result type (might be due to invalid IL or missing references) //IL_0179: Unknown result type (might be due to invalid IL or missing references) //IL_017e: Unknown result type (might be due to invalid IL or missing references) //IL_0189: Unknown result type (might be due to invalid IL or missing references) //IL_0194: Unknown result type (might be due to invalid IL or missing references) //IL_01a5: Unknown result type (might be due to invalid IL or missing references) //IL_01aa: Unknown result type (might be due to invalid IL or missing references) //IL_01b0: Unknown result type (might be due to invalid IL or missing references) //IL_01b5: Unknown result type (might be due to invalid IL or missing references) //IL_01bb: Unknown result type (might be due to invalid IL or missing references) //IL_01c6: Unknown result type (might be due to invalid IL or missing references) //IL_01d7: Unknown result type (might be due to invalid IL or missing references) //IL_01dc: Unknown result type (might be due to invalid IL or missing references) //IL_01e2: Unknown result type (might be due to invalid IL or missing references) //IL_01e7: Unknown result type (might be due to invalid IL or missing references) //IL_01ec: Unknown result type (might be due to invalid IL or missing references) //IL_01f7: Unknown result type (might be due to invalid IL or missing references) //IL_0202: Unknown result type (might be due to invalid IL or missing references) //IL_0213: Unknown result type (might be due to invalid IL or missing references) //IL_0218: Unknown result type (might be due to invalid IL or missing references) //IL_0223: Unknown result type (might be due to invalid IL or missing references) //IL_0234: Unknown result type (might be due to invalid IL or missing references) //IL_0239: Unknown result type (might be due to invalid IL or missing references) //IL_023f: Unknown result type (might be due to invalid IL or missing references) //IL_0244: Unknown result type (might be due to invalid IL or missing references) //IL_024a: Unknown result type (might be due to invalid IL or missing references) //IL_0255: Unknown result type (might be due to invalid IL or missing references) //IL_0266: Unknown result type (might be due to invalid IL or missing references) //IL_026b: Unknown result type (might be due to invalid IL or missing references) //IL_0276: Unknown result type (might be due to invalid IL or missing references) //IL_0287: Unknown result type (might be due to invalid IL or missing references) //IL_028c: Unknown result type (might be due to invalid IL or missing references) //IL_0292: Unknown result type (might be due to invalid IL or missing references) //IL_0297: Unknown result type (might be due to invalid IL or missing references) //IL_029c: Unknown result type (might be due to invalid IL or missing references) //IL_02a7: Unknown result type (might be due to invalid IL or missing references) //IL_02b2: Unknown result type (might be due to invalid IL or missing references) //IL_02c3: Unknown result type (might be due to invalid IL or missing references) //IL_02c8: Unknown result type (might be due to invalid IL or missing references) //IL_02d3: Unknown result type (might be due to invalid IL or missing references) //IL_02e4: Unknown result type (might be due to invalid IL or missing references) //IL_02e9: Unknown result type (might be due to invalid IL or missing references) //IL_02ef: Unknown result type (might be due to invalid IL or missing references) //IL_02f4: Unknown result type (might be due to invalid IL or missing references) //IL_02fa: Unknown result type (might be due to invalid IL or missing references) //IL_0305: Unknown result type (might be due to invalid IL or missing references) //IL_0316: Unknown result type (might be due to invalid IL or missing references) //IL_031b: Unknown result type (might be due to invalid IL or missing references) //IL_0326: Unknown result type (might be due to invalid IL or missing references) //IL_0337: Unknown result type (might be due to invalid IL or missing references) //IL_033c: Unknown result type (might be due to invalid IL or missing references) //IL_0342: Unknown result type (might be due to invalid IL or missing references) //IL_0347: Unknown result type (might be due to invalid IL or missing references) //IL_034c: Unknown result type (might be due to invalid IL or missing references) //IL_0357: Unknown result type (might be due to invalid IL or missing references) //IL_0362: Unknown result type (might be due to invalid IL or missing references) //IL_0373: Unknown result type (might be due to invalid IL or missing references) //IL_0378: Unknown result type (might be due to invalid IL or missing references) //IL_0383: Unknown result type (might be due to invalid IL or missing references) //IL_0394: Unknown result type (might be due to invalid IL or missing references) //IL_0399: Unknown result type (might be due to invalid IL or missing references) //IL_039f: Unknown result type (might be due to invalid IL or missing references) //IL_03a4: Unknown result type (might be due to invalid IL or missing references) //IL_03aa: Unknown result type (might be due to invalid IL or missing references) //IL_03b5: Unknown result type (might be due to invalid IL or missing references) //IL_03c6: Unknown result type (might be due to invalid IL or missing references) //IL_03cb: Unknown result type (might be due to invalid IL or missing references) //IL_03d6: Unknown result type (might be due to invalid IL or missing references) //IL_03e7: Unknown result type (might be due to invalid IL or missing references) //IL_03ec: Unknown result type (might be due to invalid IL or missing references) //IL_03f2: Unknown result type (might be due to invalid IL or missing references) //IL_03f7: Unknown result type (might be due to invalid IL or missing references) //IL_03fc: Unknown result type (might be due to invalid IL or missing references) //IL_0407: Unknown result type (might be due to invalid IL or missing references) //IL_0412: Unknown result type (might be due to invalid IL or missing references) //IL_0423: Unknown result type (might be due to invalid IL or missing references) //IL_0428: Unknown result type (might be due to invalid IL or missing references) //IL_0433: Unknown result type (might be due to invalid IL or missing references) //IL_0444: Unknown result type (might be due to invalid IL or missing references) //IL_0449: Unknown result type (might be due to invalid IL or missing references) //IL_044f: Unknown result type (might be due to invalid IL or missing references) //IL_0454: Unknown result type (might be due to invalid IL or missing references) //IL_045a: Unknown result type (might be due to invalid IL or missing references) //IL_0465: Unknown result type (might be due to invalid IL or missing references) //IL_0476: Unknown result type (might be due to invalid IL or missing references) //IL_047b: Unknown result type (might be due to invalid IL or missing references) //IL_0486: Unknown result type (might be due to invalid IL or missing references) //IL_0497: Unknown result type (might be due to invalid IL or missing references) //IL_049c: Unknown result type (might be due to invalid IL or missing references) //IL_04a2: Unknown result type (might be due to invalid IL or missing references) //IL_04a7: Unknown result type (might be due to invalid IL or missing references) //IL_04ac: Unknown result type (might be due to invalid IL or missing references) //IL_04b7: Unknown result type (might be due to invalid IL or missing references) //IL_04c2: Unknown result type (might be due to invalid IL or missing references) //IL_04cd: Unknown result type (might be due to invalid IL or missing references) //IL_04d2: Unknown result type (might be due to invalid IL or missing references) //IL_04d8: Unknown result type (might be due to invalid IL or missing references) //IL_04dd: Unknown result type (might be due to invalid IL or missing references) //IL_04e3: Unknown result type (might be due to invalid IL or missing references) //IL_04ee: Unknown result type (might be due to invalid IL or missing references) //IL_04f9: Unknown result type (might be due to invalid IL or missing references) //IL_04fe: Unknown result type (might be due to invalid IL or missing references) //IL_0504: Unknown result type (might be due to invalid IL or missing references) //IL_0509: Unknown result type (might be due to invalid IL or missing references) //IL_050e: Unknown result type (might be due to invalid IL or missing references) //IL_0519: Unknown result type (might be due to invalid IL or missing references) //IL_0524: Unknown result type (might be due to invalid IL or missing references) //IL_052f: Unknown result type (might be due to invalid IL or missing references) //IL_0534: Unknown result type (might be due to invalid IL or missing references) //IL_053a: Unknown result type (might be due to invalid IL or missing references) //IL_053f: Unknown result type (might be due to invalid IL or missing references) //IL_0545: Unknown result type (might be due to invalid IL or missing references) //IL_0550: Unknown result type (might be due to invalid IL or missing references) //IL_055b: Unknown result type (might be due to invalid IL or missing references) //IL_0560: Unknown result type (might be due to invalid IL or missing references) //IL_0566: Unknown result type (might be due to invalid IL or missing references) //IL_056b: Unknown result type (might be due to invalid IL or missing references) //IL_0570: Unknown result type (might be due to invalid IL or missing references) //IL_057b: Unknown result type (might be due to invalid IL or missing references) //IL_0586: Unknown result type (might be due to invalid IL or missing references) //IL_0591: Unknown result type (might be due to invalid IL or missing references) //IL_0596: Unknown result type (might be due to invalid IL or missing references) //IL_059c: Unknown result type (might be due to invalid IL or missing references) //IL_05a1: Unknown result type (might be due to invalid IL or missing references) //IL_05a7: Unknown result type (might be due to invalid IL or missing references) //IL_05b2: Unknown result type (might be due to invalid IL or missing references) //IL_05bd: Unknown result type (might be due to invalid IL or missing references) //IL_05c2: Unknown result type (might be due to invalid IL or missing references) //IL_05c8: Unknown result type (might be due to invalid IL or missing references) //IL_05cd: Unknown result type (might be due to invalid IL or missing references) //IL_05d2: Unknown result type (might be due to invalid IL or missing references) //IL_05dd: Unknown result type (might be due to invalid IL or missing references) //IL_05e8: Unknown result type (might be due to invalid IL or missing references) //IL_05f3: Unknown result type (might be due to invalid IL or missing references) //IL_05f8: Unknown result type (might be due to invalid IL or missing references) //IL_05fe: Unknown result type (might be due to invalid IL or missing references) //IL_0603: Unknown result type (might be due to invalid IL or missing references) //IL_0609: Unknown result type (might be due to invalid IL or missing references) //IL_0614: Unknown result type (might be due to invalid IL or missing references) //IL_061f: Unknown result type (might be due to invalid IL or missing references) //IL_0624: Unknown result type (might be due to invalid IL or missing references) //IL_062a: Unknown result type (might be due to invalid IL or missing references) //IL_062f: Unknown result type (might be due to invalid IL or missing references) //IL_0634: Unknown result type (might be due to invalid IL or missing references) //IL_063f: Unknown result type (might be due to invalid IL or missing references) //IL_064a: Unknown result type (might be due to invalid IL or missing references) //IL_065b: Unknown result type (might be due to invalid IL or missing references) //IL_0660: Unknown result type (might be due to invalid IL or missing references) //IL_066b: Unknown result type (might be due to invalid IL or missing references) //IL_067c: Unknown result type (might be due to invalid IL or missing references) //IL_0681: Unknown result type (might be due to invalid IL or missing references) //IL_0687: Unknown result type (might be due to invalid IL or missing references) //IL_068c: Unknown result type (might be due to invalid IL or missing references) //IL_0692: Unknown result type (might be due to invalid IL or missing references) //IL_069d: Unknown result type (might be due to invalid IL or missing references) //IL_06ae: Unknown result type (might be due to invalid IL or missing references) //IL_06b3: Unknown result type (might be due to invalid IL or missing references) //IL_06be: Unknown result type (might be due to invalid IL or missing references) //IL_06cf: Unknown result type (might be due to invalid IL or missing references) //IL_06d4: Unknown result type (might be due to invalid IL or missing references) //IL_06da: Unknown result type (might be due to invalid IL or missing references) //IL_06df: Unknown result type (might be due to invalid IL or missing references) //IL_06e4: Unknown result type (might be due to invalid IL or missing references) //IL_06ef: Unknown result type (might be due to invalid IL or missing references) //IL_06fa: Unknown result type (might be due to invalid IL or missing references) //IL_070b: Unknown result type (might be due to invalid IL or missing references) //IL_0710: Unknown result type (might be due to invalid IL or missing references) //IL_071b: Unknown result type (might be due to invalid IL or missing references) //IL_072c: Unknown result type (might be due to invalid IL or missing references) //IL_0731: Unknown result type (might be due to invalid IL or missing references) //IL_0737: Unknown result type (might be due to invalid IL or missing references) //IL_073c: Unknown result type (might be due to invalid IL or missing references) //IL_0742: Unknown result type (might be due to invalid IL or missing references) //IL_074d: Unknown result type (might be due to invalid IL or missing references) //IL_075e: Unknown result type (might be due to invalid IL or missing references) //IL_0763: Unknown result type (might be due to invalid IL or missing references) //IL_076e: Unknown result type (might be due to invalid IL or missing references) //IL_077f: Unknown result type (might be due to invalid IL or missing references) //IL_0784: Unknown result type (might be due to invalid IL or missing references) //IL_078a: Unknown result type (might be due to invalid IL or missing references) //IL_078f: Unknown result type (might be due to invalid IL or missing references) //IL_0794: Unknown result type (might be due to invalid IL or missing references) //IL_079f: Unknown result type (might be due to invalid IL or missing references) //IL_07aa: Unknown result type (might be due to invalid IL or missing references) //IL_07bb: Unknown result type (might be due to invalid IL or missing references) //IL_07c0: Unknown result type (might be due to invalid IL or missing references) //IL_07cb: Unknown result type (might be due to invalid IL or missing references) //IL_07dc: Unknown result type (might be due to invalid IL or missing references) //IL_07e1: Unknown result type (might be due to invalid IL or missing references) //IL_07e7: Unknown result type (might be due to invalid IL or missing references) //IL_07ec: Unknown result type (might be due to invalid IL or missing references) //IL_07f2: Unknown result type (might be due to invalid IL or missing references) //IL_07fd: Unknown result type (might be due to invalid IL or missing references) //IL_080e: Unknown result type (might be due to invalid IL or missing references) //IL_0813: Unknown result type (might be due to invalid IL or missing references) //IL_081e: Unknown result type (might be due to invalid IL or missing references) //IL_082f: Unknown result type (might be due to invalid IL or missing references) //IL_0834: Unknown result type (might be due to invalid IL or missing references) //IL_083a: Unknown result type (might be due to invalid IL or missing references) //IL_083f: Unknown result type (might be due to invalid IL or missing references) //IL_0844: Unknown result type (might be due to invalid IL or missing references) //IL_084f: Unknown result type (might be due to invalid IL or missing references) //IL_085a: Unknown result type (might be due to invalid IL or missing references) //IL_086b: Unknown result type (might be due to invalid IL or missing references) //IL_0870: Unknown result type (might be due to invalid IL or missing references) //IL_087b: Unknown result type (might be due to invalid IL or missing references) //IL_088c: Unknown result type (might be due to invalid IL or missing references) //IL_0891: Unknown result type (might be due to invalid IL or missing references) //IL_0897: Unknown result type (might be due to invalid IL or missing references) //IL_089c: Unknown result type (might be due to invalid IL or missing references) //IL_08a2: Unknown result type (might be due to invalid IL or missing references) //IL_08ad: Unknown result type (might be due to invalid IL or missing references) //IL_08be: Unknown result type (might be due to invalid IL or missing references) //IL_08c3: Unknown result type (might be due to invalid IL or missing references) //IL_08ce: Unknown result type (might be due to invalid IL or missing references) //IL_08df: Unknown result type (might be due to invalid IL or missing references) //IL_08e4: Unknown result type (might be due to invalid IL or missing references) //IL_08ea: Unknown result type (might be due to invalid IL or missing references) //IL_08ef: Unknown result type (might be due to invalid IL or missing references) //IL_08f4: Unknown result type (might be due to invalid IL or missing references) //IL_093d: Unknown result type (might be due to invalid IL or missing references) //IL_0948: Unknown result type (might be due to invalid IL or missing references) //IL_0959: Unknown result type (might be due to invalid IL or missing references) //IL_095e: Unknown result type (might be due to invalid IL or missing references) //IL_0964: Unknown result type (might be due to invalid IL or missing references) //IL_0969: Unknown result type (might be due to invalid IL or missing references) //IL_096f: Unknown result type (might be due to invalid IL or missing references) //IL_097a: Unknown result type (might be due to invalid IL or missing references) //IL_098b: Unknown result type (might be due to invalid IL or missing references) //IL_0990: Unknown result type (might be due to invalid IL or missing references) //IL_0996: Unknown result type (might be due to invalid IL or missing references) //IL_099b: Unknown result type (might be due to invalid IL or missing references) //IL_09a7: Unknown result type (might be due to invalid IL or missing references) //IL_1319: Unknown result type (might be due to invalid IL or missing references) //IL_131f: Unknown result type (might be due to invalid IL or missing references) //IL_1324: Unknown result type (might be due to invalid IL or missing references) //IL_132a: Unknown result type (might be due to invalid IL or missing references) //IL_1330: Unknown result type (might be due to invalid IL or missing references) //IL_1335: Unknown result type (might be due to invalid IL or missing references) //IL_1341: Unknown result type (might be due to invalid IL or missing references) //IL_09bc: Unknown result type (might be due to invalid IL or missing references) //IL_09c7: Unknown result type (might be due to invalid IL or missing references) //IL_09d8: Unknown result type (might be due to invalid IL or missing references) //IL_09dd: Unknown result type (might be due to invalid IL or missing references) //IL_09e3: Unknown result type (might be due to invalid IL or missing references) //IL_09e8: Unknown result type (might be due to invalid IL or missing references) //IL_09ee: Unknown result type (might be due to invalid IL or missing references) //IL_09f9: Unknown result type (might be due to invalid IL or missing references) //IL_0a0a: Unknown result type (might be due to invalid IL or missing references) //IL_0a0f: Unknown result type (might be due to invalid IL or missing references) //IL_0a15: Unknown result type (might be due to invalid IL or missing references) //IL_0a1a: Unknown result type (might be due to invalid IL or missing references) //IL_0a26: Unknown result type (might be due to invalid IL or missing references) //IL_0a3b: Unknown result type (might be due to invalid IL or missing references) //IL_0a46: Unknown result type (might be due to invalid IL or missing references) //IL_0a57: Unknown result type (might be due to invalid IL or missing references) //IL_0a5c: Unknown result type (might be due to invalid IL or missing references) //IL_0a62: Unknown result type (might be due to invalid IL or missing references) //IL_0a67: Unknown result type (might be due to invalid IL or missing references) //IL_0a6d: Unknown result type (might be due to invalid IL or missing references) //IL_0a78: Unknown result type (might be due to invalid IL or missing references) //IL_0a89: Unknown result type (might be due to invalid IL or missing references) //IL_0a8e: Unknown result type (might be due to invalid IL or missing references) //IL_0a94: Unknown result type (might be due to invalid IL or missing references) //IL_0a99: Unknown result type (might be due to invalid IL or missing references) //IL_0aa5: Unknown result type (might be due to invalid IL or missing references) //IL_1384: Unknown result type (might be due to invalid IL or missing references) //IL_1389: Unknown result type (might be due to invalid IL or missing references) //IL_0aba: Unknown result type (might be due to invalid IL or missing references) //IL_0ac5: Unknown result type (might be due to invalid IL or missing references) //IL_0ad6: Unknown result type (might be due to invalid IL or missing references) //IL_0adb: Unknown result type (might be due to invalid IL or missing references) //IL_0ae1: Unknown result type (might be due to invalid IL or missing references) //IL_0ae6: Unknown result type (might be due to invalid IL or missing references) //IL_0aec: Unknown result type (might be due to invalid IL or missing references) //IL_0af7: Unknown result type (might be due to invalid IL or missing references) //IL_0b08: Unknown result type (might be due to invalid IL or missing references) //IL_0b0d: Unknown result type (might be due to invalid IL or missing references) //IL_0b13: Unknown result type (might be due to invalid IL or missing references) //IL_0b18: Unknown result type (might be due to invalid IL or missing references) //IL_0b24: Unknown result type (might be due to invalid IL or missing references) //IL_0b39: Unknown result type (might be due to invalid IL or missing references) //IL_0b44: Unknown result type (might be due to invalid IL or missing references) //IL_0b55: Unknown result type (might be due to invalid IL or missing references) //IL_0b5a: Unknown result type (might be due to invalid IL or missing references) //IL_0b65: Unknown result type (might be due to invalid IL or missing references) //IL_0b76: Unknown result type (might be due to invalid IL or missing references) //IL_0b7b: Unknown result type (might be due to invalid IL or missing references) //IL_0b81: Unknown result type (might be due to invalid IL or missing references) //IL_0b86: Unknown result type (might be due to invalid IL or missing references) //IL_0b8c: Unknown result type (might be due to invalid IL or missing references) //IL_0b97: Unknown result type (might be due to invalid IL or missing references) //IL_0ba8: Unknown result type (might be due to invalid IL or missing references) //IL_0bad: Unknown result type (might be due to invalid IL or missing references) //IL_0bb8: Unknown result type (might be due to invalid IL or missing references) //IL_0bc9: Unknown result type (might be due to invalid IL or missing references) //IL_0bce: Unknown result type (might be due to invalid IL or missing references) //IL_0bd4: Unknown result type (might be due to invalid IL or missing references) //IL_0bd9: Unknown result type (might be due to invalid IL or missing references) //IL_0be5: Unknown result type (might be due to invalid IL or missing references) //IL_0bfa: Unknown result type (might be due to invalid IL or missing references) //IL_0c05: Unknown result type (might be due to invalid IL or missing references) //IL_0c16: Unknown result type (might be due to invalid IL or missing references) //IL_0c1b: Unknown result type (might be due to invalid IL or missing references) //IL_0c26: Unknown result type (might be due to invalid IL or missing references) //IL_0c37: Unknown result type (might be due to invalid IL or missing references) //IL_0c3c: Unknown result type (might be due to invalid IL or missing references) //IL_0c42: Unknown result type (might be due to invalid IL or missing references) //IL_0c47: Unknown result type (might be due to invalid IL or missing references) //IL_0c4d: Unknown result type (might be due to invalid IL or missing references) //IL_0c58: Unknown result type (might be due to invalid IL or missing references) //IL_0c69: Unknown result type (might be due to invalid IL or missing references) //IL_0c6e: Unknown result type (might be due to invalid IL or missing references) //IL_0c79: Unknown result type (might be due to invalid IL or missing references) //IL_0c8a: Unknown result type (might be due to invalid IL or missing references) //IL_0c8f: Unknown result type (might be due to invalid IL or missing references) //IL_0c95: Unknown result type (might be due to invalid IL or missing references) //IL_0c9a: Unknown result type (might be due to invalid IL or missing references) //IL_0ca6: Unknown result type (might be due to invalid IL or missing references) //IL_0cbb: Unknown result type (might be due to invalid IL or missing references) //IL_0cc6: Unknown result type (might be due to invalid IL or missing references) //IL_0cd7: Unknown result type (might be due to invalid IL or missing references) //IL_0cdc: Unknown result type (might be due to invalid IL or missing references) //IL_0ce7: Unknown result type (might be due to invalid IL or missing references) //IL_0cf8: Unknown result type (might be due to invalid IL or missing references) //IL_0cfd: Unknown result type (might be due to invalid IL or missing references) //IL_0d03: Unknown result type (might be due to invalid IL or missing references) //IL_0d08: Unknown result type (might be due to invalid IL or missing references) //IL_0d0e: Unknown result type (might be due to invalid IL or missing references) //IL_0d19: Unknown result type (might be due to invalid IL or missing references) //IL_0d2a: Unknown result type (might be due to invalid IL or missing references) //IL_0d2f: Unknown result type (might be due to invalid IL or missing references) //IL_0d3a: Unknown result type (might be due to invalid IL or missing references) //IL_0d4b: Unknown result type (might be due to invalid IL or missing references) //IL_0d50: Unknown result type (might be due to invalid IL or missing references) //IL_0d56: Unknown result type (might be due to invalid IL or missing references) //IL_0d5b: Unknown result type (might be due to invalid IL or missing references) //IL_0d67: Unknown result type (might be due to invalid IL or missing references) //IL_0d7c: Unknown result type (might be due to invalid IL or missing references) //IL_0d87: Unknown result type (might be due to invalid IL or missing references) //IL_0d98: Unknown result type (might be due to invalid IL or missing references) //IL_0d9d: Unknown result type (might be due to invalid IL or missing references) //IL_0da8: Unknown result type (might be due to invalid IL or missing references) //IL_0db9: Unknown result type (might be due to invalid IL or missing references) //IL_0dbe: Unknown result type (might be due to invalid IL or missing references) //IL_0dc4: Unknown result type (might be due to invalid IL or missing references) //IL_0dc9: Unknown result type (might be due to invalid IL or missing references) //IL_0dcf: Unknown result type (might be due to invalid IL or missing references) //IL_0dda: Unknown result type (might be due to invalid IL or missing references) //IL_0deb: Unknown result type (might be due to invalid IL or missing references) //IL_0df0: Unknown result type (might be due to invalid IL or missing references) //IL_0dfb: Unknown result type (might be due to invalid IL or missing references) //IL_0e0c: Unknown result type (might be due to invalid IL or missing references) //IL_0e11: Unknown result type (might be due to invalid IL or missing references) //IL_0e17: Unknown result type (might be due to invalid IL or missing references) //IL_0e1c: Unknown result type (might be due to invalid IL or missing references) //IL_0e28: Unknown result type (might be due to invalid IL or missing references) //IL_0e3d: Unknown result type (might be due to invalid IL or missing references) //IL_0e48: Unknown result type (might be due to invalid IL or missing references) //IL_0e53: Unknown result type (might be due to invalid IL or missing references) //IL_0e58: Unknown result type (might be due to invalid IL or missing references) //IL_0e5e: Unknown result type (might be due to invalid IL or missing references) //IL_0e63: Unknown result type (might be due to invalid IL or missing references) //IL_0e69: Unknown result type (might be due to invalid IL or missing references) //IL_0e74: Unknown result type (might be due to invalid IL or missing references) //IL_0e7f: Unknown result type (might be due to invalid IL or missing references) //IL_0e84: Unknown result type (might be due to invalid IL or missing references) //IL_0e8a: Unknown result type (might be due to invalid IL or missing references) //IL_0e8f: Unknown result type (might be due to invalid IL or missing references) //IL_0e9b: Unknown result type (might be due to invalid IL or missing references) //IL_0eb0: Unknown result type (might be due to invalid IL or missing references) //IL_0ebb: Unknown result type (might be due to invalid IL or missing references) //IL_0ec6: Unknown result type (might be due to invalid IL or missing references) //IL_0ecb: Unknown result type (might be due to invalid IL or missing references) //IL_0ed1: Unknown result type (might be due to invalid IL or missing references) //IL_0ed6: Unknown result type (might be due to invalid IL or missing references) //IL_0edc: Unknown result type (might be due to invalid IL or missing references) //IL_0ee7: Unknown result type (might be due to invalid IL or missing references) //IL_0ef2: Unknown result type (might be due to invalid IL or missing references) //IL_0ef7: Unknown result type (might be due to invalid IL or missing references) //IL_0efd: Unknown result type (might be due to invalid IL or missing references) //IL_0f02: Unknown result type (might be due to invalid IL or missing references) //IL_0f0e: Unknown result type (might be due to invalid IL or missing references) //IL_0f23: Unknown result type (might be due to invalid IL or missing references) //IL_0f2e: Unknown result type (might be due to invalid IL or missing references) //IL_0f39: Unknown result type (might be due to invalid IL or missing references) //IL_0f3e: Unknown result type (might be due to invalid IL or missing references) //IL_0f44: Unknown result type (might be due to invalid IL or missing references) //IL_0f49: Unknown result type (might be due to invalid IL or missing references) //IL_0f4f: Unknown result type (might be due to invalid IL or missing references) //IL_0f5a: Unknown result type (might be due to invalid IL or missing references) //IL_0f65: Unknown result type (might be due to invalid IL or missing references) //IL_0f6a: Unknown result type (might be due to invalid IL or missing references) //IL_0f70: Unknown result type (might be due to invalid IL or missing references) //IL_0f75: Unknown result type (might be due to invalid IL or missing references) //IL_0f81: Unknown result type (might be due to invalid IL or missing references) //IL_0f96: Unknown result type (might be due to invalid IL or missing references) //IL_0fa1: Unknown result type (might be due to invalid IL or missing references) //IL_0fac: Unknown result type (might be due to invalid IL or missing references) //IL_0fb1: Unknown result type (might be due to invalid IL or missing references) //IL_0fb7: Unknown result type (might be due to invalid IL or missing references) //IL_0fbc: Unknown result type (might be due to invalid IL or missing references) //IL_0fc2: Unknown result type (might be due to invalid IL or missing references) //IL_0fcd: Unknown result type (might be due to invalid IL or missing references) //IL_0fd8: Unknown result type (might be due to invalid IL or missing references) //IL_0fdd: Unknown result type (might be due to invalid IL or missing references) //IL_0fe3: Unknown result type (might be due to invalid IL or missing references) //IL_0fe8: Unknown result type (might be due to invalid IL or missing references) //IL_0ff4: Unknown result type (might be due to invalid IL or missing references) //IL_1009: Unknown result type (might be due to invalid IL or missing references) //IL_1014: Unknown result type (might be due to invalid IL or missing references) //IL_1025: Unknown result type (might be due to invalid IL or missing references) //IL_102a: Unknown result type (might be due to invalid IL or missing references) //IL_1035: Unknown result type (might be due to invalid IL or missing references) //IL_1046: Unknown result type (might be due to invalid IL or missing references) //IL_104b: Unknown result type (might be due to invalid IL or missing references) //IL_1051: Unknown result type (might be due to invalid IL or missing references) //IL_1056: Unknown result type (might be due to invalid IL or missing references) //IL_105c: Unknown result type (might be due to invalid IL or missing references) //IL_1067: Unknown result type (might be due to invalid IL or missing references) //IL_1078: Unknown result type (might be due to invalid IL or missing references) //IL_107d: Unknown result type (might be due to invalid IL or missing references) //IL_1088: Unknown result type (might be due to invalid IL or missing references) //IL_1099: Unknown result type (might be due to invalid IL or missing references) //IL_109e: Unknown result type (might be due to invalid IL or missing references) //IL_10a4: Unknown result type (might be due to invalid IL or missing references) //IL_10a9: Unknown result type (might be due to invalid IL or missing references) //IL_10b5: Unknown result type (might be due to invalid IL or missing references) //IL_10ca: Unknown result type (might be due to invalid IL or missing references) //IL_10d5: Unknown result type (might be due to invalid IL or missing references) //IL_10e6: Unknown result type (might be due to invalid IL or missing references) //IL_10eb: Unknown result type (might be due to invalid IL or missing references) //IL_10f6: Unknown result type (might be due to invalid IL or missing references) //IL_1107: Unknown result type (might be due to invalid IL or missing references) //IL_110c: Unknown result type (might be due to invalid IL or missing references) //IL_1112: Unknown result type (might be due to invalid IL or missing references) //IL_1117: Unknown result type (might be due to invalid IL or missing references) //IL_111d: Unknown result type (might be due to invalid IL or missing references) //IL_1128: Unknown result type (might be due to invalid IL or missing references) //IL_1139: Unknown result type (might be due to invalid IL or missing references) //IL_113e: Unknown result type (might be due to invalid IL or missing references) //IL_1149: Unknown result type (might be due to invalid IL or missing references) //IL_115a: Unknown result type (might be due to invalid IL or missing references) //IL_115f: Unknown result type (might be due to invalid IL or missing references) //IL_1165: Unknown result type (might be due to invalid IL or missing references) //IL_116a: Unknown result type (might be due to invalid IL or missing references) //IL_1176: Unknown result type (might be due to invalid IL or missing references) //IL_118b: Unknown result type (might be due to invalid IL or missing references) //IL_1196: Unknown result type (might be due to invalid IL or missing references) //IL_11a7: Unknown result type (might be due to invalid IL or missing references) //IL_11ac: Unknown result type (might be due to invalid IL or missing references) //IL_11b7: Unknown result type (might be due to invalid IL or missing references) //IL_11c8: Unknown result type (might be due to invalid IL or missing references) //IL_11cd: Unknown result type (might be due to invalid IL or missing references) //IL_11d3: Unknown result type (might be due to invalid IL or missing references) //IL_11d8: Unknown result type (might be due to invalid IL or missing references) //IL_11de: Unknown result type (might be due to invalid IL or missing references) //IL_11e9: Unknown result type (might be due to invalid IL or missing references) //IL_11fa: Unknown result type (might be due to invalid IL or missing references) //IL_11ff: Unknown result type (might be due to invalid IL or missing references) //IL_120a: Unknown result type (might be due to invalid IL or missing references) //IL_121b: Unknown result type (might be due to invalid IL or missing references) //IL_1220: Unknown result type (might be due to invalid IL or missing references) //IL_1226: Unknown result type (might be due to invalid IL or missing references) //IL_122b: Unknown result type (might be due to invalid IL or missing references) //IL_1237: Unknown result type (might be due to invalid IL or missing references) //IL_124c: Unknown result type (might be due to invalid IL or missing references) //IL_1257: Unknown result type (might be due to invalid IL or missing references) //IL_1268: Unknown result type (might be due to invalid IL or missing references) //IL_126d: Unknown result type (might be due to invalid IL or missing references) //IL_1278: Unknown result type (might be due to invalid IL or missing references) //IL_1289: Unknown result type (might be due to invalid IL or missing references) //IL_128e: Unknown result type (might be due to invalid IL or missing references) //IL_1294: Unknown result type (might be due to invalid IL or missing references) //IL_1299: Unknown result type (might be due to invalid IL or missing references) //IL_129f: Unknown result type (might be due to invalid IL or missing references) //IL_12aa: Unknown result type (might be due to invalid IL or missing references) //IL_12bb: Unknown result type (might be due to invalid IL or missing references) //IL_12c0: Unknown result type (might be due to invalid IL or missing references) //IL_12cb: Unknown result type (might be due to invalid IL or missing references) //IL_12dc: Unknown result type (might be due to invalid IL or missing references) //IL_12e1: Unknown result type (might be due to invalid IL or missing references) //IL_12e7: Unknown result type (might be due to invalid IL or missing references) //IL_12ec: Unknown result type (might be due to invalid IL or missing references) //IL_12f8: Unknown result type (might be due to invalid IL or missing references) if (grounded.showGroundDetectionRays) { Debug.DrawLine(pos + maxGroundedHeight2, pos + maxGroundedDistanceDown, Color.yellow); Debug.DrawLine(pos - ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, pos - ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown, Color.yellow); Debug.DrawLine(pos + ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, pos + ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown, Color.yellow); Debug.DrawLine(pos - ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, pos - ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown, Color.yellow); Debug.DrawLine(pos + ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, pos + ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown, Color.yellow); Debug.DrawLine(pos - ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) - ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, pos - ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) - ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown, Color.yellow); Debug.DrawLine(pos + ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, pos + ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown, Color.yellow); Debug.DrawLine(pos - ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, pos - ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown, Color.yellow); Debug.DrawLine(pos + ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) - ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, pos + ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) - ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown, Color.yellow); Debug.DrawLine(pos - ((Component)this).transform.forward * maxGroundedRadius2 + maxGroundedHeight2, pos - ((Component)this).transform.forward * maxGroundedRadius2 + maxGroundedDistanceDown, Color.yellow); Debug.DrawLine(pos + ((Component)this).transform.forward * maxGroundedRadius2 + maxGroundedHeight2, pos + ((Component)this).transform.forward * maxGroundedRadius2 + maxGroundedDistanceDown, Color.yellow); Debug.DrawLine(pos - ((Component)this).transform.right * maxGroundedRadius2 + maxGroundedHeight2, pos - ((Component)this).transform.right * maxGroundedRadius2 + maxGroundedDistanceDown, Color.yellow); Debug.DrawLine(pos + ((Component)this).transform.right * maxGroundedRadius2 + maxGroundedHeight2, pos + ((Component)this).transform.right * maxGroundedRadius2 + maxGroundedDistanceDown, Color.yellow); Debug.DrawLine(pos - ((Component)this).transform.forward * (maxGroundedRadius2 * 0.75f) - ((Component)this).transform.right * (maxGroundedRadius2 * 0.75f) + maxGroundedHeight2, pos - ((Component)this).transform.forward * (maxGroundedRadius2 * 0.75f) - ((Component)this).transform.right * (maxGroundedRadius2 * 0.75f) + maxGroundedDistanceDown, Color.yellow); Debug.DrawLine(pos + ((Component)this).transform.forward * (maxGroundedRadius2 * 0.75f) + ((Component)this).transform.right * (maxGroundedRadius2 * 0.75f) + maxGroundedHeight2, pos + ((Component)this).transform.forward * (maxGroundedRadius2 * 0.75f) + ((Component)this).transform.right * (maxGroundedRadius2 * 0.75f) + maxGroundedDistanceDown, Color.yellow); Debug.DrawLine(pos - ((Component)this).transform.forward * (maxGroundedRadius2 * 0.75f) + ((Component)this).transform.right * (maxGroundedRadius2 * 0.75f) + maxGroundedHeight2, pos - ((Component)this).transform.forward * (maxGroundedRadius2 * 0.75f) + ((Component)this).transform.right * (maxGroundedRadius2 * 0.75f) + maxGroundedDistanceDown, Color.yellow); Debug.DrawLine(pos + ((Component)this).transform.forward * (maxGroundedRadius2 * 0.75f) - ((Component)this).transform.right * (maxGroundedRadius2 * 0.75f) + maxGroundedHeight2, pos + ((Component)this).transform.forward * (maxGroundedRadius2 * 0.75f) - ((Component)this).transform.right * (maxGroundedRadius2 * 0.75f) + maxGroundedDistanceDown, Color.yellow); } if (Physics.Linecast(pos + maxGroundedHeight2, pos + maxGroundedDistanceDown, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(pos - ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, pos - ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(pos + ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, pos + ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(pos - ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, pos - ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(pos + ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, pos + ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(pos - ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) - ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, pos - ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) - ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(pos + ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, pos + ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(pos - ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, pos - ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(pos + ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) - ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, pos + ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) - ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(pos - ((Component)this).transform.forward * maxGroundedRadius2 + maxGroundedHeight2, pos - ((Component)this).transform.forward * maxGroundedRadius2 + maxGroundedDistanceDown, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(pos + ((Component)this).transform.forward * maxGroundedRadius2 + maxGroundedHeight2, pos + ((Component)this).transform.forward * maxGroundedRadius2 + maxGroundedDistanceDown, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(pos - ((Component)this).transform.right * maxGroundedRadius2 + maxGroundedHeight2, pos - ((Component)this).transform.right * maxGroundedRadius2 + maxGroundedDistanceDown, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(pos + ((Component)this).transform.right * maxGroundedRadius2 + maxGroundedHeight2, pos + ((Component)this).transform.right * maxGroundedRadius2 + maxGroundedDistanceDown, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(pos - ((Component)this).transform.forward * (maxGroundedRadius2 * 0.75f) - ((Component)this).transform.right * (maxGroundedRadius2 * 0.75f) + maxGroundedHeight2, pos - ((Component)this).transform.forward * (maxGroundedRadius2 * 0.75f) - ((Component)this).transform.right * (maxGroundedRadius2 * 0.75f) + maxGroundedDistanceDown, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(pos + ((Component)this).transform.forward * (maxGroundedRadius2 * 0.75f) + ((Component)this).transform.right * (maxGroundedRadius2 * 0.75f) + maxGroundedHeight2, pos + ((Component)this).transform.forward * (maxGroundedRadius2 * 0.75f) + ((Component)this).transform.right * (maxGroundedRadius2 * 0.75f) + maxGroundedDistanceDown, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(pos - ((Component)this).transform.forward * (maxGroundedRadius2 * 0.75f) + ((Component)this).transform.right * (maxGroundedRadius2 * 0.75f) + maxGroundedHeight2, pos - ((Component)this).transform.forward * (maxGroundedRadius2 * 0.75f) + ((Component)this).transform.right * (maxGroundedRadius2 * 0.75f) + maxGroundedDistanceDown, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(pos + ((Component)this).transform.forward * (maxGroundedRadius2 * 0.75f) - ((Component)this).transform.right * (maxGroundedRadius2 * 0.75f) + maxGroundedHeight2, pos + ((Component)this).transform.forward * (maxGroundedRadius2 * 0.75f) - ((Component)this).transform.right * (maxGroundedRadius2 * 0.75f) + maxGroundedDistanceDown, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers))) { if (!colliderInWall && (Physics.Linecast(pos + maxGroundedHeight2, pos + maxGroundedDistanceDown, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || sliding || !Object.op_Implicit((Object)(object)rigidBody))) { if (!angHit) { raycastSlopeAngle = Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f; } grounded.currentlyGrounded = true; } else { grounded.currentlyGrounded = false; } } else { grounded.currentlyGrounded = false; } } private void GettingGroundAndSlopeAngles() { //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0040: Unknown result type (might be due to invalid IL or missing references) //IL_0045: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_0080: Unknown result type (might be due to invalid IL or missing references) //IL_0085: Unknown result type (might be due to invalid IL or missing references) //IL_0097: Unknown result type (might be due to invalid IL or missing references) //IL_0686: Unknown result type (might be due to invalid IL or missing references) //IL_068b: Unknown result type (might be due to invalid IL or missing references) //IL_0690: Unknown result type (might be due to invalid IL or missing references) //IL_0695: Unknown result type (might be due to invalid IL or missing references) //IL_06a6: Unknown result type (might be due to invalid IL or missing references) //IL_00b4: Unknown result type (might be due to invalid IL or missing references) //IL_00bf: Unknown result type (might be due to invalid IL or missing references) //IL_00c9: Unknown result type (might be due to invalid IL or missing references) //IL_00ce: Unknown result type (might be due to invalid IL or missing references) //IL_00d3: Unknown result type (might be due to invalid IL or missing references) //IL_00e1: Unknown result type (might be due to invalid IL or missing references) //IL_074f: Unknown result type (might be due to invalid IL or missing references) //IL_0754: Unknown result type (might be due to invalid IL or missing references) //IL_0765: Unknown result type (might be due to invalid IL or missing references) //IL_0152: Unknown result type (might be due to invalid IL or missing references) //IL_015d: Unknown result type (might be due to invalid IL or missing references) //IL_0167: Unknown result type (might be due to invalid IL or missing references) //IL_016c: Unknown result type (might be due to invalid IL or missing references) //IL_0171: Unknown result type (might be due to invalid IL or missing references) //IL_017f: Unknown result type (might be due to invalid IL or missing references) //IL_00f7: Unknown result type (might be due to invalid IL or missing references) //IL_00fc: Unknown result type (might be due to invalid IL or missing references) //IL_0124: Unknown result type (might be due to invalid IL or missing references) //IL_0129: Unknown result type (might be due to invalid IL or missing references) //IL_01f1: Unknown result type (might be due to invalid IL or missing references) //IL_01fc: Unknown result type (might be due to invalid IL or missing references) //IL_0206: Unknown result type (might be due to invalid IL or missing references) //IL_020b: Unknown result type (might be due to invalid IL or missing references) //IL_0210: Unknown result type (might be due to invalid IL or missing references) //IL_021e: Unknown result type (might be due to invalid IL or missing references) //IL_0195: Unknown result type (might be due to invalid IL or missing references) //IL_019a: Unknown result type (might be due to invalid IL or missing references) //IL_01c3: Unknown result type (might be due to invalid IL or missing references) //IL_01c8: Unknown result type (might be due to invalid IL or missing references) //IL_0616: Unknown result type (might be due to invalid IL or missing references) //IL_061b: Unknown result type (might be due to invalid IL or missing references) //IL_07d8: Unknown result type (might be due to invalid IL or missing references) //IL_07e3: Unknown result type (might be due to invalid IL or missing references) //IL_07ed: Unknown result type (might be due to invalid IL or missing references) //IL_07f2: Unknown result type (might be due to invalid IL or missing references) //IL_07fd: Unknown result type (might be due to invalid IL or missing references) //IL_0802: Unknown result type (might be due to invalid IL or missing references) //IL_0807: Unknown result type (might be due to invalid IL or missing references) //IL_0818: Unknown result type (might be due to invalid IL or missing references) //IL_0794: Unknown result type (might be due to invalid IL or missing references) //IL_0799: Unknown result type (might be due to invalid IL or missing references) //IL_0290: Unknown result type (might be due to invalid IL or missing references) //IL_029b: Unknown result type (might be due to invalid IL or missing references) //IL_02a5: Unknown result type (might be due to invalid IL or missing references) //IL_02aa: Unknown result type (might be due to invalid IL or missing references) //IL_02af: Unknown result type (might be due to invalid IL or missing references) //IL_02bd: Unknown result type (might be due to invalid IL or missing references) //IL_0234: Unknown result type (might be due to invalid IL or missing references) //IL_0239: Unknown result type (might be due to invalid IL or missing references) //IL_0262: Unknown result type (might be due to invalid IL or missing references) //IL_0267: Unknown result type (might be due to invalid IL or missing references) //IL_08cd: Unknown result type (might be due to invalid IL or missing references) //IL_08d8: Unknown result type (might be due to invalid IL or missing references) //IL_08e2: Unknown result type (might be due to invalid IL or missing references) //IL_08e7: Unknown result type (might be due to invalid IL or missing references) //IL_08f2: Unknown result type (might be due to invalid IL or missing references) //IL_08f7: Unknown result type (might be due to invalid IL or missing references) //IL_08fc: Unknown result type (might be due to invalid IL or missing references) //IL_090d: Unknown result type (might be due to invalid IL or missing references) //IL_082d: Unknown result type (might be due to invalid IL or missing references) //IL_0838: Unknown result type (might be due to invalid IL or missing references) //IL_0842: Unknown result type (might be due to invalid IL or missing references) //IL_0847: Unknown result type (might be due to invalid IL or missing references) //IL_0852: Unknown result type (might be due to invalid IL or missing references) //IL_0857: Unknown result type (might be due to invalid IL or missing references) //IL_085c: Unknown result type (might be due to invalid IL or missing references) //IL_086d: Unknown result type (might be due to invalid IL or missing references) //IL_032f: Unknown result type (might be due to invalid IL or missing references) //IL_033a: Unknown result type (might be due to invalid IL or missing references) //IL_0344: Unknown result type (might be due to invalid IL or missing references) //IL_0349: Unknown result type (might be due to invalid IL or missing references) //IL_0354: Unknown result type (might be due to invalid IL or missing references) //IL_035e: Unknown result type (might be due to invalid IL or missing references) //IL_0363: Unknown result type (might be due to invalid IL or missing references) //IL_0368: Unknown result type (might be due to invalid IL or missing references) //IL_0376: Unknown result type (might be due to invalid IL or missing references) //IL_02d3: Unknown result type (might be due to invalid IL or missing references) //IL_02d8: Unknown result type (might be due to invalid IL or missing references) //IL_0301: Unknown result type (might be due to invalid IL or missing references) //IL_0306: Unknown result type (might be due to invalid IL or missing references) //IL_0888: Unknown result type (might be due to invalid IL or missing references) //IL_088d: Unknown result type (might be due to invalid IL or missing references) //IL_089c: Unknown result type (might be due to invalid IL or missing references) //IL_08a1: Unknown result type (might be due to invalid IL or missing references) //IL_03e8: Unknown result type (might be due to invalid IL or missing references) //IL_03f3: Unknown result type (might be due to invalid IL or missing references) //IL_03fd: Unknown result type (might be due to invalid IL or missing references) //IL_0402: Unknown result type (might be due to invalid IL or missing references) //IL_040d: Unknown result type (might be due to invalid IL or missing references) //IL_0417: Unknown result type (might be due to invalid IL or missing references) //IL_041c: Unknown result type (might be due to invalid IL or missing references) //IL_0421: Unknown result type (might be due to invalid IL or missing references) //IL_042f: Unknown result type (might be due to invalid IL or missing references) //IL_038c: Unknown result type (might be due to invalid IL or missing references) //IL_0391: Unknown result type (might be due to invalid IL or missing references) //IL_03ba: Unknown result type (might be due to invalid IL or missing references) //IL_03bf: Unknown result type (might be due to invalid IL or missing references) //IL_0719: Unknown result type (might be due to invalid IL or missing references) //IL_071e: Unknown result type (might be due to invalid IL or missing references) //IL_04a1: Unknown result type (might be due to invalid IL or missing references) //IL_04ac: Unknown result type (might be due to invalid IL or missing references) //IL_04b6: Unknown result type (might be due to invalid IL or missing references) //IL_04bb: Unknown result type (might be due to invalid IL or missing references) //IL_04c6: Unknown result type (might be due to invalid IL or missing references) //IL_04d0: Unknown result type (might be due to invalid IL or missing references) //IL_04d5: Unknown result type (might be due to invalid IL or missing references) //IL_04da: Unknown result type (might be due to invalid IL or missing references) //IL_04e8: Unknown result type (might be due to invalid IL or missing references) //IL_0445: Unknown result type (might be due to invalid IL or missing references) //IL_044a: Unknown result type (might be due to invalid IL or missing references) //IL_0473: Unknown result type (might be due to invalid IL or missing references) //IL_0478: Unknown result type (might be due to invalid IL or missing references) //IL_055a: Unknown result type (might be due to invalid IL or missing references) //IL_0565: Unknown result type (might be due to invalid IL or missing references) //IL_056f: Unknown result type (might be due to invalid IL or missing references) //IL_0574: Unknown result type (might be due to invalid IL or missing references) //IL_057f: Unknown result type (might be due to invalid IL or missing references) //IL_0589: Unknown result type (might be due to invalid IL or missing references) //IL_058e: Unknown result type (might be due to invalid IL or missing references) //IL_0593: Unknown result type (might be due to invalid IL or missing references) //IL_05a1: Unknown result type (might be due to invalid IL or missing references) //IL_04fe: Unknown result type (might be due to invalid IL or missing references) //IL_0503: Unknown result type (might be due to invalid IL or missing references) //IL_052c: Unknown result type (might be due to invalid IL or missing references) //IL_0531: Unknown result type (might be due to invalid IL or missing references) //IL_0651: Unknown result type (might be due to invalid IL or missing references) //IL_0656: Unknown result type (might be due to invalid IL or missing references) //IL_05b7: Unknown result type (might be due to invalid IL or missing references) //IL_05bc: Unknown result type (might be due to invalid IL or missing references) //IL_05e5: Unknown result type (might be due to invalid IL or missing references) //IL_05ea: Unknown result type (might be due to invalid IL or missing references) float num = 0f; if (Physics.Raycast(pos, Vector3.down, ref hit, 1f, LayerMask.op_Implicit(noWaterCollisionLayers))) { angHit = true; num = Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f; } else { angHit = false; } RaycastHit val = default(RaycastHit); if (Physics.Raycast(pos, Vector3.down, ref hit, maxGroundedDistance2, LayerMask.op_Implicit(noWaterCollisionLayers))) { slidePossible = true; if ((Physics.Raycast(pos + ((Component)this).transform.forward / 10f, Vector3.down, ref val, maxGroundedDistance2, LayerMask.op_Implicit(noWaterCollisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref val)).normal.y, -1f, 1f)) * 57.2958f > Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f) || (Physics.Raycast(pos - ((Component)this).transform.forward / 10f, Vector3.down, ref val, maxGroundedDistance2, LayerMask.op_Implicit(noWaterCollisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref val)).normal.y, -1f, 1f)) * 57.2958f > Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f) || (Physics.Raycast(pos + ((Component)this).transform.right / 10f, Vector3.down, ref val, maxGroundedDistance2, LayerMask.op_Implicit(noWaterCollisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref val)).normal.y, -1f, 1f)) * 57.2958f > Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f) || (Physics.Raycast(pos - ((Component)this).transform.right / 10f, Vector3.down, ref val, maxGroundedDistance2, LayerMask.op_Implicit(noWaterCollisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref val)).normal.y, -1f, 1f)) * 57.2958f > Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f) || (Physics.Raycast(pos + ((Component)this).transform.forward / 10f + ((Component)this).transform.right / 10f, Vector3.down, ref val, maxGroundedDistance2, LayerMask.op_Implicit(noWaterCollisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref val)).normal.y, -1f, 1f)) * 57.2958f > Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f) || (Physics.Raycast(pos + ((Component)this).transform.forward / 10f - ((Component)this).transform.right / 10f, Vector3.down, ref val, maxGroundedDistance2, LayerMask.op_Implicit(noWaterCollisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref val)).normal.y, -1f, 1f)) * 57.2958f > Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f) || (Physics.Raycast(pos - ((Component)this).transform.forward / 10f + ((Component)this).transform.right / 10f, Vector3.down, ref val, maxGroundedDistance2, LayerMask.op_Implicit(noWaterCollisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref val)).normal.y, -1f, 1f)) * 57.2958f > Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f) || (Physics.Raycast(pos - ((Component)this).transform.forward / 10f - ((Component)this).transform.right / 10f, Vector3.down, ref val, maxGroundedDistance2, LayerMask.op_Implicit(noWaterCollisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref val)).normal.y, -1f, 1f)) * 57.2958f > Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f)) { raycastSlopeAngle = Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref val)).normal.y, -1f, 1f)) * 57.2958f; } else { raycastSlopeAngle = Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f; } } else if (Physics.Raycast(contactPoint + Vector3.up, Vector3.down, ref hit, 5f, LayerMask.op_Implicit(noWaterCollisionLayers)) && collisionSlopeAngle < 90f && collisionSlopeAngle > slopeLimit) { if ((angHit && num > slopeLimit) || !angHit) { slidePossible = true; if (angHit) { raycastSlopeAngle = Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f; } } } else if (Physics.Raycast(pos, Vector3.down, ref hit, 1f, LayerMask.op_Implicit(noWaterCollisionLayers))) { slidePossible = true; if (angHit) { raycastSlopeAngle = Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f; } } else { slidePossible = false; } CheckIfInBetweenSlopes(); if (Physics.Raycast(pos + ((Component)this).transform.forward / 2f + ((Component)this).transform.up, Vector3.down, ref frontHit, 5f, LayerMask.op_Implicit(noWaterCollisionLayers)) && Physics.Raycast(pos - ((Component)this).transform.forward / 2f + ((Component)this).transform.up, Vector3.down, ref backHit, 5f, LayerMask.op_Implicit(noWaterCollisionLayers))) { if (((RaycastHit)(ref frontHit)).point.y >= ((RaycastHit)(ref backHit)).point.y) { uphill = true; } else { uphill = false; } } else if (Physics.Raycast(pos + ((Component)this).transform.forward / 2f + ((Component)this).transform.up, Vector3.down, ref frontHit, 5f, LayerMask.op_Implicit(noWaterCollisionLayers))) { uphill = true; } else { uphill = false; } } private void GettingMovementDirection() { //IL_0581: Unknown result type (might be due to invalid IL or missing references) //IL_0586: Unknown result type (might be due to invalid IL or missing references) //IL_0022: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_009f: Unknown result type (might be due to invalid IL or missing references) //IL_00a4: Unknown result type (might be due to invalid IL or missing references) //IL_006e: Unknown result type (might be due to invalid IL or missing references) //IL_0073: Unknown result type (might be due to invalid IL or missing references) //IL_00b0: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) //IL_00c9: Unknown result type (might be due to invalid IL or missing references) //IL_00ce: Unknown result type (might be due to invalid IL or missing references) //IL_00d6: Unknown result type (might be due to invalid IL or missing references) //IL_00db: Unknown result type (might be due to invalid IL or missing references) //IL_00e0: Unknown result type (might be due to invalid IL or missing references) //IL_00e5: Unknown result type (might be due to invalid IL or missing references) //IL_0706: Unknown result type (might be due to invalid IL or missing references) //IL_070b: Unknown result type (might be due to invalid IL or missing references) //IL_0726: Unknown result type (might be due to invalid IL or missing references) //IL_072b: Unknown result type (might be due to invalid IL or missing references) //IL_0735: Unknown result type (might be due to invalid IL or missing references) //IL_073a: Unknown result type (might be due to invalid IL or missing references) //IL_0632: Unknown result type (might be due to invalid IL or missing references) //IL_0637: Unknown result type (might be due to invalid IL or missing references) //IL_0651: Unknown result type (might be due to invalid IL or missing references) //IL_0656: Unknown result type (might be due to invalid IL or missing references) //IL_065f: Unknown result type (might be due to invalid IL or missing references) //IL_0664: Unknown result type (might be due to invalid IL or missing references) //IL_0757: Unknown result type (might be due to invalid IL or missing references) //IL_075c: Unknown result type (might be due to invalid IL or missing references) //IL_0761: Unknown result type (might be due to invalid IL or missing references) //IL_0766: Unknown result type (might be due to invalid IL or missing references) //IL_078a: Unknown result type (might be due to invalid IL or missing references) //IL_078f: Unknown result type (might be due to invalid IL or missing references) //IL_0794: Unknown result type (might be due to invalid IL or missing references) //IL_0799: Unknown result type (might be due to invalid IL or missing references) //IL_07a2: Unknown result type (might be due to invalid IL or missing references) //IL_07a7: Unknown result type (might be due to invalid IL or missing references) //IL_0681: Unknown result type (might be due to invalid IL or missing references) //IL_0686: Unknown result type (might be due to invalid IL or missing references) //IL_068b: Unknown result type (might be due to invalid IL or missing references) //IL_0690: Unknown result type (might be due to invalid IL or missing references) //IL_06b4: Unknown result type (might be due to invalid IL or missing references) //IL_06b9: Unknown result type (might be due to invalid IL or missing references) //IL_06be: Unknown result type (might be due to invalid IL or missing references) //IL_06c3: Unknown result type (might be due to invalid IL or missing references) //IL_06cc: Unknown result type (might be due to invalid IL or missing references) //IL_06d1: Unknown result type (might be due to invalid IL or missing references) //IL_025b: Unknown result type (might be due to invalid IL or missing references) //IL_0260: Unknown result type (might be due to invalid IL or missing references) //IL_01a0: Unknown result type (might be due to invalid IL or missing references) //IL_01a5: Unknown result type (might be due to invalid IL or missing references) //IL_0456: Unknown result type (might be due to invalid IL or missing references) //IL_045b: Unknown result type (might be due to invalid IL or missing references) //IL_039a: Unknown result type (might be due to invalid IL or missing references) //IL_039f: Unknown result type (might be due to invalid IL or missing references) //IL_027d: Unknown result type (might be due to invalid IL or missing references) //IL_0282: Unknown result type (might be due to invalid IL or missing references) //IL_0287: Unknown result type (might be due to invalid IL or missing references) //IL_028c: Unknown result type (might be due to invalid IL or missing references) //IL_02b0: Unknown result type (might be due to invalid IL or missing references) //IL_02b5: Unknown result type (might be due to invalid IL or missing references) //IL_02ba: Unknown result type (might be due to invalid IL or missing references) //IL_02bf: Unknown result type (might be due to invalid IL or missing references) //IL_02c8: Unknown result type (might be due to invalid IL or missing references) //IL_02cd: Unknown result type (might be due to invalid IL or missing references) //IL_01c2: Unknown result type (might be due to invalid IL or missing references) //IL_01c7: Unknown result type (might be due to invalid IL or missing references) //IL_01cc: Unknown result type (might be due to invalid IL or missing references) //IL_01d1: Unknown result type (might be due to invalid IL or missing references) //IL_01f4: Unknown result type (might be due to invalid IL or missing references) //IL_01f9: Unknown result type (might be due to invalid IL or missing references) //IL_01fe: Unknown result type (might be due to invalid IL or missing references) //IL_0203: Unknown result type (might be due to invalid IL or missing references) //IL_020c: Unknown result type (might be due to invalid IL or missing references) //IL_0211: Unknown result type (might be due to invalid IL or missing references) //IL_0478: Unknown result type (might be due to invalid IL or missing references) //IL_047d: Unknown result type (might be due to invalid IL or missing references) //IL_0482: Unknown result type (might be due to invalid IL or missing references) //IL_0487: Unknown result type (might be due to invalid IL or missing references) //IL_04ab: Unknown result type (might be due to invalid IL or missing references) //IL_04b0: Unknown result type (might be due to invalid IL or missing references) //IL_04b5: Unknown result type (might be due to invalid IL or missing references) //IL_04ba: Unknown result type (might be due to invalid IL or missing references) //IL_04c3: Unknown result type (might be due to invalid IL or missing references) //IL_04c8: Unknown result type (might be due to invalid IL or missing references) //IL_03bc: Unknown result type (might be due to invalid IL or missing references) //IL_03c1: Unknown result type (might be due to invalid IL or missing references) //IL_03c6: Unknown result type (might be due to invalid IL or missing references) //IL_03cb: Unknown result type (might be due to invalid IL or missing references) //IL_03ef: Unknown result type (might be due to invalid IL or missing references) //IL_03f4: Unknown result type (might be due to invalid IL or missing references) //IL_03f9: Unknown result type (might be due to invalid IL or missing references) //IL_03fe: Unknown result type (might be due to invalid IL or missing references) //IL_0407: Unknown result type (might be due to invalid IL or missing references) //IL_040c: Unknown result type (might be due to invalid IL or missing references) if (grounded.currentlyGrounded && (noCollisionTimer < 5f || Physics.Raycast(pos, Vector3.down, maxGroundedDistance2, LayerMask.op_Implicit(noWaterCollisionLayers)))) { if (!jumpPerformed) { moveDirection = new Vector3(Input.GetAxis("Horizontal"), 0f, Input.GetAxis("Vertical")); } else { moveDirection = new Vector3(Input.GetAxis("Horizontal"), moveDirection.y, Input.GetAxis("Vertical")); } Vector3 val = Quaternion.Euler(((Component)this).transform.eulerAngles.x, bodyRotation, ((Component)this).transform.eulerAngles.z) * Vector3.forward; if (((Vector3)(ref directionVector)).magnitude != 0f) { if ((!movement.firstPerson.walkBackwardsWhenDownKeyIsPressed || Input.GetAxis("Vertical") >= 0f || Input.GetAxis("Horizontal") != 0f || !inFirstPersonMode) && (Object)(object)((Component)playerCamera).transform.parent != (Object)(object)((Component)this).transform) { if (!movement.firstPerson.onlyRotateWithCamera || !inFirstPersonMode) { moveDirection = new Vector3(val.x, moveDirection.y, val.z); } else { moveDirection = new Vector3((Quaternion.Euler(0f, bodyRotation, 0f) * Vector3.forward).x, moveDirection.y, (Quaternion.Euler(0f, bodyRotation, 0f) * Vector3.forward).z); } } else if (!movement.firstPerson.onlyRotateWithCamera || !inFirstPersonMode) { moveDirection = new Vector3(0f - val.x, moveDirection.y, 0f - val.z); } else { moveDirection = new Vector3((Quaternion.Euler(0f, bodyRotation, 0f) * Vector3.forward).x, moveDirection.y, (Quaternion.Euler(0f, bodyRotation, 0f) * Vector3.forward).z); } decelerationRate = 0f; } if (((Vector3)(ref directionVector)).magnitude == 0f) { if ((!movement.firstPerson.walkBackwardsWhenDownKeyIsPressed || Input.GetAxis("Vertical") >= 0f || Input.GetAxis("Horizontal") != 0f || !inFirstPersonMode) && (Object)(object)((Component)playerCamera).transform.parent != (Object)(object)((Component)this).transform) { if (!movement.firstPerson.onlyRotateWithCamera || !inFirstPersonMode) { moveDirection = new Vector3(val.x, moveDirection.y, val.z); } else { moveDirection = new Vector3((Quaternion.Euler(0f, bodyRotation, 0f) * Vector3.forward).x, moveDirection.y, (Quaternion.Euler(0f, bodyRotation, 0f) * Vector3.forward).z); } } else if (!movement.firstPerson.onlyRotateWithCamera || !inFirstPersonMode) { moveDirection = new Vector3(0f - val.x, moveDirection.y, 0f - val.z); } else { moveDirection = new Vector3((Quaternion.Euler(0f, bodyRotation, 0f) * Vector3.forward).x, moveDirection.y, (Quaternion.Euler(0f, bodyRotation, 0f) * Vector3.forward).z); } if (moveSpeed > 0f) { moveSpeed -= decelerationRate * moveSpeed; } if (moveSpeed <= 0f) { moveSpeed = 0f; } } ref Vector3 reference = ref moveDirection; reference.x *= moveSpeedAndFriction; ref Vector3 reference2 = ref moveDirection; reference2.z *= moveSpeedAndFriction; rotationSpeed2 = movement.rotationSpeed; return; } moveDirection = new Vector3(Input.GetAxis("Horizontal"), moveDirection.y, Input.GetAxis("Vertical")); if (((Vector3)(ref directionVector)).magnitude != 0f) { if ((!movement.firstPerson.walkBackwardsWhenDownKeyIsPressed || Input.GetAxis("Vertical") >= 0f || Input.GetAxis("Horizontal") != 0f || !inFirstPersonMode) && (Object)(object)((Component)playerCamera).transform.parent != (Object)(object)((Component)this).transform) { if (!movement.firstPerson.onlyRotateWithCamera || !inFirstPersonMode) { moveDirection = new Vector3(((Component)this).transform.forward.x, moveDirection.y, ((Component)this).transform.forward.z); } else { moveDirection = new Vector3((Quaternion.Euler(0f, bodyRotation, 0f) * Vector3.forward).x, moveDirection.y, (Quaternion.Euler(0f, bodyRotation, 0f) * Vector3.forward).z); } } else if (!movement.firstPerson.onlyRotateWithCamera || !inFirstPersonMode) { moveDirection = new Vector3(0f - ((Component)this).transform.forward.x, moveDirection.y, 0f - ((Component)this).transform.forward.z); } else { moveDirection = new Vector3((Quaternion.Euler(0f, bodyRotation, 0f) * Vector3.forward).x, moveDirection.y, (Quaternion.Euler(0f, bodyRotation, 0f) * Vector3.forward).z); } } else { moveSpeed = 0f; } ref Vector3 reference3 = ref moveDirection; reference3.x *= airSpeed; ref Vector3 reference4 = ref moveDirection; reference4.z *= airSpeed; rotationSpeed2 = movement.rotationSpeed * movement.midAirRotationSpeedMultiple; } private void LockAxisForSideScrolling() { //IL_0090: Unknown result type (might be due to invalid IL or missing references) //IL_0095: Unknown result type (might be due to invalid IL or missing references) //IL_00a3: Unknown result type (might be due to invalid IL or missing references) //IL_00a8: Unknown result type (might be due to invalid IL or missing references) //IL_00b0: Unknown result type (might be due to invalid IL or missing references) //IL_0194: Unknown result type (might be due to invalid IL or missing references) //IL_0199: Unknown result type (might be due to invalid IL or missing references) //IL_01aa: Unknown result type (might be due to invalid IL or missing references) //IL_01af: Unknown result type (might be due to invalid IL or missing references) //IL_01b5: Unknown result type (might be due to invalid IL or missing references) //IL_01ba: Unknown result type (might be due to invalid IL or missing references) //IL_013b: Unknown result type (might be due to invalid IL or missing references) //IL_0140: Unknown result type (might be due to invalid IL or missing references) //IL_014e: Unknown result type (might be due to invalid IL or missing references) //IL_0153: Unknown result type (might be due to invalid IL or missing references) //IL_016b: Unknown result type (might be due to invalid IL or missing references) //IL_0203: Unknown result type (might be due to invalid IL or missing references) //IL_0208: Unknown result type (might be due to invalid IL or missing references) //IL_022a: Unknown result type (might be due to invalid IL or missing references) //IL_022f: Unknown result type (might be due to invalid IL or missing references) if (movement.sideScrolling.lockMovementOnXAxis) { moveDirection.x = 0f; if ((Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled) || (!currentlyOnWall && !currentlyClimbingWall && !pullingUp && !inMidAirFromWallJump)) { ((Component)this).transform.position = new Vector3(movement.sideScrolling.xValue, ((Component)this).transform.position.y, ((Component)this).transform.position.z); } } if (movement.sideScrolling.lockMovementOnZAxis) { moveDirection.z = 0f; if ((Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled) || (!currentlyOnWall && !currentlyClimbingWall && !pullingUp && !inMidAirFromWallJump)) { ((Component)this).transform.position = new Vector3(((Component)this).transform.position.x, ((Component)this).transform.position.y, movement.sideScrolling.zValue); } } if (Object.op_Implicit((Object)(object)rigidBody) && currentlyClimbingWall) { moveDirection = Vector3.zero; moveSpeed = 0f; slidingVector = Vector3.zero; slideMovement = Vector3.zero; } if ((noCollisionTimer >= 5f && !grounded.currentlyGrounded) || inMidAirFromJump || jumpPerformed || !sliding) { slidingVector = Vector3.zero; } if (!angHit && noCollisionTimer < 5f && slidingVector != Vector3.zero && moveDirection.y <= 0f - gravity) { moveDirection.y = 0f - gravity; } } private void SlopeSliding() { //IL_0549: Unknown result type (might be due to invalid IL or missing references) //IL_054e: Unknown result type (might be due to invalid IL or missing references) //IL_0570: Unknown result type (might be due to invalid IL or missing references) //IL_0575: Unknown result type (might be due to invalid IL or missing references) //IL_0515: Unknown result type (might be due to invalid IL or missing references) //IL_051a: Unknown result type (might be due to invalid IL or missing references) //IL_0536: Unknown result type (might be due to invalid IL or missing references) //IL_053b: Unknown result type (might be due to invalid IL or missing references) //IL_057c: Unknown result type (might be due to invalid IL or missing references) //IL_0581: Unknown result type (might be due to invalid IL or missing references) //IL_065d: Unknown result type (might be due to invalid IL or missing references) //IL_066f: Unknown result type (might be due to invalid IL or missing references) //IL_0683: Unknown result type (might be due to invalid IL or missing references) //IL_0688: Unknown result type (might be due to invalid IL or missing references) //IL_068d: Unknown result type (might be due to invalid IL or missing references) //IL_06a9: Unknown result type (might be due to invalid IL or missing references) //IL_06bb: Unknown result type (might be due to invalid IL or missing references) //IL_06cf: Unknown result type (might be due to invalid IL or missing references) //IL_06d4: Unknown result type (might be due to invalid IL or missing references) //IL_06d9: Unknown result type (might be due to invalid IL or missing references) //IL_0102: Unknown result type (might be due to invalid IL or missing references) //IL_0129: Unknown result type (might be due to invalid IL or missing references) //IL_0139: Unknown result type (might be due to invalid IL or missing references) //IL_013e: Unknown result type (might be due to invalid IL or missing references) //IL_0150: Unknown result type (might be due to invalid IL or missing references) //IL_0162: Unknown result type (might be due to invalid IL or missing references) //IL_0176: Unknown result type (might be due to invalid IL or missing references) //IL_017b: Unknown result type (might be due to invalid IL or missing references) //IL_0180: Unknown result type (might be due to invalid IL or missing references) //IL_019b: Unknown result type (might be due to invalid IL or missing references) //IL_01ad: Unknown result type (might be due to invalid IL or missing references) //IL_01c1: Unknown result type (might be due to invalid IL or missing references) //IL_01c6: Unknown result type (might be due to invalid IL or missing references) //IL_01cb: Unknown result type (might be due to invalid IL or missing references) //IL_05d8: Unknown result type (might be due to invalid IL or missing references) //IL_05dd: Unknown result type (might be due to invalid IL or missing references) //IL_05ee: Unknown result type (might be due to invalid IL or missing references) //IL_060f: Unknown result type (might be due to invalid IL or missing references) //IL_0614: Unknown result type (might be due to invalid IL or missing references) //IL_0623: Unknown result type (might be due to invalid IL or missing references) //IL_0628: Unknown result type (might be due to invalid IL or missing references) //IL_0637: Unknown result type (might be due to invalid IL or missing references) //IL_063c: Unknown result type (might be due to invalid IL or missing references) //IL_0645: Unknown result type (might be due to invalid IL or missing references) //IL_0223: Unknown result type (might be due to invalid IL or missing references) //IL_0235: Unknown result type (might be due to invalid IL or missing references) //IL_0249: Unknown result type (might be due to invalid IL or missing references) //IL_024e: Unknown result type (might be due to invalid IL or missing references) //IL_0253: Unknown result type (might be due to invalid IL or missing references) //IL_0290: Unknown result type (might be due to invalid IL or missing references) //IL_0295: Unknown result type (might be due to invalid IL or missing references) //IL_02a6: Unknown result type (might be due to invalid IL or missing references) //IL_02c0: Unknown result type (might be due to invalid IL or missing references) //IL_02c5: Unknown result type (might be due to invalid IL or missing references) //IL_02f9: Unknown result type (might be due to invalid IL or missing references) //IL_02fe: Unknown result type (might be due to invalid IL or missing references) //IL_030d: Unknown result type (might be due to invalid IL or missing references) //IL_0312: Unknown result type (might be due to invalid IL or missing references) //IL_0387: Unknown result type (might be due to invalid IL or missing references) //IL_0399: Unknown result type (might be due to invalid IL or missing references) //IL_03ad: Unknown result type (might be due to invalid IL or missing references) //IL_03b2: Unknown result type (might be due to invalid IL or missing references) //IL_03b7: Unknown result type (might be due to invalid IL or missing references) //IL_0333: Unknown result type (might be due to invalid IL or missing references) //IL_0338: Unknown result type (might be due to invalid IL or missing references) //IL_0347: Unknown result type (might be due to invalid IL or missing references) //IL_034c: Unknown result type (might be due to invalid IL or missing references) //IL_035b: Unknown result type (might be due to invalid IL or missing references) //IL_0360: Unknown result type (might be due to invalid IL or missing references) //IL_0369: Unknown result type (might be due to invalid IL or missing references) if (raycastSlopeAngle > slopeLimit && collisionSlopeAngle < 89f && !jumpPerformed && !inMidAirFromJump && slidePossible && !inBetweenSlidableSurfaces) { if (!inBetweenSlidableSurfaces && ((uphill && !jumping.allowJumpWhenSlidingFacingUphill) || (!uphill && !jumping.allowJumpWhenSlidingFacingDownhill))) { jumpPossible = false; } else { jumpPossible = true; } if (noCollisionTimer < 5f || grounded.currentlyGrounded) { if (!sliding) { slideSpeed = 1f; } sliding = true; if (jumping.doNotIncreaseJumpNumberWhenSliding) { currentJumpNumber = 0; } slideMovement = Vector3.Slerp(slideMovement, new Vector3(slidingVector.x, 0f - slidingVector.y, slidingVector.z), 6f * Time.deltaTime); ref Vector3 reference = ref moveDirection; reference.x += (slideMovement * (slideSpeed * slopeSlideSpeed2) + new Vector3(0f, -8f, 0f)).x; ref Vector3 reference2 = ref moveDirection; reference2.z += (slideMovement * (slideSpeed * slopeSlideSpeed2) + new Vector3(0f, -8f, 0f)).z; if (noCollisionTimer < 2f || !jumpPossible) { if (Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled) { ref Vector3 reference3 = ref moveDirection; reference3.y += (slideMovement * (slideSpeed * slopeSlideSpeed2) + new Vector3(0f, -8f, 0f)).y; } else if (Object.op_Implicit((Object)(object)rigidBody) && yVel < -0.01f * gravity && Physics.Raycast(pos, Vector3.down, ref hit, 1f, LayerMask.op_Implicit(noWaterCollisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > slopeLimit) { if (((Component)this).transform.position.y - ((RaycastHit)(ref hit)).point.y < 0.2f) { ((Component)this).transform.position = new Vector3(((Component)this).transform.position.x, ((RaycastHit)(ref hit)).point.y, ((Component)this).transform.position.z); } else { ref Vector3 reference4 = ref moveDirection; reference4.y += (slideMovement * (slideSpeed * slopeSlideSpeed2) + new Vector3(0f, -8f, 0f)).y; } } } slideSpeed += (0f - slideMovement.y) * Time.deltaTime * gravity; if (((noCollisionTimer > 2f && !grounded.currentlyGrounded) || moveDirection.y <= 0f - gravity) && !inMidAirFromJump && Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled) { moveDirection.y = 0f - gravity; } } else if (!inMidAirFromJump && Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled) { if (sliding) { moveDirection.y = 0f - gravity; } sliding = false; } else { sliding = false; } } else { jumpPossible = true; sliding = false; } if (sliding) { return; } if (movement.slideFriction > 0f) { if (!inMidAirFromJump) { slideMovement = Vector3.Slerp(slideMovement, Vector3.zero, 24f / movement.slideFriction * Time.deltaTime); } else { slideMovement = Vector3.Slerp(slideMovement, Vector3.zero, 24f / (movement.slideFriction * 1.5f) * Time.deltaTime); } if (slideMovement != Vector3.zero) { if (Object.op_Implicit((Object)(object)rigidBody) && !jumpPerformed && !inMidAirFromJump && grounded.currentlyGrounded && noCollisionTimer < 5f && Physics.Raycast(pos, Vector3.down, ref hit, 1f, LayerMask.op_Implicit(noWaterCollisionLayers))) { ((Component)this).transform.position = new Vector3(((Component)this).transform.position.x, ((RaycastHit)(ref hit)).point.y, ((Component)this).transform.position.z); } ref Vector3 reference5 = ref moveDirection; reference5.x += (slideMovement * (slideSpeed * slopeSlideSpeed2) + new Vector3(0f, -8f, 0f)).x; ref Vector3 reference6 = ref moveDirection; reference6.z += (slideMovement * (slideSpeed * slopeSlideSpeed2) + new Vector3(0f, -8f, 0f)).z; slideSpeed += (0f - slideMovement.y) * Time.deltaTime * gravity; } } else { slideSpeed = 1f; } } private void PreventBouncing() { //IL_004e: Unknown result type (might be due to invalid IL or missing references) //IL_0053: Unknown result type (might be due to invalid IL or missing references) //IL_0064: Unknown result type (might be due to invalid IL or missing references) //IL_0089: Unknown result type (might be due to invalid IL or missing references) //IL_0094: Unknown result type (might be due to invalid IL or missing references) //IL_009e: Unknown result type (might be due to invalid IL or missing references) //IL_00a3: Unknown result type (might be due to invalid IL or missing references) //IL_00a8: Unknown result type (might be due to invalid IL or missing references) //IL_00b9: Unknown result type (might be due to invalid IL or missing references) //IL_027a: Unknown result type (might be due to invalid IL or missing references) //IL_027f: Unknown result type (might be due to invalid IL or missing references) //IL_014d: Unknown result type (might be due to invalid IL or missing references) //IL_0152: Unknown result type (might be due to invalid IL or missing references) //IL_0161: Unknown result type (might be due to invalid IL or missing references) //IL_016c: Unknown result type (might be due to invalid IL or missing references) //IL_0176: Unknown result type (might be due to invalid IL or missing references) //IL_017b: Unknown result type (might be due to invalid IL or missing references) //IL_0186: Unknown result type (might be due to invalid IL or missing references) //IL_018b: Unknown result type (might be due to invalid IL or missing references) //IL_0190: Unknown result type (might be due to invalid IL or missing references) //IL_01a1: Unknown result type (might be due to invalid IL or missing references) //IL_01b6: Unknown result type (might be due to invalid IL or missing references) //IL_01c1: Unknown result type (might be due to invalid IL or missing references) //IL_01cb: Unknown result type (might be due to invalid IL or missing references) //IL_01d0: Unknown result type (might be due to invalid IL or missing references) //IL_01db: Unknown result type (might be due to invalid IL or missing references) //IL_01e0: Unknown result type (might be due to invalid IL or missing references) //IL_01e5: Unknown result type (might be due to invalid IL or missing references) //IL_01f6: Unknown result type (might be due to invalid IL or missing references) //IL_02df: Unknown result type (might be due to invalid IL or missing references) //IL_02e4: Unknown result type (might be due to invalid IL or missing references) //IL_02f5: Unknown result type (might be due to invalid IL or missing references) //IL_02fa: Unknown result type (might be due to invalid IL or missing references) //IL_0211: Unknown result type (might be due to invalid IL or missing references) //IL_0216: Unknown result type (might be due to invalid IL or missing references) //IL_0224: Unknown result type (might be due to invalid IL or missing references) //IL_0229: Unknown result type (might be due to invalid IL or missing references) //IL_0319: Unknown result type (might be due to invalid IL or missing references) //IL_031e: Unknown result type (might be due to invalid IL or missing references) //IL_0333: Unknown result type (might be due to invalid IL or missing references) //IL_0338: Unknown result type (might be due to invalid IL or missing references) //IL_0249: Unknown result type (might be due to invalid IL or missing references) //IL_024e: Unknown result type (might be due to invalid IL or missing references) //IL_037b: Unknown result type (might be due to invalid IL or missing references) //IL_0380: Unknown result type (might be due to invalid IL or missing references) //IL_0390: Unknown result type (might be due to invalid IL or missing references) //IL_039b: Unknown result type (might be due to invalid IL or missing references) //IL_03a5: Unknown result type (might be due to invalid IL or missing references) //IL_03aa: Unknown result type (might be due to invalid IL or missing references) //IL_03b5: Unknown result type (might be due to invalid IL or missing references) //IL_03ba: Unknown result type (might be due to invalid IL or missing references) //IL_03bf: Unknown result type (might be due to invalid IL or missing references) //IL_03d0: Unknown result type (might be due to invalid IL or missing references) //IL_03e5: Unknown result type (might be due to invalid IL or missing references) //IL_03f0: Unknown result type (might be due to invalid IL or missing references) //IL_03fa: Unknown result type (might be due to invalid IL or missing references) //IL_03ff: Unknown result type (might be due to invalid IL or missing references) //IL_040a: Unknown result type (might be due to invalid IL or missing references) //IL_040f: Unknown result type (might be due to invalid IL or missing references) //IL_0414: Unknown result type (might be due to invalid IL or missing references) //IL_0425: Unknown result type (might be due to invalid IL or missing references) //IL_0440: Unknown result type (might be due to invalid IL or missing references) //IL_0445: Unknown result type (might be due to invalid IL or missing references) //IL_0454: Unknown result type (might be due to invalid IL or missing references) //IL_0459: Unknown result type (might be due to invalid IL or missing references) //IL_047a: Unknown result type (might be due to invalid IL or missing references) //IL_047f: Unknown result type (might be due to invalid IL or missing references) if ((grounded.currentlyGrounded || angHit) && jumpPerformed && noCollisionTimer < 5f && !inMidAirFromJump) { jumpPerformed = false; } if (((!Physics.Raycast(pos, Vector3.down, ref hit, 1f, LayerMask.op_Implicit(noWaterCollisionLayers)) || Object.op_Implicit((Object)(object)rigidBody)) && (!Physics.Raycast(pos + ((Component)this).transform.forward / 10f, Vector3.down, ref hit, 1f, LayerMask.op_Implicit(noWaterCollisionLayers)) || !Object.op_Implicit((Object)(object)rigidBody))) || !grounded.currentlyGrounded || jumpPerformed) { return; } if (Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled && (raycastSlopeAngle > 1f || raycastSlopeAngle < -1f)) { ref Vector3 reference = ref moveDirection; reference.y -= ((RaycastHit)(ref hit)).point.y; if (Physics.Raycast(pos + ((Component)this).transform.forward / 2f + ((Component)this).transform.up, Vector3.down, ref frontHit, 5f, LayerMask.op_Implicit(noWaterCollisionLayers)) && Physics.Raycast(pos - ((Component)this).transform.forward / 2f + ((Component)this).transform.up, Vector3.down, ref backHit, 5f, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((RaycastHit)(ref frontHit)).point.y < ((RaycastHit)(ref backHit)).point.y) { ref Vector3 reference2 = ref moveDirection; reference2.y -= ((RaycastHit)(ref hit)).normal.y; } } else if (Object.op_Implicit((Object)(object)rigidBody) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f <= slopeLimit && grounded.currentlyGrounded && (noCollisionTimer < 2f || (0f - (moveDirection.y - rigidBody.velocity.y) < ((Component)this).transform.position.y && moveDirection.y <= rigidBody.velocity.y + 5f - ((Component)this).transform.position.y)) && !sliding && !inMidAirFromJump && !inMidAirFromWallJump) { ref Vector3 reference3 = ref moveDirection; reference3.y -= ((RaycastHit)(ref hit)).point.y; if (Physics.Raycast(pos + ((Component)this).transform.forward / 2f + ((Component)this).transform.up, Vector3.down, ref frontHit, 5f, LayerMask.op_Implicit(noWaterCollisionLayers)) && Physics.Raycast(pos - ((Component)this).transform.forward / 2f + ((Component)this).transform.up, Vector3.down, ref backHit, 5f, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((RaycastHit)(ref frontHit)).point.y < ((RaycastHit)(ref backHit)).point.y) { ref Vector3 reference4 = ref moveDirection; reference4.y -= ((RaycastHit)(ref hit)).normal.y; } } } private void ApplyGravity() { //IL_00d3: Unknown result type (might be due to invalid IL or missing references) //IL_00d8: Unknown result type (might be due to invalid IL or missing references) if ((!jumpPressed || !grounded.currentlyGrounded) && !currentlyOnWall && !currentlyClimbingWall && !turnBack && !back2) { ref Vector3 reference = ref moveDirection; reference.y -= gravity * Time.deltaTime; } if (Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled) { if (moveDirection.y <= 0f - maxFallingSpeed2) { moveDirection.y = 0f - maxFallingSpeed2; } } else if (Object.op_Implicit((Object)(object)rigidBody) && rigidBody.velocity.y <= 0f - maxFallingSpeed2) { moveDirection.y = 0f - maxFallingSpeed2; } if (headHit) { moveDirection.y = 0f; } } private void MovePlayer() { //IL_1021: Unknown result type (might be due to invalid IL or missing references) //IL_102c: Unknown result type (might be due to invalid IL or missing references) //IL_1037: Unknown result type (might be due to invalid IL or missing references) //IL_1041: Unknown result type (might be due to invalid IL or missing references) //IL_1046: Unknown result type (might be due to invalid IL or missing references) //IL_1052: Unknown result type (might be due to invalid IL or missing references) //IL_07ff: Unknown result type (might be due to invalid IL or missing references) //IL_0804: Unknown result type (might be due to invalid IL or missing references) //IL_0151: Unknown result type (might be due to invalid IL or missing references) //IL_0157: Unknown result type (might be due to invalid IL or missing references) //IL_015c: Unknown result type (might be due to invalid IL or missing references) //IL_0162: Unknown result type (might be due to invalid IL or missing references) //IL_0168: Unknown result type (might be due to invalid IL or missing references) //IL_017f: Unknown result type (might be due to invalid IL or missing references) //IL_0184: Unknown result type (might be due to invalid IL or missing references) //IL_0190: Unknown result type (might be due to invalid IL or missing references) //IL_0ece: Unknown result type (might be due to invalid IL or missing references) //IL_07bc: Unknown result type (might be due to invalid IL or missing references) //IL_07c6: Unknown result type (might be due to invalid IL or missing references) //IL_07cb: Unknown result type (might be due to invalid IL or missing references) //IL_0444: Unknown result type (might be due to invalid IL or missing references) //IL_044a: Unknown result type (might be due to invalid IL or missing references) //IL_044f: Unknown result type (might be due to invalid IL or missing references) //IL_045a: Unknown result type (might be due to invalid IL or missing references) //IL_0460: Unknown result type (might be due to invalid IL or missing references) //IL_0465: Unknown result type (might be due to invalid IL or missing references) //IL_0471: Unknown result type (might be due to invalid IL or missing references) //IL_01a5: Unknown result type (might be due to invalid IL or missing references) //IL_01b0: Unknown result type (might be due to invalid IL or missing references) //IL_01c1: Unknown result type (might be due to invalid IL or missing references) //IL_01c6: Unknown result type (might be due to invalid IL or missing references) //IL_01cc: Unknown result type (might be due to invalid IL or missing references) //IL_01d1: Unknown result type (might be due to invalid IL or missing references) //IL_01d7: Unknown result type (might be due to invalid IL or missing references) //IL_01e2: Unknown result type (might be due to invalid IL or missing references) //IL_01f3: Unknown result type (might be due to invalid IL or missing references) //IL_01f8: Unknown result type (might be due to invalid IL or missing references) //IL_01fe: Unknown result type (might be due to invalid IL or missing references) //IL_0215: Unknown result type (might be due to invalid IL or missing references) //IL_021a: Unknown result type (might be due to invalid IL or missing references) //IL_0226: Unknown result type (might be due to invalid IL or missing references) //IL_048b: Unknown result type (might be due to invalid IL or missing references) //IL_0496: Unknown result type (might be due to invalid IL or missing references) //IL_04a7: Unknown result type (might be due to invalid IL or missing references) //IL_04ac: Unknown result type (might be due to invalid IL or missing references) //IL_04b2: Unknown result type (might be due to invalid IL or missing references) //IL_04b7: Unknown result type (might be due to invalid IL or missing references) //IL_04c2: Unknown result type (might be due to invalid IL or missing references) //IL_04cd: Unknown result type (might be due to invalid IL or missing references) //IL_04de: Unknown result type (might be due to invalid IL or missing references) //IL_04e3: Unknown result type (might be due to invalid IL or missing references) //IL_04e9: Unknown result type (might be due to invalid IL or missing references) //IL_04ee: Unknown result type (might be due to invalid IL or missing references) //IL_04fa: Unknown result type (might be due to invalid IL or missing references) //IL_023b: Unknown result type (might be due to invalid IL or missing references) //IL_0246: Unknown result type (might be due to invalid IL or missing references) //IL_0257: Unknown result type (might be due to invalid IL or missing references) //IL_025c: Unknown result type (might be due to invalid IL or missing references) //IL_0262: Unknown result type (might be due to invalid IL or missing references) //IL_0267: Unknown result type (might be due to invalid IL or missing references) //IL_026d: Unknown result type (might be due to invalid IL or missing references) //IL_0278: Unknown result type (might be due to invalid IL or missing references) //IL_0289: Unknown result type (might be due to invalid IL or missing references) //IL_028e: Unknown result type (might be due to invalid IL or missing references) //IL_0294: Unknown result type (might be due to invalid IL or missing references) //IL_02ab: Unknown result type (might be due to invalid IL or missing references) //IL_02b0: Unknown result type (might be due to invalid IL or missing references) //IL_02bc: Unknown result type (might be due to invalid IL or missing references) //IL_0091: Unknown result type (might be due to invalid IL or missing references) //IL_0096: Unknown result type (might be due to invalid IL or missing references) //IL_00a7: Unknown result type (might be due to invalid IL or missing references) //IL_109f: Unknown result type (might be due to invalid IL or missing references) //IL_10a4: Unknown result type (might be due to invalid IL or missing references) //IL_10b3: Unknown result type (might be due to invalid IL or missing references) //IL_10b8: Unknown result type (might be due to invalid IL or missing references) //IL_10c7: Unknown result type (might be due to invalid IL or missing references) //IL_10cc: Unknown result type (might be due to invalid IL or missing references) //IL_10d5: Unknown result type (might be due to invalid IL or missing references) //IL_0f4e: Unknown result type (might be due to invalid IL or missing references) //IL_0f64: Unknown result type (might be due to invalid IL or missing references) //IL_0f7e: Unknown result type (might be due to invalid IL or missing references) //IL_0f88: Unknown result type (might be due to invalid IL or missing references) //IL_0f8d: Unknown result type (might be due to invalid IL or missing references) //IL_0ef1: Unknown result type (might be due to invalid IL or missing references) //IL_0f07: Unknown result type (might be due to invalid IL or missing references) //IL_0f0d: Unknown result type (might be due to invalid IL or missing references) //IL_0f17: Unknown result type (might be due to invalid IL or missing references) //IL_0f1c: Unknown result type (might be due to invalid IL or missing references) //IL_0a04: Unknown result type (might be due to invalid IL or missing references) //IL_0a0a: Unknown result type (might be due to invalid IL or missing references) //IL_0a0f: Unknown result type (might be due to invalid IL or missing references) //IL_0a15: Unknown result type (might be due to invalid IL or missing references) //IL_0a1b: Unknown result type (might be due to invalid IL or missing references) //IL_0a32: Unknown result type (might be due to invalid IL or missing references) //IL_0a37: Unknown result type (might be due to invalid IL or missing references) //IL_0a43: Unknown result type (might be due to invalid IL or missing references) //IL_0864: Unknown result type (might be due to invalid IL or missing references) //IL_0869: Unknown result type (might be due to invalid IL or missing references) //IL_087a: Unknown result type (might be due to invalid IL or missing references) //IL_0514: Unknown result type (might be due to invalid IL or missing references) //IL_051f: Unknown result type (might be due to invalid IL or missing references) //IL_0530: Unknown result type (might be due to invalid IL or missing references) //IL_0535: Unknown result type (might be due to invalid IL or missing references) //IL_053b: Unknown result type (might be due to invalid IL or missing references) //IL_0540: Unknown result type (might be due to invalid IL or missing references) //IL_054b: Unknown result type (might be due to invalid IL or missing references) //IL_0556: Unknown result type (might be due to invalid IL or missing references) //IL_0567: Unknown result type (might be due to invalid IL or missing references) //IL_056c: Unknown result type (might be due to invalid IL or missing references) //IL_0572: Unknown result type (might be due to invalid IL or missing references) //IL_0577: Unknown result type (might be due to invalid IL or missing references) //IL_0583: Unknown result type (might be due to invalid IL or missing references) //IL_02d1: Unknown result type (might be due to invalid IL or missing references) //IL_02dc: Unknown result type (might be due to invalid IL or missing references) //IL_02ed: Unknown result type (might be due to invalid IL or missing references) //IL_02f2: Unknown result type (might be due to invalid IL or missing references) //IL_02f8: Unknown result type (might be due to invalid IL or missing references) //IL_02fd: Unknown result type (might be due to invalid IL or missing references) //IL_0303: Unknown result type (might be due to invalid IL or missing references) //IL_030e: Unknown result type (might be due to invalid IL or missing references) //IL_031f: Unknown result type (might be due to invalid IL or missing references) //IL_0324: Unknown result type (might be due to invalid IL or missing references) //IL_032a: Unknown result type (might be due to invalid IL or missing references) //IL_0341: Unknown result type (might be due to invalid IL or missing references) //IL_0346: Unknown result type (might be due to invalid IL or missing references) //IL_0352: Unknown result type (might be due to invalid IL or missing references) //IL_00c1: Unknown result type (might be due to invalid IL or missing references) //IL_00c6: Unknown result type (might be due to invalid IL or missing references) //IL_0a58: Unknown result type (might be due to invalid IL or missing references) //IL_0a63: Unknown result type (might be due to invalid IL or missing references) //IL_0a74: Unknown result type (might be due to invalid IL or missing references) //IL_0a79: Unknown result type (might be due to invalid IL or missing references) //IL_0a7f: Unknown result type (might be due to invalid IL or missing references) //IL_0a84: Unknown result type (might be due to invalid IL or missing references) //IL_0a8a: Unknown result type (might be due to invalid IL or missing references) //IL_0a95: Unknown result type (might be due to invalid IL or missing references) //IL_0aa6: Unknown result type (might be due to invalid IL or missing references) //IL_0aab: Unknown result type (might be due to invalid IL or missing references) //IL_0ab1: Unknown result type (might be due to invalid IL or missing references) //IL_0ac8: Unknown result type (might be due to invalid IL or missing references) //IL_0acd: Unknown result type (might be due to invalid IL or missing references) //IL_0ad9: Unknown result type (might be due to invalid IL or missing references) //IL_0894: Unknown result type (might be due to invalid IL or missing references) //IL_0899: Unknown result type (might be due to invalid IL or missing references) //IL_059d: Unknown result type (might be due to invalid IL or missing references) //IL_05a8: Unknown result type (might be due to invalid IL or missing references) //IL_05b9: Unknown result type (might be due to invalid IL or missing references) //IL_05be: Unknown result type (might be due to invalid IL or missing references) //IL_05c4: Unknown result type (might be due to invalid IL or missing references) //IL_05c9: Unknown result type (might be due to invalid IL or missing references) //IL_05d4: Unknown result type (might be due to invalid IL or missing references) //IL_05df: Unknown result type (might be due to invalid IL or missing references) //IL_05f0: Unknown result type (might be due to invalid IL or missing references) //IL_05f5: Unknown result type (might be due to invalid IL or missing references) //IL_05fb: Unknown result type (might be due to invalid IL or missing references) //IL_0600: Unknown result type (might be due to invalid IL or missing references) //IL_060c: Unknown result type (might be due to invalid IL or missing references) //IL_0367: Unknown result type (might be due to invalid IL or missing references) //IL_0372: Unknown result type (might be due to invalid IL or missing references) //IL_0383: Unknown result type (might be due to invalid IL or missing references) //IL_0388: Unknown result type (might be due to invalid IL or missing references) //IL_038e: Unknown result type (might be due to invalid IL or missing references) //IL_0393: Unknown result type (might be due to invalid IL or missing references) //IL_0399: Unknown result type (might be due to invalid IL or missing references) //IL_03a4: Unknown result type (might be due to invalid IL or missing references) //IL_03b5: Unknown result type (might be due to invalid IL or missing references) //IL_03ba: Unknown result type (might be due to invalid IL or missing references) //IL_03c0: Unknown result type (might be due to invalid IL or missing references) //IL_03d7: Unknown result type (might be due to invalid IL or missing references) //IL_03dc: Unknown result type (might be due to invalid IL or missing references) //IL_03e8: Unknown result type (might be due to invalid IL or missing references) //IL_0106: Unknown result type (might be due to invalid IL or missing references) //IL_010b: Unknown result type (might be due to invalid IL or missing references) //IL_011a: Unknown result type (might be due to invalid IL or missing references) //IL_011f: Unknown result type (might be due to invalid IL or missing references) //IL_0fea: Unknown result type (might be due to invalid IL or missing references) //IL_0aee: Unknown result type (might be due to invalid IL or missing references) //IL_0af9: Unknown result type (might be due to invalid IL or missing references) //IL_0b0a: Unknown result type (might be due to invalid IL or missing references) //IL_0b0f: Unknown result type (might be due to invalid IL or missing references) //IL_0b15: Unknown result type (might be due to invalid IL or missing references) //IL_0b1a: Unknown result type (might be due to invalid IL or missing references) //IL_0b20: Unknown result type (might be due to invalid IL or missing references) //IL_0b2b: Unknown result type (might be due to invalid IL or missing references) //IL_0b3c: Unknown result type (might be due to invalid IL or missing references) //IL_0b41: Unknown result type (might be due to invalid IL or missing references) //IL_0b47: Unknown result type (might be due to invalid IL or missing references) //IL_0b5e: Unknown result type (might be due to invalid IL or missing references) //IL_0b63: Unknown result type (might be due to invalid IL or missing references) //IL_0b6f: Unknown result type (might be due to invalid IL or missing references) //IL_0798: Unknown result type (might be due to invalid IL or missing references) //IL_07a2: Unknown result type (might be due to invalid IL or missing references) //IL_07a7: Unknown result type (might be due to invalid IL or missing references) //IL_0733: Unknown result type (might be due to invalid IL or missing references) //IL_0738: Unknown result type (might be due to invalid IL or missing references) //IL_0626: Unknown result type (might be due to invalid IL or missing references) //IL_0631: Unknown result type (might be due to invalid IL or missing references) //IL_0642: Unknown result type (might be due to invalid IL or missing references) //IL_0647: Unknown result type (might be due to invalid IL or missing references) //IL_064d: Unknown result type (might be due to invalid IL or missing references) //IL_0652: Unknown result type (might be due to invalid IL or missing references) //IL_065d: Unknown result type (might be due to invalid IL or missing references) //IL_0668: Unknown result type (might be due to invalid IL or missing references) //IL_0679: Unknown result type (might be due to invalid IL or missing references) //IL_067e: Unknown result type (might be due to invalid IL or missing references) //IL_0684: Unknown result type (might be due to invalid IL or missing references) //IL_0689: Unknown result type (might be due to invalid IL or missing references) //IL_0695: Unknown result type (might be due to invalid IL or missing references) //IL_0b84: Unknown result type (might be due to invalid IL or missing references) //IL_0b8f: Unknown result type (might be due to invalid IL or missing references) //IL_0ba0: Unknown result type (might be due to invalid IL or missing references) //IL_0ba5: Unknown result type (might be due to invalid IL or missing references) //IL_0bab: Unknown result type (might be due to invalid IL or missing references) //IL_0bb0: Unknown result type (might be due to invalid IL or missing references) //IL_0bb6: Unknown result type (might be due to invalid IL or missing references) //IL_0bc1: Unknown result type (might be due to invalid IL or missing references) //IL_0bd2: Unknown result type (might be due to invalid IL or missing references) //IL_0bd7: Unknown result type (might be due to invalid IL or missing references) //IL_0bdd: Unknown result type (might be due to invalid IL or missing references) //IL_0bf4: Unknown result type (might be due to invalid IL or missing references) //IL_0bf9: Unknown result type (might be due to invalid IL or missing references) //IL_0c05: Unknown result type (might be due to invalid IL or missing references) //IL_074d: Unknown result type (might be due to invalid IL or missing references) //IL_075d: Unknown result type (might be due to invalid IL or missing references) //IL_0762: Unknown result type (might be due to invalid IL or missing references) //IL_0770: Unknown result type (might be due to invalid IL or missing references) //IL_0775: Unknown result type (might be due to invalid IL or missing references) //IL_077f: Unknown result type (might be due to invalid IL or missing references) //IL_0784: Unknown result type (might be due to invalid IL or missing references) //IL_0c1a: Unknown result type (might be due to invalid IL or missing references) //IL_0c25: Unknown result type (might be due to invalid IL or missing references) //IL_0c36: Unknown result type (might be due to invalid IL or missing references) //IL_0c3b: Unknown result type (might be due to invalid IL or missing references) //IL_0c41: Unknown result type (might be due to invalid IL or missing references) //IL_0c46: Unknown result type (might be due to invalid IL or missing references) //IL_0c4c: Unknown result type (might be due to invalid IL or missing references) //IL_0c57: Unknown result type (might be due to invalid IL or missing references) //IL_0c68: Unknown result type (might be due to invalid IL or missing references) //IL_0c6d: Unknown result type (might be due to invalid IL or missing references) //IL_0c73: Unknown result type (might be due to invalid IL or missing references) //IL_0c8a: Unknown result type (might be due to invalid IL or missing references) //IL_0c8f: Unknown result type (might be due to invalid IL or missing references) //IL_0c9b: Unknown result type (might be due to invalid IL or missing references) //IL_08f9: Unknown result type (might be due to invalid IL or missing references) //IL_08fe: Unknown result type (might be due to invalid IL or missing references) //IL_090f: Unknown result type (might be due to invalid IL or missing references) //IL_0914: Unknown result type (might be due to invalid IL or missing references) //IL_0933: Unknown result type (might be due to invalid IL or missing references) //IL_0938: Unknown result type (might be due to invalid IL or missing references) //IL_094d: Unknown result type (might be due to invalid IL or missing references) //IL_0952: Unknown result type (might be due to invalid IL or missing references) //IL_0e82: Unknown result type (might be due to invalid IL or missing references) //IL_0995: Unknown result type (might be due to invalid IL or missing references) //IL_099a: Unknown result type (might be due to invalid IL or missing references) //IL_09aa: Unknown result type (might be due to invalid IL or missing references) //IL_09af: Unknown result type (might be due to invalid IL or missing references) //IL_0cf2: Unknown result type (might be due to invalid IL or missing references) //IL_0cf7: Unknown result type (might be due to invalid IL or missing references) //IL_0d08: Unknown result type (might be due to invalid IL or missing references) //IL_0d0d: Unknown result type (might be due to invalid IL or missing references) //IL_0d2c: Unknown result type (might be due to invalid IL or missing references) //IL_0d31: Unknown result type (might be due to invalid IL or missing references) //IL_0d46: Unknown result type (might be due to invalid IL or missing references) //IL_0d4b: Unknown result type (might be due to invalid IL or missing references) //IL_0dbb: Unknown result type (might be due to invalid IL or missing references) //IL_0dcb: Unknown result type (might be due to invalid IL or missing references) //IL_0dd0: Unknown result type (might be due to invalid IL or missing references) //IL_0dde: Unknown result type (might be due to invalid IL or missing references) //IL_0de3: Unknown result type (might be due to invalid IL or missing references) //IL_0e10: Unknown result type (might be due to invalid IL or missing references) //IL_0e15: Unknown result type (might be due to invalid IL or missing references) //IL_0e24: Unknown result type (might be due to invalid IL or missing references) //IL_0e3a: Unknown result type (might be due to invalid IL or missing references) //IL_0e5a: Unknown result type (might be due to invalid IL or missing references) //IL_0e64: Unknown result type (might be due to invalid IL or missing references) //IL_0e69: Unknown result type (might be due to invalid IL or missing references) if (currentlyOnWall || currentlyClimbingWall) { return; } if (Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled) { if (grounded.currentlyGrounded && moveDirection.y >= 0f && (noCollisionTimer > 5f || uphill) && !sliding && !jumpPerformed && Physics.Raycast(pos, Vector3.down, ref hit, 1f, LayerMask.op_Implicit(noWaterCollisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f <= slopeLimit) { ref Vector3 reference = ref moveDirection; reference.y -= 0f - ((Component)this).transform.position.y + ((RaycastHit)(ref hit)).normal.y; } if ((noCollisionTimer < 5f && grounded.currentlyGrounded && Physics.Linecast(pos + maxGroundedHeight2, pos + maxGroundedDistanceDown * (raycastSlopeAngle / 90f + 1f), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && Physics.Linecast(pos - ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, pos - ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown * (raycastSlopeAngle / 90f + 1f), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && Physics.Linecast(pos + ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, pos + ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown * (raycastSlopeAngle / 90f + 1f), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && Physics.Linecast(pos - ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, pos - ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown * (raycastSlopeAngle / 90f + 1f), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && Physics.Linecast(pos + ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, pos + ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown * (raycastSlopeAngle / 90f + 1f), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers))) || (((raycastSlopeAngle > slopeLimit && collisionSlopeAngle < 89f && !jumpPerformed && slidePossible) || inBetweenSlidableSurfaces) && (Physics.Linecast(((Component)this).transform.position + maxGroundedHeight2, ((Component)this).transform.position + maxGroundedDistanceDown, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(((Component)this).transform.position - ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, ((Component)this).transform.position - ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, ((Component)this).transform.position + ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(((Component)this).transform.position - ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, ((Component)this).transform.position - ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, ((Component)this).transform.position + ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || noCollisionTimer < 5f))) { if (((grounded.currentlyGrounded && !inMidAirFromJump && !inMidAirFromWallJump) || (raycastSlopeAngle > slopeLimit && collisionSlopeAngle < 89f && !jumpPerformed && slidePossible) || inBetweenSlidableSurfaces) && moveDirection.y > ((Component)this).transform.position.y) { characterController.Move((moveDirection + new Vector3(0f, ((Component)this).transform.position.y, 0f)) * Time.deltaTime); } else { characterController.Move(moveDirection * Time.deltaTime); } } else { characterController.Move(moveDirection * Time.deltaTime); } } else if (Object.op_Implicit((Object)(object)rigidBody)) { if (grounded.currentlyGrounded && Mathf.Abs(rigidBody.velocity.y) > 1f && moveDirection.y >= 0f && (noCollisionTimer > 5f || uphill) && !sliding && !jumpPerformed && Physics.Raycast(pos, Vector3.down, ref hit, 1f, LayerMask.op_Implicit(noWaterCollisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f <= slopeLimit && grounded.currentlyGrounded && (noCollisionTimer < 2f || (0f - (moveDirection.y - rigidBody.velocity.y) < ((Component)this).transform.position.y && moveDirection.y <= rigidBody.velocity.y + 5f - ((Component)this).transform.position.y)) && !sliding && !inMidAirFromJump && !inMidAirFromWallJump) { ref Vector3 reference2 = ref moveDirection; reference2.y -= 0f - ((Component)this).transform.position.y + ((RaycastHit)(ref hit)).normal.y; } if (grounded.currentlyGrounded && !jumpPressed && !jumpPerformed && !sliding && noCollisionTimer < 5f && Physics.Linecast(pos + maxGroundedHeight2, pos + maxGroundedDistanceDown * (raycastSlopeAngle / 90f + 1f), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && Physics.Linecast(pos - ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, pos - ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown * (raycastSlopeAngle / 90f + 1f), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && Physics.Linecast(pos + ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, pos + ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown * (raycastSlopeAngle / 90f + 1f), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && Physics.Linecast(pos - ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, pos - ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown * (raycastSlopeAngle / 90f + 1f), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && Physics.Linecast(pos + ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, pos + ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown * (raycastSlopeAngle / 90f + 1f), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers))) { if (raycastSlopeAngle <= slopeLimit && grounded.currentlyGrounded && (noCollisionTimer < 2f || (0f - (moveDirection.y - rigidBody.velocity.y) < ((Component)this).transform.position.y && moveDirection.y <= rigidBody.velocity.y + 5f - ((Component)this).transform.position.y)) && !sliding && !inMidAirFromJump && !inMidAirFromWallJump) { if ((!touchingWall && !collidingWithWall) || pushingThroughWall || inCorner || colliderInWall) { rigidBody.velocity = moveDirection + new Vector3(0f, ((Component)this).transform.position.y, 0f); } else { rigidBody.velocity = new Vector3(0f, moveDirection.y + ((Component)this).transform.position.y, 0f); rigidBody.MovePosition(((Component)this).transform.position + new Vector3(moveDirection.x, 0f, moveDirection.z) * Time.deltaTime); } } else { rigidBody.velocity = moveDirection; } } else { if ((touchingWall && pushingThroughWall) || raycastSlopeAngle > slopeLimit || sliding) { rigidBody.velocity = moveDirection; } else if (!inCorner) { rigidBody.velocity = Vector3.zero; rigidBody.MovePosition(((Component)this).transform.position + moveDirection * Time.deltaTime); } else { rigidBody.velocity = new Vector3(moveDirection.x, 0f, moveDirection.z); rigidBody.MovePosition(((Component)this).transform.position + new Vector3(0f, moveDirection.y, 0f) * Time.deltaTime); } if (inCorner) { if (updateFrame == 1f) { updateFrame = 2f; } else if (updateFrame == 2f) { updateFrame = 1f; rigidBody.velocity = moveDirection; } } else { updateFrame = 2f; } } } if (movement.hardStickToGround && Physics.Linecast(((Component)this).transform.position, ((Component)this).transform.position - ((Component)this).transform.up / 10f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && !jumpPressed && !jumpPerformed && !inMidAirFromJump && !inMidAirFromWallJump) { ((Component)this).transform.position = new Vector3(((Component)this).transform.position.x, ((RaycastHit)(ref hit)).point.y, ((Component)this).transform.position.z); } } private void AvoidFallingWhileClimbing() { //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_00a9: Unknown result type (might be due to invalid IL or missing references) //IL_00ae: Unknown result type (might be due to invalid IL or missing references) //IL_00c3: Unknown result type (might be due to invalid IL or missing references) //IL_00c8: Unknown result type (might be due to invalid IL or missing references) //IL_006b: Unknown result type (might be due to invalid IL or missing references) //IL_0070: Unknown result type (might be due to invalid IL or missing references) //IL_0084: Unknown result type (might be due to invalid IL or missing references) //IL_0089: Unknown result type (might be due to invalid IL or missing references) //IL_0091: Unknown result type (might be due to invalid IL or missing references) if (currentlyClimbingWall && !pullingUp) { if (Mathf.Abs(((Component)this).transform.position.y - lastYPosOnWall) >= 0.2f * (climbMovementSpeed2 / 4f) && lastYPosOnWall != 0f) { ((Component)this).transform.position = new Vector3(((Component)this).transform.position.x, climbingHeight, ((Component)this).transform.position.z); } else { climbingHeight = ((Component)this).transform.position.y; } lastYPosOnWall = ((Component)this).transform.position.y; } else { lastYPosOnWall = 0f; } } private void SwitchingToFirstPersonMode() { if (movement.firstPerson.useCameraControllerSettingsIfPossible && Object.op_Implicit((Object)(object)((Component)playerCamera).GetComponent())) { movement.firstPerson.alwaysUseFirstPerson = ((Component)playerCamera).GetComponent().firstPerson.alwaysUseFirstPerson; movement.firstPerson.switchToFirstPersonIfInputButtonPressed = ((Component)playerCamera).GetComponent().firstPerson.switchToFirstPersonIfInputButtonPressed; movement.firstPerson.firstPersonInputButton = ((Component)playerCamera).GetComponent().firstPerson.firstPersonInputButton; movement.firstPerson.startOffInFirstPersonModeForSwitching = ((Component)playerCamera).GetComponent().firstPerson.startOffInFirstPersonModeForSwitching; movement.firstPerson.onlyRotateWithCamera = ((Component)playerCamera).GetComponent().inFirstPersonMode; movement.firstPerson.onlyRotateWithCamera = ((Component)playerCamera).GetComponent().firstPerson.mouseOrbiting.mouseOrbitInFirstPersonMode; } if (movement.firstPerson.switchToFirstPersonIfInputButtonPressed) { if (firstPersonStart) { firstPersonButtonPressed = true; } else { firstPersonButtonPressed = false; } } else { firstPersonButtonPressed = false; } if (movement.firstPerson.alwaysUseFirstPerson || (movement.firstPerson.switchToFirstPersonIfInputButtonPressed && firstPersonButtonPressed)) { inFirstPersonMode = true; } else { inFirstPersonMode = false; } } private void CrouchAttack() { if (movement.crouching.allowCrouching && crouching && attackPressed && finishedCrouching && attacking.crouch.allowCrouchAttack && attackTimer > attacking.crouch.timeLimitBetweenCrouchAttacks) { crouchCancelsAttack = false; attackFinished = false; attackFinishedLastUpdate = false; if ((Object)(object)animator != (Object)null) { animator.SetFloat("attackState", 2f); } Attack(); } if ((crouching || canCrouch) && !Input.GetButtonDown(attacking.attackInputButton) && attackFinishedLastUpdate) { crouchCancelsAttack = true; } if ((!crouching && !canCrouch) || !movement.crouching.allowCrouching) { crouchCancelsAttack = false; } if (attackFinished) { attackFinishedLastUpdate = true; } else { attackFinishedLastUpdate = false; } attackFinished = true; } private void Swim() { Swim1(); Swim2(); if (inWater) { Swim3(); Swim4(); Swim5(); Swim6(); Swim7(); } else { Swim8(); Swim9(); } } private void Swim1() { //IL_0037: Unknown result type (might be due to invalid IL or missing references) //IL_0042: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Unknown result type (might be due to invalid IL or missing references) //IL_0051: Unknown result type (might be due to invalid IL or missing references) //IL_005c: Unknown result type (might be due to invalid IL or missing references) //IL_0068: Unknown result type (might be due to invalid IL or missing references) //IL_02ff: Unknown result type (might be due to invalid IL or missing references) //IL_0304: Unknown result type (might be due to invalid IL or missing references) //IL_032b: Unknown result type (might be due to invalid IL or missing references) //IL_0330: Unknown result type (might be due to invalid IL or missing references) //IL_033b: Unknown result type (might be due to invalid IL or missing references) //IL_0340: Unknown result type (might be due to invalid IL or missing references) //IL_035c: Unknown result type (might be due to invalid IL or missing references) //IL_0361: Unknown result type (might be due to invalid IL or missing references) //IL_036a: Unknown result type (might be due to invalid IL or missing references) //IL_0375: Unknown result type (might be due to invalid IL or missing references) //IL_037a: Unknown result type (might be due to invalid IL or missing references) //IL_03a3: Unknown result type (might be due to invalid IL or missing references) //IL_03a8: Unknown result type (might be due to invalid IL or missing references) //IL_03b1: Unknown result type (might be due to invalid IL or missing references) //IL_03bd: Unknown result type (might be due to invalid IL or missing references) //IL_00cc: Unknown result type (might be due to invalid IL or missing references) //IL_00d1: Unknown result type (might be due to invalid IL or missing references) //IL_00d4: Unknown result type (might be due to invalid IL or missing references) //IL_00d9: Unknown result type (might be due to invalid IL or missing references) //IL_00ed: Unknown result type (might be due to invalid IL or missing references) //IL_00f2: Unknown result type (might be due to invalid IL or missing references) //IL_00f5: Unknown result type (might be due to invalid IL or missing references) //IL_00fa: Unknown result type (might be due to invalid IL or missing references) //IL_010e: Unknown result type (might be due to invalid IL or missing references) //IL_0113: Unknown result type (might be due to invalid IL or missing references) //IL_0117: Unknown result type (might be due to invalid IL or missing references) //IL_011c: Unknown result type (might be due to invalid IL or missing references) //IL_0128: Unknown result type (might be due to invalid IL or missing references) //IL_012d: Unknown result type (might be due to invalid IL or missing references) //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_0136: Unknown result type (might be due to invalid IL or missing references) //IL_0400: Unknown result type (might be due to invalid IL or missing references) //IL_0405: Unknown result type (might be due to invalid IL or missing references) //IL_0421: Unknown result type (might be due to invalid IL or missing references) //IL_0426: Unknown result type (might be due to invalid IL or missing references) //IL_042f: Unknown result type (might be due to invalid IL or missing references) //IL_043a: Unknown result type (might be due to invalid IL or missing references) //IL_043f: Unknown result type (might be due to invalid IL or missing references) //IL_045b: Unknown result type (might be due to invalid IL or missing references) //IL_0460: Unknown result type (might be due to invalid IL or missing references) //IL_0469: Unknown result type (might be due to invalid IL or missing references) //IL_0475: Unknown result type (might be due to invalid IL or missing references) //IL_0169: Unknown result type (might be due to invalid IL or missing references) //IL_016e: Unknown result type (might be due to invalid IL or missing references) //IL_0172: Unknown result type (might be due to invalid IL or missing references) //IL_0177: Unknown result type (might be due to invalid IL or missing references) //IL_018c: Unknown result type (might be due to invalid IL or missing references) //IL_0191: Unknown result type (might be due to invalid IL or missing references) //IL_0195: Unknown result type (might be due to invalid IL or missing references) //IL_019a: Unknown result type (might be due to invalid IL or missing references) //IL_01af: Unknown result type (might be due to invalid IL or missing references) //IL_01b4: Unknown result type (might be due to invalid IL or missing references) //IL_01b8: Unknown result type (might be due to invalid IL or missing references) //IL_01bd: Unknown result type (might be due to invalid IL or missing references) //IL_01c9: Unknown result type (might be due to invalid IL or missing references) //IL_01ce: Unknown result type (might be due to invalid IL or missing references) //IL_01d2: Unknown result type (might be due to invalid IL or missing references) //IL_01d7: Unknown result type (might be due to invalid IL or missing references) //IL_052b: Unknown result type (might be due to invalid IL or missing references) //IL_0530: Unknown result type (might be due to invalid IL or missing references) //IL_054c: Unknown result type (might be due to invalid IL or missing references) //IL_0551: Unknown result type (might be due to invalid IL or missing references) //IL_055a: Unknown result type (might be due to invalid IL or missing references) //IL_0565: Unknown result type (might be due to invalid IL or missing references) //IL_056a: Unknown result type (might be due to invalid IL or missing references) //IL_0586: Unknown result type (might be due to invalid IL or missing references) //IL_058b: Unknown result type (might be due to invalid IL or missing references) //IL_0594: Unknown result type (might be due to invalid IL or missing references) //IL_05a0: Unknown result type (might be due to invalid IL or missing references) //IL_048a: Unknown result type (might be due to invalid IL or missing references) //IL_0490: Unknown result type (might be due to invalid IL or missing references) //IL_049c: Unknown result type (might be due to invalid IL or missing references) //IL_023e: Unknown result type (might be due to invalid IL or missing references) //IL_0243: Unknown result type (might be due to invalid IL or missing references) //IL_025f: Unknown result type (might be due to invalid IL or missing references) //IL_0264: Unknown result type (might be due to invalid IL or missing references) //IL_01f5: Unknown result type (might be due to invalid IL or missing references) //IL_01fa: Unknown result type (might be due to invalid IL or missing references) //IL_0216: Unknown result type (might be due to invalid IL or missing references) //IL_021b: Unknown result type (might be due to invalid IL or missing references) //IL_04b1: Unknown result type (might be due to invalid IL or missing references) //IL_04b7: Unknown result type (might be due to invalid IL or missing references) //IL_04c3: Unknown result type (might be due to invalid IL or missing references) //IL_04d8: Unknown result type (might be due to invalid IL or missing references) //IL_04de: Unknown result type (might be due to invalid IL or missing references) //IL_04ea: Unknown result type (might be due to invalid IL or missing references) //IL_06fb: Unknown result type (might be due to invalid IL or missing references) //IL_0700: Unknown result type (might be due to invalid IL or missing references) //IL_072f: Unknown result type (might be due to invalid IL or missing references) //IL_0734: Unknown result type (might be due to invalid IL or missing references) //IL_073d: Unknown result type (might be due to invalid IL or missing references) //IL_0748: Unknown result type (might be due to invalid IL or missing references) //IL_074d: Unknown result type (might be due to invalid IL or missing references) //IL_0769: Unknown result type (might be due to invalid IL or missing references) //IL_076e: Unknown result type (might be due to invalid IL or missing references) //IL_0777: Unknown result type (might be due to invalid IL or missing references) //IL_0783: Unknown result type (might be due to invalid IL or missing references) //IL_061f: Unknown result type (might be due to invalid IL or missing references) //IL_0624: Unknown result type (might be due to invalid IL or missing references) //IL_0653: Unknown result type (might be due to invalid IL or missing references) //IL_0658: Unknown result type (might be due to invalid IL or missing references) //IL_0661: Unknown result type (might be due to invalid IL or missing references) //IL_066c: Unknown result type (might be due to invalid IL or missing references) //IL_0671: Unknown result type (might be due to invalid IL or missing references) //IL_068d: Unknown result type (might be due to invalid IL or missing references) //IL_0692: Unknown result type (might be due to invalid IL or missing references) //IL_069b: Unknown result type (might be due to invalid IL or missing references) //IL_06a7: Unknown result type (might be due to invalid IL or missing references) //IL_04ff: Unknown result type (might be due to invalid IL or missing references) //IL_0505: Unknown result type (might be due to invalid IL or missing references) //IL_0511: Unknown result type (might be due to invalid IL or missing references) //IL_079d: Unknown result type (might be due to invalid IL or missing references) //IL_07a2: Unknown result type (might be due to invalid IL or missing references) //IL_07d1: Unknown result type (might be due to invalid IL or missing references) //IL_07d6: Unknown result type (might be due to invalid IL or missing references) //IL_07df: Unknown result type (might be due to invalid IL or missing references) //IL_07ea: Unknown result type (might be due to invalid IL or missing references) //IL_07ef: Unknown result type (might be due to invalid IL or missing references) //IL_080b: Unknown result type (might be due to invalid IL or missing references) //IL_0810: Unknown result type (might be due to invalid IL or missing references) //IL_0819: Unknown result type (might be due to invalid IL or missing references) //IL_0825: Unknown result type (might be due to invalid IL or missing references) //IL_0bd4: Unknown result type (might be due to invalid IL or missing references) //IL_0bd9: Unknown result type (might be due to invalid IL or missing references) //IL_0966: Unknown result type (might be due to invalid IL or missing references) //IL_096b: Unknown result type (might be due to invalid IL or missing references) //IL_0971: Unknown result type (might be due to invalid IL or missing references) //IL_0976: Unknown result type (might be due to invalid IL or missing references) //IL_09b0: Unknown result type (might be due to invalid IL or missing references) //IL_09b5: Unknown result type (might be due to invalid IL or missing references) //IL_09bb: Unknown result type (might be due to invalid IL or missing references) //IL_09c0: Unknown result type (might be due to invalid IL or missing references) //IL_09a4: Unknown result type (might be due to invalid IL or missing references) SwimScriptEnablingDisabling(); CheckForCharacterController(); noCollisionWithWaterTimer += 1f; noCollisionWithWaterSplashTimer += 1f; if (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.up / 2f, ((Component)this).transform.position, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).gameObject.layer == 4) { noCollisionWithWaterSplashTimer = 0f; } if (Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled) { Bounds bounds = ((Collider)characterController).bounds; currentHeadPosition = ((Bounds)(ref bounds)).max.y; Bounds bounds2 = ((Collider)characterController).bounds; currentFeetPosition = ((Bounds)(ref bounds2)).min.y; Bounds bounds3 = ((Collider)characterController).bounds; boundMin1 = ((Bounds)(ref bounds3)).min; Bounds bounds4 = ((Collider)characterController).bounds; boundMax1 = ((Bounds)(ref bounds4)).max; } else if (Object.op_Implicit((Object)(object)rigidBody) && Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { Bounds bounds5 = ((Component)this).GetComponent().bounds; currentHeadPosition = ((Bounds)(ref bounds5)).max.y; Bounds bounds6 = ((Component)this).GetComponent().bounds; currentFeetPosition = ((Bounds)(ref bounds6)).min.y; Bounds bounds7 = ((Component)this).GetComponent().bounds; boundMin1 = ((Bounds)(ref bounds7)).min; Bounds bounds8 = ((Component)this).GetComponent().bounds; boundMax1 = ((Bounds)(ref bounds8)).max; if (!inWater) { rbHeadPositionOriginal = currentHeadPosition - ((Component)this).transform.position.y; rbFeetPositionOriginal = currentFeetPosition - ((Component)this).transform.position.y; } else { rbHeadPositionInWater = rbHeadPositionOriginal + ((Component)this).transform.position.y; rbFeetPositionInWater = rbFeetPositionOriginal + ((Component)this).transform.position.y; rbHeadPositionInWater2 = rbHeadPositionInWater - ((rbHeadPositionInWater + rbFeetPositionInWater) / 2f - (currentHeadPosition + currentFeetPosition) / 2f); rbFeetPositionInWater2 = rbFeetPositionInWater - ((rbHeadPositionInWater + rbFeetPositionInWater) / 2f - (currentHeadPosition + currentFeetPosition) / 2f); } } boundMin2 = new Vector3(boundMin1.x, boundMax1.y, boundMin1.x); boundMax2 = new Vector3(boundMax1.x, boundMin1.y, boundMax1.x); if (Physics.Linecast(new Vector3(((Component)this).transform.position.x, currentHeadPosition - jumpInHeight2, ((Component)this).transform.position.z), new Vector3(((Component)this).transform.position.x, (currentHeadPosition + currentFeetPosition) / 2f - jumpInHeight2, ((Component)this).transform.position.z), ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).gameObject.layer == 4) { submergedEnough = true; } else if (((!Physics.Linecast(new Vector3(((Component)this).transform.position.x, currentHeadPosition - jumpInHeight2, ((Component)this).transform.position.z), new Vector3(((Component)this).transform.position.x, currentFeetPosition - jumpInHeight2, ((Component)this).transform.position.z), ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(boundMax1, boundMin1, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(boundMin1, boundMax1, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(boundMax2, boundMin2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(boundMin2, boundMax2, ref hit, LayerMask.op_Implicit(collisionLayers))) || (Physics.Linecast(new Vector3(((Component)this).transform.position.x, currentHeadPosition - jumpInHeight2, ((Component)this).transform.position.z), new Vector3(((Component)this).transform.position.x, currentFeetPosition - jumpInHeight2, ((Component)this).transform.position.z), ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).gameObject.layer != 4)) && noCollisionWithWaterTimer < 5f && (groundedAfterSwimming || notInWaterCollider)) { submergedEnough = true; } else if (!inWater || (canJumpOut && Physics.Linecast(new Vector3(((Component)this).transform.position.x, (currentHeadPosition + currentFeetPosition) / 2f - 0.2f - jumpInHeight2, ((Component)this).transform.position.z), new Vector3(((Component)this).transform.position.x, currentFeetPosition - jumpInHeight2, ((Component)this).transform.position.z), ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).gameObject.layer == 4 && inWater)) { submergedEnough = false; } if (submergedEnough && (!Physics.Linecast(new Vector3(((Component)this).transform.position.x, (currentHeadPosition + currentFeetPosition) / 2f + 0.3f - jumpInHeight2, ((Component)this).transform.position.z), new Vector3(((Component)this).transform.position.x, currentFeetPosition - jumpInHeight2, ((Component)this).transform.position.z), ref hit, LayerMask.op_Implicit(collisionLayers)) || (Physics.Linecast(new Vector3(((Component)this).transform.position.x, (currentHeadPosition + currentFeetPosition) / 2f + 0.3f - jumpInHeight2, ((Component)this).transform.position.z), new Vector3(((Component)this).transform.position.x, currentFeetPosition - jumpInHeight2, ((Component)this).transform.position.z), ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).gameObject.layer != 4))) { submergedOnceAlready = true; } else if (canJumpOut || !inWater) { submergedOnceAlready = false; } if (noCollisionWithWaterTimer < 5f && (!inMidAirFromJump || currentlyOnWall || (moveDirection.y < 0f && !jumpPerformed)) && submergedEnough && submergedOnceAlready && swimming.allowSwimming && (!canJumpOut || !atJumpHeight) && (moveDirection.y <= 0f || groundedAfterSwimming || notInWaterCollider || inWater)) { if (!inWater) { inWater = true; inWaterTimer = 0f; swimmingMovementTransferred = false; CheckForCharacterController(); climbDirection = Vector3.zero; swimDirection = Vector3.zero; currentlyOnWall = false; moveSpeed = 0f; if (Object.op_Implicit((Object)(object)rigidBody)) { rigidBody.velocity = Vector3.zero; } slidingVector = Vector3.zero; slideMovement = Vector3.zero; groundedAfterSwimming = false; inMidAirFromJump = false; inMidAirFromWallJump = false; if (Input.GetButton("Jump")) { heldSwimButtonOnEnter = true; } else { heldSwimButtonOnEnter = false; } if (movement.sideScrolling.lockMovementOnXAxis && !movement.sideScrolling.lockMovementOnZAxis) { if (Input.GetAxisRaw("Horizontal") > 0f) { swimHorizontalValue = -1f; horizontalValue = -1f; } else if (Input.GetAxisRaw("Horizontal") < 0f) { swimHorizontalValue = 1f; horizontalValue = 1f; } } else if (movement.sideScrolling.lockMovementOnZAxis && !movement.sideScrolling.lockMovementOnXAxis) { if (Input.GetAxisRaw("Horizontal") > 0f) { swimHorizontalValue = 1f; horizontalValue = 1f; } else if (Input.GetAxisRaw("Horizontal") < 0f) { swimHorizontalValue = -1f; horizontalValue = -1f; } } } } else if (inWater) { inWater = false; outOfWaterTimer = 0f; CheckForCharacterController(); swimmingMovementSpeed = 0f; swimmingMovementTransferred = true; grounded.currentlyGrounded = true; inMidAirFromJump = false; inMidAirFromWallJump = false; currentJumpNumber = totalJumpNumber; turnBack = false; back2 = false; currentlyClimbingWall = false; jumpPressed = false; jumpPossible = true; doubleJumpPossible = true; if (atJumpHeight) { Jump(); } swimDirection = new Vector3(swimDirection.x, 0f, swimDirection.z); groundedAfterSwimming = false; } inWaterTimer += 0.2f; outOfWaterTimer += 0.2f; } private void Swim2() { //IL_0052: Unknown result type (might be due to invalid IL or missing references) //IL_0057: Unknown result type (might be due to invalid IL or missing references) //IL_007e: Unknown result type (might be due to invalid IL or missing references) //IL_0083: Unknown result type (might be due to invalid IL or missing references) //IL_008b: Unknown result type (might be due to invalid IL or missing references) //IL_0096: Unknown result type (might be due to invalid IL or missing references) //IL_009b: Unknown result type (might be due to invalid IL or missing references) //IL_00af: Unknown result type (might be due to invalid IL or missing references) //IL_00b4: Unknown result type (might be due to invalid IL or missing references) //IL_00bc: Unknown result type (might be due to invalid IL or missing references) //IL_00c8: Unknown result type (might be due to invalid IL or missing references) //IL_00e2: Unknown result type (might be due to invalid IL or missing references) //IL_00e7: Unknown result type (might be due to invalid IL or missing references) //IL_010f: Unknown result type (might be due to invalid IL or missing references) //IL_0114: Unknown result type (might be due to invalid IL or missing references) //IL_011d: Unknown result type (might be due to invalid IL or missing references) //IL_0128: Unknown result type (might be due to invalid IL or missing references) //IL_012d: Unknown result type (might be due to invalid IL or missing references) //IL_0142: Unknown result type (might be due to invalid IL or missing references) //IL_0147: Unknown result type (might be due to invalid IL or missing references) //IL_0150: Unknown result type (might be due to invalid IL or missing references) //IL_015c: Unknown result type (might be due to invalid IL or missing references) if (atJumpHeight && yDeg < swimming.angleNeededToJumpOut) { stillAtTop = true; } if (yDeg >= swimming.angleNeededToJumpOut || !inWater || !Physics.Linecast(new Vector3(((Component)this).transform.position.x, (currentHeadPosition + currentFeetPosition) / 2f + 0.5f, ((Component)this).transform.position.z), new Vector3(((Component)this).transform.position.x, currentFeetPosition, ((Component)this).transform.position.z), ref hit, LayerMask.op_Implicit(collisionLayers)) || (Physics.Linecast(new Vector3(((Component)this).transform.position.x, (currentHeadPosition + currentFeetPosition) / 2f + 0.5f, ((Component)this).transform.position.z), new Vector3(((Component)this).transform.position.x, currentFeetPosition, ((Component)this).transform.position.z), ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).gameObject.layer != 4)) { stillAtTop = false; } if (Input.GetAxis("Horizontal") > 0f) { hPositive = true; } else if (Input.GetAxis("Horizontal") < 0f) { hPositive = false; } if (hPositive) { hAxis = (Mathf.Abs(Input.GetAxis("Horizontal")) - Mathf.Abs(Input.GetAxis("Vertical")) + 1f) / 2f; if (hAxis != 0f) { hAxis2 = hAxis * 2f - 1f; } else { hAxis2 = hAxis; } } else { hAxis = (0f - (Mathf.Abs(Input.GetAxis("Horizontal")) - Mathf.Abs(Input.GetAxis("Vertical")) + 1f)) / 2f; if (hAxis != 0f) { hAxis2 = hAxis * 2f + 1f; } else { hAxis2 = hAxis; } } if ((vPositive && hPositive && ((Input.GetAxis("Horizontal") > 0f && Input.GetAxis("Vertical") > 0f) || (Input.GetAxis("Vertical") > 0f && Input.GetAxis("Horizontal") > 0f))) || (!vPositive && !hPositive && ((Input.GetAxis("Horizontal") < 0f && Input.GetAxis("Vertical") < 0f) || (Input.GetAxis("Vertical") < 0f && Input.GetAxis("Horizontal") < 0f))) || (vPositive && !hPositive && ((Input.GetAxis("Horizontal") > 0f && Input.GetAxis("Vertical") < 0f) || (Input.GetAxis("Vertical") > 0f && Input.GetAxis("Horizontal") < 0f))) || (!vPositive && hPositive && ((Input.GetAxis("Horizontal") < 0f && Input.GetAxis("Vertical") > 0f) || (Input.GetAxis("Vertical") < 0f && Input.GetAxis("Horizontal") > 0f)))) { hAxis2 = hAxis; } else { if (hPositive && hAxis2 < 0f) { hAxis2 = 0f; } if (!hPositive && hAxis2 > 0f) { hAxis2 = 0f; } } if (Input.GetAxis("Vertical") > 0f) { vPositive = true; } else if (Input.GetAxis("Vertical") < 0f) { vPositive = false; } if (vPositive) { vAxis = (Mathf.Abs(Input.GetAxis("Vertical")) - Mathf.Abs(Input.GetAxis("Horizontal")) + 1f) / 2f; if (vAxis != 0f) { vAxis2 = vAxis * 2f - 1f; } else { vAxis2 = vAxis; } } else { vAxis = (0f - (Mathf.Abs(Input.GetAxis("Vertical")) - Mathf.Abs(Input.GetAxis("Horizontal")) + 1f)) / 2f; if (vAxis != 0f) { vAxis2 = vAxis * 2f + 1f; } else { vAxis2 = vAxis; } } if ((vPositive && hPositive && ((Input.GetAxis("Horizontal") > 0f && Input.GetAxis("Vertical") > 0f) || (Input.GetAxis("Vertical") > 0f && Input.GetAxis("Horizontal") > 0f))) || (!vPositive && !hPositive && ((Input.GetAxis("Horizontal") < 0f && Input.GetAxis("Vertical") < 0f) || (Input.GetAxis("Vertical") < 0f && Input.GetAxis("Horizontal") < 0f))) || (vPositive && !hPositive && ((Input.GetAxis("Horizontal") > 0f && Input.GetAxis("Vertical") < 0f) || (Input.GetAxis("Vertical") > 0f && Input.GetAxis("Horizontal") < 0f))) || (!vPositive && hPositive && ((Input.GetAxis("Horizontal") < 0f && Input.GetAxis("Vertical") > 0f) || (Input.GetAxis("Vertical") < 0f && Input.GetAxis("Horizontal") > 0f)))) { vAxis2 = vAxis; return; } if (vPositive && vAxis2 < 0f) { vAxis2 = 0f; } if (!vPositive && vAxis2 > 0f) { vAxis2 = 0f; } } private void Swim3() { //IL_045e: Unknown result type (might be due to invalid IL or missing references) //IL_0463: Unknown result type (might be due to invalid IL or missing references) //IL_04a7: Unknown result type (might be due to invalid IL or missing references) //IL_04ac: Unknown result type (might be due to invalid IL or missing references) //IL_0482: Unknown result type (might be due to invalid IL or missing references) //IL_0487: Unknown result type (might be due to invalid IL or missing references) //IL_0557: Unknown result type (might be due to invalid IL or missing references) //IL_055c: Unknown result type (might be due to invalid IL or missing references) if (!Input.GetButton("Jump")) { heldSwimButtonOnEnter = false; } if (atJumpHeight && yDeg < swimming.angleNeededToJumpOut) { if (!Input.GetButton("Jump")) { canPressSwimButton = true; } } else { canPressSwimButton = false; } if (canPressSwimButton && Input.GetButton("Jump")) { swimButtonPressed = true; outOfWaterTimer = 0f; } else { swimButtonPressed = false; } if (!inFirstPersonMode || !movement.firstPerson.onlyRotateWithCamera || (Object.op_Implicit((Object)(object)((Component)playerCamera).GetComponent()) && !((Component)playerCamera).GetComponent().goneThroughFirstPersonUpdate)) { if (!swimming.invertXRotation) { xDeg += Input.GetAxis("Horizontal") * swimming.swimRotationSpeed * 0.3f; } else { xDeg -= Input.GetAxis("Horizontal") * swimming.swimRotationSpeed * 0.3f; } if (!swimming.invertYRotation) { yDeg += Input.GetAxis("Vertical") * swimming.swimRotationSpeed * 0.2f; } else { yDeg -= Input.GetAxis("Vertical") * swimming.swimRotationSpeed * 0.2f; } cameraYDeg = 0f; cameraYDeg2 = 0f; horizontalRotValue = 0f; verticalRotValue = 0f; rotDiff = 0f; return; } if ((hAxis2 != 0f || vAxis2 != 0f) && swimming.firstPerson.allowShiftingWithJoystick) { if (Mathf.Abs(horizontalRotValue) < 90f) { if (!swimming.invertXRotation) { horizontalRotValue += hAxis2 * swimming.firstPerson.joystickMovementSpeed * 0.6f; } else { horizontalRotValue -= hAxis2 * swimming.firstPerson.joystickMovementSpeed * 0.6f; } } if (horizontalRotValue >= 89.99f) { horizontalRotValue = 89.99f; } else if (horizontalRotValue <= -89.99f) { horizontalRotValue = -89.99f; } if (Mathf.Abs(verticalRotValue) < 180f) { if (!swimming.invertYRotation) { verticalRotValue += vAxis2 * swimming.firstPerson.joystickMovementSpeed * 0.4f; } else { verticalRotValue -= vAxis2 * swimming.firstPerson.joystickMovementSpeed * 0.4f; } } if (verticalRotValue >= 89.99f) { verticalRotValue = 89.99f; } else if (verticalRotValue <= -89.99f) { verticalRotValue = -89.99f; } } else { horizontalRotValue = Mathf.Lerp(horizontalRotValue, 0f, swimming.firstPerson.joystickDecelerationSpeed * Time.deltaTime); verticalRotValue = Mathf.Lerp(verticalRotValue, 0f, swimming.firstPerson.joystickDecelerationSpeed * Time.deltaTime); } if (verticalRotValue >= 180f) { verticalRotValue = 360f - verticalRotValue; } if (!Object.op_Implicit((Object)(object)((Component)playerCamera).GetComponent())) { if (((Component)playerCamera).transform.eulerAngles.x < 180f) { cameraYDeg = ((Component)playerCamera).transform.eulerAngles.x; } else { cameraYDeg = ((Component)playerCamera).transform.eulerAngles.x - 360f; } } else { cameraYDeg2 = ((Component)playerCamera).GetComponent().yFpDeg2; rotDiff = 90f + swimming.firstPerson.cameraAngleOffset; cameraYDeg = cameraYDeg2 + rotDiff; cameraYDeg = ClampAngle(cameraYDeg, yRotMaxLimit, yRotMinLimit); } if (swimming.firstPerson.allowMovement || !inFirstPersonMode) { xDeg = ((Component)playerCamera).transform.eulerAngles.y + horizontalRotValue; yDeg = cameraYDeg + verticalRotValue; } } private void Swim4() { //IL_07d1: Unknown result type (might be due to invalid IL or missing references) //IL_07d6: Unknown result type (might be due to invalid IL or missing references) //IL_0827: Unknown result type (might be due to invalid IL or missing references) //IL_07f9: Unknown result type (might be due to invalid IL or missing references) //IL_07ff: Unknown result type (might be due to invalid IL or missing references) //IL_080f: Unknown result type (might be due to invalid IL or missing references) //IL_049c: Unknown result type (might be due to invalid IL or missing references) //IL_04a1: Unknown result type (might be due to invalid IL or missing references) //IL_07ae: Unknown result type (might be due to invalid IL or missing references) //IL_07b3: Unknown result type (might be due to invalid IL or missing references) if (Input.GetAxis("Vertical") == 0f) { if (yDeg > (float)(-swimming.yIdleRotationMinLimit + 80)) { yRotMinLimit = Mathf.Lerp(yRotMinLimit, (float)(-swimming.yIdleRotationMinLimit + 80), 3f * Time.deltaTime); } else { yRotMinLimit = -swimming.yIdleRotationMinLimit + 80; } if (yDeg < (float)(-swimming.yIdleRotationMaxLimit + 80)) { yRotMaxLimit = Mathf.Lerp(yRotMaxLimit, (float)(-swimming.yIdleRotationMaxLimit + 80), 3f * Time.deltaTime); } else { yRotMaxLimit = -swimming.yIdleRotationMaxLimit + 80; } } else { yRotMinLimit = -swimming.ySwimmingRotationMinLimit + 80; yRotMaxLimit = -swimming.ySwimmingRotationMaxLimit + 80; } if (yDeg >= 180f) { yDeg = 360f - yDeg; } yDeg = ClampAngle(yDeg, yRotMaxLimit, yRotMinLimit); if (yDeg < swimming.angleNeededToJumpOut && swimButtonPressed) { canJumpOut = true; outOfWaterTimer = 0f; } else { canJumpOut = false; } if (movement.sideScrolling.lockMovementOnXAxis && !movement.sideScrolling.lockMovementOnZAxis) { if (hAxis2 > 0.25f) { if (axisNotPushedLeftOrRight) { swimHorizontalValue = -1f; horizontalValue = -1f; } axisNotPushedLeftOrRight = false; } else if (hAxis2 < -0.25f) { if (axisNotPushedLeftOrRight) { swimHorizontalValue = 1f; horizontalValue = 1f; } axisNotPushedLeftOrRight = false; } if (Mathf.Abs(hAxis2) <= 0.25f && Mathf.Abs(vAxis2) <= 0.5f) { axisNotPushedLeftOrRight = true; } if (swimHorizontalValue == 1f) { if (!movement.sideScrolling.flipAxisRotation) { if (movement.sideScrolling.rotateInwards) { xDeg2 = Mathf.Lerp(xDeg2, 359.999f, swimming.swimRotationSpeed * Time.deltaTime); } else { xDeg2 = Mathf.Lerp(xDeg2, 0.001f, swimming.swimRotationSpeed * Time.deltaTime); } } else if (movement.sideScrolling.rotateInwards) { xDeg2 = Mathf.Lerp(xDeg2, 539.999f, swimming.swimRotationSpeed * Time.deltaTime); } else { xDeg2 = Mathf.Lerp(xDeg2, 180.001f, swimming.swimRotationSpeed * Time.deltaTime); } } else if (swimHorizontalValue == -1f) { if (!movement.sideScrolling.flipAxisRotation) { if (movement.sideScrolling.rotateInwards) { xDeg2 = Mathf.Lerp(xDeg2, 180.001f, swimming.swimRotationSpeed * Time.deltaTime); } else { xDeg2 = Mathf.Lerp(xDeg2, 179.999f, swimming.swimRotationSpeed * Time.deltaTime); } } else if (movement.sideScrolling.rotateInwards) { xDeg2 = Mathf.Lerp(xDeg2, 360.001f, swimming.swimRotationSpeed * Time.deltaTime); } else { xDeg2 = Mathf.Lerp(xDeg2, 359.999f, swimming.swimRotationSpeed * Time.deltaTime); } } swimRotation = Quaternion.Euler(yDeg, xDeg2, 0f); } else if (movement.sideScrolling.lockMovementOnZAxis && !movement.sideScrolling.lockMovementOnXAxis) { if (hAxis2 > 0.25f) { if (axisNotPushedLeftOrRight) { swimHorizontalValue = 1f; horizontalValue = 1f; } axisNotPushedLeftOrRight = false; } else if (hAxis2 < -0.25f) { if (axisNotPushedLeftOrRight) { swimHorizontalValue = -1f; horizontalValue = -1f; } axisNotPushedLeftOrRight = false; } if (Mathf.Abs(hAxis2) <= 0.25f && Mathf.Abs(vAxis2) <= 0.5f) { axisNotPushedLeftOrRight = true; } if (swimHorizontalValue == 1f) { if (!movement.sideScrolling.flipAxisRotation) { if (movement.sideScrolling.rotateInwards) { xDeg2 = Mathf.Lerp(xDeg2, 90.001f, swimming.swimRotationSpeed * Time.deltaTime); } else { xDeg2 = Mathf.Lerp(xDeg2, 89.999f, swimming.swimRotationSpeed * Time.deltaTime); } } else if (movement.sideScrolling.rotateInwards) { xDeg2 = Mathf.Lerp(xDeg2, 270.001f, swimming.swimRotationSpeed * Time.deltaTime); } else { xDeg2 = Mathf.Lerp(xDeg2, 269.999f, swimming.swimRotationSpeed * Time.deltaTime); } } else if (swimHorizontalValue == -1f) { if (!movement.sideScrolling.flipAxisRotation) { if (movement.sideScrolling.rotateInwards) { xDeg2 = Mathf.Lerp(xDeg2, 269.001f, swimming.swimRotationSpeed * Time.deltaTime); } else { xDeg2 = Mathf.Lerp(xDeg2, -89.999f, swimming.swimRotationSpeed * Time.deltaTime); } } else if (movement.sideScrolling.rotateInwards) { xDeg2 = Mathf.Lerp(xDeg2, 449.001f, swimming.swimRotationSpeed * Time.deltaTime); } else { xDeg2 = Mathf.Lerp(xDeg2, 90.001f, swimming.swimRotationSpeed * Time.deltaTime); } } swimRotation = Quaternion.Euler(yDeg, xDeg2, 0f); } else { swimRotation = Quaternion.Euler(yDeg, xDeg, 0f); } if (inWaterTimer < 5f) { ((Component)this).transform.localRotation = Quaternion.Slerp(((Component)this).transform.localRotation, swimRotation, 15f * Time.deltaTime); } else { ((Component)this).transform.localRotation = swimRotation; } } private void Swim5() { //IL_0134: Unknown result type (might be due to invalid IL or missing references) //IL_0139: Unknown result type (might be due to invalid IL or missing references) //IL_0149: Unknown result type (might be due to invalid IL or missing references) //IL_014e: Unknown result type (might be due to invalid IL or missing references) //IL_00e5: Unknown result type (might be due to invalid IL or missing references) //IL_00f0: Unknown result type (might be due to invalid IL or missing references) //IL_00f5: Unknown result type (might be due to invalid IL or missing references) //IL_0108: Unknown result type (might be due to invalid IL or missing references) //IL_0113: Unknown result type (might be due to invalid IL or missing references) //IL_0118: Unknown result type (might be due to invalid IL or missing references) //IL_0120: Unknown result type (might be due to invalid IL or missing references) //IL_0125: Unknown result type (might be due to invalid IL or missing references) //IL_00c2: Unknown result type (might be due to invalid IL or missing references) //IL_00cd: Unknown result type (might be due to invalid IL or missing references) //IL_00d2: Unknown result type (might be due to invalid IL or missing references) //IL_02c3: Unknown result type (might be due to invalid IL or missing references) //IL_02c8: Unknown result type (might be due to invalid IL or missing references) //IL_02ff: Unknown result type (might be due to invalid IL or missing references) //IL_0304: Unknown result type (might be due to invalid IL or missing references) //IL_030d: Unknown result type (might be due to invalid IL or missing references) //IL_0318: Unknown result type (might be due to invalid IL or missing references) //IL_031d: Unknown result type (might be due to invalid IL or missing references) //IL_0339: Unknown result type (might be due to invalid IL or missing references) //IL_033e: Unknown result type (might be due to invalid IL or missing references) //IL_0347: Unknown result type (might be due to invalid IL or missing references) //IL_0353: Unknown result type (might be due to invalid IL or missing references) //IL_017b: Unknown result type (might be due to invalid IL or missing references) //IL_0180: Unknown result type (might be due to invalid IL or missing references) //IL_01b6: Unknown result type (might be due to invalid IL or missing references) //IL_01bb: Unknown result type (might be due to invalid IL or missing references) //IL_01c3: Unknown result type (might be due to invalid IL or missing references) //IL_01ce: Unknown result type (might be due to invalid IL or missing references) //IL_01d3: Unknown result type (might be due to invalid IL or missing references) //IL_01ef: Unknown result type (might be due to invalid IL or missing references) //IL_01f4: Unknown result type (might be due to invalid IL or missing references) //IL_01fd: Unknown result type (might be due to invalid IL or missing references) //IL_0209: Unknown result type (might be due to invalid IL or missing references) //IL_0402: Unknown result type (might be due to invalid IL or missing references) //IL_0407: Unknown result type (might be due to invalid IL or missing references) //IL_056e: Unknown result type (might be due to invalid IL or missing references) //IL_0573: Unknown result type (might be due to invalid IL or missing references) //IL_038a: Unknown result type (might be due to invalid IL or missing references) //IL_038f: Unknown result type (might be due to invalid IL or missing references) //IL_03ac: Unknown result type (might be due to invalid IL or missing references) //IL_03b1: Unknown result type (might be due to invalid IL or missing references) //IL_0240: Unknown result type (might be due to invalid IL or missing references) //IL_0245: Unknown result type (might be due to invalid IL or missing references) //IL_0262: Unknown result type (might be due to invalid IL or missing references) //IL_0267: Unknown result type (might be due to invalid IL or missing references) //IL_0614: Unknown result type (might be due to invalid IL or missing references) //IL_0619: Unknown result type (might be due to invalid IL or missing references) //IL_05da: Unknown result type (might be due to invalid IL or missing references) //IL_05df: Unknown result type (might be due to invalid IL or missing references) //IL_054a: Unknown result type (might be due to invalid IL or missing references) //IL_054f: Unknown result type (might be due to invalid IL or missing references) //IL_048a: Unknown result type (might be due to invalid IL or missing references) //IL_048f: Unknown result type (might be due to invalid IL or missing references) //IL_049e: Unknown result type (might be due to invalid IL or missing references) //IL_04a3: Unknown result type (might be due to invalid IL or missing references) //IL_04ac: Unknown result type (might be due to invalid IL or missing references) //IL_06f4: Unknown result type (might be due to invalid IL or missing references) //IL_06f9: Unknown result type (might be due to invalid IL or missing references) //IL_064f: Unknown result type (might be due to invalid IL or missing references) //IL_0654: Unknown result type (might be due to invalid IL or missing references) //IL_0669: Unknown result type (might be due to invalid IL or missing references) //IL_066e: Unknown result type (might be due to invalid IL or missing references) //IL_0677: Unknown result type (might be due to invalid IL or missing references) //IL_0701: Unknown result type (might be due to invalid IL or missing references) //IL_0706: Unknown result type (might be due to invalid IL or missing references) //IL_0716: Unknown result type (might be due to invalid IL or missing references) //IL_071b: Unknown result type (might be due to invalid IL or missing references) //IL_069e: Unknown result type (might be due to invalid IL or missing references) //IL_06a3: Unknown result type (might be due to invalid IL or missing references) //IL_0748: Unknown result type (might be due to invalid IL or missing references) //IL_074d: Unknown result type (might be due to invalid IL or missing references) if (Input.GetButton("Jump")) { swimmingMovementSpeed = Mathf.Lerp(swimmingMovementSpeed, swimming.swimMovementSpeed, swimming.accelerationRate * Time.deltaTime); } else { swimmingMovementSpeed = Mathf.Lerp(swimmingMovementSpeed, 0f, swimming.decelerationRate * Time.deltaTime); } if (swimming.firstPerson.allowMovement || !inFirstPersonMode) { if ((!atJumpHeight || yDeg >= swimming.angleNeededToJumpOut) && !stillAtTop) { swimDirection = ((Component)this).transform.up * swimmingMovementSpeed; } else { swimDirection = new Vector3((((Component)this).transform.up * swimmingMovementSpeed).x, 0f, (((Component)this).transform.up * swimmingMovementSpeed).z); } } else { swimDirection = Vector3.Lerp(swimDirection, Vector3.zero, 3f * Time.deltaTime); } if (Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled) { if (Physics.Linecast(new Vector3(((Component)this).transform.position.x, (currentHeadPosition + currentFeetPosition) / 2f + (currentHeadPosition - currentFeetPosition) + jumpOutHeight2, ((Component)this).transform.position.z), new Vector3(((Component)this).transform.position.x, currentFeetPosition + jumpOutHeight2, ((Component)this).transform.position.z), ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).gameObject.layer == 4) { inWaterPosY = ((RaycastHit)(ref hit)).point.y - (currentHeadPosition - currentFeetPosition) + (((Component)this).transform.position.y - currentFeetPosition) / 1.75f + 0.5f + jumpOutHeight2; reachedTopOfWater = true; } else { atJumpHeight = false; } } else if (Object.op_Implicit((Object)(object)rigidBody)) { if (Physics.Linecast(new Vector3(((Component)this).transform.position.x, (rbHeadPositionInWater2 + rbFeetPositionInWater2) / 2f + (rbHeadPositionInWater2 - rbFeetPositionInWater2) + jumpOutHeight2, ((Component)this).transform.position.z), new Vector3(((Component)this).transform.position.x, rbFeetPositionInWater2 + jumpOutHeight2, ((Component)this).transform.position.z), ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).gameObject.layer == 4) { inWaterPosY = ((RaycastHit)(ref hit)).point.y - (rbHeadPositionInWater2 - rbFeetPositionInWater2) + (((Component)this).transform.position.y - rbFeetPositionInWater2) / 1.75f + 0.5f + jumpOutHeight2; reachedTopOfWater = true; } else { atJumpHeight = false; } } if (reachedTopOfWater && ((Component)this).transform.position.y >= inWaterPosY + (swimming.walkOutHeight / 10f + 0.17f) && noCollisionTimer < 5f && inWater) { inWater = false; outOfWaterTimer = 0f; CheckForCharacterController(); if (yDeg >= 92.55f) { ((Component)this).transform.eulerAngles = new Vector3(90f, ((Component)this).transform.eulerAngles.y, ((Component)this).transform.eulerAngles.z); } swimmingMovementSpeed = 0f; swimmingMovementTransferred = true; grounded.currentlyGrounded = true; inMidAirFromJump = false; inMidAirFromWallJump = false; currentJumpNumber = totalJumpNumber; turnBack = false; back2 = false; currentlyClimbingWall = false; jumpPressed = false; jumpPossible = false; jumpEnabled = false; doubleJumpPossible = true; submergedEnough = false; submergedOnceAlready = false; swimDirection = new Vector3(swimDirection.x, 0f, swimDirection.z); groundedAfterSwimming = true; } if (reachedTopOfWater && ((Component)this).transform.position.y >= inWaterPosY && yDeg < 92.55f) { atJumpHeight = true; } else if (yDeg >= 92.55f) { atJumpHeight = false; } if ((atJumpHeight || (reachedTopOfWater && ((Component)this).transform.position.y + 0.01f >= inWaterPosY && !Input.GetButton("Jump"))) && Mathf.Abs(inWaterPosY - ((Component)this).transform.position.y) >= 0.1f && noCollisionTimer >= 5f) { ((Component)this).transform.position = new Vector3(((Component)this).transform.position.x, inWaterPosY, ((Component)this).transform.position.z); } if (atJumpHeight || (reachedTopOfWater && ((Component)this).transform.position.y + 0.01f >= inWaterPosY && !Input.GetButton("Jump")) || stillAtTop) { swimDirection = new Vector3(swimDirection.x, 0f, swimDirection.z); } moveDirection = Vector3.Lerp(moveDirection, Vector3.zero, 6f * Time.deltaTime); if (atJumpHeight) { moveDirection = new Vector3(moveDirection.x, 0f, moveDirection.z); } } private void Swim6() { //IL_02b8: Unknown result type (might be due to invalid IL or missing references) //IL_0029: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_056d: Unknown result type (might be due to invalid IL or missing references) //IL_0573: Unknown result type (might be due to invalid IL or missing references) //IL_0579: Unknown result type (might be due to invalid IL or missing references) //IL_0583: Unknown result type (might be due to invalid IL or missing references) //IL_0588: Unknown result type (might be due to invalid IL or missing references) //IL_0592: Unknown result type (might be due to invalid IL or missing references) //IL_0597: Unknown result type (might be due to invalid IL or missing references) //IL_027c: Unknown result type (might be due to invalid IL or missing references) //IL_0286: Unknown result type (might be due to invalid IL or missing references) //IL_0290: Unknown result type (might be due to invalid IL or missing references) //IL_0295: Unknown result type (might be due to invalid IL or missing references) //IL_02ea: Unknown result type (might be due to invalid IL or missing references) //IL_02ef: Unknown result type (might be due to invalid IL or missing references) //IL_0066: Unknown result type (might be due to invalid IL or missing references) //IL_006b: Unknown result type (might be due to invalid IL or missing references) //IL_0822: Unknown result type (might be due to invalid IL or missing references) //IL_082c: Unknown result type (might be due to invalid IL or missing references) //IL_0832: Unknown result type (might be due to invalid IL or missing references) //IL_0837: Unknown result type (might be due to invalid IL or missing references) //IL_0841: Unknown result type (might be due to invalid IL or missing references) //IL_0847: Unknown result type (might be due to invalid IL or missing references) //IL_0851: Unknown result type (might be due to invalid IL or missing references) //IL_0857: Unknown result type (might be due to invalid IL or missing references) //IL_085c: Unknown result type (might be due to invalid IL or missing references) //IL_0866: Unknown result type (might be due to invalid IL or missing references) //IL_0872: Unknown result type (might be due to invalid IL or missing references) //IL_05ca: Unknown result type (might be due to invalid IL or missing references) //IL_05cf: Unknown result type (might be due to invalid IL or missing references) //IL_05d3: Unknown result type (might be due to invalid IL or missing references) //IL_05ef: Unknown result type (might be due to invalid IL or missing references) //IL_05f4: Unknown result type (might be due to invalid IL or missing references) //IL_05f9: Unknown result type (might be due to invalid IL or missing references) //IL_05fe: Unknown result type (might be due to invalid IL or missing references) //IL_060a: Unknown result type (might be due to invalid IL or missing references) //IL_060f: Unknown result type (might be due to invalid IL or missing references) //IL_0613: Unknown result type (might be due to invalid IL or missing references) //IL_062f: Unknown result type (might be due to invalid IL or missing references) //IL_0634: Unknown result type (might be due to invalid IL or missing references) //IL_0639: Unknown result type (might be due to invalid IL or missing references) //IL_063e: Unknown result type (might be due to invalid IL or missing references) //IL_04f6: Unknown result type (might be due to invalid IL or missing references) //IL_04fc: Unknown result type (might be due to invalid IL or missing references) //IL_0526: Unknown result type (might be due to invalid IL or missing references) //IL_052b: Unknown result type (might be due to invalid IL or missing references) //IL_0531: Unknown result type (might be due to invalid IL or missing references) //IL_053b: Unknown result type (might be due to invalid IL or missing references) //IL_0540: Unknown result type (might be due to invalid IL or missing references) //IL_054a: Unknown result type (might be due to invalid IL or missing references) //IL_054f: Unknown result type (might be due to invalid IL or missing references) //IL_049f: Unknown result type (might be due to invalid IL or missing references) //IL_04a5: Unknown result type (might be due to invalid IL or missing references) //IL_04b0: Unknown result type (might be due to invalid IL or missing references) //IL_04b5: Unknown result type (might be due to invalid IL or missing references) //IL_04bb: Unknown result type (might be due to invalid IL or missing references) //IL_04c5: Unknown result type (might be due to invalid IL or missing references) //IL_04ca: Unknown result type (might be due to invalid IL or missing references) //IL_04d4: Unknown result type (might be due to invalid IL or missing references) //IL_04d9: Unknown result type (might be due to invalid IL or missing references) //IL_030f: Unknown result type (might be due to invalid IL or missing references) //IL_0314: Unknown result type (might be due to invalid IL or missing references) //IL_034b: Unknown result type (might be due to invalid IL or missing references) //IL_0350: Unknown result type (might be due to invalid IL or missing references) //IL_0359: Unknown result type (might be due to invalid IL or missing references) //IL_0364: Unknown result type (might be due to invalid IL or missing references) //IL_0369: Unknown result type (might be due to invalid IL or missing references) //IL_0385: Unknown result type (might be due to invalid IL or missing references) //IL_038a: Unknown result type (might be due to invalid IL or missing references) //IL_0393: Unknown result type (might be due to invalid IL or missing references) //IL_039f: Unknown result type (might be due to invalid IL or missing references) //IL_025e: Unknown result type (might be due to invalid IL or missing references) //IL_0268: Unknown result type (might be due to invalid IL or missing references) //IL_026d: Unknown result type (might be due to invalid IL or missing references) //IL_0217: Unknown result type (might be due to invalid IL or missing references) //IL_0221: Unknown result type (might be due to invalid IL or missing references) //IL_0226: Unknown result type (might be due to invalid IL or missing references) //IL_008a: Unknown result type (might be due to invalid IL or missing references) //IL_008f: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_00ca: Unknown result type (might be due to invalid IL or missing references) //IL_00d2: Unknown result type (might be due to invalid IL or missing references) //IL_00dd: Unknown result type (might be due to invalid IL or missing references) //IL_00e2: Unknown result type (might be due to invalid IL or missing references) //IL_00fd: Unknown result type (might be due to invalid IL or missing references) //IL_0102: Unknown result type (might be due to invalid IL or missing references) //IL_010b: Unknown result type (might be due to invalid IL or missing references) //IL_0117: Unknown result type (might be due to invalid IL or missing references) //IL_08b0: Unknown result type (might be due to invalid IL or missing references) //IL_08ba: Unknown result type (might be due to invalid IL or missing references) //IL_08c0: Unknown result type (might be due to invalid IL or missing references) //IL_08ca: Unknown result type (might be due to invalid IL or missing references) //IL_08cf: Unknown result type (might be due to invalid IL or missing references) //IL_08d9: Unknown result type (might be due to invalid IL or missing references) //IL_08df: Unknown result type (might be due to invalid IL or missing references) //IL_08e9: Unknown result type (might be due to invalid IL or missing references) //IL_08ef: Unknown result type (might be due to invalid IL or missing references) //IL_08f9: Unknown result type (might be due to invalid IL or missing references) //IL_08fe: Unknown result type (might be due to invalid IL or missing references) //IL_0908: Unknown result type (might be due to invalid IL or missing references) //IL_0914: Unknown result type (might be due to invalid IL or missing references) //IL_088e: Unknown result type (might be due to invalid IL or missing references) //IL_0893: Unknown result type (might be due to invalid IL or missing references) //IL_089f: Unknown result type (might be due to invalid IL or missing references) //IL_08a4: Unknown result type (might be due to invalid IL or missing references) //IL_0672: Unknown result type (might be due to invalid IL or missing references) //IL_0677: Unknown result type (might be due to invalid IL or missing references) //IL_067b: Unknown result type (might be due to invalid IL or missing references) //IL_0697: Unknown result type (might be due to invalid IL or missing references) //IL_069c: Unknown result type (might be due to invalid IL or missing references) //IL_06a1: Unknown result type (might be due to invalid IL or missing references) //IL_06a6: Unknown result type (might be due to invalid IL or missing references) //IL_06b2: Unknown result type (might be due to invalid IL or missing references) //IL_06b7: Unknown result type (might be due to invalid IL or missing references) //IL_06bb: Unknown result type (might be due to invalid IL or missing references) //IL_06d7: Unknown result type (might be due to invalid IL or missing references) //IL_06dc: Unknown result type (might be due to invalid IL or missing references) //IL_06e1: Unknown result type (might be due to invalid IL or missing references) //IL_06e6: Unknown result type (might be due to invalid IL or missing references) //IL_03b9: Unknown result type (might be due to invalid IL or missing references) //IL_03be: Unknown result type (might be due to invalid IL or missing references) //IL_03f5: Unknown result type (might be due to invalid IL or missing references) //IL_03fa: Unknown result type (might be due to invalid IL or missing references) //IL_0403: Unknown result type (might be due to invalid IL or missing references) //IL_040e: Unknown result type (might be due to invalid IL or missing references) //IL_0413: Unknown result type (might be due to invalid IL or missing references) //IL_042f: Unknown result type (might be due to invalid IL or missing references) //IL_0434: Unknown result type (might be due to invalid IL or missing references) //IL_043d: Unknown result type (might be due to invalid IL or missing references) //IL_0449: Unknown result type (might be due to invalid IL or missing references) //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_0136: Unknown result type (might be due to invalid IL or missing references) //IL_016d: Unknown result type (might be due to invalid IL or missing references) //IL_0172: Unknown result type (might be due to invalid IL or missing references) //IL_017b: Unknown result type (might be due to invalid IL or missing references) //IL_0186: Unknown result type (might be due to invalid IL or missing references) //IL_018b: Unknown result type (might be due to invalid IL or missing references) //IL_01a7: Unknown result type (might be due to invalid IL or missing references) //IL_01ac: Unknown result type (might be due to invalid IL or missing references) //IL_01b5: Unknown result type (might be due to invalid IL or missing references) //IL_01c1: Unknown result type (might be due to invalid IL or missing references) //IL_0930: Unknown result type (might be due to invalid IL or missing references) //IL_0951: Unknown result type (might be due to invalid IL or missing references) //IL_0956: Unknown result type (might be due to invalid IL or missing references) //IL_096a: Unknown result type (might be due to invalid IL or missing references) //IL_097b: Unknown result type (might be due to invalid IL or missing references) //IL_0980: Unknown result type (might be due to invalid IL or missing references) //IL_0709: Unknown result type (might be due to invalid IL or missing references) //IL_070e: Unknown result type (might be due to invalid IL or missing references) //IL_0712: Unknown result type (might be due to invalid IL or missing references) //IL_0728: Unknown result type (might be due to invalid IL or missing references) //IL_072d: Unknown result type (might be due to invalid IL or missing references) //IL_0732: Unknown result type (might be due to invalid IL or missing references) //IL_0737: Unknown result type (might be due to invalid IL or missing references) //IL_0743: Unknown result type (might be due to invalid IL or missing references) //IL_0748: Unknown result type (might be due to invalid IL or missing references) //IL_074c: Unknown result type (might be due to invalid IL or missing references) //IL_0762: Unknown result type (might be due to invalid IL or missing references) //IL_0767: Unknown result type (might be due to invalid IL or missing references) //IL_076c: Unknown result type (might be due to invalid IL or missing references) //IL_0771: Unknown result type (might be due to invalid IL or missing references) //IL_0794: Unknown result type (might be due to invalid IL or missing references) //IL_0799: Unknown result type (might be due to invalid IL or missing references) //IL_079d: Unknown result type (might be due to invalid IL or missing references) //IL_07a8: Unknown result type (might be due to invalid IL or missing references) //IL_07ad: Unknown result type (might be due to invalid IL or missing references) //IL_07c2: Unknown result type (might be due to invalid IL or missing references) //IL_07c7: Unknown result type (might be due to invalid IL or missing references) //IL_07cc: Unknown result type (might be due to invalid IL or missing references) //IL_07d1: Unknown result type (might be due to invalid IL or missing references) //IL_07dd: Unknown result type (might be due to invalid IL or missing references) //IL_07e2: Unknown result type (might be due to invalid IL or missing references) //IL_07e6: Unknown result type (might be due to invalid IL or missing references) //IL_07f1: Unknown result type (might be due to invalid IL or missing references) //IL_07f6: Unknown result type (might be due to invalid IL or missing references) //IL_080b: Unknown result type (might be due to invalid IL or missing references) //IL_0810: Unknown result type (might be due to invalid IL or missing references) //IL_0815: Unknown result type (might be due to invalid IL or missing references) //IL_081a: Unknown result type (might be due to invalid IL or missing references) if (Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled) { characterController.Move(swimDirection * Time.deltaTime); if (!swimButtonPressed && submergedEnough) { if ((!atJumpHeight && (((Component)this).transform.position.y + 0.01f < inWaterPosY || !Physics.Linecast(new Vector3(((Component)this).transform.position.x, (currentHeadPosition + currentFeetPosition) / 2f + (currentHeadPosition - currentFeetPosition) + jumpOutHeight2, ((Component)this).transform.position.z), new Vector3(((Component)this).transform.position.x, currentFeetPosition + jumpOutHeight2, ((Component)this).transform.position.z), ref hit, LayerMask.op_Implicit(collisionLayers)) || (Physics.Linecast(new Vector3(((Component)this).transform.position.x, (currentHeadPosition + currentFeetPosition) / 2f + (currentHeadPosition - currentFeetPosition) + jumpOutHeight2, ((Component)this).transform.position.z), new Vector3(((Component)this).transform.position.x, currentFeetPosition + jumpOutHeight2, ((Component)this).transform.position.z), ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).gameObject.layer != 4))) || swimming.idleFloatingDirection.y <= 0f) { characterController.Move(swimming.idleFloatingDirection * Time.deltaTime); } else { characterController.Move(new Vector3(swimming.idleFloatingDirection.x, 0f, swimming.idleFloatingDirection.z) * Time.deltaTime); } } characterController.Move(moveDirection * 0.8f * Time.deltaTime); } else { if (!Object.op_Implicit((Object)(object)rigidBody)) { return; } rigidBody.velocity = Vector3.zero; if (!swimButtonPressed && submergedEnough) { if ((!atJumpHeight && (((Component)this).transform.position.y + 0.01f < inWaterPosY || !Physics.Linecast(new Vector3(((Component)this).transform.position.x, (rbHeadPositionInWater2 + rbFeetPositionInWater2) / 2f + (rbHeadPositionInWater2 - rbFeetPositionInWater2) + jumpOutHeight2, ((Component)this).transform.position.z), new Vector3(((Component)this).transform.position.x, rbFeetPositionInWater2 + jumpOutHeight2, ((Component)this).transform.position.z), ref hit, LayerMask.op_Implicit(collisionLayers)) || (Physics.Linecast(new Vector3(((Component)this).transform.position.x, (rbHeadPositionInWater2 + rbFeetPositionInWater2) / 2f + (rbHeadPositionInWater2 - rbFeetPositionInWater2) + jumpOutHeight2, ((Component)this).transform.position.z), new Vector3(((Component)this).transform.position.x, rbFeetPositionInWater2 + jumpOutHeight2, ((Component)this).transform.position.z), ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).gameObject.layer != 4))) || swimming.idleFloatingDirection.y <= 0f) { rigidBody.MovePosition(((Component)this).transform.position + (swimDirection + swimming.idleFloatingDirection + moveDirection * 0.8f) * Time.deltaTime); } else { rigidBody.MovePosition(((Component)this).transform.position + (swimDirection + new Vector3(swimming.idleFloatingDirection.x, 0f, swimming.idleFloatingDirection.z) + moveDirection * 0.8f) * Time.deltaTime); } } else { rigidBody.MovePosition(((Component)this).transform.position + (swimDirection + moveDirection * 0.8f) * Time.deltaTime); } if (Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled) { Bounds bounds = ((Collider)characterController).bounds; colliderBottom = ((Bounds)(ref bounds)).center - characterController.height * 0.5f * ((Component)this).transform.up; Bounds bounds2 = ((Collider)characterController).bounds; colliderTop = ((Bounds)(ref bounds2)).center + characterController.height * 0.5f * ((Component)this).transform.up; } else if (Object.op_Implicit((Object)(object)rigidBody)) { if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { Bounds bounds3 = ((Collider)((Component)this).GetComponent()).bounds; colliderBottom = ((Bounds)(ref bounds3)).center - ((Component)this).GetComponent().height * 0.5f * ((Component)this).transform.up; Bounds bounds4 = ((Collider)((Component)this).GetComponent()).bounds; colliderTop = ((Bounds)(ref bounds4)).center + ((Component)this).GetComponent().height * 0.5f * ((Component)this).transform.up; } else if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { Bounds bounds5 = ((Collider)((Component)this).GetComponent()).bounds; colliderBottom = ((Bounds)(ref bounds5)).center - ((Component)this).GetComponent().radius * ((Component)this).transform.up; Bounds bounds6 = ((Collider)((Component)this).GetComponent()).bounds; colliderTop = ((Bounds)(ref bounds6)).center + ((Component)this).GetComponent().radius * ((Component)this).transform.up; } else if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { Bounds bounds7 = ((Collider)((Component)this).GetComponent()).bounds; colliderBottom = ((Bounds)(ref bounds7)).center - ((Component)this).GetComponent().size.y * 0.5f * ((Component)this).transform.up; Bounds bounds8 = ((Collider)((Component)this).GetComponent()).bounds; colliderTop = ((Bounds)(ref bounds8)).center + ((Component)this).GetComponent().size.y * 0.5f * ((Component)this).transform.up; } } if (!Physics.Linecast((colliderBottom * 9f + colliderTop) / 10f, (colliderTop * 9f + colliderBottom) / 10f, ref hit, LayerMask.op_Implicit(collisionLayers))) { lastPosBeforeCollision = ((Component)this).transform.position; lastRotBeforeCollision = ((Component)this).transform.eulerAngles; } else if (Physics.Linecast((colliderBottom * 8.5f + colliderTop * 1.5f) / 10f, (colliderTop * 8.5f + colliderBottom * 1.5f) / 10f, ref hit, LayerMask.op_Implicit(collisionLayers))) { ((Component)this).transform.position = lastPosBeforeCollision; ((Component)this).transform.eulerAngles = new Vector3(lastRotBeforeCollision.x, ((Component)this).transform.eulerAngles.y, lastRotBeforeCollision.z); swimRotation = ((Component)this).transform.rotation; } } } private void Swim7() { //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0271: Unknown result type (might be due to invalid IL or missing references) //IL_0276: Unknown result type (might be due to invalid IL or missing references) if (!((Object)(object)animator != (Object)null)) { return; } AnimatorStateInfo currentAnimatorStateInfo = animator.GetCurrentAnimatorStateInfo(0); if (!((AnimatorStateInfo)(ref currentAnimatorStateInfo)).IsName("Swimming")) { animator.CrossFade("Swimming", 0f, -1, 0f); } if (!Input.GetButton("Jump")) { animator.speed = 1f; donePulling = false; justSwitchedToSwimming = false; swimState = Mathf.Lerp(swimState, 0f, 6f * Time.deltaTime); } else if (outOfWaterTimer > 0f) { if (heldSwimButtonOnEnter) { donePulling = true; justSwitchedToSwimming = true; swimState = 2f; animator.CrossFade("Swimming", 0f, -1, 1f); animator.speed = 1f; heldSwimButtonOnEnter = false; } if (swimState < 1f) { animator.speed = 1f; if (!donePulling) { animator.CrossFade("Swimming", 0f, -1, 0f); donePulling = false; swimState = 1f; } donePulling = true; } else if (swimState >= 1f) { if (!justSwitchedToSwimming) { animator.CrossFade("Swimming", 0f, -1, 0f); animator.speed = 0.1f; justSwitchedToSwimming = true; } if (!donePulling) { if (swimState < 2f) { swimState = Mathf.Lerp(swimState, 1f, 8f * Time.deltaTime); } if (Mathf.Abs(swimState - 1f) < 0.1f) { animator.CrossFade("Swimming", 0f, -1, 0f); animator.speed = 1f; donePulling = true; } } else { animator.speed = 1f; } AnimatorStateInfo currentAnimatorStateInfo2 = animator.GetCurrentAnimatorStateInfo(0); if (((AnimatorStateInfo)(ref currentAnimatorStateInfo2)).normalizedTime >= 1f && donePulling) { swimState = Mathf.Lerp(swimState, 2f, 6f * Time.deltaTime); animator.speed = 1f; } } } animator.SetFloat("swimState", swimState); } private void Swim8() { //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_0026: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_01e3: Unknown result type (might be due to invalid IL or missing references) //IL_01e8: Unknown result type (might be due to invalid IL or missing references) //IL_0115: Unknown result type (might be due to invalid IL or missing references) //IL_011a: Unknown result type (might be due to invalid IL or missing references) //IL_020d: Unknown result type (might be due to invalid IL or missing references) //IL_0212: Unknown result type (might be due to invalid IL or missing references) //IL_022d: Unknown result type (might be due to invalid IL or missing references) //IL_0232: Unknown result type (might be due to invalid IL or missing references) //IL_013c: Unknown result type (might be due to invalid IL or missing references) //IL_0141: Unknown result type (might be due to invalid IL or missing references) //IL_0151: Unknown result type (might be due to invalid IL or missing references) //IL_0156: Unknown result type (might be due to invalid IL or missing references) //IL_026c: Unknown result type (might be due to invalid IL or missing references) //IL_0271: Unknown result type (might be due to invalid IL or missing references) //IL_0276: Unknown result type (might be due to invalid IL or missing references) //IL_0281: Unknown result type (might be due to invalid IL or missing references) //IL_0286: Unknown result type (might be due to invalid IL or missing references) //IL_028b: Unknown result type (might be due to invalid IL or missing references) //IL_0299: Unknown result type (might be due to invalid IL or missing references) //IL_029e: Unknown result type (might be due to invalid IL or missing references) //IL_02ab: Unknown result type (might be due to invalid IL or missing references) //IL_01bb: Unknown result type (might be due to invalid IL or missing references) //IL_01c1: Unknown result type (might be due to invalid IL or missing references) //IL_01cb: Unknown result type (might be due to invalid IL or missing references) //IL_01d0: Unknown result type (might be due to invalid IL or missing references) //IL_0183: Unknown result type (might be due to invalid IL or missing references) //IL_018d: Unknown result type (might be due to invalid IL or missing references) //IL_0192: Unknown result type (might be due to invalid IL or missing references) xDeg = ((Component)this).transform.eulerAngles.y; yDeg = ((Component)this).transform.eulerAngles.x; xDeg2 = ((Component)this).transform.eulerAngles.y; horizontalRotValue = 0f; verticalRotValue = 0f; yRotMinLimit = swimming.yIdleRotationMinLimit; yRotMaxLimit = swimming.yIdleRotationMaxLimit; if (hAxis2 > 0f) { swimHorizontalValue = 1f; axisNotPushedLeftOrRight = false; } else if (hAxis2 < 0f) { swimHorizontalValue = -1f; axisNotPushedLeftOrRight = false; } else { axisNotPushedLeftOrRight = true; } canPressSwimButton = false; swimButtonPressed = false; reachedTopOfWater = false; atJumpHeight = false; canJumpOut = false; if (!grounded.currentlyGrounded && Vector3.Distance(swimDirection, Vector3.zero) >= 0.01f && !swimmingMovementTransferred) { swimDirection = Vector3.Lerp(swimDirection, Vector3.zero, 3f * Time.deltaTime); if (Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled) { characterController.Move(swimDirection * Time.deltaTime); } else if (Object.op_Implicit((Object)(object)rigidBody)) { rigidBody.MovePosition(((Component)this).transform.position + swimDirection * Time.deltaTime); } } else { swimDirection = Vector3.zero; swimmingMovementSpeed = 0f; swimmingMovementTransferred = true; } rbHeadPositionOriginal = currentHeadPosition - ((Component)this).transform.position.y; rbFeetPositionOriginal = currentFeetPosition - ((Component)this).transform.position.y; if (!inMidAirFromJump) { groundedAfterSwimming = true; } if (outOfWaterTimer < 5f) { Quaternion val = Quaternion.FromToRotation(((Component)this).transform.up, Vector3.up) * ((Component)this).transform.rotation; ((Component)this).transform.rotation = Quaternion.Slerp(((Component)this).transform.rotation, val, 15f * Time.deltaTime); } } private void Swim9() { //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0029: Unknown result type (might be due to invalid IL or missing references) //IL_0108: Unknown result type (might be due to invalid IL or missing references) //IL_010d: Unknown result type (might be due to invalid IL or missing references) //IL_0110: Unknown result type (might be due to invalid IL or missing references) //IL_0126: Unknown result type (might be due to invalid IL or missing references) //IL_012b: Unknown result type (might be due to invalid IL or missing references) //IL_0130: Unknown result type (might be due to invalid IL or missing references) //IL_0135: Unknown result type (might be due to invalid IL or missing references) //IL_0141: Unknown result type (might be due to invalid IL or missing references) //IL_0146: Unknown result type (might be due to invalid IL or missing references) //IL_0149: Unknown result type (might be due to invalid IL or missing references) //IL_015f: Unknown result type (might be due to invalid IL or missing references) //IL_0164: Unknown result type (might be due to invalid IL or missing references) //IL_0169: Unknown result type (might be due to invalid IL or missing references) //IL_016e: Unknown result type (might be due to invalid IL or missing references) //IL_0042: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_01a2: Unknown result type (might be due to invalid IL or missing references) //IL_01a7: Unknown result type (might be due to invalid IL or missing references) //IL_01ab: Unknown result type (might be due to invalid IL or missing references) //IL_01c1: Unknown result type (might be due to invalid IL or missing references) //IL_01c6: Unknown result type (might be due to invalid IL or missing references) //IL_01cb: Unknown result type (might be due to invalid IL or missing references) //IL_01d0: Unknown result type (might be due to invalid IL or missing references) //IL_01dc: Unknown result type (might be due to invalid IL or missing references) //IL_01e1: Unknown result type (might be due to invalid IL or missing references) //IL_01e5: Unknown result type (might be due to invalid IL or missing references) //IL_01fb: Unknown result type (might be due to invalid IL or missing references) //IL_0200: Unknown result type (might be due to invalid IL or missing references) //IL_0205: Unknown result type (might be due to invalid IL or missing references) //IL_020a: Unknown result type (might be due to invalid IL or missing references) //IL_0571: Unknown result type (might be due to invalid IL or missing references) //IL_0586: Unknown result type (might be due to invalid IL or missing references) //IL_058b: Unknown result type (might be due to invalid IL or missing references) //IL_0591: Unknown result type (might be due to invalid IL or missing references) //IL_0597: Unknown result type (might be due to invalid IL or missing references) //IL_059c: Unknown result type (might be due to invalid IL or missing references) //IL_05a8: Unknown result type (might be due to invalid IL or missing references) //IL_0355: Unknown result type (might be due to invalid IL or missing references) //IL_035a: Unknown result type (might be due to invalid IL or missing references) //IL_035e: Unknown result type (might be due to invalid IL or missing references) //IL_0374: Unknown result type (might be due to invalid IL or missing references) //IL_0379: Unknown result type (might be due to invalid IL or missing references) //IL_037e: Unknown result type (might be due to invalid IL or missing references) //IL_0383: Unknown result type (might be due to invalid IL or missing references) //IL_038f: Unknown result type (might be due to invalid IL or missing references) //IL_0394: Unknown result type (might be due to invalid IL or missing references) //IL_0398: Unknown result type (might be due to invalid IL or missing references) //IL_03ae: Unknown result type (might be due to invalid IL or missing references) //IL_03b3: Unknown result type (might be due to invalid IL or missing references) //IL_03b8: Unknown result type (might be due to invalid IL or missing references) //IL_03bd: Unknown result type (might be due to invalid IL or missing references) //IL_022d: Unknown result type (might be due to invalid IL or missing references) //IL_0232: Unknown result type (might be due to invalid IL or missing references) //IL_0236: Unknown result type (might be due to invalid IL or missing references) //IL_0246: Unknown result type (might be due to invalid IL or missing references) //IL_024b: Unknown result type (might be due to invalid IL or missing references) //IL_0250: Unknown result type (might be due to invalid IL or missing references) //IL_0255: Unknown result type (might be due to invalid IL or missing references) //IL_0261: Unknown result type (might be due to invalid IL or missing references) //IL_0266: Unknown result type (might be due to invalid IL or missing references) //IL_026a: Unknown result type (might be due to invalid IL or missing references) //IL_027a: Unknown result type (might be due to invalid IL or missing references) //IL_027f: Unknown result type (might be due to invalid IL or missing references) //IL_0284: Unknown result type (might be due to invalid IL or missing references) //IL_0289: Unknown result type (might be due to invalid IL or missing references) //IL_05be: Unknown result type (might be due to invalid IL or missing references) //IL_05d3: Unknown result type (might be due to invalid IL or missing references) //IL_05d8: Unknown result type (might be due to invalid IL or missing references) //IL_05de: Unknown result type (might be due to invalid IL or missing references) //IL_05e4: Unknown result type (might be due to invalid IL or missing references) //IL_05e9: Unknown result type (might be due to invalid IL or missing references) //IL_05f5: Unknown result type (might be due to invalid IL or missing references) //IL_03f1: Unknown result type (might be due to invalid IL or missing references) //IL_03f6: Unknown result type (might be due to invalid IL or missing references) //IL_03fa: Unknown result type (might be due to invalid IL or missing references) //IL_040a: Unknown result type (might be due to invalid IL or missing references) //IL_040f: Unknown result type (might be due to invalid IL or missing references) //IL_0414: Unknown result type (might be due to invalid IL or missing references) //IL_0419: Unknown result type (might be due to invalid IL or missing references) //IL_0425: Unknown result type (might be due to invalid IL or missing references) //IL_042a: Unknown result type (might be due to invalid IL or missing references) //IL_042e: Unknown result type (might be due to invalid IL or missing references) //IL_043e: Unknown result type (might be due to invalid IL or missing references) //IL_0443: Unknown result type (might be due to invalid IL or missing references) //IL_0448: Unknown result type (might be due to invalid IL or missing references) //IL_044d: Unknown result type (might be due to invalid IL or missing references) //IL_02ac: Unknown result type (might be due to invalid IL or missing references) //IL_02b1: Unknown result type (might be due to invalid IL or missing references) //IL_02b5: Unknown result type (might be due to invalid IL or missing references) //IL_02c0: Unknown result type (might be due to invalid IL or missing references) //IL_02c5: Unknown result type (might be due to invalid IL or missing references) //IL_02d4: Unknown result type (might be due to invalid IL or missing references) //IL_02d9: Unknown result type (might be due to invalid IL or missing references) //IL_02de: Unknown result type (might be due to invalid IL or missing references) //IL_02e3: Unknown result type (might be due to invalid IL or missing references) //IL_02ef: Unknown result type (might be due to invalid IL or missing references) //IL_02f4: Unknown result type (might be due to invalid IL or missing references) //IL_02f8: Unknown result type (might be due to invalid IL or missing references) //IL_0303: Unknown result type (might be due to invalid IL or missing references) //IL_0308: Unknown result type (might be due to invalid IL or missing references) //IL_0317: Unknown result type (might be due to invalid IL or missing references) //IL_031c: Unknown result type (might be due to invalid IL or missing references) //IL_0321: Unknown result type (might be due to invalid IL or missing references) //IL_0326: Unknown result type (might be due to invalid IL or missing references) //IL_060b: Unknown result type (might be due to invalid IL or missing references) //IL_0620: Unknown result type (might be due to invalid IL or missing references) //IL_0625: Unknown result type (might be due to invalid IL or missing references) //IL_062b: Unknown result type (might be due to invalid IL or missing references) //IL_0631: Unknown result type (might be due to invalid IL or missing references) //IL_0636: Unknown result type (might be due to invalid IL or missing references) //IL_0642: Unknown result type (might be due to invalid IL or missing references) //IL_0470: Unknown result type (might be due to invalid IL or missing references) //IL_0475: Unknown result type (might be due to invalid IL or missing references) //IL_0479: Unknown result type (might be due to invalid IL or missing references) //IL_0489: Unknown result type (might be due to invalid IL or missing references) //IL_048e: Unknown result type (might be due to invalid IL or missing references) //IL_0493: Unknown result type (might be due to invalid IL or missing references) //IL_0498: Unknown result type (might be due to invalid IL or missing references) //IL_04a4: Unknown result type (might be due to invalid IL or missing references) //IL_04a9: Unknown result type (might be due to invalid IL or missing references) //IL_04ad: Unknown result type (might be due to invalid IL or missing references) //IL_04bd: Unknown result type (might be due to invalid IL or missing references) //IL_04c2: Unknown result type (might be due to invalid IL or missing references) //IL_04c7: Unknown result type (might be due to invalid IL or missing references) //IL_04cc: Unknown result type (might be due to invalid IL or missing references) //IL_0658: Unknown result type (might be due to invalid IL or missing references) //IL_066d: Unknown result type (might be due to invalid IL or missing references) //IL_0672: Unknown result type (might be due to invalid IL or missing references) //IL_0678: Unknown result type (might be due to invalid IL or missing references) //IL_067e: Unknown result type (might be due to invalid IL or missing references) //IL_0683: Unknown result type (might be due to invalid IL or missing references) //IL_068f: Unknown result type (might be due to invalid IL or missing references) //IL_04ef: Unknown result type (might be due to invalid IL or missing references) //IL_04f4: Unknown result type (might be due to invalid IL or missing references) //IL_04f8: Unknown result type (might be due to invalid IL or missing references) //IL_0503: Unknown result type (might be due to invalid IL or missing references) //IL_0508: Unknown result type (might be due to invalid IL or missing references) //IL_0517: Unknown result type (might be due to invalid IL or missing references) //IL_051c: Unknown result type (might be due to invalid IL or missing references) //IL_0521: Unknown result type (might be due to invalid IL or missing references) //IL_0526: Unknown result type (might be due to invalid IL or missing references) //IL_0532: Unknown result type (might be due to invalid IL or missing references) //IL_0537: Unknown result type (might be due to invalid IL or missing references) //IL_053b: Unknown result type (might be due to invalid IL or missing references) //IL_0546: Unknown result type (might be due to invalid IL or missing references) //IL_054b: Unknown result type (might be due to invalid IL or missing references) //IL_055a: Unknown result type (might be due to invalid IL or missing references) //IL_055f: Unknown result type (might be due to invalid IL or missing references) //IL_0564: Unknown result type (might be due to invalid IL or missing references) //IL_0569: Unknown result type (might be due to invalid IL or missing references) if ((Object)(object)animator != (Object)null && !inWater) { AnimatorStateInfo currentAnimatorStateInfo = animator.GetCurrentAnimatorStateInfo(0); if (!((AnimatorStateInfo)(ref currentAnimatorStateInfo)).IsName("Swimming")) { AnimatorStateInfo currentAnimatorStateInfo2 = animator.GetCurrentAnimatorStateInfo(0); if (!((AnimatorStateInfo)(ref currentAnimatorStateInfo2)).IsName("Falling")) { goto IL_00e0; } } if (outOfWaterTimer < 1f) { if (grounded.currentlyGrounded) { animator.CrossFade("Movement", 0.0075f, -1, 0f); } else if (!currentlyOnWall && !currentlyClimbingWall) { animator.CrossFade("Falling", 0.0075f, -1, 0f); } animator.speed = 1f; } } goto IL_00e0; IL_00e0: if (Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled) { Bounds bounds = ((Collider)characterController).bounds; colliderBottom2 = ((Bounds)(ref bounds)).center - characterController.height * 0.5f * Vector3.up; Bounds bounds2 = ((Collider)characterController).bounds; colliderTop2 = ((Bounds)(ref bounds2)).center + characterController.height * 0.5f * Vector3.up; } else if (Object.op_Implicit((Object)(object)rigidBody)) { if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { Bounds bounds3 = ((Component)this).GetComponent().bounds; colliderBottom2 = ((Bounds)(ref bounds3)).center - ((Component)this).GetComponent().height * 0.5f * Vector3.up; Bounds bounds4 = ((Component)this).GetComponent().bounds; colliderTop2 = ((Bounds)(ref bounds4)).center + ((Component)this).GetComponent().height * 0.5f * Vector3.up; } else if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { Bounds bounds5 = ((Component)this).GetComponent().bounds; colliderBottom2 = ((Bounds)(ref bounds5)).center - ((Component)this).GetComponent().radius * Vector3.up; Bounds bounds6 = ((Component)this).GetComponent().bounds; colliderTop2 = ((Bounds)(ref bounds6)).center + ((Component)this).GetComponent().radius * Vector3.up; } else if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { Bounds bounds7 = ((Component)this).GetComponent().bounds; colliderBottom2 = ((Bounds)(ref bounds7)).center - ((Component)this).GetComponent().size.y * 0.5f * Vector3.up; Bounds bounds8 = ((Component)this).GetComponent().bounds; colliderTop2 = ((Bounds)(ref bounds8)).center + ((Component)this).GetComponent().size.y * 0.5f * Vector3.up; } } if (Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled) { Bounds bounds9 = ((Collider)characterController).bounds; colliderLeft2 = ((Bounds)(ref bounds9)).center - characterController.radius * 0.5f * Vector3.right; Bounds bounds10 = ((Collider)characterController).bounds; colliderRight2 = ((Bounds)(ref bounds10)).center + characterController.radius * 0.5f * Vector3.right; } else if (Object.op_Implicit((Object)(object)rigidBody)) { if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { Bounds bounds11 = ((Component)this).GetComponent().bounds; colliderLeft2 = ((Bounds)(ref bounds11)).center - ((Component)this).GetComponent().radius * Vector3.right; Bounds bounds12 = ((Component)this).GetComponent().bounds; colliderRight2 = ((Bounds)(ref bounds12)).center + ((Component)this).GetComponent().radius * Vector3.right; } else if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { Bounds bounds13 = ((Component)this).GetComponent().bounds; colliderLeft2 = ((Bounds)(ref bounds13)).center - ((Component)this).GetComponent().radius * Vector3.right; Bounds bounds14 = ((Component)this).GetComponent().bounds; colliderRight2 = ((Bounds)(ref bounds14)).center + ((Component)this).GetComponent().radius * Vector3.right; } else if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { Bounds bounds15 = ((Component)this).GetComponent().bounds; colliderLeft2 = ((Bounds)(ref bounds15)).center - ((Component)this).GetComponent().size.x * 0.5f * Vector3.right; Bounds bounds16 = ((Component)this).GetComponent().bounds; colliderRight2 = ((Bounds)(ref bounds16)).center + ((Component)this).GetComponent().size.x * 0.5f * Vector3.right; } } if ((Physics.Raycast(colliderBottom2 - new Vector3(0f, jumpInHeight2, 0f), colliderTop2 - colliderBottom2, ref hit, (float)LayerMask.op_Implicit(collisionLayers)) || Physics.Raycast(colliderTop2 - new Vector3(0f, jumpInHeight2, 0f), colliderBottom2 - colliderTop2, ref hit, (float)LayerMask.op_Implicit(collisionLayers)) || Physics.Raycast(colliderLeft2 - new Vector3(0f, jumpInHeight2, 0f), colliderRight2 - colliderLeft2, ref hit, (float)LayerMask.op_Implicit(collisionLayers)) || Physics.Raycast(colliderRight2 - new Vector3(0f, jumpInHeight2, 0f), colliderLeft2 - colliderRight2, ref hit, (float)LayerMask.op_Implicit(collisionLayers))) && ((Component)((RaycastHit)(ref hit)).transform).gameObject.layer == 4 && swimming.allowSwimming) { noCollisionWithWaterTimer = 0f; noCollisionWithWaterSplashTimer = 0f; } if (inWater) { notInWaterCollider = false; } else if (noCollisionWithWaterTimer >= 5f) { notInWaterCollider = true; } } public static float ClampAngle(float angle, float min, float max) { if (angle < -360f) { angle += 360f; } if (angle > 360f) { angle -= 360f; } return Mathf.Clamp(angle, min, max); } private void LateUpdate() { //IL_012c: Unknown result type (might be due to invalid IL or missing references) //IL_00f2: Unknown result type (might be due to invalid IL or missing references) //IL_00f7: Unknown result type (might be due to invalid IL or missing references) //IL_0104: Unknown result type (might be due to invalid IL or missing references) if (Input.GetButtonDown(movement.firstPerson.firstPersonInputButton) && movement.firstPerson.switchToFirstPersonIfInputButtonPressed) { if (firstPersonStart) { firstPersonStart = false; } else { firstPersonStart = true; } } else if (!movement.firstPerson.switchToFirstPersonIfInputButtonPressed) { firstPersonStart = false; } if (enabledLastUpdate && movement.firstPerson.onlyRotateWithCamera && !currentlyClimbingWall && !turnBack && !back2 && !currentlyOnWall && inFirstPersonMode) { if (!inWater) { ((Component)this).transform.eulerAngles = new Vector3(0f, ((Component)playerCamera).transform.eulerAngles.y, 0f); } else { ((Component)this).transform.localRotation = Quaternion.Euler(yDeg, xDeg, 0f); } } enabledLastUpdate = true; } private void DrawClimbingDetectors() { //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0040: Unknown result type (might be due to invalid IL or missing references) //IL_0091: Unknown result type (might be due to invalid IL or missing references) //IL_00a9: Unknown result type (might be due to invalid IL or missing references) //IL_00ae: Unknown result type (might be due to invalid IL or missing references) //IL_00ba: Unknown result type (might be due to invalid IL or missing references) //IL_00d2: Unknown result type (might be due to invalid IL or missing references) //IL_00d7: Unknown result type (might be due to invalid IL or missing references) //IL_00e3: Unknown result type (might be due to invalid IL or missing references) //IL_00f5: Unknown result type (might be due to invalid IL or missing references) //IL_00fa: Unknown result type (might be due to invalid IL or missing references) //IL_011f: Unknown result type (might be due to invalid IL or missing references) //IL_0137: Unknown result type (might be due to invalid IL or missing references) //IL_013c: Unknown result type (might be due to invalid IL or missing references) //IL_015b: Unknown result type (might be due to invalid IL or missing references) //IL_016d: Unknown result type (might be due to invalid IL or missing references) //IL_0172: Unknown result type (might be due to invalid IL or missing references) //IL_0196: Unknown result type (might be due to invalid IL or missing references) //IL_01b3: Unknown result type (might be due to invalid IL or missing references) //IL_01b8: Unknown result type (might be due to invalid IL or missing references) //IL_01c4: Unknown result type (might be due to invalid IL or missing references) //IL_01db: Unknown result type (might be due to invalid IL or missing references) //IL_01e0: Unknown result type (might be due to invalid IL or missing references) //IL_01ec: Unknown result type (might be due to invalid IL or missing references) //IL_0203: Unknown result type (might be due to invalid IL or missing references) //IL_0208: Unknown result type (might be due to invalid IL or missing references) //IL_0214: Unknown result type (might be due to invalid IL or missing references) //IL_022b: Unknown result type (might be due to invalid IL or missing references) //IL_0230: Unknown result type (might be due to invalid IL or missing references) //IL_023c: Unknown result type (might be due to invalid IL or missing references) //IL_0253: Unknown result type (might be due to invalid IL or missing references) //IL_0258: Unknown result type (might be due to invalid IL or missing references) //IL_0264: Unknown result type (might be due to invalid IL or missing references) //IL_027b: Unknown result type (might be due to invalid IL or missing references) //IL_0280: Unknown result type (might be due to invalid IL or missing references) //IL_028c: Unknown result type (might be due to invalid IL or missing references) //IL_02a9: Unknown result type (might be due to invalid IL or missing references) //IL_02ae: Unknown result type (might be due to invalid IL or missing references) //IL_02ba: Unknown result type (might be due to invalid IL or missing references) //IL_02d7: Unknown result type (might be due to invalid IL or missing references) //IL_02dc: Unknown result type (might be due to invalid IL or missing references) //IL_02e8: Unknown result type (might be due to invalid IL or missing references) //IL_02ff: Unknown result type (might be due to invalid IL or missing references) //IL_0304: Unknown result type (might be due to invalid IL or missing references) //IL_0310: Unknown result type (might be due to invalid IL or missing references) //IL_0327: Unknown result type (might be due to invalid IL or missing references) //IL_032c: Unknown result type (might be due to invalid IL or missing references) //IL_0338: Unknown result type (might be due to invalid IL or missing references) //IL_034f: Unknown result type (might be due to invalid IL or missing references) //IL_0354: Unknown result type (might be due to invalid IL or missing references) //IL_036b: Unknown result type (might be due to invalid IL or missing references) //IL_0371: Unknown result type (might be due to invalid IL or missing references) //IL_0376: Unknown result type (might be due to invalid IL or missing references) //IL_0381: Unknown result type (might be due to invalid IL or missing references) //IL_0392: Unknown result type (might be due to invalid IL or missing references) //IL_039c: Unknown result type (might be due to invalid IL or missing references) //IL_03a1: Unknown result type (might be due to invalid IL or missing references) //IL_03ac: Unknown result type (might be due to invalid IL or missing references) //IL_03b2: Unknown result type (might be due to invalid IL or missing references) //IL_03b7: Unknown result type (might be due to invalid IL or missing references) //IL_03c2: Unknown result type (might be due to invalid IL or missing references) //IL_03d3: Unknown result type (might be due to invalid IL or missing references) //IL_03d8: Unknown result type (might be due to invalid IL or missing references) //IL_03e3: Unknown result type (might be due to invalid IL or missing references) //IL_03f4: Unknown result type (might be due to invalid IL or missing references) //IL_03fe: Unknown result type (might be due to invalid IL or missing references) //IL_0403: Unknown result type (might be due to invalid IL or missing references) //IL_0408: Unknown result type (might be due to invalid IL or missing references) //IL_0418: Unknown result type (might be due to invalid IL or missing references) //IL_041e: Unknown result type (might be due to invalid IL or missing references) //IL_0423: Unknown result type (might be due to invalid IL or missing references) //IL_042e: Unknown result type (might be due to invalid IL or missing references) //IL_043f: Unknown result type (might be due to invalid IL or missing references) //IL_0449: Unknown result type (might be due to invalid IL or missing references) //IL_044e: Unknown result type (might be due to invalid IL or missing references) //IL_0459: Unknown result type (might be due to invalid IL or missing references) //IL_045f: Unknown result type (might be due to invalid IL or missing references) //IL_0464: Unknown result type (might be due to invalid IL or missing references) //IL_046f: Unknown result type (might be due to invalid IL or missing references) //IL_0480: Unknown result type (might be due to invalid IL or missing references) //IL_0485: Unknown result type (might be due to invalid IL or missing references) //IL_0490: Unknown result type (might be due to invalid IL or missing references) //IL_04a1: Unknown result type (might be due to invalid IL or missing references) //IL_04ab: Unknown result type (might be due to invalid IL or missing references) //IL_04b0: Unknown result type (might be due to invalid IL or missing references) //IL_04b5: Unknown result type (might be due to invalid IL or missing references) //IL_04c5: Unknown result type (might be due to invalid IL or missing references) //IL_04cb: Unknown result type (might be due to invalid IL or missing references) //IL_04d0: Unknown result type (might be due to invalid IL or missing references) //IL_04db: Unknown result type (might be due to invalid IL or missing references) //IL_04ec: Unknown result type (might be due to invalid IL or missing references) //IL_04f6: Unknown result type (might be due to invalid IL or missing references) //IL_04fb: Unknown result type (might be due to invalid IL or missing references) //IL_0506: Unknown result type (might be due to invalid IL or missing references) //IL_050c: Unknown result type (might be due to invalid IL or missing references) //IL_0511: Unknown result type (might be due to invalid IL or missing references) //IL_051c: Unknown result type (might be due to invalid IL or missing references) //IL_052d: Unknown result type (might be due to invalid IL or missing references) //IL_0532: Unknown result type (might be due to invalid IL or missing references) //IL_053d: Unknown result type (might be due to invalid IL or missing references) //IL_054e: Unknown result type (might be due to invalid IL or missing references) //IL_0558: Unknown result type (might be due to invalid IL or missing references) //IL_055d: Unknown result type (might be due to invalid IL or missing references) //IL_0562: Unknown result type (might be due to invalid IL or missing references) //IL_0572: Unknown result type (might be due to invalid IL or missing references) //IL_0578: Unknown result type (might be due to invalid IL or missing references) //IL_057d: Unknown result type (might be due to invalid IL or missing references) //IL_0588: Unknown result type (might be due to invalid IL or missing references) //IL_0599: Unknown result type (might be due to invalid IL or missing references) //IL_05a3: Unknown result type (might be due to invalid IL or missing references) //IL_05a8: Unknown result type (might be due to invalid IL or missing references) //IL_05b3: Unknown result type (might be due to invalid IL or missing references) //IL_05b9: Unknown result type (might be due to invalid IL or missing references) //IL_05be: Unknown result type (might be due to invalid IL or missing references) //IL_05c9: Unknown result type (might be due to invalid IL or missing references) //IL_05da: Unknown result type (might be due to invalid IL or missing references) //IL_05df: Unknown result type (might be due to invalid IL or missing references) //IL_05ea: Unknown result type (might be due to invalid IL or missing references) //IL_05fb: Unknown result type (might be due to invalid IL or missing references) //IL_0605: Unknown result type (might be due to invalid IL or missing references) //IL_060a: Unknown result type (might be due to invalid IL or missing references) //IL_060f: Unknown result type (might be due to invalid IL or missing references) //IL_061f: Unknown result type (might be due to invalid IL or missing references) //IL_0625: Unknown result type (might be due to invalid IL or missing references) //IL_062a: Unknown result type (might be due to invalid IL or missing references) //IL_0635: Unknown result type (might be due to invalid IL or missing references) //IL_0646: Unknown result type (might be due to invalid IL or missing references) //IL_0650: Unknown result type (might be due to invalid IL or missing references) //IL_0655: Unknown result type (might be due to invalid IL or missing references) //IL_0660: Unknown result type (might be due to invalid IL or missing references) //IL_0666: Unknown result type (might be due to invalid IL or missing references) //IL_066b: Unknown result type (might be due to invalid IL or missing references) //IL_0676: Unknown result type (might be due to invalid IL or missing references) //IL_0687: Unknown result type (might be due to invalid IL or missing references) //IL_068c: Unknown result type (might be due to invalid IL or missing references) //IL_0697: Unknown result type (might be due to invalid IL or missing references) //IL_06a8: Unknown result type (might be due to invalid IL or missing references) //IL_06b2: Unknown result type (might be due to invalid IL or missing references) //IL_06b7: Unknown result type (might be due to invalid IL or missing references) //IL_06bc: Unknown result type (might be due to invalid IL or missing references) //IL_06cc: Unknown result type (might be due to invalid IL or missing references) //IL_06d2: Unknown result type (might be due to invalid IL or missing references) //IL_06d7: Unknown result type (might be due to invalid IL or missing references) //IL_06e2: Unknown result type (might be due to invalid IL or missing references) //IL_06f3: Unknown result type (might be due to invalid IL or missing references) //IL_06fd: Unknown result type (might be due to invalid IL or missing references) //IL_0702: Unknown result type (might be due to invalid IL or missing references) //IL_070d: Unknown result type (might be due to invalid IL or missing references) //IL_0713: Unknown result type (might be due to invalid IL or missing references) //IL_0718: Unknown result type (might be due to invalid IL or missing references) //IL_0723: Unknown result type (might be due to invalid IL or missing references) //IL_0734: Unknown result type (might be due to invalid IL or missing references) //IL_0739: Unknown result type (might be due to invalid IL or missing references) //IL_0744: Unknown result type (might be due to invalid IL or missing references) //IL_0755: Unknown result type (might be due to invalid IL or missing references) //IL_075f: Unknown result type (might be due to invalid IL or missing references) //IL_0764: Unknown result type (might be due to invalid IL or missing references) //IL_0769: Unknown result type (might be due to invalid IL or missing references) //IL_0786: Unknown result type (might be due to invalid IL or missing references) //IL_078c: Unknown result type (might be due to invalid IL or missing references) //IL_0791: Unknown result type (might be due to invalid IL or missing references) //IL_079c: Unknown result type (might be due to invalid IL or missing references) //IL_07a6: Unknown result type (might be due to invalid IL or missing references) //IL_07ab: Unknown result type (might be due to invalid IL or missing references) //IL_07b6: Unknown result type (might be due to invalid IL or missing references) //IL_07bc: Unknown result type (might be due to invalid IL or missing references) //IL_07c1: Unknown result type (might be due to invalid IL or missing references) //IL_07cc: Unknown result type (might be due to invalid IL or missing references) //IL_07dd: Unknown result type (might be due to invalid IL or missing references) //IL_07e2: Unknown result type (might be due to invalid IL or missing references) //IL_07ed: Unknown result type (might be due to invalid IL or missing references) //IL_07f7: Unknown result type (might be due to invalid IL or missing references) //IL_07fc: Unknown result type (might be due to invalid IL or missing references) //IL_0801: Unknown result type (might be due to invalid IL or missing references) //IL_0811: Unknown result type (might be due to invalid IL or missing references) //IL_0817: Unknown result type (might be due to invalid IL or missing references) //IL_081c: Unknown result type (might be due to invalid IL or missing references) //IL_0827: Unknown result type (might be due to invalid IL or missing references) //IL_0831: Unknown result type (might be due to invalid IL or missing references) //IL_0836: Unknown result type (might be due to invalid IL or missing references) //IL_083c: Unknown result type (might be due to invalid IL or missing references) //IL_0841: Unknown result type (might be due to invalid IL or missing references) //IL_084c: Unknown result type (might be due to invalid IL or missing references) //IL_0856: Unknown result type (might be due to invalid IL or missing references) //IL_085b: Unknown result type (might be due to invalid IL or missing references) //IL_0866: Unknown result type (might be due to invalid IL or missing references) //IL_086c: Unknown result type (might be due to invalid IL or missing references) //IL_0871: Unknown result type (might be due to invalid IL or missing references) //IL_087c: Unknown result type (might be due to invalid IL or missing references) //IL_0886: Unknown result type (might be due to invalid IL or missing references) //IL_088b: Unknown result type (might be due to invalid IL or missing references) //IL_0891: Unknown result type (might be due to invalid IL or missing references) //IL_0896: Unknown result type (might be due to invalid IL or missing references) //IL_08a1: Unknown result type (might be due to invalid IL or missing references) //IL_08b2: Unknown result type (might be due to invalid IL or missing references) //IL_08b7: Unknown result type (might be due to invalid IL or missing references) //IL_08c2: Unknown result type (might be due to invalid IL or missing references) //IL_08cc: Unknown result type (might be due to invalid IL or missing references) //IL_08d1: Unknown result type (might be due to invalid IL or missing references) //IL_08d6: Unknown result type (might be due to invalid IL or missing references) //IL_08e6: Unknown result type (might be due to invalid IL or missing references) //IL_08ec: Unknown result type (might be due to invalid IL or missing references) //IL_08f1: Unknown result type (might be due to invalid IL or missing references) //IL_08fc: Unknown result type (might be due to invalid IL or missing references) //IL_0906: Unknown result type (might be due to invalid IL or missing references) //IL_090b: Unknown result type (might be due to invalid IL or missing references) //IL_0911: Unknown result type (might be due to invalid IL or missing references) //IL_0916: Unknown result type (might be due to invalid IL or missing references) //IL_0921: Unknown result type (might be due to invalid IL or missing references) //IL_092b: Unknown result type (might be due to invalid IL or missing references) //IL_0930: Unknown result type (might be due to invalid IL or missing references) //IL_093b: Unknown result type (might be due to invalid IL or missing references) //IL_0941: Unknown result type (might be due to invalid IL or missing references) //IL_0946: Unknown result type (might be due to invalid IL or missing references) //IL_0951: Unknown result type (might be due to invalid IL or missing references) //IL_095b: Unknown result type (might be due to invalid IL or missing references) //IL_0960: Unknown result type (might be due to invalid IL or missing references) //IL_0966: Unknown result type (might be due to invalid IL or missing references) //IL_096b: Unknown result type (might be due to invalid IL or missing references) //IL_0976: Unknown result type (might be due to invalid IL or missing references) //IL_0987: Unknown result type (might be due to invalid IL or missing references) //IL_098c: Unknown result type (might be due to invalid IL or missing references) //IL_0997: Unknown result type (might be due to invalid IL or missing references) //IL_09a1: Unknown result type (might be due to invalid IL or missing references) //IL_09a6: Unknown result type (might be due to invalid IL or missing references) //IL_09ab: Unknown result type (might be due to invalid IL or missing references) //IL_09bb: Unknown result type (might be due to invalid IL or missing references) //IL_09c1: Unknown result type (might be due to invalid IL or missing references) //IL_09c6: Unknown result type (might be due to invalid IL or missing references) //IL_09d1: Unknown result type (might be due to invalid IL or missing references) //IL_09db: Unknown result type (might be due to invalid IL or missing references) //IL_09e0: Unknown result type (might be due to invalid IL or missing references) //IL_09eb: Unknown result type (might be due to invalid IL or missing references) //IL_09f1: Unknown result type (might be due to invalid IL or missing references) //IL_09f6: Unknown result type (might be due to invalid IL or missing references) //IL_0a01: Unknown result type (might be due to invalid IL or missing references) //IL_0a12: Unknown result type (might be due to invalid IL or missing references) //IL_0a17: Unknown result type (might be due to invalid IL or missing references) //IL_0a22: Unknown result type (might be due to invalid IL or missing references) //IL_0a2c: Unknown result type (might be due to invalid IL or missing references) //IL_0a31: Unknown result type (might be due to invalid IL or missing references) //IL_0a36: Unknown result type (might be due to invalid IL or missing references) //IL_0a46: Unknown result type (might be due to invalid IL or missing references) //IL_0a4c: Unknown result type (might be due to invalid IL or missing references) //IL_0a51: Unknown result type (might be due to invalid IL or missing references) //IL_0a5c: Unknown result type (might be due to invalid IL or missing references) //IL_0a66: Unknown result type (might be due to invalid IL or missing references) //IL_0a6b: Unknown result type (might be due to invalid IL or missing references) //IL_0a71: Unknown result type (might be due to invalid IL or missing references) //IL_0a76: Unknown result type (might be due to invalid IL or missing references) //IL_0a81: Unknown result type (might be due to invalid IL or missing references) //IL_0a8b: Unknown result type (might be due to invalid IL or missing references) //IL_0a90: Unknown result type (might be due to invalid IL or missing references) //IL_0a9b: Unknown result type (might be due to invalid IL or missing references) //IL_0aa1: Unknown result type (might be due to invalid IL or missing references) //IL_0aa6: Unknown result type (might be due to invalid IL or missing references) //IL_0ab1: Unknown result type (might be due to invalid IL or missing references) //IL_0abb: Unknown result type (might be due to invalid IL or missing references) //IL_0ac0: Unknown result type (might be due to invalid IL or missing references) //IL_0ac6: Unknown result type (might be due to invalid IL or missing references) //IL_0acb: Unknown result type (might be due to invalid IL or missing references) //IL_0ad6: Unknown result type (might be due to invalid IL or missing references) //IL_0ae7: Unknown result type (might be due to invalid IL or missing references) //IL_0aec: Unknown result type (might be due to invalid IL or missing references) //IL_0af7: Unknown result type (might be due to invalid IL or missing references) //IL_0b01: Unknown result type (might be due to invalid IL or missing references) //IL_0b06: Unknown result type (might be due to invalid IL or missing references) //IL_0b0b: Unknown result type (might be due to invalid IL or missing references) //IL_0b1b: Unknown result type (might be due to invalid IL or missing references) //IL_0b21: Unknown result type (might be due to invalid IL or missing references) //IL_0b26: Unknown result type (might be due to invalid IL or missing references) //IL_0b31: Unknown result type (might be due to invalid IL or missing references) //IL_0b3b: Unknown result type (might be due to invalid IL or missing references) //IL_0b40: Unknown result type (might be due to invalid IL or missing references) //IL_0b46: Unknown result type (might be due to invalid IL or missing references) //IL_0b4b: Unknown result type (might be due to invalid IL or missing references) //IL_0b56: Unknown result type (might be due to invalid IL or missing references) //IL_0b60: Unknown result type (might be due to invalid IL or missing references) //IL_0b65: Unknown result type (might be due to invalid IL or missing references) //IL_0b70: Unknown result type (might be due to invalid IL or missing references) //IL_0b76: Unknown result type (might be due to invalid IL or missing references) //IL_0b7b: Unknown result type (might be due to invalid IL or missing references) //IL_0b86: Unknown result type (might be due to invalid IL or missing references) //IL_0b90: Unknown result type (might be due to invalid IL or missing references) //IL_0b95: Unknown result type (might be due to invalid IL or missing references) //IL_0b9b: Unknown result type (might be due to invalid IL or missing references) //IL_0ba0: Unknown result type (might be due to invalid IL or missing references) //IL_0bab: Unknown result type (might be due to invalid IL or missing references) //IL_0bbc: Unknown result type (might be due to invalid IL or missing references) //IL_0bc1: Unknown result type (might be due to invalid IL or missing references) //IL_0bcc: Unknown result type (might be due to invalid IL or missing references) //IL_0bd6: Unknown result type (might be due to invalid IL or missing references) //IL_0bdb: Unknown result type (might be due to invalid IL or missing references) //IL_0be0: Unknown result type (might be due to invalid IL or missing references) //IL_0bf0: Unknown result type (might be due to invalid IL or missing references) //IL_0bf6: Unknown result type (might be due to invalid IL or missing references) //IL_0c01: Unknown result type (might be due to invalid IL or missing references) //IL_0c0b: Unknown result type (might be due to invalid IL or missing references) //IL_0c1c: Unknown result type (might be due to invalid IL or missing references) //IL_0c21: Unknown result type (might be due to invalid IL or missing references) //IL_0c2b: Unknown result type (might be due to invalid IL or missing references) //IL_0c30: Unknown result type (might be due to invalid IL or missing references) //IL_0c3b: Unknown result type (might be due to invalid IL or missing references) //IL_0c45: Unknown result type (might be due to invalid IL or missing references) //IL_0c4b: Unknown result type (might be due to invalid IL or missing references) //IL_0c50: Unknown result type (might be due to invalid IL or missing references) //IL_0c55: Unknown result type (might be due to invalid IL or missing references) //IL_0c60: Unknown result type (might be due to invalid IL or missing references) //IL_0c66: Unknown result type (might be due to invalid IL or missing references) //IL_0c71: Unknown result type (might be due to invalid IL or missing references) //IL_0c7b: Unknown result type (might be due to invalid IL or missing references) //IL_0c8c: Unknown result type (might be due to invalid IL or missing references) //IL_0c91: Unknown result type (might be due to invalid IL or missing references) //IL_0c9b: Unknown result type (might be due to invalid IL or missing references) //IL_0ca0: Unknown result type (might be due to invalid IL or missing references) //IL_0cab: Unknown result type (might be due to invalid IL or missing references) //IL_0cbc: Unknown result type (might be due to invalid IL or missing references) //IL_0cc1: Unknown result type (might be due to invalid IL or missing references) //IL_0ccc: Unknown result type (might be due to invalid IL or missing references) //IL_0cd6: Unknown result type (might be due to invalid IL or missing references) //IL_0cdc: Unknown result type (might be due to invalid IL or missing references) //IL_0ce1: Unknown result type (might be due to invalid IL or missing references) //IL_0ce6: Unknown result type (might be due to invalid IL or missing references) //IL_0ceb: Unknown result type (might be due to invalid IL or missing references) //IL_0cfb: Unknown result type (might be due to invalid IL or missing references) //IL_0d01: Unknown result type (might be due to invalid IL or missing references) //IL_0d0c: Unknown result type (might be due to invalid IL or missing references) //IL_0d16: Unknown result type (might be due to invalid IL or missing references) //IL_0d27: Unknown result type (might be due to invalid IL or missing references) //IL_0d2c: Unknown result type (might be due to invalid IL or missing references) //IL_0d36: Unknown result type (might be due to invalid IL or missing references) //IL_0d40: Unknown result type (might be due to invalid IL or missing references) //IL_0d46: Unknown result type (might be due to invalid IL or missing references) //IL_0d51: Unknown result type (might be due to invalid IL or missing references) //IL_0d5b: Unknown result type (might be due to invalid IL or missing references) //IL_0d60: Unknown result type (might be due to invalid IL or missing references) //IL_0d6a: Unknown result type (might be due to invalid IL or missing references) //IL_0d6f: Unknown result type (might be due to invalid IL or missing references) //IL_0d79: Unknown result type (might be due to invalid IL or missing references) //IL_0d7e: Unknown result type (might be due to invalid IL or missing references) //IL_0d89: Unknown result type (might be due to invalid IL or missing references) //IL_0d93: Unknown result type (might be due to invalid IL or missing references) //IL_0d99: Unknown result type (might be due to invalid IL or missing references) //IL_0d9e: Unknown result type (might be due to invalid IL or missing references) //IL_0da3: Unknown result type (might be due to invalid IL or missing references) //IL_0dae: Unknown result type (might be due to invalid IL or missing references) //IL_0db4: Unknown result type (might be due to invalid IL or missing references) //IL_0dbf: Unknown result type (might be due to invalid IL or missing references) //IL_0dc9: Unknown result type (might be due to invalid IL or missing references) //IL_0dda: Unknown result type (might be due to invalid IL or missing references) //IL_0ddf: Unknown result type (might be due to invalid IL or missing references) //IL_0de9: Unknown result type (might be due to invalid IL or missing references) //IL_0df3: Unknown result type (might be due to invalid IL or missing references) //IL_0df9: Unknown result type (might be due to invalid IL or missing references) //IL_0e04: Unknown result type (might be due to invalid IL or missing references) //IL_0e0e: Unknown result type (might be due to invalid IL or missing references) //IL_0e13: Unknown result type (might be due to invalid IL or missing references) //IL_0e1d: Unknown result type (might be due to invalid IL or missing references) //IL_0e22: Unknown result type (might be due to invalid IL or missing references) //IL_0e2c: Unknown result type (might be due to invalid IL or missing references) //IL_0e31: Unknown result type (might be due to invalid IL or missing references) //IL_0e3c: Unknown result type (might be due to invalid IL or missing references) //IL_0e4d: Unknown result type (might be due to invalid IL or missing references) //IL_0e52: Unknown result type (might be due to invalid IL or missing references) //IL_0e5d: Unknown result type (might be due to invalid IL or missing references) //IL_0e67: Unknown result type (might be due to invalid IL or missing references) //IL_0e6d: Unknown result type (might be due to invalid IL or missing references) //IL_0e72: Unknown result type (might be due to invalid IL or missing references) //IL_0e77: Unknown result type (might be due to invalid IL or missing references) //IL_0e7c: Unknown result type (might be due to invalid IL or missing references) //IL_0e8c: Unknown result type (might be due to invalid IL or missing references) //IL_0e92: Unknown result type (might be due to invalid IL or missing references) //IL_0e9d: Unknown result type (might be due to invalid IL or missing references) //IL_0ea7: Unknown result type (might be due to invalid IL or missing references) //IL_0eb8: Unknown result type (might be due to invalid IL or missing references) //IL_0ebd: Unknown result type (might be due to invalid IL or missing references) //IL_0ec7: Unknown result type (might be due to invalid IL or missing references) //IL_0ecd: Unknown result type (might be due to invalid IL or missing references) //IL_0ed8: Unknown result type (might be due to invalid IL or missing references) //IL_0ee2: Unknown result type (might be due to invalid IL or missing references) //IL_0ee7: Unknown result type (might be due to invalid IL or missing references) //IL_0ef1: Unknown result type (might be due to invalid IL or missing references) //IL_0ef6: Unknown result type (might be due to invalid IL or missing references) //IL_0f00: Unknown result type (might be due to invalid IL or missing references) //IL_0f05: Unknown result type (might be due to invalid IL or missing references) //IL_0f10: Unknown result type (might be due to invalid IL or missing references) //IL_0f1a: Unknown result type (might be due to invalid IL or missing references) //IL_0f20: Unknown result type (might be due to invalid IL or missing references) //IL_0f25: Unknown result type (might be due to invalid IL or missing references) //IL_0f2a: Unknown result type (might be due to invalid IL or missing references) //IL_0f35: Unknown result type (might be due to invalid IL or missing references) //IL_0f3b: Unknown result type (might be due to invalid IL or missing references) //IL_0f46: Unknown result type (might be due to invalid IL or missing references) //IL_0f50: Unknown result type (might be due to invalid IL or missing references) //IL_0f61: Unknown result type (might be due to invalid IL or missing references) //IL_0f66: Unknown result type (might be due to invalid IL or missing references) //IL_0f70: Unknown result type (might be due to invalid IL or missing references) //IL_0f76: Unknown result type (might be due to invalid IL or missing references) //IL_0f81: Unknown result type (might be due to invalid IL or missing references) //IL_0f8b: Unknown result type (might be due to invalid IL or missing references) //IL_0f90: Unknown result type (might be due to invalid IL or missing references) //IL_0f9a: Unknown result type (might be due to invalid IL or missing references) //IL_0f9f: Unknown result type (might be due to invalid IL or missing references) //IL_0fa9: Unknown result type (might be due to invalid IL or missing references) //IL_0fae: Unknown result type (might be due to invalid IL or missing references) //IL_0fb9: Unknown result type (might be due to invalid IL or missing references) //IL_0fca: Unknown result type (might be due to invalid IL or missing references) //IL_0fcf: Unknown result type (might be due to invalid IL or missing references) //IL_0fda: Unknown result type (might be due to invalid IL or missing references) //IL_0fe4: Unknown result type (might be due to invalid IL or missing references) //IL_0fea: Unknown result type (might be due to invalid IL or missing references) //IL_0fef: Unknown result type (might be due to invalid IL or missing references) //IL_0ff4: Unknown result type (might be due to invalid IL or missing references) //IL_0ff9: Unknown result type (might be due to invalid IL or missing references) //IL_1009: Unknown result type (might be due to invalid IL or missing references) //IL_100f: Unknown result type (might be due to invalid IL or missing references) //IL_101a: Unknown result type (might be due to invalid IL or missing references) //IL_1024: Unknown result type (might be due to invalid IL or missing references) //IL_1035: Unknown result type (might be due to invalid IL or missing references) //IL_103a: Unknown result type (might be due to invalid IL or missing references) //IL_1044: Unknown result type (might be due to invalid IL or missing references) //IL_104a: Unknown result type (might be due to invalid IL or missing references) //IL_1055: Unknown result type (might be due to invalid IL or missing references) //IL_105f: Unknown result type (might be due to invalid IL or missing references) //IL_1064: Unknown result type (might be due to invalid IL or missing references) //IL_106e: Unknown result type (might be due to invalid IL or missing references) //IL_1078: Unknown result type (might be due to invalid IL or missing references) //IL_107d: Unknown result type (might be due to invalid IL or missing references) //IL_1087: Unknown result type (might be due to invalid IL or missing references) //IL_108c: Unknown result type (might be due to invalid IL or missing references) //IL_1097: Unknown result type (might be due to invalid IL or missing references) //IL_10a1: Unknown result type (might be due to invalid IL or missing references) //IL_10a7: Unknown result type (might be due to invalid IL or missing references) //IL_10ac: Unknown result type (might be due to invalid IL or missing references) //IL_10b1: Unknown result type (might be due to invalid IL or missing references) //IL_10bc: Unknown result type (might be due to invalid IL or missing references) //IL_10c2: Unknown result type (might be due to invalid IL or missing references) //IL_10cd: Unknown result type (might be due to invalid IL or missing references) //IL_10d7: Unknown result type (might be due to invalid IL or missing references) //IL_10e8: Unknown result type (might be due to invalid IL or missing references) //IL_10ed: Unknown result type (might be due to invalid IL or missing references) //IL_10f7: Unknown result type (might be due to invalid IL or missing references) //IL_10fd: Unknown result type (might be due to invalid IL or missing references) //IL_1108: Unknown result type (might be due to invalid IL or missing references) //IL_1112: Unknown result type (might be due to invalid IL or missing references) //IL_1117: Unknown result type (might be due to invalid IL or missing references) //IL_1121: Unknown result type (might be due to invalid IL or missing references) //IL_112b: Unknown result type (might be due to invalid IL or missing references) //IL_1130: Unknown result type (might be due to invalid IL or missing references) //IL_113a: Unknown result type (might be due to invalid IL or missing references) //IL_113f: Unknown result type (might be due to invalid IL or missing references) //IL_114a: Unknown result type (might be due to invalid IL or missing references) //IL_115b: Unknown result type (might be due to invalid IL or missing references) //IL_1160: Unknown result type (might be due to invalid IL or missing references) //IL_116b: Unknown result type (might be due to invalid IL or missing references) //IL_1175: Unknown result type (might be due to invalid IL or missing references) //IL_117b: Unknown result type (might be due to invalid IL or missing references) //IL_1180: Unknown result type (might be due to invalid IL or missing references) //IL_1185: Unknown result type (might be due to invalid IL or missing references) //IL_118a: Unknown result type (might be due to invalid IL or missing references) //IL_119a: Unknown result type (might be due to invalid IL or missing references) //IL_11a0: Unknown result type (might be due to invalid IL or missing references) //IL_11ab: Unknown result type (might be due to invalid IL or missing references) //IL_11b5: Unknown result type (might be due to invalid IL or missing references) //IL_11ba: Unknown result type (might be due to invalid IL or missing references) //IL_11c4: Unknown result type (might be due to invalid IL or missing references) //IL_11c9: Unknown result type (might be due to invalid IL or missing references) //IL_11d4: Unknown result type (might be due to invalid IL or missing references) //IL_11de: Unknown result type (might be due to invalid IL or missing references) //IL_11e4: Unknown result type (might be due to invalid IL or missing references) //IL_11e9: Unknown result type (might be due to invalid IL or missing references) //IL_11ee: Unknown result type (might be due to invalid IL or missing references) //IL_11f9: Unknown result type (might be due to invalid IL or missing references) //IL_11ff: Unknown result type (might be due to invalid IL or missing references) //IL_120a: Unknown result type (might be due to invalid IL or missing references) //IL_1214: Unknown result type (might be due to invalid IL or missing references) //IL_1219: Unknown result type (might be due to invalid IL or missing references) //IL_1223: Unknown result type (might be due to invalid IL or missing references) //IL_1228: Unknown result type (might be due to invalid IL or missing references) //IL_1233: Unknown result type (might be due to invalid IL or missing references) //IL_1244: Unknown result type (might be due to invalid IL or missing references) //IL_1249: Unknown result type (might be due to invalid IL or missing references) //IL_1254: Unknown result type (might be due to invalid IL or missing references) //IL_125e: Unknown result type (might be due to invalid IL or missing references) //IL_1264: Unknown result type (might be due to invalid IL or missing references) //IL_1269: Unknown result type (might be due to invalid IL or missing references) //IL_126e: Unknown result type (might be due to invalid IL or missing references) //IL_1273: Unknown result type (might be due to invalid IL or missing references) //IL_1283: Unknown result type (might be due to invalid IL or missing references) //IL_1289: Unknown result type (might be due to invalid IL or missing references) //IL_1294: Unknown result type (might be due to invalid IL or missing references) //IL_129e: Unknown result type (might be due to invalid IL or missing references) //IL_12af: Unknown result type (might be due to invalid IL or missing references) //IL_12b4: Unknown result type (might be due to invalid IL or missing references) //IL_12be: Unknown result type (might be due to invalid IL or missing references) //IL_12c3: Unknown result type (might be due to invalid IL or missing references) //IL_12ce: Unknown result type (might be due to invalid IL or missing references) //IL_12d8: Unknown result type (might be due to invalid IL or missing references) //IL_12de: Unknown result type (might be due to invalid IL or missing references) //IL_12e3: Unknown result type (might be due to invalid IL or missing references) //IL_12e8: Unknown result type (might be due to invalid IL or missing references) //IL_12f3: Unknown result type (might be due to invalid IL or missing references) //IL_12f9: Unknown result type (might be due to invalid IL or missing references) //IL_1304: Unknown result type (might be due to invalid IL or missing references) //IL_130e: Unknown result type (might be due to invalid IL or missing references) //IL_131f: Unknown result type (might be due to invalid IL or missing references) //IL_1324: Unknown result type (might be due to invalid IL or missing references) //IL_132e: Unknown result type (might be due to invalid IL or missing references) //IL_1333: Unknown result type (might be due to invalid IL or missing references) //IL_133e: Unknown result type (might be due to invalid IL or missing references) //IL_134f: Unknown result type (might be due to invalid IL or missing references) //IL_1354: Unknown result type (might be due to invalid IL or missing references) //IL_135f: Unknown result type (might be due to invalid IL or missing references) //IL_1369: Unknown result type (might be due to invalid IL or missing references) //IL_136f: Unknown result type (might be due to invalid IL or missing references) //IL_1374: Unknown result type (might be due to invalid IL or missing references) //IL_1379: Unknown result type (might be due to invalid IL or missing references) //IL_137e: Unknown result type (might be due to invalid IL or missing references) //IL_138e: Unknown result type (might be due to invalid IL or missing references) //IL_1394: Unknown result type (might be due to invalid IL or missing references) //IL_139f: Unknown result type (might be due to invalid IL or missing references) //IL_13a9: Unknown result type (might be due to invalid IL or missing references) //IL_13ba: Unknown result type (might be due to invalid IL or missing references) //IL_13bf: Unknown result type (might be due to invalid IL or missing references) //IL_13c9: Unknown result type (might be due to invalid IL or missing references) //IL_13d3: Unknown result type (might be due to invalid IL or missing references) //IL_13d9: Unknown result type (might be due to invalid IL or missing references) //IL_13e4: Unknown result type (might be due to invalid IL or missing references) //IL_13ee: Unknown result type (might be due to invalid IL or missing references) //IL_13f3: Unknown result type (might be due to invalid IL or missing references) //IL_13fd: Unknown result type (might be due to invalid IL or missing references) //IL_1402: Unknown result type (might be due to invalid IL or missing references) //IL_140c: Unknown result type (might be due to invalid IL or missing references) //IL_1411: Unknown result type (might be due to invalid IL or missing references) //IL_141c: Unknown result type (might be due to invalid IL or missing references) //IL_1426: Unknown result type (might be due to invalid IL or missing references) //IL_142c: Unknown result type (might be due to invalid IL or missing references) //IL_1431: Unknown result type (might be due to invalid IL or missing references) //IL_1436: Unknown result type (might be due to invalid IL or missing references) //IL_1441: Unknown result type (might be due to invalid IL or missing references) //IL_1447: Unknown result type (might be due to invalid IL or missing references) //IL_1452: Unknown result type (might be due to invalid IL or missing references) //IL_145c: Unknown result type (might be due to invalid IL or missing references) //IL_146d: Unknown result type (might be due to invalid IL or missing references) //IL_1472: Unknown result type (might be due to invalid IL or missing references) //IL_147c: Unknown result type (might be due to invalid IL or missing references) //IL_1486: Unknown result type (might be due to invalid IL or missing references) //IL_148c: Unknown result type (might be due to invalid IL or missing references) //IL_1497: Unknown result type (might be due to invalid IL or missing references) //IL_14a1: Unknown result type (might be due to invalid IL or missing references) //IL_14a6: Unknown result type (might be due to invalid IL or missing references) //IL_14b0: Unknown result type (might be due to invalid IL or missing references) //IL_14b5: Unknown result type (might be due to invalid IL or missing references) //IL_14bf: Unknown result type (might be due to invalid IL or missing references) //IL_14c4: Unknown result type (might be due to invalid IL or missing references) //IL_14cf: Unknown result type (might be due to invalid IL or missing references) //IL_14e0: Unknown result type (might be due to invalid IL or missing references) //IL_14e5: Unknown result type (might be due to invalid IL or missing references) //IL_14f0: Unknown result type (might be due to invalid IL or missing references) //IL_14fa: Unknown result type (might be due to invalid IL or missing references) //IL_1500: Unknown result type (might be due to invalid IL or missing references) //IL_1505: Unknown result type (might be due to invalid IL or missing references) //IL_150a: Unknown result type (might be due to invalid IL or missing references) //IL_150f: Unknown result type (might be due to invalid IL or missing references) //IL_151f: Unknown result type (might be due to invalid IL or missing references) //IL_1525: Unknown result type (might be due to invalid IL or missing references) //IL_1530: Unknown result type (might be due to invalid IL or missing references) //IL_153a: Unknown result type (might be due to invalid IL or missing references) //IL_154b: Unknown result type (might be due to invalid IL or missing references) //IL_1550: Unknown result type (might be due to invalid IL or missing references) //IL_155a: Unknown result type (might be due to invalid IL or missing references) //IL_1560: Unknown result type (might be due to invalid IL or missing references) //IL_156b: Unknown result type (might be due to invalid IL or missing references) //IL_1575: Unknown result type (might be due to invalid IL or missing references) //IL_157a: Unknown result type (might be due to invalid IL or missing references) //IL_1584: Unknown result type (might be due to invalid IL or missing references) //IL_1589: Unknown result type (might be due to invalid IL or missing references) //IL_1593: Unknown result type (might be due to invalid IL or missing references) //IL_1598: Unknown result type (might be due to invalid IL or missing references) //IL_15a3: Unknown result type (might be due to invalid IL or missing references) //IL_15ad: Unknown result type (might be due to invalid IL or missing references) //IL_15b3: Unknown result type (might be due to invalid IL or missing references) //IL_15b8: Unknown result type (might be due to invalid IL or missing references) //IL_15bd: Unknown result type (might be due to invalid IL or missing references) //IL_15c8: Unknown result type (might be due to invalid IL or missing references) //IL_15ce: Unknown result type (might be due to invalid IL or missing references) //IL_15d9: Unknown result type (might be due to invalid IL or missing references) //IL_15e3: Unknown result type (might be due to invalid IL or missing references) //IL_15f4: Unknown result type (might be due to invalid IL or missing references) //IL_15f9: Unknown result type (might be due to invalid IL or missing references) //IL_1603: Unknown result type (might be due to invalid IL or missing references) //IL_1609: Unknown result type (might be due to invalid IL or missing references) //IL_1614: Unknown result type (might be due to invalid IL or missing references) //IL_161e: Unknown result type (might be due to invalid IL or missing references) //IL_1623: Unknown result type (might be due to invalid IL or missing references) //IL_162d: Unknown result type (might be due to invalid IL or missing references) //IL_1632: Unknown result type (might be due to invalid IL or missing references) //IL_163c: Unknown result type (might be due to invalid IL or missing references) //IL_1641: Unknown result type (might be due to invalid IL or missing references) //IL_164c: Unknown result type (might be due to invalid IL or missing references) //IL_165d: Unknown result type (might be due to invalid IL or missing references) //IL_1662: Unknown result type (might be due to invalid IL or missing references) //IL_166d: Unknown result type (might be due to invalid IL or missing references) //IL_1677: Unknown result type (might be due to invalid IL or missing references) //IL_167d: Unknown result type (might be due to invalid IL or missing references) //IL_1682: Unknown result type (might be due to invalid IL or missing references) //IL_1687: Unknown result type (might be due to invalid IL or missing references) //IL_168c: Unknown result type (might be due to invalid IL or missing references) //IL_169c: Unknown result type (might be due to invalid IL or missing references) //IL_16a2: Unknown result type (might be due to invalid IL or missing references) //IL_16ad: Unknown result type (might be due to invalid IL or missing references) //IL_16b7: Unknown result type (might be due to invalid IL or missing references) //IL_16c8: Unknown result type (might be due to invalid IL or missing references) //IL_16cd: Unknown result type (might be due to invalid IL or missing references) //IL_16d7: Unknown result type (might be due to invalid IL or missing references) //IL_16dd: Unknown result type (might be due to invalid IL or missing references) //IL_16e8: Unknown result type (might be due to invalid IL or missing references) //IL_16f2: Unknown result type (might be due to invalid IL or missing references) //IL_16f7: Unknown result type (might be due to invalid IL or missing references) //IL_1701: Unknown result type (might be due to invalid IL or missing references) //IL_170b: Unknown result type (might be due to invalid IL or missing references) //IL_1710: Unknown result type (might be due to invalid IL or missing references) //IL_171a: Unknown result type (might be due to invalid IL or missing references) //IL_171f: Unknown result type (might be due to invalid IL or missing references) //IL_172a: Unknown result type (might be due to invalid IL or missing references) //IL_1734: Unknown result type (might be due to invalid IL or missing references) //IL_173a: Unknown result type (might be due to invalid IL or missing references) //IL_173f: Unknown result type (might be due to invalid IL or missing references) //IL_1744: Unknown result type (might be due to invalid IL or missing references) //IL_174f: Unknown result type (might be due to invalid IL or missing references) //IL_1755: Unknown result type (might be due to invalid IL or missing references) //IL_1760: Unknown result type (might be due to invalid IL or missing references) //IL_176a: Unknown result type (might be due to invalid IL or missing references) //IL_177b: Unknown result type (might be due to invalid IL or missing references) //IL_1780: Unknown result type (might be due to invalid IL or missing references) //IL_178a: Unknown result type (might be due to invalid IL or missing references) //IL_1790: Unknown result type (might be due to invalid IL or missing references) //IL_179b: Unknown result type (might be due to invalid IL or missing references) //IL_17a5: Unknown result type (might be due to invalid IL or missing references) //IL_17aa: Unknown result type (might be due to invalid IL or missing references) //IL_17b4: Unknown result type (might be due to invalid IL or missing references) //IL_17be: Unknown result type (might be due to invalid IL or missing references) //IL_17c3: Unknown result type (might be due to invalid IL or missing references) //IL_17cd: Unknown result type (might be due to invalid IL or missing references) //IL_17d2: Unknown result type (might be due to invalid IL or missing references) //IL_17dd: Unknown result type (might be due to invalid IL or missing references) //IL_17ee: Unknown result type (might be due to invalid IL or missing references) //IL_17f3: Unknown result type (might be due to invalid IL or missing references) //IL_17fe: Unknown result type (might be due to invalid IL or missing references) //IL_1808: Unknown result type (might be due to invalid IL or missing references) //IL_180e: Unknown result type (might be due to invalid IL or missing references) //IL_1813: Unknown result type (might be due to invalid IL or missing references) //IL_1818: Unknown result type (might be due to invalid IL or missing references) //IL_181d: Unknown result type (might be due to invalid IL or missing references) //IL_182d: Unknown result type (might be due to invalid IL or missing references) //IL_1833: Unknown result type (might be due to invalid IL or missing references) //IL_183e: Unknown result type (might be due to invalid IL or missing references) //IL_1848: Unknown result type (might be due to invalid IL or missing references) //IL_184d: Unknown result type (might be due to invalid IL or missing references) //IL_1857: Unknown result type (might be due to invalid IL or missing references) //IL_185c: Unknown result type (might be due to invalid IL or missing references) //IL_1867: Unknown result type (might be due to invalid IL or missing references) //IL_1871: Unknown result type (might be due to invalid IL or missing references) //IL_1877: Unknown result type (might be due to invalid IL or missing references) //IL_187c: Unknown result type (might be due to invalid IL or missing references) //IL_1881: Unknown result type (might be due to invalid IL or missing references) //IL_188c: Unknown result type (might be due to invalid IL or missing references) //IL_1892: Unknown result type (might be due to invalid IL or missing references) //IL_189d: Unknown result type (might be due to invalid IL or missing references) //IL_18a7: Unknown result type (might be due to invalid IL or missing references) //IL_18ac: Unknown result type (might be due to invalid IL or missing references) //IL_18b6: Unknown result type (might be due to invalid IL or missing references) //IL_18bb: Unknown result type (might be due to invalid IL or missing references) //IL_18c6: Unknown result type (might be due to invalid IL or missing references) //IL_18d7: Unknown result type (might be due to invalid IL or missing references) //IL_18dc: Unknown result type (might be due to invalid IL or missing references) //IL_18e7: Unknown result type (might be due to invalid IL or missing references) //IL_18f1: Unknown result type (might be due to invalid IL or missing references) //IL_18f7: Unknown result type (might be due to invalid IL or missing references) //IL_18fc: Unknown result type (might be due to invalid IL or missing references) //IL_1901: Unknown result type (might be due to invalid IL or missing references) //IL_1906: Unknown result type (might be due to invalid IL or missing references) //IL_1923: Unknown result type (might be due to invalid IL or missing references) //IL_192e: Unknown result type (might be due to invalid IL or missing references) //IL_1938: Unknown result type (might be due to invalid IL or missing references) //IL_193d: Unknown result type (might be due to invalid IL or missing references) //IL_1948: Unknown result type (might be due to invalid IL or missing references) //IL_1953: Unknown result type (might be due to invalid IL or missing references) //IL_195d: Unknown result type (might be due to invalid IL or missing references) //IL_1962: Unknown result type (might be due to invalid IL or missing references) //IL_196d: Unknown result type (might be due to invalid IL or missing references) //IL_1977: Unknown result type (might be due to invalid IL or missing references) //IL_197c: Unknown result type (might be due to invalid IL or missing references) //IL_1982: Unknown result type (might be due to invalid IL or missing references) //IL_1987: Unknown result type (might be due to invalid IL or missing references) //IL_198c: Unknown result type (might be due to invalid IL or missing references) //IL_199c: Unknown result type (might be due to invalid IL or missing references) //IL_19a7: Unknown result type (might be due to invalid IL or missing references) //IL_19b1: Unknown result type (might be due to invalid IL or missing references) //IL_19b6: Unknown result type (might be due to invalid IL or missing references) //IL_19c1: Unknown result type (might be due to invalid IL or missing references) //IL_19cb: Unknown result type (might be due to invalid IL or missing references) //IL_19d0: Unknown result type (might be due to invalid IL or missing references) //IL_19d6: Unknown result type (might be due to invalid IL or missing references) //IL_19db: Unknown result type (might be due to invalid IL or missing references) //IL_19e6: Unknown result type (might be due to invalid IL or missing references) //IL_19f1: Unknown result type (might be due to invalid IL or missing references) //IL_19fb: Unknown result type (might be due to invalid IL or missing references) //IL_1a00: Unknown result type (might be due to invalid IL or missing references) //IL_1a0b: Unknown result type (might be due to invalid IL or missing references) //IL_1a15: Unknown result type (might be due to invalid IL or missing references) //IL_1a1a: Unknown result type (might be due to invalid IL or missing references) //IL_1a20: Unknown result type (might be due to invalid IL or missing references) //IL_1a25: Unknown result type (might be due to invalid IL or missing references) //IL_1a2b: Unknown result type (might be due to invalid IL or missing references) //IL_1a30: Unknown result type (might be due to invalid IL or missing references) //IL_1a35: Unknown result type (might be due to invalid IL or missing references) //IL_1a45: Unknown result type (might be due to invalid IL or missing references) //IL_1a50: Unknown result type (might be due to invalid IL or missing references) //IL_1a5a: Unknown result type (might be due to invalid IL or missing references) //IL_1a5f: Unknown result type (might be due to invalid IL or missing references) //IL_1a6a: Unknown result type (might be due to invalid IL or missing references) //IL_1a74: Unknown result type (might be due to invalid IL or missing references) //IL_1a79: Unknown result type (might be due to invalid IL or missing references) //IL_1a7f: Unknown result type (might be due to invalid IL or missing references) //IL_1a84: Unknown result type (might be due to invalid IL or missing references) //IL_1a8f: Unknown result type (might be due to invalid IL or missing references) //IL_1a9a: Unknown result type (might be due to invalid IL or missing references) //IL_1aa4: Unknown result type (might be due to invalid IL or missing references) //IL_1aa9: Unknown result type (might be due to invalid IL or missing references) //IL_1ab4: Unknown result type (might be due to invalid IL or missing references) //IL_1abe: Unknown result type (might be due to invalid IL or missing references) //IL_1ac3: Unknown result type (might be due to invalid IL or missing references) //IL_1ac9: Unknown result type (might be due to invalid IL or missing references) //IL_1ace: Unknown result type (might be due to invalid IL or missing references) //IL_1ad4: Unknown result type (might be due to invalid IL or missing references) //IL_1ad9: Unknown result type (might be due to invalid IL or missing references) //IL_1ade: Unknown result type (might be due to invalid IL or missing references) //IL_1aee: Unknown result type (might be due to invalid IL or missing references) //IL_1af9: Unknown result type (might be due to invalid IL or missing references) //IL_1afe: Unknown result type (might be due to invalid IL or missing references) //IL_1b09: Unknown result type (might be due to invalid IL or missing references) //IL_1b13: Unknown result type (might be due to invalid IL or missing references) //IL_1b18: Unknown result type (might be due to invalid IL or missing references) //IL_1b1e: Unknown result type (might be due to invalid IL or missing references) //IL_1b23: Unknown result type (might be due to invalid IL or missing references) //IL_1b29: Unknown result type (might be due to invalid IL or missing references) //IL_1b2e: Unknown result type (might be due to invalid IL or missing references) //IL_1b39: Unknown result type (might be due to invalid IL or missing references) //IL_1b44: Unknown result type (might be due to invalid IL or missing references) //IL_1b49: Unknown result type (might be due to invalid IL or missing references) //IL_1b54: Unknown result type (might be due to invalid IL or missing references) //IL_1b5e: Unknown result type (might be due to invalid IL or missing references) //IL_1b63: Unknown result type (might be due to invalid IL or missing references) //IL_1b69: Unknown result type (might be due to invalid IL or missing references) //IL_1b6e: Unknown result type (might be due to invalid IL or missing references) //IL_1b73: Unknown result type (might be due to invalid IL or missing references) //IL_1b83: Unknown result type (might be due to invalid IL or missing references) //IL_1b8e: Unknown result type (might be due to invalid IL or missing references) //IL_1b93: Unknown result type (might be due to invalid IL or missing references) //IL_1b9e: Unknown result type (might be due to invalid IL or missing references) //IL_1ba8: Unknown result type (might be due to invalid IL or missing references) //IL_1bad: Unknown result type (might be due to invalid IL or missing references) //IL_1bb8: Unknown result type (might be due to invalid IL or missing references) //IL_1bc2: Unknown result type (might be due to invalid IL or missing references) //IL_1bc7: Unknown result type (might be due to invalid IL or missing references) //IL_1bcd: Unknown result type (might be due to invalid IL or missing references) //IL_1bd2: Unknown result type (might be due to invalid IL or missing references) //IL_1bd8: Unknown result type (might be due to invalid IL or missing references) //IL_1bdd: Unknown result type (might be due to invalid IL or missing references) //IL_1be3: Unknown result type (might be due to invalid IL or missing references) //IL_1be8: Unknown result type (might be due to invalid IL or missing references) //IL_1bf3: Unknown result type (might be due to invalid IL or missing references) //IL_1bfe: Unknown result type (might be due to invalid IL or missing references) //IL_1c03: Unknown result type (might be due to invalid IL or missing references) //IL_1c0e: Unknown result type (might be due to invalid IL or missing references) //IL_1c18: Unknown result type (might be due to invalid IL or missing references) //IL_1c1d: Unknown result type (might be due to invalid IL or missing references) //IL_1c28: Unknown result type (might be due to invalid IL or missing references) //IL_1c32: Unknown result type (might be due to invalid IL or missing references) //IL_1c37: Unknown result type (might be due to invalid IL or missing references) //IL_1c3d: Unknown result type (might be due to invalid IL or missing references) //IL_1c42: Unknown result type (might be due to invalid IL or missing references) //IL_1c48: Unknown result type (might be due to invalid IL or missing references) //IL_1c4d: Unknown result type (might be due to invalid IL or missing references) //IL_1c52: Unknown result type (might be due to invalid IL or missing references) //IL_1c62: Unknown result type (might be due to invalid IL or missing references) //IL_1c6d: Unknown result type (might be due to invalid IL or missing references) //IL_1c72: Unknown result type (might be due to invalid IL or missing references) //IL_1c7d: Unknown result type (might be due to invalid IL or missing references) //IL_1c87: Unknown result type (might be due to invalid IL or missing references) //IL_1c8c: Unknown result type (might be due to invalid IL or missing references) //IL_1c97: Unknown result type (might be due to invalid IL or missing references) //IL_1ca1: Unknown result type (might be due to invalid IL or missing references) //IL_1ca6: Unknown result type (might be due to invalid IL or missing references) //IL_1cac: Unknown result type (might be due to invalid IL or missing references) //IL_1cb1: Unknown result type (might be due to invalid IL or missing references) //IL_1cb7: Unknown result type (might be due to invalid IL or missing references) //IL_1cbc: Unknown result type (might be due to invalid IL or missing references) //IL_1cc2: Unknown result type (might be due to invalid IL or missing references) //IL_1cc7: Unknown result type (might be due to invalid IL or missing references) //IL_1cd2: Unknown result type (might be due to invalid IL or missing references) //IL_1cdd: Unknown result type (might be due to invalid IL or missing references) //IL_1ce2: Unknown result type (might be due to invalid IL or missing references) //IL_1ced: Unknown result type (might be due to invalid IL or missing references) //IL_1cf7: Unknown result type (might be due to invalid IL or missing references) //IL_1cfc: Unknown result type (might be due to invalid IL or missing references) //IL_1d07: Unknown result type (might be due to invalid IL or missing references) //IL_1d11: Unknown result type (might be due to invalid IL or missing references) //IL_1d16: Unknown result type (might be due to invalid IL or missing references) //IL_1d1c: Unknown result type (might be due to invalid IL or missing references) //IL_1d21: Unknown result type (might be due to invalid IL or missing references) //IL_1d27: Unknown result type (might be due to invalid IL or missing references) //IL_1d2c: Unknown result type (might be due to invalid IL or missing references) //IL_1d31: Unknown result type (might be due to invalid IL or missing references) //IL_1d41: Unknown result type (might be due to invalid IL or missing references) //IL_1d4c: Unknown result type (might be due to invalid IL or missing references) //IL_1d56: Unknown result type (might be due to invalid IL or missing references) //IL_1d5b: Unknown result type (might be due to invalid IL or missing references) //IL_1d66: Unknown result type (might be due to invalid IL or missing references) //IL_1d70: Unknown result type (might be due to invalid IL or missing references) //IL_1d75: Unknown result type (might be due to invalid IL or missing references) //IL_1d7b: Unknown result type (might be due to invalid IL or missing references) //IL_1d80: Unknown result type (might be due to invalid IL or missing references) //IL_1d86: Unknown result type (might be due to invalid IL or missing references) //IL_1d8b: Unknown result type (might be due to invalid IL or missing references) //IL_1d96: Unknown result type (might be due to invalid IL or missing references) //IL_1da1: Unknown result type (might be due to invalid IL or missing references) //IL_1dab: Unknown result type (might be due to invalid IL or missing references) //IL_1db0: Unknown result type (might be due to invalid IL or missing references) //IL_1dbb: Unknown result type (might be due to invalid IL or missing references) //IL_1dc5: Unknown result type (might be due to invalid IL or missing references) //IL_1dca: Unknown result type (might be due to invalid IL or missing references) //IL_1dd5: Unknown result type (might be due to invalid IL or missing references) //IL_1ddf: Unknown result type (might be due to invalid IL or missing references) //IL_1de4: Unknown result type (might be due to invalid IL or missing references) //IL_1dea: Unknown result type (might be due to invalid IL or missing references) //IL_1def: Unknown result type (might be due to invalid IL or missing references) //IL_1df5: Unknown result type (might be due to invalid IL or missing references) //IL_1dfa: Unknown result type (might be due to invalid IL or missing references) //IL_1e00: Unknown result type (might be due to invalid IL or missing references) //IL_1e05: Unknown result type (might be due to invalid IL or missing references) //IL_1e0b: Unknown result type (might be due to invalid IL or missing references) //IL_1e10: Unknown result type (might be due to invalid IL or missing references) //IL_1e15: Unknown result type (might be due to invalid IL or missing references) //IL_1e25: Unknown result type (might be due to invalid IL or missing references) //IL_1e30: Unknown result type (might be due to invalid IL or missing references) //IL_1e3a: Unknown result type (might be due to invalid IL or missing references) //IL_1e3f: Unknown result type (might be due to invalid IL or missing references) //IL_1e4a: Unknown result type (might be due to invalid IL or missing references) //IL_1e54: Unknown result type (might be due to invalid IL or missing references) //IL_1e59: Unknown result type (might be due to invalid IL or missing references) //IL_1e5f: Unknown result type (might be due to invalid IL or missing references) //IL_1e64: Unknown result type (might be due to invalid IL or missing references) //IL_1e6a: Unknown result type (might be due to invalid IL or missing references) //IL_1e6f: Unknown result type (might be due to invalid IL or missing references) //IL_1e7a: Unknown result type (might be due to invalid IL or missing references) //IL_1e85: Unknown result type (might be due to invalid IL or missing references) //IL_1e8f: Unknown result type (might be due to invalid IL or missing references) //IL_1e94: Unknown result type (might be due to invalid IL or missing references) //IL_1e9f: Unknown result type (might be due to invalid IL or missing references) //IL_1ea9: Unknown result type (might be due to invalid IL or missing references) //IL_1eae: Unknown result type (might be due to invalid IL or missing references) //IL_1eb9: Unknown result type (might be due to invalid IL or missing references) //IL_1ec3: Unknown result type (might be due to invalid IL or missing references) //IL_1ec8: Unknown result type (might be due to invalid IL or missing references) //IL_1ece: Unknown result type (might be due to invalid IL or missing references) //IL_1ed3: Unknown result type (might be due to invalid IL or missing references) //IL_1ed9: Unknown result type (might be due to invalid IL or missing references) //IL_1ede: Unknown result type (might be due to invalid IL or missing references) //IL_1ee4: Unknown result type (might be due to invalid IL or missing references) //IL_1ee9: Unknown result type (might be due to invalid IL or missing references) //IL_1eee: Unknown result type (might be due to invalid IL or missing references) //IL_1efe: Unknown result type (might be due to invalid IL or missing references) //IL_1f09: Unknown result type (might be due to invalid IL or missing references) //IL_1f13: Unknown result type (might be due to invalid IL or missing references) //IL_1f18: Unknown result type (might be due to invalid IL or missing references) //IL_1f23: Unknown result type (might be due to invalid IL or missing references) //IL_1f2d: Unknown result type (might be due to invalid IL or missing references) //IL_1f32: Unknown result type (might be due to invalid IL or missing references) //IL_1f38: Unknown result type (might be due to invalid IL or missing references) //IL_1f3d: Unknown result type (might be due to invalid IL or missing references) //IL_1f43: Unknown result type (might be due to invalid IL or missing references) //IL_1f48: Unknown result type (might be due to invalid IL or missing references) //IL_1f53: Unknown result type (might be due to invalid IL or missing references) //IL_1f5e: Unknown result type (might be due to invalid IL or missing references) //IL_1f68: Unknown result type (might be due to invalid IL or missing references) //IL_1f6d: Unknown result type (might be due to invalid IL or missing references) //IL_1f78: Unknown result type (might be due to invalid IL or missing references) //IL_1f82: Unknown result type (might be due to invalid IL or missing references) //IL_1f87: Unknown result type (might be due to invalid IL or missing references) //IL_1f92: Unknown result type (might be due to invalid IL or missing references) //IL_1f9c: Unknown result type (might be due to invalid IL or missing references) //IL_1fa1: Unknown result type (might be due to invalid IL or missing references) //IL_1fa7: Unknown result type (might be due to invalid IL or missing references) //IL_1fac: Unknown result type (might be due to invalid IL or missing references) //IL_1fb2: Unknown result type (might be due to invalid IL or missing references) //IL_1fb7: Unknown result type (might be due to invalid IL or missing references) //IL_1fbd: Unknown result type (might be due to invalid IL or missing references) //IL_1fc2: Unknown result type (might be due to invalid IL or missing references) //IL_1fc8: Unknown result type (might be due to invalid IL or missing references) //IL_1fcd: Unknown result type (might be due to invalid IL or missing references) //IL_1fd2: Unknown result type (might be due to invalid IL or missing references) //IL_1fe2: Unknown result type (might be due to invalid IL or missing references) //IL_1fed: Unknown result type (might be due to invalid IL or missing references) //IL_1ff7: Unknown result type (might be due to invalid IL or missing references) //IL_1ffc: Unknown result type (might be due to invalid IL or missing references) //IL_2007: Unknown result type (might be due to invalid IL or missing references) //IL_2011: Unknown result type (might be due to invalid IL or missing references) //IL_2016: Unknown result type (might be due to invalid IL or missing references) //IL_201c: Unknown result type (might be due to invalid IL or missing references) //IL_2021: Unknown result type (might be due to invalid IL or missing references) //IL_2027: Unknown result type (might be due to invalid IL or missing references) //IL_202c: Unknown result type (might be due to invalid IL or missing references) //IL_2037: Unknown result type (might be due to invalid IL or missing references) //IL_2042: Unknown result type (might be due to invalid IL or missing references) //IL_204c: Unknown result type (might be due to invalid IL or missing references) //IL_2051: Unknown result type (might be due to invalid IL or missing references) //IL_205c: Unknown result type (might be due to invalid IL or missing references) //IL_2066: Unknown result type (might be due to invalid IL or missing references) //IL_206b: Unknown result type (might be due to invalid IL or missing references) //IL_2076: Unknown result type (might be due to invalid IL or missing references) //IL_2080: Unknown result type (might be due to invalid IL or missing references) //IL_2085: Unknown result type (might be due to invalid IL or missing references) //IL_208b: Unknown result type (might be due to invalid IL or missing references) //IL_2090: Unknown result type (might be due to invalid IL or missing references) //IL_2096: Unknown result type (might be due to invalid IL or missing references) //IL_209b: Unknown result type (might be due to invalid IL or missing references) //IL_20a1: Unknown result type (might be due to invalid IL or missing references) //IL_20a6: Unknown result type (might be due to invalid IL or missing references) //IL_20ab: Unknown result type (might be due to invalid IL or missing references) //IL_20bb: Unknown result type (might be due to invalid IL or missing references) //IL_20c6: Unknown result type (might be due to invalid IL or missing references) //IL_20d0: Unknown result type (might be due to invalid IL or missing references) //IL_20d5: Unknown result type (might be due to invalid IL or missing references) //IL_20e0: Unknown result type (might be due to invalid IL or missing references) //IL_20e5: Unknown result type (might be due to invalid IL or missing references) //IL_20eb: Unknown result type (might be due to invalid IL or missing references) //IL_20f0: Unknown result type (might be due to invalid IL or missing references) //IL_20f6: Unknown result type (might be due to invalid IL or missing references) //IL_20fb: Unknown result type (might be due to invalid IL or missing references) //IL_2106: Unknown result type (might be due to invalid IL or missing references) //IL_2111: Unknown result type (might be due to invalid IL or missing references) //IL_211b: Unknown result type (might be due to invalid IL or missing references) //IL_2120: Unknown result type (might be due to invalid IL or missing references) //IL_212b: Unknown result type (might be due to invalid IL or missing references) //IL_2135: Unknown result type (might be due to invalid IL or missing references) //IL_213a: Unknown result type (might be due to invalid IL or missing references) //IL_2140: Unknown result type (might be due to invalid IL or missing references) //IL_2145: Unknown result type (might be due to invalid IL or missing references) //IL_2150: Unknown result type (might be due to invalid IL or missing references) //IL_2155: Unknown result type (might be due to invalid IL or missing references) //IL_215b: Unknown result type (might be due to invalid IL or missing references) //IL_2160: Unknown result type (might be due to invalid IL or missing references) //IL_2166: Unknown result type (might be due to invalid IL or missing references) //IL_216b: Unknown result type (might be due to invalid IL or missing references) //IL_2171: Unknown result type (might be due to invalid IL or missing references) //IL_2176: Unknown result type (might be due to invalid IL or missing references) //IL_217b: Unknown result type (might be due to invalid IL or missing references) //IL_218b: Unknown result type (might be due to invalid IL or missing references) //IL_2196: Unknown result type (might be due to invalid IL or missing references) //IL_21a0: Unknown result type (might be due to invalid IL or missing references) //IL_21a5: Unknown result type (might be due to invalid IL or missing references) //IL_21b0: Unknown result type (might be due to invalid IL or missing references) //IL_21b5: Unknown result type (might be due to invalid IL or missing references) //IL_21bb: Unknown result type (might be due to invalid IL or missing references) //IL_21c0: Unknown result type (might be due to invalid IL or missing references) //IL_21c6: Unknown result type (might be due to invalid IL or missing references) //IL_21cb: Unknown result type (might be due to invalid IL or missing references) //IL_21d6: Unknown result type (might be due to invalid IL or missing references) //IL_21e1: Unknown result type (might be due to invalid IL or missing references) //IL_21eb: Unknown result type (might be due to invalid IL or missing references) //IL_21f0: Unknown result type (might be due to invalid IL or missing references) //IL_21fb: Unknown result type (might be due to invalid IL or missing references) //IL_2200: Unknown result type (might be due to invalid IL or missing references) //IL_220b: Unknown result type (might be due to invalid IL or missing references) //IL_2215: Unknown result type (might be due to invalid IL or missing references) //IL_221a: Unknown result type (might be due to invalid IL or missing references) //IL_2220: Unknown result type (might be due to invalid IL or missing references) //IL_2225: Unknown result type (might be due to invalid IL or missing references) //IL_222b: Unknown result type (might be due to invalid IL or missing references) //IL_2230: Unknown result type (might be due to invalid IL or missing references) //IL_2236: Unknown result type (might be due to invalid IL or missing references) //IL_223b: Unknown result type (might be due to invalid IL or missing references) //IL_2240: Unknown result type (might be due to invalid IL or missing references) //IL_2250: Unknown result type (might be due to invalid IL or missing references) //IL_225b: Unknown result type (might be due to invalid IL or missing references) //IL_2265: Unknown result type (might be due to invalid IL or missing references) //IL_226a: Unknown result type (might be due to invalid IL or missing references) //IL_2275: Unknown result type (might be due to invalid IL or missing references) //IL_227f: Unknown result type (might be due to invalid IL or missing references) //IL_2284: Unknown result type (might be due to invalid IL or missing references) //IL_228a: Unknown result type (might be due to invalid IL or missing references) //IL_228f: Unknown result type (might be due to invalid IL or missing references) //IL_2295: Unknown result type (might be due to invalid IL or missing references) //IL_229a: Unknown result type (might be due to invalid IL or missing references) //IL_22a5: Unknown result type (might be due to invalid IL or missing references) //IL_22b0: Unknown result type (might be due to invalid IL or missing references) //IL_22ba: Unknown result type (might be due to invalid IL or missing references) //IL_22bf: Unknown result type (might be due to invalid IL or missing references) //IL_22ca: Unknown result type (might be due to invalid IL or missing references) //IL_22d4: Unknown result type (might be due to invalid IL or missing references) //IL_22d9: Unknown result type (might be due to invalid IL or missing references) //IL_22e4: Unknown result type (might be due to invalid IL or missing references) //IL_22ee: Unknown result type (might be due to invalid IL or missing references) //IL_22f3: Unknown result type (might be due to invalid IL or missing references) //IL_22f9: Unknown result type (might be due to invalid IL or missing references) //IL_22fe: Unknown result type (might be due to invalid IL or missing references) //IL_2304: Unknown result type (might be due to invalid IL or missing references) //IL_2309: Unknown result type (might be due to invalid IL or missing references) //IL_230f: Unknown result type (might be due to invalid IL or missing references) //IL_2314: Unknown result type (might be due to invalid IL or missing references) //IL_231a: Unknown result type (might be due to invalid IL or missing references) //IL_231f: Unknown result type (might be due to invalid IL or missing references) //IL_2324: Unknown result type (might be due to invalid IL or missing references) //IL_2334: Unknown result type (might be due to invalid IL or missing references) //IL_233f: Unknown result type (might be due to invalid IL or missing references) //IL_2349: Unknown result type (might be due to invalid IL or missing references) //IL_234e: Unknown result type (might be due to invalid IL or missing references) //IL_2359: Unknown result type (might be due to invalid IL or missing references) //IL_2363: Unknown result type (might be due to invalid IL or missing references) //IL_2368: Unknown result type (might be due to invalid IL or missing references) //IL_236e: Unknown result type (might be due to invalid IL or missing references) //IL_2373: Unknown result type (might be due to invalid IL or missing references) //IL_2379: Unknown result type (might be due to invalid IL or missing references) //IL_237e: Unknown result type (might be due to invalid IL or missing references) //IL_2389: Unknown result type (might be due to invalid IL or missing references) //IL_2394: Unknown result type (might be due to invalid IL or missing references) //IL_239e: Unknown result type (might be due to invalid IL or missing references) //IL_23a3: Unknown result type (might be due to invalid IL or missing references) //IL_23ae: Unknown result type (might be due to invalid IL or missing references) //IL_23b8: Unknown result type (might be due to invalid IL or missing references) //IL_23bd: Unknown result type (might be due to invalid IL or missing references) //IL_23c8: Unknown result type (might be due to invalid IL or missing references) //IL_23d2: Unknown result type (might be due to invalid IL or missing references) //IL_23d7: Unknown result type (might be due to invalid IL or missing references) //IL_23dd: Unknown result type (might be due to invalid IL or missing references) //IL_23e2: Unknown result type (might be due to invalid IL or missing references) //IL_23e8: Unknown result type (might be due to invalid IL or missing references) //IL_23ed: Unknown result type (might be due to invalid IL or missing references) //IL_23f3: Unknown result type (might be due to invalid IL or missing references) //IL_23f8: Unknown result type (might be due to invalid IL or missing references) //IL_23fd: Unknown result type (might be due to invalid IL or missing references) //IL_240d: Unknown result type (might be due to invalid IL or missing references) //IL_2418: Unknown result type (might be due to invalid IL or missing references) //IL_2422: Unknown result type (might be due to invalid IL or missing references) //IL_2427: Unknown result type (might be due to invalid IL or missing references) //IL_2432: Unknown result type (might be due to invalid IL or missing references) //IL_243c: Unknown result type (might be due to invalid IL or missing references) //IL_2441: Unknown result type (might be due to invalid IL or missing references) //IL_2447: Unknown result type (might be due to invalid IL or missing references) //IL_244c: Unknown result type (might be due to invalid IL or missing references) //IL_2452: Unknown result type (might be due to invalid IL or missing references) //IL_2457: Unknown result type (might be due to invalid IL or missing references) //IL_2462: Unknown result type (might be due to invalid IL or missing references) //IL_246d: Unknown result type (might be due to invalid IL or missing references) //IL_2477: Unknown result type (might be due to invalid IL or missing references) //IL_247c: Unknown result type (might be due to invalid IL or missing references) //IL_2487: Unknown result type (might be due to invalid IL or missing references) //IL_2491: Unknown result type (might be due to invalid IL or missing references) //IL_2496: Unknown result type (might be due to invalid IL or missing references) //IL_24a1: Unknown result type (might be due to invalid IL or missing references) //IL_24ab: Unknown result type (might be due to invalid IL or missing references) //IL_24b0: Unknown result type (might be due to invalid IL or missing references) //IL_24b6: Unknown result type (might be due to invalid IL or missing references) //IL_24bb: Unknown result type (might be due to invalid IL or missing references) //IL_24c1: Unknown result type (might be due to invalid IL or missing references) //IL_24c6: Unknown result type (might be due to invalid IL or missing references) //IL_24cc: Unknown result type (might be due to invalid IL or missing references) //IL_24d1: Unknown result type (might be due to invalid IL or missing references) //IL_24d7: Unknown result type (might be due to invalid IL or missing references) //IL_24dc: Unknown result type (might be due to invalid IL or missing references) //IL_24e1: Unknown result type (might be due to invalid IL or missing references) //IL_24f1: Unknown result type (might be due to invalid IL or missing references) //IL_24fc: Unknown result type (might be due to invalid IL or missing references) //IL_2506: Unknown result type (might be due to invalid IL or missing references) //IL_250b: Unknown result type (might be due to invalid IL or missing references) //IL_2516: Unknown result type (might be due to invalid IL or missing references) //IL_2520: Unknown result type (might be due to invalid IL or missing references) //IL_2525: Unknown result type (might be due to invalid IL or missing references) //IL_252b: Unknown result type (might be due to invalid IL or missing references) //IL_2530: Unknown result type (might be due to invalid IL or missing references) //IL_2536: Unknown result type (might be due to invalid IL or missing references) //IL_253b: Unknown result type (might be due to invalid IL or missing references) //IL_2546: Unknown result type (might be due to invalid IL or missing references) //IL_2551: Unknown result type (might be due to invalid IL or missing references) //IL_255b: Unknown result type (might be due to invalid IL or missing references) //IL_2560: Unknown result type (might be due to invalid IL or missing references) //IL_256b: Unknown result type (might be due to invalid IL or missing references) //IL_2575: Unknown result type (might be due to invalid IL or missing references) //IL_257a: Unknown result type (might be due to invalid IL or missing references) //IL_2585: Unknown result type (might be due to invalid IL or missing references) //IL_258f: Unknown result type (might be due to invalid IL or missing references) //IL_2594: Unknown result type (might be due to invalid IL or missing references) //IL_259a: Unknown result type (might be due to invalid IL or missing references) //IL_259f: Unknown result type (might be due to invalid IL or missing references) //IL_25a5: Unknown result type (might be due to invalid IL or missing references) //IL_25aa: Unknown result type (might be due to invalid IL or missing references) //IL_25b0: Unknown result type (might be due to invalid IL or missing references) //IL_25b5: Unknown result type (might be due to invalid IL or missing references) //IL_25ba: Unknown result type (might be due to invalid IL or missing references) //IL_25ca: Unknown result type (might be due to invalid IL or missing references) //IL_25d5: Unknown result type (might be due to invalid IL or missing references) //IL_25df: Unknown result type (might be due to invalid IL or missing references) //IL_25e4: Unknown result type (might be due to invalid IL or missing references) //IL_25ef: Unknown result type (might be due to invalid IL or missing references) //IL_25f4: Unknown result type (might be due to invalid IL or missing references) //IL_25fa: Unknown result type (might be due to invalid IL or missing references) //IL_25ff: Unknown result type (might be due to invalid IL or missing references) //IL_2605: Unknown result type (might be due to invalid IL or missing references) //IL_260a: Unknown result type (might be due to invalid IL or missing references) //IL_2615: Unknown result type (might be due to invalid IL or missing references) //IL_2620: Unknown result type (might be due to invalid IL or missing references) //IL_262a: Unknown result type (might be due to invalid IL or missing references) //IL_262f: Unknown result type (might be due to invalid IL or missing references) //IL_263a: Unknown result type (might be due to invalid IL or missing references) //IL_2644: Unknown result type (might be due to invalid IL or missing references) //IL_2649: Unknown result type (might be due to invalid IL or missing references) //IL_264f: Unknown result type (might be due to invalid IL or missing references) //IL_2654: Unknown result type (might be due to invalid IL or missing references) //IL_265f: Unknown result type (might be due to invalid IL or missing references) //IL_2664: Unknown result type (might be due to invalid IL or missing references) //IL_266a: Unknown result type (might be due to invalid IL or missing references) //IL_266f: Unknown result type (might be due to invalid IL or missing references) //IL_2675: Unknown result type (might be due to invalid IL or missing references) //IL_267a: Unknown result type (might be due to invalid IL or missing references) //IL_2680: Unknown result type (might be due to invalid IL or missing references) //IL_2685: Unknown result type (might be due to invalid IL or missing references) //IL_268a: Unknown result type (might be due to invalid IL or missing references) //IL_269a: Unknown result type (might be due to invalid IL or missing references) //IL_26a5: Unknown result type (might be due to invalid IL or missing references) //IL_26af: Unknown result type (might be due to invalid IL or missing references) //IL_26b4: Unknown result type (might be due to invalid IL or missing references) //IL_26bf: Unknown result type (might be due to invalid IL or missing references) //IL_26c4: Unknown result type (might be due to invalid IL or missing references) //IL_26ca: Unknown result type (might be due to invalid IL or missing references) //IL_26cf: Unknown result type (might be due to invalid IL or missing references) //IL_26d5: Unknown result type (might be due to invalid IL or missing references) //IL_26da: Unknown result type (might be due to invalid IL or missing references) //IL_26e5: Unknown result type (might be due to invalid IL or missing references) //IL_26f0: Unknown result type (might be due to invalid IL or missing references) //IL_26fa: Unknown result type (might be due to invalid IL or missing references) //IL_26ff: Unknown result type (might be due to invalid IL or missing references) //IL_270a: Unknown result type (might be due to invalid IL or missing references) //IL_270f: Unknown result type (might be due to invalid IL or missing references) //IL_271a: Unknown result type (might be due to invalid IL or missing references) //IL_2724: Unknown result type (might be due to invalid IL or missing references) //IL_2729: Unknown result type (might be due to invalid IL or missing references) //IL_272f: Unknown result type (might be due to invalid IL or missing references) //IL_2734: Unknown result type (might be due to invalid IL or missing references) //IL_273a: Unknown result type (might be due to invalid IL or missing references) //IL_273f: Unknown result type (might be due to invalid IL or missing references) //IL_2745: Unknown result type (might be due to invalid IL or missing references) //IL_274a: Unknown result type (might be due to invalid IL or missing references) //IL_274f: Unknown result type (might be due to invalid IL or missing references) //IL_276c: Unknown result type (might be due to invalid IL or missing references) //IL_2777: Unknown result type (might be due to invalid IL or missing references) //IL_277c: Unknown result type (might be due to invalid IL or missing references) //IL_2787: Unknown result type (might be due to invalid IL or missing references) //IL_2791: Unknown result type (might be due to invalid IL or missing references) //IL_2796: Unknown result type (might be due to invalid IL or missing references) //IL_27a1: Unknown result type (might be due to invalid IL or missing references) //IL_27ab: Unknown result type (might be due to invalid IL or missing references) //IL_27b0: Unknown result type (might be due to invalid IL or missing references) //IL_27b6: Unknown result type (might be due to invalid IL or missing references) //IL_27bb: Unknown result type (might be due to invalid IL or missing references) //IL_27c6: Unknown result type (might be due to invalid IL or missing references) //IL_27d1: Unknown result type (might be due to invalid IL or missing references) //IL_27db: Unknown result type (might be due to invalid IL or missing references) //IL_27e0: Unknown result type (might be due to invalid IL or missing references) //IL_27eb: Unknown result type (might be due to invalid IL or missing references) //IL_27f5: Unknown result type (might be due to invalid IL or missing references) //IL_27fa: Unknown result type (might be due to invalid IL or missing references) //IL_2800: Unknown result type (might be due to invalid IL or missing references) //IL_2805: Unknown result type (might be due to invalid IL or missing references) //IL_280a: Unknown result type (might be due to invalid IL or missing references) for (int i = 0; i < climbing.Length; i++) { showClimbingDetectors3 = climbing[i].showClimbingDetectors; climbingSurfaceDetectorsUpAmount3 = ((Component)this).transform.up * (climbing[i].climbingSurfaceDetectorsUpAmount + 0.2f); climbingSurfaceDetectorsHeight3 = climbing[i].climbingSurfaceDetectorsHeight - 0.18f; climbingSurfaceDetectorsLength3 = climbing[i].climbingSurfaceDetectorsLength - 0.5f; showEdgeOfObjectDetctors3 = climbing[i].showEdgeOfObjectDetctors; bottomNoSurfaceDetectorHeight3 = ((Component)this).transform.up * (climbing[i].bottomNoSurfaceDetectorHeight + 0.15f); topNoSurfaceDetectorHeight3 = ((Component)this).transform.up * (climbing[i].topNoSurfaceDetectorHeight + 0.15f); topAndBottomNoSurfaceDetectorsWidth3 = ((Component)this).transform.right * climbing[i].topAndBottomNoSurfaceDetectorsWidth; sideNoSurfaceDetectorsHeight3 = climbing[i].sideNoSurfaceDetectorsHeight - 0.15f; sideNoSurfaceDetectorsWidth3 = ((Component)this).transform.right * (climbing[i].sideNoSurfaceDetectorsWidth - 0.25f); showPullUpDetector3 = climbing[i].showPullUpDetector; pullUpLocationForward3 = ((Component)this).transform.forward * climbing[i].pullUpLocationForward; showWalkingOffLedgeRays3 = climbing[i].walkingOffOfClimbableSurface.showWalkingOffLedgeRays; spaceInFrontNeededToGrabBackOn3 = ((Component)this).transform.forward * (climbing[i].walkingOffOfClimbableSurface.spaceInFrontNeededToGrabBackOn + 0.03f); firstSideLedgeDetectorsHeight3 = ((Component)this).transform.up * climbing[i].walkingOffOfClimbableSurface.firstSideLedgeDetectorsHeight; secondSideLedgeDetectorsHeight3 = ((Component)this).transform.up * climbing[i].walkingOffOfClimbableSurface.secondSideLedgeDetectorsHeight; thirdSideLedgeDetectorsHeight3 = ((Component)this).transform.up * climbing[i].walkingOffOfClimbableSurface.thirdSideLedgeDetectorsHeight; sideLedgeDetectorsWidth3 = ((Component)this).transform.right * climbing[i].walkingOffOfClimbableSurface.sideLedgeDetectorsWidth; sideLedgeDetectorsLength3 = ((Component)this).transform.forward * climbing[i].walkingOffOfClimbableSurface.sideLedgeDetectorsLength; spaceBelowNeededToGrabBackOnHeight3 = ((Component)this).transform.up * (climbing[i].walkingOffOfClimbableSurface.spaceBelowNeededToGrabBackOnHeight + 0.07f); spaceBelowNeededToGrabBackOnForward3 = ((Component)this).transform.forward * (climbing[i].walkingOffOfClimbableSurface.spaceBelowNeededToGrabBackOnForward + 0.06f); grabBackOnLocationHeight3 = ((Component)this).transform.up * climbing[i].walkingOffOfClimbableSurface.grabBackOnLocationHeight; grabBackOnLocationWidth3 = ((Component)this).transform.right * climbing[i].walkingOffOfClimbableSurface.grabBackOnLocationWidth; grabBackOnLocationForward3 = ((Component)this).transform.forward * climbing[i].walkingOffOfClimbableSurface.grabBackOnLocationForward; if (showClimbingDetectors3) { Debug.DrawLine(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount3 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight3 + 1f) * 0.1875f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount3 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight3 + 1f) * 0.1875f, Color.red); Debug.DrawLine(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount3 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight3 + 1f) * 0.375f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount3 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight3 + 1f) * 0.375f, Color.red); Debug.DrawLine(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount3 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight3 + 1f) * 0.5625f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount3 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight3 + 1f) * 0.5625f, Color.red); Debug.DrawLine(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount3 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight3 + 1f) * 0.75f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount3 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight3 + 1f) * 0.75f, Color.red); Debug.DrawLine(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount3 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight3 + 1f) * 0.9375f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount3 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight3 + 1f) * 0.9375f, Color.red); Debug.DrawLine(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount3 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight3 + 1f) * 1.125f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount3 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight3 + 1f) * 1.125f, Color.red); } if (showEdgeOfObjectDetctors3) { Debug.DrawLine(((Component)this).transform.position + bottomNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 0.1875f, ((Component)this).transform.position + bottomNoSurfaceDetectorHeight3 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) + ((Component)this).transform.up * 0.1875f, Color.cyan); Debug.DrawLine(((Component)this).transform.position + bottomNoSurfaceDetectorHeight3 - ((Component)this).transform.right / 3f - topAndBottomNoSurfaceDetectorsWidth3 + ((Component)this).transform.up * 0.1875f, ((Component)this).transform.position + bottomNoSurfaceDetectorHeight3 - ((Component)this).transform.right / 3f - topAndBottomNoSurfaceDetectorsWidth3 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) + ((Component)this).transform.up * 0.1875f, Color.cyan); Debug.DrawLine(((Component)this).transform.position + bottomNoSurfaceDetectorHeight3 + ((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth3 + ((Component)this).transform.up * 0.1875f, ((Component)this).transform.position + bottomNoSurfaceDetectorHeight3 + ((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth3 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) + ((Component)this).transform.up * 0.1875f, Color.cyan); Debug.DrawLine(((Component)this).transform.position + topNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 1.125f, ((Component)this).transform.position + topNoSurfaceDetectorHeight3 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) + ((Component)this).transform.up * 1.125f, Color.cyan); Debug.DrawLine(((Component)this).transform.position + topNoSurfaceDetectorHeight3 - ((Component)this).transform.right / 3f - topAndBottomNoSurfaceDetectorsWidth3 + ((Component)this).transform.up * 1.125f, ((Component)this).transform.position + topNoSurfaceDetectorHeight3 - ((Component)this).transform.right / 3f - topAndBottomNoSurfaceDetectorsWidth3 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) + ((Component)this).transform.up * 1.125f, Color.cyan); Debug.DrawLine(((Component)this).transform.position + topNoSurfaceDetectorHeight3 + ((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth3 + ((Component)this).transform.up * 1.125f, ((Component)this).transform.position + topNoSurfaceDetectorHeight3 + ((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth3 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) + ((Component)this).transform.up * 1.125f, Color.cyan); Debug.DrawLine(((Component)this).transform.position + (topNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight3 + 1f)) * 0.99f + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth3), ((Component)this).transform.position + (topNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight3 + 1f)) * 0.99f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth3), Color.cyan); Debug.DrawLine(((Component)this).transform.position + ((topNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight3 + 1f)) * 0.99f * 3f + (bottomNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 4f + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth3), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight3 + 1f)) * 0.99f * 3f + (bottomNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 4f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth3), Color.cyan); Debug.DrawLine(((Component)this).transform.position + ((topNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight3 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 3f + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth3), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight3 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 3f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth3), Color.cyan); Debug.DrawLine(((Component)this).transform.position + ((topNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight3 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 0.1875f) * 0.99f * 3f) / 4f + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth3), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight3 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 0.1875f) * 0.99f * 3f) / 4f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth3), Color.cyan); Debug.DrawLine(((Component)this).transform.position + (bottomNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 0.1875f) * 0.99f + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth3), ((Component)this).transform.position + (bottomNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 0.1875f) * 0.99f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth3), Color.cyan); Debug.DrawLine(((Component)this).transform.position + (topNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight3 + 1f)) * 0.99f - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth3), ((Component)this).transform.position + (topNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight3 + 1f)) * 0.99f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth3), Color.cyan); Debug.DrawLine(((Component)this).transform.position + ((topNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight3 + 1f)) * 0.99f * 3f + (bottomNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 4f - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth3), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight3 + 1f)) * 0.99f * 3f + (bottomNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 4f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth3), Color.cyan); Debug.DrawLine(((Component)this).transform.position + ((topNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight3 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 3f - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth3), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight3 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 3f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth3), Color.cyan); Debug.DrawLine(((Component)this).transform.position + ((topNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight3 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 0.1875f) * 0.99f * 3f) / 4f - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth3), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight3 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 0.1875f) * 0.99f * 3f) / 4f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth3), Color.cyan); Debug.DrawLine(((Component)this).transform.position + (bottomNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 0.1875f) * 0.99f - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth3), ((Component)this).transform.position + (bottomNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 0.1875f) * 0.99f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth3), Color.cyan); } if (showWalkingOffLedgeRays3) { Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.up * 0.5f, ((Component)this).transform.position + ((Component)this).transform.forward / 1.5f + ((Component)this).transform.up * 0.5f + spaceInFrontNeededToGrabBackOn3, Color.red); Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.forward / 4f + ((Component)this).transform.up * 0.5f + spaceBelowNeededToGrabBackOnForward3, ((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 1.5f - spaceBelowNeededToGrabBackOnHeight3 + spaceBelowNeededToGrabBackOnForward3, Color.red); Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.forward / 1.5f + ((Component)this).transform.up * 0.5f + spaceInFrontNeededToGrabBackOn3, ((Component)this).transform.position + ((Component)this).transform.forward / 1.5f - ((Component)this).transform.up * 1.5f + spaceInFrontNeededToGrabBackOn3 - spaceBelowNeededToGrabBackOnHeight3, Color.red); Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.up - ((Component)this).transform.forward / 3f + grabBackOnLocationForward3 + grabBackOnLocationHeight3, ((Component)this).transform.position - ((Component)this).transform.up - ((Component)this).transform.forward / 3f + grabBackOnLocationForward3, Color.yellow); Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.up - ((Component)this).transform.forward / 3f - ((Component)this).transform.right * 0.4f + grabBackOnLocationForward3 - grabBackOnLocationWidth3 + grabBackOnLocationHeight3, ((Component)this).transform.position - ((Component)this).transform.up - ((Component)this).transform.forward / 3f - ((Component)this).transform.right * 0.4f + grabBackOnLocationForward3 - grabBackOnLocationWidth3, Color.yellow); Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.up - ((Component)this).transform.forward / 3f + ((Component)this).transform.right * 0.4f + grabBackOnLocationForward3 + grabBackOnLocationWidth3 + grabBackOnLocationHeight3, ((Component)this).transform.position - ((Component)this).transform.up - ((Component)this).transform.forward / 3f + ((Component)this).transform.right * 0.4f + grabBackOnLocationForward3 + grabBackOnLocationWidth3, Color.yellow); Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.1f + firstSideLedgeDetectorsHeight3 + spaceBelowNeededToGrabBackOnForward3, ((Component)this).transform.position + ((Component)this).transform.forward / 3f - ((Component)this).transform.up * 0.1f - ((Component)this).transform.right / 4f + sideLedgeDetectorsLength3 + firstSideLedgeDetectorsHeight3 - sideLedgeDetectorsWidth3 + spaceBelowNeededToGrabBackOnForward3, Color.red); Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.forward / 3f - ((Component)this).transform.up * 0.1f + firstSideLedgeDetectorsHeight3 + spaceBelowNeededToGrabBackOnForward3, ((Component)this).transform.position - ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.1f + ((Component)this).transform.right / 4f - sideLedgeDetectorsLength3 + firstSideLedgeDetectorsHeight3 + spaceBelowNeededToGrabBackOnForward3, Color.red); Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.5f + secondSideLedgeDetectorsHeight3 + spaceBelowNeededToGrabBackOnForward3, ((Component)this).transform.position + ((Component)this).transform.forward / 3f - ((Component)this).transform.up * 0.5f - ((Component)this).transform.right / 4f + sideLedgeDetectorsLength3 + secondSideLedgeDetectorsHeight3 - sideLedgeDetectorsWidth3 + spaceBelowNeededToGrabBackOnForward3, Color.red); Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.forward / 3f - ((Component)this).transform.up * 0.5f + secondSideLedgeDetectorsHeight3 + spaceBelowNeededToGrabBackOnForward3, ((Component)this).transform.position - ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.5f + ((Component)this).transform.right / 4f - sideLedgeDetectorsLength3 + secondSideLedgeDetectorsHeight3 + spaceBelowNeededToGrabBackOnForward3, Color.red); Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight3 + spaceBelowNeededToGrabBackOnForward3, ((Component)this).transform.position + ((Component)this).transform.forward / 3f - ((Component)this).transform.right / 4f + sideLedgeDetectorsLength3 - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight3 - sideLedgeDetectorsWidth3 + spaceBelowNeededToGrabBackOnForward3, Color.red); Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.forward / 3f - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight3 + spaceBelowNeededToGrabBackOnForward3, ((Component)this).transform.position - ((Component)this).transform.forward / 4f - ((Component)this).transform.up + ((Component)this).transform.right / 4f - sideLedgeDetectorsLength3 + thirdSideLedgeDetectorsHeight3 + spaceBelowNeededToGrabBackOnForward3, Color.red); Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.1f + firstSideLedgeDetectorsHeight3 + spaceBelowNeededToGrabBackOnForward3, ((Component)this).transform.position + ((Component)this).transform.forward / 3f - ((Component)this).transform.up * 0.1f + ((Component)this).transform.right / 4f + sideLedgeDetectorsLength3 + firstSideLedgeDetectorsHeight3 + sideLedgeDetectorsWidth3 + spaceBelowNeededToGrabBackOnForward3, Color.red); Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.forward / 3f - ((Component)this).transform.up * 0.1f + firstSideLedgeDetectorsHeight3 + spaceBelowNeededToGrabBackOnForward3, ((Component)this).transform.position - ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.1f - ((Component)this).transform.right / 4f - sideLedgeDetectorsLength3 + firstSideLedgeDetectorsHeight3 + spaceBelowNeededToGrabBackOnForward3, Color.red); Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.5f + secondSideLedgeDetectorsHeight3 + spaceBelowNeededToGrabBackOnForward3, ((Component)this).transform.position + ((Component)this).transform.forward / 3f - ((Component)this).transform.up * 0.5f + ((Component)this).transform.right / 4f + sideLedgeDetectorsLength3 + secondSideLedgeDetectorsHeight3 + sideLedgeDetectorsWidth3 + spaceBelowNeededToGrabBackOnForward3, Color.red); Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.forward / 3f - ((Component)this).transform.up * 0.5f + secondSideLedgeDetectorsHeight3 + spaceBelowNeededToGrabBackOnForward3, ((Component)this).transform.position - ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.5f - ((Component)this).transform.right / 4f - sideLedgeDetectorsLength3 + secondSideLedgeDetectorsHeight3 + spaceBelowNeededToGrabBackOnForward3, Color.red); Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight3 + spaceBelowNeededToGrabBackOnForward3, ((Component)this).transform.position + ((Component)this).transform.forward / 3f + ((Component)this).transform.right / 4f + sideLedgeDetectorsLength3 - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight3 + sideLedgeDetectorsWidth3 + spaceBelowNeededToGrabBackOnForward3, Color.red); Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.forward / 3f - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight3 + spaceBelowNeededToGrabBackOnForward3, ((Component)this).transform.position - ((Component)this).transform.forward / 4f - ((Component)this).transform.up - ((Component)this).transform.right / 4f - sideLedgeDetectorsLength3 + thirdSideLedgeDetectorsHeight3 + spaceBelowNeededToGrabBackOnForward3, Color.red); } if (showPullUpDetector3) { Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.up + ((Component)this).transform.forward / 1.25f + ((Component)this).transform.up * 1.5f + pullUpLocationForward3, ((Component)this).transform.position + ((Component)this).transform.up * 0.8f + ((Component)this).transform.forward / 1.75f + pullUpLocationForward3, Color.red); } } } private void SetClimbingVariables() { //IL_00a2: Unknown result type (might be due to invalid IL or missing references) //IL_00bf: Unknown result type (might be due to invalid IL or missing references) //IL_00c4: Unknown result type (might be due to invalid IL or missing references) //IL_0214: Unknown result type (might be due to invalid IL or missing references) //IL_0231: Unknown result type (might be due to invalid IL or missing references) //IL_0236: Unknown result type (might be due to invalid IL or missing references) //IL_0242: Unknown result type (might be due to invalid IL or missing references) //IL_025f: Unknown result type (might be due to invalid IL or missing references) //IL_0264: Unknown result type (might be due to invalid IL or missing references) //IL_0270: Unknown result type (might be due to invalid IL or missing references) //IL_0287: Unknown result type (might be due to invalid IL or missing references) //IL_028c: Unknown result type (might be due to invalid IL or missing references) //IL_02b6: Unknown result type (might be due to invalid IL or missing references) //IL_02d3: Unknown result type (might be due to invalid IL or missing references) //IL_02d8: Unknown result type (might be due to invalid IL or missing references) //IL_037a: Unknown result type (might be due to invalid IL or missing references) //IL_0391: Unknown result type (might be due to invalid IL or missing references) //IL_0396: Unknown result type (might be due to invalid IL or missing references) //IL_03d7: Unknown result type (might be due to invalid IL or missing references) //IL_03f9: Unknown result type (might be due to invalid IL or missing references) //IL_03fe: Unknown result type (might be due to invalid IL or missing references) //IL_040a: Unknown result type (might be due to invalid IL or missing references) //IL_0426: Unknown result type (might be due to invalid IL or missing references) //IL_042b: Unknown result type (might be due to invalid IL or missing references) //IL_0437: Unknown result type (might be due to invalid IL or missing references) //IL_0453: Unknown result type (might be due to invalid IL or missing references) //IL_0458: Unknown result type (might be due to invalid IL or missing references) //IL_0464: Unknown result type (might be due to invalid IL or missing references) //IL_0480: Unknown result type (might be due to invalid IL or missing references) //IL_0485: Unknown result type (might be due to invalid IL or missing references) //IL_0491: Unknown result type (might be due to invalid IL or missing references) //IL_04ad: Unknown result type (might be due to invalid IL or missing references) //IL_04b2: Unknown result type (might be due to invalid IL or missing references) //IL_04be: Unknown result type (might be due to invalid IL or missing references) //IL_04da: Unknown result type (might be due to invalid IL or missing references) //IL_04df: Unknown result type (might be due to invalid IL or missing references) //IL_04eb: Unknown result type (might be due to invalid IL or missing references) //IL_050d: Unknown result type (might be due to invalid IL or missing references) //IL_0512: Unknown result type (might be due to invalid IL or missing references) //IL_051e: Unknown result type (might be due to invalid IL or missing references) //IL_0540: Unknown result type (might be due to invalid IL or missing references) //IL_0545: Unknown result type (might be due to invalid IL or missing references) if (!wallIsClimbable && !currentlyClimbingWall && !turnBack && !back2 && !pullingUp) { if (i == climbing.Length) { i = 0; } if (!firstTest && !secondTest && !thirdTest && !fourthTest && !fifthTest) { tagNum = i; } } climbingSurfaceDetectorsUpAmount2 = ((Component)this).transform.up * (climbing[tagNum].climbingSurfaceDetectorsUpAmount + 0.2f); climbingSurfaceDetectorsHeight2 = climbing[tagNum].climbingSurfaceDetectorsHeight - 0.18f; climbingSurfaceDetectorsLength2 = climbing[tagNum].climbingSurfaceDetectorsLength - 0.5f; distanceToPushOffAfterLettingGo2 = climbing[tagNum].distanceToPushOffAfterLettingGo; rotationToClimbableObjectSpeed2 = climbing[tagNum].rotationToClimbableObjectSpeed; climbHorizontally2 = climbing[tagNum].climbHorizontally; climbVertically2 = climbing[tagNum].climbVertically; climbMovementSpeed2 = climbing[tagNum].climbMovementSpeed; climbRotationSpeed2 = climbing[tagNum].climbRotationSpeed; moveInBursts = climbing[tagNum].moveInBursts; burstLength = climbing[tagNum].burstLength; climbableTag2 = climbing[tagNum].climbableTag; stayUpright2 = climbing[tagNum].stayUpright; snapToCenterOfObject2 = climbing[tagNum].snapToCenterOfObject; bottomNoSurfaceDetectorHeight2 = ((Component)this).transform.up * (climbing[tagNum].bottomNoSurfaceDetectorHeight + 0.15f); topNoSurfaceDetectorHeight2 = ((Component)this).transform.up * (climbing[tagNum].topNoSurfaceDetectorHeight + 0.15f); topAndBottomNoSurfaceDetectorsWidth2 = ((Component)this).transform.right * climbing[tagNum].topAndBottomNoSurfaceDetectorsWidth; sideNoSurfaceDetectorsHeight2 = climbing[tagNum].sideNoSurfaceDetectorsHeight - 0.15f; sideNoSurfaceDetectorsWidth2 = ((Component)this).transform.right * (climbing[tagNum].sideNoSurfaceDetectorsWidth - 0.25f); sideNoSurfaceDetectorsWidthTurnBack2 = climbing[tagNum].sideNoSurfaceDetectorsWidth - 0.25f; stopAtSides2 = climbing[tagNum].stopAtSides; dropOffAtBottom2 = climbing[tagNum].dropOffAtBottom; dropOffAtFloor2 = climbing[tagNum].dropOffAtFloor; pullUpAtTop2 = climbing[tagNum].pullUpAtTop; pullUpSpeed = climbing[tagNum].pullUpSpeed; pullUpLocationForward2 = ((Component)this).transform.forward * climbing[tagNum].pullUpLocationForward; pushAgainstWallIfPlayerIsStuck2 = climbing[tagNum].pushAgainstWallIfPlayerIsStuck; allowGrabbingOnAfterWalkingOffLedge2 = climbing[tagNum].walkingOffOfClimbableSurface.allowGrabbingOnAfterWalkingOffLedge; spaceInFrontNeededToGrabBackOn2 = ((Component)this).transform.forward * (climbing[tagNum].walkingOffOfClimbableSurface.spaceInFrontNeededToGrabBackOn + 0.03f); firstSideLedgeDetectorsHeight2 = ((Component)this).transform.up * climbing[tagNum].walkingOffOfClimbableSurface.firstSideLedgeDetectorsHeight; secondSideLedgeDetectorsHeight2 = ((Component)this).transform.up * climbing[tagNum].walkingOffOfClimbableSurface.secondSideLedgeDetectorsHeight; thirdSideLedgeDetectorsHeight2 = ((Component)this).transform.up * climbing[tagNum].walkingOffOfClimbableSurface.thirdSideLedgeDetectorsHeight; sideLedgeDetectorsWidth2 = ((Component)this).transform.right * climbing[tagNum].walkingOffOfClimbableSurface.sideLedgeDetectorsWidth; sideLedgeDetectorsLength2 = ((Component)this).transform.forward * climbing[tagNum].walkingOffOfClimbableSurface.sideLedgeDetectorsLength; spaceBelowNeededToGrabBackOnHeight2 = ((Component)this).transform.up * (climbing[tagNum].walkingOffOfClimbableSurface.spaceBelowNeededToGrabBackOnHeight + 0.07f); spaceBelowNeededToGrabBackOnForward2 = ((Component)this).transform.forward * (climbing[tagNum].walkingOffOfClimbableSurface.spaceBelowNeededToGrabBackOnForward + 0.06f); wallScriptsToEnableOnGrab = climbing[tagNum].scriptsToEnableOnGrab; wallScriptsToDisableOnGrab = climbing[tagNum].scriptsToDisableOnGrab; } private void CheckIfInBetweenSlopes() { //IL_0003: Unknown result type (might be due to invalid IL or missing references) //IL_000a: Unknown result type (might be due to invalid IL or missing references) //IL_0015: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0029: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0104: Unknown result type (might be due to invalid IL or missing references) //IL_010f: Unknown result type (might be due to invalid IL or missing references) //IL_0119: Unknown result type (might be due to invalid IL or missing references) //IL_011e: Unknown result type (might be due to invalid IL or missing references) //IL_0129: Unknown result type (might be due to invalid IL or missing references) //IL_0133: Unknown result type (might be due to invalid IL or missing references) //IL_0138: Unknown result type (might be due to invalid IL or missing references) //IL_0143: Unknown result type (might be due to invalid IL or missing references) //IL_014e: Unknown result type (might be due to invalid IL or missing references) //IL_0158: Unknown result type (might be due to invalid IL or missing references) //IL_015d: Unknown result type (might be due to invalid IL or missing references) //IL_0168: Unknown result type (might be due to invalid IL or missing references) //IL_0173: Unknown result type (might be due to invalid IL or missing references) //IL_0178: Unknown result type (might be due to invalid IL or missing references) //IL_0184: Unknown result type (might be due to invalid IL or missing references) //IL_0050: Unknown result type (might be due to invalid IL or missing references) //IL_005b: Unknown result type (might be due to invalid IL or missing references) //IL_0065: Unknown result type (might be due to invalid IL or missing references) //IL_006a: Unknown result type (might be due to invalid IL or missing references) //IL_006f: Unknown result type (might be due to invalid IL or missing references) //IL_007d: Unknown result type (might be due to invalid IL or missing references) //IL_02a4: Unknown result type (might be due to invalid IL or missing references) //IL_02af: Unknown result type (might be due to invalid IL or missing references) //IL_02b9: Unknown result type (might be due to invalid IL or missing references) //IL_02be: Unknown result type (might be due to invalid IL or missing references) //IL_02c9: Unknown result type (might be due to invalid IL or missing references) //IL_02d3: Unknown result type (might be due to invalid IL or missing references) //IL_02d8: Unknown result type (might be due to invalid IL or missing references) //IL_02e3: Unknown result type (might be due to invalid IL or missing references) //IL_02ee: Unknown result type (might be due to invalid IL or missing references) //IL_02f8: Unknown result type (might be due to invalid IL or missing references) //IL_02fd: Unknown result type (might be due to invalid IL or missing references) //IL_0308: Unknown result type (might be due to invalid IL or missing references) //IL_0313: Unknown result type (might be due to invalid IL or missing references) //IL_0318: Unknown result type (might be due to invalid IL or missing references) //IL_0324: Unknown result type (might be due to invalid IL or missing references) //IL_019e: Unknown result type (might be due to invalid IL or missing references) //IL_01a9: Unknown result type (might be due to invalid IL or missing references) //IL_01b3: Unknown result type (might be due to invalid IL or missing references) //IL_01b8: Unknown result type (might be due to invalid IL or missing references) //IL_01c3: Unknown result type (might be due to invalid IL or missing references) //IL_01cd: Unknown result type (might be due to invalid IL or missing references) //IL_01d2: Unknown result type (might be due to invalid IL or missing references) //IL_01dd: Unknown result type (might be due to invalid IL or missing references) //IL_01e8: Unknown result type (might be due to invalid IL or missing references) //IL_01f2: Unknown result type (might be due to invalid IL or missing references) //IL_01f7: Unknown result type (might be due to invalid IL or missing references) //IL_0202: Unknown result type (might be due to invalid IL or missing references) //IL_020d: Unknown result type (might be due to invalid IL or missing references) //IL_0212: Unknown result type (might be due to invalid IL or missing references) //IL_021a: Unknown result type (might be due to invalid IL or missing references) //IL_0097: Unknown result type (might be due to invalid IL or missing references) //IL_009c: Unknown result type (might be due to invalid IL or missing references) //IL_043f: Unknown result type (might be due to invalid IL or missing references) //IL_044a: Unknown result type (might be due to invalid IL or missing references) //IL_0454: Unknown result type (might be due to invalid IL or missing references) //IL_0459: Unknown result type (might be due to invalid IL or missing references) //IL_0464: Unknown result type (might be due to invalid IL or missing references) //IL_046e: Unknown result type (might be due to invalid IL or missing references) //IL_0473: Unknown result type (might be due to invalid IL or missing references) //IL_0478: Unknown result type (might be due to invalid IL or missing references) //IL_048a: Unknown result type (might be due to invalid IL or missing references) //IL_033e: Unknown result type (might be due to invalid IL or missing references) //IL_0349: Unknown result type (might be due to invalid IL or missing references) //IL_0353: Unknown result type (might be due to invalid IL or missing references) //IL_0358: Unknown result type (might be due to invalid IL or missing references) //IL_0363: Unknown result type (might be due to invalid IL or missing references) //IL_036d: Unknown result type (might be due to invalid IL or missing references) //IL_0372: Unknown result type (might be due to invalid IL or missing references) //IL_037d: Unknown result type (might be due to invalid IL or missing references) //IL_0388: Unknown result type (might be due to invalid IL or missing references) //IL_0392: Unknown result type (might be due to invalid IL or missing references) //IL_0397: Unknown result type (might be due to invalid IL or missing references) //IL_03a2: Unknown result type (might be due to invalid IL or missing references) //IL_03ad: Unknown result type (might be due to invalid IL or missing references) //IL_03b2: Unknown result type (might be due to invalid IL or missing references) //IL_03ba: Unknown result type (might be due to invalid IL or missing references) //IL_0234: Unknown result type (might be due to invalid IL or missing references) //IL_0239: Unknown result type (might be due to invalid IL or missing references) //IL_00cd: Unknown result type (might be due to invalid IL or missing references) //IL_00d2: Unknown result type (might be due to invalid IL or missing references) //IL_00b0: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) //IL_0570: Unknown result type (might be due to invalid IL or missing references) //IL_057b: Unknown result type (might be due to invalid IL or missing references) //IL_0585: Unknown result type (might be due to invalid IL or missing references) //IL_058a: Unknown result type (might be due to invalid IL or missing references) //IL_0595: Unknown result type (might be due to invalid IL or missing references) //IL_059f: Unknown result type (might be due to invalid IL or missing references) //IL_05a4: Unknown result type (might be due to invalid IL or missing references) //IL_05af: Unknown result type (might be due to invalid IL or missing references) //IL_05b9: Unknown result type (might be due to invalid IL or missing references) //IL_05be: Unknown result type (might be due to invalid IL or missing references) //IL_05c9: Unknown result type (might be due to invalid IL or missing references) //IL_05d4: Unknown result type (might be due to invalid IL or missing references) //IL_05de: Unknown result type (might be due to invalid IL or missing references) //IL_05e3: Unknown result type (might be due to invalid IL or missing references) //IL_05ee: Unknown result type (might be due to invalid IL or missing references) //IL_05f8: Unknown result type (might be due to invalid IL or missing references) //IL_05fd: Unknown result type (might be due to invalid IL or missing references) //IL_0608: Unknown result type (might be due to invalid IL or missing references) //IL_0613: Unknown result type (might be due to invalid IL or missing references) //IL_0618: Unknown result type (might be due to invalid IL or missing references) //IL_0624: Unknown result type (might be due to invalid IL or missing references) //IL_049f: Unknown result type (might be due to invalid IL or missing references) //IL_04aa: Unknown result type (might be due to invalid IL or missing references) //IL_04b4: Unknown result type (might be due to invalid IL or missing references) //IL_04b9: Unknown result type (might be due to invalid IL or missing references) //IL_04c4: Unknown result type (might be due to invalid IL or missing references) //IL_04ce: Unknown result type (might be due to invalid IL or missing references) //IL_04d3: Unknown result type (might be due to invalid IL or missing references) //IL_04d8: Unknown result type (might be due to invalid IL or missing references) //IL_04e6: Unknown result type (might be due to invalid IL or missing references) //IL_03d4: Unknown result type (might be due to invalid IL or missing references) //IL_03d9: Unknown result type (might be due to invalid IL or missing references) //IL_026c: Unknown result type (might be due to invalid IL or missing references) //IL_0271: Unknown result type (might be due to invalid IL or missing references) //IL_024e: Unknown result type (might be due to invalid IL or missing references) //IL_0253: Unknown result type (might be due to invalid IL or missing references) //IL_00e6: Unknown result type (might be due to invalid IL or missing references) //IL_00eb: Unknown result type (might be due to invalid IL or missing references) //IL_1e2d: Unknown result type (might be due to invalid IL or missing references) //IL_1e32: Unknown result type (might be due to invalid IL or missing references) //IL_0778: Unknown result type (might be due to invalid IL or missing references) //IL_0783: Unknown result type (might be due to invalid IL or missing references) //IL_078d: Unknown result type (might be due to invalid IL or missing references) //IL_0792: Unknown result type (might be due to invalid IL or missing references) //IL_079d: Unknown result type (might be due to invalid IL or missing references) //IL_07a7: Unknown result type (might be due to invalid IL or missing references) //IL_07ac: Unknown result type (might be due to invalid IL or missing references) //IL_07b7: Unknown result type (might be due to invalid IL or missing references) //IL_07c1: Unknown result type (might be due to invalid IL or missing references) //IL_07c6: Unknown result type (might be due to invalid IL or missing references) //IL_07d1: Unknown result type (might be due to invalid IL or missing references) //IL_07dc: Unknown result type (might be due to invalid IL or missing references) //IL_07e6: Unknown result type (might be due to invalid IL or missing references) //IL_07eb: Unknown result type (might be due to invalid IL or missing references) //IL_07f6: Unknown result type (might be due to invalid IL or missing references) //IL_0800: Unknown result type (might be due to invalid IL or missing references) //IL_0805: Unknown result type (might be due to invalid IL or missing references) //IL_0810: Unknown result type (might be due to invalid IL or missing references) //IL_081b: Unknown result type (might be due to invalid IL or missing references) //IL_0820: Unknown result type (might be due to invalid IL or missing references) //IL_082c: Unknown result type (might be due to invalid IL or missing references) //IL_063e: Unknown result type (might be due to invalid IL or missing references) //IL_0649: Unknown result type (might be due to invalid IL or missing references) //IL_0653: Unknown result type (might be due to invalid IL or missing references) //IL_0658: Unknown result type (might be due to invalid IL or missing references) //IL_0663: Unknown result type (might be due to invalid IL or missing references) //IL_066d: Unknown result type (might be due to invalid IL or missing references) //IL_0672: Unknown result type (might be due to invalid IL or missing references) //IL_067d: Unknown result type (might be due to invalid IL or missing references) //IL_0687: Unknown result type (might be due to invalid IL or missing references) //IL_068c: Unknown result type (might be due to invalid IL or missing references) //IL_0697: Unknown result type (might be due to invalid IL or missing references) //IL_06a2: Unknown result type (might be due to invalid IL or missing references) //IL_06ac: Unknown result type (might be due to invalid IL or missing references) //IL_06b1: Unknown result type (might be due to invalid IL or missing references) //IL_06bc: Unknown result type (might be due to invalid IL or missing references) //IL_06c6: Unknown result type (might be due to invalid IL or missing references) //IL_06cb: Unknown result type (might be due to invalid IL or missing references) //IL_06d6: Unknown result type (might be due to invalid IL or missing references) //IL_06e1: Unknown result type (might be due to invalid IL or missing references) //IL_06e6: Unknown result type (might be due to invalid IL or missing references) //IL_06ee: Unknown result type (might be due to invalid IL or missing references) //IL_0500: Unknown result type (might be due to invalid IL or missing references) //IL_0505: Unknown result type (might be due to invalid IL or missing references) //IL_040c: Unknown result type (might be due to invalid IL or missing references) //IL_0411: Unknown result type (might be due to invalid IL or missing references) //IL_03ee: Unknown result type (might be due to invalid IL or missing references) //IL_03f3: Unknown result type (might be due to invalid IL or missing references) //IL_0286: Unknown result type (might be due to invalid IL or missing references) //IL_028b: Unknown result type (might be due to invalid IL or missing references) //IL_1e62: Unknown result type (might be due to invalid IL or missing references) //IL_1e67: Unknown result type (might be due to invalid IL or missing references) //IL_0980: Unknown result type (might be due to invalid IL or missing references) //IL_098b: Unknown result type (might be due to invalid IL or missing references) //IL_0995: Unknown result type (might be due to invalid IL or missing references) //IL_099a: Unknown result type (might be due to invalid IL or missing references) //IL_09a5: Unknown result type (might be due to invalid IL or missing references) //IL_09af: Unknown result type (might be due to invalid IL or missing references) //IL_09b4: Unknown result type (might be due to invalid IL or missing references) //IL_09bf: Unknown result type (might be due to invalid IL or missing references) //IL_09c9: Unknown result type (might be due to invalid IL or missing references) //IL_09ce: Unknown result type (might be due to invalid IL or missing references) //IL_09d9: Unknown result type (might be due to invalid IL or missing references) //IL_09e4: Unknown result type (might be due to invalid IL or missing references) //IL_09ee: Unknown result type (might be due to invalid IL or missing references) //IL_09f3: Unknown result type (might be due to invalid IL or missing references) //IL_09fe: Unknown result type (might be due to invalid IL or missing references) //IL_0a08: Unknown result type (might be due to invalid IL or missing references) //IL_0a0d: Unknown result type (might be due to invalid IL or missing references) //IL_0a18: Unknown result type (might be due to invalid IL or missing references) //IL_0a23: Unknown result type (might be due to invalid IL or missing references) //IL_0a28: Unknown result type (might be due to invalid IL or missing references) //IL_0a34: Unknown result type (might be due to invalid IL or missing references) //IL_0846: Unknown result type (might be due to invalid IL or missing references) //IL_0851: Unknown result type (might be due to invalid IL or missing references) //IL_085b: Unknown result type (might be due to invalid IL or missing references) //IL_0860: Unknown result type (might be due to invalid IL or missing references) //IL_086b: Unknown result type (might be due to invalid IL or missing references) //IL_0875: Unknown result type (might be due to invalid IL or missing references) //IL_087a: Unknown result type (might be due to invalid IL or missing references) //IL_0885: Unknown result type (might be due to invalid IL or missing references) //IL_088f: Unknown result type (might be due to invalid IL or missing references) //IL_0894: Unknown result type (might be due to invalid IL or missing references) //IL_089f: Unknown result type (might be due to invalid IL or missing references) //IL_08aa: Unknown result type (might be due to invalid IL or missing references) //IL_08b4: Unknown result type (might be due to invalid IL or missing references) //IL_08b9: Unknown result type (might be due to invalid IL or missing references) //IL_08c4: Unknown result type (might be due to invalid IL or missing references) //IL_08ce: Unknown result type (might be due to invalid IL or missing references) //IL_08d3: Unknown result type (might be due to invalid IL or missing references) //IL_08de: Unknown result type (might be due to invalid IL or missing references) //IL_08e9: Unknown result type (might be due to invalid IL or missing references) //IL_08ee: Unknown result type (might be due to invalid IL or missing references) //IL_08f6: Unknown result type (might be due to invalid IL or missing references) //IL_0708: Unknown result type (might be due to invalid IL or missing references) //IL_070d: Unknown result type (might be due to invalid IL or missing references) //IL_0538: Unknown result type (might be due to invalid IL or missing references) //IL_053d: Unknown result type (might be due to invalid IL or missing references) //IL_051a: Unknown result type (might be due to invalid IL or missing references) //IL_051f: Unknown result type (might be due to invalid IL or missing references) //IL_0426: Unknown result type (might be due to invalid IL or missing references) //IL_042b: Unknown result type (might be due to invalid IL or missing references) //IL_0b83: Unknown result type (might be due to invalid IL or missing references) //IL_0b8e: Unknown result type (might be due to invalid IL or missing references) //IL_0b98: Unknown result type (might be due to invalid IL or missing references) //IL_0b9d: Unknown result type (might be due to invalid IL or missing references) //IL_0ba8: Unknown result type (might be due to invalid IL or missing references) //IL_0bb2: Unknown result type (might be due to invalid IL or missing references) //IL_0bb7: Unknown result type (might be due to invalid IL or missing references) //IL_0bbc: Unknown result type (might be due to invalid IL or missing references) //IL_0bce: Unknown result type (might be due to invalid IL or missing references) //IL_0a4e: Unknown result type (might be due to invalid IL or missing references) //IL_0a59: Unknown result type (might be due to invalid IL or missing references) //IL_0a63: Unknown result type (might be due to invalid IL or missing references) //IL_0a68: Unknown result type (might be due to invalid IL or missing references) //IL_0a73: Unknown result type (might be due to invalid IL or missing references) //IL_0a7d: Unknown result type (might be due to invalid IL or missing references) //IL_0a82: Unknown result type (might be due to invalid IL or missing references) //IL_0a8d: Unknown result type (might be due to invalid IL or missing references) //IL_0a97: Unknown result type (might be due to invalid IL or missing references) //IL_0a9c: Unknown result type (might be due to invalid IL or missing references) //IL_0aa7: Unknown result type (might be due to invalid IL or missing references) //IL_0ab2: Unknown result type (might be due to invalid IL or missing references) //IL_0abc: Unknown result type (might be due to invalid IL or missing references) //IL_0ac1: Unknown result type (might be due to invalid IL or missing references) //IL_0acc: Unknown result type (might be due to invalid IL or missing references) //IL_0ad6: Unknown result type (might be due to invalid IL or missing references) //IL_0adb: Unknown result type (might be due to invalid IL or missing references) //IL_0ae6: Unknown result type (might be due to invalid IL or missing references) //IL_0af1: Unknown result type (might be due to invalid IL or missing references) //IL_0af6: Unknown result type (might be due to invalid IL or missing references) //IL_0afe: Unknown result type (might be due to invalid IL or missing references) //IL_0910: Unknown result type (might be due to invalid IL or missing references) //IL_0915: Unknown result type (might be due to invalid IL or missing references) //IL_0740: Unknown result type (might be due to invalid IL or missing references) //IL_0745: Unknown result type (might be due to invalid IL or missing references) //IL_0722: Unknown result type (might be due to invalid IL or missing references) //IL_0727: Unknown result type (might be due to invalid IL or missing references) //IL_0552: Unknown result type (might be due to invalid IL or missing references) //IL_0557: Unknown result type (might be due to invalid IL or missing references) //IL_0cb4: Unknown result type (might be due to invalid IL or missing references) //IL_0cbf: Unknown result type (might be due to invalid IL or missing references) //IL_0cc9: Unknown result type (might be due to invalid IL or missing references) //IL_0cce: Unknown result type (might be due to invalid IL or missing references) //IL_0cd9: Unknown result type (might be due to invalid IL or missing references) //IL_0ce3: Unknown result type (might be due to invalid IL or missing references) //IL_0ce8: Unknown result type (might be due to invalid IL or missing references) //IL_0cf3: Unknown result type (might be due to invalid IL or missing references) //IL_0cfd: Unknown result type (might be due to invalid IL or missing references) //IL_0d02: Unknown result type (might be due to invalid IL or missing references) //IL_0d0d: Unknown result type (might be due to invalid IL or missing references) //IL_0d18: Unknown result type (might be due to invalid IL or missing references) //IL_0d22: Unknown result type (might be due to invalid IL or missing references) //IL_0d27: Unknown result type (might be due to invalid IL or missing references) //IL_0d32: Unknown result type (might be due to invalid IL or missing references) //IL_0d3c: Unknown result type (might be due to invalid IL or missing references) //IL_0d41: Unknown result type (might be due to invalid IL or missing references) //IL_0d4c: Unknown result type (might be due to invalid IL or missing references) //IL_0d57: Unknown result type (might be due to invalid IL or missing references) //IL_0d5c: Unknown result type (might be due to invalid IL or missing references) //IL_0d68: Unknown result type (might be due to invalid IL or missing references) //IL_0be3: Unknown result type (might be due to invalid IL or missing references) //IL_0bee: Unknown result type (might be due to invalid IL or missing references) //IL_0bf8: Unknown result type (might be due to invalid IL or missing references) //IL_0bfd: Unknown result type (might be due to invalid IL or missing references) //IL_0c08: Unknown result type (might be due to invalid IL or missing references) //IL_0c12: Unknown result type (might be due to invalid IL or missing references) //IL_0c17: Unknown result type (might be due to invalid IL or missing references) //IL_0c1c: Unknown result type (might be due to invalid IL or missing references) //IL_0c2a: Unknown result type (might be due to invalid IL or missing references) //IL_0b18: Unknown result type (might be due to invalid IL or missing references) //IL_0b1d: Unknown result type (might be due to invalid IL or missing references) //IL_0948: Unknown result type (might be due to invalid IL or missing references) //IL_094d: Unknown result type (might be due to invalid IL or missing references) //IL_092a: Unknown result type (might be due to invalid IL or missing references) //IL_092f: Unknown result type (might be due to invalid IL or missing references) //IL_075a: Unknown result type (might be due to invalid IL or missing references) //IL_075f: Unknown result type (might be due to invalid IL or missing references) //IL_0ebc: Unknown result type (might be due to invalid IL or missing references) //IL_0ec7: Unknown result type (might be due to invalid IL or missing references) //IL_0ed1: Unknown result type (might be due to invalid IL or missing references) //IL_0ed6: Unknown result type (might be due to invalid IL or missing references) //IL_0ee1: Unknown result type (might be due to invalid IL or missing references) //IL_0eeb: Unknown result type (might be due to invalid IL or missing references) //IL_0ef0: Unknown result type (might be due to invalid IL or missing references) //IL_0efb: Unknown result type (might be due to invalid IL or missing references) //IL_0f05: Unknown result type (might be due to invalid IL or missing references) //IL_0f0a: Unknown result type (might be due to invalid IL or missing references) //IL_0f15: Unknown result type (might be due to invalid IL or missing references) //IL_0f20: Unknown result type (might be due to invalid IL or missing references) //IL_0f2a: Unknown result type (might be due to invalid IL or missing references) //IL_0f2f: Unknown result type (might be due to invalid IL or missing references) //IL_0f3a: Unknown result type (might be due to invalid IL or missing references) //IL_0f44: Unknown result type (might be due to invalid IL or missing references) //IL_0f49: Unknown result type (might be due to invalid IL or missing references) //IL_0f54: Unknown result type (might be due to invalid IL or missing references) //IL_0f5f: Unknown result type (might be due to invalid IL or missing references) //IL_0f64: Unknown result type (might be due to invalid IL or missing references) //IL_0f70: Unknown result type (might be due to invalid IL or missing references) //IL_0d82: Unknown result type (might be due to invalid IL or missing references) //IL_0d8d: Unknown result type (might be due to invalid IL or missing references) //IL_0d97: Unknown result type (might be due to invalid IL or missing references) //IL_0d9c: Unknown result type (might be due to invalid IL or missing references) //IL_0da7: Unknown result type (might be due to invalid IL or missing references) //IL_0db1: Unknown result type (might be due to invalid IL or missing references) //IL_0db6: Unknown result type (might be due to invalid IL or missing references) //IL_0dc1: Unknown result type (might be due to invalid IL or missing references) //IL_0dcb: Unknown result type (might be due to invalid IL or missing references) //IL_0dd0: Unknown result type (might be due to invalid IL or missing references) //IL_0ddb: Unknown result type (might be due to invalid IL or missing references) //IL_0de6: Unknown result type (might be due to invalid IL or missing references) //IL_0df0: Unknown result type (might be due to invalid IL or missing references) //IL_0df5: Unknown result type (might be due to invalid IL or missing references) //IL_0e00: Unknown result type (might be due to invalid IL or missing references) //IL_0e0a: Unknown result type (might be due to invalid IL or missing references) //IL_0e0f: Unknown result type (might be due to invalid IL or missing references) //IL_0e1a: Unknown result type (might be due to invalid IL or missing references) //IL_0e25: Unknown result type (might be due to invalid IL or missing references) //IL_0e2a: Unknown result type (might be due to invalid IL or missing references) //IL_0e32: Unknown result type (might be due to invalid IL or missing references) //IL_0c44: Unknown result type (might be due to invalid IL or missing references) //IL_0c49: Unknown result type (might be due to invalid IL or missing references) //IL_0b50: Unknown result type (might be due to invalid IL or missing references) //IL_0b55: Unknown result type (might be due to invalid IL or missing references) //IL_0b32: Unknown result type (might be due to invalid IL or missing references) //IL_0b37: Unknown result type (might be due to invalid IL or missing references) //IL_0962: Unknown result type (might be due to invalid IL or missing references) //IL_0967: Unknown result type (might be due to invalid IL or missing references) //IL_10c4: Unknown result type (might be due to invalid IL or missing references) //IL_10cf: Unknown result type (might be due to invalid IL or missing references) //IL_10d9: Unknown result type (might be due to invalid IL or missing references) //IL_10de: Unknown result type (might be due to invalid IL or missing references) //IL_10e9: Unknown result type (might be due to invalid IL or missing references) //IL_10f3: Unknown result type (might be due to invalid IL or missing references) //IL_10f8: Unknown result type (might be due to invalid IL or missing references) //IL_1103: Unknown result type (might be due to invalid IL or missing references) //IL_110d: Unknown result type (might be due to invalid IL or missing references) //IL_1112: Unknown result type (might be due to invalid IL or missing references) //IL_111d: Unknown result type (might be due to invalid IL or missing references) //IL_1128: Unknown result type (might be due to invalid IL or missing references) //IL_1132: Unknown result type (might be due to invalid IL or missing references) //IL_1137: Unknown result type (might be due to invalid IL or missing references) //IL_1142: Unknown result type (might be due to invalid IL or missing references) //IL_114c: Unknown result type (might be due to invalid IL or missing references) //IL_1151: Unknown result type (might be due to invalid IL or missing references) //IL_115c: Unknown result type (might be due to invalid IL or missing references) //IL_1167: Unknown result type (might be due to invalid IL or missing references) //IL_116c: Unknown result type (might be due to invalid IL or missing references) //IL_1178: Unknown result type (might be due to invalid IL or missing references) //IL_0f8a: Unknown result type (might be due to invalid IL or missing references) //IL_0f95: Unknown result type (might be due to invalid IL or missing references) //IL_0f9f: Unknown result type (might be due to invalid IL or missing references) //IL_0fa4: Unknown result type (might be due to invalid IL or missing references) //IL_0faf: Unknown result type (might be due to invalid IL or missing references) //IL_0fb9: Unknown result type (might be due to invalid IL or missing references) //IL_0fbe: Unknown result type (might be due to invalid IL or missing references) //IL_0fc9: Unknown result type (might be due to invalid IL or missing references) //IL_0fd3: Unknown result type (might be due to invalid IL or missing references) //IL_0fd8: Unknown result type (might be due to invalid IL or missing references) //IL_0fe3: Unknown result type (might be due to invalid IL or missing references) //IL_0fee: Unknown result type (might be due to invalid IL or missing references) //IL_0ff8: Unknown result type (might be due to invalid IL or missing references) //IL_0ffd: Unknown result type (might be due to invalid IL or missing references) //IL_1008: Unknown result type (might be due to invalid IL or missing references) //IL_1012: Unknown result type (might be due to invalid IL or missing references) //IL_1017: Unknown result type (might be due to invalid IL or missing references) //IL_1022: Unknown result type (might be due to invalid IL or missing references) //IL_102d: Unknown result type (might be due to invalid IL or missing references) //IL_1032: Unknown result type (might be due to invalid IL or missing references) //IL_103a: Unknown result type (might be due to invalid IL or missing references) //IL_0e4c: Unknown result type (might be due to invalid IL or missing references) //IL_0e51: Unknown result type (might be due to invalid IL or missing references) //IL_0c7c: Unknown result type (might be due to invalid IL or missing references) //IL_0c81: Unknown result type (might be due to invalid IL or missing references) //IL_0c5e: Unknown result type (might be due to invalid IL or missing references) //IL_0c63: Unknown result type (might be due to invalid IL or missing references) //IL_0b6a: Unknown result type (might be due to invalid IL or missing references) //IL_0b6f: Unknown result type (might be due to invalid IL or missing references) //IL_12cc: Unknown result type (might be due to invalid IL or missing references) //IL_12d7: Unknown result type (might be due to invalid IL or missing references) //IL_12e1: Unknown result type (might be due to invalid IL or missing references) //IL_12e6: Unknown result type (might be due to invalid IL or missing references) //IL_12f1: Unknown result type (might be due to invalid IL or missing references) //IL_12fb: Unknown result type (might be due to invalid IL or missing references) //IL_1300: Unknown result type (might be due to invalid IL or missing references) //IL_130b: Unknown result type (might be due to invalid IL or missing references) //IL_1316: Unknown result type (might be due to invalid IL or missing references) //IL_1320: Unknown result type (might be due to invalid IL or missing references) //IL_1325: Unknown result type (might be due to invalid IL or missing references) //IL_1330: Unknown result type (might be due to invalid IL or missing references) //IL_133b: Unknown result type (might be due to invalid IL or missing references) //IL_1340: Unknown result type (might be due to invalid IL or missing references) //IL_134c: Unknown result type (might be due to invalid IL or missing references) //IL_1192: Unknown result type (might be due to invalid IL or missing references) //IL_119d: Unknown result type (might be due to invalid IL or missing references) //IL_11a7: Unknown result type (might be due to invalid IL or missing references) //IL_11ac: Unknown result type (might be due to invalid IL or missing references) //IL_11b7: Unknown result type (might be due to invalid IL or missing references) //IL_11c1: Unknown result type (might be due to invalid IL or missing references) //IL_11c6: Unknown result type (might be due to invalid IL or missing references) //IL_11d1: Unknown result type (might be due to invalid IL or missing references) //IL_11db: Unknown result type (might be due to invalid IL or missing references) //IL_11e0: Unknown result type (might be due to invalid IL or missing references) //IL_11eb: Unknown result type (might be due to invalid IL or missing references) //IL_11f6: Unknown result type (might be due to invalid IL or missing references) //IL_1200: Unknown result type (might be due to invalid IL or missing references) //IL_1205: Unknown result type (might be due to invalid IL or missing references) //IL_1210: Unknown result type (might be due to invalid IL or missing references) //IL_121a: Unknown result type (might be due to invalid IL or missing references) //IL_121f: Unknown result type (might be due to invalid IL or missing references) //IL_122a: Unknown result type (might be due to invalid IL or missing references) //IL_1235: Unknown result type (might be due to invalid IL or missing references) //IL_123a: Unknown result type (might be due to invalid IL or missing references) //IL_1242: Unknown result type (might be due to invalid IL or missing references) //IL_1054: Unknown result type (might be due to invalid IL or missing references) //IL_1059: Unknown result type (might be due to invalid IL or missing references) //IL_0e84: Unknown result type (might be due to invalid IL or missing references) //IL_0e89: Unknown result type (might be due to invalid IL or missing references) //IL_0e66: Unknown result type (might be due to invalid IL or missing references) //IL_0e6b: Unknown result type (might be due to invalid IL or missing references) //IL_0c96: Unknown result type (might be due to invalid IL or missing references) //IL_0c9b: Unknown result type (might be due to invalid IL or missing references) //IL_146c: Unknown result type (might be due to invalid IL or missing references) //IL_1477: Unknown result type (might be due to invalid IL or missing references) //IL_1481: Unknown result type (might be due to invalid IL or missing references) //IL_1486: Unknown result type (might be due to invalid IL or missing references) //IL_1491: Unknown result type (might be due to invalid IL or missing references) //IL_149b: Unknown result type (might be due to invalid IL or missing references) //IL_14a0: Unknown result type (might be due to invalid IL or missing references) //IL_14ab: Unknown result type (might be due to invalid IL or missing references) //IL_14b6: Unknown result type (might be due to invalid IL or missing references) //IL_14c0: Unknown result type (might be due to invalid IL or missing references) //IL_14c5: Unknown result type (might be due to invalid IL or missing references) //IL_14d0: Unknown result type (might be due to invalid IL or missing references) //IL_14db: Unknown result type (might be due to invalid IL or missing references) //IL_14e0: Unknown result type (might be due to invalid IL or missing references) //IL_14ec: Unknown result type (might be due to invalid IL or missing references) //IL_1366: Unknown result type (might be due to invalid IL or missing references) //IL_1371: Unknown result type (might be due to invalid IL or missing references) //IL_137b: Unknown result type (might be due to invalid IL or missing references) //IL_1380: Unknown result type (might be due to invalid IL or missing references) //IL_138b: Unknown result type (might be due to invalid IL or missing references) //IL_1395: Unknown result type (might be due to invalid IL or missing references) //IL_139a: Unknown result type (might be due to invalid IL or missing references) //IL_13a5: Unknown result type (might be due to invalid IL or missing references) //IL_13b0: Unknown result type (might be due to invalid IL or missing references) //IL_13ba: Unknown result type (might be due to invalid IL or missing references) //IL_13bf: Unknown result type (might be due to invalid IL or missing references) //IL_13ca: Unknown result type (might be due to invalid IL or missing references) //IL_13d5: Unknown result type (might be due to invalid IL or missing references) //IL_13da: Unknown result type (might be due to invalid IL or missing references) //IL_13e2: Unknown result type (might be due to invalid IL or missing references) //IL_125c: Unknown result type (might be due to invalid IL or missing references) //IL_1261: Unknown result type (might be due to invalid IL or missing references) //IL_108c: Unknown result type (might be due to invalid IL or missing references) //IL_1091: Unknown result type (might be due to invalid IL or missing references) //IL_106e: Unknown result type (might be due to invalid IL or missing references) //IL_1073: Unknown result type (might be due to invalid IL or missing references) //IL_0e9e: Unknown result type (might be due to invalid IL or missing references) //IL_0ea3: Unknown result type (might be due to invalid IL or missing references) //IL_160c: Unknown result type (might be due to invalid IL or missing references) //IL_1617: Unknown result type (might be due to invalid IL or missing references) //IL_1621: Unknown result type (might be due to invalid IL or missing references) //IL_1626: Unknown result type (might be due to invalid IL or missing references) //IL_1631: Unknown result type (might be due to invalid IL or missing references) //IL_163b: Unknown result type (might be due to invalid IL or missing references) //IL_1640: Unknown result type (might be due to invalid IL or missing references) //IL_164b: Unknown result type (might be due to invalid IL or missing references) //IL_1655: Unknown result type (might be due to invalid IL or missing references) //IL_165a: Unknown result type (might be due to invalid IL or missing references) //IL_1665: Unknown result type (might be due to invalid IL or missing references) //IL_1670: Unknown result type (might be due to invalid IL or missing references) //IL_167a: Unknown result type (might be due to invalid IL or missing references) //IL_167f: Unknown result type (might be due to invalid IL or missing references) //IL_168a: Unknown result type (might be due to invalid IL or missing references) //IL_1694: Unknown result type (might be due to invalid IL or missing references) //IL_1699: Unknown result type (might be due to invalid IL or missing references) //IL_16a4: Unknown result type (might be due to invalid IL or missing references) //IL_16af: Unknown result type (might be due to invalid IL or missing references) //IL_16b4: Unknown result type (might be due to invalid IL or missing references) //IL_16c0: Unknown result type (might be due to invalid IL or missing references) //IL_1506: Unknown result type (might be due to invalid IL or missing references) //IL_1511: Unknown result type (might be due to invalid IL or missing references) //IL_151b: Unknown result type (might be due to invalid IL or missing references) //IL_1520: Unknown result type (might be due to invalid IL or missing references) //IL_152b: Unknown result type (might be due to invalid IL or missing references) //IL_1535: Unknown result type (might be due to invalid IL or missing references) //IL_153a: Unknown result type (might be due to invalid IL or missing references) //IL_1545: Unknown result type (might be due to invalid IL or missing references) //IL_1550: Unknown result type (might be due to invalid IL or missing references) //IL_155a: Unknown result type (might be due to invalid IL or missing references) //IL_155f: Unknown result type (might be due to invalid IL or missing references) //IL_156a: Unknown result type (might be due to invalid IL or missing references) //IL_1575: Unknown result type (might be due to invalid IL or missing references) //IL_157a: Unknown result type (might be due to invalid IL or missing references) //IL_1582: Unknown result type (might be due to invalid IL or missing references) //IL_13fc: Unknown result type (might be due to invalid IL or missing references) //IL_1401: Unknown result type (might be due to invalid IL or missing references) //IL_1294: Unknown result type (might be due to invalid IL or missing references) //IL_1299: Unknown result type (might be due to invalid IL or missing references) //IL_1276: Unknown result type (might be due to invalid IL or missing references) //IL_127b: Unknown result type (might be due to invalid IL or missing references) //IL_10a6: Unknown result type (might be due to invalid IL or missing references) //IL_10ab: Unknown result type (might be due to invalid IL or missing references) //IL_1814: Unknown result type (might be due to invalid IL or missing references) //IL_181f: Unknown result type (might be due to invalid IL or missing references) //IL_1829: Unknown result type (might be due to invalid IL or missing references) //IL_182e: Unknown result type (might be due to invalid IL or missing references) //IL_1839: Unknown result type (might be due to invalid IL or missing references) //IL_1843: Unknown result type (might be due to invalid IL or missing references) //IL_1848: Unknown result type (might be due to invalid IL or missing references) //IL_1853: Unknown result type (might be due to invalid IL or missing references) //IL_185d: Unknown result type (might be due to invalid IL or missing references) //IL_1862: Unknown result type (might be due to invalid IL or missing references) //IL_186d: Unknown result type (might be due to invalid IL or missing references) //IL_1878: Unknown result type (might be due to invalid IL or missing references) //IL_1882: Unknown result type (might be due to invalid IL or missing references) //IL_1887: Unknown result type (might be due to invalid IL or missing references) //IL_1892: Unknown result type (might be due to invalid IL or missing references) //IL_189c: Unknown result type (might be due to invalid IL or missing references) //IL_18a1: Unknown result type (might be due to invalid IL or missing references) //IL_18ac: Unknown result type (might be due to invalid IL or missing references) //IL_18b7: Unknown result type (might be due to invalid IL or missing references) //IL_18bc: Unknown result type (might be due to invalid IL or missing references) //IL_18c8: Unknown result type (might be due to invalid IL or missing references) //IL_16da: Unknown result type (might be due to invalid IL or missing references) //IL_16e5: Unknown result type (might be due to invalid IL or missing references) //IL_16ef: Unknown result type (might be due to invalid IL or missing references) //IL_16f4: Unknown result type (might be due to invalid IL or missing references) //IL_16ff: Unknown result type (might be due to invalid IL or missing references) //IL_1709: Unknown result type (might be due to invalid IL or missing references) //IL_170e: Unknown result type (might be due to invalid IL or missing references) //IL_1719: Unknown result type (might be due to invalid IL or missing references) //IL_1723: Unknown result type (might be due to invalid IL or missing references) //IL_1728: Unknown result type (might be due to invalid IL or missing references) //IL_1733: Unknown result type (might be due to invalid IL or missing references) //IL_173e: Unknown result type (might be due to invalid IL or missing references) //IL_1748: Unknown result type (might be due to invalid IL or missing references) //IL_174d: Unknown result type (might be due to invalid IL or missing references) //IL_1758: Unknown result type (might be due to invalid IL or missing references) //IL_1762: Unknown result type (might be due to invalid IL or missing references) //IL_1767: Unknown result type (might be due to invalid IL or missing references) //IL_1772: Unknown result type (might be due to invalid IL or missing references) //IL_177d: Unknown result type (might be due to invalid IL or missing references) //IL_1782: Unknown result type (might be due to invalid IL or missing references) //IL_178a: Unknown result type (might be due to invalid IL or missing references) //IL_159c: Unknown result type (might be due to invalid IL or missing references) //IL_15a1: Unknown result type (might be due to invalid IL or missing references) //IL_1434: Unknown result type (might be due to invalid IL or missing references) //IL_1439: Unknown result type (might be due to invalid IL or missing references) //IL_1416: Unknown result type (might be due to invalid IL or missing references) //IL_141b: Unknown result type (might be due to invalid IL or missing references) //IL_12ae: Unknown result type (might be due to invalid IL or missing references) //IL_12b3: Unknown result type (might be due to invalid IL or missing references) //IL_1a1c: Unknown result type (might be due to invalid IL or missing references) //IL_1a27: Unknown result type (might be due to invalid IL or missing references) //IL_1a31: Unknown result type (might be due to invalid IL or missing references) //IL_1a36: Unknown result type (might be due to invalid IL or missing references) //IL_1a41: Unknown result type (might be due to invalid IL or missing references) //IL_1a4b: Unknown result type (might be due to invalid IL or missing references) //IL_1a50: Unknown result type (might be due to invalid IL or missing references) //IL_1a5b: Unknown result type (might be due to invalid IL or missing references) //IL_1a65: Unknown result type (might be due to invalid IL or missing references) //IL_1a6a: Unknown result type (might be due to invalid IL or missing references) //IL_1a75: Unknown result type (might be due to invalid IL or missing references) //IL_1a80: Unknown result type (might be due to invalid IL or missing references) //IL_1a8a: Unknown result type (might be due to invalid IL or missing references) //IL_1a8f: Unknown result type (might be due to invalid IL or missing references) //IL_1a9a: Unknown result type (might be due to invalid IL or missing references) //IL_1aa4: Unknown result type (might be due to invalid IL or missing references) //IL_1aa9: Unknown result type (might be due to invalid IL or missing references) //IL_1ab4: Unknown result type (might be due to invalid IL or missing references) //IL_1abf: Unknown result type (might be due to invalid IL or missing references) //IL_1ac4: Unknown result type (might be due to invalid IL or missing references) //IL_1ad0: Unknown result type (might be due to invalid IL or missing references) //IL_18e2: Unknown result type (might be due to invalid IL or missing references) //IL_18ed: Unknown result type (might be due to invalid IL or missing references) //IL_18f7: Unknown result type (might be due to invalid IL or missing references) //IL_18fc: Unknown result type (might be due to invalid IL or missing references) //IL_1907: Unknown result type (might be due to invalid IL or missing references) //IL_1911: Unknown result type (might be due to invalid IL or missing references) //IL_1916: Unknown result type (might be due to invalid IL or missing references) //IL_1921: Unknown result type (might be due to invalid IL or missing references) //IL_192b: Unknown result type (might be due to invalid IL or missing references) //IL_1930: Unknown result type (might be due to invalid IL or missing references) //IL_193b: Unknown result type (might be due to invalid IL or missing references) //IL_1946: Unknown result type (might be due to invalid IL or missing references) //IL_1950: Unknown result type (might be due to invalid IL or missing references) //IL_1955: Unknown result type (might be due to invalid IL or missing references) //IL_1960: Unknown result type (might be due to invalid IL or missing references) //IL_196a: Unknown result type (might be due to invalid IL or missing references) //IL_196f: Unknown result type (might be due to invalid IL or missing references) //IL_197a: Unknown result type (might be due to invalid IL or missing references) //IL_1985: Unknown result type (might be due to invalid IL or missing references) //IL_198a: Unknown result type (might be due to invalid IL or missing references) //IL_1992: Unknown result type (might be due to invalid IL or missing references) //IL_17a4: Unknown result type (might be due to invalid IL or missing references) //IL_17a9: Unknown result type (might be due to invalid IL or missing references) //IL_15d4: Unknown result type (might be due to invalid IL or missing references) //IL_15d9: Unknown result type (might be due to invalid IL or missing references) //IL_15b6: Unknown result type (might be due to invalid IL or missing references) //IL_15bb: Unknown result type (might be due to invalid IL or missing references) //IL_144e: Unknown result type (might be due to invalid IL or missing references) //IL_1453: Unknown result type (might be due to invalid IL or missing references) //IL_1c24: Unknown result type (might be due to invalid IL or missing references) //IL_1c2f: Unknown result type (might be due to invalid IL or missing references) //IL_1c39: Unknown result type (might be due to invalid IL or missing references) //IL_1c3e: Unknown result type (might be due to invalid IL or missing references) //IL_1c49: Unknown result type (might be due to invalid IL or missing references) //IL_1c53: Unknown result type (might be due to invalid IL or missing references) //IL_1c58: Unknown result type (might be due to invalid IL or missing references) //IL_1c63: Unknown result type (might be due to invalid IL or missing references) //IL_1c6d: Unknown result type (might be due to invalid IL or missing references) //IL_1c72: Unknown result type (might be due to invalid IL or missing references) //IL_1c7d: Unknown result type (might be due to invalid IL or missing references) //IL_1c88: Unknown result type (might be due to invalid IL or missing references) //IL_1c92: Unknown result type (might be due to invalid IL or missing references) //IL_1c97: Unknown result type (might be due to invalid IL or missing references) //IL_1ca2: Unknown result type (might be due to invalid IL or missing references) //IL_1cac: Unknown result type (might be due to invalid IL or missing references) //IL_1cb1: Unknown result type (might be due to invalid IL or missing references) //IL_1cbc: Unknown result type (might be due to invalid IL or missing references) //IL_1cc7: Unknown result type (might be due to invalid IL or missing references) //IL_1ccc: Unknown result type (might be due to invalid IL or missing references) //IL_1cd8: Unknown result type (might be due to invalid IL or missing references) //IL_1aea: Unknown result type (might be due to invalid IL or missing references) //IL_1af5: Unknown result type (might be due to invalid IL or missing references) //IL_1aff: Unknown result type (might be due to invalid IL or missing references) //IL_1b04: Unknown result type (might be due to invalid IL or missing references) //IL_1b0f: Unknown result type (might be due to invalid IL or missing references) //IL_1b19: Unknown result type (might be due to invalid IL or missing references) //IL_1b1e: Unknown result type (might be due to invalid IL or missing references) //IL_1b29: Unknown result type (might be due to invalid IL or missing references) //IL_1b33: Unknown result type (might be due to invalid IL or missing references) //IL_1b38: Unknown result type (might be due to invalid IL or missing references) //IL_1b43: Unknown result type (might be due to invalid IL or missing references) //IL_1b4e: Unknown result type (might be due to invalid IL or missing references) //IL_1b58: Unknown result type (might be due to invalid IL or missing references) //IL_1b5d: Unknown result type (might be due to invalid IL or missing references) //IL_1b68: Unknown result type (might be due to invalid IL or missing references) //IL_1b72: Unknown result type (might be due to invalid IL or missing references) //IL_1b77: Unknown result type (might be due to invalid IL or missing references) //IL_1b82: Unknown result type (might be due to invalid IL or missing references) //IL_1b8d: Unknown result type (might be due to invalid IL or missing references) //IL_1b92: Unknown result type (might be due to invalid IL or missing references) //IL_1b9a: Unknown result type (might be due to invalid IL or missing references) //IL_19ac: Unknown result type (might be due to invalid IL or missing references) //IL_19b1: Unknown result type (might be due to invalid IL or missing references) //IL_17dc: Unknown result type (might be due to invalid IL or missing references) //IL_17e1: Unknown result type (might be due to invalid IL or missing references) //IL_17be: Unknown result type (might be due to invalid IL or missing references) //IL_17c3: Unknown result type (might be due to invalid IL or missing references) //IL_15ee: Unknown result type (might be due to invalid IL or missing references) //IL_15f3: Unknown result type (might be due to invalid IL or missing references) //IL_1cf2: Unknown result type (might be due to invalid IL or missing references) //IL_1cfd: Unknown result type (might be due to invalid IL or missing references) //IL_1d07: Unknown result type (might be due to invalid IL or missing references) //IL_1d0c: Unknown result type (might be due to invalid IL or missing references) //IL_1d17: Unknown result type (might be due to invalid IL or missing references) //IL_1d21: Unknown result type (might be due to invalid IL or missing references) //IL_1d26: Unknown result type (might be due to invalid IL or missing references) //IL_1d31: Unknown result type (might be due to invalid IL or missing references) //IL_1d3b: Unknown result type (might be due to invalid IL or missing references) //IL_1d40: Unknown result type (might be due to invalid IL or missing references) //IL_1d4b: Unknown result type (might be due to invalid IL or missing references) //IL_1d56: Unknown result type (might be due to invalid IL or missing references) //IL_1d60: Unknown result type (might be due to invalid IL or missing references) //IL_1d65: Unknown result type (might be due to invalid IL or missing references) //IL_1d70: Unknown result type (might be due to invalid IL or missing references) //IL_1d7a: Unknown result type (might be due to invalid IL or missing references) //IL_1d7f: Unknown result type (might be due to invalid IL or missing references) //IL_1d8a: Unknown result type (might be due to invalid IL or missing references) //IL_1d95: Unknown result type (might be due to invalid IL or missing references) //IL_1d9a: Unknown result type (might be due to invalid IL or missing references) //IL_1da2: Unknown result type (might be due to invalid IL or missing references) //IL_1bb4: Unknown result type (might be due to invalid IL or missing references) //IL_1bb9: Unknown result type (might be due to invalid IL or missing references) //IL_19e4: Unknown result type (might be due to invalid IL or missing references) //IL_19e9: Unknown result type (might be due to invalid IL or missing references) //IL_19c6: Unknown result type (might be due to invalid IL or missing references) //IL_19cb: Unknown result type (might be due to invalid IL or missing references) //IL_17f6: Unknown result type (might be due to invalid IL or missing references) //IL_17fb: Unknown result type (might be due to invalid IL or missing references) //IL_1dbc: Unknown result type (might be due to invalid IL or missing references) //IL_1dc1: Unknown result type (might be due to invalid IL or missing references) //IL_1bec: Unknown result type (might be due to invalid IL or missing references) //IL_1bf1: Unknown result type (might be due to invalid IL or missing references) //IL_1bce: Unknown result type (might be due to invalid IL or missing references) //IL_1bd3: Unknown result type (might be due to invalid IL or missing references) //IL_19fe: Unknown result type (might be due to invalid IL or missing references) //IL_1a03: Unknown result type (might be due to invalid IL or missing references) //IL_1df4: Unknown result type (might be due to invalid IL or missing references) //IL_1df9: Unknown result type (might be due to invalid IL or missing references) //IL_1dd6: Unknown result type (might be due to invalid IL or missing references) //IL_1ddb: Unknown result type (might be due to invalid IL or missing references) //IL_1c06: Unknown result type (might be due to invalid IL or missing references) //IL_1c0b: Unknown result type (might be due to invalid IL or missing references) //IL_1e0e: Unknown result type (might be due to invalid IL or missing references) //IL_1e13: Unknown result type (might be due to invalid IL or missing references) RaycastHit val = default(RaycastHit); if ((Physics.Raycast(pos - ((Component)this).transform.right / 5f, Vector3.down, ref hit, maxGroundedDistance2, LayerMask.op_Implicit(noWaterCollisionLayers)) && Physics.Raycast(pos + ((Component)this).transform.right / 5f, Vector3.down, ref val, maxGroundedDistance2, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((((RaycastHit)(ref hit)).normal.z < 0f && ((RaycastHit)(ref val)).normal.z > 0f) || (((RaycastHit)(ref hit)).normal.z > 0f && ((RaycastHit)(ref val)).normal.z < 0f))) || (Physics.Linecast(((Component)this).transform.position - ((Component)this).transform.right / 5f + ((Component)this).transform.up / 4f, ((Component)this).transform.position - ((Component)this).transform.right / 5f - ((Component)this).transform.up * maxGroundedDistance2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.right / 5f + ((Component)this).transform.up / 4f, ((Component)this).transform.position + ((Component)this).transform.right / 5f - ((Component)this).transform.up * maxGroundedDistance2, ref val, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((((RaycastHit)(ref hit)).normal.z < 0f && ((RaycastHit)(ref val)).normal.z > 0f) || (((RaycastHit)(ref hit)).normal.z > 0f && ((RaycastHit)(ref val)).normal.z < 0f))) || (Physics.Linecast(((Component)this).transform.position - ((Component)this).transform.right / 25f + ((Component)this).transform.up / 4f, ((Component)this).transform.position - ((Component)this).transform.right / 25f - ((Component)this).transform.up * maxGroundedDistance2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.right / 25f + ((Component)this).transform.up / 4f, ((Component)this).transform.position + ((Component)this).transform.right / 25f - ((Component)this).transform.up * maxGroundedDistance2, ref val, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((((RaycastHit)(ref hit)).normal.z < 0f && ((RaycastHit)(ref val)).normal.z > 0f) || (((RaycastHit)(ref hit)).normal.z > 0f && ((RaycastHit)(ref val)).normal.z < 0f))) || (Physics.Raycast(pos + ((Component)this).transform.forward / 25f - ((Component)this).transform.right / 5f, Vector3.down, ref hit, maxGroundedDistance2, LayerMask.op_Implicit(noWaterCollisionLayers)) && Physics.Raycast(pos - ((Component)this).transform.forward / 25f + ((Component)this).transform.right / 5f, Vector3.down, ref val, maxGroundedDistance2, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((((RaycastHit)(ref hit)).normal.z < 0f && ((RaycastHit)(ref val)).normal.z > 0f) || (((RaycastHit)(ref hit)).normal.z > 0f && ((RaycastHit)(ref val)).normal.z < 0f))) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 50f - ((Component)this).transform.right / 5f + ((Component)this).transform.up / 4f, ((Component)this).transform.position + ((Component)this).transform.forward / 50f - ((Component)this).transform.right / 5f - ((Component)this).transform.up * maxGroundedDistance2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && Physics.Linecast(((Component)this).transform.position - ((Component)this).transform.forward / 50f - ((Component)this).transform.right / 5f + ((Component)this).transform.up / 4f, ((Component)this).transform.position - ((Component)this).transform.forward / 50f - ((Component)this).transform.right / 5f - ((Component)this).transform.up * maxGroundedDistance2, ref val, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((((RaycastHit)(ref hit)).normal.z < 0f && ((RaycastHit)(ref val)).normal.z > 0f) || (((RaycastHit)(ref hit)).normal.z > 0f && ((RaycastHit)(ref val)).normal.z < 0f))) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 25f - ((Component)this).transform.right / 5f + ((Component)this).transform.up / 4f, ((Component)this).transform.position + ((Component)this).transform.forward / 25f - ((Component)this).transform.right / 5f - ((Component)this).transform.up * maxGroundedDistance2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && Physics.Linecast(((Component)this).transform.position - ((Component)this).transform.forward / 25f + ((Component)this).transform.right / 5f + ((Component)this).transform.up / 4f, ((Component)this).transform.position - ((Component)this).transform.forward / 25f + ((Component)this).transform.right / 5f - ((Component)this).transform.up * maxGroundedDistance2, ref val, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((((RaycastHit)(ref hit)).normal.z < 0f && ((RaycastHit)(ref val)).normal.z > 0f) || (((RaycastHit)(ref hit)).normal.z > 0f && ((RaycastHit)(ref val)).normal.z < 0f))) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 25f - ((Component)this).transform.right / 25f + ((Component)this).transform.up / 4f, ((Component)this).transform.position + ((Component)this).transform.forward / 25f - ((Component)this).transform.right / 25f - ((Component)this).transform.up * maxGroundedDistance2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && Physics.Linecast(((Component)this).transform.position - ((Component)this).transform.forward / 25f + ((Component)this).transform.right / 25f + ((Component)this).transform.up / 4f, ((Component)this).transform.position - ((Component)this).transform.forward / 25f + ((Component)this).transform.right / 25f - ((Component)this).transform.up * maxGroundedDistance2, ref val, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((((RaycastHit)(ref hit)).normal.z < 0f && ((RaycastHit)(ref val)).normal.z > 0f) || (((RaycastHit)(ref hit)).normal.z > 0f && ((RaycastHit)(ref val)).normal.z < 0f))) || (Physics.Raycast(pos + ((Component)this).transform.forward / 25f + ((Component)this).transform.right / 5f, Vector3.down, ref hit, maxGroundedDistance2, LayerMask.op_Implicit(noWaterCollisionLayers)) && Physics.Raycast(pos - ((Component)this).transform.forward / 25f - ((Component)this).transform.right / 5f, Vector3.down, ref val, maxGroundedDistance2, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((((RaycastHit)(ref hit)).normal.z < 0f && ((RaycastHit)(ref val)).normal.z > 0f) || (((RaycastHit)(ref hit)).normal.z > 0f && ((RaycastHit)(ref val)).normal.z < 0f))) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 50f + ((Component)this).transform.right / 5f + ((Component)this).transform.up / 4f, ((Component)this).transform.position + ((Component)this).transform.forward / 50f + ((Component)this).transform.right / 5f - ((Component)this).transform.up * maxGroundedDistance2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && Physics.Linecast(((Component)this).transform.position - ((Component)this).transform.forward / 50f + ((Component)this).transform.right / 5f + ((Component)this).transform.up / 4f, ((Component)this).transform.position - ((Component)this).transform.forward / 50f + ((Component)this).transform.right / 5f - ((Component)this).transform.up * maxGroundedDistance2, ref val, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((((RaycastHit)(ref hit)).normal.z < 0f && ((RaycastHit)(ref val)).normal.z > 0f) || (((RaycastHit)(ref hit)).normal.z > 0f && ((RaycastHit)(ref val)).normal.z < 0f))) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 25f + ((Component)this).transform.right / 5f + ((Component)this).transform.up / 4f, ((Component)this).transform.position + ((Component)this).transform.forward / 25f + ((Component)this).transform.right / 5f - ((Component)this).transform.up * maxGroundedDistance2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && Physics.Linecast(((Component)this).transform.position - ((Component)this).transform.forward / 25f - ((Component)this).transform.right / 5f + ((Component)this).transform.up / 4f, ((Component)this).transform.position - ((Component)this).transform.forward / 25f - ((Component)this).transform.right / 5f - ((Component)this).transform.up * maxGroundedDistance2, ref val, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((((RaycastHit)(ref hit)).normal.z < 0f && ((RaycastHit)(ref val)).normal.z > 0f) || (((RaycastHit)(ref hit)).normal.z > 0f && ((RaycastHit)(ref val)).normal.z < 0f))) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 25f + ((Component)this).transform.right / 25f + ((Component)this).transform.up / 4f, ((Component)this).transform.position + ((Component)this).transform.forward / 25f + ((Component)this).transform.right / 25f - ((Component)this).transform.up * maxGroundedDistance2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && Physics.Linecast(((Component)this).transform.position - ((Component)this).transform.forward / 25f - ((Component)this).transform.right / 25f + ((Component)this).transform.up / 4f, ((Component)this).transform.position - ((Component)this).transform.forward / 25f - ((Component)this).transform.right / 25f - ((Component)this).transform.up * maxGroundedDistance2, ref val, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((((RaycastHit)(ref hit)).normal.z < 0f && ((RaycastHit)(ref val)).normal.z > 0f) || (((RaycastHit)(ref hit)).normal.z > 0f && ((RaycastHit)(ref val)).normal.z < 0f))) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 10f + ((Component)this).transform.up / 4f, ((Component)this).transform.position + ((Component)this).transform.forward / 10f - ((Component)this).transform.up * maxGroundedDistance2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && Physics.Linecast(((Component)this).transform.position - ((Component)this).transform.forward / 10f + ((Component)this).transform.up / 4f, ((Component)this).transform.position - ((Component)this).transform.forward / 10f - ((Component)this).transform.up * maxGroundedDistance2, ref val, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((((RaycastHit)(ref hit)).normal.z < 0f && ((RaycastHit)(ref val)).normal.z > 0f) || (((RaycastHit)(ref hit)).normal.z > 0f && ((RaycastHit)(ref val)).normal.z < 0f))) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 25f + ((Component)this).transform.up / 4f, ((Component)this).transform.position + ((Component)this).transform.forward / 25f - ((Component)this).transform.up * maxGroundedDistance2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && Physics.Linecast(((Component)this).transform.position - ((Component)this).transform.forward / 25f + ((Component)this).transform.up / 4f, ((Component)this).transform.position - ((Component)this).transform.forward / 25f - ((Component)this).transform.up * maxGroundedDistance2, ref val, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((((RaycastHit)(ref hit)).normal.z < 0f && ((RaycastHit)(ref val)).normal.z > 0f) || (((RaycastHit)(ref hit)).normal.z > 0f && ((RaycastHit)(ref val)).normal.z < 0f))) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 25f - ((Component)this).transform.right / 3f + ((Component)this).transform.up / 4f, ((Component)this).transform.position + ((Component)this).transform.forward / 25f - ((Component)this).transform.right / 3f - ((Component)this).transform.up * maxGroundedDistance2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && Physics.Linecast(((Component)this).transform.position - ((Component)this).transform.forward / 25f - ((Component)this).transform.right / 3f + ((Component)this).transform.up / 4f, ((Component)this).transform.position - ((Component)this).transform.forward / 25f - ((Component)this).transform.right / 3f - ((Component)this).transform.up * maxGroundedDistance2, ref val, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((((RaycastHit)(ref hit)).normal.z < 0f && ((RaycastHit)(ref val)).normal.z > 0f) || (((RaycastHit)(ref hit)).normal.z > 0f && ((RaycastHit)(ref val)).normal.z < 0f))) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 50f - ((Component)this).transform.right / 3f + ((Component)this).transform.up / 4f, ((Component)this).transform.position + ((Component)this).transform.forward / 50f - ((Component)this).transform.right / 3f - ((Component)this).transform.up * maxGroundedDistance2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && Physics.Linecast(((Component)this).transform.position - ((Component)this).transform.forward / 50f - ((Component)this).transform.right / 3f + ((Component)this).transform.up / 4f, ((Component)this).transform.position - ((Component)this).transform.forward / 50f - ((Component)this).transform.right / 3f - ((Component)this).transform.up * maxGroundedDistance2, ref val, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((((RaycastHit)(ref hit)).normal.z < 0f && ((RaycastHit)(ref val)).normal.z > 0f) || (((RaycastHit)(ref hit)).normal.z > 0f && ((RaycastHit)(ref val)).normal.z < 0f))) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 25f + ((Component)this).transform.right / 3f + ((Component)this).transform.up / 4f, ((Component)this).transform.position + ((Component)this).transform.forward / 25f + ((Component)this).transform.right / 3f - ((Component)this).transform.up * maxGroundedDistance2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && Physics.Linecast(((Component)this).transform.position - ((Component)this).transform.forward / 25f + ((Component)this).transform.right / 3f + ((Component)this).transform.up / 4f, ((Component)this).transform.position - ((Component)this).transform.forward / 25f + ((Component)this).transform.right / 3f - ((Component)this).transform.up * maxGroundedDistance2, ref val, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((((RaycastHit)(ref hit)).normal.z < 0f && ((RaycastHit)(ref val)).normal.z > 0f) || (((RaycastHit)(ref hit)).normal.z > 0f && ((RaycastHit)(ref val)).normal.z < 0f))) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 50f + ((Component)this).transform.right / 3f + ((Component)this).transform.up / 4f, ((Component)this).transform.position + ((Component)this).transform.forward / 50f + ((Component)this).transform.right / 3f - ((Component)this).transform.up * maxGroundedDistance2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && Physics.Linecast(((Component)this).transform.position - ((Component)this).transform.forward / 50f + ((Component)this).transform.right / 3f + ((Component)this).transform.up / 4f, ((Component)this).transform.position - ((Component)this).transform.forward / 50f + ((Component)this).transform.right / 3f - ((Component)this).transform.up * maxGroundedDistance2, ref val, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((((RaycastHit)(ref hit)).normal.z < 0f && ((RaycastHit)(ref val)).normal.z > 0f) || (((RaycastHit)(ref hit)).normal.z > 0f && ((RaycastHit)(ref val)).normal.z < 0f)))) { if (Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > slopeLimit && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref val)).normal.y, -1f, 1f)) * 57.2958f > slopeLimit) { inBetweenSlidableSurfaces = true; uphill = false; } else { inBetweenSlidableSurfaces = false; } } else if (!inMidAirFromJump) { inBetweenSlidableSurfaces = false; } } private void Jump() { canCrouch = false; crouching = false; jumpPerformed = true; if (currentJumpNumber == totalJumpNumber || timeLimitBetweenJumps2 <= 0f || (jumping.doNotIncreaseJumpNumberWhenSliding && sliding)) { currentJumpNumber = 0; } currentJumpNumber++; if ((Object)(object)animator != (Object)null && (Object)(object)animator.runtimeAnimatorController != (Object)null && outOfWaterTimer > 0f) { animator.CrossFade("Jump", 0f, -1, 0f); } jumpTimer = 0f; moveDirection.y = jumpsToPerform[currentJumpNumber - 1]; inMidAirFromJump = true; jumpPressed = false; } private void DoubleJump() { //IL_0025: Unknown result type (might be due to invalid IL or missing references) //IL_002a: Unknown result type (might be due to invalid IL or missing references) //IL_0037: Unknown result type (might be due to invalid IL or missing references) //IL_00b0: Unknown result type (might be due to invalid IL or missing references) //IL_0082: Unknown result type (might be due to invalid IL or missing references) //IL_008c: Unknown result type (might be due to invalid IL or missing references) //IL_0091: Unknown result type (might be due to invalid IL or missing references) //IL_011d: Unknown result type (might be due to invalid IL or missing references) //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_0136: Unknown result type (might be due to invalid IL or missing references) //IL_0146: Unknown result type (might be due to invalid IL or missing references) inMidAirFromJump = true; if (inMidAirFromWallJump) { ((Component)this).transform.eulerAngles = new Vector3(0f, ((Component)this).transform.eulerAngles.y, 0f); inMidAirFromWallJump = false; } moveDirection.y = doubleJumpHeight2; if (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Collider)((Component)this).GetComponent()).enabled) { ((Component)this).GetComponent().Move(moveDirection * Time.deltaTime); } if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { ((Component)this).GetComponent().velocity = moveDirection; } if ((Object)(object)animator != (Object)null && (Object)(object)animator.runtimeAnimatorController != (Object)null) { animator.CrossFade("DoubleJump", 0f, -1, 0f); } if ((Object)(object)doubleJumpEffect2 != (Object)null) { Object.Instantiate(doubleJumpEffect2, ((Component)this).transform.position + new Vector3(0f, 0.2f, 0f), doubleJumpEffect2.transform.rotation); } } private void WallJump() { //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) canCrouch = false; crouching = false; inMidAirFromJump = true; moveDirection = wallJumpDirection; } private void Attack() { //IL_0097: Unknown result type (might be due to invalid IL or missing references) //IL_009c: Unknown result type (might be due to invalid IL or missing references) //IL_014b: Unknown result type (might be due to invalid IL or missing references) //IL_0150: Unknown result type (might be due to invalid IL or missing references) if (!crouching) { if (currentAttackNumber == totalAttackNumber || (attackState == 0 && comboTimeLimitGround <= 0f) || (attackState == 1 && comboTimeLimitAir <= 0f)) { if (attackState == 0) { if (!rememberAttackButtonPressesGround) { goto IL_01bc; } if (rememberAttackButtonPressesGround) { if (attacking.ground.waitingBeforeAttackingAgain.waitForAnimationToFinish) { AnimatorStateInfo currentAnimatorStateInfo = animator.GetCurrentAnimatorStateInfo(0); if (!((AnimatorStateInfo)(ref currentAnimatorStateInfo)).IsName("Attack") && waitingBetweenAttacksTimerGround > attacking.ground.waitingBeforeAttackingAgain.waitingTime) { goto IL_01bc; } } if (!attacking.ground.waitingBeforeAttackingAgain.waitForAnimationToFinish && waitingBetweenAttacksTimerGround > attacking.ground.waitingBeforeAttackingAgain.waitingTime) { goto IL_01bc; } } } if (attackState == 1) { if (!rememberAttackButtonPressesAir) { goto IL_01bc; } if (rememberAttackButtonPressesAir) { if (attacking.air.waitingBeforeAttackingAgain.waitForAnimationToFinish) { AnimatorStateInfo currentAnimatorStateInfo2 = animator.GetCurrentAnimatorStateInfo(0); if (!((AnimatorStateInfo)(ref currentAnimatorStateInfo2)).IsName("Attack") && waitingBetweenAttacksTimerAir > attacking.air.waitingBeforeAttackingAgain.waitingTime) { goto IL_01bc; } } if (!attacking.air.waitingBeforeAttackingAgain.waitForAnimationToFinish && waitingBetweenAttacksTimerAir > attacking.air.waitingBeforeAttackingAgain.waitingTime) { goto IL_01bc; } } } } goto IL_01cc; } goto IL_01ee; IL_01cc: if (attackPressesRemembered < totalAttackNumber) { attackPressesRemembered++; } goto IL_01ee; IL_01ee: if ((attackState == 0 && !rememberAttackButtonPressesGround) || (attackState == 1 && !rememberAttackButtonPressesAir) || attackState == 2) { currentAttackNumber++; if ((Object)(object)animator != (Object)null && (Object)(object)animator.runtimeAnimatorController != (Object)null) { animator.CrossFade("Attack", 0f, -1, 0f); } waitingBetweenAttacksTimerGround = 0f; waitingBetweenAttacksTimerAir = 0f; attackTimer = 0f; } return; IL_01bc: attackPressesRemembered = 0; currentAttackNumber = 0; goto IL_01cc; } private void PushOffWall() { //IL_002d: Unknown result type (might be due to invalid IL or missing references) //IL_0032: Unknown result type (might be due to invalid IL or missing references) //IL_0042: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_00ac: Unknown result type (might be due to invalid IL or missing references) //IL_00b2: Unknown result type (might be due to invalid IL or missing references) //IL_00bc: Unknown result type (might be due to invalid IL or missing references) //IL_00c1: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_007e: Unknown result type (might be due to invalid IL or missing references) //IL_0083: Unknown result type (might be due to invalid IL or missing references) jumpedOffClimbableObjectTimer += 0.02f; if (jumpedOffClimbableObjectTimer < 0.3f) { currentlyClimbingWall = false; jumpedOffClimbableObjectDirection = Vector3.Slerp(jumpedOffClimbableObjectDirection, Vector3.zero, 8f * Time.deltaTime); if (Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled) { characterController.Move(jumpedOffClimbableObjectDirection * Time.deltaTime); } else if (Object.op_Implicit((Object)(object)rigidBody)) { rigidBody.MovePosition(((Component)this).transform.position + jumpedOffClimbableObjectDirection * Time.deltaTime); } } } private void SnapToCenter() { //IL_01c6: Unknown result type (might be due to invalid IL or missing references) //IL_01cc: Unknown result type (might be due to invalid IL or missing references) //IL_01d6: Unknown result type (might be due to invalid IL or missing references) //IL_01e0: Unknown result type (might be due to invalid IL or missing references) //IL_01e5: Unknown result type (might be due to invalid IL or missing references) //IL_0130: Unknown result type (might be due to invalid IL or missing references) //IL_013a: Unknown result type (might be due to invalid IL or missing references) //IL_0144: Unknown result type (might be due to invalid IL or missing references) //IL_0149: Unknown result type (might be due to invalid IL or missing references) //IL_018a: Unknown result type (might be due to invalid IL or missing references) //IL_0190: Unknown result type (might be due to invalid IL or missing references) //IL_019a: Unknown result type (might be due to invalid IL or missing references) //IL_01a4: Unknown result type (might be due to invalid IL or missing references) //IL_01a9: Unknown result type (might be due to invalid IL or missing references) //IL_0103: Unknown result type (might be due to invalid IL or missing references) //IL_010d: Unknown result type (might be due to invalid IL or missing references) //IL_0117: Unknown result type (might be due to invalid IL or missing references) //IL_011c: Unknown result type (might be due to invalid IL or missing references) if (snapToCenterOfObject2 && (turnBack || back2)) { snappingToCenter = true; } if ((currentlyClimbingWall && !pullingUp) || turnBack || back2) { if (!turnBack || wallIsClimbable || currentlyClimbingWall) { snapTimer += 0.02f; } if (!snappingToCenter || !(snapTimer < 0.6f) || (turnBack && !(turnBackTimer >= 0.1f))) { return; } if (Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled) { if (!turnBack && !back2) { characterController.Move(centerPoint * 15f * Time.deltaTime); } else { characterController.Move(centerPoint * 13f * Time.deltaTime); } } else if (Object.op_Implicit((Object)(object)rigidBody)) { if (!turnBack && !back2) { rigidBody.MovePosition(((Component)this).transform.position + centerPoint * 15f * Time.deltaTime); } else { rigidBody.MovePosition(((Component)this).transform.position + centerPoint * 13f * Time.deltaTime); } } } else { snapTimer = 0f; snappingToCenter = false; } } private void TurnToGrabLadder() { //IL_0070: Unknown result type (might be due to invalid IL or missing references) //IL_007b: Unknown result type (might be due to invalid IL or missing references) //IL_0085: Unknown result type (might be due to invalid IL or missing references) //IL_008a: Unknown result type (might be due to invalid IL or missing references) //IL_0095: Unknown result type (might be due to invalid IL or missing references) //IL_009f: Unknown result type (might be due to invalid IL or missing references) //IL_00a4: Unknown result type (might be due to invalid IL or missing references) //IL_00aa: Unknown result type (might be due to invalid IL or missing references) //IL_00af: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) //IL_00ba: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_00d0: Unknown result type (might be due to invalid IL or missing references) //IL_00da: Unknown result type (might be due to invalid IL or missing references) //IL_00df: Unknown result type (might be due to invalid IL or missing references) //IL_00ea: Unknown result type (might be due to invalid IL or missing references) //IL_00f4: Unknown result type (might be due to invalid IL or missing references) //IL_00f9: Unknown result type (might be due to invalid IL or missing references) //IL_0104: Unknown result type (might be due to invalid IL or missing references) //IL_010e: Unknown result type (might be due to invalid IL or missing references) //IL_0113: Unknown result type (might be due to invalid IL or missing references) //IL_0119: Unknown result type (might be due to invalid IL or missing references) //IL_011e: Unknown result type (might be due to invalid IL or missing references) //IL_0124: Unknown result type (might be due to invalid IL or missing references) //IL_0129: Unknown result type (might be due to invalid IL or missing references) //IL_012f: Unknown result type (might be due to invalid IL or missing references) //IL_0134: Unknown result type (might be due to invalid IL or missing references) //IL_013a: Unknown result type (might be due to invalid IL or missing references) //IL_013f: Unknown result type (might be due to invalid IL or missing references) //IL_014b: Unknown result type (might be due to invalid IL or missing references) //IL_029a: Unknown result type (might be due to invalid IL or missing references) //IL_02a5: Unknown result type (might be due to invalid IL or missing references) //IL_02af: Unknown result type (might be due to invalid IL or missing references) //IL_02b4: Unknown result type (might be due to invalid IL or missing references) //IL_02bf: Unknown result type (might be due to invalid IL or missing references) //IL_02c9: Unknown result type (might be due to invalid IL or missing references) //IL_02ce: Unknown result type (might be due to invalid IL or missing references) //IL_02d4: Unknown result type (might be due to invalid IL or missing references) //IL_02d9: Unknown result type (might be due to invalid IL or missing references) //IL_02df: Unknown result type (might be due to invalid IL or missing references) //IL_02e4: Unknown result type (might be due to invalid IL or missing references) //IL_02ef: Unknown result type (might be due to invalid IL or missing references) //IL_02fa: Unknown result type (might be due to invalid IL or missing references) //IL_0304: Unknown result type (might be due to invalid IL or missing references) //IL_0309: Unknown result type (might be due to invalid IL or missing references) //IL_0314: Unknown result type (might be due to invalid IL or missing references) //IL_031e: Unknown result type (might be due to invalid IL or missing references) //IL_0323: Unknown result type (might be due to invalid IL or missing references) //IL_032e: Unknown result type (might be due to invalid IL or missing references) //IL_0338: Unknown result type (might be due to invalid IL or missing references) //IL_033d: Unknown result type (might be due to invalid IL or missing references) //IL_0343: Unknown result type (might be due to invalid IL or missing references) //IL_0348: Unknown result type (might be due to invalid IL or missing references) //IL_034e: Unknown result type (might be due to invalid IL or missing references) //IL_0353: Unknown result type (might be due to invalid IL or missing references) //IL_0359: Unknown result type (might be due to invalid IL or missing references) //IL_035e: Unknown result type (might be due to invalid IL or missing references) //IL_0364: Unknown result type (might be due to invalid IL or missing references) //IL_0369: Unknown result type (might be due to invalid IL or missing references) //IL_0375: Unknown result type (might be due to invalid IL or missing references) //IL_05ce: Unknown result type (might be due to invalid IL or missing references) //IL_05d9: Unknown result type (might be due to invalid IL or missing references) //IL_05e3: Unknown result type (might be due to invalid IL or missing references) //IL_05e8: Unknown result type (might be due to invalid IL or missing references) //IL_05f3: Unknown result type (might be due to invalid IL or missing references) //IL_05f8: Unknown result type (might be due to invalid IL or missing references) //IL_05fe: Unknown result type (might be due to invalid IL or missing references) //IL_0603: Unknown result type (might be due to invalid IL or missing references) //IL_0609: Unknown result type (might be due to invalid IL or missing references) //IL_060e: Unknown result type (might be due to invalid IL or missing references) //IL_0619: Unknown result type (might be due to invalid IL or missing references) //IL_0624: Unknown result type (might be due to invalid IL or missing references) //IL_062e: Unknown result type (might be due to invalid IL or missing references) //IL_0633: Unknown result type (might be due to invalid IL or missing references) //IL_063e: Unknown result type (might be due to invalid IL or missing references) //IL_0648: Unknown result type (might be due to invalid IL or missing references) //IL_064d: Unknown result type (might be due to invalid IL or missing references) //IL_0653: Unknown result type (might be due to invalid IL or missing references) //IL_0658: Unknown result type (might be due to invalid IL or missing references) //IL_0663: Unknown result type (might be due to invalid IL or missing references) //IL_0668: Unknown result type (might be due to invalid IL or missing references) //IL_066e: Unknown result type (might be due to invalid IL or missing references) //IL_0673: Unknown result type (might be due to invalid IL or missing references) //IL_0679: Unknown result type (might be due to invalid IL or missing references) //IL_067e: Unknown result type (might be due to invalid IL or missing references) //IL_0684: Unknown result type (might be due to invalid IL or missing references) //IL_0689: Unknown result type (might be due to invalid IL or missing references) //IL_0695: Unknown result type (might be due to invalid IL or missing references) //IL_0185: Unknown result type (might be due to invalid IL or missing references) //IL_0190: Unknown result type (might be due to invalid IL or missing references) //IL_019a: Unknown result type (might be due to invalid IL or missing references) //IL_019f: Unknown result type (might be due to invalid IL or missing references) //IL_01aa: Unknown result type (might be due to invalid IL or missing references) //IL_01b4: Unknown result type (might be due to invalid IL or missing references) //IL_01b9: Unknown result type (might be due to invalid IL or missing references) //IL_01c4: Unknown result type (might be due to invalid IL or missing references) //IL_01ce: Unknown result type (might be due to invalid IL or missing references) //IL_01d3: Unknown result type (might be due to invalid IL or missing references) //IL_01d9: Unknown result type (might be due to invalid IL or missing references) //IL_01de: Unknown result type (might be due to invalid IL or missing references) //IL_01e4: Unknown result type (might be due to invalid IL or missing references) //IL_01e9: Unknown result type (might be due to invalid IL or missing references) //IL_01ef: Unknown result type (might be due to invalid IL or missing references) //IL_01f4: Unknown result type (might be due to invalid IL or missing references) //IL_01fa: Unknown result type (might be due to invalid IL or missing references) //IL_01ff: Unknown result type (might be due to invalid IL or missing references) //IL_020a: Unknown result type (might be due to invalid IL or missing references) //IL_0215: Unknown result type (might be due to invalid IL or missing references) //IL_021f: Unknown result type (might be due to invalid IL or missing references) //IL_0224: Unknown result type (might be due to invalid IL or missing references) //IL_022f: Unknown result type (might be due to invalid IL or missing references) //IL_0239: Unknown result type (might be due to invalid IL or missing references) //IL_023e: Unknown result type (might be due to invalid IL or missing references) //IL_0244: Unknown result type (might be due to invalid IL or missing references) //IL_0249: Unknown result type (might be due to invalid IL or missing references) //IL_024f: Unknown result type (might be due to invalid IL or missing references) //IL_0254: Unknown result type (might be due to invalid IL or missing references) //IL_0260: Unknown result type (might be due to invalid IL or missing references) //IL_09de: Unknown result type (might be due to invalid IL or missing references) //IL_09e9: Unknown result type (might be due to invalid IL or missing references) //IL_09f3: Unknown result type (might be due to invalid IL or missing references) //IL_09f8: Unknown result type (might be due to invalid IL or missing references) //IL_0a03: Unknown result type (might be due to invalid IL or missing references) //IL_0a0d: Unknown result type (might be due to invalid IL or missing references) //IL_0a12: Unknown result type (might be due to invalid IL or missing references) //IL_0a18: Unknown result type (might be due to invalid IL or missing references) //IL_0a1d: Unknown result type (might be due to invalid IL or missing references) //IL_0a23: Unknown result type (might be due to invalid IL or missing references) //IL_0a28: Unknown result type (might be due to invalid IL or missing references) //IL_0a33: Unknown result type (might be due to invalid IL or missing references) //IL_0a3e: Unknown result type (might be due to invalid IL or missing references) //IL_0a48: Unknown result type (might be due to invalid IL or missing references) //IL_0a4d: Unknown result type (might be due to invalid IL or missing references) //IL_0a58: Unknown result type (might be due to invalid IL or missing references) //IL_0a62: Unknown result type (might be due to invalid IL or missing references) //IL_0a67: Unknown result type (might be due to invalid IL or missing references) //IL_0a72: Unknown result type (might be due to invalid IL or missing references) //IL_0a7c: Unknown result type (might be due to invalid IL or missing references) //IL_0a81: Unknown result type (might be due to invalid IL or missing references) //IL_0a87: Unknown result type (might be due to invalid IL or missing references) //IL_0a8c: Unknown result type (might be due to invalid IL or missing references) //IL_0a92: Unknown result type (might be due to invalid IL or missing references) //IL_0a97: Unknown result type (might be due to invalid IL or missing references) //IL_0a9d: Unknown result type (might be due to invalid IL or missing references) //IL_0aa2: Unknown result type (might be due to invalid IL or missing references) //IL_0aa8: Unknown result type (might be due to invalid IL or missing references) //IL_0aad: Unknown result type (might be due to invalid IL or missing references) //IL_0ab9: Unknown result type (might be due to invalid IL or missing references) //IL_03af: Unknown result type (might be due to invalid IL or missing references) //IL_03ba: Unknown result type (might be due to invalid IL or missing references) //IL_03c4: Unknown result type (might be due to invalid IL or missing references) //IL_03c9: Unknown result type (might be due to invalid IL or missing references) //IL_03d4: Unknown result type (might be due to invalid IL or missing references) //IL_03de: Unknown result type (might be due to invalid IL or missing references) //IL_03e3: Unknown result type (might be due to invalid IL or missing references) //IL_03e9: Unknown result type (might be due to invalid IL or missing references) //IL_03ee: Unknown result type (might be due to invalid IL or missing references) //IL_03f4: Unknown result type (might be due to invalid IL or missing references) //IL_03f9: Unknown result type (might be due to invalid IL or missing references) //IL_0404: Unknown result type (might be due to invalid IL or missing references) //IL_040f: Unknown result type (might be due to invalid IL or missing references) //IL_0419: Unknown result type (might be due to invalid IL or missing references) //IL_041e: Unknown result type (might be due to invalid IL or missing references) //IL_0429: Unknown result type (might be due to invalid IL or missing references) //IL_0433: Unknown result type (might be due to invalid IL or missing references) //IL_0438: Unknown result type (might be due to invalid IL or missing references) //IL_0443: Unknown result type (might be due to invalid IL or missing references) //IL_044d: Unknown result type (might be due to invalid IL or missing references) //IL_0452: Unknown result type (might be due to invalid IL or missing references) //IL_0458: Unknown result type (might be due to invalid IL or missing references) //IL_045d: Unknown result type (might be due to invalid IL or missing references) //IL_0463: Unknown result type (might be due to invalid IL or missing references) //IL_0468: Unknown result type (might be due to invalid IL or missing references) //IL_046e: Unknown result type (might be due to invalid IL or missing references) //IL_0473: Unknown result type (might be due to invalid IL or missing references) //IL_047f: Unknown result type (might be due to invalid IL or missing references) //IL_0c08: Unknown result type (might be due to invalid IL or missing references) //IL_0c13: Unknown result type (might be due to invalid IL or missing references) //IL_0c1d: Unknown result type (might be due to invalid IL or missing references) //IL_0c22: Unknown result type (might be due to invalid IL or missing references) //IL_0c2d: Unknown result type (might be due to invalid IL or missing references) //IL_0c37: Unknown result type (might be due to invalid IL or missing references) //IL_0c3c: Unknown result type (might be due to invalid IL or missing references) //IL_0c42: Unknown result type (might be due to invalid IL or missing references) //IL_0c47: Unknown result type (might be due to invalid IL or missing references) //IL_0c4d: Unknown result type (might be due to invalid IL or missing references) //IL_0c52: Unknown result type (might be due to invalid IL or missing references) //IL_0c5d: Unknown result type (might be due to invalid IL or missing references) //IL_0c68: Unknown result type (might be due to invalid IL or missing references) //IL_0c72: Unknown result type (might be due to invalid IL or missing references) //IL_0c77: Unknown result type (might be due to invalid IL or missing references) //IL_0c82: Unknown result type (might be due to invalid IL or missing references) //IL_0c8c: Unknown result type (might be due to invalid IL or missing references) //IL_0c91: Unknown result type (might be due to invalid IL or missing references) //IL_0c9c: Unknown result type (might be due to invalid IL or missing references) //IL_0ca6: Unknown result type (might be due to invalid IL or missing references) //IL_0cab: Unknown result type (might be due to invalid IL or missing references) //IL_0cb1: Unknown result type (might be due to invalid IL or missing references) //IL_0cb6: Unknown result type (might be due to invalid IL or missing references) //IL_0cbc: Unknown result type (might be due to invalid IL or missing references) //IL_0cc1: Unknown result type (might be due to invalid IL or missing references) //IL_0cc7: Unknown result type (might be due to invalid IL or missing references) //IL_0ccc: Unknown result type (might be due to invalid IL or missing references) //IL_0cd2: Unknown result type (might be due to invalid IL or missing references) //IL_0cd7: Unknown result type (might be due to invalid IL or missing references) //IL_0ce3: Unknown result type (might be due to invalid IL or missing references) //IL_06cf: Unknown result type (might be due to invalid IL or missing references) //IL_06da: Unknown result type (might be due to invalid IL or missing references) //IL_06e4: Unknown result type (might be due to invalid IL or missing references) //IL_06e9: Unknown result type (might be due to invalid IL or missing references) //IL_06f4: Unknown result type (might be due to invalid IL or missing references) //IL_06f9: Unknown result type (might be due to invalid IL or missing references) //IL_06ff: Unknown result type (might be due to invalid IL or missing references) //IL_0704: Unknown result type (might be due to invalid IL or missing references) //IL_070a: Unknown result type (might be due to invalid IL or missing references) //IL_070f: Unknown result type (might be due to invalid IL or missing references) //IL_071a: Unknown result type (might be due to invalid IL or missing references) //IL_0725: Unknown result type (might be due to invalid IL or missing references) //IL_072f: Unknown result type (might be due to invalid IL or missing references) //IL_0734: Unknown result type (might be due to invalid IL or missing references) //IL_073f: Unknown result type (might be due to invalid IL or missing references) //IL_0744: Unknown result type (might be due to invalid IL or missing references) //IL_074f: Unknown result type (might be due to invalid IL or missing references) //IL_0759: Unknown result type (might be due to invalid IL or missing references) //IL_075e: Unknown result type (might be due to invalid IL or missing references) //IL_0764: Unknown result type (might be due to invalid IL or missing references) //IL_0769: Unknown result type (might be due to invalid IL or missing references) //IL_076f: Unknown result type (might be due to invalid IL or missing references) //IL_0774: Unknown result type (might be due to invalid IL or missing references) //IL_077a: Unknown result type (might be due to invalid IL or missing references) //IL_077f: Unknown result type (might be due to invalid IL or missing references) //IL_078b: Unknown result type (might be due to invalid IL or missing references) //IL_08c6: Unknown result type (might be due to invalid IL or missing references) //IL_08d1: Unknown result type (might be due to invalid IL or missing references) //IL_08db: Unknown result type (might be due to invalid IL or missing references) //IL_08e0: Unknown result type (might be due to invalid IL or missing references) //IL_08eb: Unknown result type (might be due to invalid IL or missing references) //IL_08f5: Unknown result type (might be due to invalid IL or missing references) //IL_08fa: Unknown result type (might be due to invalid IL or missing references) //IL_0900: Unknown result type (might be due to invalid IL or missing references) //IL_0905: Unknown result type (might be due to invalid IL or missing references) //IL_090b: Unknown result type (might be due to invalid IL or missing references) //IL_0910: Unknown result type (might be due to invalid IL or missing references) //IL_091b: Unknown result type (might be due to invalid IL or missing references) //IL_0926: Unknown result type (might be due to invalid IL or missing references) //IL_0930: Unknown result type (might be due to invalid IL or missing references) //IL_0935: Unknown result type (might be due to invalid IL or missing references) //IL_0940: Unknown result type (might be due to invalid IL or missing references) //IL_094a: Unknown result type (might be due to invalid IL or missing references) //IL_094f: Unknown result type (might be due to invalid IL or missing references) //IL_095a: Unknown result type (might be due to invalid IL or missing references) //IL_0964: Unknown result type (might be due to invalid IL or missing references) //IL_0969: Unknown result type (might be due to invalid IL or missing references) //IL_096f: Unknown result type (might be due to invalid IL or missing references) //IL_0974: Unknown result type (might be due to invalid IL or missing references) //IL_097a: Unknown result type (might be due to invalid IL or missing references) //IL_097f: Unknown result type (might be due to invalid IL or missing references) //IL_0985: Unknown result type (might be due to invalid IL or missing references) //IL_098a: Unknown result type (might be due to invalid IL or missing references) //IL_0996: Unknown result type (might be due to invalid IL or missing references) //IL_0f3c: Unknown result type (might be due to invalid IL or missing references) //IL_0f47: Unknown result type (might be due to invalid IL or missing references) //IL_0f51: Unknown result type (might be due to invalid IL or missing references) //IL_0f56: Unknown result type (might be due to invalid IL or missing references) //IL_0f61: Unknown result type (might be due to invalid IL or missing references) //IL_0f66: Unknown result type (might be due to invalid IL or missing references) //IL_0f6c: Unknown result type (might be due to invalid IL or missing references) //IL_0f71: Unknown result type (might be due to invalid IL or missing references) //IL_0f77: Unknown result type (might be due to invalid IL or missing references) //IL_0f7c: Unknown result type (might be due to invalid IL or missing references) //IL_0f87: Unknown result type (might be due to invalid IL or missing references) //IL_0f92: Unknown result type (might be due to invalid IL or missing references) //IL_0f9c: Unknown result type (might be due to invalid IL or missing references) //IL_0fa1: Unknown result type (might be due to invalid IL or missing references) //IL_0fac: Unknown result type (might be due to invalid IL or missing references) //IL_0fb6: Unknown result type (might be due to invalid IL or missing references) //IL_0fbb: Unknown result type (might be due to invalid IL or missing references) //IL_0fc1: Unknown result type (might be due to invalid IL or missing references) //IL_0fc6: Unknown result type (might be due to invalid IL or missing references) //IL_0fd1: Unknown result type (might be due to invalid IL or missing references) //IL_0fd6: Unknown result type (might be due to invalid IL or missing references) //IL_0fdc: Unknown result type (might be due to invalid IL or missing references) //IL_0fe1: Unknown result type (might be due to invalid IL or missing references) //IL_0fe7: Unknown result type (might be due to invalid IL or missing references) //IL_0fec: Unknown result type (might be due to invalid IL or missing references) //IL_0ff2: Unknown result type (might be due to invalid IL or missing references) //IL_0ff7: Unknown result type (might be due to invalid IL or missing references) //IL_1003: Unknown result type (might be due to invalid IL or missing references) //IL_0af3: Unknown result type (might be due to invalid IL or missing references) //IL_0afe: Unknown result type (might be due to invalid IL or missing references) //IL_0b08: Unknown result type (might be due to invalid IL or missing references) //IL_0b0d: Unknown result type (might be due to invalid IL or missing references) //IL_0b18: Unknown result type (might be due to invalid IL or missing references) //IL_0b22: Unknown result type (might be due to invalid IL or missing references) //IL_0b27: Unknown result type (might be due to invalid IL or missing references) //IL_0b32: Unknown result type (might be due to invalid IL or missing references) //IL_0b3c: Unknown result type (might be due to invalid IL or missing references) //IL_0b41: Unknown result type (might be due to invalid IL or missing references) //IL_0b47: Unknown result type (might be due to invalid IL or missing references) //IL_0b4c: Unknown result type (might be due to invalid IL or missing references) //IL_0b52: Unknown result type (might be due to invalid IL or missing references) //IL_0b57: Unknown result type (might be due to invalid IL or missing references) //IL_0b5d: Unknown result type (might be due to invalid IL or missing references) //IL_0b62: Unknown result type (might be due to invalid IL or missing references) //IL_0b68: Unknown result type (might be due to invalid IL or missing references) //IL_0b6d: Unknown result type (might be due to invalid IL or missing references) //IL_0b78: Unknown result type (might be due to invalid IL or missing references) //IL_0b83: Unknown result type (might be due to invalid IL or missing references) //IL_0b8d: Unknown result type (might be due to invalid IL or missing references) //IL_0b92: Unknown result type (might be due to invalid IL or missing references) //IL_0b9d: Unknown result type (might be due to invalid IL or missing references) //IL_0ba7: Unknown result type (might be due to invalid IL or missing references) //IL_0bac: Unknown result type (might be due to invalid IL or missing references) //IL_0bb2: Unknown result type (might be due to invalid IL or missing references) //IL_0bb7: Unknown result type (might be due to invalid IL or missing references) //IL_0bbd: Unknown result type (might be due to invalid IL or missing references) //IL_0bc2: Unknown result type (might be due to invalid IL or missing references) //IL_0bce: Unknown result type (might be due to invalid IL or missing references) //IL_04b9: Unknown result type (might be due to invalid IL or missing references) //IL_04c4: Unknown result type (might be due to invalid IL or missing references) //IL_04ce: Unknown result type (might be due to invalid IL or missing references) //IL_04d3: Unknown result type (might be due to invalid IL or missing references) //IL_04de: Unknown result type (might be due to invalid IL or missing references) //IL_04e8: Unknown result type (might be due to invalid IL or missing references) //IL_04ed: Unknown result type (might be due to invalid IL or missing references) //IL_04f8: Unknown result type (might be due to invalid IL or missing references) //IL_0502: Unknown result type (might be due to invalid IL or missing references) //IL_0507: Unknown result type (might be due to invalid IL or missing references) //IL_050d: Unknown result type (might be due to invalid IL or missing references) //IL_0512: Unknown result type (might be due to invalid IL or missing references) //IL_0518: Unknown result type (might be due to invalid IL or missing references) //IL_051d: Unknown result type (might be due to invalid IL or missing references) //IL_0523: Unknown result type (might be due to invalid IL or missing references) //IL_0528: Unknown result type (might be due to invalid IL or missing references) //IL_052e: Unknown result type (might be due to invalid IL or missing references) //IL_0533: Unknown result type (might be due to invalid IL or missing references) //IL_053e: Unknown result type (might be due to invalid IL or missing references) //IL_0549: Unknown result type (might be due to invalid IL or missing references) //IL_0553: Unknown result type (might be due to invalid IL or missing references) //IL_0558: Unknown result type (might be due to invalid IL or missing references) //IL_0563: Unknown result type (might be due to invalid IL or missing references) //IL_056d: Unknown result type (might be due to invalid IL or missing references) //IL_0572: Unknown result type (might be due to invalid IL or missing references) //IL_0578: Unknown result type (might be due to invalid IL or missing references) //IL_057d: Unknown result type (might be due to invalid IL or missing references) //IL_0583: Unknown result type (might be due to invalid IL or missing references) //IL_0588: Unknown result type (might be due to invalid IL or missing references) //IL_0594: Unknown result type (might be due to invalid IL or missing references) //IL_134c: Unknown result type (might be due to invalid IL or missing references) //IL_1357: Unknown result type (might be due to invalid IL or missing references) //IL_1361: Unknown result type (might be due to invalid IL or missing references) //IL_1366: Unknown result type (might be due to invalid IL or missing references) //IL_1371: Unknown result type (might be due to invalid IL or missing references) //IL_137b: Unknown result type (might be due to invalid IL or missing references) //IL_1380: Unknown result type (might be due to invalid IL or missing references) //IL_1386: Unknown result type (might be due to invalid IL or missing references) //IL_138b: Unknown result type (might be due to invalid IL or missing references) //IL_1396: Unknown result type (might be due to invalid IL or missing references) //IL_13a1: Unknown result type (might be due to invalid IL or missing references) //IL_13ab: Unknown result type (might be due to invalid IL or missing references) //IL_13b0: Unknown result type (might be due to invalid IL or missing references) //IL_13bb: Unknown result type (might be due to invalid IL or missing references) //IL_13c5: Unknown result type (might be due to invalid IL or missing references) //IL_13ca: Unknown result type (might be due to invalid IL or missing references) //IL_13d0: Unknown result type (might be due to invalid IL or missing references) //IL_13d5: Unknown result type (might be due to invalid IL or missing references) //IL_13e1: Unknown result type (might be due to invalid IL or missing references) //IL_0d1d: Unknown result type (might be due to invalid IL or missing references) //IL_0d28: Unknown result type (might be due to invalid IL or missing references) //IL_0d32: Unknown result type (might be due to invalid IL or missing references) //IL_0d37: Unknown result type (might be due to invalid IL or missing references) //IL_0d42: Unknown result type (might be due to invalid IL or missing references) //IL_0d4c: Unknown result type (might be due to invalid IL or missing references) //IL_0d51: Unknown result type (might be due to invalid IL or missing references) //IL_0d57: Unknown result type (might be due to invalid IL or missing references) //IL_0d5c: Unknown result type (might be due to invalid IL or missing references) //IL_0d62: Unknown result type (might be due to invalid IL or missing references) //IL_0d67: Unknown result type (might be due to invalid IL or missing references) //IL_0d72: Unknown result type (might be due to invalid IL or missing references) //IL_0d7d: Unknown result type (might be due to invalid IL or missing references) //IL_0d87: Unknown result type (might be due to invalid IL or missing references) //IL_0d8c: Unknown result type (might be due to invalid IL or missing references) //IL_0d97: Unknown result type (might be due to invalid IL or missing references) //IL_0da1: Unknown result type (might be due to invalid IL or missing references) //IL_0da6: Unknown result type (might be due to invalid IL or missing references) //IL_0db1: Unknown result type (might be due to invalid IL or missing references) //IL_0dbb: Unknown result type (might be due to invalid IL or missing references) //IL_0dc0: Unknown result type (might be due to invalid IL or missing references) //IL_0dc6: Unknown result type (might be due to invalid IL or missing references) //IL_0dcb: Unknown result type (might be due to invalid IL or missing references) //IL_0dd1: Unknown result type (might be due to invalid IL or missing references) //IL_0dd6: Unknown result type (might be due to invalid IL or missing references) //IL_0ddc: Unknown result type (might be due to invalid IL or missing references) //IL_0de1: Unknown result type (might be due to invalid IL or missing references) //IL_0ded: Unknown result type (might be due to invalid IL or missing references) //IL_07c5: Unknown result type (might be due to invalid IL or missing references) //IL_07d0: Unknown result type (might be due to invalid IL or missing references) //IL_07da: Unknown result type (might be due to invalid IL or missing references) //IL_07df: Unknown result type (might be due to invalid IL or missing references) //IL_07ea: Unknown result type (might be due to invalid IL or missing references) //IL_07f4: Unknown result type (might be due to invalid IL or missing references) //IL_07f9: Unknown result type (might be due to invalid IL or missing references) //IL_07ff: Unknown result type (might be due to invalid IL or missing references) //IL_0804: Unknown result type (might be due to invalid IL or missing references) //IL_080f: Unknown result type (might be due to invalid IL or missing references) //IL_0814: Unknown result type (might be due to invalid IL or missing references) //IL_081a: Unknown result type (might be due to invalid IL or missing references) //IL_081f: Unknown result type (might be due to invalid IL or missing references) //IL_0825: Unknown result type (might be due to invalid IL or missing references) //IL_082a: Unknown result type (might be due to invalid IL or missing references) //IL_0830: Unknown result type (might be due to invalid IL or missing references) //IL_0835: Unknown result type (might be due to invalid IL or missing references) //IL_0840: Unknown result type (might be due to invalid IL or missing references) //IL_084b: Unknown result type (might be due to invalid IL or missing references) //IL_0855: Unknown result type (might be due to invalid IL or missing references) //IL_085a: Unknown result type (might be due to invalid IL or missing references) //IL_0865: Unknown result type (might be due to invalid IL or missing references) //IL_086a: Unknown result type (might be due to invalid IL or missing references) //IL_0870: Unknown result type (might be due to invalid IL or missing references) //IL_0875: Unknown result type (might be due to invalid IL or missing references) //IL_087b: Unknown result type (might be due to invalid IL or missing references) //IL_0880: Unknown result type (might be due to invalid IL or missing references) //IL_088c: Unknown result type (might be due to invalid IL or missing references) //IL_1452: Unknown result type (might be due to invalid IL or missing references) //IL_145d: Unknown result type (might be due to invalid IL or missing references) //IL_1467: Unknown result type (might be due to invalid IL or missing references) //IL_146c: Unknown result type (might be due to invalid IL or missing references) //IL_1477: Unknown result type (might be due to invalid IL or missing references) //IL_1481: Unknown result type (might be due to invalid IL or missing references) //IL_1486: Unknown result type (might be due to invalid IL or missing references) //IL_148c: Unknown result type (might be due to invalid IL or missing references) //IL_1491: Unknown result type (might be due to invalid IL or missing references) //IL_149c: Unknown result type (might be due to invalid IL or missing references) //IL_14a7: Unknown result type (might be due to invalid IL or missing references) //IL_14b1: Unknown result type (might be due to invalid IL or missing references) //IL_14b6: Unknown result type (might be due to invalid IL or missing references) //IL_14c1: Unknown result type (might be due to invalid IL or missing references) //IL_14cb: Unknown result type (might be due to invalid IL or missing references) //IL_14d0: Unknown result type (might be due to invalid IL or missing references) //IL_14d6: Unknown result type (might be due to invalid IL or missing references) //IL_14db: Unknown result type (might be due to invalid IL or missing references) //IL_14e7: Unknown result type (might be due to invalid IL or missing references) //IL_103d: Unknown result type (might be due to invalid IL or missing references) //IL_1048: Unknown result type (might be due to invalid IL or missing references) //IL_1052: Unknown result type (might be due to invalid IL or missing references) //IL_1057: Unknown result type (might be due to invalid IL or missing references) //IL_1062: Unknown result type (might be due to invalid IL or missing references) //IL_1067: Unknown result type (might be due to invalid IL or missing references) //IL_106d: Unknown result type (might be due to invalid IL or missing references) //IL_1072: Unknown result type (might be due to invalid IL or missing references) //IL_1078: Unknown result type (might be due to invalid IL or missing references) //IL_107d: Unknown result type (might be due to invalid IL or missing references) //IL_1088: Unknown result type (might be due to invalid IL or missing references) //IL_1093: Unknown result type (might be due to invalid IL or missing references) //IL_109d: Unknown result type (might be due to invalid IL or missing references) //IL_10a2: Unknown result type (might be due to invalid IL or missing references) //IL_10ad: Unknown result type (might be due to invalid IL or missing references) //IL_10b2: Unknown result type (might be due to invalid IL or missing references) //IL_10bd: Unknown result type (might be due to invalid IL or missing references) //IL_10c7: Unknown result type (might be due to invalid IL or missing references) //IL_10cc: Unknown result type (might be due to invalid IL or missing references) //IL_10d2: Unknown result type (might be due to invalid IL or missing references) //IL_10d7: Unknown result type (might be due to invalid IL or missing references) //IL_10dd: Unknown result type (might be due to invalid IL or missing references) //IL_10e2: Unknown result type (might be due to invalid IL or missing references) //IL_10e8: Unknown result type (might be due to invalid IL or missing references) //IL_10ed: Unknown result type (might be due to invalid IL or missing references) //IL_10f9: Unknown result type (might be due to invalid IL or missing references) //IL_1234: Unknown result type (might be due to invalid IL or missing references) //IL_123f: Unknown result type (might be due to invalid IL or missing references) //IL_1249: Unknown result type (might be due to invalid IL or missing references) //IL_124e: Unknown result type (might be due to invalid IL or missing references) //IL_1259: Unknown result type (might be due to invalid IL or missing references) //IL_1263: Unknown result type (might be due to invalid IL or missing references) //IL_1268: Unknown result type (might be due to invalid IL or missing references) //IL_126e: Unknown result type (might be due to invalid IL or missing references) //IL_1273: Unknown result type (might be due to invalid IL or missing references) //IL_1279: Unknown result type (might be due to invalid IL or missing references) //IL_127e: Unknown result type (might be due to invalid IL or missing references) //IL_1289: Unknown result type (might be due to invalid IL or missing references) //IL_1294: Unknown result type (might be due to invalid IL or missing references) //IL_129e: Unknown result type (might be due to invalid IL or missing references) //IL_12a3: Unknown result type (might be due to invalid IL or missing references) //IL_12ae: Unknown result type (might be due to invalid IL or missing references) //IL_12b8: Unknown result type (might be due to invalid IL or missing references) //IL_12bd: Unknown result type (might be due to invalid IL or missing references) //IL_12c8: Unknown result type (might be due to invalid IL or missing references) //IL_12d2: Unknown result type (might be due to invalid IL or missing references) //IL_12d7: Unknown result type (might be due to invalid IL or missing references) //IL_12dd: Unknown result type (might be due to invalid IL or missing references) //IL_12e2: Unknown result type (might be due to invalid IL or missing references) //IL_12e8: Unknown result type (might be due to invalid IL or missing references) //IL_12ed: Unknown result type (might be due to invalid IL or missing references) //IL_12f3: Unknown result type (might be due to invalid IL or missing references) //IL_12f8: Unknown result type (might be due to invalid IL or missing references) //IL_1304: Unknown result type (might be due to invalid IL or missing references) //IL_1558: Unknown result type (might be due to invalid IL or missing references) //IL_1563: Unknown result type (might be due to invalid IL or missing references) //IL_156d: Unknown result type (might be due to invalid IL or missing references) //IL_1572: Unknown result type (might be due to invalid IL or missing references) //IL_157d: Unknown result type (might be due to invalid IL or missing references) //IL_1587: Unknown result type (might be due to invalid IL or missing references) //IL_158c: Unknown result type (might be due to invalid IL or missing references) //IL_1592: Unknown result type (might be due to invalid IL or missing references) //IL_1597: Unknown result type (might be due to invalid IL or missing references) //IL_15a2: Unknown result type (might be due to invalid IL or missing references) //IL_15ad: Unknown result type (might be due to invalid IL or missing references) //IL_15b7: Unknown result type (might be due to invalid IL or missing references) //IL_15bc: Unknown result type (might be due to invalid IL or missing references) //IL_15c7: Unknown result type (might be due to invalid IL or missing references) //IL_15d1: Unknown result type (might be due to invalid IL or missing references) //IL_15d6: Unknown result type (might be due to invalid IL or missing references) //IL_15dc: Unknown result type (might be due to invalid IL or missing references) //IL_15e1: Unknown result type (might be due to invalid IL or missing references) //IL_15ed: Unknown result type (might be due to invalid IL or missing references) //IL_141b: Unknown result type (might be due to invalid IL or missing references) //IL_1420: Unknown result type (might be due to invalid IL or missing references) //IL_0e27: Unknown result type (might be due to invalid IL or missing references) //IL_0e32: Unknown result type (might be due to invalid IL or missing references) //IL_0e3c: Unknown result type (might be due to invalid IL or missing references) //IL_0e41: Unknown result type (might be due to invalid IL or missing references) //IL_0e4c: Unknown result type (might be due to invalid IL or missing references) //IL_0e56: Unknown result type (might be due to invalid IL or missing references) //IL_0e5b: Unknown result type (might be due to invalid IL or missing references) //IL_0e66: Unknown result type (might be due to invalid IL or missing references) //IL_0e70: Unknown result type (might be due to invalid IL or missing references) //IL_0e75: Unknown result type (might be due to invalid IL or missing references) //IL_0e7b: Unknown result type (might be due to invalid IL or missing references) //IL_0e80: Unknown result type (might be due to invalid IL or missing references) //IL_0e86: Unknown result type (might be due to invalid IL or missing references) //IL_0e8b: Unknown result type (might be due to invalid IL or missing references) //IL_0e91: Unknown result type (might be due to invalid IL or missing references) //IL_0e96: Unknown result type (might be due to invalid IL or missing references) //IL_0e9c: Unknown result type (might be due to invalid IL or missing references) //IL_0ea1: Unknown result type (might be due to invalid IL or missing references) //IL_0eac: Unknown result type (might be due to invalid IL or missing references) //IL_0eb7: Unknown result type (might be due to invalid IL or missing references) //IL_0ec1: Unknown result type (might be due to invalid IL or missing references) //IL_0ec6: Unknown result type (might be due to invalid IL or missing references) //IL_0ed1: Unknown result type (might be due to invalid IL or missing references) //IL_0edb: Unknown result type (might be due to invalid IL or missing references) //IL_0ee0: Unknown result type (might be due to invalid IL or missing references) //IL_0ee6: Unknown result type (might be due to invalid IL or missing references) //IL_0eeb: Unknown result type (might be due to invalid IL or missing references) //IL_0ef1: Unknown result type (might be due to invalid IL or missing references) //IL_0ef6: Unknown result type (might be due to invalid IL or missing references) //IL_0f02: Unknown result type (might be due to invalid IL or missing references) //IL_165e: Unknown result type (might be due to invalid IL or missing references) //IL_1669: Unknown result type (might be due to invalid IL or missing references) //IL_1673: Unknown result type (might be due to invalid IL or missing references) //IL_1678: Unknown result type (might be due to invalid IL or missing references) //IL_1683: Unknown result type (might be due to invalid IL or missing references) //IL_168d: Unknown result type (might be due to invalid IL or missing references) //IL_1692: Unknown result type (might be due to invalid IL or missing references) //IL_1698: Unknown result type (might be due to invalid IL or missing references) //IL_169d: Unknown result type (might be due to invalid IL or missing references) //IL_16a8: Unknown result type (might be due to invalid IL or missing references) //IL_16b3: Unknown result type (might be due to invalid IL or missing references) //IL_16bd: Unknown result type (might be due to invalid IL or missing references) //IL_16c2: Unknown result type (might be due to invalid IL or missing references) //IL_16cd: Unknown result type (might be due to invalid IL or missing references) //IL_16d7: Unknown result type (might be due to invalid IL or missing references) //IL_16dc: Unknown result type (might be due to invalid IL or missing references) //IL_16e2: Unknown result type (might be due to invalid IL or missing references) //IL_16e7: Unknown result type (might be due to invalid IL or missing references) //IL_16f3: Unknown result type (might be due to invalid IL or missing references) //IL_1521: Unknown result type (might be due to invalid IL or missing references) //IL_1526: Unknown result type (might be due to invalid IL or missing references) //IL_1972: Unknown result type (might be due to invalid IL or missing references) //IL_197d: Unknown result type (might be due to invalid IL or missing references) //IL_1987: Unknown result type (might be due to invalid IL or missing references) //IL_198c: Unknown result type (might be due to invalid IL or missing references) //IL_1991: Unknown result type (might be due to invalid IL or missing references) //IL_19a0: Unknown result type (might be due to invalid IL or missing references) //IL_19a5: Unknown result type (might be due to invalid IL or missing references) //IL_19b4: Unknown result type (might be due to invalid IL or missing references) //IL_19b9: Unknown result type (might be due to invalid IL or missing references) //IL_19cf: Unknown result type (might be due to invalid IL or missing references) //IL_19da: Unknown result type (might be due to invalid IL or missing references) //IL_19e4: Unknown result type (might be due to invalid IL or missing references) //IL_19e9: Unknown result type (might be due to invalid IL or missing references) //IL_19ee: Unknown result type (might be due to invalid IL or missing references) //IL_19f7: Unknown result type (might be due to invalid IL or missing references) //IL_1a02: Unknown result type (might be due to invalid IL or missing references) //IL_1a0d: Unknown result type (might be due to invalid IL or missing references) //IL_1a17: Unknown result type (might be due to invalid IL or missing references) //IL_1a1c: Unknown result type (might be due to invalid IL or missing references) //IL_1a21: Unknown result type (might be due to invalid IL or missing references) //IL_1a30: Unknown result type (might be due to invalid IL or missing references) //IL_1a35: Unknown result type (might be due to invalid IL or missing references) //IL_1a44: Unknown result type (might be due to invalid IL or missing references) //IL_1a49: Unknown result type (might be due to invalid IL or missing references) //IL_1a6b: Unknown result type (might be due to invalid IL or missing references) //IL_1a76: Unknown result type (might be due to invalid IL or missing references) //IL_1a80: Unknown result type (might be due to invalid IL or missing references) //IL_1a85: Unknown result type (might be due to invalid IL or missing references) //IL_1a8a: Unknown result type (might be due to invalid IL or missing references) //IL_1a93: Unknown result type (might be due to invalid IL or missing references) //IL_1a9f: Unknown result type (might be due to invalid IL or missing references) //IL_1133: Unknown result type (might be due to invalid IL or missing references) //IL_113e: Unknown result type (might be due to invalid IL or missing references) //IL_1148: Unknown result type (might be due to invalid IL or missing references) //IL_114d: Unknown result type (might be due to invalid IL or missing references) //IL_1158: Unknown result type (might be due to invalid IL or missing references) //IL_1162: Unknown result type (might be due to invalid IL or missing references) //IL_1167: Unknown result type (might be due to invalid IL or missing references) //IL_116d: Unknown result type (might be due to invalid IL or missing references) //IL_1172: Unknown result type (might be due to invalid IL or missing references) //IL_117d: Unknown result type (might be due to invalid IL or missing references) //IL_1182: Unknown result type (might be due to invalid IL or missing references) //IL_1188: Unknown result type (might be due to invalid IL or missing references) //IL_118d: Unknown result type (might be due to invalid IL or missing references) //IL_1193: Unknown result type (might be due to invalid IL or missing references) //IL_1198: Unknown result type (might be due to invalid IL or missing references) //IL_119e: Unknown result type (might be due to invalid IL or missing references) //IL_11a3: Unknown result type (might be due to invalid IL or missing references) //IL_11ae: Unknown result type (might be due to invalid IL or missing references) //IL_11b9: Unknown result type (might be due to invalid IL or missing references) //IL_11c3: Unknown result type (might be due to invalid IL or missing references) //IL_11c8: Unknown result type (might be due to invalid IL or missing references) //IL_11d3: Unknown result type (might be due to invalid IL or missing references) //IL_11d8: Unknown result type (might be due to invalid IL or missing references) //IL_11de: Unknown result type (might be due to invalid IL or missing references) //IL_11e3: Unknown result type (might be due to invalid IL or missing references) //IL_11e9: Unknown result type (might be due to invalid IL or missing references) //IL_11ee: Unknown result type (might be due to invalid IL or missing references) //IL_11fa: Unknown result type (might be due to invalid IL or missing references) //IL_1764: Unknown result type (might be due to invalid IL or missing references) //IL_176f: Unknown result type (might be due to invalid IL or missing references) //IL_1779: Unknown result type (might be due to invalid IL or missing references) //IL_177e: Unknown result type (might be due to invalid IL or missing references) //IL_1789: Unknown result type (might be due to invalid IL or missing references) //IL_1793: Unknown result type (might be due to invalid IL or missing references) //IL_1798: Unknown result type (might be due to invalid IL or missing references) //IL_179e: Unknown result type (might be due to invalid IL or missing references) //IL_17a3: Unknown result type (might be due to invalid IL or missing references) //IL_17ae: Unknown result type (might be due to invalid IL or missing references) //IL_17b9: Unknown result type (might be due to invalid IL or missing references) //IL_17c3: Unknown result type (might be due to invalid IL or missing references) //IL_17c8: Unknown result type (might be due to invalid IL or missing references) //IL_17d3: Unknown result type (might be due to invalid IL or missing references) //IL_17dd: Unknown result type (might be due to invalid IL or missing references) //IL_17e2: Unknown result type (might be due to invalid IL or missing references) //IL_17e8: Unknown result type (might be due to invalid IL or missing references) //IL_17ed: Unknown result type (might be due to invalid IL or missing references) //IL_17f9: Unknown result type (might be due to invalid IL or missing references) //IL_1627: Unknown result type (might be due to invalid IL or missing references) //IL_162c: Unknown result type (might be due to invalid IL or missing references) //IL_51b0: Unknown result type (might be due to invalid IL or missing references) //IL_51b5: Unknown result type (might be due to invalid IL or missing references) //IL_1b10: Unknown result type (might be due to invalid IL or missing references) //IL_1b1b: Unknown result type (might be due to invalid IL or missing references) //IL_1b25: Unknown result type (might be due to invalid IL or missing references) //IL_1b2a: Unknown result type (might be due to invalid IL or missing references) //IL_1b35: Unknown result type (might be due to invalid IL or missing references) //IL_1b40: Unknown result type (might be due to invalid IL or missing references) //IL_1b4a: Unknown result type (might be due to invalid IL or missing references) //IL_1b4f: Unknown result type (might be due to invalid IL or missing references) //IL_1b5a: Unknown result type (might be due to invalid IL or missing references) //IL_1b64: Unknown result type (might be due to invalid IL or missing references) //IL_1b69: Unknown result type (might be due to invalid IL or missing references) //IL_1b6f: Unknown result type (might be due to invalid IL or missing references) //IL_1b74: Unknown result type (might be due to invalid IL or missing references) //IL_1b80: Unknown result type (might be due to invalid IL or missing references) //IL_186b: Unknown result type (might be due to invalid IL or missing references) //IL_1876: Unknown result type (might be due to invalid IL or missing references) //IL_1880: Unknown result type (might be due to invalid IL or missing references) //IL_1885: Unknown result type (might be due to invalid IL or missing references) //IL_1890: Unknown result type (might be due to invalid IL or missing references) //IL_189a: Unknown result type (might be due to invalid IL or missing references) //IL_189f: Unknown result type (might be due to invalid IL or missing references) //IL_18a5: Unknown result type (might be due to invalid IL or missing references) //IL_18aa: Unknown result type (might be due to invalid IL or missing references) //IL_18b5: Unknown result type (might be due to invalid IL or missing references) //IL_18c0: Unknown result type (might be due to invalid IL or missing references) //IL_18ca: Unknown result type (might be due to invalid IL or missing references) //IL_18cf: Unknown result type (might be due to invalid IL or missing references) //IL_18da: Unknown result type (might be due to invalid IL or missing references) //IL_18e4: Unknown result type (might be due to invalid IL or missing references) //IL_18e9: Unknown result type (might be due to invalid IL or missing references) //IL_18ef: Unknown result type (might be due to invalid IL or missing references) //IL_18f4: Unknown result type (might be due to invalid IL or missing references) //IL_1900: Unknown result type (might be due to invalid IL or missing references) //IL_172d: Unknown result type (might be due to invalid IL or missing references) //IL_1732: Unknown result type (might be due to invalid IL or missing references) //IL_58a7: Unknown result type (might be due to invalid IL or missing references) //IL_58ac: Unknown result type (might be due to invalid IL or missing references) //IL_58b2: Unknown result type (might be due to invalid IL or missing references) //IL_58b7: Unknown result type (might be due to invalid IL or missing references) //IL_58cf: Unknown result type (might be due to invalid IL or missing references) //IL_58d4: Unknown result type (might be due to invalid IL or missing references) //IL_1833: Unknown result type (might be due to invalid IL or missing references) //IL_1838: Unknown result type (might be due to invalid IL or missing references) //IL_193a: Unknown result type (might be due to invalid IL or missing references) //IL_193f: Unknown result type (might be due to invalid IL or missing references) //IL_554e: Unknown result type (might be due to invalid IL or missing references) //IL_556f: Unknown result type (might be due to invalid IL or missing references) //IL_5224: Unknown result type (might be due to invalid IL or missing references) //IL_5245: Unknown result type (might be due to invalid IL or missing references) //IL_1bb1: Unknown result type (might be due to invalid IL or missing references) //IL_1bbc: Unknown result type (might be due to invalid IL or missing references) //IL_1bc6: Unknown result type (might be due to invalid IL or missing references) //IL_1bcb: Unknown result type (might be due to invalid IL or missing references) //IL_1bd6: Unknown result type (might be due to invalid IL or missing references) //IL_1be0: Unknown result type (might be due to invalid IL or missing references) //IL_1be5: Unknown result type (might be due to invalid IL or missing references) //IL_1beb: Unknown result type (might be due to invalid IL or missing references) //IL_1bf0: Unknown result type (might be due to invalid IL or missing references) //IL_1bfb: Unknown result type (might be due to invalid IL or missing references) //IL_1c06: Unknown result type (might be due to invalid IL or missing references) //IL_1c10: Unknown result type (might be due to invalid IL or missing references) //IL_1c15: Unknown result type (might be due to invalid IL or missing references) //IL_1c20: Unknown result type (might be due to invalid IL or missing references) //IL_1c2a: Unknown result type (might be due to invalid IL or missing references) //IL_1c2f: Unknown result type (might be due to invalid IL or missing references) //IL_1c35: Unknown result type (might be due to invalid IL or missing references) //IL_1c3a: Unknown result type (might be due to invalid IL or missing references) //IL_1c40: Unknown result type (might be due to invalid IL or missing references) //IL_1c45: Unknown result type (might be due to invalid IL or missing references) //IL_1c51: Unknown result type (might be due to invalid IL or missing references) //IL_5594: Unknown result type (might be due to invalid IL or missing references) //IL_55bb: Unknown result type (might be due to invalid IL or missing references) //IL_526a: Unknown result type (might be due to invalid IL or missing references) //IL_5291: Unknown result type (might be due to invalid IL or missing references) //IL_1c6b: Unknown result type (might be due to invalid IL or missing references) //IL_1c76: Unknown result type (might be due to invalid IL or missing references) //IL_1c80: Unknown result type (might be due to invalid IL or missing references) //IL_1c85: Unknown result type (might be due to invalid IL or missing references) //IL_1c90: Unknown result type (might be due to invalid IL or missing references) //IL_1c9a: Unknown result type (might be due to invalid IL or missing references) //IL_1c9f: Unknown result type (might be due to invalid IL or missing references) //IL_1ca5: Unknown result type (might be due to invalid IL or missing references) //IL_1caa: Unknown result type (might be due to invalid IL or missing references) //IL_1cb5: Unknown result type (might be due to invalid IL or missing references) //IL_1cc0: Unknown result type (might be due to invalid IL or missing references) //IL_1cca: Unknown result type (might be due to invalid IL or missing references) //IL_1ccf: Unknown result type (might be due to invalid IL or missing references) //IL_1cda: Unknown result type (might be due to invalid IL or missing references) //IL_1ce4: Unknown result type (might be due to invalid IL or missing references) //IL_1ce9: Unknown result type (might be due to invalid IL or missing references) //IL_1cef: Unknown result type (might be due to invalid IL or missing references) //IL_1cf4: Unknown result type (might be due to invalid IL or missing references) //IL_1cfa: Unknown result type (might be due to invalid IL or missing references) //IL_1cff: Unknown result type (might be due to invalid IL or missing references) //IL_1d0b: Unknown result type (might be due to invalid IL or missing references) //IL_594d: Unknown result type (might be due to invalid IL or missing references) //IL_5952: Unknown result type (might be due to invalid IL or missing references) //IL_595e: Unknown result type (might be due to invalid IL or missing references) //IL_5927: Unknown result type (might be due to invalid IL or missing references) //IL_592c: Unknown result type (might be due to invalid IL or missing references) //IL_5940: Unknown result type (might be due to invalid IL or missing references) //IL_55e0: Unknown result type (might be due to invalid IL or missing references) //IL_55e6: Unknown result type (might be due to invalid IL or missing references) //IL_52b6: Unknown result type (might be due to invalid IL or missing references) //IL_52bc: Unknown result type (might be due to invalid IL or missing references) //IL_1d26: Unknown result type (might be due to invalid IL or missing references) //IL_1d31: Unknown result type (might be due to invalid IL or missing references) //IL_1d3b: Unknown result type (might be due to invalid IL or missing references) //IL_1d40: Unknown result type (might be due to invalid IL or missing references) //IL_1d4b: Unknown result type (might be due to invalid IL or missing references) //IL_1d55: Unknown result type (might be due to invalid IL or missing references) //IL_1d5a: Unknown result type (might be due to invalid IL or missing references) //IL_1d60: Unknown result type (might be due to invalid IL or missing references) //IL_1d65: Unknown result type (might be due to invalid IL or missing references) //IL_1d6b: Unknown result type (might be due to invalid IL or missing references) //IL_1d70: Unknown result type (might be due to invalid IL or missing references) //IL_1d7b: Unknown result type (might be due to invalid IL or missing references) //IL_1d86: Unknown result type (might be due to invalid IL or missing references) //IL_1d90: Unknown result type (might be due to invalid IL or missing references) //IL_1d95: Unknown result type (might be due to invalid IL or missing references) //IL_1da0: Unknown result type (might be due to invalid IL or missing references) //IL_1daa: Unknown result type (might be due to invalid IL or missing references) //IL_1daf: Unknown result type (might be due to invalid IL or missing references) //IL_1dba: Unknown result type (might be due to invalid IL or missing references) //IL_1dc4: Unknown result type (might be due to invalid IL or missing references) //IL_1dc9: Unknown result type (might be due to invalid IL or missing references) //IL_1dcf: Unknown result type (might be due to invalid IL or missing references) //IL_1dd4: Unknown result type (might be due to invalid IL or missing references) //IL_1dda: Unknown result type (might be due to invalid IL or missing references) //IL_1ddf: Unknown result type (might be due to invalid IL or missing references) //IL_1de5: Unknown result type (might be due to invalid IL or missing references) //IL_1dea: Unknown result type (might be due to invalid IL or missing references) //IL_1df0: Unknown result type (might be due to invalid IL or missing references) //IL_1df5: Unknown result type (might be due to invalid IL or missing references) //IL_1e01: Unknown result type (might be due to invalid IL or missing references) //IL_1f50: Unknown result type (might be due to invalid IL or missing references) //IL_1f5b: Unknown result type (might be due to invalid IL or missing references) //IL_1f65: Unknown result type (might be due to invalid IL or missing references) //IL_1f6a: Unknown result type (might be due to invalid IL or missing references) //IL_1f75: Unknown result type (might be due to invalid IL or missing references) //IL_1f7f: Unknown result type (might be due to invalid IL or missing references) //IL_1f84: Unknown result type (might be due to invalid IL or missing references) //IL_1f8a: Unknown result type (might be due to invalid IL or missing references) //IL_1f8f: Unknown result type (might be due to invalid IL or missing references) //IL_1f95: Unknown result type (might be due to invalid IL or missing references) //IL_1f9a: Unknown result type (might be due to invalid IL or missing references) //IL_1fa5: Unknown result type (might be due to invalid IL or missing references) //IL_1fb0: Unknown result type (might be due to invalid IL or missing references) //IL_1fba: Unknown result type (might be due to invalid IL or missing references) //IL_1fbf: Unknown result type (might be due to invalid IL or missing references) //IL_1fca: Unknown result type (might be due to invalid IL or missing references) //IL_1fd4: Unknown result type (might be due to invalid IL or missing references) //IL_1fd9: Unknown result type (might be due to invalid IL or missing references) //IL_1fe4: Unknown result type (might be due to invalid IL or missing references) //IL_1fee: Unknown result type (might be due to invalid IL or missing references) //IL_1ff3: Unknown result type (might be due to invalid IL or missing references) //IL_1ff9: Unknown result type (might be due to invalid IL or missing references) //IL_1ffe: Unknown result type (might be due to invalid IL or missing references) //IL_2004: Unknown result type (might be due to invalid IL or missing references) //IL_2009: Unknown result type (might be due to invalid IL or missing references) //IL_200f: Unknown result type (might be due to invalid IL or missing references) //IL_2014: Unknown result type (might be due to invalid IL or missing references) //IL_201a: Unknown result type (might be due to invalid IL or missing references) //IL_201f: Unknown result type (might be due to invalid IL or missing references) //IL_202b: Unknown result type (might be due to invalid IL or missing references) //IL_2284: Unknown result type (might be due to invalid IL or missing references) //IL_228f: Unknown result type (might be due to invalid IL or missing references) //IL_2299: Unknown result type (might be due to invalid IL or missing references) //IL_229e: Unknown result type (might be due to invalid IL or missing references) //IL_22a9: Unknown result type (might be due to invalid IL or missing references) //IL_22ae: Unknown result type (might be due to invalid IL or missing references) //IL_22b4: Unknown result type (might be due to invalid IL or missing references) //IL_22b9: Unknown result type (might be due to invalid IL or missing references) //IL_22bf: Unknown result type (might be due to invalid IL or missing references) //IL_22c4: Unknown result type (might be due to invalid IL or missing references) //IL_22cf: Unknown result type (might be due to invalid IL or missing references) //IL_22da: Unknown result type (might be due to invalid IL or missing references) //IL_22e4: Unknown result type (might be due to invalid IL or missing references) //IL_22e9: Unknown result type (might be due to invalid IL or missing references) //IL_22f4: Unknown result type (might be due to invalid IL or missing references) //IL_22fe: Unknown result type (might be due to invalid IL or missing references) //IL_2303: Unknown result type (might be due to invalid IL or missing references) //IL_2309: Unknown result type (might be due to invalid IL or missing references) //IL_230e: Unknown result type (might be due to invalid IL or missing references) //IL_2319: Unknown result type (might be due to invalid IL or missing references) //IL_231e: Unknown result type (might be due to invalid IL or missing references) //IL_2324: Unknown result type (might be due to invalid IL or missing references) //IL_2329: Unknown result type (might be due to invalid IL or missing references) //IL_232f: Unknown result type (might be due to invalid IL or missing references) //IL_2334: Unknown result type (might be due to invalid IL or missing references) //IL_233a: Unknown result type (might be due to invalid IL or missing references) //IL_233f: Unknown result type (might be due to invalid IL or missing references) //IL_234b: Unknown result type (might be due to invalid IL or missing references) //IL_1e3b: Unknown result type (might be due to invalid IL or missing references) //IL_1e46: Unknown result type (might be due to invalid IL or missing references) //IL_1e50: Unknown result type (might be due to invalid IL or missing references) //IL_1e55: Unknown result type (might be due to invalid IL or missing references) //IL_1e60: Unknown result type (might be due to invalid IL or missing references) //IL_1e6a: Unknown result type (might be due to invalid IL or missing references) //IL_1e6f: Unknown result type (might be due to invalid IL or missing references) //IL_1e7a: Unknown result type (might be due to invalid IL or missing references) //IL_1e84: Unknown result type (might be due to invalid IL or missing references) //IL_1e89: Unknown result type (might be due to invalid IL or missing references) //IL_1e8f: Unknown result type (might be due to invalid IL or missing references) //IL_1e94: Unknown result type (might be due to invalid IL or missing references) //IL_1e9a: Unknown result type (might be due to invalid IL or missing references) //IL_1e9f: Unknown result type (might be due to invalid IL or missing references) //IL_1ea5: Unknown result type (might be due to invalid IL or missing references) //IL_1eaa: Unknown result type (might be due to invalid IL or missing references) //IL_1eb0: Unknown result type (might be due to invalid IL or missing references) //IL_1eb5: Unknown result type (might be due to invalid IL or missing references) //IL_1ec0: Unknown result type (might be due to invalid IL or missing references) //IL_1ecb: Unknown result type (might be due to invalid IL or missing references) //IL_1ed5: Unknown result type (might be due to invalid IL or missing references) //IL_1eda: Unknown result type (might be due to invalid IL or missing references) //IL_1ee5: Unknown result type (might be due to invalid IL or missing references) //IL_1eef: Unknown result type (might be due to invalid IL or missing references) //IL_1ef4: Unknown result type (might be due to invalid IL or missing references) //IL_1efa: Unknown result type (might be due to invalid IL or missing references) //IL_1eff: Unknown result type (might be due to invalid IL or missing references) //IL_1f05: Unknown result type (might be due to invalid IL or missing references) //IL_1f0a: Unknown result type (might be due to invalid IL or missing references) //IL_1f16: Unknown result type (might be due to invalid IL or missing references) //IL_572c: Unknown result type (might be due to invalid IL or missing references) //IL_5753: Unknown result type (might be due to invalid IL or missing references) //IL_5763: Unknown result type (might be due to invalid IL or missing references) //IL_5402: Unknown result type (might be due to invalid IL or missing references) //IL_5429: Unknown result type (might be due to invalid IL or missing references) //IL_5439: Unknown result type (might be due to invalid IL or missing references) //IL_2f39: Unknown result type (might be due to invalid IL or missing references) //IL_2f44: Unknown result type (might be due to invalid IL or missing references) //IL_2f4e: Unknown result type (might be due to invalid IL or missing references) //IL_2f53: Unknown result type (might be due to invalid IL or missing references) //IL_2f5e: Unknown result type (might be due to invalid IL or missing references) //IL_2f68: Unknown result type (might be due to invalid IL or missing references) //IL_2f6d: Unknown result type (might be due to invalid IL or missing references) //IL_2f73: Unknown result type (might be due to invalid IL or missing references) //IL_2f78: Unknown result type (might be due to invalid IL or missing references) //IL_2f7e: Unknown result type (might be due to invalid IL or missing references) //IL_2f83: Unknown result type (might be due to invalid IL or missing references) //IL_2f8e: Unknown result type (might be due to invalid IL or missing references) //IL_2f99: Unknown result type (might be due to invalid IL or missing references) //IL_2fa3: Unknown result type (might be due to invalid IL or missing references) //IL_2fa8: Unknown result type (might be due to invalid IL or missing references) //IL_2fb3: Unknown result type (might be due to invalid IL or missing references) //IL_2fbd: Unknown result type (might be due to invalid IL or missing references) //IL_2fc2: Unknown result type (might be due to invalid IL or missing references) //IL_2fcd: Unknown result type (might be due to invalid IL or missing references) //IL_2fd7: Unknown result type (might be due to invalid IL or missing references) //IL_2fdc: Unknown result type (might be due to invalid IL or missing references) //IL_2fe2: Unknown result type (might be due to invalid IL or missing references) //IL_2fe7: Unknown result type (might be due to invalid IL or missing references) //IL_2fed: Unknown result type (might be due to invalid IL or missing references) //IL_2ff2: Unknown result type (might be due to invalid IL or missing references) //IL_2ff8: Unknown result type (might be due to invalid IL or missing references) //IL_2ffd: Unknown result type (might be due to invalid IL or missing references) //IL_3003: Unknown result type (might be due to invalid IL or missing references) //IL_3008: Unknown result type (might be due to invalid IL or missing references) //IL_3014: Unknown result type (might be due to invalid IL or missing references) //IL_2065: Unknown result type (might be due to invalid IL or missing references) //IL_2070: Unknown result type (might be due to invalid IL or missing references) //IL_207a: Unknown result type (might be due to invalid IL or missing references) //IL_207f: Unknown result type (might be due to invalid IL or missing references) //IL_208a: Unknown result type (might be due to invalid IL or missing references) //IL_2094: Unknown result type (might be due to invalid IL or missing references) //IL_2099: Unknown result type (might be due to invalid IL or missing references) //IL_209f: Unknown result type (might be due to invalid IL or missing references) //IL_20a4: Unknown result type (might be due to invalid IL or missing references) //IL_20aa: Unknown result type (might be due to invalid IL or missing references) //IL_20af: Unknown result type (might be due to invalid IL or missing references) //IL_20ba: Unknown result type (might be due to invalid IL or missing references) //IL_20c5: Unknown result type (might be due to invalid IL or missing references) //IL_20cf: Unknown result type (might be due to invalid IL or missing references) //IL_20d4: Unknown result type (might be due to invalid IL or missing references) //IL_20df: Unknown result type (might be due to invalid IL or missing references) //IL_20e9: Unknown result type (might be due to invalid IL or missing references) //IL_20ee: Unknown result type (might be due to invalid IL or missing references) //IL_20f9: Unknown result type (might be due to invalid IL or missing references) //IL_2103: Unknown result type (might be due to invalid IL or missing references) //IL_2108: Unknown result type (might be due to invalid IL or missing references) //IL_210e: Unknown result type (might be due to invalid IL or missing references) //IL_2113: Unknown result type (might be due to invalid IL or missing references) //IL_2119: Unknown result type (might be due to invalid IL or missing references) //IL_211e: Unknown result type (might be due to invalid IL or missing references) //IL_2124: Unknown result type (might be due to invalid IL or missing references) //IL_2129: Unknown result type (might be due to invalid IL or missing references) //IL_2135: Unknown result type (might be due to invalid IL or missing references) //IL_3163: Unknown result type (might be due to invalid IL or missing references) //IL_316e: Unknown result type (might be due to invalid IL or missing references) //IL_3178: Unknown result type (might be due to invalid IL or missing references) //IL_317d: Unknown result type (might be due to invalid IL or missing references) //IL_3188: Unknown result type (might be due to invalid IL or missing references) //IL_3192: Unknown result type (might be due to invalid IL or missing references) //IL_3197: Unknown result type (might be due to invalid IL or missing references) //IL_319d: Unknown result type (might be due to invalid IL or missing references) //IL_31a2: Unknown result type (might be due to invalid IL or missing references) //IL_31a8: Unknown result type (might be due to invalid IL or missing references) //IL_31ad: Unknown result type (might be due to invalid IL or missing references) //IL_31b8: Unknown result type (might be due to invalid IL or missing references) //IL_31c3: Unknown result type (might be due to invalid IL or missing references) //IL_31cd: Unknown result type (might be due to invalid IL or missing references) //IL_31d2: Unknown result type (might be due to invalid IL or missing references) //IL_31dd: Unknown result type (might be due to invalid IL or missing references) //IL_31e7: Unknown result type (might be due to invalid IL or missing references) //IL_31ec: Unknown result type (might be due to invalid IL or missing references) //IL_31f7: Unknown result type (might be due to invalid IL or missing references) //IL_3201: Unknown result type (might be due to invalid IL or missing references) //IL_3206: Unknown result type (might be due to invalid IL or missing references) //IL_320c: Unknown result type (might be due to invalid IL or missing references) //IL_3211: Unknown result type (might be due to invalid IL or missing references) //IL_3217: Unknown result type (might be due to invalid IL or missing references) //IL_321c: Unknown result type (might be due to invalid IL or missing references) //IL_3222: Unknown result type (might be due to invalid IL or missing references) //IL_3227: Unknown result type (might be due to invalid IL or missing references) //IL_322d: Unknown result type (might be due to invalid IL or missing references) //IL_3232: Unknown result type (might be due to invalid IL or missing references) //IL_323e: Unknown result type (might be due to invalid IL or missing references) //IL_2385: Unknown result type (might be due to invalid IL or missing references) //IL_2390: Unknown result type (might be due to invalid IL or missing references) //IL_239a: Unknown result type (might be due to invalid IL or missing references) //IL_239f: Unknown result type (might be due to invalid IL or missing references) //IL_23aa: Unknown result type (might be due to invalid IL or missing references) //IL_23af: Unknown result type (might be due to invalid IL or missing references) //IL_23b5: Unknown result type (might be due to invalid IL or missing references) //IL_23ba: Unknown result type (might be due to invalid IL or missing references) //IL_23c0: Unknown result type (might be due to invalid IL or missing references) //IL_23c5: Unknown result type (might be due to invalid IL or missing references) //IL_23d0: Unknown result type (might be due to invalid IL or missing references) //IL_23db: Unknown result type (might be due to invalid IL or missing references) //IL_23e5: Unknown result type (might be due to invalid IL or missing references) //IL_23ea: Unknown result type (might be due to invalid IL or missing references) //IL_23f5: Unknown result type (might be due to invalid IL or missing references) //IL_23fa: Unknown result type (might be due to invalid IL or missing references) //IL_2405: Unknown result type (might be due to invalid IL or missing references) //IL_240f: Unknown result type (might be due to invalid IL or missing references) //IL_2414: Unknown result type (might be due to invalid IL or missing references) //IL_241a: Unknown result type (might be due to invalid IL or missing references) //IL_241f: Unknown result type (might be due to invalid IL or missing references) //IL_2425: Unknown result type (might be due to invalid IL or missing references) //IL_242a: Unknown result type (might be due to invalid IL or missing references) //IL_2430: Unknown result type (might be due to invalid IL or missing references) //IL_2435: Unknown result type (might be due to invalid IL or missing references) //IL_2441: Unknown result type (might be due to invalid IL or missing references) //IL_257c: Unknown result type (might be due to invalid IL or missing references) //IL_2587: Unknown result type (might be due to invalid IL or missing references) //IL_2591: Unknown result type (might be due to invalid IL or missing references) //IL_2596: Unknown result type (might be due to invalid IL or missing references) //IL_25a1: Unknown result type (might be due to invalid IL or missing references) //IL_25ab: Unknown result type (might be due to invalid IL or missing references) //IL_25b0: Unknown result type (might be due to invalid IL or missing references) //IL_25b6: Unknown result type (might be due to invalid IL or missing references) //IL_25bb: Unknown result type (might be due to invalid IL or missing references) //IL_25c1: Unknown result type (might be due to invalid IL or missing references) //IL_25c6: Unknown result type (might be due to invalid IL or missing references) //IL_25d1: Unknown result type (might be due to invalid IL or missing references) //IL_25dc: Unknown result type (might be due to invalid IL or missing references) //IL_25e6: Unknown result type (might be due to invalid IL or missing references) //IL_25eb: Unknown result type (might be due to invalid IL or missing references) //IL_25f6: Unknown result type (might be due to invalid IL or missing references) //IL_2600: Unknown result type (might be due to invalid IL or missing references) //IL_2605: Unknown result type (might be due to invalid IL or missing references) //IL_2610: Unknown result type (might be due to invalid IL or missing references) //IL_261a: Unknown result type (might be due to invalid IL or missing references) //IL_261f: Unknown result type (might be due to invalid IL or missing references) //IL_2625: Unknown result type (might be due to invalid IL or missing references) //IL_262a: Unknown result type (might be due to invalid IL or missing references) //IL_2630: Unknown result type (might be due to invalid IL or missing references) //IL_2635: Unknown result type (might be due to invalid IL or missing references) //IL_263b: Unknown result type (might be due to invalid IL or missing references) //IL_2640: Unknown result type (might be due to invalid IL or missing references) //IL_264c: Unknown result type (might be due to invalid IL or missing references) //IL_5803: Unknown result type (might be due to invalid IL or missing references) //IL_5808: Unknown result type (might be due to invalid IL or missing references) //IL_5819: Unknown result type (might be due to invalid IL or missing references) //IL_581f: Unknown result type (might be due to invalid IL or missing references) //IL_582f: Unknown result type (might be due to invalid IL or missing references) //IL_5840: Unknown result type (might be due to invalid IL or missing references) //IL_5845: Unknown result type (might be due to invalid IL or missing references) //IL_577f: Unknown result type (might be due to invalid IL or missing references) //IL_5785: Unknown result type (might be due to invalid IL or missing references) //IL_56dd: Unknown result type (might be due to invalid IL or missing references) //IL_56fe: Unknown result type (might be due to invalid IL or missing references) //IL_570e: Unknown result type (might be due to invalid IL or missing references) //IL_567f: Unknown result type (might be due to invalid IL or missing references) //IL_56a0: Unknown result type (might be due to invalid IL or missing references) //IL_56b0: Unknown result type (might be due to invalid IL or missing references) //IL_54d9: Unknown result type (might be due to invalid IL or missing references) //IL_54de: Unknown result type (might be due to invalid IL or missing references) //IL_54ef: Unknown result type (might be due to invalid IL or missing references) //IL_54f5: Unknown result type (might be due to invalid IL or missing references) //IL_5505: Unknown result type (might be due to invalid IL or missing references) //IL_5516: Unknown result type (might be due to invalid IL or missing references) //IL_551b: Unknown result type (might be due to invalid IL or missing references) //IL_5455: Unknown result type (might be due to invalid IL or missing references) //IL_545b: Unknown result type (might be due to invalid IL or missing references) //IL_53b3: Unknown result type (might be due to invalid IL or missing references) //IL_53d4: Unknown result type (might be due to invalid IL or missing references) //IL_53e4: Unknown result type (might be due to invalid IL or missing references) //IL_5355: Unknown result type (might be due to invalid IL or missing references) //IL_5376: Unknown result type (might be due to invalid IL or missing references) //IL_5386: Unknown result type (might be due to invalid IL or missing references) //IL_3497: Unknown result type (might be due to invalid IL or missing references) //IL_34a2: Unknown result type (might be due to invalid IL or missing references) //IL_34ac: Unknown result type (might be due to invalid IL or missing references) //IL_34b1: Unknown result type (might be due to invalid IL or missing references) //IL_34bc: Unknown result type (might be due to invalid IL or missing references) //IL_34c1: Unknown result type (might be due to invalid IL or missing references) //IL_34c7: Unknown result type (might be due to invalid IL or missing references) //IL_34cc: Unknown result type (might be due to invalid IL or missing references) //IL_34d2: Unknown result type (might be due to invalid IL or missing references) //IL_34d7: Unknown result type (might be due to invalid IL or missing references) //IL_34e2: Unknown result type (might be due to invalid IL or missing references) //IL_34ed: Unknown result type (might be due to invalid IL or missing references) //IL_34f7: Unknown result type (might be due to invalid IL or missing references) //IL_34fc: Unknown result type (might be due to invalid IL or missing references) //IL_3507: Unknown result type (might be due to invalid IL or missing references) //IL_3511: Unknown result type (might be due to invalid IL or missing references) //IL_3516: Unknown result type (might be due to invalid IL or missing references) //IL_351c: Unknown result type (might be due to invalid IL or missing references) //IL_3521: Unknown result type (might be due to invalid IL or missing references) //IL_352c: Unknown result type (might be due to invalid IL or missing references) //IL_3531: Unknown result type (might be due to invalid IL or missing references) //IL_3537: Unknown result type (might be due to invalid IL or missing references) //IL_353c: Unknown result type (might be due to invalid IL or missing references) //IL_3542: Unknown result type (might be due to invalid IL or missing references) //IL_3547: Unknown result type (might be due to invalid IL or missing references) //IL_354d: Unknown result type (might be due to invalid IL or missing references) //IL_3552: Unknown result type (might be due to invalid IL or missing references) //IL_355e: Unknown result type (might be due to invalid IL or missing references) //IL_304e: Unknown result type (might be due to invalid IL or missing references) //IL_3059: Unknown result type (might be due to invalid IL or missing references) //IL_3063: Unknown result type (might be due to invalid IL or missing references) //IL_3068: Unknown result type (might be due to invalid IL or missing references) //IL_3073: Unknown result type (might be due to invalid IL or missing references) //IL_307d: Unknown result type (might be due to invalid IL or missing references) //IL_3082: Unknown result type (might be due to invalid IL or missing references) //IL_308d: Unknown result type (might be due to invalid IL or missing references) //IL_3097: Unknown result type (might be due to invalid IL or missing references) //IL_309c: Unknown result type (might be due to invalid IL or missing references) //IL_30a2: Unknown result type (might be due to invalid IL or missing references) //IL_30a7: Unknown result type (might be due to invalid IL or missing references) //IL_30ad: Unknown result type (might be due to invalid IL or missing references) //IL_30b2: Unknown result type (might be due to invalid IL or missing references) //IL_30b8: Unknown result type (might be due to invalid IL or missing references) //IL_30bd: Unknown result type (might be due to invalid IL or missing references) //IL_30c3: Unknown result type (might be due to invalid IL or missing references) //IL_30c8: Unknown result type (might be due to invalid IL or missing references) //IL_30d3: Unknown result type (might be due to invalid IL or missing references) //IL_30de: Unknown result type (might be due to invalid IL or missing references) //IL_30e8: Unknown result type (might be due to invalid IL or missing references) //IL_30ed: Unknown result type (might be due to invalid IL or missing references) //IL_30f8: Unknown result type (might be due to invalid IL or missing references) //IL_3102: Unknown result type (might be due to invalid IL or missing references) //IL_3107: Unknown result type (might be due to invalid IL or missing references) //IL_310d: Unknown result type (might be due to invalid IL or missing references) //IL_3112: Unknown result type (might be due to invalid IL or missing references) //IL_3118: Unknown result type (might be due to invalid IL or missing references) //IL_311d: Unknown result type (might be due to invalid IL or missing references) //IL_3129: Unknown result type (might be due to invalid IL or missing references) //IL_216f: Unknown result type (might be due to invalid IL or missing references) //IL_217a: Unknown result type (might be due to invalid IL or missing references) //IL_2184: Unknown result type (might be due to invalid IL or missing references) //IL_2189: Unknown result type (might be due to invalid IL or missing references) //IL_2194: Unknown result type (might be due to invalid IL or missing references) //IL_219e: Unknown result type (might be due to invalid IL or missing references) //IL_21a3: Unknown result type (might be due to invalid IL or missing references) //IL_21ae: Unknown result type (might be due to invalid IL or missing references) //IL_21b8: Unknown result type (might be due to invalid IL or missing references) //IL_21bd: Unknown result type (might be due to invalid IL or missing references) //IL_21c3: Unknown result type (might be due to invalid IL or missing references) //IL_21c8: Unknown result type (might be due to invalid IL or missing references) //IL_21ce: Unknown result type (might be due to invalid IL or missing references) //IL_21d3: Unknown result type (might be due to invalid IL or missing references) //IL_21d9: Unknown result type (might be due to invalid IL or missing references) //IL_21de: Unknown result type (might be due to invalid IL or missing references) //IL_21e4: Unknown result type (might be due to invalid IL or missing references) //IL_21e9: Unknown result type (might be due to invalid IL or missing references) //IL_21f4: Unknown result type (might be due to invalid IL or missing references) //IL_21ff: Unknown result type (might be due to invalid IL or missing references) //IL_2209: Unknown result type (might be due to invalid IL or missing references) //IL_220e: Unknown result type (might be due to invalid IL or missing references) //IL_2219: Unknown result type (might be due to invalid IL or missing references) //IL_2223: Unknown result type (might be due to invalid IL or missing references) //IL_2228: Unknown result type (might be due to invalid IL or missing references) //IL_222e: Unknown result type (might be due to invalid IL or missing references) //IL_2233: Unknown result type (might be due to invalid IL or missing references) //IL_2239: Unknown result type (might be due to invalid IL or missing references) //IL_223e: Unknown result type (might be due to invalid IL or missing references) //IL_224a: Unknown result type (might be due to invalid IL or missing references) //IL_414c: Unknown result type (might be due to invalid IL or missing references) //IL_4157: Unknown result type (might be due to invalid IL or missing references) //IL_4161: Unknown result type (might be due to invalid IL or missing references) //IL_4166: Unknown result type (might be due to invalid IL or missing references) //IL_4171: Unknown result type (might be due to invalid IL or missing references) //IL_417b: Unknown result type (might be due to invalid IL or missing references) //IL_4180: Unknown result type (might be due to invalid IL or missing references) //IL_4186: Unknown result type (might be due to invalid IL or missing references) //IL_418b: Unknown result type (might be due to invalid IL or missing references) //IL_4196: Unknown result type (might be due to invalid IL or missing references) //IL_41a1: Unknown result type (might be due to invalid IL or missing references) //IL_41ab: Unknown result type (might be due to invalid IL or missing references) //IL_41b0: Unknown result type (might be due to invalid IL or missing references) //IL_41bb: Unknown result type (might be due to invalid IL or missing references) //IL_41c5: Unknown result type (might be due to invalid IL or missing references) //IL_41ca: Unknown result type (might be due to invalid IL or missing references) //IL_41d0: Unknown result type (might be due to invalid IL or missing references) //IL_41d5: Unknown result type (might be due to invalid IL or missing references) //IL_41e1: Unknown result type (might be due to invalid IL or missing references) //IL_3278: Unknown result type (might be due to invalid IL or missing references) //IL_3283: Unknown result type (might be due to invalid IL or missing references) //IL_328d: Unknown result type (might be due to invalid IL or missing references) //IL_3292: Unknown result type (might be due to invalid IL or missing references) //IL_329d: Unknown result type (might be due to invalid IL or missing references) //IL_32a7: Unknown result type (might be due to invalid IL or missing references) //IL_32ac: Unknown result type (might be due to invalid IL or missing references) //IL_32b2: Unknown result type (might be due to invalid IL or missing references) //IL_32b7: Unknown result type (might be due to invalid IL or missing references) //IL_32bd: Unknown result type (might be due to invalid IL or missing references) //IL_32c2: Unknown result type (might be due to invalid IL or missing references) //IL_32cd: Unknown result type (might be due to invalid IL or missing references) //IL_32d8: Unknown result type (might be due to invalid IL or missing references) //IL_32e2: Unknown result type (might be due to invalid IL or missing references) //IL_32e7: Unknown result type (might be due to invalid IL or missing references) //IL_32f2: Unknown result type (might be due to invalid IL or missing references) //IL_32fc: Unknown result type (might be due to invalid IL or missing references) //IL_3301: Unknown result type (might be due to invalid IL or missing references) //IL_330c: Unknown result type (might be due to invalid IL or missing references) //IL_3316: Unknown result type (might be due to invalid IL or missing references) //IL_331b: Unknown result type (might be due to invalid IL or missing references) //IL_3321: Unknown result type (might be due to invalid IL or missing references) //IL_3326: Unknown result type (might be due to invalid IL or missing references) //IL_332c: Unknown result type (might be due to invalid IL or missing references) //IL_3331: Unknown result type (might be due to invalid IL or missing references) //IL_3337: Unknown result type (might be due to invalid IL or missing references) //IL_333c: Unknown result type (might be due to invalid IL or missing references) //IL_3348: Unknown result type (might be due to invalid IL or missing references) //IL_247b: Unknown result type (might be due to invalid IL or missing references) //IL_2486: Unknown result type (might be due to invalid IL or missing references) //IL_2490: Unknown result type (might be due to invalid IL or missing references) //IL_2495: Unknown result type (might be due to invalid IL or missing references) //IL_24a0: Unknown result type (might be due to invalid IL or missing references) //IL_24aa: Unknown result type (might be due to invalid IL or missing references) //IL_24af: Unknown result type (might be due to invalid IL or missing references) //IL_24b5: Unknown result type (might be due to invalid IL or missing references) //IL_24ba: Unknown result type (might be due to invalid IL or missing references) //IL_24c5: Unknown result type (might be due to invalid IL or missing references) //IL_24ca: Unknown result type (might be due to invalid IL or missing references) //IL_24d0: Unknown result type (might be due to invalid IL or missing references) //IL_24d5: Unknown result type (might be due to invalid IL or missing references) //IL_24db: Unknown result type (might be due to invalid IL or missing references) //IL_24e0: Unknown result type (might be due to invalid IL or missing references) //IL_24e6: Unknown result type (might be due to invalid IL or missing references) //IL_24eb: Unknown result type (might be due to invalid IL or missing references) //IL_24f6: Unknown result type (might be due to invalid IL or missing references) //IL_2501: Unknown result type (might be due to invalid IL or missing references) //IL_250b: Unknown result type (might be due to invalid IL or missing references) //IL_2510: Unknown result type (might be due to invalid IL or missing references) //IL_251b: Unknown result type (might be due to invalid IL or missing references) //IL_2520: Unknown result type (might be due to invalid IL or missing references) //IL_2526: Unknown result type (might be due to invalid IL or missing references) //IL_252b: Unknown result type (might be due to invalid IL or missing references) //IL_2531: Unknown result type (might be due to invalid IL or missing references) //IL_2536: Unknown result type (might be due to invalid IL or missing references) //IL_2542: Unknown result type (might be due to invalid IL or missing references) //IL_268e: Unknown result type (might be due to invalid IL or missing references) //IL_2699: Unknown result type (might be due to invalid IL or missing references) //IL_26a3: Unknown result type (might be due to invalid IL or missing references) //IL_26a8: Unknown result type (might be due to invalid IL or missing references) //IL_26b3: Unknown result type (might be due to invalid IL or missing references) //IL_26b8: Unknown result type (might be due to invalid IL or missing references) //IL_26c3: Unknown result type (might be due to invalid IL or missing references) //IL_26c8: Unknown result type (might be due to invalid IL or missing references) //IL_26d2: Unknown result type (might be due to invalid IL or missing references) //IL_26e3: Unknown result type (might be due to invalid IL or missing references) //IL_57a8: Unknown result type (might be due to invalid IL or missing references) //IL_57b3: Unknown result type (might be due to invalid IL or missing references) //IL_57bd: Unknown result type (might be due to invalid IL or missing references) //IL_57c2: Unknown result type (might be due to invalid IL or missing references) //IL_57c7: Unknown result type (might be due to invalid IL or missing references) //IL_547e: Unknown result type (might be due to invalid IL or missing references) //IL_5489: Unknown result type (might be due to invalid IL or missing references) //IL_5493: Unknown result type (might be due to invalid IL or missing references) //IL_5498: Unknown result type (might be due to invalid IL or missing references) //IL_549d: Unknown result type (might be due to invalid IL or missing references) //IL_4253: Unknown result type (might be due to invalid IL or missing references) //IL_425e: Unknown result type (might be due to invalid IL or missing references) //IL_4268: Unknown result type (might be due to invalid IL or missing references) //IL_426d: Unknown result type (might be due to invalid IL or missing references) //IL_4278: Unknown result type (might be due to invalid IL or missing references) //IL_4282: Unknown result type (might be due to invalid IL or missing references) //IL_4287: Unknown result type (might be due to invalid IL or missing references) //IL_428d: Unknown result type (might be due to invalid IL or missing references) //IL_4292: Unknown result type (might be due to invalid IL or missing references) //IL_429d: Unknown result type (might be due to invalid IL or missing references) //IL_42a8: Unknown result type (might be due to invalid IL or missing references) //IL_42b2: Unknown result type (might be due to invalid IL or missing references) //IL_42b7: Unknown result type (might be due to invalid IL or missing references) //IL_42c2: Unknown result type (might be due to invalid IL or missing references) //IL_42cc: Unknown result type (might be due to invalid IL or missing references) //IL_42d1: Unknown result type (might be due to invalid IL or missing references) //IL_42d7: Unknown result type (might be due to invalid IL or missing references) //IL_42dc: Unknown result type (might be due to invalid IL or missing references) //IL_42e8: Unknown result type (might be due to invalid IL or missing references) //IL_3598: Unknown result type (might be due to invalid IL or missing references) //IL_35a3: Unknown result type (might be due to invalid IL or missing references) //IL_35ad: Unknown result type (might be due to invalid IL or missing references) //IL_35b2: Unknown result type (might be due to invalid IL or missing references) //IL_35bd: Unknown result type (might be due to invalid IL or missing references) //IL_35c2: Unknown result type (might be due to invalid IL or missing references) //IL_35c8: Unknown result type (might be due to invalid IL or missing references) //IL_35cd: Unknown result type (might be due to invalid IL or missing references) //IL_35d3: Unknown result type (might be due to invalid IL or missing references) //IL_35d8: Unknown result type (might be due to invalid IL or missing references) //IL_35e3: Unknown result type (might be due to invalid IL or missing references) //IL_35ee: Unknown result type (might be due to invalid IL or missing references) //IL_35f8: Unknown result type (might be due to invalid IL or missing references) //IL_35fd: Unknown result type (might be due to invalid IL or missing references) //IL_3608: Unknown result type (might be due to invalid IL or missing references) //IL_360d: Unknown result type (might be due to invalid IL or missing references) //IL_3618: Unknown result type (might be due to invalid IL or missing references) //IL_3622: Unknown result type (might be due to invalid IL or missing references) //IL_3627: Unknown result type (might be due to invalid IL or missing references) //IL_362d: Unknown result type (might be due to invalid IL or missing references) //IL_3632: Unknown result type (might be due to invalid IL or missing references) //IL_3638: Unknown result type (might be due to invalid IL or missing references) //IL_363d: Unknown result type (might be due to invalid IL or missing references) //IL_3643: Unknown result type (might be due to invalid IL or missing references) //IL_3648: Unknown result type (might be due to invalid IL or missing references) //IL_3654: Unknown result type (might be due to invalid IL or missing references) //IL_378f: Unknown result type (might be due to invalid IL or missing references) //IL_379a: Unknown result type (might be due to invalid IL or missing references) //IL_37a4: Unknown result type (might be due to invalid IL or missing references) //IL_37a9: Unknown result type (might be due to invalid IL or missing references) //IL_37b4: Unknown result type (might be due to invalid IL or missing references) //IL_37be: Unknown result type (might be due to invalid IL or missing references) //IL_37c3: Unknown result type (might be due to invalid IL or missing references) //IL_37c9: Unknown result type (might be due to invalid IL or missing references) //IL_37ce: Unknown result type (might be due to invalid IL or missing references) //IL_37d4: Unknown result type (might be due to invalid IL or missing references) //IL_37d9: Unknown result type (might be due to invalid IL or missing references) //IL_37e4: Unknown result type (might be due to invalid IL or missing references) //IL_37ef: Unknown result type (might be due to invalid IL or missing references) //IL_37f9: Unknown result type (might be due to invalid IL or missing references) //IL_37fe: Unknown result type (might be due to invalid IL or missing references) //IL_3809: Unknown result type (might be due to invalid IL or missing references) //IL_3813: Unknown result type (might be due to invalid IL or missing references) //IL_3818: Unknown result type (might be due to invalid IL or missing references) //IL_3823: Unknown result type (might be due to invalid IL or missing references) //IL_382d: Unknown result type (might be due to invalid IL or missing references) //IL_3832: Unknown result type (might be due to invalid IL or missing references) //IL_3838: Unknown result type (might be due to invalid IL or missing references) //IL_383d: Unknown result type (might be due to invalid IL or missing references) //IL_3843: Unknown result type (might be due to invalid IL or missing references) //IL_3848: Unknown result type (might be due to invalid IL or missing references) //IL_384e: Unknown result type (might be due to invalid IL or missing references) //IL_3853: Unknown result type (might be due to invalid IL or missing references) //IL_385f: Unknown result type (might be due to invalid IL or missing references) //IL_2783: Unknown result type (might be due to invalid IL or missing references) //IL_278e: Unknown result type (might be due to invalid IL or missing references) //IL_2798: Unknown result type (might be due to invalid IL or missing references) //IL_279d: Unknown result type (might be due to invalid IL or missing references) //IL_27a8: Unknown result type (might be due to invalid IL or missing references) //IL_27ad: Unknown result type (might be due to invalid IL or missing references) //IL_27b8: Unknown result type (might be due to invalid IL or missing references) //IL_27bd: Unknown result type (might be due to invalid IL or missing references) //IL_27c7: Unknown result type (might be due to invalid IL or missing references) //IL_27d8: Unknown result type (might be due to invalid IL or missing references) //IL_26fd: Unknown result type (might be due to invalid IL or missing references) //IL_2702: Unknown result type (might be due to invalid IL or missing references) //IL_57db: Unknown result type (might be due to invalid IL or missing references) //IL_57e6: Unknown result type (might be due to invalid IL or missing references) //IL_57f0: Unknown result type (might be due to invalid IL or missing references) //IL_57f5: Unknown result type (might be due to invalid IL or missing references) //IL_57fa: Unknown result type (might be due to invalid IL or missing references) //IL_54b1: Unknown result type (might be due to invalid IL or missing references) //IL_54bc: Unknown result type (might be due to invalid IL or missing references) //IL_54c6: Unknown result type (might be due to invalid IL or missing references) //IL_54cb: Unknown result type (might be due to invalid IL or missing references) //IL_54d0: Unknown result type (might be due to invalid IL or missing references) //IL_435a: Unknown result type (might be due to invalid IL or missing references) //IL_4365: Unknown result type (might be due to invalid IL or missing references) //IL_436f: Unknown result type (might be due to invalid IL or missing references) //IL_4374: Unknown result type (might be due to invalid IL or missing references) //IL_437f: Unknown result type (might be due to invalid IL or missing references) //IL_4389: Unknown result type (might be due to invalid IL or missing references) //IL_438e: Unknown result type (might be due to invalid IL or missing references) //IL_4394: Unknown result type (might be due to invalid IL or missing references) //IL_4399: Unknown result type (might be due to invalid IL or missing references) //IL_43a4: Unknown result type (might be due to invalid IL or missing references) //IL_43af: Unknown result type (might be due to invalid IL or missing references) //IL_43b9: Unknown result type (might be due to invalid IL or missing references) //IL_43be: Unknown result type (might be due to invalid IL or missing references) //IL_43c9: Unknown result type (might be due to invalid IL or missing references) //IL_43d3: Unknown result type (might be due to invalid IL or missing references) //IL_43d8: Unknown result type (might be due to invalid IL or missing references) //IL_43de: Unknown result type (might be due to invalid IL or missing references) //IL_43e3: Unknown result type (might be due to invalid IL or missing references) //IL_43ef: Unknown result type (might be due to invalid IL or missing references) //IL_421b: Unknown result type (might be due to invalid IL or missing references) //IL_4220: Unknown result type (might be due to invalid IL or missing references) //IL_3382: Unknown result type (might be due to invalid IL or missing references) //IL_338d: Unknown result type (might be due to invalid IL or missing references) //IL_3397: Unknown result type (might be due to invalid IL or missing references) //IL_339c: Unknown result type (might be due to invalid IL or missing references) //IL_33a7: Unknown result type (might be due to invalid IL or missing references) //IL_33b1: Unknown result type (might be due to invalid IL or missing references) //IL_33b6: Unknown result type (might be due to invalid IL or missing references) //IL_33c1: Unknown result type (might be due to invalid IL or missing references) //IL_33cb: Unknown result type (might be due to invalid IL or missing references) //IL_33d0: Unknown result type (might be due to invalid IL or missing references) //IL_33d6: Unknown result type (might be due to invalid IL or missing references) //IL_33db: Unknown result type (might be due to invalid IL or missing references) //IL_33e1: Unknown result type (might be due to invalid IL or missing references) //IL_33e6: Unknown result type (might be due to invalid IL or missing references) //IL_33ec: Unknown result type (might be due to invalid IL or missing references) //IL_33f1: Unknown result type (might be due to invalid IL or missing references) //IL_33f7: Unknown result type (might be due to invalid IL or missing references) //IL_33fc: Unknown result type (might be due to invalid IL or missing references) //IL_3407: Unknown result type (might be due to invalid IL or missing references) //IL_3412: Unknown result type (might be due to invalid IL or missing references) //IL_341c: Unknown result type (might be due to invalid IL or missing references) //IL_3421: Unknown result type (might be due to invalid IL or missing references) //IL_342c: Unknown result type (might be due to invalid IL or missing references) //IL_3436: Unknown result type (might be due to invalid IL or missing references) //IL_343b: Unknown result type (might be due to invalid IL or missing references) //IL_3441: Unknown result type (might be due to invalid IL or missing references) //IL_3446: Unknown result type (might be due to invalid IL or missing references) //IL_344c: Unknown result type (might be due to invalid IL or missing references) //IL_3451: Unknown result type (might be due to invalid IL or missing references) //IL_345d: Unknown result type (might be due to invalid IL or missing references) //IL_2874: Unknown result type (might be due to invalid IL or missing references) //IL_2879: Unknown result type (might be due to invalid IL or missing references) //IL_2885: Unknown result type (might be due to invalid IL or missing references) //IL_288a: Unknown result type (might be due to invalid IL or missing references) //IL_288f: Unknown result type (might be due to invalid IL or missing references) //IL_2894: Unknown result type (might be due to invalid IL or missing references) //IL_2899: Unknown result type (might be due to invalid IL or missing references) //IL_28a5: Unknown result type (might be due to invalid IL or missing references) //IL_28aa: Unknown result type (might be due to invalid IL or missing references) //IL_28af: Unknown result type (might be due to invalid IL or missing references) //IL_28b4: Unknown result type (might be due to invalid IL or missing references) //IL_27f2: Unknown result type (might be due to invalid IL or missing references) //IL_27f7: Unknown result type (might be due to invalid IL or missing references) //IL_2737: Unknown result type (might be due to invalid IL or missing references) //IL_273c: Unknown result type (might be due to invalid IL or missing references) //IL_2741: Unknown result type (might be due to invalid IL or missing references) //IL_274d: Unknown result type (might be due to invalid IL or missing references) //IL_2752: Unknown result type (might be due to invalid IL or missing references) //IL_2757: Unknown result type (might be due to invalid IL or missing references) //IL_275c: Unknown result type (might be due to invalid IL or missing references) //IL_2768: Unknown result type (might be due to invalid IL or missing references) //IL_276d: Unknown result type (might be due to invalid IL or missing references) //IL_2772: Unknown result type (might be due to invalid IL or missing references) //IL_4461: Unknown result type (might be due to invalid IL or missing references) //IL_446c: Unknown result type (might be due to invalid IL or missing references) //IL_4476: Unknown result type (might be due to invalid IL or missing references) //IL_447b: Unknown result type (might be due to invalid IL or missing references) //IL_4486: Unknown result type (might be due to invalid IL or missing references) //IL_4490: Unknown result type (might be due to invalid IL or missing references) //IL_4495: Unknown result type (might be due to invalid IL or missing references) //IL_449b: Unknown result type (might be due to invalid IL or missing references) //IL_44a0: Unknown result type (might be due to invalid IL or missing references) //IL_44ab: Unknown result type (might be due to invalid IL or missing references) //IL_44b6: Unknown result type (might be due to invalid IL or missing references) //IL_44c0: Unknown result type (might be due to invalid IL or missing references) //IL_44c5: Unknown result type (might be due to invalid IL or missing references) //IL_44d0: Unknown result type (might be due to invalid IL or missing references) //IL_44da: Unknown result type (might be due to invalid IL or missing references) //IL_44df: Unknown result type (might be due to invalid IL or missing references) //IL_44e5: Unknown result type (might be due to invalid IL or missing references) //IL_44ea: Unknown result type (might be due to invalid IL or missing references) //IL_44f6: Unknown result type (might be due to invalid IL or missing references) //IL_4322: Unknown result type (might be due to invalid IL or missing references) //IL_4327: Unknown result type (might be due to invalid IL or missing references) //IL_4776: Unknown result type (might be due to invalid IL or missing references) //IL_4781: Unknown result type (might be due to invalid IL or missing references) //IL_478b: Unknown result type (might be due to invalid IL or missing references) //IL_4790: Unknown result type (might be due to invalid IL or missing references) //IL_4795: Unknown result type (might be due to invalid IL or missing references) //IL_47a4: Unknown result type (might be due to invalid IL or missing references) //IL_47a9: Unknown result type (might be due to invalid IL or missing references) //IL_47b8: Unknown result type (might be due to invalid IL or missing references) //IL_47bd: Unknown result type (might be due to invalid IL or missing references) //IL_47d3: Unknown result type (might be due to invalid IL or missing references) //IL_47de: Unknown result type (might be due to invalid IL or missing references) //IL_47e8: Unknown result type (might be due to invalid IL or missing references) //IL_47ed: Unknown result type (might be due to invalid IL or missing references) //IL_47f2: Unknown result type (might be due to invalid IL or missing references) //IL_47fb: Unknown result type (might be due to invalid IL or missing references) //IL_4806: Unknown result type (might be due to invalid IL or missing references) //IL_4811: Unknown result type (might be due to invalid IL or missing references) //IL_481b: Unknown result type (might be due to invalid IL or missing references) //IL_4820: Unknown result type (might be due to invalid IL or missing references) //IL_4825: Unknown result type (might be due to invalid IL or missing references) //IL_4834: Unknown result type (might be due to invalid IL or missing references) //IL_4839: Unknown result type (might be due to invalid IL or missing references) //IL_4848: Unknown result type (might be due to invalid IL or missing references) //IL_484d: Unknown result type (might be due to invalid IL or missing references) //IL_486f: Unknown result type (might be due to invalid IL or missing references) //IL_487a: Unknown result type (might be due to invalid IL or missing references) //IL_4884: Unknown result type (might be due to invalid IL or missing references) //IL_4889: Unknown result type (might be due to invalid IL or missing references) //IL_488e: Unknown result type (might be due to invalid IL or missing references) //IL_4897: Unknown result type (might be due to invalid IL or missing references) //IL_48a3: Unknown result type (might be due to invalid IL or missing references) //IL_368e: Unknown result type (might be due to invalid IL or missing references) //IL_3699: Unknown result type (might be due to invalid IL or missing references) //IL_36a3: Unknown result type (might be due to invalid IL or missing references) //IL_36a8: Unknown result type (might be due to invalid IL or missing references) //IL_36b3: Unknown result type (might be due to invalid IL or missing references) //IL_36bd: Unknown result type (might be due to invalid IL or missing references) //IL_36c2: Unknown result type (might be due to invalid IL or missing references) //IL_36c8: Unknown result type (might be due to invalid IL or missing references) //IL_36cd: Unknown result type (might be due to invalid IL or missing references) //IL_36d8: Unknown result type (might be due to invalid IL or missing references) //IL_36dd: Unknown result type (might be due to invalid IL or missing references) //IL_36e3: Unknown result type (might be due to invalid IL or missing references) //IL_36e8: Unknown result type (might be due to invalid IL or missing references) //IL_36ee: Unknown result type (might be due to invalid IL or missing references) //IL_36f3: Unknown result type (might be due to invalid IL or missing references) //IL_36f9: Unknown result type (might be due to invalid IL or missing references) //IL_36fe: Unknown result type (might be due to invalid IL or missing references) //IL_3709: Unknown result type (might be due to invalid IL or missing references) //IL_3714: Unknown result type (might be due to invalid IL or missing references) //IL_371e: Unknown result type (might be due to invalid IL or missing references) //IL_3723: Unknown result type (might be due to invalid IL or missing references) //IL_372e: Unknown result type (might be due to invalid IL or missing references) //IL_3733: Unknown result type (might be due to invalid IL or missing references) //IL_3739: Unknown result type (might be due to invalid IL or missing references) //IL_373e: Unknown result type (might be due to invalid IL or missing references) //IL_3744: Unknown result type (might be due to invalid IL or missing references) //IL_3749: Unknown result type (might be due to invalid IL or missing references) //IL_3755: Unknown result type (might be due to invalid IL or missing references) //IL_38a1: Unknown result type (might be due to invalid IL or missing references) //IL_38ac: Unknown result type (might be due to invalid IL or missing references) //IL_38b6: Unknown result type (might be due to invalid IL or missing references) //IL_38bb: Unknown result type (might be due to invalid IL or missing references) //IL_38c6: Unknown result type (might be due to invalid IL or missing references) //IL_38cb: Unknown result type (might be due to invalid IL or missing references) //IL_38d6: Unknown result type (might be due to invalid IL or missing references) //IL_38db: Unknown result type (might be due to invalid IL or missing references) //IL_38e5: Unknown result type (might be due to invalid IL or missing references) //IL_38f6: Unknown result type (might be due to invalid IL or missing references) //IL_28c0: Unknown result type (might be due to invalid IL or missing references) //IL_28cb: Unknown result type (might be due to invalid IL or missing references) //IL_28d5: Unknown result type (might be due to invalid IL or missing references) //IL_28da: Unknown result type (might be due to invalid IL or missing references) //IL_28e0: Unknown result type (might be due to invalid IL or missing references) //IL_28e5: Unknown result type (might be due to invalid IL or missing references) //IL_28ea: Unknown result type (might be due to invalid IL or missing references) //IL_28ef: Unknown result type (might be due to invalid IL or missing references) //IL_28fa: Unknown result type (might be due to invalid IL or missing references) //IL_2905: Unknown result type (might be due to invalid IL or missing references) //IL_290f: Unknown result type (might be due to invalid IL or missing references) //IL_2914: Unknown result type (might be due to invalid IL or missing references) //IL_2920: Unknown result type (might be due to invalid IL or missing references) //IL_282c: Unknown result type (might be due to invalid IL or missing references) //IL_2831: Unknown result type (might be due to invalid IL or missing references) //IL_2836: Unknown result type (might be due to invalid IL or missing references) //IL_2842: Unknown result type (might be due to invalid IL or missing references) //IL_2847: Unknown result type (might be due to invalid IL or missing references) //IL_284c: Unknown result type (might be due to invalid IL or missing references) //IL_2851: Unknown result type (might be due to invalid IL or missing references) //IL_285d: Unknown result type (might be due to invalid IL or missing references) //IL_2862: Unknown result type (might be due to invalid IL or missing references) //IL_2867: Unknown result type (might be due to invalid IL or missing references) //IL_4568: Unknown result type (might be due to invalid IL or missing references) //IL_4573: Unknown result type (might be due to invalid IL or missing references) //IL_457d: Unknown result type (might be due to invalid IL or missing references) //IL_4582: Unknown result type (might be due to invalid IL or missing references) //IL_458d: Unknown result type (might be due to invalid IL or missing references) //IL_4597: Unknown result type (might be due to invalid IL or missing references) //IL_459c: Unknown result type (might be due to invalid IL or missing references) //IL_45a2: Unknown result type (might be due to invalid IL or missing references) //IL_45a7: Unknown result type (might be due to invalid IL or missing references) //IL_45b2: Unknown result type (might be due to invalid IL or missing references) //IL_45bd: Unknown result type (might be due to invalid IL or missing references) //IL_45c7: Unknown result type (might be due to invalid IL or missing references) //IL_45cc: Unknown result type (might be due to invalid IL or missing references) //IL_45d7: Unknown result type (might be due to invalid IL or missing references) //IL_45e1: Unknown result type (might be due to invalid IL or missing references) //IL_45e6: Unknown result type (might be due to invalid IL or missing references) //IL_45ec: Unknown result type (might be due to invalid IL or missing references) //IL_45f1: Unknown result type (might be due to invalid IL or missing references) //IL_45fd: Unknown result type (might be due to invalid IL or missing references) //IL_4429: Unknown result type (might be due to invalid IL or missing references) //IL_442e: Unknown result type (might be due to invalid IL or missing references) //IL_48c5: Unknown result type (might be due to invalid IL or missing references) //IL_48d0: Unknown result type (might be due to invalid IL or missing references) //IL_48da: Unknown result type (might be due to invalid IL or missing references) //IL_48df: Unknown result type (might be due to invalid IL or missing references) //IL_48ea: Unknown result type (might be due to invalid IL or missing references) //IL_48ef: Unknown result type (might be due to invalid IL or missing references) //IL_48fa: Unknown result type (might be due to invalid IL or missing references) //IL_48ff: Unknown result type (might be due to invalid IL or missing references) //IL_4909: Unknown result type (might be due to invalid IL or missing references) //IL_491a: Unknown result type (might be due to invalid IL or missing references) //IL_3996: Unknown result type (might be due to invalid IL or missing references) //IL_39a1: Unknown result type (might be due to invalid IL or missing references) //IL_39ab: Unknown result type (might be due to invalid IL or missing references) //IL_39b0: Unknown result type (might be due to invalid IL or missing references) //IL_39bb: Unknown result type (might be due to invalid IL or missing references) //IL_39c0: Unknown result type (might be due to invalid IL or missing references) //IL_39cb: Unknown result type (might be due to invalid IL or missing references) //IL_39d0: Unknown result type (might be due to invalid IL or missing references) //IL_39da: Unknown result type (might be due to invalid IL or missing references) //IL_39eb: Unknown result type (might be due to invalid IL or missing references) //IL_3910: Unknown result type (might be due to invalid IL or missing references) //IL_3915: Unknown result type (might be due to invalid IL or missing references) //IL_466f: Unknown result type (might be due to invalid IL or missing references) //IL_467a: Unknown result type (might be due to invalid IL or missing references) //IL_4684: Unknown result type (might be due to invalid IL or missing references) //IL_4689: Unknown result type (might be due to invalid IL or missing references) //IL_4694: Unknown result type (might be due to invalid IL or missing references) //IL_469e: Unknown result type (might be due to invalid IL or missing references) //IL_46a3: Unknown result type (might be due to invalid IL or missing references) //IL_46a9: Unknown result type (might be due to invalid IL or missing references) //IL_46ae: Unknown result type (might be due to invalid IL or missing references) //IL_46b9: Unknown result type (might be due to invalid IL or missing references) //IL_46c4: Unknown result type (might be due to invalid IL or missing references) //IL_46ce: Unknown result type (might be due to invalid IL or missing references) //IL_46d3: Unknown result type (might be due to invalid IL or missing references) //IL_46de: Unknown result type (might be due to invalid IL or missing references) //IL_46e8: Unknown result type (might be due to invalid IL or missing references) //IL_46ed: Unknown result type (might be due to invalid IL or missing references) //IL_46f3: Unknown result type (might be due to invalid IL or missing references) //IL_46f8: Unknown result type (might be due to invalid IL or missing references) //IL_4704: Unknown result type (might be due to invalid IL or missing references) //IL_4530: Unknown result type (might be due to invalid IL or missing references) //IL_4535: Unknown result type (might be due to invalid IL or missing references) //IL_49ba: Unknown result type (might be due to invalid IL or missing references) //IL_49c5: Unknown result type (might be due to invalid IL or missing references) //IL_49cf: Unknown result type (might be due to invalid IL or missing references) //IL_49d4: Unknown result type (might be due to invalid IL or missing references) //IL_49df: Unknown result type (might be due to invalid IL or missing references) //IL_49e4: Unknown result type (might be due to invalid IL or missing references) //IL_49ef: Unknown result type (might be due to invalid IL or missing references) //IL_49f4: Unknown result type (might be due to invalid IL or missing references) //IL_49fe: Unknown result type (might be due to invalid IL or missing references) //IL_4a0f: Unknown result type (might be due to invalid IL or missing references) //IL_4934: Unknown result type (might be due to invalid IL or missing references) //IL_4939: Unknown result type (might be due to invalid IL or missing references) //IL_3a87: Unknown result type (might be due to invalid IL or missing references) //IL_3a8c: Unknown result type (might be due to invalid IL or missing references) //IL_3a98: Unknown result type (might be due to invalid IL or missing references) //IL_3a9d: Unknown result type (might be due to invalid IL or missing references) //IL_3aa2: Unknown result type (might be due to invalid IL or missing references) //IL_3aa7: Unknown result type (might be due to invalid IL or missing references) //IL_3aac: Unknown result type (might be due to invalid IL or missing references) //IL_3ab8: Unknown result type (might be due to invalid IL or missing references) //IL_3abd: Unknown result type (might be due to invalid IL or missing references) //IL_3ac2: Unknown result type (might be due to invalid IL or missing references) //IL_3ac7: Unknown result type (might be due to invalid IL or missing references) //IL_3a05: Unknown result type (might be due to invalid IL or missing references) //IL_3a0a: Unknown result type (might be due to invalid IL or missing references) //IL_394a: Unknown result type (might be due to invalid IL or missing references) //IL_394f: Unknown result type (might be due to invalid IL or missing references) //IL_3954: Unknown result type (might be due to invalid IL or missing references) //IL_3960: Unknown result type (might be due to invalid IL or missing references) //IL_3965: Unknown result type (might be due to invalid IL or missing references) //IL_396a: Unknown result type (might be due to invalid IL or missing references) //IL_396f: Unknown result type (might be due to invalid IL or missing references) //IL_397b: Unknown result type (might be due to invalid IL or missing references) //IL_3980: Unknown result type (might be due to invalid IL or missing references) //IL_3985: Unknown result type (might be due to invalid IL or missing references) //IL_295a: Unknown result type (might be due to invalid IL or missing references) //IL_2965: Unknown result type (might be due to invalid IL or missing references) //IL_296f: Unknown result type (might be due to invalid IL or missing references) //IL_2974: Unknown result type (might be due to invalid IL or missing references) //IL_297a: Unknown result type (might be due to invalid IL or missing references) //IL_297f: Unknown result type (might be due to invalid IL or missing references) //IL_2984: Unknown result type (might be due to invalid IL or missing references) //IL_2989: Unknown result type (might be due to invalid IL or missing references) //IL_298f: Unknown result type (might be due to invalid IL or missing references) //IL_2994: Unknown result type (might be due to invalid IL or missing references) //IL_2999: Unknown result type (might be due to invalid IL or missing references) //IL_29a3: Unknown result type (might be due to invalid IL or missing references) //IL_29a8: Unknown result type (might be due to invalid IL or missing references) //IL_29ae: Unknown result type (might be due to invalid IL or missing references) //IL_29b3: Unknown result type (might be due to invalid IL or missing references) //IL_29b8: Unknown result type (might be due to invalid IL or missing references) //IL_29c3: Unknown result type (might be due to invalid IL or missing references) //IL_29c8: Unknown result type (might be due to invalid IL or missing references) //IL_29d3: Unknown result type (might be due to invalid IL or missing references) //IL_29de: Unknown result type (might be due to invalid IL or missing references) //IL_29e8: Unknown result type (might be due to invalid IL or missing references) //IL_29ed: Unknown result type (might be due to invalid IL or missing references) //IL_29f3: Unknown result type (might be due to invalid IL or missing references) //IL_29f8: Unknown result type (might be due to invalid IL or missing references) //IL_29fd: Unknown result type (might be due to invalid IL or missing references) //IL_2a07: Unknown result type (might be due to invalid IL or missing references) //IL_2a0c: Unknown result type (might be due to invalid IL or missing references) //IL_2a12: Unknown result type (might be due to invalid IL or missing references) //IL_2a17: Unknown result type (might be due to invalid IL or missing references) //IL_2a1c: Unknown result type (might be due to invalid IL or missing references) //IL_2a27: Unknown result type (might be due to invalid IL or missing references) //IL_2a2c: Unknown result type (might be due to invalid IL or missing references) //IL_2a38: Unknown result type (might be due to invalid IL or missing references) //IL_4637: Unknown result type (might be due to invalid IL or missing references) //IL_463c: Unknown result type (might be due to invalid IL or missing references) //IL_4aab: Unknown result type (might be due to invalid IL or missing references) //IL_4ab0: Unknown result type (might be due to invalid IL or missing references) //IL_4abc: Unknown result type (might be due to invalid IL or missing references) //IL_4ac1: Unknown result type (might be due to invalid IL or missing references) //IL_4ac6: Unknown result type (might be due to invalid IL or missing references) //IL_4acb: Unknown result type (might be due to invalid IL or missing references) //IL_4ad0: Unknown result type (might be due to invalid IL or missing references) //IL_4adc: Unknown result type (might be due to invalid IL or missing references) //IL_4ae1: Unknown result type (might be due to invalid IL or missing references) //IL_4ae6: Unknown result type (might be due to invalid IL or missing references) //IL_4aeb: Unknown result type (might be due to invalid IL or missing references) //IL_4a29: Unknown result type (might be due to invalid IL or missing references) //IL_4a2e: Unknown result type (might be due to invalid IL or missing references) //IL_496e: Unknown result type (might be due to invalid IL or missing references) //IL_4973: Unknown result type (might be due to invalid IL or missing references) //IL_4978: Unknown result type (might be due to invalid IL or missing references) //IL_4984: Unknown result type (might be due to invalid IL or missing references) //IL_4989: Unknown result type (might be due to invalid IL or missing references) //IL_498e: Unknown result type (might be due to invalid IL or missing references) //IL_4993: Unknown result type (might be due to invalid IL or missing references) //IL_499f: Unknown result type (might be due to invalid IL or missing references) //IL_49a4: Unknown result type (might be due to invalid IL or missing references) //IL_49a9: Unknown result type (might be due to invalid IL or missing references) //IL_3ad3: Unknown result type (might be due to invalid IL or missing references) //IL_3ade: Unknown result type (might be due to invalid IL or missing references) //IL_3ae8: Unknown result type (might be due to invalid IL or missing references) //IL_3aed: Unknown result type (might be due to invalid IL or missing references) //IL_3af3: Unknown result type (might be due to invalid IL or missing references) //IL_3af8: Unknown result type (might be due to invalid IL or missing references) //IL_3afd: Unknown result type (might be due to invalid IL or missing references) //IL_3b02: Unknown result type (might be due to invalid IL or missing references) //IL_3b0d: Unknown result type (might be due to invalid IL or missing references) //IL_3b18: Unknown result type (might be due to invalid IL or missing references) //IL_3b22: Unknown result type (might be due to invalid IL or missing references) //IL_3b27: Unknown result type (might be due to invalid IL or missing references) //IL_3b33: Unknown result type (might be due to invalid IL or missing references) //IL_3a3f: Unknown result type (might be due to invalid IL or missing references) //IL_3a44: Unknown result type (might be due to invalid IL or missing references) //IL_3a49: Unknown result type (might be due to invalid IL or missing references) //IL_3a55: Unknown result type (might be due to invalid IL or missing references) //IL_3a5a: Unknown result type (might be due to invalid IL or missing references) //IL_3a5f: Unknown result type (might be due to invalid IL or missing references) //IL_3a64: Unknown result type (might be due to invalid IL or missing references) //IL_3a70: Unknown result type (might be due to invalid IL or missing references) //IL_3a75: Unknown result type (might be due to invalid IL or missing references) //IL_3a7a: Unknown result type (might be due to invalid IL or missing references) //IL_473e: Unknown result type (might be due to invalid IL or missing references) //IL_4743: Unknown result type (might be due to invalid IL or missing references) //IL_4af7: Unknown result type (might be due to invalid IL or missing references) //IL_4b02: Unknown result type (might be due to invalid IL or missing references) //IL_4b0c: Unknown result type (might be due to invalid IL or missing references) //IL_4b11: Unknown result type (might be due to invalid IL or missing references) //IL_4b17: Unknown result type (might be due to invalid IL or missing references) //IL_4b1c: Unknown result type (might be due to invalid IL or missing references) //IL_4b21: Unknown result type (might be due to invalid IL or missing references) //IL_4b26: Unknown result type (might be due to invalid IL or missing references) //IL_4b31: Unknown result type (might be due to invalid IL or missing references) //IL_4b3c: Unknown result type (might be due to invalid IL or missing references) //IL_4b46: Unknown result type (might be due to invalid IL or missing references) //IL_4b4b: Unknown result type (might be due to invalid IL or missing references) //IL_4b57: Unknown result type (might be due to invalid IL or missing references) //IL_4a63: Unknown result type (might be due to invalid IL or missing references) //IL_4a68: Unknown result type (might be due to invalid IL or missing references) //IL_4a6d: Unknown result type (might be due to invalid IL or missing references) //IL_4a79: Unknown result type (might be due to invalid IL or missing references) //IL_4a7e: Unknown result type (might be due to invalid IL or missing references) //IL_4a83: Unknown result type (might be due to invalid IL or missing references) //IL_4a88: Unknown result type (might be due to invalid IL or missing references) //IL_4a94: Unknown result type (might be due to invalid IL or missing references) //IL_4a99: Unknown result type (might be due to invalid IL or missing references) //IL_4a9e: Unknown result type (might be due to invalid IL or missing references) //IL_2a72: Unknown result type (might be due to invalid IL or missing references) //IL_2a7d: Unknown result type (might be due to invalid IL or missing references) //IL_2a87: Unknown result type (might be due to invalid IL or missing references) //IL_2a8c: Unknown result type (might be due to invalid IL or missing references) //IL_2a92: Unknown result type (might be due to invalid IL or missing references) //IL_2a97: Unknown result type (might be due to invalid IL or missing references) //IL_2a9c: Unknown result type (might be due to invalid IL or missing references) //IL_2aa1: Unknown result type (might be due to invalid IL or missing references) //IL_2aa7: Unknown result type (might be due to invalid IL or missing references) //IL_2aac: Unknown result type (might be due to invalid IL or missing references) //IL_2ab1: Unknown result type (might be due to invalid IL or missing references) //IL_2ab6: Unknown result type (might be due to invalid IL or missing references) //IL_2ac0: Unknown result type (might be due to invalid IL or missing references) //IL_2ac5: Unknown result type (might be due to invalid IL or missing references) //IL_2acb: Unknown result type (might be due to invalid IL or missing references) //IL_2ad0: Unknown result type (might be due to invalid IL or missing references) //IL_2ad5: Unknown result type (might be due to invalid IL or missing references) //IL_2ada: Unknown result type (might be due to invalid IL or missing references) //IL_2ae5: Unknown result type (might be due to invalid IL or missing references) //IL_2aea: Unknown result type (might be due to invalid IL or missing references) //IL_2af5: Unknown result type (might be due to invalid IL or missing references) //IL_2b00: Unknown result type (might be due to invalid IL or missing references) //IL_2b0a: Unknown result type (might be due to invalid IL or missing references) //IL_2b0f: Unknown result type (might be due to invalid IL or missing references) //IL_2b15: Unknown result type (might be due to invalid IL or missing references) //IL_2b1a: Unknown result type (might be due to invalid IL or missing references) //IL_2b1f: Unknown result type (might be due to invalid IL or missing references) //IL_2b24: Unknown result type (might be due to invalid IL or missing references) //IL_2b2e: Unknown result type (might be due to invalid IL or missing references) //IL_2b33: Unknown result type (might be due to invalid IL or missing references) //IL_2b39: Unknown result type (might be due to invalid IL or missing references) //IL_2b3e: Unknown result type (might be due to invalid IL or missing references) //IL_2b43: Unknown result type (might be due to invalid IL or missing references) //IL_2b48: Unknown result type (might be due to invalid IL or missing references) //IL_2b53: Unknown result type (might be due to invalid IL or missing references) //IL_2b58: Unknown result type (might be due to invalid IL or missing references) //IL_2b64: Unknown result type (might be due to invalid IL or missing references) //IL_3b6d: Unknown result type (might be due to invalid IL or missing references) //IL_3b78: Unknown result type (might be due to invalid IL or missing references) //IL_3b82: Unknown result type (might be due to invalid IL or missing references) //IL_3b87: Unknown result type (might be due to invalid IL or missing references) //IL_3b8d: Unknown result type (might be due to invalid IL or missing references) //IL_3b92: Unknown result type (might be due to invalid IL or missing references) //IL_3b97: Unknown result type (might be due to invalid IL or missing references) //IL_3b9c: Unknown result type (might be due to invalid IL or missing references) //IL_3ba2: Unknown result type (might be due to invalid IL or missing references) //IL_3ba7: Unknown result type (might be due to invalid IL or missing references) //IL_3bac: Unknown result type (might be due to invalid IL or missing references) //IL_3bb6: Unknown result type (might be due to invalid IL or missing references) //IL_3bbb: Unknown result type (might be due to invalid IL or missing references) //IL_3bc1: Unknown result type (might be due to invalid IL or missing references) //IL_3bc6: Unknown result type (might be due to invalid IL or missing references) //IL_3bcb: Unknown result type (might be due to invalid IL or missing references) //IL_3bd6: Unknown result type (might be due to invalid IL or missing references) //IL_3bdb: Unknown result type (might be due to invalid IL or missing references) //IL_3be6: Unknown result type (might be due to invalid IL or missing references) //IL_3bf1: Unknown result type (might be due to invalid IL or missing references) //IL_3bfb: Unknown result type (might be due to invalid IL or missing references) //IL_3c00: Unknown result type (might be due to invalid IL or missing references) //IL_3c06: Unknown result type (might be due to invalid IL or missing references) //IL_3c0b: Unknown result type (might be due to invalid IL or missing references) //IL_3c10: Unknown result type (might be due to invalid IL or missing references) //IL_3c1a: Unknown result type (might be due to invalid IL or missing references) //IL_3c1f: Unknown result type (might be due to invalid IL or missing references) //IL_3c25: Unknown result type (might be due to invalid IL or missing references) //IL_3c2a: Unknown result type (might be due to invalid IL or missing references) //IL_3c2f: Unknown result type (might be due to invalid IL or missing references) //IL_3c3a: Unknown result type (might be due to invalid IL or missing references) //IL_3c3f: Unknown result type (might be due to invalid IL or missing references) //IL_3c4b: Unknown result type (might be due to invalid IL or missing references) //IL_4b91: Unknown result type (might be due to invalid IL or missing references) //IL_4b9c: Unknown result type (might be due to invalid IL or missing references) //IL_4ba6: Unknown result type (might be due to invalid IL or missing references) //IL_4bab: Unknown result type (might be due to invalid IL or missing references) //IL_4bb1: Unknown result type (might be due to invalid IL or missing references) //IL_4bb6: Unknown result type (might be due to invalid IL or missing references) //IL_4bbb: Unknown result type (might be due to invalid IL or missing references) //IL_4bc0: Unknown result type (might be due to invalid IL or missing references) //IL_4bc6: Unknown result type (might be due to invalid IL or missing references) //IL_4bcb: Unknown result type (might be due to invalid IL or missing references) //IL_4bd0: Unknown result type (might be due to invalid IL or missing references) //IL_4bda: Unknown result type (might be due to invalid IL or missing references) //IL_4bdf: Unknown result type (might be due to invalid IL or missing references) //IL_4be5: Unknown result type (might be due to invalid IL or missing references) //IL_4bea: Unknown result type (might be due to invalid IL or missing references) //IL_4bef: Unknown result type (might be due to invalid IL or missing references) //IL_4bfa: Unknown result type (might be due to invalid IL or missing references) //IL_4bff: Unknown result type (might be due to invalid IL or missing references) //IL_4c0a: Unknown result type (might be due to invalid IL or missing references) //IL_4c15: Unknown result type (might be due to invalid IL or missing references) //IL_4c1f: Unknown result type (might be due to invalid IL or missing references) //IL_4c24: Unknown result type (might be due to invalid IL or missing references) //IL_4c2a: Unknown result type (might be due to invalid IL or missing references) //IL_4c2f: Unknown result type (might be due to invalid IL or missing references) //IL_4c34: Unknown result type (might be due to invalid IL or missing references) //IL_4c3e: Unknown result type (might be due to invalid IL or missing references) //IL_4c43: Unknown result type (might be due to invalid IL or missing references) //IL_4c49: Unknown result type (might be due to invalid IL or missing references) //IL_4c4e: Unknown result type (might be due to invalid IL or missing references) //IL_4c53: Unknown result type (might be due to invalid IL or missing references) //IL_4c5e: Unknown result type (might be due to invalid IL or missing references) //IL_4c63: Unknown result type (might be due to invalid IL or missing references) //IL_4c6f: Unknown result type (might be due to invalid IL or missing references) //IL_2b9f: Unknown result type (might be due to invalid IL or missing references) //IL_2baa: Unknown result type (might be due to invalid IL or missing references) //IL_2bb4: Unknown result type (might be due to invalid IL or missing references) //IL_2bb9: Unknown result type (might be due to invalid IL or missing references) //IL_2bbf: Unknown result type (might be due to invalid IL or missing references) //IL_2bc4: Unknown result type (might be due to invalid IL or missing references) //IL_2bc9: Unknown result type (might be due to invalid IL or missing references) //IL_2bce: Unknown result type (might be due to invalid IL or missing references) //IL_2bd9: Unknown result type (might be due to invalid IL or missing references) //IL_2be4: Unknown result type (might be due to invalid IL or missing references) //IL_2bee: Unknown result type (might be due to invalid IL or missing references) //IL_2bf3: Unknown result type (might be due to invalid IL or missing references) //IL_2bff: Unknown result type (might be due to invalid IL or missing references) //IL_3c85: Unknown result type (might be due to invalid IL or missing references) //IL_3c90: Unknown result type (might be due to invalid IL or missing references) //IL_3c9a: Unknown result type (might be due to invalid IL or missing references) //IL_3c9f: Unknown result type (might be due to invalid IL or missing references) //IL_3ca5: Unknown result type (might be due to invalid IL or missing references) //IL_3caa: Unknown result type (might be due to invalid IL or missing references) //IL_3caf: Unknown result type (might be due to invalid IL or missing references) //IL_3cb4: Unknown result type (might be due to invalid IL or missing references) //IL_3cba: Unknown result type (might be due to invalid IL or missing references) //IL_3cbf: Unknown result type (might be due to invalid IL or missing references) //IL_3cc4: Unknown result type (might be due to invalid IL or missing references) //IL_3cc9: Unknown result type (might be due to invalid IL or missing references) //IL_3cd3: Unknown result type (might be due to invalid IL or missing references) //IL_3cd8: Unknown result type (might be due to invalid IL or missing references) //IL_3cde: Unknown result type (might be due to invalid IL or missing references) //IL_3ce3: Unknown result type (might be due to invalid IL or missing references) //IL_3ce8: Unknown result type (might be due to invalid IL or missing references) //IL_3ced: Unknown result type (might be due to invalid IL or missing references) //IL_3cf8: Unknown result type (might be due to invalid IL or missing references) //IL_3cfd: Unknown result type (might be due to invalid IL or missing references) //IL_3d08: Unknown result type (might be due to invalid IL or missing references) //IL_3d13: Unknown result type (might be due to invalid IL or missing references) //IL_3d1d: Unknown result type (might be due to invalid IL or missing references) //IL_3d22: Unknown result type (might be due to invalid IL or missing references) //IL_3d28: Unknown result type (might be due to invalid IL or missing references) //IL_3d2d: Unknown result type (might be due to invalid IL or missing references) //IL_3d32: Unknown result type (might be due to invalid IL or missing references) //IL_3d37: Unknown result type (might be due to invalid IL or missing references) //IL_3d41: Unknown result type (might be due to invalid IL or missing references) //IL_3d46: Unknown result type (might be due to invalid IL or missing references) //IL_3d4c: Unknown result type (might be due to invalid IL or missing references) //IL_3d51: Unknown result type (might be due to invalid IL or missing references) //IL_3d56: Unknown result type (might be due to invalid IL or missing references) //IL_3d5b: Unknown result type (might be due to invalid IL or missing references) //IL_3d66: Unknown result type (might be due to invalid IL or missing references) //IL_3d6b: Unknown result type (might be due to invalid IL or missing references) //IL_3d77: Unknown result type (might be due to invalid IL or missing references) //IL_4ca9: Unknown result type (might be due to invalid IL or missing references) //IL_4cb4: Unknown result type (might be due to invalid IL or missing references) //IL_4cbe: Unknown result type (might be due to invalid IL or missing references) //IL_4cc3: Unknown result type (might be due to invalid IL or missing references) //IL_4cc9: Unknown result type (might be due to invalid IL or missing references) //IL_4cce: Unknown result type (might be due to invalid IL or missing references) //IL_4cd3: Unknown result type (might be due to invalid IL or missing references) //IL_4cd8: Unknown result type (might be due to invalid IL or missing references) //IL_4cde: Unknown result type (might be due to invalid IL or missing references) //IL_4ce3: Unknown result type (might be due to invalid IL or missing references) //IL_4ce8: Unknown result type (might be due to invalid IL or missing references) //IL_4ced: Unknown result type (might be due to invalid IL or missing references) //IL_4cf7: Unknown result type (might be due to invalid IL or missing references) //IL_4cfc: Unknown result type (might be due to invalid IL or missing references) //IL_4d02: Unknown result type (might be due to invalid IL or missing references) //IL_4d07: Unknown result type (might be due to invalid IL or missing references) //IL_4d0c: Unknown result type (might be due to invalid IL or missing references) //IL_4d11: Unknown result type (might be due to invalid IL or missing references) //IL_4d1c: Unknown result type (might be due to invalid IL or missing references) //IL_4d21: Unknown result type (might be due to invalid IL or missing references) //IL_4d2c: Unknown result type (might be due to invalid IL or missing references) //IL_4d37: Unknown result type (might be due to invalid IL or missing references) //IL_4d41: Unknown result type (might be due to invalid IL or missing references) //IL_4d46: Unknown result type (might be due to invalid IL or missing references) //IL_4d4c: Unknown result type (might be due to invalid IL or missing references) //IL_4d51: Unknown result type (might be due to invalid IL or missing references) //IL_4d56: Unknown result type (might be due to invalid IL or missing references) //IL_4d5b: Unknown result type (might be due to invalid IL or missing references) //IL_4d65: Unknown result type (might be due to invalid IL or missing references) //IL_4d6a: Unknown result type (might be due to invalid IL or missing references) //IL_4d70: Unknown result type (might be due to invalid IL or missing references) //IL_4d75: Unknown result type (might be due to invalid IL or missing references) //IL_4d7a: Unknown result type (might be due to invalid IL or missing references) //IL_4d7f: Unknown result type (might be due to invalid IL or missing references) //IL_4d8a: Unknown result type (might be due to invalid IL or missing references) //IL_4d8f: Unknown result type (might be due to invalid IL or missing references) //IL_4d9b: Unknown result type (might be due to invalid IL or missing references) //IL_3db2: Unknown result type (might be due to invalid IL or missing references) //IL_3dbd: Unknown result type (might be due to invalid IL or missing references) //IL_3dc7: Unknown result type (might be due to invalid IL or missing references) //IL_3dcc: Unknown result type (might be due to invalid IL or missing references) //IL_3dd2: Unknown result type (might be due to invalid IL or missing references) //IL_3dd7: Unknown result type (might be due to invalid IL or missing references) //IL_3ddc: Unknown result type (might be due to invalid IL or missing references) //IL_3de1: Unknown result type (might be due to invalid IL or missing references) //IL_3dec: Unknown result type (might be due to invalid IL or missing references) //IL_3df7: Unknown result type (might be due to invalid IL or missing references) //IL_3e01: Unknown result type (might be due to invalid IL or missing references) //IL_3e06: Unknown result type (might be due to invalid IL or missing references) //IL_3e12: Unknown result type (might be due to invalid IL or missing references) //IL_2d22: Unknown result type (might be due to invalid IL or missing references) //IL_2d27: Unknown result type (might be due to invalid IL or missing references) //IL_2d31: Unknown result type (might be due to invalid IL or missing references) //IL_2d36: Unknown result type (might be due to invalid IL or missing references) //IL_2d3b: Unknown result type (might be due to invalid IL or missing references) //IL_2d40: Unknown result type (might be due to invalid IL or missing references) //IL_2d56: Unknown result type (might be due to invalid IL or missing references) //IL_2d5b: Unknown result type (might be due to invalid IL or missing references) //IL_2d6b: Unknown result type (might be due to invalid IL or missing references) //IL_2d70: Unknown result type (might be due to invalid IL or missing references) //IL_2d85: Unknown result type (might be due to invalid IL or missing references) //IL_2d8a: Unknown result type (might be due to invalid IL or missing references) //IL_2d94: Unknown result type (might be due to invalid IL or missing references) //IL_2d99: Unknown result type (might be due to invalid IL or missing references) //IL_2d9e: Unknown result type (might be due to invalid IL or missing references) //IL_2da3: Unknown result type (might be due to invalid IL or missing references) //IL_2db9: Unknown result type (might be due to invalid IL or missing references) //IL_2dbe: Unknown result type (might be due to invalid IL or missing references) //IL_2dc8: Unknown result type (might be due to invalid IL or missing references) //IL_2dcd: Unknown result type (might be due to invalid IL or missing references) //IL_2c47: Unknown result type (might be due to invalid IL or missing references) //IL_2c4c: Unknown result type (might be due to invalid IL or missing references) //IL_2c56: Unknown result type (might be due to invalid IL or missing references) //IL_2c5b: Unknown result type (might be due to invalid IL or missing references) //IL_2c60: Unknown result type (might be due to invalid IL or missing references) //IL_2c65: Unknown result type (might be due to invalid IL or missing references) //IL_2c7b: Unknown result type (might be due to invalid IL or missing references) //IL_2c80: Unknown result type (might be due to invalid IL or missing references) //IL_2c90: Unknown result type (might be due to invalid IL or missing references) //IL_2c95: Unknown result type (might be due to invalid IL or missing references) //IL_2caa: Unknown result type (might be due to invalid IL or missing references) //IL_2caf: Unknown result type (might be due to invalid IL or missing references) //IL_2cb9: Unknown result type (might be due to invalid IL or missing references) //IL_2cbe: Unknown result type (might be due to invalid IL or missing references) //IL_2cc3: Unknown result type (might be due to invalid IL or missing references) //IL_2cc8: Unknown result type (might be due to invalid IL or missing references) //IL_2cde: Unknown result type (might be due to invalid IL or missing references) //IL_2ce3: Unknown result type (might be due to invalid IL or missing references) //IL_2ced: Unknown result type (might be due to invalid IL or missing references) //IL_2cf2: Unknown result type (might be due to invalid IL or missing references) //IL_4dd6: Unknown result type (might be due to invalid IL or missing references) //IL_4de1: Unknown result type (might be due to invalid IL or missing references) //IL_4deb: Unknown result type (might be due to invalid IL or missing references) //IL_4df0: Unknown result type (might be due to invalid IL or missing references) //IL_4df6: Unknown result type (might be due to invalid IL or missing references) //IL_4dfb: Unknown result type (might be due to invalid IL or missing references) //IL_4e00: Unknown result type (might be due to invalid IL or missing references) //IL_4e05: Unknown result type (might be due to invalid IL or missing references) //IL_4e10: Unknown result type (might be due to invalid IL or missing references) //IL_4e1b: Unknown result type (might be due to invalid IL or missing references) //IL_4e25: Unknown result type (might be due to invalid IL or missing references) //IL_4e2a: Unknown result type (might be due to invalid IL or missing references) //IL_4e36: Unknown result type (might be due to invalid IL or missing references) //IL_2df8: Unknown result type (might be due to invalid IL or missing references) //IL_2dfd: Unknown result type (might be due to invalid IL or missing references) //IL_3f35: Unknown result type (might be due to invalid IL or missing references) //IL_3f3a: Unknown result type (might be due to invalid IL or missing references) //IL_3f44: Unknown result type (might be due to invalid IL or missing references) //IL_3f49: Unknown result type (might be due to invalid IL or missing references) //IL_3f4e: Unknown result type (might be due to invalid IL or missing references) //IL_3f53: Unknown result type (might be due to invalid IL or missing references) //IL_3f69: Unknown result type (might be due to invalid IL or missing references) //IL_3f6e: Unknown result type (might be due to invalid IL or missing references) //IL_3f7e: Unknown result type (might be due to invalid IL or missing references) //IL_3f83: Unknown result type (might be due to invalid IL or missing references) //IL_3f98: Unknown result type (might be due to invalid IL or missing references) //IL_3f9d: Unknown result type (might be due to invalid IL or missing references) //IL_3fa7: Unknown result type (might be due to invalid IL or missing references) //IL_3fac: Unknown result type (might be due to invalid IL or missing references) //IL_3fb1: Unknown result type (might be due to invalid IL or missing references) //IL_3fb6: Unknown result type (might be due to invalid IL or missing references) //IL_3fcc: Unknown result type (might be due to invalid IL or missing references) //IL_3fd1: Unknown result type (might be due to invalid IL or missing references) //IL_3fdb: Unknown result type (might be due to invalid IL or missing references) //IL_3fe0: Unknown result type (might be due to invalid IL or missing references) //IL_3e5a: Unknown result type (might be due to invalid IL or missing references) //IL_3e5f: Unknown result type (might be due to invalid IL or missing references) //IL_3e69: Unknown result type (might be due to invalid IL or missing references) //IL_3e6e: Unknown result type (might be due to invalid IL or missing references) //IL_3e73: Unknown result type (might be due to invalid IL or missing references) //IL_3e78: Unknown result type (might be due to invalid IL or missing references) //IL_3e8e: Unknown result type (might be due to invalid IL or missing references) //IL_3e93: Unknown result type (might be due to invalid IL or missing references) //IL_3ea3: Unknown result type (might be due to invalid IL or missing references) //IL_3ea8: Unknown result type (might be due to invalid IL or missing references) //IL_3ebd: Unknown result type (might be due to invalid IL or missing references) //IL_3ec2: Unknown result type (might be due to invalid IL or missing references) //IL_3ecc: Unknown result type (might be due to invalid IL or missing references) //IL_3ed1: Unknown result type (might be due to invalid IL or missing references) //IL_3ed6: Unknown result type (might be due to invalid IL or missing references) //IL_3edb: Unknown result type (might be due to invalid IL or missing references) //IL_3ef1: Unknown result type (might be due to invalid IL or missing references) //IL_3ef6: Unknown result type (might be due to invalid IL or missing references) //IL_3f00: Unknown result type (might be due to invalid IL or missing references) //IL_3f05: Unknown result type (might be due to invalid IL or missing references) //IL_4f59: Unknown result type (might be due to invalid IL or missing references) //IL_4f5e: Unknown result type (might be due to invalid IL or missing references) //IL_4f68: Unknown result type (might be due to invalid IL or missing references) //IL_4f6d: Unknown result type (might be due to invalid IL or missing references) //IL_4f72: Unknown result type (might be due to invalid IL or missing references) //IL_4f77: Unknown result type (might be due to invalid IL or missing references) //IL_4f8d: Unknown result type (might be due to invalid IL or missing references) //IL_4f92: Unknown result type (might be due to invalid IL or missing references) //IL_4fa2: Unknown result type (might be due to invalid IL or missing references) //IL_4fa7: Unknown result type (might be due to invalid IL or missing references) //IL_4fbc: Unknown result type (might be due to invalid IL or missing references) //IL_4fc1: Unknown result type (might be due to invalid IL or missing references) //IL_4fcb: Unknown result type (might be due to invalid IL or missing references) //IL_4fd0: Unknown result type (might be due to invalid IL or missing references) //IL_4fd5: Unknown result type (might be due to invalid IL or missing references) //IL_4fda: Unknown result type (might be due to invalid IL or missing references) //IL_4ff0: Unknown result type (might be due to invalid IL or missing references) //IL_4ff5: Unknown result type (might be due to invalid IL or missing references) //IL_4fff: Unknown result type (might be due to invalid IL or missing references) //IL_5004: Unknown result type (might be due to invalid IL or missing references) //IL_4e7e: Unknown result type (might be due to invalid IL or missing references) //IL_4e83: Unknown result type (might be due to invalid IL or missing references) //IL_4e8d: Unknown result type (might be due to invalid IL or missing references) //IL_4e92: Unknown result type (might be due to invalid IL or missing references) //IL_4e97: Unknown result type (might be due to invalid IL or missing references) //IL_4e9c: Unknown result type (might be due to invalid IL or missing references) //IL_4eb2: Unknown result type (might be due to invalid IL or missing references) //IL_4eb7: Unknown result type (might be due to invalid IL or missing references) //IL_4ec7: Unknown result type (might be due to invalid IL or missing references) //IL_4ecc: Unknown result type (might be due to invalid IL or missing references) //IL_4ee1: Unknown result type (might be due to invalid IL or missing references) //IL_4ee6: Unknown result type (might be due to invalid IL or missing references) //IL_4ef0: Unknown result type (might be due to invalid IL or missing references) //IL_4ef5: Unknown result type (might be due to invalid IL or missing references) //IL_4efa: Unknown result type (might be due to invalid IL or missing references) //IL_4eff: Unknown result type (might be due to invalid IL or missing references) //IL_4f15: Unknown result type (might be due to invalid IL or missing references) //IL_4f1a: Unknown result type (might be due to invalid IL or missing references) //IL_4f24: Unknown result type (might be due to invalid IL or missing references) //IL_4f29: Unknown result type (might be due to invalid IL or missing references) //IL_400b: Unknown result type (might be due to invalid IL or missing references) //IL_4010: Unknown result type (might be due to invalid IL or missing references) //IL_502f: Unknown result type (might be due to invalid IL or missing references) //IL_5034: Unknown result type (might be due to invalid IL or missing references) //IL_2e46: Unknown result type (might be due to invalid IL or missing references) //IL_2e4b: Unknown result type (might be due to invalid IL or missing references) //IL_2e5a: Unknown result type (might be due to invalid IL or missing references) //IL_2e5f: Unknown result type (might be due to invalid IL or missing references) //IL_2e6f: Unknown result type (might be due to invalid IL or missing references) //IL_2e74: Unknown result type (might be due to invalid IL or missing references) //IL_2e83: Unknown result type (might be due to invalid IL or missing references) //IL_2e88: Unknown result type (might be due to invalid IL or missing references) //IL_2ea3: Unknown result type (might be due to invalid IL or missing references) //IL_2ea8: Unknown result type (might be due to invalid IL or missing references) //IL_2eb7: Unknown result type (might be due to invalid IL or missing references) //IL_2ebc: Unknown result type (might be due to invalid IL or missing references) //IL_2ecc: Unknown result type (might be due to invalid IL or missing references) //IL_2ed1: Unknown result type (might be due to invalid IL or missing references) //IL_2ee0: Unknown result type (might be due to invalid IL or missing references) //IL_2ee5: Unknown result type (might be due to invalid IL or missing references) //IL_2ef0: Unknown result type (might be due to invalid IL or missing references) //IL_2ef5: Unknown result type (might be due to invalid IL or missing references) //IL_4059: Unknown result type (might be due to invalid IL or missing references) //IL_405e: Unknown result type (might be due to invalid IL or missing references) //IL_406d: Unknown result type (might be due to invalid IL or missing references) //IL_4072: Unknown result type (might be due to invalid IL or missing references) //IL_4082: Unknown result type (might be due to invalid IL or missing references) //IL_4087: Unknown result type (might be due to invalid IL or missing references) //IL_4096: Unknown result type (might be due to invalid IL or missing references) //IL_409b: Unknown result type (might be due to invalid IL or missing references) //IL_40b6: Unknown result type (might be due to invalid IL or missing references) //IL_40bb: Unknown result type (might be due to invalid IL or missing references) //IL_40ca: Unknown result type (might be due to invalid IL or missing references) //IL_40cf: Unknown result type (might be due to invalid IL or missing references) //IL_40df: Unknown result type (might be due to invalid IL or missing references) //IL_40e4: Unknown result type (might be due to invalid IL or missing references) //IL_40f3: Unknown result type (might be due to invalid IL or missing references) //IL_40f8: Unknown result type (might be due to invalid IL or missing references) //IL_4103: Unknown result type (might be due to invalid IL or missing references) //IL_4108: Unknown result type (might be due to invalid IL or missing references) //IL_507d: Unknown result type (might be due to invalid IL or missing references) //IL_5082: Unknown result type (might be due to invalid IL or missing references) //IL_5091: Unknown result type (might be due to invalid IL or missing references) //IL_5096: Unknown result type (might be due to invalid IL or missing references) //IL_50a6: Unknown result type (might be due to invalid IL or missing references) //IL_50ab: Unknown result type (might be due to invalid IL or missing references) //IL_50ba: Unknown result type (might be due to invalid IL or missing references) //IL_50bf: Unknown result type (might be due to invalid IL or missing references) //IL_50da: Unknown result type (might be due to invalid IL or missing references) //IL_50df: Unknown result type (might be due to invalid IL or missing references) //IL_50ee: Unknown result type (might be due to invalid IL or missing references) //IL_50f3: Unknown result type (might be due to invalid IL or missing references) //IL_5103: Unknown result type (might be due to invalid IL or missing references) //IL_5108: Unknown result type (might be due to invalid IL or missing references) //IL_5117: Unknown result type (might be due to invalid IL or missing references) //IL_511c: Unknown result type (might be due to invalid IL or missing references) //IL_5127: Unknown result type (might be due to invalid IL or missing references) //IL_512c: Unknown result type (might be due to invalid IL or missing references) i++; if (i == climbing.Length) { i = 0; } if (!firstTest && !secondTest && !thirdTest && !fourthTest && !fifthTest) { SetClimbingVariables(); } if (((Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.1f + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.1f - ((Component)this).transform.right / 2f + sideLedgeDetectorsLength2 + firstSideLedgeDetectorsHeight2 - sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.1f - ((Component)this).transform.right / 2f + sideLedgeDetectorsLength2 + firstSideLedgeDetectorsHeight2 - sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.1f + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.5f + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.5f - ((Component)this).transform.right / 2f + sideLedgeDetectorsLength2 + secondSideLedgeDetectorsHeight2 - sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.5f + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.5f + ((Component)this).transform.right / 2f - sideLedgeDetectorsLength2 + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.5f - ((Component)this).transform.right / 2f + sideLedgeDetectorsLength2 + secondSideLedgeDetectorsHeight2 - sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.5f + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.right / 2f + sideLedgeDetectorsLength2 - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight2 - sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward / 2f - ((Component)this).transform.up + ((Component)this).transform.right / 2f - sideLedgeDetectorsLength2 + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.right / 2f + sideLedgeDetectorsLength2 - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight2 - sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2)) && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.1f + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.1f + ((Component)this).transform.right / 2f - sideLedgeDetectorsLength2 + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { fifthTest = true; } else if (((Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.1f + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.1f + ((Component)this).transform.right / 2f + sideLedgeDetectorsLength2 + firstSideLedgeDetectorsHeight2 + sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.1f + ((Component)this).transform.right / 2f + sideLedgeDetectorsLength2 + firstSideLedgeDetectorsHeight2 + sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.1f + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.5f + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.5f + ((Component)this).transform.right / 2f + sideLedgeDetectorsLength2 + secondSideLedgeDetectorsHeight2 + sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.5f + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.5f - ((Component)this).transform.right / 2f - sideLedgeDetectorsLength2 + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.5f + ((Component)this).transform.right / 2f + sideLedgeDetectorsLength2 + secondSideLedgeDetectorsHeight2 + sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.5f + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 4f + ((Component)this).transform.right / 2f + sideLedgeDetectorsLength2 - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight2 + sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward / 2f - ((Component)this).transform.up - ((Component)this).transform.right / 2f - sideLedgeDetectorsLength2 + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 4f + ((Component)this).transform.right / 2f + sideLedgeDetectorsLength2 - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight2 + sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2)) && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.1f + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.1f - ((Component)this).transform.right / 2f - sideLedgeDetectorsLength2 + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { fifthTest = true; } else if (((Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.05f + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward * 0.25f - ((Component)this).transform.up * 0.05f + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.15f + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward * 0.25f - ((Component)this).transform.up * 0.15f + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.25f + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward * 0.25f - ((Component)this).transform.up * 0.25f + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.05f + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward * 0.5f - ((Component)this).transform.up * 0.05f + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.15f + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward * 0.5f - ((Component)this).transform.up * 0.15f + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.25f + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward * 0.5f - ((Component)this).transform.up * 0.25f + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f)) && !Physics.Linecast(new Vector3((((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / 4.5454545f).x, ((Component)this).transform.position.y + ((Component)this).transform.up.y * 0.5f, (((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / 4.5454545f).z), new Vector3((((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / 4.5454545f).x, ((Component)this).transform.position.y - ((Component)this).transform.up.y * 1.5f - spaceBelowNeededToGrabBackOnHeight2.y, (((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / 4.5454545f).z), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers))) { fifthTest = true; } else { fifthTest = false; } if (!turnBack && (Input.GetAxisRaw("Horizontal") != 0f || Input.GetAxisRaw("Vertical") != 0f) && !wallIsClimbable && !Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.up * 0.5f, ((Component)this).transform.position + ((Component)this).transform.forward / 1.5f + ((Component)this).transform.up * 0.5f + spaceInFrontNeededToGrabBackOn2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && !back2 && !currentlyClimbingWall && !Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 4f + ((Component)this).transform.up * 0.5f + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 1.5f - spaceBelowNeededToGrabBackOnHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && !Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 1.5f + ((Component)this).transform.up * 0.5f + spaceInFrontNeededToGrabBackOn2, ((Component)this).transform.position + ((Component)this).transform.forward / 1.5f - ((Component)this).transform.up * 1.5f + spaceInFrontNeededToGrabBackOn2 - spaceBelowNeededToGrabBackOnHeight2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers))) { if (((Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.1f + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.1f - ((Component)this).transform.right / 4f + sideLedgeDetectorsLength2 + firstSideLedgeDetectorsHeight2 - sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.1f - ((Component)this).transform.right / 4f + sideLedgeDetectorsLength2 + firstSideLedgeDetectorsHeight2 - sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.1f + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.5f + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.5f - ((Component)this).transform.right / 4f + sideLedgeDetectorsLength2 + secondSideLedgeDetectorsHeight2 - sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 3f - ((Component)this).transform.up * 0.5f + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.5f + ((Component)this).transform.right / 4f - sideLedgeDetectorsLength2 + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.5f - ((Component)this).transform.right / 4f + sideLedgeDetectorsLength2 + secondSideLedgeDetectorsHeight2 - sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.5f + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.right / 4f + sideLedgeDetectorsLength2 - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight2 - sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 3f - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward / 4f - ((Component)this).transform.up + ((Component)this).transform.right / 4f - sideLedgeDetectorsLength2 + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.right / 4f + sideLedgeDetectorsLength2 - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight2 - sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2)) && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 3f - ((Component)this).transform.up * 0.1f + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.1f + ((Component)this).transform.right / 4f - sideLedgeDetectorsLength2 + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { fifthTest = true; if (Physics.Raycast(((Component)this).transform.position - ((Component)this).transform.up / 9f + ((Component)this).transform.forward, -((Component)this).transform.forward / 4f, ref hit, 3f, LayerMask.op_Implicit(noWaterCollisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { rotationHit = -((RaycastHit)(ref hit)).normal; backRotation = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); normalRotation = Quaternion.LookRotation(((RaycastHit)(ref hit)).normal); } else if (Physics.Raycast(((Component)this).transform.position - ((Component)this).transform.up / 20f + ((Component)this).transform.forward, -((Component)this).transform.forward / 4f, ref hit, 3f, LayerMask.op_Implicit(noWaterCollisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { rotationHit = -((RaycastHit)(ref hit)).normal; backRotation = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); normalRotation = Quaternion.LookRotation(((RaycastHit)(ref hit)).normal); } else { rotationHit = Vector3.zero; backRotation = Quaternion.LookRotation(-((Component)this).transform.forward, Vector3.up); normalRotation = Quaternion.LookRotation(((Component)this).transform.forward, Vector3.up); } if (Physics.Linecast(((Component)this).transform.position - ((Component)this).transform.up * 0.1f + normalRotation * Vector3.forward, ((Component)this).transform.position - ((Component)this).transform.up * 0.1f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position - ((Component)this).transform.up * 0.1f + normalRotation * Vector3.forward + normalRotation * Vector3.right / 3f + normalRotation * Vector3.right * sideNoSurfaceDetectorsWidthTurnBack2, ((Component)this).transform.position - ((Component)this).transform.up * 0.1f + normalRotation * Vector3.right / 3f + normalRotation * Vector3.right * sideNoSurfaceDetectorsWidthTurnBack2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position - ((Component)this).transform.up * 0.1f + normalRotation * Vector3.forward + normalRotation * -Vector3.right / 3f + normalRotation * -Vector3.right * sideNoSurfaceDetectorsWidthTurnBack2, ((Component)this).transform.position - ((Component)this).transform.up * 0.1f + normalRotation * -Vector3.right / 3f + normalRotation * -Vector3.right * sideNoSurfaceDetectorsWidthTurnBack2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position - ((Component)this).transform.up * 0.1f + normalRotation * Vector3.forward, ((Component)this).transform.position - ((Component)this).transform.up * 0.1f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { if (snapToCenterOfObject2) { backPoint = new Vector3(((RaycastHit)(ref hit)).point.x + (normalRotation * Vector3.forward).x * 1.4f - ((RaycastHit)(ref hit)).normal.x, ((RaycastHit)(ref hit)).point.y - 1.15f, ((RaycastHit)(ref hit)).point.z + (normalRotation * Vector3.forward).z * 1.4f - ((RaycastHit)(ref hit)).normal.z); playerPosY = backPoint.y - topNoSurfaceDetectorHeight2.y; } else { backPoint = new Vector3(((RaycastHit)(ref hit)).point.x + (normalRotation * Vector3.forward).x * 1.2f - ((RaycastHit)(ref hit)).normal.x, ((RaycastHit)(ref hit)).point.y - 1.15f, ((RaycastHit)(ref hit)).point.z + (normalRotation * Vector3.forward).z * 1.2f - ((RaycastHit)(ref hit)).normal.z); playerPosY = backPoint.y - topNoSurfaceDetectorHeight2.y + 0.13f; } turnBackPoint = backPoint; if (!snappingToCenter && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && !wallIsClimbable && !currentlyClimbingWall) { centerPoint = new Vector3(((RaycastHit)(ref hit)).transform.position.x - ((Component)this).transform.position.x + (((Component)this).transform.position.x - ((RaycastHit)(ref hit)).point.x), 0f, ((RaycastHit)(ref hit)).transform.position.z - ((Component)this).transform.position.z + (((Component)this).transform.position.z - ((RaycastHit)(ref hit)).point.z)); } if (snapToCenterOfObject2) { snappingToCenter = true; } turnBackRight = true; turnBackLeft = false; turnBackMiddle = false; turnBack = true; } } else if (((Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.1f + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.1f + ((Component)this).transform.right / 4f + sideLedgeDetectorsLength2 + firstSideLedgeDetectorsHeight2 + sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.1f + ((Component)this).transform.right / 4f + sideLedgeDetectorsLength2 + firstSideLedgeDetectorsHeight2 + sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.1f + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.5f + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.5f + ((Component)this).transform.right / 4f + sideLedgeDetectorsLength2 + secondSideLedgeDetectorsHeight2 + sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 3f - ((Component)this).transform.up * 0.5f + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.5f - ((Component)this).transform.right / 4f - sideLedgeDetectorsLength2 + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.5f + ((Component)this).transform.right / 4f + sideLedgeDetectorsLength2 + secondSideLedgeDetectorsHeight2 + sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.5f + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 2f + ((Component)this).transform.right / 4f + sideLedgeDetectorsLength2 - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight2 + sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 3f - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward / 4f - ((Component)this).transform.up - ((Component)this).transform.right / 4f - sideLedgeDetectorsLength2 + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f + ((Component)this).transform.right / 4f + sideLedgeDetectorsLength2 - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight2 + sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2)) && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 3f - ((Component)this).transform.up * 0.1f + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.1f - ((Component)this).transform.right / 4f - sideLedgeDetectorsLength2 + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { fifthTest = true; if (Physics.Raycast(((Component)this).transform.position - ((Component)this).transform.up / 9f + ((Component)this).transform.forward, -((Component)this).transform.forward / 4f, ref hit, 3f, LayerMask.op_Implicit(noWaterCollisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { rotationHit = -((RaycastHit)(ref hit)).normal; backRotation = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); normalRotation = Quaternion.LookRotation(((RaycastHit)(ref hit)).normal); } else if (Physics.Raycast(((Component)this).transform.position - ((Component)this).transform.up / 20f + ((Component)this).transform.forward, -((Component)this).transform.forward / 4f, ref hit, 3f, LayerMask.op_Implicit(noWaterCollisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { rotationHit = -((RaycastHit)(ref hit)).normal; backRotation = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); normalRotation = Quaternion.LookRotation(((RaycastHit)(ref hit)).normal); } else { rotationHit = Vector3.zero; backRotation = Quaternion.LookRotation(-((Component)this).transform.forward, Vector3.up); normalRotation = Quaternion.LookRotation(((Component)this).transform.forward, Vector3.up); } if (Physics.Linecast(((Component)this).transform.position - ((Component)this).transform.up * 0.1f + normalRotation * Vector3.forward, ((Component)this).transform.position - ((Component)this).transform.up * 0.1f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position - ((Component)this).transform.up * 0.1f + normalRotation * Vector3.forward + normalRotation * Vector3.right / 3f + normalRotation * Vector3.right * sideNoSurfaceDetectorsWidthTurnBack2, ((Component)this).transform.position - ((Component)this).transform.up * 0.1f + normalRotation * Vector3.right / 3f + normalRotation * Vector3.right * sideNoSurfaceDetectorsWidthTurnBack2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position - ((Component)this).transform.up * 0.1f + normalRotation * Vector3.forward + normalRotation * -Vector3.right / 3f + normalRotation * -Vector3.right * sideNoSurfaceDetectorsWidthTurnBack2, ((Component)this).transform.position - ((Component)this).transform.up * 0.1f + normalRotation * -Vector3.right / 3f + normalRotation * -Vector3.right * sideNoSurfaceDetectorsWidthTurnBack2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position - ((Component)this).transform.up * 0.1f + normalRotation * Vector3.forward, ((Component)this).transform.position - ((Component)this).transform.up * 0.1f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { if (snapToCenterOfObject2) { backPoint = new Vector3(((RaycastHit)(ref hit)).point.x + (normalRotation * Vector3.forward).x * 1.4f - ((RaycastHit)(ref hit)).normal.x, ((RaycastHit)(ref hit)).point.y - 1.15f, ((RaycastHit)(ref hit)).point.z + (normalRotation * Vector3.forward).z * 1.4f - ((RaycastHit)(ref hit)).normal.z); playerPosY = backPoint.y - topNoSurfaceDetectorHeight2.y; } else { backPoint = new Vector3(((RaycastHit)(ref hit)).point.x + (normalRotation * Vector3.forward).x * 1.2f - ((RaycastHit)(ref hit)).normal.x, ((RaycastHit)(ref hit)).point.y - 1.15f, ((RaycastHit)(ref hit)).point.z + (normalRotation * Vector3.forward).z * 1.2f - ((RaycastHit)(ref hit)).normal.z); playerPosY = backPoint.y - topNoSurfaceDetectorHeight2.y + 0.13f; } turnBackPoint = backPoint; if (!snappingToCenter && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && !wallIsClimbable && !currentlyClimbingWall) { centerPoint = new Vector3(((RaycastHit)(ref hit)).transform.position.x - ((Component)this).transform.position.x + (((Component)this).transform.position.x - ((RaycastHit)(ref hit)).point.x), 0f, ((RaycastHit)(ref hit)).transform.position.z - ((Component)this).transform.position.z + (((Component)this).transform.position.z - ((RaycastHit)(ref hit)).point.z)); } if (snapToCenterOfObject2) { snappingToCenter = true; } turnBackLeft = true; turnBackRight = false; turnBackMiddle = false; turnBack = true; } } else if (((Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 3.5f - ((Component)this).transform.up * 0.05f + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward * 0.25f - ((Component)this).transform.up * 0.05f + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 3.5f - ((Component)this).transform.up * 0.15f + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward * 0.25f - ((Component)this).transform.up * 0.15f + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 3.5f - ((Component)this).transform.up * 0.25f + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward * 0.25f - ((Component)this).transform.up * 0.25f + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 3.5f - ((Component)this).transform.up * 0.05f + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward * 0.5f - ((Component)this).transform.up * 0.05f + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 3.5f - ((Component)this).transform.up * 0.15f + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward * 0.5f - ((Component)this).transform.up * 0.15f + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 3.5f - ((Component)this).transform.up * 0.25f + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward * 0.5f - ((Component)this).transform.up * 0.25f + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f)) && !Physics.Linecast(new Vector3((((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / 4.5454545f).x, ((Component)this).transform.position.y + ((Component)this).transform.up.y * 0.5f, (((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / 4.5454545f).z), new Vector3((((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / 4.5454545f).x, ((Component)this).transform.position.y - ((Component)this).transform.up.y * 1.5f - spaceBelowNeededToGrabBackOnHeight2.y, (((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / 4.5454545f).z), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers))) { fifthTest = true; if (Physics.Raycast(((Component)this).transform.position - ((Component)this).transform.up / 9f + ((Component)this).transform.forward, -((Component)this).transform.forward / 4f, ref hit, 3f, LayerMask.op_Implicit(noWaterCollisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { rotationHit = -((RaycastHit)(ref hit)).normal; backRotation = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); normalRotation = Quaternion.LookRotation(((RaycastHit)(ref hit)).normal); } else if (Physics.Raycast(((Component)this).transform.position - ((Component)this).transform.up / 20f + ((Component)this).transform.forward, -((Component)this).transform.forward / 4f, ref hit, 3f, LayerMask.op_Implicit(noWaterCollisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { rotationHit = -((RaycastHit)(ref hit)).normal; backRotation = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); normalRotation = Quaternion.LookRotation(((RaycastHit)(ref hit)).normal); } else { rotationHit = Vector3.zero; backRotation = Quaternion.LookRotation(-((Component)this).transform.forward, Vector3.up); normalRotation = Quaternion.LookRotation(((Component)this).transform.forward, Vector3.up); } if (Physics.Linecast(((Component)this).transform.position - ((Component)this).transform.up * 0.1f + normalRotation * Vector3.forward, ((Component)this).transform.position - ((Component)this).transform.up * 0.1f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position - ((Component)this).transform.up * 0.1f + normalRotation * Vector3.forward + normalRotation * Vector3.right / 3f + normalRotation * Vector3.right * sideNoSurfaceDetectorsWidthTurnBack2, ((Component)this).transform.position - ((Component)this).transform.up * 0.1f + normalRotation * Vector3.right / 3f + normalRotation * Vector3.right * sideNoSurfaceDetectorsWidthTurnBack2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position - ((Component)this).transform.up * 0.1f + normalRotation * Vector3.forward + normalRotation * -Vector3.right / 3f + normalRotation * -Vector3.right * sideNoSurfaceDetectorsWidthTurnBack2, ((Component)this).transform.position - ((Component)this).transform.up * 0.1f + normalRotation * -Vector3.right / 3f + normalRotation * -Vector3.right * sideNoSurfaceDetectorsWidthTurnBack2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position - ((Component)this).transform.up * 0.1f + normalRotation * Vector3.forward, ((Component)this).transform.position - ((Component)this).transform.up * 0.1f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { if (snapToCenterOfObject2) { backPoint = new Vector3(((RaycastHit)(ref hit)).point.x + (normalRotation * Vector3.forward).x * 1.4f - ((RaycastHit)(ref hit)).normal.x, ((RaycastHit)(ref hit)).point.y - 1.15f, ((RaycastHit)(ref hit)).point.z + (normalRotation * Vector3.forward).z * 1.4f - ((RaycastHit)(ref hit)).normal.z); playerPosY = backPoint.y - topNoSurfaceDetectorHeight2.y; } else { backPoint = new Vector3(((RaycastHit)(ref hit)).point.x + (normalRotation * Vector3.forward).x * 1.2f - ((RaycastHit)(ref hit)).normal.x, ((RaycastHit)(ref hit)).point.y - 1.15f, ((RaycastHit)(ref hit)).point.z + (normalRotation * Vector3.forward).z * 1.2f - ((RaycastHit)(ref hit)).normal.z); playerPosY = backPoint.y - topNoSurfaceDetectorHeight2.y + 0.13f; } turnBackPoint = backPoint; if (!snappingToCenter && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && !wallIsClimbable && !currentlyClimbingWall) { centerPoint = new Vector3(((RaycastHit)(ref hit)).transform.position.x - ((Component)this).transform.position.x + (((Component)this).transform.position.x - ((RaycastHit)(ref hit)).point.x), 0f, ((RaycastHit)(ref hit)).transform.position.z - ((Component)this).transform.position.z + (((Component)this).transform.position.z - ((RaycastHit)(ref hit)).point.z)); } if (snapToCenterOfObject2) { snappingToCenter = true; } turnBackMiddle = true; turnBackLeft = false; turnBackRight = false; turnBack = true; } } else { turnBackMiddle = false; turnBackLeft = false; turnBackRight = false; turnBack = false; } } if (turnBack) { if ((Object)(object)animator != (Object)null) { AnimatorStateInfo currentAnimatorStateInfo = animator.GetCurrentAnimatorStateInfo(0); if (!((AnimatorStateInfo)(ref currentAnimatorStateInfo)).IsName("Climbing")) { animator.CrossFade("Climbing", 0f, -1, 0f); } } if (allowGrabbingOnAfterWalkingOffLedge2 && (turnBackMiddle || turnBackLeft || turnBackRight)) { if (!stayUpright2) { if (((Vector3.Distance(((Component)this).transform.position, new Vector3(turnBackPoint.x, playerPosY, turnBackPoint.z)) > 0.3f && !snapToCenterOfObject2) || (Vector3.Distance(((Component)this).transform.position, new Vector3(turnBackPoint.x, playerPosY + 0.012f, turnBackPoint.z)) > 0.3f && snapToCenterOfObject2) || Quaternion.Angle(((Component)this).transform.rotation, backRotation) > 0.1f) && ((!snapToCenterOfObject2 && turnBackTimer < 0.5f) || turnBackTimer < 0.2f)) { turnBackTimer += 0.02f; back2 = false; currentlyClimbingWall = false; if (!snapToCenterOfObject2) { if (Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled) { ((Component)this).transform.position = Vector3.Lerp(((Component)this).transform.position, new Vector3(turnBackPoint.x, playerPosY, turnBackPoint.z), 10f * Time.deltaTime); } else if (Object.op_Implicit((Object)(object)rigidBody)) { ((Component)this).transform.position = Vector3.Slerp(((Component)this).transform.position, new Vector3(turnBackPoint.x, playerPosY, turnBackPoint.z), 10f * Time.deltaTime); } } else { ((Component)this).transform.position = Vector3.Slerp(((Component)this).transform.position, new Vector3(turnBackPoint.x, playerPosY + 0.012f, turnBackPoint.z), 10f * Time.deltaTime); } if (!snapToCenterOfObject2 && Quaternion.Angle(((Component)this).transform.rotation, backRotation) < 45f) { if (reachedLeftPoint) { turnBackPoint += ((Component)this).transform.right / 30f; } if (reachedRightPoint) { turnBackPoint -= ((Component)this).transform.right / 30f; } } rotationNormal = backRotation; ((Component)this).transform.rotation = Quaternion.Slerp(((Component)this).transform.rotation, backRotation, 12f * Time.deltaTime); playerPosXZ = ((Component)this).transform.position; } else { turnBackTimer = 0f; back2 = true; turnBack = false; } } else if (((Vector3.Distance(((Component)this).transform.position, new Vector3(turnBackPoint.x, playerPosY, turnBackPoint.z)) > 0.3f && !snapToCenterOfObject2) || (Vector3.Distance(((Component)this).transform.position, new Vector3(turnBackPoint.x, playerPosY + 0.012f, turnBackPoint.z)) > 0.3f && snapToCenterOfObject2) || Quaternion.Angle(((Component)this).transform.rotation, backRotation) > 0.1f) && ((!snapToCenterOfObject2 && turnBackTimer < 0.5f) || turnBackTimer < 0.2f)) { turnBackTimer += 0.02f; back2 = false; currentlyClimbingWall = false; if (!snapToCenterOfObject2) { if (Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled) { ((Component)this).transform.position = Vector3.Lerp(((Component)this).transform.position, new Vector3(turnBackPoint.x, playerPosY, turnBackPoint.z), 10f * Time.deltaTime); } else if (Object.op_Implicit((Object)(object)rigidBody)) { ((Component)this).transform.position = Vector3.Slerp(((Component)this).transform.position, new Vector3(turnBackPoint.x, playerPosY, turnBackPoint.z), 10f * Time.deltaTime); } } else { ((Component)this).transform.position = Vector3.Slerp(((Component)this).transform.position, new Vector3(turnBackPoint.x, playerPosY + 0.012f, turnBackPoint.z), 10f * Time.deltaTime); } if (!snapToCenterOfObject2 && Quaternion.Angle(((Component)this).transform.rotation, backRotation) < 45f) { if (reachedLeftPoint) { turnBackPoint += ((Component)this).transform.right / 30f; } if (reachedRightPoint) { turnBackPoint -= ((Component)this).transform.right / 30f; } } rotationNormal = backRotation; ((Component)this).transform.rotation = Quaternion.Slerp(((Component)this).transform.rotation, backRotation, 12f * Time.deltaTime); playerPosXZ = ((Component)this).transform.position; } else { turnBackTimer = 0f; back2 = true; turnBack = false; } } else { back2 = false; turnBack = false; } } if (!allowGrabbingOnAfterWalkingOffLedge2) { return; } if (turnBack || back2) { climbDirection = Vector3.zero; swimDirection = Vector3.zero; swimmingMovementSpeed = 0f; swimmingMovementTransferred = true; moveDirection = Vector3.zero; moveSpeed = 0f; } if (!back2) { return; } turnBack = false; if (!currentlyClimbingWall) { if (!snapToCenterOfObject2) { ((Component)this).transform.position = new Vector3(playerPosXZ.x, ((Component)this).transform.position.y, playerPosXZ.z); } rotationNormal = backRotation; ((Component)this).transform.rotation = backRotation; currentlyClimbingWall = true; } back2 = false; } private void CheckClimbableEdges() { //IL_0098: Unknown result type (might be due to invalid IL or missing references) //IL_009d: Unknown result type (might be due to invalid IL or missing references) //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_00a5: Unknown result type (might be due to invalid IL or missing references) //IL_0029: Unknown result type (might be due to invalid IL or missing references) //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_0042: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_0066: Unknown result type (might be due to invalid IL or missing references) //IL_006b: Unknown result type (might be due to invalid IL or missing references) //IL_0070: Unknown result type (might be due to invalid IL or missing references) //IL_0075: Unknown result type (might be due to invalid IL or missing references) //IL_01bf: Unknown result type (might be due to invalid IL or missing references) //IL_01c5: Unknown result type (might be due to invalid IL or missing references) //IL_01ca: Unknown result type (might be due to invalid IL or missing references) //IL_01d5: Unknown result type (might be due to invalid IL or missing references) //IL_01df: Unknown result type (might be due to invalid IL or missing references) //IL_01e4: Unknown result type (might be due to invalid IL or missing references) //IL_01ef: Unknown result type (might be due to invalid IL or missing references) //IL_01f5: Unknown result type (might be due to invalid IL or missing references) //IL_01fa: Unknown result type (might be due to invalid IL or missing references) //IL_0205: Unknown result type (might be due to invalid IL or missing references) //IL_0216: Unknown result type (might be due to invalid IL or missing references) //IL_021b: Unknown result type (might be due to invalid IL or missing references) //IL_0226: Unknown result type (might be due to invalid IL or missing references) //IL_0230: Unknown result type (might be due to invalid IL or missing references) //IL_0235: Unknown result type (might be due to invalid IL or missing references) //IL_0241: Unknown result type (might be due to invalid IL or missing references) //IL_00c2: Unknown result type (might be due to invalid IL or missing references) //IL_00c7: Unknown result type (might be due to invalid IL or missing references) //IL_00ca: Unknown result type (might be due to invalid IL or missing references) //IL_00e6: Unknown result type (might be due to invalid IL or missing references) //IL_00eb: Unknown result type (might be due to invalid IL or missing references) //IL_00f0: Unknown result type (might be due to invalid IL or missing references) //IL_00f5: Unknown result type (might be due to invalid IL or missing references) //IL_0427: Unknown result type (might be due to invalid IL or missing references) //IL_042d: Unknown result type (might be due to invalid IL or missing references) //IL_0432: Unknown result type (might be due to invalid IL or missing references) //IL_043d: Unknown result type (might be due to invalid IL or missing references) //IL_0447: Unknown result type (might be due to invalid IL or missing references) //IL_044c: Unknown result type (might be due to invalid IL or missing references) //IL_0457: Unknown result type (might be due to invalid IL or missing references) //IL_045d: Unknown result type (might be due to invalid IL or missing references) //IL_0462: Unknown result type (might be due to invalid IL or missing references) //IL_046d: Unknown result type (might be due to invalid IL or missing references) //IL_047e: Unknown result type (might be due to invalid IL or missing references) //IL_0483: Unknown result type (might be due to invalid IL or missing references) //IL_048e: Unknown result type (might be due to invalid IL or missing references) //IL_0498: Unknown result type (might be due to invalid IL or missing references) //IL_049d: Unknown result type (might be due to invalid IL or missing references) //IL_04a9: Unknown result type (might be due to invalid IL or missing references) //IL_025b: Unknown result type (might be due to invalid IL or missing references) //IL_0261: Unknown result type (might be due to invalid IL or missing references) //IL_0266: Unknown result type (might be due to invalid IL or missing references) //IL_0271: Unknown result type (might be due to invalid IL or missing references) //IL_027b: Unknown result type (might be due to invalid IL or missing references) //IL_0280: Unknown result type (might be due to invalid IL or missing references) //IL_0286: Unknown result type (might be due to invalid IL or missing references) //IL_028b: Unknown result type (might be due to invalid IL or missing references) //IL_0296: Unknown result type (might be due to invalid IL or missing references) //IL_02a0: Unknown result type (might be due to invalid IL or missing references) //IL_02a5: Unknown result type (might be due to invalid IL or missing references) //IL_02b0: Unknown result type (might be due to invalid IL or missing references) //IL_02b6: Unknown result type (might be due to invalid IL or missing references) //IL_02bb: Unknown result type (might be due to invalid IL or missing references) //IL_02c6: Unknown result type (might be due to invalid IL or missing references) //IL_02d0: Unknown result type (might be due to invalid IL or missing references) //IL_02d5: Unknown result type (might be due to invalid IL or missing references) //IL_02db: Unknown result type (might be due to invalid IL or missing references) //IL_02e0: Unknown result type (might be due to invalid IL or missing references) //IL_02eb: Unknown result type (might be due to invalid IL or missing references) //IL_02fc: Unknown result type (might be due to invalid IL or missing references) //IL_0301: Unknown result type (might be due to invalid IL or missing references) //IL_030c: Unknown result type (might be due to invalid IL or missing references) //IL_0316: Unknown result type (might be due to invalid IL or missing references) //IL_031b: Unknown result type (might be due to invalid IL or missing references) //IL_0327: Unknown result type (might be due to invalid IL or missing references) //IL_0118: Unknown result type (might be due to invalid IL or missing references) //IL_011d: Unknown result type (might be due to invalid IL or missing references) //IL_0121: Unknown result type (might be due to invalid IL or missing references) //IL_0137: Unknown result type (might be due to invalid IL or missing references) //IL_013c: Unknown result type (might be due to invalid IL or missing references) //IL_0141: Unknown result type (might be due to invalid IL or missing references) //IL_0146: Unknown result type (might be due to invalid IL or missing references) //IL_0341: Unknown result type (might be due to invalid IL or missing references) //IL_0347: Unknown result type (might be due to invalid IL or missing references) //IL_034c: Unknown result type (might be due to invalid IL or missing references) //IL_0357: Unknown result type (might be due to invalid IL or missing references) //IL_0361: Unknown result type (might be due to invalid IL or missing references) //IL_0366: Unknown result type (might be due to invalid IL or missing references) //IL_036c: Unknown result type (might be due to invalid IL or missing references) //IL_0371: Unknown result type (might be due to invalid IL or missing references) //IL_037c: Unknown result type (might be due to invalid IL or missing references) //IL_0386: Unknown result type (might be due to invalid IL or missing references) //IL_038b: Unknown result type (might be due to invalid IL or missing references) //IL_0396: Unknown result type (might be due to invalid IL or missing references) //IL_039c: Unknown result type (might be due to invalid IL or missing references) //IL_03a1: Unknown result type (might be due to invalid IL or missing references) //IL_03ac: Unknown result type (might be due to invalid IL or missing references) //IL_03b6: Unknown result type (might be due to invalid IL or missing references) //IL_03bb: Unknown result type (might be due to invalid IL or missing references) //IL_03c1: Unknown result type (might be due to invalid IL or missing references) //IL_03c6: Unknown result type (might be due to invalid IL or missing references) //IL_03d1: Unknown result type (might be due to invalid IL or missing references) //IL_03e2: Unknown result type (might be due to invalid IL or missing references) //IL_03e7: Unknown result type (might be due to invalid IL or missing references) //IL_03f2: Unknown result type (might be due to invalid IL or missing references) //IL_03fc: Unknown result type (might be due to invalid IL or missing references) //IL_0401: Unknown result type (might be due to invalid IL or missing references) //IL_040d: Unknown result type (might be due to invalid IL or missing references) //IL_0169: Unknown result type (might be due to invalid IL or missing references) //IL_016e: Unknown result type (might be due to invalid IL or missing references) //IL_0172: Unknown result type (might be due to invalid IL or missing references) //IL_017d: Unknown result type (might be due to invalid IL or missing references) //IL_0182: Unknown result type (might be due to invalid IL or missing references) //IL_0197: Unknown result type (might be due to invalid IL or missing references) //IL_019c: Unknown result type (might be due to invalid IL or missing references) //IL_01a1: Unknown result type (might be due to invalid IL or missing references) //IL_01a6: Unknown result type (might be due to invalid IL or missing references) //IL_04e3: Unknown result type (might be due to invalid IL or missing references) //IL_04e9: Unknown result type (might be due to invalid IL or missing references) //IL_04ee: Unknown result type (might be due to invalid IL or missing references) //IL_04f9: Unknown result type (might be due to invalid IL or missing references) //IL_0503: Unknown result type (might be due to invalid IL or missing references) //IL_0508: Unknown result type (might be due to invalid IL or missing references) //IL_050e: Unknown result type (might be due to invalid IL or missing references) //IL_0513: Unknown result type (might be due to invalid IL or missing references) //IL_051e: Unknown result type (might be due to invalid IL or missing references) //IL_0528: Unknown result type (might be due to invalid IL or missing references) //IL_052d: Unknown result type (might be due to invalid IL or missing references) //IL_0538: Unknown result type (might be due to invalid IL or missing references) //IL_053e: Unknown result type (might be due to invalid IL or missing references) //IL_0543: Unknown result type (might be due to invalid IL or missing references) //IL_054e: Unknown result type (might be due to invalid IL or missing references) //IL_0558: Unknown result type (might be due to invalid IL or missing references) //IL_055d: Unknown result type (might be due to invalid IL or missing references) //IL_0563: Unknown result type (might be due to invalid IL or missing references) //IL_0568: Unknown result type (might be due to invalid IL or missing references) //IL_0573: Unknown result type (might be due to invalid IL or missing references) //IL_0584: Unknown result type (might be due to invalid IL or missing references) //IL_0589: Unknown result type (might be due to invalid IL or missing references) //IL_0594: Unknown result type (might be due to invalid IL or missing references) //IL_059e: Unknown result type (might be due to invalid IL or missing references) //IL_05a3: Unknown result type (might be due to invalid IL or missing references) //IL_05af: Unknown result type (might be due to invalid IL or missing references) //IL_084c: Unknown result type (might be due to invalid IL or missing references) //IL_0852: Unknown result type (might be due to invalid IL or missing references) //IL_0857: Unknown result type (might be due to invalid IL or missing references) //IL_0862: Unknown result type (might be due to invalid IL or missing references) //IL_086c: Unknown result type (might be due to invalid IL or missing references) //IL_0871: Unknown result type (might be due to invalid IL or missing references) //IL_087c: Unknown result type (might be due to invalid IL or missing references) //IL_0882: Unknown result type (might be due to invalid IL or missing references) //IL_0887: Unknown result type (might be due to invalid IL or missing references) //IL_0892: Unknown result type (might be due to invalid IL or missing references) //IL_08a3: Unknown result type (might be due to invalid IL or missing references) //IL_08a8: Unknown result type (might be due to invalid IL or missing references) //IL_08b3: Unknown result type (might be due to invalid IL or missing references) //IL_08bd: Unknown result type (might be due to invalid IL or missing references) //IL_08c2: Unknown result type (might be due to invalid IL or missing references) //IL_08ce: Unknown result type (might be due to invalid IL or missing references) //IL_0ab4: Unknown result type (might be due to invalid IL or missing references) //IL_0aba: Unknown result type (might be due to invalid IL or missing references) //IL_0abf: Unknown result type (might be due to invalid IL or missing references) //IL_0aca: Unknown result type (might be due to invalid IL or missing references) //IL_0ad4: Unknown result type (might be due to invalid IL or missing references) //IL_0ad9: Unknown result type (might be due to invalid IL or missing references) //IL_0ae4: Unknown result type (might be due to invalid IL or missing references) //IL_0aea: Unknown result type (might be due to invalid IL or missing references) //IL_0aef: Unknown result type (might be due to invalid IL or missing references) //IL_0afa: Unknown result type (might be due to invalid IL or missing references) //IL_0b0b: Unknown result type (might be due to invalid IL or missing references) //IL_0b10: Unknown result type (might be due to invalid IL or missing references) //IL_0b1b: Unknown result type (might be due to invalid IL or missing references) //IL_0b25: Unknown result type (might be due to invalid IL or missing references) //IL_0b2a: Unknown result type (might be due to invalid IL or missing references) //IL_0b36: Unknown result type (might be due to invalid IL or missing references) //IL_08e8: Unknown result type (might be due to invalid IL or missing references) //IL_08ee: Unknown result type (might be due to invalid IL or missing references) //IL_08f3: Unknown result type (might be due to invalid IL or missing references) //IL_08fe: Unknown result type (might be due to invalid IL or missing references) //IL_0908: Unknown result type (might be due to invalid IL or missing references) //IL_090d: Unknown result type (might be due to invalid IL or missing references) //IL_0913: Unknown result type (might be due to invalid IL or missing references) //IL_0918: Unknown result type (might be due to invalid IL or missing references) //IL_0923: Unknown result type (might be due to invalid IL or missing references) //IL_092d: Unknown result type (might be due to invalid IL or missing references) //IL_0932: Unknown result type (might be due to invalid IL or missing references) //IL_093d: Unknown result type (might be due to invalid IL or missing references) //IL_0943: Unknown result type (might be due to invalid IL or missing references) //IL_0948: Unknown result type (might be due to invalid IL or missing references) //IL_0953: Unknown result type (might be due to invalid IL or missing references) //IL_095d: Unknown result type (might be due to invalid IL or missing references) //IL_0962: Unknown result type (might be due to invalid IL or missing references) //IL_0968: Unknown result type (might be due to invalid IL or missing references) //IL_096d: Unknown result type (might be due to invalid IL or missing references) //IL_0978: Unknown result type (might be due to invalid IL or missing references) //IL_0989: Unknown result type (might be due to invalid IL or missing references) //IL_098e: Unknown result type (might be due to invalid IL or missing references) //IL_0999: Unknown result type (might be due to invalid IL or missing references) //IL_09a3: Unknown result type (might be due to invalid IL or missing references) //IL_09a8: Unknown result type (might be due to invalid IL or missing references) //IL_09b4: Unknown result type (might be due to invalid IL or missing references) //IL_05e9: Unknown result type (might be due to invalid IL or missing references) //IL_05ef: Unknown result type (might be due to invalid IL or missing references) //IL_05f4: Unknown result type (might be due to invalid IL or missing references) //IL_05ff: Unknown result type (might be due to invalid IL or missing references) //IL_0609: Unknown result type (might be due to invalid IL or missing references) //IL_060e: Unknown result type (might be due to invalid IL or missing references) //IL_0614: Unknown result type (might be due to invalid IL or missing references) //IL_0619: Unknown result type (might be due to invalid IL or missing references) //IL_0624: Unknown result type (might be due to invalid IL or missing references) //IL_062e: Unknown result type (might be due to invalid IL or missing references) //IL_0633: Unknown result type (might be due to invalid IL or missing references) //IL_063e: Unknown result type (might be due to invalid IL or missing references) //IL_0644: Unknown result type (might be due to invalid IL or missing references) //IL_0649: Unknown result type (might be due to invalid IL or missing references) //IL_0654: Unknown result type (might be due to invalid IL or missing references) //IL_065e: Unknown result type (might be due to invalid IL or missing references) //IL_0663: Unknown result type (might be due to invalid IL or missing references) //IL_0669: Unknown result type (might be due to invalid IL or missing references) //IL_066e: Unknown result type (might be due to invalid IL or missing references) //IL_0679: Unknown result type (might be due to invalid IL or missing references) //IL_068a: Unknown result type (might be due to invalid IL or missing references) //IL_068f: Unknown result type (might be due to invalid IL or missing references) //IL_069a: Unknown result type (might be due to invalid IL or missing references) //IL_06a4: Unknown result type (might be due to invalid IL or missing references) //IL_06a9: Unknown result type (might be due to invalid IL or missing references) //IL_06b5: Unknown result type (might be due to invalid IL or missing references) //IL_070d: Unknown result type (might be due to invalid IL or missing references) //IL_0713: Unknown result type (might be due to invalid IL or missing references) //IL_09ce: Unknown result type (might be due to invalid IL or missing references) //IL_09d4: Unknown result type (might be due to invalid IL or missing references) //IL_09d9: Unknown result type (might be due to invalid IL or missing references) //IL_09e4: Unknown result type (might be due to invalid IL or missing references) //IL_09ee: Unknown result type (might be due to invalid IL or missing references) //IL_09f3: Unknown result type (might be due to invalid IL or missing references) //IL_09f9: Unknown result type (might be due to invalid IL or missing references) //IL_09fe: Unknown result type (might be due to invalid IL or missing references) //IL_0a09: Unknown result type (might be due to invalid IL or missing references) //IL_0a13: Unknown result type (might be due to invalid IL or missing references) //IL_0a18: Unknown result type (might be due to invalid IL or missing references) //IL_0a23: Unknown result type (might be due to invalid IL or missing references) //IL_0a29: Unknown result type (might be due to invalid IL or missing references) //IL_0a2e: Unknown result type (might be due to invalid IL or missing references) //IL_0a39: Unknown result type (might be due to invalid IL or missing references) //IL_0a43: Unknown result type (might be due to invalid IL or missing references) //IL_0a48: Unknown result type (might be due to invalid IL or missing references) //IL_0a4e: Unknown result type (might be due to invalid IL or missing references) //IL_0a53: Unknown result type (might be due to invalid IL or missing references) //IL_0a5e: Unknown result type (might be due to invalid IL or missing references) //IL_0a6f: Unknown result type (might be due to invalid IL or missing references) //IL_0a74: Unknown result type (might be due to invalid IL or missing references) //IL_0a7f: Unknown result type (might be due to invalid IL or missing references) //IL_0a89: Unknown result type (might be due to invalid IL or missing references) //IL_0a8e: Unknown result type (might be due to invalid IL or missing references) //IL_0a9a: Unknown result type (might be due to invalid IL or missing references) //IL_0b70: Unknown result type (might be due to invalid IL or missing references) //IL_0b76: Unknown result type (might be due to invalid IL or missing references) //IL_0b7b: Unknown result type (might be due to invalid IL or missing references) //IL_0b86: Unknown result type (might be due to invalid IL or missing references) //IL_0b90: Unknown result type (might be due to invalid IL or missing references) //IL_0b95: Unknown result type (might be due to invalid IL or missing references) //IL_0b9b: Unknown result type (might be due to invalid IL or missing references) //IL_0ba0: Unknown result type (might be due to invalid IL or missing references) //IL_0bab: Unknown result type (might be due to invalid IL or missing references) //IL_0bb5: Unknown result type (might be due to invalid IL or missing references) //IL_0bba: Unknown result type (might be due to invalid IL or missing references) //IL_0bc5: Unknown result type (might be due to invalid IL or missing references) //IL_0bcb: Unknown result type (might be due to invalid IL or missing references) //IL_0bd0: Unknown result type (might be due to invalid IL or missing references) //IL_0bdb: Unknown result type (might be due to invalid IL or missing references) //IL_0be5: Unknown result type (might be due to invalid IL or missing references) //IL_0bea: Unknown result type (might be due to invalid IL or missing references) //IL_0bf0: Unknown result type (might be due to invalid IL or missing references) //IL_0bf5: Unknown result type (might be due to invalid IL or missing references) //IL_0c00: Unknown result type (might be due to invalid IL or missing references) //IL_0c11: Unknown result type (might be due to invalid IL or missing references) //IL_0c16: Unknown result type (might be due to invalid IL or missing references) //IL_0c21: Unknown result type (might be due to invalid IL or missing references) //IL_0c2b: Unknown result type (might be due to invalid IL or missing references) //IL_0c30: Unknown result type (might be due to invalid IL or missing references) //IL_0c3c: Unknown result type (might be due to invalid IL or missing references) //IL_0d9e: Unknown result type (might be due to invalid IL or missing references) //IL_0da4: Unknown result type (might be due to invalid IL or missing references) //IL_0da9: Unknown result type (might be due to invalid IL or missing references) //IL_0db4: Unknown result type (might be due to invalid IL or missing references) //IL_0dbe: Unknown result type (might be due to invalid IL or missing references) //IL_0dc3: Unknown result type (might be due to invalid IL or missing references) //IL_0dce: Unknown result type (might be due to invalid IL or missing references) //IL_0dd4: Unknown result type (might be due to invalid IL or missing references) //IL_0dd9: Unknown result type (might be due to invalid IL or missing references) //IL_0de4: Unknown result type (might be due to invalid IL or missing references) //IL_0df5: Unknown result type (might be due to invalid IL or missing references) //IL_0dfa: Unknown result type (might be due to invalid IL or missing references) //IL_0e05: Unknown result type (might be due to invalid IL or missing references) //IL_0e0f: Unknown result type (might be due to invalid IL or missing references) //IL_0e14: Unknown result type (might be due to invalid IL or missing references) //IL_0e20: Unknown result type (might be due to invalid IL or missing references) //IL_0743: Unknown result type (might be due to invalid IL or missing references) //IL_0748: Unknown result type (might be due to invalid IL or missing references) //IL_074e: Unknown result type (might be due to invalid IL or missing references) //IL_0753: Unknown result type (might be due to invalid IL or missing references) //IL_077c: Unknown result type (might be due to invalid IL or missing references) //IL_0781: Unknown result type (might be due to invalid IL or missing references) //IL_078c: Unknown result type (might be due to invalid IL or missing references) //IL_0791: Unknown result type (might be due to invalid IL or missing references) //IL_0ef6: Unknown result type (might be due to invalid IL or missing references) //IL_0efc: Unknown result type (might be due to invalid IL or missing references) //IL_0f01: Unknown result type (might be due to invalid IL or missing references) //IL_0f0c: Unknown result type (might be due to invalid IL or missing references) //IL_0f16: Unknown result type (might be due to invalid IL or missing references) //IL_0f1b: Unknown result type (might be due to invalid IL or missing references) //IL_0f21: Unknown result type (might be due to invalid IL or missing references) //IL_0f26: Unknown result type (might be due to invalid IL or missing references) //IL_0f31: Unknown result type (might be due to invalid IL or missing references) //IL_0f3b: Unknown result type (might be due to invalid IL or missing references) //IL_0f40: Unknown result type (might be due to invalid IL or missing references) //IL_0f4b: Unknown result type (might be due to invalid IL or missing references) //IL_0f51: Unknown result type (might be due to invalid IL or missing references) //IL_0f56: Unknown result type (might be due to invalid IL or missing references) //IL_0f61: Unknown result type (might be due to invalid IL or missing references) //IL_0f6b: Unknown result type (might be due to invalid IL or missing references) //IL_0f70: Unknown result type (might be due to invalid IL or missing references) //IL_0f76: Unknown result type (might be due to invalid IL or missing references) //IL_0f7b: Unknown result type (might be due to invalid IL or missing references) //IL_0f86: Unknown result type (might be due to invalid IL or missing references) //IL_0f97: Unknown result type (might be due to invalid IL or missing references) //IL_0f9c: Unknown result type (might be due to invalid IL or missing references) //IL_0fa7: Unknown result type (might be due to invalid IL or missing references) //IL_0fb1: Unknown result type (might be due to invalid IL or missing references) //IL_0fb6: Unknown result type (might be due to invalid IL or missing references) //IL_0fc2: Unknown result type (might be due to invalid IL or missing references) //IL_0e3a: Unknown result type (might be due to invalid IL or missing references) //IL_0e40: Unknown result type (might be due to invalid IL or missing references) //IL_0e45: Unknown result type (might be due to invalid IL or missing references) //IL_0e50: Unknown result type (might be due to invalid IL or missing references) //IL_0e5a: Unknown result type (might be due to invalid IL or missing references) //IL_0e5f: Unknown result type (might be due to invalid IL or missing references) //IL_0e6a: Unknown result type (might be due to invalid IL or missing references) //IL_0e70: Unknown result type (might be due to invalid IL or missing references) //IL_0e75: Unknown result type (might be due to invalid IL or missing references) //IL_0e80: Unknown result type (might be due to invalid IL or missing references) //IL_0e91: Unknown result type (might be due to invalid IL or missing references) //IL_0e96: Unknown result type (might be due to invalid IL or missing references) //IL_0ea1: Unknown result type (might be due to invalid IL or missing references) //IL_0eab: Unknown result type (might be due to invalid IL or missing references) //IL_0eb0: Unknown result type (might be due to invalid IL or missing references) //IL_0ebc: Unknown result type (might be due to invalid IL or missing references) //IL_0c76: Unknown result type (might be due to invalid IL or missing references) //IL_0c7c: Unknown result type (might be due to invalid IL or missing references) //IL_0c81: Unknown result type (might be due to invalid IL or missing references) //IL_0c8c: Unknown result type (might be due to invalid IL or missing references) //IL_0c96: Unknown result type (might be due to invalid IL or missing references) //IL_0c9b: Unknown result type (might be due to invalid IL or missing references) //IL_0ca1: Unknown result type (might be due to invalid IL or missing references) //IL_0ca6: Unknown result type (might be due to invalid IL or missing references) //IL_0cb1: Unknown result type (might be due to invalid IL or missing references) //IL_0cbb: Unknown result type (might be due to invalid IL or missing references) //IL_0cc0: Unknown result type (might be due to invalid IL or missing references) //IL_0ccb: Unknown result type (might be due to invalid IL or missing references) //IL_0cd1: Unknown result type (might be due to invalid IL or missing references) //IL_0cd6: Unknown result type (might be due to invalid IL or missing references) //IL_0ce1: Unknown result type (might be due to invalid IL or missing references) //IL_0ceb: Unknown result type (might be due to invalid IL or missing references) //IL_0cf0: Unknown result type (might be due to invalid IL or missing references) //IL_0cf6: Unknown result type (might be due to invalid IL or missing references) //IL_0cfb: Unknown result type (might be due to invalid IL or missing references) //IL_0d06: Unknown result type (might be due to invalid IL or missing references) //IL_0d17: Unknown result type (might be due to invalid IL or missing references) //IL_0d1c: Unknown result type (might be due to invalid IL or missing references) //IL_0d27: Unknown result type (might be due to invalid IL or missing references) //IL_0d31: Unknown result type (might be due to invalid IL or missing references) //IL_0d36: Unknown result type (might be due to invalid IL or missing references) //IL_0d42: Unknown result type (might be due to invalid IL or missing references) //IL_0fdc: Unknown result type (might be due to invalid IL or missing references) //IL_0fe2: Unknown result type (might be due to invalid IL or missing references) //IL_0fe7: Unknown result type (might be due to invalid IL or missing references) //IL_0ff2: Unknown result type (might be due to invalid IL or missing references) //IL_0ffc: Unknown result type (might be due to invalid IL or missing references) //IL_1001: Unknown result type (might be due to invalid IL or missing references) //IL_1007: Unknown result type (might be due to invalid IL or missing references) //IL_100c: Unknown result type (might be due to invalid IL or missing references) //IL_1017: Unknown result type (might be due to invalid IL or missing references) //IL_1021: Unknown result type (might be due to invalid IL or missing references) //IL_1026: Unknown result type (might be due to invalid IL or missing references) //IL_1031: Unknown result type (might be due to invalid IL or missing references) //IL_1037: Unknown result type (might be due to invalid IL or missing references) //IL_103c: Unknown result type (might be due to invalid IL or missing references) //IL_1047: Unknown result type (might be due to invalid IL or missing references) //IL_1051: Unknown result type (might be due to invalid IL or missing references) //IL_1056: Unknown result type (might be due to invalid IL or missing references) //IL_105c: Unknown result type (might be due to invalid IL or missing references) //IL_1061: Unknown result type (might be due to invalid IL or missing references) //IL_106c: Unknown result type (might be due to invalid IL or missing references) //IL_107d: Unknown result type (might be due to invalid IL or missing references) //IL_1082: Unknown result type (might be due to invalid IL or missing references) //IL_108d: Unknown result type (might be due to invalid IL or missing references) //IL_1097: Unknown result type (might be due to invalid IL or missing references) //IL_109c: Unknown result type (might be due to invalid IL or missing references) //IL_10a8: Unknown result type (might be due to invalid IL or missing references) //IL_10e2: Unknown result type (might be due to invalid IL or missing references) //IL_10e8: Unknown result type (might be due to invalid IL or missing references) //IL_10ed: Unknown result type (might be due to invalid IL or missing references) //IL_10f8: Unknown result type (might be due to invalid IL or missing references) //IL_1102: Unknown result type (might be due to invalid IL or missing references) //IL_1107: Unknown result type (might be due to invalid IL or missing references) //IL_1112: Unknown result type (might be due to invalid IL or missing references) //IL_1118: Unknown result type (might be due to invalid IL or missing references) //IL_111d: Unknown result type (might be due to invalid IL or missing references) //IL_1128: Unknown result type (might be due to invalid IL or missing references) //IL_1139: Unknown result type (might be due to invalid IL or missing references) //IL_113e: Unknown result type (might be due to invalid IL or missing references) //IL_1149: Unknown result type (might be due to invalid IL or missing references) //IL_1153: Unknown result type (might be due to invalid IL or missing references) //IL_1158: Unknown result type (might be due to invalid IL or missing references) //IL_1164: Unknown result type (might be due to invalid IL or missing references) //IL_1491: Unknown result type (might be due to invalid IL or missing references) //IL_1497: Unknown result type (might be due to invalid IL or missing references) //IL_123a: Unknown result type (might be due to invalid IL or missing references) //IL_1240: Unknown result type (might be due to invalid IL or missing references) //IL_1245: Unknown result type (might be due to invalid IL or missing references) //IL_1250: Unknown result type (might be due to invalid IL or missing references) //IL_125a: Unknown result type (might be due to invalid IL or missing references) //IL_125f: Unknown result type (might be due to invalid IL or missing references) //IL_1265: Unknown result type (might be due to invalid IL or missing references) //IL_126a: Unknown result type (might be due to invalid IL or missing references) //IL_1275: Unknown result type (might be due to invalid IL or missing references) //IL_127f: Unknown result type (might be due to invalid IL or missing references) //IL_1284: Unknown result type (might be due to invalid IL or missing references) //IL_128f: Unknown result type (might be due to invalid IL or missing references) //IL_1295: Unknown result type (might be due to invalid IL or missing references) //IL_129a: Unknown result type (might be due to invalid IL or missing references) //IL_12a5: Unknown result type (might be due to invalid IL or missing references) //IL_12af: Unknown result type (might be due to invalid IL or missing references) //IL_12b4: Unknown result type (might be due to invalid IL or missing references) //IL_12ba: Unknown result type (might be due to invalid IL or missing references) //IL_12bf: Unknown result type (might be due to invalid IL or missing references) //IL_12ca: Unknown result type (might be due to invalid IL or missing references) //IL_12db: Unknown result type (might be due to invalid IL or missing references) //IL_12e0: Unknown result type (might be due to invalid IL or missing references) //IL_12eb: Unknown result type (might be due to invalid IL or missing references) //IL_12f5: Unknown result type (might be due to invalid IL or missing references) //IL_12fa: Unknown result type (might be due to invalid IL or missing references) //IL_1306: Unknown result type (might be due to invalid IL or missing references) //IL_117e: Unknown result type (might be due to invalid IL or missing references) //IL_1184: Unknown result type (might be due to invalid IL or missing references) //IL_1189: Unknown result type (might be due to invalid IL or missing references) //IL_1194: Unknown result type (might be due to invalid IL or missing references) //IL_119e: Unknown result type (might be due to invalid IL or missing references) //IL_11a3: Unknown result type (might be due to invalid IL or missing references) //IL_11ae: Unknown result type (might be due to invalid IL or missing references) //IL_11b4: Unknown result type (might be due to invalid IL or missing references) //IL_11b9: Unknown result type (might be due to invalid IL or missing references) //IL_11c4: Unknown result type (might be due to invalid IL or missing references) //IL_11d5: Unknown result type (might be due to invalid IL or missing references) //IL_11da: Unknown result type (might be due to invalid IL or missing references) //IL_11e5: Unknown result type (might be due to invalid IL or missing references) //IL_11ef: Unknown result type (might be due to invalid IL or missing references) //IL_11f4: Unknown result type (might be due to invalid IL or missing references) //IL_1200: Unknown result type (might be due to invalid IL or missing references) //IL_161a: Unknown result type (might be due to invalid IL or missing references) //IL_1620: Unknown result type (might be due to invalid IL or missing references) //IL_1625: Unknown result type (might be due to invalid IL or missing references) //IL_1630: Unknown result type (might be due to invalid IL or missing references) //IL_163a: Unknown result type (might be due to invalid IL or missing references) //IL_163f: Unknown result type (might be due to invalid IL or missing references) //IL_164a: Unknown result type (might be due to invalid IL or missing references) //IL_1650: Unknown result type (might be due to invalid IL or missing references) //IL_1655: Unknown result type (might be due to invalid IL or missing references) //IL_1660: Unknown result type (might be due to invalid IL or missing references) //IL_1671: Unknown result type (might be due to invalid IL or missing references) //IL_1676: Unknown result type (might be due to invalid IL or missing references) //IL_1681: Unknown result type (might be due to invalid IL or missing references) //IL_168b: Unknown result type (might be due to invalid IL or missing references) //IL_1690: Unknown result type (might be due to invalid IL or missing references) //IL_169c: Unknown result type (might be due to invalid IL or missing references) //IL_1320: Unknown result type (might be due to invalid IL or missing references) //IL_1326: Unknown result type (might be due to invalid IL or missing references) //IL_132b: Unknown result type (might be due to invalid IL or missing references) //IL_1336: Unknown result type (might be due to invalid IL or missing references) //IL_1340: Unknown result type (might be due to invalid IL or missing references) //IL_1345: Unknown result type (might be due to invalid IL or missing references) //IL_134b: Unknown result type (might be due to invalid IL or missing references) //IL_1350: Unknown result type (might be due to invalid IL or missing references) //IL_135b: Unknown result type (might be due to invalid IL or missing references) //IL_1365: Unknown result type (might be due to invalid IL or missing references) //IL_136a: Unknown result type (might be due to invalid IL or missing references) //IL_1375: Unknown result type (might be due to invalid IL or missing references) //IL_137b: Unknown result type (might be due to invalid IL or missing references) //IL_1380: Unknown result type (might be due to invalid IL or missing references) //IL_138b: Unknown result type (might be due to invalid IL or missing references) //IL_1395: Unknown result type (might be due to invalid IL or missing references) //IL_139a: Unknown result type (might be due to invalid IL or missing references) //IL_13a0: Unknown result type (might be due to invalid IL or missing references) //IL_13a5: Unknown result type (might be due to invalid IL or missing references) //IL_13b0: Unknown result type (might be due to invalid IL or missing references) //IL_13c1: Unknown result type (might be due to invalid IL or missing references) //IL_13c6: Unknown result type (might be due to invalid IL or missing references) //IL_13d1: Unknown result type (might be due to invalid IL or missing references) //IL_13db: Unknown result type (might be due to invalid IL or missing references) //IL_13e0: Unknown result type (might be due to invalid IL or missing references) //IL_13ec: Unknown result type (might be due to invalid IL or missing references) //IL_1421: Unknown result type (might be due to invalid IL or missing references) //IL_1427: Unknown result type (might be due to invalid IL or missing references) //IL_1432: Unknown result type (might be due to invalid IL or missing references) //IL_143c: Unknown result type (might be due to invalid IL or missing references) //IL_1441: Unknown result type (might be due to invalid IL or missing references) //IL_144d: Unknown result type (might be due to invalid IL or missing references) //IL_16d6: Unknown result type (might be due to invalid IL or missing references) //IL_16dc: Unknown result type (might be due to invalid IL or missing references) //IL_16e1: Unknown result type (might be due to invalid IL or missing references) //IL_16ec: Unknown result type (might be due to invalid IL or missing references) //IL_16f6: Unknown result type (might be due to invalid IL or missing references) //IL_16fb: Unknown result type (might be due to invalid IL or missing references) //IL_1701: Unknown result type (might be due to invalid IL or missing references) //IL_1706: Unknown result type (might be due to invalid IL or missing references) //IL_1711: Unknown result type (might be due to invalid IL or missing references) //IL_171b: Unknown result type (might be due to invalid IL or missing references) //IL_1720: Unknown result type (might be due to invalid IL or missing references) //IL_172b: Unknown result type (might be due to invalid IL or missing references) //IL_1731: Unknown result type (might be due to invalid IL or missing references) //IL_1736: Unknown result type (might be due to invalid IL or missing references) //IL_1741: Unknown result type (might be due to invalid IL or missing references) //IL_174b: Unknown result type (might be due to invalid IL or missing references) //IL_1750: Unknown result type (might be due to invalid IL or missing references) //IL_1756: Unknown result type (might be due to invalid IL or missing references) //IL_175b: Unknown result type (might be due to invalid IL or missing references) //IL_1766: Unknown result type (might be due to invalid IL or missing references) //IL_1777: Unknown result type (might be due to invalid IL or missing references) //IL_177c: Unknown result type (might be due to invalid IL or missing references) //IL_1787: Unknown result type (might be due to invalid IL or missing references) //IL_1791: Unknown result type (might be due to invalid IL or missing references) //IL_1796: Unknown result type (might be due to invalid IL or missing references) //IL_17a2: Unknown result type (might be due to invalid IL or missing references) //IL_17dc: Unknown result type (might be due to invalid IL or missing references) //IL_17e2: Unknown result type (might be due to invalid IL or missing references) //IL_17e7: Unknown result type (might be due to invalid IL or missing references) //IL_17f2: Unknown result type (might be due to invalid IL or missing references) //IL_1803: Unknown result type (might be due to invalid IL or missing references) //IL_180d: Unknown result type (might be due to invalid IL or missing references) //IL_1812: Unknown result type (might be due to invalid IL or missing references) //IL_181d: Unknown result type (might be due to invalid IL or missing references) //IL_1827: Unknown result type (might be due to invalid IL or missing references) //IL_182c: Unknown result type (might be due to invalid IL or missing references) //IL_1837: Unknown result type (might be due to invalid IL or missing references) //IL_1841: Unknown result type (might be due to invalid IL or missing references) //IL_1846: Unknown result type (might be due to invalid IL or missing references) //IL_1851: Unknown result type (might be due to invalid IL or missing references) //IL_1857: Unknown result type (might be due to invalid IL or missing references) //IL_185c: Unknown result type (might be due to invalid IL or missing references) //IL_1867: Unknown result type (might be due to invalid IL or missing references) //IL_1878: Unknown result type (might be due to invalid IL or missing references) //IL_187d: Unknown result type (might be due to invalid IL or missing references) //IL_1888: Unknown result type (might be due to invalid IL or missing references) //IL_1899: Unknown result type (might be due to invalid IL or missing references) //IL_18a3: Unknown result type (might be due to invalid IL or missing references) //IL_18a8: Unknown result type (might be due to invalid IL or missing references) //IL_18b3: Unknown result type (might be due to invalid IL or missing references) //IL_18bd: Unknown result type (might be due to invalid IL or missing references) //IL_18c2: Unknown result type (might be due to invalid IL or missing references) //IL_18cd: Unknown result type (might be due to invalid IL or missing references) //IL_18d7: Unknown result type (might be due to invalid IL or missing references) //IL_18dc: Unknown result type (might be due to invalid IL or missing references) //IL_18e8: Unknown result type (might be due to invalid IL or missing references) //IL_1a74: Unknown result type (might be due to invalid IL or missing references) //IL_1a7a: Unknown result type (might be due to invalid IL or missing references) //IL_1a85: Unknown result type (might be due to invalid IL or missing references) //IL_1a8f: Unknown result type (might be due to invalid IL or missing references) //IL_1aa0: Unknown result type (might be due to invalid IL or missing references) //IL_1aa5: Unknown result type (might be due to invalid IL or missing references) //IL_1aaf: Unknown result type (might be due to invalid IL or missing references) //IL_1ab4: Unknown result type (might be due to invalid IL or missing references) //IL_1abf: Unknown result type (might be due to invalid IL or missing references) //IL_1ac9: Unknown result type (might be due to invalid IL or missing references) //IL_1acf: Unknown result type (might be due to invalid IL or missing references) //IL_1ad4: Unknown result type (might be due to invalid IL or missing references) //IL_1ad9: Unknown result type (might be due to invalid IL or missing references) //IL_1ae4: Unknown result type (might be due to invalid IL or missing references) //IL_1aea: Unknown result type (might be due to invalid IL or missing references) //IL_1af5: Unknown result type (might be due to invalid IL or missing references) //IL_1aff: Unknown result type (might be due to invalid IL or missing references) //IL_1b10: Unknown result type (might be due to invalid IL or missing references) //IL_1b15: Unknown result type (might be due to invalid IL or missing references) //IL_1b1f: Unknown result type (might be due to invalid IL or missing references) //IL_1b24: Unknown result type (might be due to invalid IL or missing references) //IL_1b2f: Unknown result type (might be due to invalid IL or missing references) //IL_1b40: Unknown result type (might be due to invalid IL or missing references) //IL_1b45: Unknown result type (might be due to invalid IL or missing references) //IL_1b50: Unknown result type (might be due to invalid IL or missing references) //IL_1b5a: Unknown result type (might be due to invalid IL or missing references) //IL_1b60: Unknown result type (might be due to invalid IL or missing references) //IL_1b65: Unknown result type (might be due to invalid IL or missing references) //IL_1b6a: Unknown result type (might be due to invalid IL or missing references) //IL_1b76: Unknown result type (might be due to invalid IL or missing references) //IL_14cb: Unknown result type (might be due to invalid IL or missing references) //IL_14d6: Unknown result type (might be due to invalid IL or missing references) //IL_14db: Unknown result type (might be due to invalid IL or missing references) //IL_14e6: Unknown result type (might be due to invalid IL or missing references) //IL_14f0: Unknown result type (might be due to invalid IL or missing references) //IL_14f5: Unknown result type (might be due to invalid IL or missing references) //IL_1500: Unknown result type (might be due to invalid IL or missing references) //IL_150a: Unknown result type (might be due to invalid IL or missing references) //IL_150f: Unknown result type (might be due to invalid IL or missing references) //IL_1515: Unknown result type (might be due to invalid IL or missing references) //IL_151a: Unknown result type (might be due to invalid IL or missing references) //IL_1525: Unknown result type (might be due to invalid IL or missing references) //IL_1530: Unknown result type (might be due to invalid IL or missing references) //IL_153a: Unknown result type (might be due to invalid IL or missing references) //IL_153f: Unknown result type (might be due to invalid IL or missing references) //IL_154a: Unknown result type (might be due to invalid IL or missing references) //IL_1554: Unknown result type (might be due to invalid IL or missing references) //IL_1559: Unknown result type (might be due to invalid IL or missing references) //IL_155f: Unknown result type (might be due to invalid IL or missing references) //IL_1564: Unknown result type (might be due to invalid IL or missing references) //IL_1570: Unknown result type (might be due to invalid IL or missing references) //IL_1922: Unknown result type (might be due to invalid IL or missing references) //IL_1928: Unknown result type (might be due to invalid IL or missing references) //IL_192d: Unknown result type (might be due to invalid IL or missing references) //IL_1938: Unknown result type (might be due to invalid IL or missing references) //IL_1949: Unknown result type (might be due to invalid IL or missing references) //IL_1953: Unknown result type (might be due to invalid IL or missing references) //IL_1958: Unknown result type (might be due to invalid IL or missing references) //IL_1963: Unknown result type (might be due to invalid IL or missing references) //IL_196d: Unknown result type (might be due to invalid IL or missing references) //IL_1972: Unknown result type (might be due to invalid IL or missing references) //IL_197d: Unknown result type (might be due to invalid IL or missing references) //IL_1987: Unknown result type (might be due to invalid IL or missing references) //IL_198c: Unknown result type (might be due to invalid IL or missing references) //IL_1997: Unknown result type (might be due to invalid IL or missing references) //IL_199d: Unknown result type (might be due to invalid IL or missing references) //IL_19a2: Unknown result type (might be due to invalid IL or missing references) //IL_19ad: Unknown result type (might be due to invalid IL or missing references) //IL_19be: Unknown result type (might be due to invalid IL or missing references) //IL_19c3: Unknown result type (might be due to invalid IL or missing references) //IL_19ce: Unknown result type (might be due to invalid IL or missing references) //IL_19df: Unknown result type (might be due to invalid IL or missing references) //IL_19e9: Unknown result type (might be due to invalid IL or missing references) //IL_19ee: Unknown result type (might be due to invalid IL or missing references) //IL_19f9: Unknown result type (might be due to invalid IL or missing references) //IL_1a03: Unknown result type (might be due to invalid IL or missing references) //IL_1a08: Unknown result type (might be due to invalid IL or missing references) //IL_1a13: Unknown result type (might be due to invalid IL or missing references) //IL_1a1d: Unknown result type (might be due to invalid IL or missing references) //IL_1a22: Unknown result type (might be due to invalid IL or missing references) //IL_1a2e: Unknown result type (might be due to invalid IL or missing references) //IL_1bb0: Unknown result type (might be due to invalid IL or missing references) //IL_1bb6: Unknown result type (might be due to invalid IL or missing references) //IL_1bc1: Unknown result type (might be due to invalid IL or missing references) //IL_1bcb: Unknown result type (might be due to invalid IL or missing references) //IL_1bdc: Unknown result type (might be due to invalid IL or missing references) //IL_1be1: Unknown result type (might be due to invalid IL or missing references) //IL_1beb: Unknown result type (might be due to invalid IL or missing references) //IL_1bf5: Unknown result type (might be due to invalid IL or missing references) //IL_1bfb: Unknown result type (might be due to invalid IL or missing references) //IL_1c06: Unknown result type (might be due to invalid IL or missing references) //IL_1c10: Unknown result type (might be due to invalid IL or missing references) //IL_1c15: Unknown result type (might be due to invalid IL or missing references) //IL_1c1f: Unknown result type (might be due to invalid IL or missing references) //IL_1c24: Unknown result type (might be due to invalid IL or missing references) //IL_1c2e: Unknown result type (might be due to invalid IL or missing references) //IL_1c33: Unknown result type (might be due to invalid IL or missing references) //IL_1c3e: Unknown result type (might be due to invalid IL or missing references) //IL_1c48: Unknown result type (might be due to invalid IL or missing references) //IL_1c4e: Unknown result type (might be due to invalid IL or missing references) //IL_1c53: Unknown result type (might be due to invalid IL or missing references) //IL_1c58: Unknown result type (might be due to invalid IL or missing references) //IL_1c63: Unknown result type (might be due to invalid IL or missing references) //IL_1c69: Unknown result type (might be due to invalid IL or missing references) //IL_1c74: Unknown result type (might be due to invalid IL or missing references) //IL_1c7e: Unknown result type (might be due to invalid IL or missing references) //IL_1c8f: Unknown result type (might be due to invalid IL or missing references) //IL_1c94: Unknown result type (might be due to invalid IL or missing references) //IL_1c9e: Unknown result type (might be due to invalid IL or missing references) //IL_1ca8: Unknown result type (might be due to invalid IL or missing references) //IL_1cae: Unknown result type (might be due to invalid IL or missing references) //IL_1cb9: Unknown result type (might be due to invalid IL or missing references) //IL_1cc3: Unknown result type (might be due to invalid IL or missing references) //IL_1cc8: Unknown result type (might be due to invalid IL or missing references) //IL_1cd2: Unknown result type (might be due to invalid IL or missing references) //IL_1cd7: Unknown result type (might be due to invalid IL or missing references) //IL_1ce1: Unknown result type (might be due to invalid IL or missing references) //IL_1ce6: Unknown result type (might be due to invalid IL or missing references) //IL_1cf1: Unknown result type (might be due to invalid IL or missing references) //IL_1d02: Unknown result type (might be due to invalid IL or missing references) //IL_1d07: Unknown result type (might be due to invalid IL or missing references) //IL_1d12: Unknown result type (might be due to invalid IL or missing references) //IL_1d1c: Unknown result type (might be due to invalid IL or missing references) //IL_1d22: Unknown result type (might be due to invalid IL or missing references) //IL_1d27: Unknown result type (might be due to invalid IL or missing references) //IL_1d2c: Unknown result type (might be due to invalid IL or missing references) //IL_1d38: Unknown result type (might be due to invalid IL or missing references) //IL_1d72: Unknown result type (might be due to invalid IL or missing references) //IL_1d78: Unknown result type (might be due to invalid IL or missing references) //IL_1d83: Unknown result type (might be due to invalid IL or missing references) //IL_1d8d: Unknown result type (might be due to invalid IL or missing references) //IL_1d9e: Unknown result type (might be due to invalid IL or missing references) //IL_1da3: Unknown result type (might be due to invalid IL or missing references) //IL_1dad: Unknown result type (might be due to invalid IL or missing references) //IL_1db3: Unknown result type (might be due to invalid IL or missing references) //IL_1dbe: Unknown result type (might be due to invalid IL or missing references) //IL_1dc8: Unknown result type (might be due to invalid IL or missing references) //IL_1dcd: Unknown result type (might be due to invalid IL or missing references) //IL_1dd7: Unknown result type (might be due to invalid IL or missing references) //IL_1ddc: Unknown result type (might be due to invalid IL or missing references) //IL_1de6: Unknown result type (might be due to invalid IL or missing references) //IL_1deb: Unknown result type (might be due to invalid IL or missing references) //IL_1df6: Unknown result type (might be due to invalid IL or missing references) //IL_1e00: Unknown result type (might be due to invalid IL or missing references) //IL_1e06: Unknown result type (might be due to invalid IL or missing references) //IL_1e0b: Unknown result type (might be due to invalid IL or missing references) //IL_1e10: Unknown result type (might be due to invalid IL or missing references) //IL_1e1b: Unknown result type (might be due to invalid IL or missing references) //IL_1e21: Unknown result type (might be due to invalid IL or missing references) //IL_1e2c: Unknown result type (might be due to invalid IL or missing references) //IL_1e36: Unknown result type (might be due to invalid IL or missing references) //IL_1e47: Unknown result type (might be due to invalid IL or missing references) //IL_1e4c: Unknown result type (might be due to invalid IL or missing references) //IL_1e56: Unknown result type (might be due to invalid IL or missing references) //IL_1e5c: Unknown result type (might be due to invalid IL or missing references) //IL_1e67: Unknown result type (might be due to invalid IL or missing references) //IL_1e71: Unknown result type (might be due to invalid IL or missing references) //IL_1e76: Unknown result type (might be due to invalid IL or missing references) //IL_1e80: Unknown result type (might be due to invalid IL or missing references) //IL_1e85: Unknown result type (might be due to invalid IL or missing references) //IL_1e8f: Unknown result type (might be due to invalid IL or missing references) //IL_1e94: Unknown result type (might be due to invalid IL or missing references) //IL_1e9f: Unknown result type (might be due to invalid IL or missing references) //IL_1eb0: Unknown result type (might be due to invalid IL or missing references) //IL_1eb5: Unknown result type (might be due to invalid IL or missing references) //IL_1ec0: Unknown result type (might be due to invalid IL or missing references) //IL_1eca: Unknown result type (might be due to invalid IL or missing references) //IL_1ed0: Unknown result type (might be due to invalid IL or missing references) //IL_1ed5: Unknown result type (might be due to invalid IL or missing references) //IL_1eda: Unknown result type (might be due to invalid IL or missing references) //IL_1ee6: Unknown result type (might be due to invalid IL or missing references) //IL_1f20: Unknown result type (might be due to invalid IL or missing references) //IL_1f26: Unknown result type (might be due to invalid IL or missing references) //IL_1f31: Unknown result type (might be due to invalid IL or missing references) //IL_1f3b: Unknown result type (might be due to invalid IL or missing references) //IL_1f4c: Unknown result type (might be due to invalid IL or missing references) //IL_1f51: Unknown result type (might be due to invalid IL or missing references) //IL_1f5b: Unknown result type (might be due to invalid IL or missing references) //IL_1f61: Unknown result type (might be due to invalid IL or missing references) //IL_1f6c: Unknown result type (might be due to invalid IL or missing references) //IL_1f76: Unknown result type (might be due to invalid IL or missing references) //IL_1f7b: Unknown result type (might be due to invalid IL or missing references) //IL_1f85: Unknown result type (might be due to invalid IL or missing references) //IL_1f8f: Unknown result type (might be due to invalid IL or missing references) //IL_1f94: Unknown result type (might be due to invalid IL or missing references) //IL_1f9e: Unknown result type (might be due to invalid IL or missing references) //IL_1fa3: Unknown result type (might be due to invalid IL or missing references) //IL_1fae: Unknown result type (might be due to invalid IL or missing references) //IL_1fb8: Unknown result type (might be due to invalid IL or missing references) //IL_1fbe: Unknown result type (might be due to invalid IL or missing references) //IL_1fc3: Unknown result type (might be due to invalid IL or missing references) //IL_1fc8: Unknown result type (might be due to invalid IL or missing references) //IL_1fd3: Unknown result type (might be due to invalid IL or missing references) //IL_1fd9: Unknown result type (might be due to invalid IL or missing references) //IL_1fe4: Unknown result type (might be due to invalid IL or missing references) //IL_1fee: Unknown result type (might be due to invalid IL or missing references) //IL_1fff: Unknown result type (might be due to invalid IL or missing references) //IL_2004: Unknown result type (might be due to invalid IL or missing references) //IL_200e: Unknown result type (might be due to invalid IL or missing references) //IL_2014: Unknown result type (might be due to invalid IL or missing references) //IL_201f: Unknown result type (might be due to invalid IL or missing references) //IL_2029: Unknown result type (might be due to invalid IL or missing references) //IL_202e: Unknown result type (might be due to invalid IL or missing references) //IL_2038: Unknown result type (might be due to invalid IL or missing references) //IL_2042: Unknown result type (might be due to invalid IL or missing references) //IL_2047: Unknown result type (might be due to invalid IL or missing references) //IL_2051: Unknown result type (might be due to invalid IL or missing references) //IL_2056: Unknown result type (might be due to invalid IL or missing references) //IL_2061: Unknown result type (might be due to invalid IL or missing references) //IL_2072: Unknown result type (might be due to invalid IL or missing references) //IL_2077: Unknown result type (might be due to invalid IL or missing references) //IL_2082: Unknown result type (might be due to invalid IL or missing references) //IL_208c: Unknown result type (might be due to invalid IL or missing references) //IL_2092: Unknown result type (might be due to invalid IL or missing references) //IL_2097: Unknown result type (might be due to invalid IL or missing references) //IL_209c: Unknown result type (might be due to invalid IL or missing references) //IL_20a8: Unknown result type (might be due to invalid IL or missing references) //IL_20e2: Unknown result type (might be due to invalid IL or missing references) //IL_20e8: Unknown result type (might be due to invalid IL or missing references) //IL_20f3: Unknown result type (might be due to invalid IL or missing references) //IL_20fd: Unknown result type (might be due to invalid IL or missing references) //IL_2102: Unknown result type (might be due to invalid IL or missing references) //IL_210c: Unknown result type (might be due to invalid IL or missing references) //IL_2111: Unknown result type (might be due to invalid IL or missing references) //IL_211c: Unknown result type (might be due to invalid IL or missing references) //IL_2126: Unknown result type (might be due to invalid IL or missing references) //IL_212c: Unknown result type (might be due to invalid IL or missing references) //IL_2131: Unknown result type (might be due to invalid IL or missing references) //IL_2136: Unknown result type (might be due to invalid IL or missing references) //IL_2141: Unknown result type (might be due to invalid IL or missing references) //IL_2147: Unknown result type (might be due to invalid IL or missing references) //IL_2152: Unknown result type (might be due to invalid IL or missing references) //IL_215c: Unknown result type (might be due to invalid IL or missing references) //IL_2161: Unknown result type (might be due to invalid IL or missing references) //IL_216b: Unknown result type (might be due to invalid IL or missing references) //IL_2170: Unknown result type (might be due to invalid IL or missing references) //IL_217b: Unknown result type (might be due to invalid IL or missing references) //IL_218c: Unknown result type (might be due to invalid IL or missing references) //IL_2191: Unknown result type (might be due to invalid IL or missing references) //IL_219c: Unknown result type (might be due to invalid IL or missing references) //IL_21a6: Unknown result type (might be due to invalid IL or missing references) //IL_21ac: Unknown result type (might be due to invalid IL or missing references) //IL_21b1: Unknown result type (might be due to invalid IL or missing references) //IL_21b6: Unknown result type (might be due to invalid IL or missing references) //IL_21c2: Unknown result type (might be due to invalid IL or missing references) //IL_21fc: Unknown result type (might be due to invalid IL or missing references) //IL_2202: Unknown result type (might be due to invalid IL or missing references) //IL_220d: Unknown result type (might be due to invalid IL or missing references) //IL_2217: Unknown result type (might be due to invalid IL or missing references) //IL_2228: Unknown result type (might be due to invalid IL or missing references) //IL_222d: Unknown result type (might be due to invalid IL or missing references) //IL_2237: Unknown result type (might be due to invalid IL or missing references) //IL_223c: Unknown result type (might be due to invalid IL or missing references) //IL_2247: Unknown result type (might be due to invalid IL or missing references) //IL_2251: Unknown result type (might be due to invalid IL or missing references) //IL_2257: Unknown result type (might be due to invalid IL or missing references) //IL_225c: Unknown result type (might be due to invalid IL or missing references) //IL_2261: Unknown result type (might be due to invalid IL or missing references) //IL_226c: Unknown result type (might be due to invalid IL or missing references) //IL_2272: Unknown result type (might be due to invalid IL or missing references) //IL_227d: Unknown result type (might be due to invalid IL or missing references) //IL_2287: Unknown result type (might be due to invalid IL or missing references) //IL_2298: Unknown result type (might be due to invalid IL or missing references) //IL_229d: Unknown result type (might be due to invalid IL or missing references) //IL_22a7: Unknown result type (might be due to invalid IL or missing references) //IL_22ac: Unknown result type (might be due to invalid IL or missing references) //IL_22b7: Unknown result type (might be due to invalid IL or missing references) //IL_22c8: Unknown result type (might be due to invalid IL or missing references) //IL_22cd: Unknown result type (might be due to invalid IL or missing references) //IL_22d8: Unknown result type (might be due to invalid IL or missing references) //IL_22e2: Unknown result type (might be due to invalid IL or missing references) //IL_22e8: Unknown result type (might be due to invalid IL or missing references) //IL_22ed: Unknown result type (might be due to invalid IL or missing references) //IL_22f2: Unknown result type (might be due to invalid IL or missing references) //IL_22fe: Unknown result type (might be due to invalid IL or missing references) //IL_4043: Unknown result type (might be due to invalid IL or missing references) //IL_4049: Unknown result type (might be due to invalid IL or missing references) //IL_404e: Unknown result type (might be due to invalid IL or missing references) //IL_4059: Unknown result type (might be due to invalid IL or missing references) //IL_4063: Unknown result type (might be due to invalid IL or missing references) //IL_4068: Unknown result type (might be due to invalid IL or missing references) //IL_4073: Unknown result type (might be due to invalid IL or missing references) //IL_4079: Unknown result type (might be due to invalid IL or missing references) //IL_407e: Unknown result type (might be due to invalid IL or missing references) //IL_4089: Unknown result type (might be due to invalid IL or missing references) //IL_409a: Unknown result type (might be due to invalid IL or missing references) //IL_409f: Unknown result type (might be due to invalid IL or missing references) //IL_40aa: Unknown result type (might be due to invalid IL or missing references) //IL_40b4: Unknown result type (might be due to invalid IL or missing references) //IL_40b9: Unknown result type (might be due to invalid IL or missing references) //IL_40c5: Unknown result type (might be due to invalid IL or missing references) //IL_2338: Unknown result type (might be due to invalid IL or missing references) //IL_233e: Unknown result type (might be due to invalid IL or missing references) //IL_2349: Unknown result type (might be due to invalid IL or missing references) //IL_2353: Unknown result type (might be due to invalid IL or missing references) //IL_2364: Unknown result type (might be due to invalid IL or missing references) //IL_2369: Unknown result type (might be due to invalid IL or missing references) //IL_2373: Unknown result type (might be due to invalid IL or missing references) //IL_237d: Unknown result type (might be due to invalid IL or missing references) //IL_2383: Unknown result type (might be due to invalid IL or missing references) //IL_238e: Unknown result type (might be due to invalid IL or missing references) //IL_2398: Unknown result type (might be due to invalid IL or missing references) //IL_239d: Unknown result type (might be due to invalid IL or missing references) //IL_23a7: Unknown result type (might be due to invalid IL or missing references) //IL_23ac: Unknown result type (might be due to invalid IL or missing references) //IL_23b6: Unknown result type (might be due to invalid IL or missing references) //IL_23bb: Unknown result type (might be due to invalid IL or missing references) //IL_23c6: Unknown result type (might be due to invalid IL or missing references) //IL_23d0: Unknown result type (might be due to invalid IL or missing references) //IL_23d6: Unknown result type (might be due to invalid IL or missing references) //IL_23db: Unknown result type (might be due to invalid IL or missing references) //IL_23e0: Unknown result type (might be due to invalid IL or missing references) //IL_23eb: Unknown result type (might be due to invalid IL or missing references) //IL_23f1: Unknown result type (might be due to invalid IL or missing references) //IL_23fc: Unknown result type (might be due to invalid IL or missing references) //IL_2406: Unknown result type (might be due to invalid IL or missing references) //IL_2417: Unknown result type (might be due to invalid IL or missing references) //IL_241c: Unknown result type (might be due to invalid IL or missing references) //IL_2426: Unknown result type (might be due to invalid IL or missing references) //IL_2430: Unknown result type (might be due to invalid IL or missing references) //IL_2436: Unknown result type (might be due to invalid IL or missing references) //IL_2441: Unknown result type (might be due to invalid IL or missing references) //IL_244b: Unknown result type (might be due to invalid IL or missing references) //IL_2450: Unknown result type (might be due to invalid IL or missing references) //IL_245a: Unknown result type (might be due to invalid IL or missing references) //IL_245f: Unknown result type (might be due to invalid IL or missing references) //IL_2469: Unknown result type (might be due to invalid IL or missing references) //IL_246e: Unknown result type (might be due to invalid IL or missing references) //IL_2479: Unknown result type (might be due to invalid IL or missing references) //IL_248a: Unknown result type (might be due to invalid IL or missing references) //IL_248f: Unknown result type (might be due to invalid IL or missing references) //IL_249a: Unknown result type (might be due to invalid IL or missing references) //IL_24a4: Unknown result type (might be due to invalid IL or missing references) //IL_24aa: Unknown result type (might be due to invalid IL or missing references) //IL_24af: Unknown result type (might be due to invalid IL or missing references) //IL_24b4: Unknown result type (might be due to invalid IL or missing references) //IL_24c0: Unknown result type (might be due to invalid IL or missing references) //IL_40ff: Unknown result type (might be due to invalid IL or missing references) //IL_4105: Unknown result type (might be due to invalid IL or missing references) //IL_410a: Unknown result type (might be due to invalid IL or missing references) //IL_4115: Unknown result type (might be due to invalid IL or missing references) //IL_411f: Unknown result type (might be due to invalid IL or missing references) //IL_4124: Unknown result type (might be due to invalid IL or missing references) //IL_412a: Unknown result type (might be due to invalid IL or missing references) //IL_412f: Unknown result type (might be due to invalid IL or missing references) //IL_413a: Unknown result type (might be due to invalid IL or missing references) //IL_4144: Unknown result type (might be due to invalid IL or missing references) //IL_4149: Unknown result type (might be due to invalid IL or missing references) //IL_4154: Unknown result type (might be due to invalid IL or missing references) //IL_415a: Unknown result type (might be due to invalid IL or missing references) //IL_415f: Unknown result type (might be due to invalid IL or missing references) //IL_416a: Unknown result type (might be due to invalid IL or missing references) //IL_4174: Unknown result type (might be due to invalid IL or missing references) //IL_4179: Unknown result type (might be due to invalid IL or missing references) //IL_417f: Unknown result type (might be due to invalid IL or missing references) //IL_4184: Unknown result type (might be due to invalid IL or missing references) //IL_418f: Unknown result type (might be due to invalid IL or missing references) //IL_41a0: Unknown result type (might be due to invalid IL or missing references) //IL_41a5: Unknown result type (might be due to invalid IL or missing references) //IL_41b0: Unknown result type (might be due to invalid IL or missing references) //IL_41ba: Unknown result type (might be due to invalid IL or missing references) //IL_41bf: Unknown result type (might be due to invalid IL or missing references) //IL_41cb: Unknown result type (might be due to invalid IL or missing references) //IL_24fa: Unknown result type (might be due to invalid IL or missing references) //IL_2500: Unknown result type (might be due to invalid IL or missing references) //IL_250b: Unknown result type (might be due to invalid IL or missing references) //IL_2515: Unknown result type (might be due to invalid IL or missing references) //IL_2526: Unknown result type (might be due to invalid IL or missing references) //IL_252b: Unknown result type (might be due to invalid IL or missing references) //IL_2535: Unknown result type (might be due to invalid IL or missing references) //IL_253b: Unknown result type (might be due to invalid IL or missing references) //IL_2546: Unknown result type (might be due to invalid IL or missing references) //IL_2550: Unknown result type (might be due to invalid IL or missing references) //IL_2555: Unknown result type (might be due to invalid IL or missing references) //IL_255f: Unknown result type (might be due to invalid IL or missing references) //IL_2564: Unknown result type (might be due to invalid IL or missing references) //IL_256e: Unknown result type (might be due to invalid IL or missing references) //IL_2573: Unknown result type (might be due to invalid IL or missing references) //IL_257e: Unknown result type (might be due to invalid IL or missing references) //IL_2588: Unknown result type (might be due to invalid IL or missing references) //IL_258e: Unknown result type (might be due to invalid IL or missing references) //IL_2593: Unknown result type (might be due to invalid IL or missing references) //IL_2598: Unknown result type (might be due to invalid IL or missing references) //IL_25a3: Unknown result type (might be due to invalid IL or missing references) //IL_25a9: Unknown result type (might be due to invalid IL or missing references) //IL_25b4: Unknown result type (might be due to invalid IL or missing references) //IL_25be: Unknown result type (might be due to invalid IL or missing references) //IL_25cf: Unknown result type (might be due to invalid IL or missing references) //IL_25d4: Unknown result type (might be due to invalid IL or missing references) //IL_25de: Unknown result type (might be due to invalid IL or missing references) //IL_25e4: Unknown result type (might be due to invalid IL or missing references) //IL_25ef: Unknown result type (might be due to invalid IL or missing references) //IL_25f9: Unknown result type (might be due to invalid IL or missing references) //IL_25fe: Unknown result type (might be due to invalid IL or missing references) //IL_2608: Unknown result type (might be due to invalid IL or missing references) //IL_260d: Unknown result type (might be due to invalid IL or missing references) //IL_2617: Unknown result type (might be due to invalid IL or missing references) //IL_261c: Unknown result type (might be due to invalid IL or missing references) //IL_2627: Unknown result type (might be due to invalid IL or missing references) //IL_2638: Unknown result type (might be due to invalid IL or missing references) //IL_263d: Unknown result type (might be due to invalid IL or missing references) //IL_2648: Unknown result type (might be due to invalid IL or missing references) //IL_2652: Unknown result type (might be due to invalid IL or missing references) //IL_2658: Unknown result type (might be due to invalid IL or missing references) //IL_265d: Unknown result type (might be due to invalid IL or missing references) //IL_2662: Unknown result type (might be due to invalid IL or missing references) //IL_266e: Unknown result type (might be due to invalid IL or missing references) //IL_4205: Unknown result type (might be due to invalid IL or missing references) //IL_420b: Unknown result type (might be due to invalid IL or missing references) //IL_4210: Unknown result type (might be due to invalid IL or missing references) //IL_421b: Unknown result type (might be due to invalid IL or missing references) //IL_422c: Unknown result type (might be due to invalid IL or missing references) //IL_4236: Unknown result type (might be due to invalid IL or missing references) //IL_423b: Unknown result type (might be due to invalid IL or missing references) //IL_4246: Unknown result type (might be due to invalid IL or missing references) //IL_4250: Unknown result type (might be due to invalid IL or missing references) //IL_4255: Unknown result type (might be due to invalid IL or missing references) //IL_4260: Unknown result type (might be due to invalid IL or missing references) //IL_426a: Unknown result type (might be due to invalid IL or missing references) //IL_426f: Unknown result type (might be due to invalid IL or missing references) //IL_427a: Unknown result type (might be due to invalid IL or missing references) //IL_4280: Unknown result type (might be due to invalid IL or missing references) //IL_4285: Unknown result type (might be due to invalid IL or missing references) //IL_4290: Unknown result type (might be due to invalid IL or missing references) //IL_42a1: Unknown result type (might be due to invalid IL or missing references) //IL_42a6: Unknown result type (might be due to invalid IL or missing references) //IL_42b1: Unknown result type (might be due to invalid IL or missing references) //IL_42c2: Unknown result type (might be due to invalid IL or missing references) //IL_42cc: Unknown result type (might be due to invalid IL or missing references) //IL_42d1: Unknown result type (might be due to invalid IL or missing references) //IL_42dc: Unknown result type (might be due to invalid IL or missing references) //IL_42e6: Unknown result type (might be due to invalid IL or missing references) //IL_42eb: Unknown result type (might be due to invalid IL or missing references) //IL_42f6: Unknown result type (might be due to invalid IL or missing references) //IL_4300: Unknown result type (might be due to invalid IL or missing references) //IL_4305: Unknown result type (might be due to invalid IL or missing references) //IL_4311: Unknown result type (might be due to invalid IL or missing references) //IL_449d: Unknown result type (might be due to invalid IL or missing references) //IL_44a3: Unknown result type (might be due to invalid IL or missing references) //IL_44ae: Unknown result type (might be due to invalid IL or missing references) //IL_44b8: Unknown result type (might be due to invalid IL or missing references) //IL_44c9: Unknown result type (might be due to invalid IL or missing references) //IL_44ce: Unknown result type (might be due to invalid IL or missing references) //IL_44d8: Unknown result type (might be due to invalid IL or missing references) //IL_44dd: Unknown result type (might be due to invalid IL or missing references) //IL_44e8: Unknown result type (might be due to invalid IL or missing references) //IL_44f2: Unknown result type (might be due to invalid IL or missing references) //IL_44f8: Unknown result type (might be due to invalid IL or missing references) //IL_44fd: Unknown result type (might be due to invalid IL or missing references) //IL_4502: Unknown result type (might be due to invalid IL or missing references) //IL_450d: Unknown result type (might be due to invalid IL or missing references) //IL_4513: Unknown result type (might be due to invalid IL or missing references) //IL_451e: Unknown result type (might be due to invalid IL or missing references) //IL_4528: Unknown result type (might be due to invalid IL or missing references) //IL_4539: Unknown result type (might be due to invalid IL or missing references) //IL_453e: Unknown result type (might be due to invalid IL or missing references) //IL_4548: Unknown result type (might be due to invalid IL or missing references) //IL_454d: Unknown result type (might be due to invalid IL or missing references) //IL_4558: Unknown result type (might be due to invalid IL or missing references) //IL_4569: Unknown result type (might be due to invalid IL or missing references) //IL_456e: Unknown result type (might be due to invalid IL or missing references) //IL_4579: Unknown result type (might be due to invalid IL or missing references) //IL_4583: Unknown result type (might be due to invalid IL or missing references) //IL_4589: Unknown result type (might be due to invalid IL or missing references) //IL_458e: Unknown result type (might be due to invalid IL or missing references) //IL_4593: Unknown result type (might be due to invalid IL or missing references) //IL_459f: Unknown result type (might be due to invalid IL or missing references) //IL_26a8: Unknown result type (might be due to invalid IL or missing references) //IL_26ae: Unknown result type (might be due to invalid IL or missing references) //IL_26b9: Unknown result type (might be due to invalid IL or missing references) //IL_26c3: Unknown result type (might be due to invalid IL or missing references) //IL_26d4: Unknown result type (might be due to invalid IL or missing references) //IL_26d9: Unknown result type (might be due to invalid IL or missing references) //IL_26e3: Unknown result type (might be due to invalid IL or missing references) //IL_26e9: Unknown result type (might be due to invalid IL or missing references) //IL_26f4: Unknown result type (might be due to invalid IL or missing references) //IL_26fe: Unknown result type (might be due to invalid IL or missing references) //IL_2703: Unknown result type (might be due to invalid IL or missing references) //IL_270d: Unknown result type (might be due to invalid IL or missing references) //IL_2717: Unknown result type (might be due to invalid IL or missing references) //IL_271c: Unknown result type (might be due to invalid IL or missing references) //IL_2726: Unknown result type (might be due to invalid IL or missing references) //IL_272b: Unknown result type (might be due to invalid IL or missing references) //IL_2736: Unknown result type (might be due to invalid IL or missing references) //IL_2740: Unknown result type (might be due to invalid IL or missing references) //IL_2746: Unknown result type (might be due to invalid IL or missing references) //IL_274b: Unknown result type (might be due to invalid IL or missing references) //IL_2750: Unknown result type (might be due to invalid IL or missing references) //IL_275b: Unknown result type (might be due to invalid IL or missing references) //IL_2761: Unknown result type (might be due to invalid IL or missing references) //IL_276c: Unknown result type (might be due to invalid IL or missing references) //IL_2776: Unknown result type (might be due to invalid IL or missing references) //IL_2787: Unknown result type (might be due to invalid IL or missing references) //IL_278c: Unknown result type (might be due to invalid IL or missing references) //IL_2796: Unknown result type (might be due to invalid IL or missing references) //IL_279c: Unknown result type (might be due to invalid IL or missing references) //IL_27a7: Unknown result type (might be due to invalid IL or missing references) //IL_27b1: Unknown result type (might be due to invalid IL or missing references) //IL_27b6: Unknown result type (might be due to invalid IL or missing references) //IL_27c0: Unknown result type (might be due to invalid IL or missing references) //IL_27ca: Unknown result type (might be due to invalid IL or missing references) //IL_27cf: Unknown result type (might be due to invalid IL or missing references) //IL_27d9: Unknown result type (might be due to invalid IL or missing references) //IL_27de: Unknown result type (might be due to invalid IL or missing references) //IL_27e9: Unknown result type (might be due to invalid IL or missing references) //IL_27fa: Unknown result type (might be due to invalid IL or missing references) //IL_27ff: Unknown result type (might be due to invalid IL or missing references) //IL_280a: Unknown result type (might be due to invalid IL or missing references) //IL_2814: Unknown result type (might be due to invalid IL or missing references) //IL_281a: Unknown result type (might be due to invalid IL or missing references) //IL_281f: Unknown result type (might be due to invalid IL or missing references) //IL_2824: Unknown result type (might be due to invalid IL or missing references) //IL_2830: Unknown result type (might be due to invalid IL or missing references) //IL_434b: Unknown result type (might be due to invalid IL or missing references) //IL_4351: Unknown result type (might be due to invalid IL or missing references) //IL_4356: Unknown result type (might be due to invalid IL or missing references) //IL_4361: Unknown result type (might be due to invalid IL or missing references) //IL_4372: Unknown result type (might be due to invalid IL or missing references) //IL_437c: Unknown result type (might be due to invalid IL or missing references) //IL_4381: Unknown result type (might be due to invalid IL or missing references) //IL_438c: Unknown result type (might be due to invalid IL or missing references) //IL_4396: Unknown result type (might be due to invalid IL or missing references) //IL_439b: Unknown result type (might be due to invalid IL or missing references) //IL_43a6: Unknown result type (might be due to invalid IL or missing references) //IL_43b0: Unknown result type (might be due to invalid IL or missing references) //IL_43b5: Unknown result type (might be due to invalid IL or missing references) //IL_43c0: Unknown result type (might be due to invalid IL or missing references) //IL_43c6: Unknown result type (might be due to invalid IL or missing references) //IL_43cb: Unknown result type (might be due to invalid IL or missing references) //IL_43d6: Unknown result type (might be due to invalid IL or missing references) //IL_43e7: Unknown result type (might be due to invalid IL or missing references) //IL_43ec: Unknown result type (might be due to invalid IL or missing references) //IL_43f7: Unknown result type (might be due to invalid IL or missing references) //IL_4408: Unknown result type (might be due to invalid IL or missing references) //IL_4412: Unknown result type (might be due to invalid IL or missing references) //IL_4417: Unknown result type (might be due to invalid IL or missing references) //IL_4422: Unknown result type (might be due to invalid IL or missing references) //IL_442c: Unknown result type (might be due to invalid IL or missing references) //IL_4431: Unknown result type (might be due to invalid IL or missing references) //IL_443c: Unknown result type (might be due to invalid IL or missing references) //IL_4446: Unknown result type (might be due to invalid IL or missing references) //IL_444b: Unknown result type (might be due to invalid IL or missing references) //IL_4457: Unknown result type (might be due to invalid IL or missing references) //IL_45d9: Unknown result type (might be due to invalid IL or missing references) //IL_45df: Unknown result type (might be due to invalid IL or missing references) //IL_45ea: Unknown result type (might be due to invalid IL or missing references) //IL_45f4: Unknown result type (might be due to invalid IL or missing references) //IL_4605: Unknown result type (might be due to invalid IL or missing references) //IL_460a: Unknown result type (might be due to invalid IL or missing references) //IL_4614: Unknown result type (might be due to invalid IL or missing references) //IL_461e: Unknown result type (might be due to invalid IL or missing references) //IL_4624: Unknown result type (might be due to invalid IL or missing references) //IL_462f: Unknown result type (might be due to invalid IL or missing references) //IL_4639: Unknown result type (might be due to invalid IL or missing references) //IL_463e: Unknown result type (might be due to invalid IL or missing references) //IL_4648: Unknown result type (might be due to invalid IL or missing references) //IL_464d: Unknown result type (might be due to invalid IL or missing references) //IL_4657: Unknown result type (might be due to invalid IL or missing references) //IL_465c: Unknown result type (might be due to invalid IL or missing references) //IL_4667: Unknown result type (might be due to invalid IL or missing references) //IL_4671: Unknown result type (might be due to invalid IL or missing references) //IL_4677: Unknown result type (might be due to invalid IL or missing references) //IL_467c: Unknown result type (might be due to invalid IL or missing references) //IL_4681: Unknown result type (might be due to invalid IL or missing references) //IL_468c: Unknown result type (might be due to invalid IL or missing references) //IL_4692: Unknown result type (might be due to invalid IL or missing references) //IL_469d: Unknown result type (might be due to invalid IL or missing references) //IL_46a7: Unknown result type (might be due to invalid IL or missing references) //IL_46b8: Unknown result type (might be due to invalid IL or missing references) //IL_46bd: Unknown result type (might be due to invalid IL or missing references) //IL_46c7: Unknown result type (might be due to invalid IL or missing references) //IL_46d1: Unknown result type (might be due to invalid IL or missing references) //IL_46d7: Unknown result type (might be due to invalid IL or missing references) //IL_46e2: Unknown result type (might be due to invalid IL or missing references) //IL_46ec: Unknown result type (might be due to invalid IL or missing references) //IL_46f1: Unknown result type (might be due to invalid IL or missing references) //IL_46fb: Unknown result type (might be due to invalid IL or missing references) //IL_4700: Unknown result type (might be due to invalid IL or missing references) //IL_470a: Unknown result type (might be due to invalid IL or missing references) //IL_470f: Unknown result type (might be due to invalid IL or missing references) //IL_471a: Unknown result type (might be due to invalid IL or missing references) //IL_472b: Unknown result type (might be due to invalid IL or missing references) //IL_4730: Unknown result type (might be due to invalid IL or missing references) //IL_473b: Unknown result type (might be due to invalid IL or missing references) //IL_4745: Unknown result type (might be due to invalid IL or missing references) //IL_474b: Unknown result type (might be due to invalid IL or missing references) //IL_4750: Unknown result type (might be due to invalid IL or missing references) //IL_4755: Unknown result type (might be due to invalid IL or missing references) //IL_4761: Unknown result type (might be due to invalid IL or missing references) //IL_286a: Unknown result type (might be due to invalid IL or missing references) //IL_2870: Unknown result type (might be due to invalid IL or missing references) //IL_287b: Unknown result type (might be due to invalid IL or missing references) //IL_2885: Unknown result type (might be due to invalid IL or missing references) //IL_288a: Unknown result type (might be due to invalid IL or missing references) //IL_2894: Unknown result type (might be due to invalid IL or missing references) //IL_2899: Unknown result type (might be due to invalid IL or missing references) //IL_28a4: Unknown result type (might be due to invalid IL or missing references) //IL_28ae: Unknown result type (might be due to invalid IL or missing references) //IL_28b4: Unknown result type (might be due to invalid IL or missing references) //IL_28b9: Unknown result type (might be due to invalid IL or missing references) //IL_28be: Unknown result type (might be due to invalid IL or missing references) //IL_28c9: Unknown result type (might be due to invalid IL or missing references) //IL_28cf: Unknown result type (might be due to invalid IL or missing references) //IL_28da: Unknown result type (might be due to invalid IL or missing references) //IL_28e4: Unknown result type (might be due to invalid IL or missing references) //IL_28e9: Unknown result type (might be due to invalid IL or missing references) //IL_28f3: Unknown result type (might be due to invalid IL or missing references) //IL_28f8: Unknown result type (might be due to invalid IL or missing references) //IL_2903: Unknown result type (might be due to invalid IL or missing references) //IL_2914: Unknown result type (might be due to invalid IL or missing references) //IL_2919: Unknown result type (might be due to invalid IL or missing references) //IL_2924: Unknown result type (might be due to invalid IL or missing references) //IL_292e: Unknown result type (might be due to invalid IL or missing references) //IL_2934: Unknown result type (might be due to invalid IL or missing references) //IL_2939: Unknown result type (might be due to invalid IL or missing references) //IL_293e: Unknown result type (might be due to invalid IL or missing references) //IL_294a: Unknown result type (might be due to invalid IL or missing references) //IL_479b: Unknown result type (might be due to invalid IL or missing references) //IL_47a1: Unknown result type (might be due to invalid IL or missing references) //IL_47ac: Unknown result type (might be due to invalid IL or missing references) //IL_47b6: Unknown result type (might be due to invalid IL or missing references) //IL_47c7: Unknown result type (might be due to invalid IL or missing references) //IL_47cc: Unknown result type (might be due to invalid IL or missing references) //IL_47d6: Unknown result type (might be due to invalid IL or missing references) //IL_47dc: Unknown result type (might be due to invalid IL or missing references) //IL_47e7: Unknown result type (might be due to invalid IL or missing references) //IL_47f1: Unknown result type (might be due to invalid IL or missing references) //IL_47f6: Unknown result type (might be due to invalid IL or missing references) //IL_4800: Unknown result type (might be due to invalid IL or missing references) //IL_4805: Unknown result type (might be due to invalid IL or missing references) //IL_480f: Unknown result type (might be due to invalid IL or missing references) //IL_4814: Unknown result type (might be due to invalid IL or missing references) //IL_481f: Unknown result type (might be due to invalid IL or missing references) //IL_4829: Unknown result type (might be due to invalid IL or missing references) //IL_482f: Unknown result type (might be due to invalid IL or missing references) //IL_4834: Unknown result type (might be due to invalid IL or missing references) //IL_4839: Unknown result type (might be due to invalid IL or missing references) //IL_4844: Unknown result type (might be due to invalid IL or missing references) //IL_484a: Unknown result type (might be due to invalid IL or missing references) //IL_4855: Unknown result type (might be due to invalid IL or missing references) //IL_485f: Unknown result type (might be due to invalid IL or missing references) //IL_4870: Unknown result type (might be due to invalid IL or missing references) //IL_4875: Unknown result type (might be due to invalid IL or missing references) //IL_487f: Unknown result type (might be due to invalid IL or missing references) //IL_4885: Unknown result type (might be due to invalid IL or missing references) //IL_4890: Unknown result type (might be due to invalid IL or missing references) //IL_489a: Unknown result type (might be due to invalid IL or missing references) //IL_489f: Unknown result type (might be due to invalid IL or missing references) //IL_48a9: Unknown result type (might be due to invalid IL or missing references) //IL_48ae: Unknown result type (might be due to invalid IL or missing references) //IL_48b8: Unknown result type (might be due to invalid IL or missing references) //IL_48bd: Unknown result type (might be due to invalid IL or missing references) //IL_48c8: Unknown result type (might be due to invalid IL or missing references) //IL_48d9: Unknown result type (might be due to invalid IL or missing references) //IL_48de: Unknown result type (might be due to invalid IL or missing references) //IL_48e9: Unknown result type (might be due to invalid IL or missing references) //IL_48f3: Unknown result type (might be due to invalid IL or missing references) //IL_48f9: Unknown result type (might be due to invalid IL or missing references) //IL_48fe: Unknown result type (might be due to invalid IL or missing references) //IL_4903: Unknown result type (might be due to invalid IL or missing references) //IL_490f: Unknown result type (might be due to invalid IL or missing references) //IL_2984: Unknown result type (might be due to invalid IL or missing references) //IL_298a: Unknown result type (might be due to invalid IL or missing references) //IL_298f: Unknown result type (might be due to invalid IL or missing references) //IL_299a: Unknown result type (might be due to invalid IL or missing references) //IL_29ab: Unknown result type (might be due to invalid IL or missing references) //IL_29b5: Unknown result type (might be due to invalid IL or missing references) //IL_29ba: Unknown result type (might be due to invalid IL or missing references) //IL_29c5: Unknown result type (might be due to invalid IL or missing references) //IL_29cf: Unknown result type (might be due to invalid IL or missing references) //IL_29d4: Unknown result type (might be due to invalid IL or missing references) //IL_29df: Unknown result type (might be due to invalid IL or missing references) //IL_29e9: Unknown result type (might be due to invalid IL or missing references) //IL_29ee: Unknown result type (might be due to invalid IL or missing references) //IL_29f9: Unknown result type (might be due to invalid IL or missing references) //IL_29ff: Unknown result type (might be due to invalid IL or missing references) //IL_2a04: Unknown result type (might be due to invalid IL or missing references) //IL_2a0f: Unknown result type (might be due to invalid IL or missing references) //IL_2a20: Unknown result type (might be due to invalid IL or missing references) //IL_2a25: Unknown result type (might be due to invalid IL or missing references) //IL_2a30: Unknown result type (might be due to invalid IL or missing references) //IL_2a41: Unknown result type (might be due to invalid IL or missing references) //IL_2a4b: Unknown result type (might be due to invalid IL or missing references) //IL_2a50: Unknown result type (might be due to invalid IL or missing references) //IL_2a5b: Unknown result type (might be due to invalid IL or missing references) //IL_2a65: Unknown result type (might be due to invalid IL or missing references) //IL_2a6a: Unknown result type (might be due to invalid IL or missing references) //IL_2a75: Unknown result type (might be due to invalid IL or missing references) //IL_2a7f: Unknown result type (might be due to invalid IL or missing references) //IL_2a84: Unknown result type (might be due to invalid IL or missing references) //IL_2a90: Unknown result type (might be due to invalid IL or missing references) //IL_4949: Unknown result type (might be due to invalid IL or missing references) //IL_494f: Unknown result type (might be due to invalid IL or missing references) //IL_495a: Unknown result type (might be due to invalid IL or missing references) //IL_4964: Unknown result type (might be due to invalid IL or missing references) //IL_4975: Unknown result type (might be due to invalid IL or missing references) //IL_497a: Unknown result type (might be due to invalid IL or missing references) //IL_4984: Unknown result type (might be due to invalid IL or missing references) //IL_498a: Unknown result type (might be due to invalid IL or missing references) //IL_4995: Unknown result type (might be due to invalid IL or missing references) //IL_499f: Unknown result type (might be due to invalid IL or missing references) //IL_49a4: Unknown result type (might be due to invalid IL or missing references) //IL_49ae: Unknown result type (might be due to invalid IL or missing references) //IL_49b8: Unknown result type (might be due to invalid IL or missing references) //IL_49bd: Unknown result type (might be due to invalid IL or missing references) //IL_49c7: Unknown result type (might be due to invalid IL or missing references) //IL_49cc: Unknown result type (might be due to invalid IL or missing references) //IL_49d7: Unknown result type (might be due to invalid IL or missing references) //IL_49e1: Unknown result type (might be due to invalid IL or missing references) //IL_49e7: Unknown result type (might be due to invalid IL or missing references) //IL_49ec: Unknown result type (might be due to invalid IL or missing references) //IL_49f1: Unknown result type (might be due to invalid IL or missing references) //IL_49fc: Unknown result type (might be due to invalid IL or missing references) //IL_4a02: Unknown result type (might be due to invalid IL or missing references) //IL_4a0d: Unknown result type (might be due to invalid IL or missing references) //IL_4a17: Unknown result type (might be due to invalid IL or missing references) //IL_4a28: Unknown result type (might be due to invalid IL or missing references) //IL_4a2d: Unknown result type (might be due to invalid IL or missing references) //IL_4a37: Unknown result type (might be due to invalid IL or missing references) //IL_4a3d: Unknown result type (might be due to invalid IL or missing references) //IL_4a48: Unknown result type (might be due to invalid IL or missing references) //IL_4a52: Unknown result type (might be due to invalid IL or missing references) //IL_4a57: Unknown result type (might be due to invalid IL or missing references) //IL_4a61: Unknown result type (might be due to invalid IL or missing references) //IL_4a6b: Unknown result type (might be due to invalid IL or missing references) //IL_4a70: Unknown result type (might be due to invalid IL or missing references) //IL_4a7a: Unknown result type (might be due to invalid IL or missing references) //IL_4a7f: Unknown result type (might be due to invalid IL or missing references) //IL_4a8a: Unknown result type (might be due to invalid IL or missing references) //IL_4a9b: Unknown result type (might be due to invalid IL or missing references) //IL_4aa0: Unknown result type (might be due to invalid IL or missing references) //IL_4aab: Unknown result type (might be due to invalid IL or missing references) //IL_4ab5: Unknown result type (might be due to invalid IL or missing references) //IL_4abb: Unknown result type (might be due to invalid IL or missing references) //IL_4ac0: Unknown result type (might be due to invalid IL or missing references) //IL_4ac5: Unknown result type (might be due to invalid IL or missing references) //IL_4ad1: Unknown result type (might be due to invalid IL or missing references) //IL_2aca: Unknown result type (might be due to invalid IL or missing references) //IL_2ad0: Unknown result type (might be due to invalid IL or missing references) //IL_2ad5: Unknown result type (might be due to invalid IL or missing references) //IL_2ae0: Unknown result type (might be due to invalid IL or missing references) //IL_2af1: Unknown result type (might be due to invalid IL or missing references) //IL_2afb: Unknown result type (might be due to invalid IL or missing references) //IL_2b00: Unknown result type (might be due to invalid IL or missing references) //IL_2b0b: Unknown result type (might be due to invalid IL or missing references) //IL_2b15: Unknown result type (might be due to invalid IL or missing references) //IL_2b1a: Unknown result type (might be due to invalid IL or missing references) //IL_2b25: Unknown result type (might be due to invalid IL or missing references) //IL_2b2f: Unknown result type (might be due to invalid IL or missing references) //IL_2b34: Unknown result type (might be due to invalid IL or missing references) //IL_2b3f: Unknown result type (might be due to invalid IL or missing references) //IL_2b45: Unknown result type (might be due to invalid IL or missing references) //IL_2b4a: Unknown result type (might be due to invalid IL or missing references) //IL_2b55: Unknown result type (might be due to invalid IL or missing references) //IL_2b66: Unknown result type (might be due to invalid IL or missing references) //IL_2b6b: Unknown result type (might be due to invalid IL or missing references) //IL_2b76: Unknown result type (might be due to invalid IL or missing references) //IL_2b87: Unknown result type (might be due to invalid IL or missing references) //IL_2b91: Unknown result type (might be due to invalid IL or missing references) //IL_2b96: Unknown result type (might be due to invalid IL or missing references) //IL_2ba1: Unknown result type (might be due to invalid IL or missing references) //IL_2bab: Unknown result type (might be due to invalid IL or missing references) //IL_2bb0: Unknown result type (might be due to invalid IL or missing references) //IL_2bbb: Unknown result type (might be due to invalid IL or missing references) //IL_2bc5: Unknown result type (might be due to invalid IL or missing references) //IL_2bca: Unknown result type (might be due to invalid IL or missing references) //IL_2bd6: Unknown result type (might be due to invalid IL or missing references) //IL_4b0b: Unknown result type (might be due to invalid IL or missing references) //IL_4b11: Unknown result type (might be due to invalid IL or missing references) //IL_4b1c: Unknown result type (might be due to invalid IL or missing references) //IL_4b26: Unknown result type (might be due to invalid IL or missing references) //IL_4b2b: Unknown result type (might be due to invalid IL or missing references) //IL_4b35: Unknown result type (might be due to invalid IL or missing references) //IL_4b3a: Unknown result type (might be due to invalid IL or missing references) //IL_4b45: Unknown result type (might be due to invalid IL or missing references) //IL_4b4f: Unknown result type (might be due to invalid IL or missing references) //IL_4b55: Unknown result type (might be due to invalid IL or missing references) //IL_4b5a: Unknown result type (might be due to invalid IL or missing references) //IL_4b5f: Unknown result type (might be due to invalid IL or missing references) //IL_4b6a: Unknown result type (might be due to invalid IL or missing references) //IL_4b70: Unknown result type (might be due to invalid IL or missing references) //IL_4b7b: Unknown result type (might be due to invalid IL or missing references) //IL_4b85: Unknown result type (might be due to invalid IL or missing references) //IL_4b8a: Unknown result type (might be due to invalid IL or missing references) //IL_4b94: Unknown result type (might be due to invalid IL or missing references) //IL_4b99: Unknown result type (might be due to invalid IL or missing references) //IL_4ba4: Unknown result type (might be due to invalid IL or missing references) //IL_4bb5: Unknown result type (might be due to invalid IL or missing references) //IL_4bba: Unknown result type (might be due to invalid IL or missing references) //IL_4bc5: Unknown result type (might be due to invalid IL or missing references) //IL_4bcf: Unknown result type (might be due to invalid IL or missing references) //IL_4bd5: Unknown result type (might be due to invalid IL or missing references) //IL_4bda: Unknown result type (might be due to invalid IL or missing references) //IL_4bdf: Unknown result type (might be due to invalid IL or missing references) //IL_4beb: Unknown result type (might be due to invalid IL or missing references) //IL_2c10: Unknown result type (might be due to invalid IL or missing references) //IL_2c16: Unknown result type (might be due to invalid IL or missing references) //IL_2c1b: Unknown result type (might be due to invalid IL or missing references) //IL_2c26: Unknown result type (might be due to invalid IL or missing references) //IL_2c37: Unknown result type (might be due to invalid IL or missing references) //IL_2c41: Unknown result type (might be due to invalid IL or missing references) //IL_2c46: Unknown result type (might be due to invalid IL or missing references) //IL_2c51: Unknown result type (might be due to invalid IL or missing references) //IL_2c5b: Unknown result type (might be due to invalid IL or missing references) //IL_2c60: Unknown result type (might be due to invalid IL or missing references) //IL_2c6b: Unknown result type (might be due to invalid IL or missing references) //IL_2c75: Unknown result type (might be due to invalid IL or missing references) //IL_2c7a: Unknown result type (might be due to invalid IL or missing references) //IL_2c85: Unknown result type (might be due to invalid IL or missing references) //IL_2c8b: Unknown result type (might be due to invalid IL or missing references) //IL_2c90: Unknown result type (might be due to invalid IL or missing references) //IL_2c9b: Unknown result type (might be due to invalid IL or missing references) //IL_2cac: Unknown result type (might be due to invalid IL or missing references) //IL_2cb1: Unknown result type (might be due to invalid IL or missing references) //IL_2cbc: Unknown result type (might be due to invalid IL or missing references) //IL_2ccd: Unknown result type (might be due to invalid IL or missing references) //IL_2cd7: Unknown result type (might be due to invalid IL or missing references) //IL_2cdc: Unknown result type (might be due to invalid IL or missing references) //IL_2ce7: Unknown result type (might be due to invalid IL or missing references) //IL_2cf1: Unknown result type (might be due to invalid IL or missing references) //IL_2cf6: Unknown result type (might be due to invalid IL or missing references) //IL_2d01: Unknown result type (might be due to invalid IL or missing references) //IL_2d0b: Unknown result type (might be due to invalid IL or missing references) //IL_2d10: Unknown result type (might be due to invalid IL or missing references) //IL_2d1c: Unknown result type (might be due to invalid IL or missing references) //IL_4c25: Unknown result type (might be due to invalid IL or missing references) //IL_4c2b: Unknown result type (might be due to invalid IL or missing references) //IL_4c36: Unknown result type (might be due to invalid IL or missing references) //IL_4c40: Unknown result type (might be due to invalid IL or missing references) //IL_4c51: Unknown result type (might be due to invalid IL or missing references) //IL_4c56: Unknown result type (might be due to invalid IL or missing references) //IL_4c60: Unknown result type (might be due to invalid IL or missing references) //IL_4c65: Unknown result type (might be due to invalid IL or missing references) //IL_4c70: Unknown result type (might be due to invalid IL or missing references) //IL_4c7a: Unknown result type (might be due to invalid IL or missing references) //IL_4c80: Unknown result type (might be due to invalid IL or missing references) //IL_4c85: Unknown result type (might be due to invalid IL or missing references) //IL_4c8a: Unknown result type (might be due to invalid IL or missing references) //IL_4c95: Unknown result type (might be due to invalid IL or missing references) //IL_4c9b: Unknown result type (might be due to invalid IL or missing references) //IL_4ca6: Unknown result type (might be due to invalid IL or missing references) //IL_4cb0: Unknown result type (might be due to invalid IL or missing references) //IL_4cc1: Unknown result type (might be due to invalid IL or missing references) //IL_4cc6: Unknown result type (might be due to invalid IL or missing references) //IL_4cd0: Unknown result type (might be due to invalid IL or missing references) //IL_4cd5: Unknown result type (might be due to invalid IL or missing references) //IL_4ce0: Unknown result type (might be due to invalid IL or missing references) //IL_4cf1: Unknown result type (might be due to invalid IL or missing references) //IL_4cf6: Unknown result type (might be due to invalid IL or missing references) //IL_4d01: Unknown result type (might be due to invalid IL or missing references) //IL_4d0b: Unknown result type (might be due to invalid IL or missing references) //IL_4d11: Unknown result type (might be due to invalid IL or missing references) //IL_4d16: Unknown result type (might be due to invalid IL or missing references) //IL_4d1b: Unknown result type (might be due to invalid IL or missing references) //IL_4d27: Unknown result type (might be due to invalid IL or missing references) //IL_2d56: Unknown result type (might be due to invalid IL or missing references) //IL_2d5c: Unknown result type (might be due to invalid IL or missing references) //IL_2d61: Unknown result type (might be due to invalid IL or missing references) //IL_2d6c: Unknown result type (might be due to invalid IL or missing references) //IL_2d7d: Unknown result type (might be due to invalid IL or missing references) //IL_2d87: Unknown result type (might be due to invalid IL or missing references) //IL_2d8c: Unknown result type (might be due to invalid IL or missing references) //IL_2d97: Unknown result type (might be due to invalid IL or missing references) //IL_2da1: Unknown result type (might be due to invalid IL or missing references) //IL_2da6: Unknown result type (might be due to invalid IL or missing references) //IL_2db1: Unknown result type (might be due to invalid IL or missing references) //IL_2dbb: Unknown result type (might be due to invalid IL or missing references) //IL_2dc0: Unknown result type (might be due to invalid IL or missing references) //IL_2dcb: Unknown result type (might be due to invalid IL or missing references) //IL_2dd1: Unknown result type (might be due to invalid IL or missing references) //IL_2dd6: Unknown result type (might be due to invalid IL or missing references) //IL_2de1: Unknown result type (might be due to invalid IL or missing references) //IL_2df2: Unknown result type (might be due to invalid IL or missing references) //IL_2df7: Unknown result type (might be due to invalid IL or missing references) //IL_2e02: Unknown result type (might be due to invalid IL or missing references) //IL_2e13: Unknown result type (might be due to invalid IL or missing references) //IL_2e1d: Unknown result type (might be due to invalid IL or missing references) //IL_2e22: Unknown result type (might be due to invalid IL or missing references) //IL_2e2d: Unknown result type (might be due to invalid IL or missing references) //IL_2e37: Unknown result type (might be due to invalid IL or missing references) //IL_2e3c: Unknown result type (might be due to invalid IL or missing references) //IL_2e47: Unknown result type (might be due to invalid IL or missing references) //IL_2e51: Unknown result type (might be due to invalid IL or missing references) //IL_2e56: Unknown result type (might be due to invalid IL or missing references) //IL_2e62: Unknown result type (might be due to invalid IL or missing references) //IL_4d61: Unknown result type (might be due to invalid IL or missing references) //IL_4d67: Unknown result type (might be due to invalid IL or missing references) //IL_4d72: Unknown result type (might be due to invalid IL or missing references) //IL_4d7c: Unknown result type (might be due to invalid IL or missing references) //IL_4d8d: Unknown result type (might be due to invalid IL or missing references) //IL_4d92: Unknown result type (might be due to invalid IL or missing references) //IL_4d9c: Unknown result type (might be due to invalid IL or missing references) //IL_4da6: Unknown result type (might be due to invalid IL or missing references) //IL_4dac: Unknown result type (might be due to invalid IL or missing references) //IL_4db7: Unknown result type (might be due to invalid IL or missing references) //IL_4dc1: Unknown result type (might be due to invalid IL or missing references) //IL_4dc6: Unknown result type (might be due to invalid IL or missing references) //IL_4dd0: Unknown result type (might be due to invalid IL or missing references) //IL_4dd5: Unknown result type (might be due to invalid IL or missing references) //IL_4ddf: Unknown result type (might be due to invalid IL or missing references) //IL_4de4: Unknown result type (might be due to invalid IL or missing references) //IL_4def: Unknown result type (might be due to invalid IL or missing references) //IL_4df9: Unknown result type (might be due to invalid IL or missing references) //IL_4dff: Unknown result type (might be due to invalid IL or missing references) //IL_4e04: Unknown result type (might be due to invalid IL or missing references) //IL_4e09: Unknown result type (might be due to invalid IL or missing references) //IL_4e14: Unknown result type (might be due to invalid IL or missing references) //IL_4e1a: Unknown result type (might be due to invalid IL or missing references) //IL_4e25: Unknown result type (might be due to invalid IL or missing references) //IL_4e2f: Unknown result type (might be due to invalid IL or missing references) //IL_4e40: Unknown result type (might be due to invalid IL or missing references) //IL_4e45: Unknown result type (might be due to invalid IL or missing references) //IL_4e4f: Unknown result type (might be due to invalid IL or missing references) //IL_4e59: Unknown result type (might be due to invalid IL or missing references) //IL_4e5f: Unknown result type (might be due to invalid IL or missing references) //IL_4e6a: Unknown result type (might be due to invalid IL or missing references) //IL_4e74: Unknown result type (might be due to invalid IL or missing references) //IL_4e79: Unknown result type (might be due to invalid IL or missing references) //IL_4e83: Unknown result type (might be due to invalid IL or missing references) //IL_4e88: Unknown result type (might be due to invalid IL or missing references) //IL_4e92: Unknown result type (might be due to invalid IL or missing references) //IL_4e97: Unknown result type (might be due to invalid IL or missing references) //IL_4ea2: Unknown result type (might be due to invalid IL or missing references) //IL_4eb3: Unknown result type (might be due to invalid IL or missing references) //IL_4eb8: Unknown result type (might be due to invalid IL or missing references) //IL_4ec3: Unknown result type (might be due to invalid IL or missing references) //IL_4ecd: Unknown result type (might be due to invalid IL or missing references) //IL_4ed3: Unknown result type (might be due to invalid IL or missing references) //IL_4ed8: Unknown result type (might be due to invalid IL or missing references) //IL_4edd: Unknown result type (might be due to invalid IL or missing references) //IL_4ee9: Unknown result type (might be due to invalid IL or missing references) //IL_2e9c: Unknown result type (might be due to invalid IL or missing references) //IL_2ea2: Unknown result type (might be due to invalid IL or missing references) //IL_2ea7: Unknown result type (might be due to invalid IL or missing references) //IL_2eb2: Unknown result type (might be due to invalid IL or missing references) //IL_2ec3: Unknown result type (might be due to invalid IL or missing references) //IL_2ecd: Unknown result type (might be due to invalid IL or missing references) //IL_2ed2: Unknown result type (might be due to invalid IL or missing references) //IL_2edd: Unknown result type (might be due to invalid IL or missing references) //IL_2ee7: Unknown result type (might be due to invalid IL or missing references) //IL_2eec: Unknown result type (might be due to invalid IL or missing references) //IL_2ef7: Unknown result type (might be due to invalid IL or missing references) //IL_2f01: Unknown result type (might be due to invalid IL or missing references) //IL_2f06: Unknown result type (might be due to invalid IL or missing references) //IL_2f11: Unknown result type (might be due to invalid IL or missing references) //IL_2f17: Unknown result type (might be due to invalid IL or missing references) //IL_2f1c: Unknown result type (might be due to invalid IL or missing references) //IL_2f27: Unknown result type (might be due to invalid IL or missing references) //IL_2f38: Unknown result type (might be due to invalid IL or missing references) //IL_2f3d: Unknown result type (might be due to invalid IL or missing references) //IL_2f48: Unknown result type (might be due to invalid IL or missing references) //IL_2f59: Unknown result type (might be due to invalid IL or missing references) //IL_2f63: Unknown result type (might be due to invalid IL or missing references) //IL_2f68: Unknown result type (might be due to invalid IL or missing references) //IL_2f73: Unknown result type (might be due to invalid IL or missing references) //IL_2f7d: Unknown result type (might be due to invalid IL or missing references) //IL_2f82: Unknown result type (might be due to invalid IL or missing references) //IL_2f8d: Unknown result type (might be due to invalid IL or missing references) //IL_2f97: Unknown result type (might be due to invalid IL or missing references) //IL_2f9c: Unknown result type (might be due to invalid IL or missing references) //IL_2fa8: Unknown result type (might be due to invalid IL or missing references) //IL_4f23: Unknown result type (might be due to invalid IL or missing references) //IL_4f29: Unknown result type (might be due to invalid IL or missing references) //IL_4f34: Unknown result type (might be due to invalid IL or missing references) //IL_4f3e: Unknown result type (might be due to invalid IL or missing references) //IL_4f4f: Unknown result type (might be due to invalid IL or missing references) //IL_4f54: Unknown result type (might be due to invalid IL or missing references) //IL_4f5e: Unknown result type (might be due to invalid IL or missing references) //IL_4f64: Unknown result type (might be due to invalid IL or missing references) //IL_4f6f: Unknown result type (might be due to invalid IL or missing references) //IL_4f79: Unknown result type (might be due to invalid IL or missing references) //IL_4f7e: Unknown result type (might be due to invalid IL or missing references) //IL_4f88: Unknown result type (might be due to invalid IL or missing references) //IL_4f8d: Unknown result type (might be due to invalid IL or missing references) //IL_4f97: Unknown result type (might be due to invalid IL or missing references) //IL_4f9c: Unknown result type (might be due to invalid IL or missing references) //IL_4fa7: Unknown result type (might be due to invalid IL or missing references) //IL_4fb1: Unknown result type (might be due to invalid IL or missing references) //IL_4fb7: Unknown result type (might be due to invalid IL or missing references) //IL_4fbc: Unknown result type (might be due to invalid IL or missing references) //IL_4fc1: Unknown result type (might be due to invalid IL or missing references) //IL_4fcc: Unknown result type (might be due to invalid IL or missing references) //IL_4fd2: Unknown result type (might be due to invalid IL or missing references) //IL_4fdd: Unknown result type (might be due to invalid IL or missing references) //IL_4fe7: Unknown result type (might be due to invalid IL or missing references) //IL_4ff8: Unknown result type (might be due to invalid IL or missing references) //IL_4ffd: Unknown result type (might be due to invalid IL or missing references) //IL_5007: Unknown result type (might be due to invalid IL or missing references) //IL_500d: Unknown result type (might be due to invalid IL or missing references) //IL_5018: Unknown result type (might be due to invalid IL or missing references) //IL_5022: Unknown result type (might be due to invalid IL or missing references) //IL_5027: Unknown result type (might be due to invalid IL or missing references) //IL_5031: Unknown result type (might be due to invalid IL or missing references) //IL_5036: Unknown result type (might be due to invalid IL or missing references) //IL_5040: Unknown result type (might be due to invalid IL or missing references) //IL_5045: Unknown result type (might be due to invalid IL or missing references) //IL_5050: Unknown result type (might be due to invalid IL or missing references) //IL_5061: Unknown result type (might be due to invalid IL or missing references) //IL_5066: Unknown result type (might be due to invalid IL or missing references) //IL_5071: Unknown result type (might be due to invalid IL or missing references) //IL_507b: Unknown result type (might be due to invalid IL or missing references) //IL_5081: Unknown result type (might be due to invalid IL or missing references) //IL_5086: Unknown result type (might be due to invalid IL or missing references) //IL_508b: Unknown result type (might be due to invalid IL or missing references) //IL_5097: Unknown result type (might be due to invalid IL or missing references) //IL_2fe2: Unknown result type (might be due to invalid IL or missing references) //IL_2fe8: Unknown result type (might be due to invalid IL or missing references) //IL_2fed: Unknown result type (might be due to invalid IL or missing references) //IL_2ff8: Unknown result type (might be due to invalid IL or missing references) //IL_3009: Unknown result type (might be due to invalid IL or missing references) //IL_3013: Unknown result type (might be due to invalid IL or missing references) //IL_3018: Unknown result type (might be due to invalid IL or missing references) //IL_3023: Unknown result type (might be due to invalid IL or missing references) //IL_302d: Unknown result type (might be due to invalid IL or missing references) //IL_3032: Unknown result type (might be due to invalid IL or missing references) //IL_303d: Unknown result type (might be due to invalid IL or missing references) //IL_3047: Unknown result type (might be due to invalid IL or missing references) //IL_304c: Unknown result type (might be due to invalid IL or missing references) //IL_3057: Unknown result type (might be due to invalid IL or missing references) //IL_305d: Unknown result type (might be due to invalid IL or missing references) //IL_3062: Unknown result type (might be due to invalid IL or missing references) //IL_306d: Unknown result type (might be due to invalid IL or missing references) //IL_307e: Unknown result type (might be due to invalid IL or missing references) //IL_3083: Unknown result type (might be due to invalid IL or missing references) //IL_308e: Unknown result type (might be due to invalid IL or missing references) //IL_309f: Unknown result type (might be due to invalid IL or missing references) //IL_30a9: Unknown result type (might be due to invalid IL or missing references) //IL_30ae: Unknown result type (might be due to invalid IL or missing references) //IL_30b9: Unknown result type (might be due to invalid IL or missing references) //IL_30c3: Unknown result type (might be due to invalid IL or missing references) //IL_30c8: Unknown result type (might be due to invalid IL or missing references) //IL_30d3: Unknown result type (might be due to invalid IL or missing references) //IL_30dd: Unknown result type (might be due to invalid IL or missing references) //IL_30e2: Unknown result type (might be due to invalid IL or missing references) //IL_30ee: Unknown result type (might be due to invalid IL or missing references) //IL_50d1: Unknown result type (might be due to invalid IL or missing references) //IL_50d7: Unknown result type (might be due to invalid IL or missing references) //IL_50e2: Unknown result type (might be due to invalid IL or missing references) //IL_50ec: Unknown result type (might be due to invalid IL or missing references) //IL_50fd: Unknown result type (might be due to invalid IL or missing references) //IL_5102: Unknown result type (might be due to invalid IL or missing references) //IL_510c: Unknown result type (might be due to invalid IL or missing references) //IL_5112: Unknown result type (might be due to invalid IL or missing references) //IL_511d: Unknown result type (might be due to invalid IL or missing references) //IL_5127: Unknown result type (might be due to invalid IL or missing references) //IL_512c: Unknown result type (might be due to invalid IL or missing references) //IL_5136: Unknown result type (might be due to invalid IL or missing references) //IL_5140: Unknown result type (might be due to invalid IL or missing references) //IL_5145: Unknown result type (might be due to invalid IL or missing references) //IL_514f: Unknown result type (might be due to invalid IL or missing references) //IL_5154: Unknown result type (might be due to invalid IL or missing references) //IL_515f: Unknown result type (might be due to invalid IL or missing references) //IL_5169: Unknown result type (might be due to invalid IL or missing references) //IL_516f: Unknown result type (might be due to invalid IL or missing references) //IL_5174: Unknown result type (might be due to invalid IL or missing references) //IL_5179: Unknown result type (might be due to invalid IL or missing references) //IL_5184: Unknown result type (might be due to invalid IL or missing references) //IL_518a: Unknown result type (might be due to invalid IL or missing references) //IL_5195: Unknown result type (might be due to invalid IL or missing references) //IL_519f: Unknown result type (might be due to invalid IL or missing references) //IL_51b0: Unknown result type (might be due to invalid IL or missing references) //IL_51b5: Unknown result type (might be due to invalid IL or missing references) //IL_51bf: Unknown result type (might be due to invalid IL or missing references) //IL_51c5: Unknown result type (might be due to invalid IL or missing references) //IL_51d0: Unknown result type (might be due to invalid IL or missing references) //IL_51da: Unknown result type (might be due to invalid IL or missing references) //IL_51df: Unknown result type (might be due to invalid IL or missing references) //IL_51e9: Unknown result type (might be due to invalid IL or missing references) //IL_51f3: Unknown result type (might be due to invalid IL or missing references) //IL_51f8: Unknown result type (might be due to invalid IL or missing references) //IL_5202: Unknown result type (might be due to invalid IL or missing references) //IL_5207: Unknown result type (might be due to invalid IL or missing references) //IL_5212: Unknown result type (might be due to invalid IL or missing references) //IL_5223: Unknown result type (might be due to invalid IL or missing references) //IL_5228: Unknown result type (might be due to invalid IL or missing references) //IL_5233: Unknown result type (might be due to invalid IL or missing references) //IL_523d: Unknown result type (might be due to invalid IL or missing references) //IL_5243: Unknown result type (might be due to invalid IL or missing references) //IL_5248: Unknown result type (might be due to invalid IL or missing references) //IL_524d: Unknown result type (might be due to invalid IL or missing references) //IL_5259: Unknown result type (might be due to invalid IL or missing references) //IL_313d: Unknown result type (might be due to invalid IL or missing references) //IL_3143: Unknown result type (might be due to invalid IL or missing references) //IL_314e: Unknown result type (might be due to invalid IL or missing references) //IL_3158: Unknown result type (might be due to invalid IL or missing references) //IL_3169: Unknown result type (might be due to invalid IL or missing references) //IL_316e: Unknown result type (might be due to invalid IL or missing references) //IL_3178: Unknown result type (might be due to invalid IL or missing references) //IL_317d: Unknown result type (might be due to invalid IL or missing references) //IL_3188: Unknown result type (might be due to invalid IL or missing references) //IL_3192: Unknown result type (might be due to invalid IL or missing references) //IL_3198: Unknown result type (might be due to invalid IL or missing references) //IL_319d: Unknown result type (might be due to invalid IL or missing references) //IL_31a2: Unknown result type (might be due to invalid IL or missing references) //IL_31ad: Unknown result type (might be due to invalid IL or missing references) //IL_31b3: Unknown result type (might be due to invalid IL or missing references) //IL_31be: Unknown result type (might be due to invalid IL or missing references) //IL_31c8: Unknown result type (might be due to invalid IL or missing references) //IL_31d9: Unknown result type (might be due to invalid IL or missing references) //IL_31de: Unknown result type (might be due to invalid IL or missing references) //IL_31e8: Unknown result type (might be due to invalid IL or missing references) //IL_31ed: Unknown result type (might be due to invalid IL or missing references) //IL_31f8: Unknown result type (might be due to invalid IL or missing references) //IL_3209: Unknown result type (might be due to invalid IL or missing references) //IL_320e: Unknown result type (might be due to invalid IL or missing references) //IL_3219: Unknown result type (might be due to invalid IL or missing references) //IL_3223: Unknown result type (might be due to invalid IL or missing references) //IL_3229: Unknown result type (might be due to invalid IL or missing references) //IL_322e: Unknown result type (might be due to invalid IL or missing references) //IL_3233: Unknown result type (might be due to invalid IL or missing references) //IL_323f: Unknown result type (might be due to invalid IL or missing references) //IL_5293: Unknown result type (might be due to invalid IL or missing references) //IL_5299: Unknown result type (might be due to invalid IL or missing references) //IL_52a4: Unknown result type (might be due to invalid IL or missing references) //IL_52ae: Unknown result type (might be due to invalid IL or missing references) //IL_52b3: Unknown result type (might be due to invalid IL or missing references) //IL_52bd: Unknown result type (might be due to invalid IL or missing references) //IL_52c2: Unknown result type (might be due to invalid IL or missing references) //IL_52cd: Unknown result type (might be due to invalid IL or missing references) //IL_52d7: Unknown result type (might be due to invalid IL or missing references) //IL_52dd: Unknown result type (might be due to invalid IL or missing references) //IL_52e2: Unknown result type (might be due to invalid IL or missing references) //IL_52e7: Unknown result type (might be due to invalid IL or missing references) //IL_52f2: Unknown result type (might be due to invalid IL or missing references) //IL_52f8: Unknown result type (might be due to invalid IL or missing references) //IL_5303: Unknown result type (might be due to invalid IL or missing references) //IL_530d: Unknown result type (might be due to invalid IL or missing references) //IL_5312: Unknown result type (might be due to invalid IL or missing references) //IL_531c: Unknown result type (might be due to invalid IL or missing references) //IL_5321: Unknown result type (might be due to invalid IL or missing references) //IL_532c: Unknown result type (might be due to invalid IL or missing references) //IL_533d: Unknown result type (might be due to invalid IL or missing references) //IL_5342: Unknown result type (might be due to invalid IL or missing references) //IL_534d: Unknown result type (might be due to invalid IL or missing references) //IL_5357: Unknown result type (might be due to invalid IL or missing references) //IL_535d: Unknown result type (might be due to invalid IL or missing references) //IL_5362: Unknown result type (might be due to invalid IL or missing references) //IL_5367: Unknown result type (might be due to invalid IL or missing references) //IL_5373: Unknown result type (might be due to invalid IL or missing references) //IL_3825: Unknown result type (might be due to invalid IL or missing references) //IL_382b: Unknown result type (might be due to invalid IL or missing references) //IL_3836: Unknown result type (might be due to invalid IL or missing references) //IL_3840: Unknown result type (might be due to invalid IL or missing references) //IL_3851: Unknown result type (might be due to invalid IL or missing references) //IL_3856: Unknown result type (might be due to invalid IL or missing references) //IL_3860: Unknown result type (might be due to invalid IL or missing references) //IL_3865: Unknown result type (might be due to invalid IL or missing references) //IL_3870: Unknown result type (might be due to invalid IL or missing references) //IL_387a: Unknown result type (might be due to invalid IL or missing references) //IL_3880: Unknown result type (might be due to invalid IL or missing references) //IL_3885: Unknown result type (might be due to invalid IL or missing references) //IL_388a: Unknown result type (might be due to invalid IL or missing references) //IL_3895: Unknown result type (might be due to invalid IL or missing references) //IL_389b: Unknown result type (might be due to invalid IL or missing references) //IL_38a6: Unknown result type (might be due to invalid IL or missing references) //IL_38b0: Unknown result type (might be due to invalid IL or missing references) //IL_38c1: Unknown result type (might be due to invalid IL or missing references) //IL_38c6: Unknown result type (might be due to invalid IL or missing references) //IL_38d0: Unknown result type (might be due to invalid IL or missing references) //IL_38d5: Unknown result type (might be due to invalid IL or missing references) //IL_38e0: Unknown result type (might be due to invalid IL or missing references) //IL_38f1: Unknown result type (might be due to invalid IL or missing references) //IL_38f6: Unknown result type (might be due to invalid IL or missing references) //IL_3901: Unknown result type (might be due to invalid IL or missing references) //IL_390b: Unknown result type (might be due to invalid IL or missing references) //IL_3911: Unknown result type (might be due to invalid IL or missing references) //IL_3916: Unknown result type (might be due to invalid IL or missing references) //IL_391b: Unknown result type (might be due to invalid IL or missing references) //IL_3927: Unknown result type (might be due to invalid IL or missing references) //IL_3259: Unknown result type (might be due to invalid IL or missing references) //IL_325f: Unknown result type (might be due to invalid IL or missing references) //IL_326a: Unknown result type (might be due to invalid IL or missing references) //IL_3274: Unknown result type (might be due to invalid IL or missing references) //IL_3285: Unknown result type (might be due to invalid IL or missing references) //IL_328a: Unknown result type (might be due to invalid IL or missing references) //IL_3294: Unknown result type (might be due to invalid IL or missing references) //IL_329e: Unknown result type (might be due to invalid IL or missing references) //IL_32a4: Unknown result type (might be due to invalid IL or missing references) //IL_32af: Unknown result type (might be due to invalid IL or missing references) //IL_32b9: Unknown result type (might be due to invalid IL or missing references) //IL_32be: Unknown result type (might be due to invalid IL or missing references) //IL_32c8: Unknown result type (might be due to invalid IL or missing references) //IL_32cd: Unknown result type (might be due to invalid IL or missing references) //IL_32d7: Unknown result type (might be due to invalid IL or missing references) //IL_32dc: Unknown result type (might be due to invalid IL or missing references) //IL_32e7: Unknown result type (might be due to invalid IL or missing references) //IL_32f1: Unknown result type (might be due to invalid IL or missing references) //IL_32f7: Unknown result type (might be due to invalid IL or missing references) //IL_32fc: Unknown result type (might be due to invalid IL or missing references) //IL_3301: Unknown result type (might be due to invalid IL or missing references) //IL_330c: Unknown result type (might be due to invalid IL or missing references) //IL_3312: Unknown result type (might be due to invalid IL or missing references) //IL_331d: Unknown result type (might be due to invalid IL or missing references) //IL_3327: Unknown result type (might be due to invalid IL or missing references) //IL_3338: Unknown result type (might be due to invalid IL or missing references) //IL_333d: Unknown result type (might be due to invalid IL or missing references) //IL_3347: Unknown result type (might be due to invalid IL or missing references) //IL_3351: Unknown result type (might be due to invalid IL or missing references) //IL_3357: Unknown result type (might be due to invalid IL or missing references) //IL_3362: Unknown result type (might be due to invalid IL or missing references) //IL_336c: Unknown result type (might be due to invalid IL or missing references) //IL_3371: Unknown result type (might be due to invalid IL or missing references) //IL_337b: Unknown result type (might be due to invalid IL or missing references) //IL_3380: Unknown result type (might be due to invalid IL or missing references) //IL_338a: Unknown result type (might be due to invalid IL or missing references) //IL_338f: Unknown result type (might be due to invalid IL or missing references) //IL_339a: Unknown result type (might be due to invalid IL or missing references) //IL_33ab: Unknown result type (might be due to invalid IL or missing references) //IL_33b0: Unknown result type (might be due to invalid IL or missing references) //IL_33bb: Unknown result type (might be due to invalid IL or missing references) //IL_33c5: Unknown result type (might be due to invalid IL or missing references) //IL_33cb: Unknown result type (might be due to invalid IL or missing references) //IL_33d0: Unknown result type (might be due to invalid IL or missing references) //IL_33d5: Unknown result type (might be due to invalid IL or missing references) //IL_33e1: Unknown result type (might be due to invalid IL or missing references) //IL_53ad: Unknown result type (might be due to invalid IL or missing references) //IL_53b3: Unknown result type (might be due to invalid IL or missing references) //IL_53b8: Unknown result type (might be due to invalid IL or missing references) //IL_53c3: Unknown result type (might be due to invalid IL or missing references) //IL_53d4: Unknown result type (might be due to invalid IL or missing references) //IL_53de: Unknown result type (might be due to invalid IL or missing references) //IL_53e3: Unknown result type (might be due to invalid IL or missing references) //IL_53ee: Unknown result type (might be due to invalid IL or missing references) //IL_53f8: Unknown result type (might be due to invalid IL or missing references) //IL_53fd: Unknown result type (might be due to invalid IL or missing references) //IL_5408: Unknown result type (might be due to invalid IL or missing references) //IL_5412: Unknown result type (might be due to invalid IL or missing references) //IL_5417: Unknown result type (might be due to invalid IL or missing references) //IL_5422: Unknown result type (might be due to invalid IL or missing references) //IL_5428: Unknown result type (might be due to invalid IL or missing references) //IL_542d: Unknown result type (might be due to invalid IL or missing references) //IL_5438: Unknown result type (might be due to invalid IL or missing references) //IL_5449: Unknown result type (might be due to invalid IL or missing references) //IL_544e: Unknown result type (might be due to invalid IL or missing references) //IL_5459: Unknown result type (might be due to invalid IL or missing references) //IL_546a: Unknown result type (might be due to invalid IL or missing references) //IL_5474: Unknown result type (might be due to invalid IL or missing references) //IL_5479: Unknown result type (might be due to invalid IL or missing references) //IL_5484: Unknown result type (might be due to invalid IL or missing references) //IL_548e: Unknown result type (might be due to invalid IL or missing references) //IL_5493: Unknown result type (might be due to invalid IL or missing references) //IL_549e: Unknown result type (might be due to invalid IL or missing references) //IL_54a8: Unknown result type (might be due to invalid IL or missing references) //IL_54ad: Unknown result type (might be due to invalid IL or missing references) //IL_54b9: Unknown result type (might be due to invalid IL or missing references) //IL_33fb: Unknown result type (might be due to invalid IL or missing references) //IL_3401: Unknown result type (might be due to invalid IL or missing references) //IL_340c: Unknown result type (might be due to invalid IL or missing references) //IL_3416: Unknown result type (might be due to invalid IL or missing references) //IL_3427: Unknown result type (might be due to invalid IL or missing references) //IL_342c: Unknown result type (might be due to invalid IL or missing references) //IL_3436: Unknown result type (might be due to invalid IL or missing references) //IL_343c: Unknown result type (might be due to invalid IL or missing references) //IL_3447: Unknown result type (might be due to invalid IL or missing references) //IL_3451: Unknown result type (might be due to invalid IL or missing references) //IL_3456: Unknown result type (might be due to invalid IL or missing references) //IL_3460: Unknown result type (might be due to invalid IL or missing references) //IL_3465: Unknown result type (might be due to invalid IL or missing references) //IL_346f: Unknown result type (might be due to invalid IL or missing references) //IL_3474: Unknown result type (might be due to invalid IL or missing references) //IL_347f: Unknown result type (might be due to invalid IL or missing references) //IL_3489: Unknown result type (might be due to invalid IL or missing references) //IL_348f: Unknown result type (might be due to invalid IL or missing references) //IL_3494: Unknown result type (might be due to invalid IL or missing references) //IL_3499: Unknown result type (might be due to invalid IL or missing references) //IL_34a4: Unknown result type (might be due to invalid IL or missing references) //IL_34aa: Unknown result type (might be due to invalid IL or missing references) //IL_34b5: Unknown result type (might be due to invalid IL or missing references) //IL_34bf: Unknown result type (might be due to invalid IL or missing references) //IL_34d0: Unknown result type (might be due to invalid IL or missing references) //IL_34d5: Unknown result type (might be due to invalid IL or missing references) //IL_34df: Unknown result type (might be due to invalid IL or missing references) //IL_34e5: Unknown result type (might be due to invalid IL or missing references) //IL_34f0: Unknown result type (might be due to invalid IL or missing references) //IL_34fa: Unknown result type (might be due to invalid IL or missing references) //IL_34ff: Unknown result type (might be due to invalid IL or missing references) //IL_3509: Unknown result type (might be due to invalid IL or missing references) //IL_350e: Unknown result type (might be due to invalid IL or missing references) //IL_3518: Unknown result type (might be due to invalid IL or missing references) //IL_351d: Unknown result type (might be due to invalid IL or missing references) //IL_3528: Unknown result type (might be due to invalid IL or missing references) //IL_3539: Unknown result type (might be due to invalid IL or missing references) //IL_353e: Unknown result type (might be due to invalid IL or missing references) //IL_3549: Unknown result type (might be due to invalid IL or missing references) //IL_3553: Unknown result type (might be due to invalid IL or missing references) //IL_3559: Unknown result type (might be due to invalid IL or missing references) //IL_355e: Unknown result type (might be due to invalid IL or missing references) //IL_3563: Unknown result type (might be due to invalid IL or missing references) //IL_356f: Unknown result type (might be due to invalid IL or missing references) //IL_54f3: Unknown result type (might be due to invalid IL or missing references) //IL_54f9: Unknown result type (might be due to invalid IL or missing references) //IL_54fe: Unknown result type (might be due to invalid IL or missing references) //IL_5509: Unknown result type (might be due to invalid IL or missing references) //IL_551a: Unknown result type (might be due to invalid IL or missing references) //IL_5524: Unknown result type (might be due to invalid IL or missing references) //IL_5529: Unknown result type (might be due to invalid IL or missing references) //IL_5534: Unknown result type (might be due to invalid IL or missing references) //IL_553e: Unknown result type (might be due to invalid IL or missing references) //IL_5543: Unknown result type (might be due to invalid IL or missing references) //IL_554e: Unknown result type (might be due to invalid IL or missing references) //IL_5558: Unknown result type (might be due to invalid IL or missing references) //IL_555d: Unknown result type (might be due to invalid IL or missing references) //IL_5568: Unknown result type (might be due to invalid IL or missing references) //IL_556e: Unknown result type (might be due to invalid IL or missing references) //IL_5573: Unknown result type (might be due to invalid IL or missing references) //IL_557e: Unknown result type (might be due to invalid IL or missing references) //IL_558f: Unknown result type (might be due to invalid IL or missing references) //IL_5594: Unknown result type (might be due to invalid IL or missing references) //IL_559f: Unknown result type (might be due to invalid IL or missing references) //IL_55b0: Unknown result type (might be due to invalid IL or missing references) //IL_55ba: Unknown result type (might be due to invalid IL or missing references) //IL_55bf: Unknown result type (might be due to invalid IL or missing references) //IL_55ca: Unknown result type (might be due to invalid IL or missing references) //IL_55d4: Unknown result type (might be due to invalid IL or missing references) //IL_55d9: Unknown result type (might be due to invalid IL or missing references) //IL_55e4: Unknown result type (might be due to invalid IL or missing references) //IL_55ee: Unknown result type (might be due to invalid IL or missing references) //IL_55f3: Unknown result type (might be due to invalid IL or missing references) //IL_55ff: Unknown result type (might be due to invalid IL or missing references) //IL_3961: Unknown result type (might be due to invalid IL or missing references) //IL_3967: Unknown result type (might be due to invalid IL or missing references) //IL_3972: Unknown result type (might be due to invalid IL or missing references) //IL_397c: Unknown result type (might be due to invalid IL or missing references) //IL_398d: Unknown result type (might be due to invalid IL or missing references) //IL_3992: Unknown result type (might be due to invalid IL or missing references) //IL_399c: Unknown result type (might be due to invalid IL or missing references) //IL_39a6: Unknown result type (might be due to invalid IL or missing references) //IL_39ac: Unknown result type (might be due to invalid IL or missing references) //IL_39b7: Unknown result type (might be due to invalid IL or missing references) //IL_39c1: Unknown result type (might be due to invalid IL or missing references) //IL_39c6: Unknown result type (might be due to invalid IL or missing references) //IL_39d0: Unknown result type (might be due to invalid IL or missing references) //IL_39d5: Unknown result type (might be due to invalid IL or missing references) //IL_39df: Unknown result type (might be due to invalid IL or missing references) //IL_39e4: Unknown result type (might be due to invalid IL or missing references) //IL_39ef: Unknown result type (might be due to invalid IL or missing references) //IL_39f9: Unknown result type (might be due to invalid IL or missing references) //IL_39ff: Unknown result type (might be due to invalid IL or missing references) //IL_3a04: Unknown result type (might be due to invalid IL or missing references) //IL_3a09: Unknown result type (might be due to invalid IL or missing references) //IL_3a14: Unknown result type (might be due to invalid IL or missing references) //IL_3a1a: Unknown result type (might be due to invalid IL or missing references) //IL_3a25: Unknown result type (might be due to invalid IL or missing references) //IL_3a2f: Unknown result type (might be due to invalid IL or missing references) //IL_3a40: Unknown result type (might be due to invalid IL or missing references) //IL_3a45: Unknown result type (might be due to invalid IL or missing references) //IL_3a4f: Unknown result type (might be due to invalid IL or missing references) //IL_3a59: Unknown result type (might be due to invalid IL or missing references) //IL_3a5f: Unknown result type (might be due to invalid IL or missing references) //IL_3a6a: Unknown result type (might be due to invalid IL or missing references) //IL_3a74: Unknown result type (might be due to invalid IL or missing references) //IL_3a79: Unknown result type (might be due to invalid IL or missing references) //IL_3a83: Unknown result type (might be due to invalid IL or missing references) //IL_3a88: Unknown result type (might be due to invalid IL or missing references) //IL_3a92: Unknown result type (might be due to invalid IL or missing references) //IL_3a97: Unknown result type (might be due to invalid IL or missing references) //IL_3aa2: Unknown result type (might be due to invalid IL or missing references) //IL_3ab3: Unknown result type (might be due to invalid IL or missing references) //IL_3ab8: Unknown result type (might be due to invalid IL or missing references) //IL_3ac3: Unknown result type (might be due to invalid IL or missing references) //IL_3acd: Unknown result type (might be due to invalid IL or missing references) //IL_3ad3: Unknown result type (might be due to invalid IL or missing references) //IL_3ad8: Unknown result type (might be due to invalid IL or missing references) //IL_3add: Unknown result type (might be due to invalid IL or missing references) //IL_3ae9: Unknown result type (might be due to invalid IL or missing references) //IL_3589: Unknown result type (might be due to invalid IL or missing references) //IL_358f: Unknown result type (might be due to invalid IL or missing references) //IL_359a: Unknown result type (might be due to invalid IL or missing references) //IL_35a4: Unknown result type (might be due to invalid IL or missing references) //IL_35b5: Unknown result type (might be due to invalid IL or missing references) //IL_35ba: Unknown result type (might be due to invalid IL or missing references) //IL_35c4: Unknown result type (might be due to invalid IL or missing references) //IL_35ca: Unknown result type (might be due to invalid IL or missing references) //IL_35d5: Unknown result type (might be due to invalid IL or missing references) //IL_35df: Unknown result type (might be due to invalid IL or missing references) //IL_35e4: Unknown result type (might be due to invalid IL or missing references) //IL_35ee: Unknown result type (might be due to invalid IL or missing references) //IL_35f8: Unknown result type (might be due to invalid IL or missing references) //IL_35fd: Unknown result type (might be due to invalid IL or missing references) //IL_3607: Unknown result type (might be due to invalid IL or missing references) //IL_360c: Unknown result type (might be due to invalid IL or missing references) //IL_3617: Unknown result type (might be due to invalid IL or missing references) //IL_3621: Unknown result type (might be due to invalid IL or missing references) //IL_3627: Unknown result type (might be due to invalid IL or missing references) //IL_362c: Unknown result type (might be due to invalid IL or missing references) //IL_3631: Unknown result type (might be due to invalid IL or missing references) //IL_363c: Unknown result type (might be due to invalid IL or missing references) //IL_3642: Unknown result type (might be due to invalid IL or missing references) //IL_364d: Unknown result type (might be due to invalid IL or missing references) //IL_3657: Unknown result type (might be due to invalid IL or missing references) //IL_3668: Unknown result type (might be due to invalid IL or missing references) //IL_366d: Unknown result type (might be due to invalid IL or missing references) //IL_3677: Unknown result type (might be due to invalid IL or missing references) //IL_367d: Unknown result type (might be due to invalid IL or missing references) //IL_3688: Unknown result type (might be due to invalid IL or missing references) //IL_3692: Unknown result type (might be due to invalid IL or missing references) //IL_3697: Unknown result type (might be due to invalid IL or missing references) //IL_36a1: Unknown result type (might be due to invalid IL or missing references) //IL_36ab: Unknown result type (might be due to invalid IL or missing references) //IL_36b0: Unknown result type (might be due to invalid IL or missing references) //IL_36ba: Unknown result type (might be due to invalid IL or missing references) //IL_36bf: Unknown result type (might be due to invalid IL or missing references) //IL_36ca: Unknown result type (might be due to invalid IL or missing references) //IL_36db: Unknown result type (might be due to invalid IL or missing references) //IL_36e0: Unknown result type (might be due to invalid IL or missing references) //IL_36eb: Unknown result type (might be due to invalid IL or missing references) //IL_36f5: Unknown result type (might be due to invalid IL or missing references) //IL_36fb: Unknown result type (might be due to invalid IL or missing references) //IL_3700: Unknown result type (might be due to invalid IL or missing references) //IL_3705: Unknown result type (might be due to invalid IL or missing references) //IL_3711: Unknown result type (might be due to invalid IL or missing references) //IL_5639: Unknown result type (might be due to invalid IL or missing references) //IL_563f: Unknown result type (might be due to invalid IL or missing references) //IL_5644: Unknown result type (might be due to invalid IL or missing references) //IL_564f: Unknown result type (might be due to invalid IL or missing references) //IL_5660: Unknown result type (might be due to invalid IL or missing references) //IL_566a: Unknown result type (might be due to invalid IL or missing references) //IL_566f: Unknown result type (might be due to invalid IL or missing references) //IL_567a: Unknown result type (might be due to invalid IL or missing references) //IL_5684: Unknown result type (might be due to invalid IL or missing references) //IL_5689: Unknown result type (might be due to invalid IL or missing references) //IL_5694: Unknown result type (might be due to invalid IL or missing references) //IL_569e: Unknown result type (might be due to invalid IL or missing references) //IL_56a3: Unknown result type (might be due to invalid IL or missing references) //IL_56ae: Unknown result type (might be due to invalid IL or missing references) //IL_56b4: Unknown result type (might be due to invalid IL or missing references) //IL_56b9: Unknown result type (might be due to invalid IL or missing references) //IL_56c4: Unknown result type (might be due to invalid IL or missing references) //IL_56d5: Unknown result type (might be due to invalid IL or missing references) //IL_56da: Unknown result type (might be due to invalid IL or missing references) //IL_56e5: Unknown result type (might be due to invalid IL or missing references) //IL_56f6: Unknown result type (might be due to invalid IL or missing references) //IL_5700: Unknown result type (might be due to invalid IL or missing references) //IL_5705: Unknown result type (might be due to invalid IL or missing references) //IL_5710: Unknown result type (might be due to invalid IL or missing references) //IL_571a: Unknown result type (might be due to invalid IL or missing references) //IL_571f: Unknown result type (might be due to invalid IL or missing references) //IL_572a: Unknown result type (might be due to invalid IL or missing references) //IL_5734: Unknown result type (might be due to invalid IL or missing references) //IL_5739: Unknown result type (might be due to invalid IL or missing references) //IL_5745: Unknown result type (might be due to invalid IL or missing references) //IL_372b: Unknown result type (might be due to invalid IL or missing references) //IL_3731: Unknown result type (might be due to invalid IL or missing references) //IL_373c: Unknown result type (might be due to invalid IL or missing references) //IL_3746: Unknown result type (might be due to invalid IL or missing references) //IL_374b: Unknown result type (might be due to invalid IL or missing references) //IL_3755: Unknown result type (might be due to invalid IL or missing references) //IL_375a: Unknown result type (might be due to invalid IL or missing references) //IL_3765: Unknown result type (might be due to invalid IL or missing references) //IL_376f: Unknown result type (might be due to invalid IL or missing references) //IL_3775: Unknown result type (might be due to invalid IL or missing references) //IL_377a: Unknown result type (might be due to invalid IL or missing references) //IL_377f: Unknown result type (might be due to invalid IL or missing references) //IL_378a: Unknown result type (might be due to invalid IL or missing references) //IL_3790: Unknown result type (might be due to invalid IL or missing references) //IL_379b: Unknown result type (might be due to invalid IL or missing references) //IL_37a5: Unknown result type (might be due to invalid IL or missing references) //IL_37aa: Unknown result type (might be due to invalid IL or missing references) //IL_37b4: Unknown result type (might be due to invalid IL or missing references) //IL_37b9: Unknown result type (might be due to invalid IL or missing references) //IL_37c4: Unknown result type (might be due to invalid IL or missing references) //IL_37d5: Unknown result type (might be due to invalid IL or missing references) //IL_37da: Unknown result type (might be due to invalid IL or missing references) //IL_37e5: Unknown result type (might be due to invalid IL or missing references) //IL_37ef: Unknown result type (might be due to invalid IL or missing references) //IL_37f5: Unknown result type (might be due to invalid IL or missing references) //IL_37fa: Unknown result type (might be due to invalid IL or missing references) //IL_37ff: Unknown result type (might be due to invalid IL or missing references) //IL_380b: Unknown result type (might be due to invalid IL or missing references) //IL_577f: Unknown result type (might be due to invalid IL or missing references) //IL_5785: Unknown result type (might be due to invalid IL or missing references) //IL_578a: Unknown result type (might be due to invalid IL or missing references) //IL_5795: Unknown result type (might be due to invalid IL or missing references) //IL_57a6: Unknown result type (might be due to invalid IL or missing references) //IL_57b0: Unknown result type (might be due to invalid IL or missing references) //IL_57b5: Unknown result type (might be due to invalid IL or missing references) //IL_57c0: Unknown result type (might be due to invalid IL or missing references) //IL_57ca: Unknown result type (might be due to invalid IL or missing references) //IL_57cf: Unknown result type (might be due to invalid IL or missing references) //IL_57da: Unknown result type (might be due to invalid IL or missing references) //IL_57e4: Unknown result type (might be due to invalid IL or missing references) //IL_57e9: Unknown result type (might be due to invalid IL or missing references) //IL_57f4: Unknown result type (might be due to invalid IL or missing references) //IL_57fa: Unknown result type (might be due to invalid IL or missing references) //IL_57ff: Unknown result type (might be due to invalid IL or missing references) //IL_580a: Unknown result type (might be due to invalid IL or missing references) //IL_581b: Unknown result type (might be due to invalid IL or missing references) //IL_5820: Unknown result type (might be due to invalid IL or missing references) //IL_582b: Unknown result type (might be due to invalid IL or missing references) //IL_583c: Unknown result type (might be due to invalid IL or missing references) //IL_5846: Unknown result type (might be due to invalid IL or missing references) //IL_584b: Unknown result type (might be due to invalid IL or missing references) //IL_5856: Unknown result type (might be due to invalid IL or missing references) //IL_5860: Unknown result type (might be due to invalid IL or missing references) //IL_5865: Unknown result type (might be due to invalid IL or missing references) //IL_5870: Unknown result type (might be due to invalid IL or missing references) //IL_587a: Unknown result type (might be due to invalid IL or missing references) //IL_587f: Unknown result type (might be due to invalid IL or missing references) //IL_588b: Unknown result type (might be due to invalid IL or missing references) //IL_3b23: Unknown result type (might be due to invalid IL or missing references) //IL_3b29: Unknown result type (might be due to invalid IL or missing references) //IL_3b34: Unknown result type (might be due to invalid IL or missing references) //IL_3b3e: Unknown result type (might be due to invalid IL or missing references) //IL_3b4f: Unknown result type (might be due to invalid IL or missing references) //IL_3b54: Unknown result type (might be due to invalid IL or missing references) //IL_3b5e: Unknown result type (might be due to invalid IL or missing references) //IL_3b64: Unknown result type (might be due to invalid IL or missing references) //IL_3b6f: Unknown result type (might be due to invalid IL or missing references) //IL_3b79: Unknown result type (might be due to invalid IL or missing references) //IL_3b7e: Unknown result type (might be due to invalid IL or missing references) //IL_3b88: Unknown result type (might be due to invalid IL or missing references) //IL_3b8d: Unknown result type (might be due to invalid IL or missing references) //IL_3b97: Unknown result type (might be due to invalid IL or missing references) //IL_3b9c: Unknown result type (might be due to invalid IL or missing references) //IL_3ba7: Unknown result type (might be due to invalid IL or missing references) //IL_3bb1: Unknown result type (might be due to invalid IL or missing references) //IL_3bb7: Unknown result type (might be due to invalid IL or missing references) //IL_3bbc: Unknown result type (might be due to invalid IL or missing references) //IL_3bc1: Unknown result type (might be due to invalid IL or missing references) //IL_3bcc: Unknown result type (might be due to invalid IL or missing references) //IL_3bd2: Unknown result type (might be due to invalid IL or missing references) //IL_3bdd: Unknown result type (might be due to invalid IL or missing references) //IL_3be7: Unknown result type (might be due to invalid IL or missing references) //IL_3bf8: Unknown result type (might be due to invalid IL or missing references) //IL_3bfd: Unknown result type (might be due to invalid IL or missing references) //IL_3c07: Unknown result type (might be due to invalid IL or missing references) //IL_3c0d: Unknown result type (might be due to invalid IL or missing references) //IL_3c18: Unknown result type (might be due to invalid IL or missing references) //IL_3c22: Unknown result type (might be due to invalid IL or missing references) //IL_3c27: Unknown result type (might be due to invalid IL or missing references) //IL_3c31: Unknown result type (might be due to invalid IL or missing references) //IL_3c36: Unknown result type (might be due to invalid IL or missing references) //IL_3c40: Unknown result type (might be due to invalid IL or missing references) //IL_3c45: Unknown result type (might be due to invalid IL or missing references) //IL_3c50: Unknown result type (might be due to invalid IL or missing references) //IL_3c61: Unknown result type (might be due to invalid IL or missing references) //IL_3c66: Unknown result type (might be due to invalid IL or missing references) //IL_3c71: Unknown result type (might be due to invalid IL or missing references) //IL_3c7b: Unknown result type (might be due to invalid IL or missing references) //IL_3c81: Unknown result type (might be due to invalid IL or missing references) //IL_3c86: Unknown result type (might be due to invalid IL or missing references) //IL_3c8b: Unknown result type (might be due to invalid IL or missing references) //IL_3c97: Unknown result type (might be due to invalid IL or missing references) //IL_58c5: Unknown result type (might be due to invalid IL or missing references) //IL_58cb: Unknown result type (might be due to invalid IL or missing references) //IL_58d0: Unknown result type (might be due to invalid IL or missing references) //IL_58db: Unknown result type (might be due to invalid IL or missing references) //IL_58ec: Unknown result type (might be due to invalid IL or missing references) //IL_58f6: Unknown result type (might be due to invalid IL or missing references) //IL_58fb: Unknown result type (might be due to invalid IL or missing references) //IL_5906: Unknown result type (might be due to invalid IL or missing references) //IL_5910: Unknown result type (might be due to invalid IL or missing references) //IL_5915: Unknown result type (might be due to invalid IL or missing references) //IL_5920: Unknown result type (might be due to invalid IL or missing references) //IL_592a: Unknown result type (might be due to invalid IL or missing references) //IL_592f: Unknown result type (might be due to invalid IL or missing references) //IL_593a: Unknown result type (might be due to invalid IL or missing references) //IL_5940: Unknown result type (might be due to invalid IL or missing references) //IL_5945: Unknown result type (might be due to invalid IL or missing references) //IL_5950: Unknown result type (might be due to invalid IL or missing references) //IL_5961: Unknown result type (might be due to invalid IL or missing references) //IL_5966: Unknown result type (might be due to invalid IL or missing references) //IL_5971: Unknown result type (might be due to invalid IL or missing references) //IL_5982: Unknown result type (might be due to invalid IL or missing references) //IL_598c: Unknown result type (might be due to invalid IL or missing references) //IL_5991: Unknown result type (might be due to invalid IL or missing references) //IL_599c: Unknown result type (might be due to invalid IL or missing references) //IL_59a6: Unknown result type (might be due to invalid IL or missing references) //IL_59ab: Unknown result type (might be due to invalid IL or missing references) //IL_59b6: Unknown result type (might be due to invalid IL or missing references) //IL_59c0: Unknown result type (might be due to invalid IL or missing references) //IL_59c5: Unknown result type (might be due to invalid IL or missing references) //IL_59d1: Unknown result type (might be due to invalid IL or missing references) //IL_5a0b: Unknown result type (might be due to invalid IL or missing references) //IL_5a11: Unknown result type (might be due to invalid IL or missing references) //IL_5a16: Unknown result type (might be due to invalid IL or missing references) //IL_5a21: Unknown result type (might be due to invalid IL or missing references) //IL_5a32: Unknown result type (might be due to invalid IL or missing references) //IL_5a3c: Unknown result type (might be due to invalid IL or missing references) //IL_5a41: Unknown result type (might be due to invalid IL or missing references) //IL_5a4c: Unknown result type (might be due to invalid IL or missing references) //IL_5a56: Unknown result type (might be due to invalid IL or missing references) //IL_5a5b: Unknown result type (might be due to invalid IL or missing references) //IL_5a66: Unknown result type (might be due to invalid IL or missing references) //IL_5a70: Unknown result type (might be due to invalid IL or missing references) //IL_5a75: Unknown result type (might be due to invalid IL or missing references) //IL_5a80: Unknown result type (might be due to invalid IL or missing references) //IL_5a86: Unknown result type (might be due to invalid IL or missing references) //IL_5a8b: Unknown result type (might be due to invalid IL or missing references) //IL_5a96: Unknown result type (might be due to invalid IL or missing references) //IL_5aa7: Unknown result type (might be due to invalid IL or missing references) //IL_5aac: Unknown result type (might be due to invalid IL or missing references) //IL_5ab7: Unknown result type (might be due to invalid IL or missing references) //IL_5ac8: Unknown result type (might be due to invalid IL or missing references) //IL_5ad2: Unknown result type (might be due to invalid IL or missing references) //IL_5ad7: Unknown result type (might be due to invalid IL or missing references) //IL_5ae2: Unknown result type (might be due to invalid IL or missing references) //IL_5aec: Unknown result type (might be due to invalid IL or missing references) //IL_5af1: Unknown result type (might be due to invalid IL or missing references) //IL_5afc: Unknown result type (might be due to invalid IL or missing references) //IL_5b06: Unknown result type (might be due to invalid IL or missing references) //IL_5b0b: Unknown result type (might be due to invalid IL or missing references) //IL_5b17: Unknown result type (might be due to invalid IL or missing references) //IL_3cd1: Unknown result type (might be due to invalid IL or missing references) //IL_3cd7: Unknown result type (might be due to invalid IL or missing references) //IL_3ce2: Unknown result type (might be due to invalid IL or missing references) //IL_3cec: Unknown result type (might be due to invalid IL or missing references) //IL_3cfd: Unknown result type (might be due to invalid IL or missing references) //IL_3d02: Unknown result type (might be due to invalid IL or missing references) //IL_3d0c: Unknown result type (might be due to invalid IL or missing references) //IL_3d12: Unknown result type (might be due to invalid IL or missing references) //IL_3d1d: Unknown result type (might be due to invalid IL or missing references) //IL_3d27: Unknown result type (might be due to invalid IL or missing references) //IL_3d2c: Unknown result type (might be due to invalid IL or missing references) //IL_3d36: Unknown result type (might be due to invalid IL or missing references) //IL_3d40: Unknown result type (might be due to invalid IL or missing references) //IL_3d45: Unknown result type (might be due to invalid IL or missing references) //IL_3d4f: Unknown result type (might be due to invalid IL or missing references) //IL_3d54: Unknown result type (might be due to invalid IL or missing references) //IL_3d5f: Unknown result type (might be due to invalid IL or missing references) //IL_3d69: Unknown result type (might be due to invalid IL or missing references) //IL_3d6f: Unknown result type (might be due to invalid IL or missing references) //IL_3d74: Unknown result type (might be due to invalid IL or missing references) //IL_3d79: Unknown result type (might be due to invalid IL or missing references) //IL_3d84: Unknown result type (might be due to invalid IL or missing references) //IL_3d8a: Unknown result type (might be due to invalid IL or missing references) //IL_3d95: Unknown result type (might be due to invalid IL or missing references) //IL_3d9f: Unknown result type (might be due to invalid IL or missing references) //IL_3db0: Unknown result type (might be due to invalid IL or missing references) //IL_3db5: Unknown result type (might be due to invalid IL or missing references) //IL_3dbf: Unknown result type (might be due to invalid IL or missing references) //IL_3dc5: Unknown result type (might be due to invalid IL or missing references) //IL_3dd0: Unknown result type (might be due to invalid IL or missing references) //IL_3dda: Unknown result type (might be due to invalid IL or missing references) //IL_3ddf: Unknown result type (might be due to invalid IL or missing references) //IL_3de9: Unknown result type (might be due to invalid IL or missing references) //IL_3df3: Unknown result type (might be due to invalid IL or missing references) //IL_3df8: Unknown result type (might be due to invalid IL or missing references) //IL_3e02: Unknown result type (might be due to invalid IL or missing references) //IL_3e07: Unknown result type (might be due to invalid IL or missing references) //IL_3e12: Unknown result type (might be due to invalid IL or missing references) //IL_3e23: Unknown result type (might be due to invalid IL or missing references) //IL_3e28: Unknown result type (might be due to invalid IL or missing references) //IL_3e33: Unknown result type (might be due to invalid IL or missing references) //IL_3e3d: Unknown result type (might be due to invalid IL or missing references) //IL_3e43: Unknown result type (might be due to invalid IL or missing references) //IL_3e48: Unknown result type (might be due to invalid IL or missing references) //IL_3e4d: Unknown result type (might be due to invalid IL or missing references) //IL_3e59: Unknown result type (might be due to invalid IL or missing references) //IL_5b66: Unknown result type (might be due to invalid IL or missing references) //IL_5b6c: Unknown result type (might be due to invalid IL or missing references) //IL_5b77: Unknown result type (might be due to invalid IL or missing references) //IL_5b81: Unknown result type (might be due to invalid IL or missing references) //IL_5b92: Unknown result type (might be due to invalid IL or missing references) //IL_5b97: Unknown result type (might be due to invalid IL or missing references) //IL_5ba1: Unknown result type (might be due to invalid IL or missing references) //IL_5ba6: Unknown result type (might be due to invalid IL or missing references) //IL_5bb1: Unknown result type (might be due to invalid IL or missing references) //IL_5bbb: Unknown result type (might be due to invalid IL or missing references) //IL_5bc1: Unknown result type (might be due to invalid IL or missing references) //IL_5bc6: Unknown result type (might be due to invalid IL or missing references) //IL_5bcb: Unknown result type (might be due to invalid IL or missing references) //IL_5bd6: Unknown result type (might be due to invalid IL or missing references) //IL_5bdc: Unknown result type (might be due to invalid IL or missing references) //IL_5be7: Unknown result type (might be due to invalid IL or missing references) //IL_5bf1: Unknown result type (might be due to invalid IL or missing references) //IL_5c02: Unknown result type (might be due to invalid IL or missing references) //IL_5c07: Unknown result type (might be due to invalid IL or missing references) //IL_5c11: Unknown result type (might be due to invalid IL or missing references) //IL_5c16: Unknown result type (might be due to invalid IL or missing references) //IL_5c21: Unknown result type (might be due to invalid IL or missing references) //IL_5c32: Unknown result type (might be due to invalid IL or missing references) //IL_5c37: Unknown result type (might be due to invalid IL or missing references) //IL_5c42: Unknown result type (might be due to invalid IL or missing references) //IL_5c4c: Unknown result type (might be due to invalid IL or missing references) //IL_5c52: Unknown result type (might be due to invalid IL or missing references) //IL_5c57: Unknown result type (might be due to invalid IL or missing references) //IL_5c5c: Unknown result type (might be due to invalid IL or missing references) //IL_5c68: Unknown result type (might be due to invalid IL or missing references) //IL_624e: Unknown result type (might be due to invalid IL or missing references) //IL_6254: Unknown result type (might be due to invalid IL or missing references) //IL_625f: Unknown result type (might be due to invalid IL or missing references) //IL_6269: Unknown result type (might be due to invalid IL or missing references) //IL_627a: Unknown result type (might be due to invalid IL or missing references) //IL_627f: Unknown result type (might be due to invalid IL or missing references) //IL_6289: Unknown result type (might be due to invalid IL or missing references) //IL_628e: Unknown result type (might be due to invalid IL or missing references) //IL_6299: Unknown result type (might be due to invalid IL or missing references) //IL_62a3: Unknown result type (might be due to invalid IL or missing references) //IL_62a9: Unknown result type (might be due to invalid IL or missing references) //IL_62ae: Unknown result type (might be due to invalid IL or missing references) //IL_62b3: Unknown result type (might be due to invalid IL or missing references) //IL_62be: Unknown result type (might be due to invalid IL or missing references) //IL_62c4: Unknown result type (might be due to invalid IL or missing references) //IL_62cf: Unknown result type (might be due to invalid IL or missing references) //IL_62d9: Unknown result type (might be due to invalid IL or missing references) //IL_62ea: Unknown result type (might be due to invalid IL or missing references) //IL_62ef: Unknown result type (might be due to invalid IL or missing references) //IL_62f9: Unknown result type (might be due to invalid IL or missing references) //IL_62fe: Unknown result type (might be due to invalid IL or missing references) //IL_6309: Unknown result type (might be due to invalid IL or missing references) //IL_631a: Unknown result type (might be due to invalid IL or missing references) //IL_631f: Unknown result type (might be due to invalid IL or missing references) //IL_632a: Unknown result type (might be due to invalid IL or missing references) //IL_6334: Unknown result type (might be due to invalid IL or missing references) //IL_633a: Unknown result type (might be due to invalid IL or missing references) //IL_633f: Unknown result type (might be due to invalid IL or missing references) //IL_6344: Unknown result type (might be due to invalid IL or missing references) //IL_6350: Unknown result type (might be due to invalid IL or missing references) //IL_5c82: Unknown result type (might be due to invalid IL or missing references) //IL_5c88: Unknown result type (might be due to invalid IL or missing references) //IL_5c93: Unknown result type (might be due to invalid IL or missing references) //IL_5c9d: Unknown result type (might be due to invalid IL or missing references) //IL_5cae: Unknown result type (might be due to invalid IL or missing references) //IL_5cb3: Unknown result type (might be due to invalid IL or missing references) //IL_5cbd: Unknown result type (might be due to invalid IL or missing references) //IL_5cc7: Unknown result type (might be due to invalid IL or missing references) //IL_5ccd: Unknown result type (might be due to invalid IL or missing references) //IL_5cd8: Unknown result type (might be due to invalid IL or missing references) //IL_5ce2: Unknown result type (might be due to invalid IL or missing references) //IL_5ce7: Unknown result type (might be due to invalid IL or missing references) //IL_5cf1: Unknown result type (might be due to invalid IL or missing references) //IL_5cf6: Unknown result type (might be due to invalid IL or missing references) //IL_5d00: Unknown result type (might be due to invalid IL or missing references) //IL_5d05: Unknown result type (might be due to invalid IL or missing references) //IL_5d10: Unknown result type (might be due to invalid IL or missing references) //IL_5d1a: Unknown result type (might be due to invalid IL or missing references) //IL_5d20: Unknown result type (might be due to invalid IL or missing references) //IL_5d25: Unknown result type (might be due to invalid IL or missing references) //IL_5d2a: Unknown result type (might be due to invalid IL or missing references) //IL_5d35: Unknown result type (might be due to invalid IL or missing references) //IL_5d3b: Unknown result type (might be due to invalid IL or missing references) //IL_5d46: Unknown result type (might be due to invalid IL or missing references) //IL_5d50: Unknown result type (might be due to invalid IL or missing references) //IL_5d61: Unknown result type (might be due to invalid IL or missing references) //IL_5d66: Unknown result type (might be due to invalid IL or missing references) //IL_5d70: Unknown result type (might be due to invalid IL or missing references) //IL_5d7a: Unknown result type (might be due to invalid IL or missing references) //IL_5d80: Unknown result type (might be due to invalid IL or missing references) //IL_5d8b: Unknown result type (might be due to invalid IL or missing references) //IL_5d95: Unknown result type (might be due to invalid IL or missing references) //IL_5d9a: Unknown result type (might be due to invalid IL or missing references) //IL_5da4: Unknown result type (might be due to invalid IL or missing references) //IL_5da9: Unknown result type (might be due to invalid IL or missing references) //IL_5db3: Unknown result type (might be due to invalid IL or missing references) //IL_5db8: Unknown result type (might be due to invalid IL or missing references) //IL_5dc3: Unknown result type (might be due to invalid IL or missing references) //IL_5dd4: Unknown result type (might be due to invalid IL or missing references) //IL_5dd9: Unknown result type (might be due to invalid IL or missing references) //IL_5de4: Unknown result type (might be due to invalid IL or missing references) //IL_5dee: Unknown result type (might be due to invalid IL or missing references) //IL_5df4: Unknown result type (might be due to invalid IL or missing references) //IL_5df9: Unknown result type (might be due to invalid IL or missing references) //IL_5dfe: Unknown result type (might be due to invalid IL or missing references) //IL_5e0a: Unknown result type (might be due to invalid IL or missing references) //IL_3e93: Unknown result type (might be due to invalid IL or missing references) //IL_3e99: Unknown result type (might be due to invalid IL or missing references) //IL_3ea4: Unknown result type (might be due to invalid IL or missing references) //IL_3eae: Unknown result type (might be due to invalid IL or missing references) //IL_3eb3: Unknown result type (might be due to invalid IL or missing references) //IL_3ebd: Unknown result type (might be due to invalid IL or missing references) //IL_3ec2: Unknown result type (might be due to invalid IL or missing references) //IL_3ecd: Unknown result type (might be due to invalid IL or missing references) //IL_3ed7: Unknown result type (might be due to invalid IL or missing references) //IL_3edd: Unknown result type (might be due to invalid IL or missing references) //IL_3ee2: Unknown result type (might be due to invalid IL or missing references) //IL_3ee7: Unknown result type (might be due to invalid IL or missing references) //IL_3ef2: Unknown result type (might be due to invalid IL or missing references) //IL_3ef8: Unknown result type (might be due to invalid IL or missing references) //IL_3f03: Unknown result type (might be due to invalid IL or missing references) //IL_3f0d: Unknown result type (might be due to invalid IL or missing references) //IL_3f12: Unknown result type (might be due to invalid IL or missing references) //IL_3f1c: Unknown result type (might be due to invalid IL or missing references) //IL_3f21: Unknown result type (might be due to invalid IL or missing references) //IL_3f2c: Unknown result type (might be due to invalid IL or missing references) //IL_3f3d: Unknown result type (might be due to invalid IL or missing references) //IL_3f42: Unknown result type (might be due to invalid IL or missing references) //IL_3f4d: Unknown result type (might be due to invalid IL or missing references) //IL_3f57: Unknown result type (might be due to invalid IL or missing references) //IL_3f5d: Unknown result type (might be due to invalid IL or missing references) //IL_3f62: Unknown result type (might be due to invalid IL or missing references) //IL_3f67: Unknown result type (might be due to invalid IL or missing references) //IL_3f73: Unknown result type (might be due to invalid IL or missing references) //IL_5e24: Unknown result type (might be due to invalid IL or missing references) //IL_5e2a: Unknown result type (might be due to invalid IL or missing references) //IL_5e35: Unknown result type (might be due to invalid IL or missing references) //IL_5e3f: Unknown result type (might be due to invalid IL or missing references) //IL_5e50: Unknown result type (might be due to invalid IL or missing references) //IL_5e55: Unknown result type (might be due to invalid IL or missing references) //IL_5e5f: Unknown result type (might be due to invalid IL or missing references) //IL_5e65: Unknown result type (might be due to invalid IL or missing references) //IL_5e70: Unknown result type (might be due to invalid IL or missing references) //IL_5e7a: Unknown result type (might be due to invalid IL or missing references) //IL_5e7f: Unknown result type (might be due to invalid IL or missing references) //IL_5e89: Unknown result type (might be due to invalid IL or missing references) //IL_5e8e: Unknown result type (might be due to invalid IL or missing references) //IL_5e98: Unknown result type (might be due to invalid IL or missing references) //IL_5e9d: Unknown result type (might be due to invalid IL or missing references) //IL_5ea8: Unknown result type (might be due to invalid IL or missing references) //IL_5eb2: Unknown result type (might be due to invalid IL or missing references) //IL_5eb8: Unknown result type (might be due to invalid IL or missing references) //IL_5ebd: Unknown result type (might be due to invalid IL or missing references) //IL_5ec2: Unknown result type (might be due to invalid IL or missing references) //IL_5ecd: Unknown result type (might be due to invalid IL or missing references) //IL_5ed3: Unknown result type (might be due to invalid IL or missing references) //IL_5ede: Unknown result type (might be due to invalid IL or missing references) //IL_5ee8: Unknown result type (might be due to invalid IL or missing references) //IL_5ef9: Unknown result type (might be due to invalid IL or missing references) //IL_5efe: Unknown result type (might be due to invalid IL or missing references) //IL_5f08: Unknown result type (might be due to invalid IL or missing references) //IL_5f0e: Unknown result type (might be due to invalid IL or missing references) //IL_5f19: Unknown result type (might be due to invalid IL or missing references) //IL_5f23: Unknown result type (might be due to invalid IL or missing references) //IL_5f28: Unknown result type (might be due to invalid IL or missing references) //IL_5f32: Unknown result type (might be due to invalid IL or missing references) //IL_5f37: Unknown result type (might be due to invalid IL or missing references) //IL_5f41: Unknown result type (might be due to invalid IL or missing references) //IL_5f46: Unknown result type (might be due to invalid IL or missing references) //IL_5f51: Unknown result type (might be due to invalid IL or missing references) //IL_5f62: Unknown result type (might be due to invalid IL or missing references) //IL_5f67: Unknown result type (might be due to invalid IL or missing references) //IL_5f72: Unknown result type (might be due to invalid IL or missing references) //IL_5f7c: Unknown result type (might be due to invalid IL or missing references) //IL_5f82: Unknown result type (might be due to invalid IL or missing references) //IL_5f87: Unknown result type (might be due to invalid IL or missing references) //IL_5f8c: Unknown result type (might be due to invalid IL or missing references) //IL_5f98: Unknown result type (might be due to invalid IL or missing references) //IL_638a: Unknown result type (might be due to invalid IL or missing references) //IL_6390: Unknown result type (might be due to invalid IL or missing references) //IL_639b: Unknown result type (might be due to invalid IL or missing references) //IL_63a5: Unknown result type (might be due to invalid IL or missing references) //IL_63b6: Unknown result type (might be due to invalid IL or missing references) //IL_63bb: Unknown result type (might be due to invalid IL or missing references) //IL_63c5: Unknown result type (might be due to invalid IL or missing references) //IL_63cf: Unknown result type (might be due to invalid IL or missing references) //IL_63d5: Unknown result type (might be due to invalid IL or missing references) //IL_63e0: Unknown result type (might be due to invalid IL or missing references) //IL_63ea: Unknown result type (might be due to invalid IL or missing references) //IL_63ef: Unknown result type (might be due to invalid IL or missing references) //IL_63f9: Unknown result type (might be due to invalid IL or missing references) //IL_63fe: Unknown result type (might be due to invalid IL or missing references) //IL_6408: Unknown result type (might be due to invalid IL or missing references) //IL_640d: Unknown result type (might be due to invalid IL or missing references) //IL_6418: Unknown result type (might be due to invalid IL or missing references) //IL_6422: Unknown result type (might be due to invalid IL or missing references) //IL_6428: Unknown result type (might be due to invalid IL or missing references) //IL_642d: Unknown result type (might be due to invalid IL or missing references) //IL_6432: Unknown result type (might be due to invalid IL or missing references) //IL_643d: Unknown result type (might be due to invalid IL or missing references) //IL_6443: Unknown result type (might be due to invalid IL or missing references) //IL_644e: Unknown result type (might be due to invalid IL or missing references) //IL_6458: Unknown result type (might be due to invalid IL or missing references) //IL_6469: Unknown result type (might be due to invalid IL or missing references) //IL_646e: Unknown result type (might be due to invalid IL or missing references) //IL_6478: Unknown result type (might be due to invalid IL or missing references) //IL_6482: Unknown result type (might be due to invalid IL or missing references) //IL_6488: Unknown result type (might be due to invalid IL or missing references) //IL_6493: Unknown result type (might be due to invalid IL or missing references) //IL_649d: Unknown result type (might be due to invalid IL or missing references) //IL_64a2: Unknown result type (might be due to invalid IL or missing references) //IL_64ac: Unknown result type (might be due to invalid IL or missing references) //IL_64b1: Unknown result type (might be due to invalid IL or missing references) //IL_64bb: Unknown result type (might be due to invalid IL or missing references) //IL_64c0: Unknown result type (might be due to invalid IL or missing references) //IL_64cb: Unknown result type (might be due to invalid IL or missing references) //IL_64dc: Unknown result type (might be due to invalid IL or missing references) //IL_64e1: Unknown result type (might be due to invalid IL or missing references) //IL_64ec: Unknown result type (might be due to invalid IL or missing references) //IL_64f6: Unknown result type (might be due to invalid IL or missing references) //IL_64fc: Unknown result type (might be due to invalid IL or missing references) //IL_6501: Unknown result type (might be due to invalid IL or missing references) //IL_6506: Unknown result type (might be due to invalid IL or missing references) //IL_6512: Unknown result type (might be due to invalid IL or missing references) //IL_5fb2: Unknown result type (might be due to invalid IL or missing references) //IL_5fb8: Unknown result type (might be due to invalid IL or missing references) //IL_5fc3: Unknown result type (might be due to invalid IL or missing references) //IL_5fcd: Unknown result type (might be due to invalid IL or missing references) //IL_5fde: Unknown result type (might be due to invalid IL or missing references) //IL_5fe3: Unknown result type (might be due to invalid IL or missing references) //IL_5fed: Unknown result type (might be due to invalid IL or missing references) //IL_5ff3: Unknown result type (might be due to invalid IL or missing references) //IL_5ffe: Unknown result type (might be due to invalid IL or missing references) //IL_6008: Unknown result type (might be due to invalid IL or missing references) //IL_600d: Unknown result type (might be due to invalid IL or missing references) //IL_6017: Unknown result type (might be due to invalid IL or missing references) //IL_6021: Unknown result type (might be due to invalid IL or missing references) //IL_6026: Unknown result type (might be due to invalid IL or missing references) //IL_6030: Unknown result type (might be due to invalid IL or missing references) //IL_6035: Unknown result type (might be due to invalid IL or missing references) //IL_6040: Unknown result type (might be due to invalid IL or missing references) //IL_604a: Unknown result type (might be due to invalid IL or missing references) //IL_6050: Unknown result type (might be due to invalid IL or missing references) //IL_6055: Unknown result type (might be due to invalid IL or missing references) //IL_605a: Unknown result type (might be due to invalid IL or missing references) //IL_6065: Unknown result type (might be due to invalid IL or missing references) //IL_606b: Unknown result type (might be due to invalid IL or missing references) //IL_6076: Unknown result type (might be due to invalid IL or missing references) //IL_6080: Unknown result type (might be due to invalid IL or missing references) //IL_6091: Unknown result type (might be due to invalid IL or missing references) //IL_6096: Unknown result type (might be due to invalid IL or missing references) //IL_60a0: Unknown result type (might be due to invalid IL or missing references) //IL_60a6: Unknown result type (might be due to invalid IL or missing references) //IL_60b1: Unknown result type (might be due to invalid IL or missing references) //IL_60bb: Unknown result type (might be due to invalid IL or missing references) //IL_60c0: Unknown result type (might be due to invalid IL or missing references) //IL_60ca: Unknown result type (might be due to invalid IL or missing references) //IL_60d4: Unknown result type (might be due to invalid IL or missing references) //IL_60d9: Unknown result type (might be due to invalid IL or missing references) //IL_60e3: Unknown result type (might be due to invalid IL or missing references) //IL_60e8: Unknown result type (might be due to invalid IL or missing references) //IL_60f3: Unknown result type (might be due to invalid IL or missing references) //IL_6104: Unknown result type (might be due to invalid IL or missing references) //IL_6109: Unknown result type (might be due to invalid IL or missing references) //IL_6114: Unknown result type (might be due to invalid IL or missing references) //IL_611e: Unknown result type (might be due to invalid IL or missing references) //IL_6124: Unknown result type (might be due to invalid IL or missing references) //IL_6129: Unknown result type (might be due to invalid IL or missing references) //IL_612e: Unknown result type (might be due to invalid IL or missing references) //IL_613a: Unknown result type (might be due to invalid IL or missing references) //IL_6154: Unknown result type (might be due to invalid IL or missing references) //IL_615a: Unknown result type (might be due to invalid IL or missing references) //IL_6165: Unknown result type (might be due to invalid IL or missing references) //IL_616f: Unknown result type (might be due to invalid IL or missing references) //IL_6174: Unknown result type (might be due to invalid IL or missing references) //IL_617e: Unknown result type (might be due to invalid IL or missing references) //IL_6183: Unknown result type (might be due to invalid IL or missing references) //IL_618e: Unknown result type (might be due to invalid IL or missing references) //IL_6198: Unknown result type (might be due to invalid IL or missing references) //IL_619e: Unknown result type (might be due to invalid IL or missing references) //IL_61a3: Unknown result type (might be due to invalid IL or missing references) //IL_61a8: Unknown result type (might be due to invalid IL or missing references) //IL_61b3: Unknown result type (might be due to invalid IL or missing references) //IL_61b9: Unknown result type (might be due to invalid IL or missing references) //IL_61c4: Unknown result type (might be due to invalid IL or missing references) //IL_61ce: Unknown result type (might be due to invalid IL or missing references) //IL_61d3: Unknown result type (might be due to invalid IL or missing references) //IL_61dd: Unknown result type (might be due to invalid IL or missing references) //IL_61e2: Unknown result type (might be due to invalid IL or missing references) //IL_61ed: Unknown result type (might be due to invalid IL or missing references) //IL_61fe: Unknown result type (might be due to invalid IL or missing references) //IL_6203: Unknown result type (might be due to invalid IL or missing references) //IL_620e: Unknown result type (might be due to invalid IL or missing references) //IL_6218: Unknown result type (might be due to invalid IL or missing references) //IL_621e: Unknown result type (might be due to invalid IL or missing references) //IL_6223: Unknown result type (might be due to invalid IL or missing references) //IL_6228: Unknown result type (might be due to invalid IL or missing references) //IL_6234: Unknown result type (might be due to invalid IL or missing references) //IL_654c: Unknown result type (might be due to invalid IL or missing references) //IL_6552: Unknown result type (might be due to invalid IL or missing references) //IL_655d: Unknown result type (might be due to invalid IL or missing references) //IL_6567: Unknown result type (might be due to invalid IL or missing references) //IL_6578: Unknown result type (might be due to invalid IL or missing references) //IL_657d: Unknown result type (might be due to invalid IL or missing references) //IL_6587: Unknown result type (might be due to invalid IL or missing references) //IL_658d: Unknown result type (might be due to invalid IL or missing references) //IL_6598: Unknown result type (might be due to invalid IL or missing references) //IL_65a2: Unknown result type (might be due to invalid IL or missing references) //IL_65a7: Unknown result type (might be due to invalid IL or missing references) //IL_65b1: Unknown result type (might be due to invalid IL or missing references) //IL_65b6: Unknown result type (might be due to invalid IL or missing references) //IL_65c0: Unknown result type (might be due to invalid IL or missing references) //IL_65c5: Unknown result type (might be due to invalid IL or missing references) //IL_65d0: Unknown result type (might be due to invalid IL or missing references) //IL_65da: Unknown result type (might be due to invalid IL or missing references) //IL_65e0: Unknown result type (might be due to invalid IL or missing references) //IL_65e5: Unknown result type (might be due to invalid IL or missing references) //IL_65ea: Unknown result type (might be due to invalid IL or missing references) //IL_65f5: Unknown result type (might be due to invalid IL or missing references) //IL_65fb: Unknown result type (might be due to invalid IL or missing references) //IL_6606: Unknown result type (might be due to invalid IL or missing references) //IL_6610: Unknown result type (might be due to invalid IL or missing references) //IL_6621: Unknown result type (might be due to invalid IL or missing references) //IL_6626: Unknown result type (might be due to invalid IL or missing references) //IL_6630: Unknown result type (might be due to invalid IL or missing references) //IL_6636: Unknown result type (might be due to invalid IL or missing references) //IL_6641: Unknown result type (might be due to invalid IL or missing references) //IL_664b: Unknown result type (might be due to invalid IL or missing references) //IL_6650: Unknown result type (might be due to invalid IL or missing references) //IL_665a: Unknown result type (might be due to invalid IL or missing references) //IL_665f: Unknown result type (might be due to invalid IL or missing references) //IL_6669: Unknown result type (might be due to invalid IL or missing references) //IL_666e: Unknown result type (might be due to invalid IL or missing references) //IL_6679: Unknown result type (might be due to invalid IL or missing references) //IL_668a: Unknown result type (might be due to invalid IL or missing references) //IL_668f: Unknown result type (might be due to invalid IL or missing references) //IL_669a: Unknown result type (might be due to invalid IL or missing references) //IL_66a4: Unknown result type (might be due to invalid IL or missing references) //IL_66aa: Unknown result type (might be due to invalid IL or missing references) //IL_66af: Unknown result type (might be due to invalid IL or missing references) //IL_66b4: Unknown result type (might be due to invalid IL or missing references) //IL_66c0: Unknown result type (might be due to invalid IL or missing references) //IL_66fa: Unknown result type (might be due to invalid IL or missing references) //IL_6700: Unknown result type (might be due to invalid IL or missing references) //IL_670b: Unknown result type (might be due to invalid IL or missing references) //IL_6715: Unknown result type (might be due to invalid IL or missing references) //IL_6726: Unknown result type (might be due to invalid IL or missing references) //IL_672b: Unknown result type (might be due to invalid IL or missing references) //IL_6735: Unknown result type (might be due to invalid IL or missing references) //IL_673b: Unknown result type (might be due to invalid IL or missing references) //IL_6746: Unknown result type (might be due to invalid IL or missing references) //IL_6750: Unknown result type (might be due to invalid IL or missing references) //IL_6755: Unknown result type (might be due to invalid IL or missing references) //IL_675f: Unknown result type (might be due to invalid IL or missing references) //IL_6769: Unknown result type (might be due to invalid IL or missing references) //IL_676e: Unknown result type (might be due to invalid IL or missing references) //IL_6778: Unknown result type (might be due to invalid IL or missing references) //IL_677d: Unknown result type (might be due to invalid IL or missing references) //IL_6788: Unknown result type (might be due to invalid IL or missing references) //IL_6792: Unknown result type (might be due to invalid IL or missing references) //IL_6798: Unknown result type (might be due to invalid IL or missing references) //IL_679d: Unknown result type (might be due to invalid IL or missing references) //IL_67a2: Unknown result type (might be due to invalid IL or missing references) //IL_67ad: Unknown result type (might be due to invalid IL or missing references) //IL_67b3: Unknown result type (might be due to invalid IL or missing references) //IL_67be: Unknown result type (might be due to invalid IL or missing references) //IL_67c8: Unknown result type (might be due to invalid IL or missing references) //IL_67d9: Unknown result type (might be due to invalid IL or missing references) //IL_67de: Unknown result type (might be due to invalid IL or missing references) //IL_67e8: Unknown result type (might be due to invalid IL or missing references) //IL_67ee: Unknown result type (might be due to invalid IL or missing references) //IL_67f9: Unknown result type (might be due to invalid IL or missing references) //IL_6803: Unknown result type (might be due to invalid IL or missing references) //IL_6808: Unknown result type (might be due to invalid IL or missing references) //IL_6812: Unknown result type (might be due to invalid IL or missing references) //IL_681c: Unknown result type (might be due to invalid IL or missing references) //IL_6821: Unknown result type (might be due to invalid IL or missing references) //IL_682b: Unknown result type (might be due to invalid IL or missing references) //IL_6830: Unknown result type (might be due to invalid IL or missing references) //IL_683b: Unknown result type (might be due to invalid IL or missing references) //IL_684c: Unknown result type (might be due to invalid IL or missing references) //IL_6851: Unknown result type (might be due to invalid IL or missing references) //IL_685c: Unknown result type (might be due to invalid IL or missing references) //IL_6866: Unknown result type (might be due to invalid IL or missing references) //IL_686c: Unknown result type (might be due to invalid IL or missing references) //IL_6871: Unknown result type (might be due to invalid IL or missing references) //IL_6876: Unknown result type (might be due to invalid IL or missing references) //IL_6882: Unknown result type (might be due to invalid IL or missing references) //IL_68bc: Unknown result type (might be due to invalid IL or missing references) //IL_68c2: Unknown result type (might be due to invalid IL or missing references) //IL_68cd: Unknown result type (might be due to invalid IL or missing references) //IL_68d7: Unknown result type (might be due to invalid IL or missing references) //IL_68dc: Unknown result type (might be due to invalid IL or missing references) //IL_68e6: Unknown result type (might be due to invalid IL or missing references) //IL_68eb: Unknown result type (might be due to invalid IL or missing references) //IL_68f6: Unknown result type (might be due to invalid IL or missing references) //IL_6900: Unknown result type (might be due to invalid IL or missing references) //IL_6906: Unknown result type (might be due to invalid IL or missing references) //IL_690b: Unknown result type (might be due to invalid IL or missing references) //IL_6910: Unknown result type (might be due to invalid IL or missing references) //IL_691b: Unknown result type (might be due to invalid IL or missing references) //IL_6921: Unknown result type (might be due to invalid IL or missing references) //IL_692c: Unknown result type (might be due to invalid IL or missing references) //IL_6936: Unknown result type (might be due to invalid IL or missing references) //IL_693b: Unknown result type (might be due to invalid IL or missing references) //IL_6945: Unknown result type (might be due to invalid IL or missing references) //IL_694a: Unknown result type (might be due to invalid IL or missing references) //IL_6955: Unknown result type (might be due to invalid IL or missing references) //IL_6966: Unknown result type (might be due to invalid IL or missing references) //IL_696b: Unknown result type (might be due to invalid IL or missing references) //IL_6976: Unknown result type (might be due to invalid IL or missing references) //IL_6980: Unknown result type (might be due to invalid IL or missing references) //IL_6986: Unknown result type (might be due to invalid IL or missing references) //IL_698b: Unknown result type (might be due to invalid IL or missing references) //IL_6990: Unknown result type (might be due to invalid IL or missing references) //IL_699c: Unknown result type (might be due to invalid IL or missing references) if (Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled) { Bounds bounds = ((Collider)characterController).bounds; colCenter = ((Bounds)(ref bounds)).center; Bounds bounds2 = ((Collider)characterController).bounds; colTop = ((Bounds)(ref bounds2)).center + characterController.height * 0.5f * ((Component)this).transform.up; } else if (Object.op_Implicit((Object)(object)rigidBody)) { Bounds bounds3 = ((Component)this).GetComponent().bounds; colCenter = ((Bounds)(ref bounds3)).center; if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { Bounds bounds4 = ((Component)this).GetComponent().bounds; colTop = ((Bounds)(ref bounds4)).center + ((Component)this).GetComponent().height * 0.5f * ((Component)this).transform.up; } else if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { Bounds bounds5 = ((Component)this).GetComponent().bounds; colTop = ((Bounds)(ref bounds5)).center + ((Component)this).GetComponent().radius * ((Component)this).transform.up; } else if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { Bounds bounds6 = ((Component)this).GetComponent().bounds; colTop = ((Bounds)(ref bounds6)).center + ((Component)this).GetComponent().size.y * 0.5f * ((Component)this).transform.up; } } if (pullingUp) { return; } if ((!Physics.Linecast(((Component)this).transform.position + bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f, ((Component)this).transform.position + bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 0.1875f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && !Physics.Linecast(((Component)this).transform.position + bottomNoSurfaceDetectorHeight2 - ((Component)this).transform.right / 3f - topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.up * 0.1875f, ((Component)this).transform.position + bottomNoSurfaceDetectorHeight2 - ((Component)this).transform.right / 3f - topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 0.1875f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && !Physics.Linecast(((Component)this).transform.position + bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.up * 0.1875f, ((Component)this).transform.position + bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 0.1875f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers))) || (Physics.Linecast(((Component)this).transform.position + bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f, ((Component)this).transform.position + bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 0.1875f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2 && Physics.Linecast(((Component)this).transform.position + bottomNoSurfaceDetectorHeight2 - ((Component)this).transform.right / 3f - topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.up * 0.1875f, ((Component)this).transform.position + bottomNoSurfaceDetectorHeight2 - ((Component)this).transform.right / 3f - topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 0.1875f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2 && Physics.Linecast(((Component)this).transform.position + bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.up * 0.1875f, ((Component)this).transform.position + bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 0.1875f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2)) { reachedBottomPoint = true; if (currentlyClimbingWall && dropOffAtBottom2 && ((Component)this).transform.rotation == lastRot2 && wallIsClimbable && Input.GetAxisRaw("Vertical") < 0f) { moveDirection = Vector3.zero; swimDirection = Vector3.zero; swimmingMovementSpeed = 0f; swimmingMovementTransferred = true; jumpedOffClimbableObjectTimer = 0f; jumpedOffClimbableObjectDirection = -((Component)this).transform.forward * distanceToPushOffAfterLettingGo2; inMidAirFromJump = false; inMidAirFromWallJump = false; currentJumpNumber = totalJumpNumber; moveSpeed = 0f; if ((Object)(object)animator != (Object)null) { animator.CrossFade("Movement", 0f, -1, 0f); } animator.SetFloat("climbState", 0f); currentlyClimbingWall = false; } } else if (!currentlyClimbingWall || (currentlyClimbingWall && (!grounded.currentlyGrounded || dropOffAtBottom2))) { reachedBottomPoint = false; } if ((!Physics.Linecast(((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f, ((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 1.125f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && !Physics.Linecast(((Component)this).transform.position + topNoSurfaceDetectorHeight2 - ((Component)this).transform.right / 3f - topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.up * 1.125f, ((Component)this).transform.position + topNoSurfaceDetectorHeight2 - ((Component)this).transform.right / 3f - topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 1.125f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && !Physics.Linecast(((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.up * 1.125f, ((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 1.125f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers))) || (Physics.Linecast(((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f, ((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 1.125f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2 && Physics.Linecast(((Component)this).transform.position + topNoSurfaceDetectorHeight2 - ((Component)this).transform.right / 3f - topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.up * 1.125f, ((Component)this).transform.position + topNoSurfaceDetectorHeight2 - ((Component)this).transform.right / 3f - topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 1.125f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2 && Physics.Linecast(((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.up * 1.125f, ((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 1.125f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2)) { aboveTop = true; } else { aboveTop = false; } if (aboveTop || ((!Physics.Linecast(((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f, ((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 1.125f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || (Physics.Linecast(((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f, ((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 1.125f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2)) && (!Physics.Linecast(((Component)this).transform.position + topNoSurfaceDetectorHeight2 - ((Component)this).transform.right / 3f - topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.up * 1.125f, ((Component)this).transform.position + topNoSurfaceDetectorHeight2 - ((Component)this).transform.right / 3f - topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 1.125f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || (Physics.Linecast(((Component)this).transform.position + topNoSurfaceDetectorHeight2 - ((Component)this).transform.right / 3f - topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.up * 1.125f, ((Component)this).transform.position + topNoSurfaceDetectorHeight2 - ((Component)this).transform.right / 3f - topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 1.125f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2))) || ((!Physics.Linecast(((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f, ((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 1.125f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || (Physics.Linecast(((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f, ((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 1.125f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2)) && (!Physics.Linecast(((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.up * 1.125f, ((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 1.125f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || (Physics.Linecast(((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.up * 1.125f, ((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 1.125f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2))) || Physics.Linecast(colCenter, colTop + ((Component)this).transform.up / 6f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers))) { reachedTopPoint = true; if (aboveTop && currentlyClimbingWall && pullUpAtTop2 && ((Component)this).transform.rotation == lastRot2 && wallIsClimbable && Input.GetAxisRaw("Vertical") > 0f && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.up + ((Component)this).transform.forward / 1.25f + ((Component)this).transform.up * 1.5f + pullUpLocationForward2, ((Component)this).transform.position + ((Component)this).transform.up * 0.8f + ((Component)this).transform.forward / 1.75f + pullUpLocationForward2, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers))) { pullUpLocationAcquired = true; movingToPullUpLocation = true; pullingUp = true; } } else { reachedTopPoint = false; } i++; if (i == climbing.Length) { i = 0; } if (!firstTest && !secondTest && !thirdTest && !fourthTest && !fifthTest) { SetClimbingVariables(); } if ((Physics.Linecast(((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f, ((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 1.125f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.up * 1.125f, ((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 1.125f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f + ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f - ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f + ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f - ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || aboveTop) { if ((Physics.Linecast(((Component)this).transform.position + (topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + (topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f * 3f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 4f + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f * 3f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 4f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 3f + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 3f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f * 3f) / 4f + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f * 3f) / 4f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + (topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2), ((Component)this).transform.position + (topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + (((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f * 3f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 4f + (((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f * 3f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 4f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + (((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 3f + (((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 3f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + (((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f * 3f) / 4f + (((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f * 3f) / 4f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + (((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f + (((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2), ((Component)this).transform.position + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + (((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f + ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f - ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f + ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f - ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f + ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f - ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f + ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f - ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f + ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f - ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f + ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f - ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2)) { thirdTest = true; reachedRightPoint = false; } else if ((!Physics.Linecast(((Component)this).transform.position + (topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + (topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && !Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f * 3f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 4f + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f * 3f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 4f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && !Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 2f + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 2f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && !Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f * 3f) / 4f + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f * 3f) / 4f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && !Physics.Linecast(((Component)this).transform.position + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers))) || (Physics.Linecast(((Component)this).transform.position + (topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + (topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f * 3f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 4f + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f * 3f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 4f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 2f + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 2f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f * 3f) / 4f + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f * 3f) / 4f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2 && Physics.Linecast(((Component)this).transform.position + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2)) { thirdTest = false; reachedRightPoint = true; } else { reachedRightPoint = false; } } else { reachedRightPoint = true; } i++; if (i == climbing.Length) { i = 0; } if (!firstTest && !secondTest && !thirdTest && !fourthTest && !fifthTest) { SetClimbingVariables(); } if ((Physics.Linecast(((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f, ((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 1.125f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + topNoSurfaceDetectorHeight2 - ((Component)this).transform.right / 3f - topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.up * 1.125f, ((Component)this).transform.position + topNoSurfaceDetectorHeight2 - ((Component)this).transform.right / 3f - topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 1.125f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f - ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f + ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f - ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f + ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || aboveTop) { if ((Physics.Linecast(((Component)this).transform.position + (topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + (topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f * 3f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 4f - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f * 3f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 4f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 3f - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 3f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f * 3f) / 4f - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f * 3f) / 4f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + (topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f - (((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2), ((Component)this).transform.position + (topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) - (((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f * 3f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 4f - (((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f * 3f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 4f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) - (((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 3f - (((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 3f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) - (((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f * 3f) / 4f - (((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f * 3f) / 4f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) - (((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f - (((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2), ((Component)this).transform.position + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) - (((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f - ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f + ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f - ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f + ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f - ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f + ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f - ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f + ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f - ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f + ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f - ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f + ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2)) { fourthTest = true; reachedLeftPoint = false; } else if ((!Physics.Linecast(((Component)this).transform.position + (topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + (topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && !Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f * 3f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 4f - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f * 3f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 4f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && !Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 2f - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 2f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && !Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f * 3f) / 4f - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f * 3f) / 4f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && !Physics.Linecast(((Component)this).transform.position + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers))) || (Physics.Linecast(((Component)this).transform.position + (topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + (topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f * 3f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 4f - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f * 3f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 4f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 2f - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 2f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f * 3f) / 4f - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f * 3f) / 4f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2 && Physics.Linecast(((Component)this).transform.position + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2)) { fourthTest = false; reachedLeftPoint = true; } else { reachedLeftPoint = false; } } else { reachedLeftPoint = true; } } private void WallClimbingRotation() { //IL_37a3: Unknown result type (might be due to invalid IL or missing references) //IL_37a8: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0088: Unknown result type (might be due to invalid IL or missing references) //IL_008e: Unknown result type (might be due to invalid IL or missing references) //IL_00af: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) //IL_00ba: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_00d6: Unknown result type (might be due to invalid IL or missing references) //IL_00e0: Unknown result type (might be due to invalid IL or missing references) //IL_00e5: Unknown result type (might be due to invalid IL or missing references) //IL_00f0: Unknown result type (might be due to invalid IL or missing references) //IL_00f6: Unknown result type (might be due to invalid IL or missing references) //IL_00fb: Unknown result type (might be due to invalid IL or missing references) //IL_0106: Unknown result type (might be due to invalid IL or missing references) //IL_0110: Unknown result type (might be due to invalid IL or missing references) //IL_0115: Unknown result type (might be due to invalid IL or missing references) //IL_0120: Unknown result type (might be due to invalid IL or missing references) //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_013b: Unknown result type (might be due to invalid IL or missing references) //IL_0140: Unknown result type (might be due to invalid IL or missing references) //IL_014c: Unknown result type (might be due to invalid IL or missing references) //IL_07e4: Unknown result type (might be due to invalid IL or missing references) //IL_07ea: Unknown result type (might be due to invalid IL or missing references) //IL_01df: Unknown result type (might be due to invalid IL or missing references) //IL_01e5: Unknown result type (might be due to invalid IL or missing references) //IL_01ea: Unknown result type (might be due to invalid IL or missing references) //IL_01f5: Unknown result type (might be due to invalid IL or missing references) //IL_0206: Unknown result type (might be due to invalid IL or missing references) //IL_0210: Unknown result type (might be due to invalid IL or missing references) //IL_0215: Unknown result type (might be due to invalid IL or missing references) //IL_0220: Unknown result type (might be due to invalid IL or missing references) //IL_0226: Unknown result type (might be due to invalid IL or missing references) //IL_022b: Unknown result type (might be due to invalid IL or missing references) //IL_0236: Unknown result type (might be due to invalid IL or missing references) //IL_0240: Unknown result type (might be due to invalid IL or missing references) //IL_0245: Unknown result type (might be due to invalid IL or missing references) //IL_0250: Unknown result type (might be due to invalid IL or missing references) //IL_0261: Unknown result type (might be due to invalid IL or missing references) //IL_026b: Unknown result type (might be due to invalid IL or missing references) //IL_0270: Unknown result type (might be due to invalid IL or missing references) //IL_027c: Unknown result type (might be due to invalid IL or missing references) //IL_0f2c: Unknown result type (might be due to invalid IL or missing references) //IL_0f32: Unknown result type (might be due to invalid IL or missing references) //IL_0f37: Unknown result type (might be due to invalid IL or missing references) //IL_0f42: Unknown result type (might be due to invalid IL or missing references) //IL_0f53: Unknown result type (might be due to invalid IL or missing references) //IL_0f5d: Unknown result type (might be due to invalid IL or missing references) //IL_0f62: Unknown result type (might be due to invalid IL or missing references) //IL_0f6d: Unknown result type (might be due to invalid IL or missing references) //IL_0f73: Unknown result type (might be due to invalid IL or missing references) //IL_0f78: Unknown result type (might be due to invalid IL or missing references) //IL_0f83: Unknown result type (might be due to invalid IL or missing references) //IL_0f94: Unknown result type (might be due to invalid IL or missing references) //IL_0f99: Unknown result type (might be due to invalid IL or missing references) //IL_0fa4: Unknown result type (might be due to invalid IL or missing references) //IL_0fb5: Unknown result type (might be due to invalid IL or missing references) //IL_0fbf: Unknown result type (might be due to invalid IL or missing references) //IL_0fc4: Unknown result type (might be due to invalid IL or missing references) //IL_0fd0: Unknown result type (might be due to invalid IL or missing references) //IL_080b: Unknown result type (might be due to invalid IL or missing references) //IL_0811: Unknown result type (might be due to invalid IL or missing references) //IL_0816: Unknown result type (might be due to invalid IL or missing references) //IL_0821: Unknown result type (might be due to invalid IL or missing references) //IL_0832: Unknown result type (might be due to invalid IL or missing references) //IL_083c: Unknown result type (might be due to invalid IL or missing references) //IL_0841: Unknown result type (might be due to invalid IL or missing references) //IL_084c: Unknown result type (might be due to invalid IL or missing references) //IL_0852: Unknown result type (might be due to invalid IL or missing references) //IL_0857: Unknown result type (might be due to invalid IL or missing references) //IL_0862: Unknown result type (might be due to invalid IL or missing references) //IL_086c: Unknown result type (might be due to invalid IL or missing references) //IL_0871: Unknown result type (might be due to invalid IL or missing references) //IL_087c: Unknown result type (might be due to invalid IL or missing references) //IL_088d: Unknown result type (might be due to invalid IL or missing references) //IL_0897: Unknown result type (might be due to invalid IL or missing references) //IL_089c: Unknown result type (might be due to invalid IL or missing references) //IL_08a8: Unknown result type (might be due to invalid IL or missing references) //IL_030f: Unknown result type (might be due to invalid IL or missing references) //IL_0315: Unknown result type (might be due to invalid IL or missing references) //IL_031a: Unknown result type (might be due to invalid IL or missing references) //IL_0325: Unknown result type (might be due to invalid IL or missing references) //IL_0336: Unknown result type (might be due to invalid IL or missing references) //IL_0340: Unknown result type (might be due to invalid IL or missing references) //IL_0345: Unknown result type (might be due to invalid IL or missing references) //IL_0350: Unknown result type (might be due to invalid IL or missing references) //IL_0356: Unknown result type (might be due to invalid IL or missing references) //IL_035b: Unknown result type (might be due to invalid IL or missing references) //IL_0366: Unknown result type (might be due to invalid IL or missing references) //IL_0370: Unknown result type (might be due to invalid IL or missing references) //IL_0375: Unknown result type (might be due to invalid IL or missing references) //IL_0380: Unknown result type (might be due to invalid IL or missing references) //IL_0391: Unknown result type (might be due to invalid IL or missing references) //IL_039b: Unknown result type (might be due to invalid IL or missing references) //IL_03a0: Unknown result type (might be due to invalid IL or missing references) //IL_03ac: Unknown result type (might be due to invalid IL or missing references) //IL_36c0: Unknown result type (might be due to invalid IL or missing references) //IL_36c5: Unknown result type (might be due to invalid IL or missing references) //IL_104d: Unknown result type (might be due to invalid IL or missing references) //IL_1053: Unknown result type (might be due to invalid IL or missing references) //IL_1058: Unknown result type (might be due to invalid IL or missing references) //IL_1063: Unknown result type (might be due to invalid IL or missing references) //IL_1074: Unknown result type (might be due to invalid IL or missing references) //IL_107e: Unknown result type (might be due to invalid IL or missing references) //IL_1083: Unknown result type (might be due to invalid IL or missing references) //IL_108e: Unknown result type (might be due to invalid IL or missing references) //IL_1094: Unknown result type (might be due to invalid IL or missing references) //IL_1099: Unknown result type (might be due to invalid IL or missing references) //IL_10a4: Unknown result type (might be due to invalid IL or missing references) //IL_10b5: Unknown result type (might be due to invalid IL or missing references) //IL_10ba: Unknown result type (might be due to invalid IL or missing references) //IL_10c5: Unknown result type (might be due to invalid IL or missing references) //IL_10d6: Unknown result type (might be due to invalid IL or missing references) //IL_10e0: Unknown result type (might be due to invalid IL or missing references) //IL_10e5: Unknown result type (might be due to invalid IL or missing references) //IL_10f1: Unknown result type (might be due to invalid IL or missing references) //IL_093b: Unknown result type (might be due to invalid IL or missing references) //IL_0941: Unknown result type (might be due to invalid IL or missing references) //IL_0946: Unknown result type (might be due to invalid IL or missing references) //IL_0951: Unknown result type (might be due to invalid IL or missing references) //IL_0962: Unknown result type (might be due to invalid IL or missing references) //IL_096c: Unknown result type (might be due to invalid IL or missing references) //IL_0971: Unknown result type (might be due to invalid IL or missing references) //IL_097c: Unknown result type (might be due to invalid IL or missing references) //IL_0982: Unknown result type (might be due to invalid IL or missing references) //IL_0987: Unknown result type (might be due to invalid IL or missing references) //IL_0992: Unknown result type (might be due to invalid IL or missing references) //IL_099c: Unknown result type (might be due to invalid IL or missing references) //IL_09a1: Unknown result type (might be due to invalid IL or missing references) //IL_09ac: Unknown result type (might be due to invalid IL or missing references) //IL_09bd: Unknown result type (might be due to invalid IL or missing references) //IL_09c7: Unknown result type (might be due to invalid IL or missing references) //IL_09cc: Unknown result type (might be due to invalid IL or missing references) //IL_09d8: Unknown result type (might be due to invalid IL or missing references) //IL_043f: Unknown result type (might be due to invalid IL or missing references) //IL_0445: Unknown result type (might be due to invalid IL or missing references) //IL_044a: Unknown result type (might be due to invalid IL or missing references) //IL_0455: Unknown result type (might be due to invalid IL or missing references) //IL_0466: Unknown result type (might be due to invalid IL or missing references) //IL_0470: Unknown result type (might be due to invalid IL or missing references) //IL_0475: Unknown result type (might be due to invalid IL or missing references) //IL_0480: Unknown result type (might be due to invalid IL or missing references) //IL_0486: Unknown result type (might be due to invalid IL or missing references) //IL_048b: Unknown result type (might be due to invalid IL or missing references) //IL_0496: Unknown result type (might be due to invalid IL or missing references) //IL_04a0: Unknown result type (might be due to invalid IL or missing references) //IL_04a5: Unknown result type (might be due to invalid IL or missing references) //IL_04b0: Unknown result type (might be due to invalid IL or missing references) //IL_04c1: Unknown result type (might be due to invalid IL or missing references) //IL_04cb: Unknown result type (might be due to invalid IL or missing references) //IL_04d0: Unknown result type (might be due to invalid IL or missing references) //IL_04dc: Unknown result type (might be due to invalid IL or missing references) //IL_116e: Unknown result type (might be due to invalid IL or missing references) //IL_1174: Unknown result type (might be due to invalid IL or missing references) //IL_1179: Unknown result type (might be due to invalid IL or missing references) //IL_1184: Unknown result type (might be due to invalid IL or missing references) //IL_1195: Unknown result type (might be due to invalid IL or missing references) //IL_119f: Unknown result type (might be due to invalid IL or missing references) //IL_11a4: Unknown result type (might be due to invalid IL or missing references) //IL_11af: Unknown result type (might be due to invalid IL or missing references) //IL_11b5: Unknown result type (might be due to invalid IL or missing references) //IL_11ba: Unknown result type (might be due to invalid IL or missing references) //IL_11c5: Unknown result type (might be due to invalid IL or missing references) //IL_11d6: Unknown result type (might be due to invalid IL or missing references) //IL_11db: Unknown result type (might be due to invalid IL or missing references) //IL_11e6: Unknown result type (might be due to invalid IL or missing references) //IL_11f7: Unknown result type (might be due to invalid IL or missing references) //IL_1201: Unknown result type (might be due to invalid IL or missing references) //IL_1206: Unknown result type (might be due to invalid IL or missing references) //IL_1212: Unknown result type (might be due to invalid IL or missing references) //IL_0a6b: Unknown result type (might be due to invalid IL or missing references) //IL_0a71: Unknown result type (might be due to invalid IL or missing references) //IL_0a76: Unknown result type (might be due to invalid IL or missing references) //IL_0a81: Unknown result type (might be due to invalid IL or missing references) //IL_0a92: Unknown result type (might be due to invalid IL or missing references) //IL_0a9c: Unknown result type (might be due to invalid IL or missing references) //IL_0aa1: Unknown result type (might be due to invalid IL or missing references) //IL_0aac: Unknown result type (might be due to invalid IL or missing references) //IL_0ab2: Unknown result type (might be due to invalid IL or missing references) //IL_0ab7: Unknown result type (might be due to invalid IL or missing references) //IL_0ac2: Unknown result type (might be due to invalid IL or missing references) //IL_0acc: Unknown result type (might be due to invalid IL or missing references) //IL_0ad1: Unknown result type (might be due to invalid IL or missing references) //IL_0adc: Unknown result type (might be due to invalid IL or missing references) //IL_0aed: Unknown result type (might be due to invalid IL or missing references) //IL_0af7: Unknown result type (might be due to invalid IL or missing references) //IL_0afc: Unknown result type (might be due to invalid IL or missing references) //IL_0b08: Unknown result type (might be due to invalid IL or missing references) //IL_056f: Unknown result type (might be due to invalid IL or missing references) //IL_0575: Unknown result type (might be due to invalid IL or missing references) //IL_057a: Unknown result type (might be due to invalid IL or missing references) //IL_0585: Unknown result type (might be due to invalid IL or missing references) //IL_0596: Unknown result type (might be due to invalid IL or missing references) //IL_05a0: Unknown result type (might be due to invalid IL or missing references) //IL_05a5: Unknown result type (might be due to invalid IL or missing references) //IL_05b0: Unknown result type (might be due to invalid IL or missing references) //IL_05b6: Unknown result type (might be due to invalid IL or missing references) //IL_05bb: Unknown result type (might be due to invalid IL or missing references) //IL_05c6: Unknown result type (might be due to invalid IL or missing references) //IL_05d0: Unknown result type (might be due to invalid IL or missing references) //IL_05d5: Unknown result type (might be due to invalid IL or missing references) //IL_05e0: Unknown result type (might be due to invalid IL or missing references) //IL_05f1: Unknown result type (might be due to invalid IL or missing references) //IL_05fb: Unknown result type (might be due to invalid IL or missing references) //IL_0600: Unknown result type (might be due to invalid IL or missing references) //IL_060c: Unknown result type (might be due to invalid IL or missing references) //IL_01b3: Unknown result type (might be due to invalid IL or missing references) //IL_01b8: Unknown result type (might be due to invalid IL or missing references) //IL_01bd: Unknown result type (might be due to invalid IL or missing references) //IL_01c2: Unknown result type (might be due to invalid IL or missing references) //IL_376d: Unknown result type (might be due to invalid IL or missing references) //IL_3772: Unknown result type (might be due to invalid IL or missing references) //IL_377f: Unknown result type (might be due to invalid IL or missing references) //IL_372d: Unknown result type (might be due to invalid IL or missing references) //IL_3733: Unknown result type (might be due to invalid IL or missing references) //IL_3744: Unknown result type (might be due to invalid IL or missing references) //IL_36f3: Unknown result type (might be due to invalid IL or missing references) //IL_36f9: Unknown result type (might be due to invalid IL or missing references) //IL_3710: Unknown result type (might be due to invalid IL or missing references) //IL_128f: Unknown result type (might be due to invalid IL or missing references) //IL_1295: Unknown result type (might be due to invalid IL or missing references) //IL_129a: Unknown result type (might be due to invalid IL or missing references) //IL_12a5: Unknown result type (might be due to invalid IL or missing references) //IL_12b6: Unknown result type (might be due to invalid IL or missing references) //IL_12c0: Unknown result type (might be due to invalid IL or missing references) //IL_12c5: Unknown result type (might be due to invalid IL or missing references) //IL_12d0: Unknown result type (might be due to invalid IL or missing references) //IL_12d6: Unknown result type (might be due to invalid IL or missing references) //IL_12db: Unknown result type (might be due to invalid IL or missing references) //IL_12e6: Unknown result type (might be due to invalid IL or missing references) //IL_12f7: Unknown result type (might be due to invalid IL or missing references) //IL_12fc: Unknown result type (might be due to invalid IL or missing references) //IL_1307: Unknown result type (might be due to invalid IL or missing references) //IL_1318: Unknown result type (might be due to invalid IL or missing references) //IL_1322: Unknown result type (might be due to invalid IL or missing references) //IL_1327: Unknown result type (might be due to invalid IL or missing references) //IL_1333: Unknown result type (might be due to invalid IL or missing references) //IL_1022: Unknown result type (might be due to invalid IL or missing references) //IL_1027: Unknown result type (might be due to invalid IL or missing references) //IL_102c: Unknown result type (might be due to invalid IL or missing references) //IL_1031: Unknown result type (might be due to invalid IL or missing references) //IL_0b9b: Unknown result type (might be due to invalid IL or missing references) //IL_0ba1: Unknown result type (might be due to invalid IL or missing references) //IL_0ba6: Unknown result type (might be due to invalid IL or missing references) //IL_0bb1: Unknown result type (might be due to invalid IL or missing references) //IL_0bc2: Unknown result type (might be due to invalid IL or missing references) //IL_0bcc: Unknown result type (might be due to invalid IL or missing references) //IL_0bd1: Unknown result type (might be due to invalid IL or missing references) //IL_0bdc: Unknown result type (might be due to invalid IL or missing references) //IL_0be2: Unknown result type (might be due to invalid IL or missing references) //IL_0be7: Unknown result type (might be due to invalid IL or missing references) //IL_0bf2: Unknown result type (might be due to invalid IL or missing references) //IL_0bfc: Unknown result type (might be due to invalid IL or missing references) //IL_0c01: Unknown result type (might be due to invalid IL or missing references) //IL_0c0c: Unknown result type (might be due to invalid IL or missing references) //IL_0c1d: Unknown result type (might be due to invalid IL or missing references) //IL_0c27: Unknown result type (might be due to invalid IL or missing references) //IL_0c2c: Unknown result type (might be due to invalid IL or missing references) //IL_0c38: Unknown result type (might be due to invalid IL or missing references) //IL_069f: Unknown result type (might be due to invalid IL or missing references) //IL_06a5: Unknown result type (might be due to invalid IL or missing references) //IL_06aa: Unknown result type (might be due to invalid IL or missing references) //IL_06b5: Unknown result type (might be due to invalid IL or missing references) //IL_06c6: Unknown result type (might be due to invalid IL or missing references) //IL_06d0: Unknown result type (might be due to invalid IL or missing references) //IL_06d5: Unknown result type (might be due to invalid IL or missing references) //IL_06e0: Unknown result type (might be due to invalid IL or missing references) //IL_06e6: Unknown result type (might be due to invalid IL or missing references) //IL_06eb: Unknown result type (might be due to invalid IL or missing references) //IL_06f6: Unknown result type (might be due to invalid IL or missing references) //IL_0700: Unknown result type (might be due to invalid IL or missing references) //IL_0705: Unknown result type (might be due to invalid IL or missing references) //IL_0710: Unknown result type (might be due to invalid IL or missing references) //IL_0721: Unknown result type (might be due to invalid IL or missing references) //IL_072b: Unknown result type (might be due to invalid IL or missing references) //IL_0730: Unknown result type (might be due to invalid IL or missing references) //IL_073c: Unknown result type (might be due to invalid IL or missing references) //IL_02e3: Unknown result type (might be due to invalid IL or missing references) //IL_02e8: Unknown result type (might be due to invalid IL or missing references) //IL_02ed: Unknown result type (might be due to invalid IL or missing references) //IL_02f2: Unknown result type (might be due to invalid IL or missing references) //IL_13b0: Unknown result type (might be due to invalid IL or missing references) //IL_13b6: Unknown result type (might be due to invalid IL or missing references) //IL_13bb: Unknown result type (might be due to invalid IL or missing references) //IL_13c6: Unknown result type (might be due to invalid IL or missing references) //IL_13d7: Unknown result type (might be due to invalid IL or missing references) //IL_13e1: Unknown result type (might be due to invalid IL or missing references) //IL_13e6: Unknown result type (might be due to invalid IL or missing references) //IL_13f1: Unknown result type (might be due to invalid IL or missing references) //IL_13f7: Unknown result type (might be due to invalid IL or missing references) //IL_13fc: Unknown result type (might be due to invalid IL or missing references) //IL_1407: Unknown result type (might be due to invalid IL or missing references) //IL_1418: Unknown result type (might be due to invalid IL or missing references) //IL_141d: Unknown result type (might be due to invalid IL or missing references) //IL_1428: Unknown result type (might be due to invalid IL or missing references) //IL_1439: Unknown result type (might be due to invalid IL or missing references) //IL_1443: Unknown result type (might be due to invalid IL or missing references) //IL_1448: Unknown result type (might be due to invalid IL or missing references) //IL_1454: Unknown result type (might be due to invalid IL or missing references) //IL_1143: Unknown result type (might be due to invalid IL or missing references) //IL_1148: Unknown result type (might be due to invalid IL or missing references) //IL_114d: Unknown result type (might be due to invalid IL or missing references) //IL_1152: Unknown result type (might be due to invalid IL or missing references) //IL_0ccb: Unknown result type (might be due to invalid IL or missing references) //IL_0cd1: Unknown result type (might be due to invalid IL or missing references) //IL_0cd6: Unknown result type (might be due to invalid IL or missing references) //IL_0ce1: Unknown result type (might be due to invalid IL or missing references) //IL_0cf2: Unknown result type (might be due to invalid IL or missing references) //IL_0cfc: Unknown result type (might be due to invalid IL or missing references) //IL_0d01: Unknown result type (might be due to invalid IL or missing references) //IL_0d0c: Unknown result type (might be due to invalid IL or missing references) //IL_0d12: Unknown result type (might be due to invalid IL or missing references) //IL_0d17: Unknown result type (might be due to invalid IL or missing references) //IL_0d22: Unknown result type (might be due to invalid IL or missing references) //IL_0d2c: Unknown result type (might be due to invalid IL or missing references) //IL_0d31: Unknown result type (might be due to invalid IL or missing references) //IL_0d3c: Unknown result type (might be due to invalid IL or missing references) //IL_0d4d: Unknown result type (might be due to invalid IL or missing references) //IL_0d57: Unknown result type (might be due to invalid IL or missing references) //IL_0d5c: Unknown result type (might be due to invalid IL or missing references) //IL_0d68: Unknown result type (might be due to invalid IL or missing references) //IL_090f: Unknown result type (might be due to invalid IL or missing references) //IL_0914: Unknown result type (might be due to invalid IL or missing references) //IL_0919: Unknown result type (might be due to invalid IL or missing references) //IL_091e: Unknown result type (might be due to invalid IL or missing references) //IL_0413: Unknown result type (might be due to invalid IL or missing references) //IL_0418: Unknown result type (might be due to invalid IL or missing references) //IL_041d: Unknown result type (might be due to invalid IL or missing references) //IL_0422: Unknown result type (might be due to invalid IL or missing references) //IL_14d1: Unknown result type (might be due to invalid IL or missing references) //IL_14d7: Unknown result type (might be due to invalid IL or missing references) //IL_14dc: Unknown result type (might be due to invalid IL or missing references) //IL_14e7: Unknown result type (might be due to invalid IL or missing references) //IL_14f8: Unknown result type (might be due to invalid IL or missing references) //IL_1502: Unknown result type (might be due to invalid IL or missing references) //IL_1507: Unknown result type (might be due to invalid IL or missing references) //IL_1512: Unknown result type (might be due to invalid IL or missing references) //IL_1518: Unknown result type (might be due to invalid IL or missing references) //IL_151d: Unknown result type (might be due to invalid IL or missing references) //IL_1528: Unknown result type (might be due to invalid IL or missing references) //IL_1539: Unknown result type (might be due to invalid IL or missing references) //IL_153e: Unknown result type (might be due to invalid IL or missing references) //IL_1549: Unknown result type (might be due to invalid IL or missing references) //IL_155a: Unknown result type (might be due to invalid IL or missing references) //IL_1564: Unknown result type (might be due to invalid IL or missing references) //IL_1569: Unknown result type (might be due to invalid IL or missing references) //IL_1575: Unknown result type (might be due to invalid IL or missing references) //IL_1264: Unknown result type (might be due to invalid IL or missing references) //IL_1269: Unknown result type (might be due to invalid IL or missing references) //IL_126e: Unknown result type (might be due to invalid IL or missing references) //IL_1273: Unknown result type (might be due to invalid IL or missing references) //IL_0dfb: Unknown result type (might be due to invalid IL or missing references) //IL_0e01: Unknown result type (might be due to invalid IL or missing references) //IL_0e06: Unknown result type (might be due to invalid IL or missing references) //IL_0e11: Unknown result type (might be due to invalid IL or missing references) //IL_0e22: Unknown result type (might be due to invalid IL or missing references) //IL_0e2c: Unknown result type (might be due to invalid IL or missing references) //IL_0e31: Unknown result type (might be due to invalid IL or missing references) //IL_0e3c: Unknown result type (might be due to invalid IL or missing references) //IL_0e42: Unknown result type (might be due to invalid IL or missing references) //IL_0e47: Unknown result type (might be due to invalid IL or missing references) //IL_0e52: Unknown result type (might be due to invalid IL or missing references) //IL_0e5c: Unknown result type (might be due to invalid IL or missing references) //IL_0e61: Unknown result type (might be due to invalid IL or missing references) //IL_0e6c: Unknown result type (might be due to invalid IL or missing references) //IL_0e7d: Unknown result type (might be due to invalid IL or missing references) //IL_0e87: Unknown result type (might be due to invalid IL or missing references) //IL_0e8c: Unknown result type (might be due to invalid IL or missing references) //IL_0e98: Unknown result type (might be due to invalid IL or missing references) //IL_0a3f: Unknown result type (might be due to invalid IL or missing references) //IL_0a44: Unknown result type (might be due to invalid IL or missing references) //IL_0a49: Unknown result type (might be due to invalid IL or missing references) //IL_0a4e: Unknown result type (might be due to invalid IL or missing references) //IL_0543: Unknown result type (might be due to invalid IL or missing references) //IL_0548: Unknown result type (might be due to invalid IL or missing references) //IL_054d: Unknown result type (might be due to invalid IL or missing references) //IL_0552: Unknown result type (might be due to invalid IL or missing references) //IL_15f2: Unknown result type (might be due to invalid IL or missing references) //IL_15f8: Unknown result type (might be due to invalid IL or missing references) //IL_15fd: Unknown result type (might be due to invalid IL or missing references) //IL_1608: Unknown result type (might be due to invalid IL or missing references) //IL_1619: Unknown result type (might be due to invalid IL or missing references) //IL_1623: Unknown result type (might be due to invalid IL or missing references) //IL_1628: Unknown result type (might be due to invalid IL or missing references) //IL_1633: Unknown result type (might be due to invalid IL or missing references) //IL_163d: Unknown result type (might be due to invalid IL or missing references) //IL_1642: Unknown result type (might be due to invalid IL or missing references) //IL_164d: Unknown result type (might be due to invalid IL or missing references) //IL_1653: Unknown result type (might be due to invalid IL or missing references) //IL_1658: Unknown result type (might be due to invalid IL or missing references) //IL_1663: Unknown result type (might be due to invalid IL or missing references) //IL_1674: Unknown result type (might be due to invalid IL or missing references) //IL_1679: Unknown result type (might be due to invalid IL or missing references) //IL_1684: Unknown result type (might be due to invalid IL or missing references) //IL_1695: Unknown result type (might be due to invalid IL or missing references) //IL_169f: Unknown result type (might be due to invalid IL or missing references) //IL_16a4: Unknown result type (might be due to invalid IL or missing references) //IL_16af: Unknown result type (might be due to invalid IL or missing references) //IL_16b9: Unknown result type (might be due to invalid IL or missing references) //IL_16be: Unknown result type (might be due to invalid IL or missing references) //IL_16ca: Unknown result type (might be due to invalid IL or missing references) //IL_1385: Unknown result type (might be due to invalid IL or missing references) //IL_138a: Unknown result type (might be due to invalid IL or missing references) //IL_138f: Unknown result type (might be due to invalid IL or missing references) //IL_1394: Unknown result type (might be due to invalid IL or missing references) //IL_0b6f: Unknown result type (might be due to invalid IL or missing references) //IL_0b74: Unknown result type (might be due to invalid IL or missing references) //IL_0b79: Unknown result type (might be due to invalid IL or missing references) //IL_0b7e: Unknown result type (might be due to invalid IL or missing references) //IL_0673: Unknown result type (might be due to invalid IL or missing references) //IL_0678: Unknown result type (might be due to invalid IL or missing references) //IL_067d: Unknown result type (might be due to invalid IL or missing references) //IL_0682: Unknown result type (might be due to invalid IL or missing references) //IL_1747: Unknown result type (might be due to invalid IL or missing references) //IL_174d: Unknown result type (might be due to invalid IL or missing references) //IL_1752: Unknown result type (might be due to invalid IL or missing references) //IL_175d: Unknown result type (might be due to invalid IL or missing references) //IL_176e: Unknown result type (might be due to invalid IL or missing references) //IL_1778: Unknown result type (might be due to invalid IL or missing references) //IL_177d: Unknown result type (might be due to invalid IL or missing references) //IL_1788: Unknown result type (might be due to invalid IL or missing references) //IL_1792: Unknown result type (might be due to invalid IL or missing references) //IL_1797: Unknown result type (might be due to invalid IL or missing references) //IL_17a2: Unknown result type (might be due to invalid IL or missing references) //IL_17a8: Unknown result type (might be due to invalid IL or missing references) //IL_17ad: Unknown result type (might be due to invalid IL or missing references) //IL_17b8: Unknown result type (might be due to invalid IL or missing references) //IL_17c9: Unknown result type (might be due to invalid IL or missing references) //IL_17ce: Unknown result type (might be due to invalid IL or missing references) //IL_17d9: Unknown result type (might be due to invalid IL or missing references) //IL_17ea: Unknown result type (might be due to invalid IL or missing references) //IL_17f4: Unknown result type (might be due to invalid IL or missing references) //IL_17f9: Unknown result type (might be due to invalid IL or missing references) //IL_1804: Unknown result type (might be due to invalid IL or missing references) //IL_180e: Unknown result type (might be due to invalid IL or missing references) //IL_1813: Unknown result type (might be due to invalid IL or missing references) //IL_181f: Unknown result type (might be due to invalid IL or missing references) //IL_14a6: Unknown result type (might be due to invalid IL or missing references) //IL_14ab: Unknown result type (might be due to invalid IL or missing references) //IL_14b0: Unknown result type (might be due to invalid IL or missing references) //IL_14b5: Unknown result type (might be due to invalid IL or missing references) //IL_0c9f: Unknown result type (might be due to invalid IL or missing references) //IL_0ca4: Unknown result type (might be due to invalid IL or missing references) //IL_0ca9: Unknown result type (might be due to invalid IL or missing references) //IL_0cae: Unknown result type (might be due to invalid IL or missing references) //IL_07a3: Unknown result type (might be due to invalid IL or missing references) //IL_07a8: Unknown result type (might be due to invalid IL or missing references) //IL_07ad: Unknown result type (might be due to invalid IL or missing references) //IL_07b2: Unknown result type (might be due to invalid IL or missing references) //IL_189c: Unknown result type (might be due to invalid IL or missing references) //IL_18a2: Unknown result type (might be due to invalid IL or missing references) //IL_18a7: Unknown result type (might be due to invalid IL or missing references) //IL_18b2: Unknown result type (might be due to invalid IL or missing references) //IL_18c3: Unknown result type (might be due to invalid IL or missing references) //IL_18cd: Unknown result type (might be due to invalid IL or missing references) //IL_18d2: Unknown result type (might be due to invalid IL or missing references) //IL_18dd: Unknown result type (might be due to invalid IL or missing references) //IL_18e7: Unknown result type (might be due to invalid IL or missing references) //IL_18ec: Unknown result type (might be due to invalid IL or missing references) //IL_18f7: Unknown result type (might be due to invalid IL or missing references) //IL_18fd: Unknown result type (might be due to invalid IL or missing references) //IL_1902: Unknown result type (might be due to invalid IL or missing references) //IL_190d: Unknown result type (might be due to invalid IL or missing references) //IL_191e: Unknown result type (might be due to invalid IL or missing references) //IL_1923: Unknown result type (might be due to invalid IL or missing references) //IL_192e: Unknown result type (might be due to invalid IL or missing references) //IL_193f: Unknown result type (might be due to invalid IL or missing references) //IL_1949: Unknown result type (might be due to invalid IL or missing references) //IL_194e: Unknown result type (might be due to invalid IL or missing references) //IL_1959: Unknown result type (might be due to invalid IL or missing references) //IL_1963: Unknown result type (might be due to invalid IL or missing references) //IL_1968: Unknown result type (might be due to invalid IL or missing references) //IL_1974: Unknown result type (might be due to invalid IL or missing references) //IL_15c7: Unknown result type (might be due to invalid IL or missing references) //IL_15cc: Unknown result type (might be due to invalid IL or missing references) //IL_15d1: Unknown result type (might be due to invalid IL or missing references) //IL_15d6: Unknown result type (might be due to invalid IL or missing references) //IL_0dcf: Unknown result type (might be due to invalid IL or missing references) //IL_0dd4: Unknown result type (might be due to invalid IL or missing references) //IL_0dd9: Unknown result type (might be due to invalid IL or missing references) //IL_0dde: Unknown result type (might be due to invalid IL or missing references) //IL_19f1: Unknown result type (might be due to invalid IL or missing references) //IL_19f7: Unknown result type (might be due to invalid IL or missing references) //IL_19fc: Unknown result type (might be due to invalid IL or missing references) //IL_1a07: Unknown result type (might be due to invalid IL or missing references) //IL_1a18: Unknown result type (might be due to invalid IL or missing references) //IL_1a22: Unknown result type (might be due to invalid IL or missing references) //IL_1a27: Unknown result type (might be due to invalid IL or missing references) //IL_1a32: Unknown result type (might be due to invalid IL or missing references) //IL_1a3c: Unknown result type (might be due to invalid IL or missing references) //IL_1a41: Unknown result type (might be due to invalid IL or missing references) //IL_1a4c: Unknown result type (might be due to invalid IL or missing references) //IL_1a52: Unknown result type (might be due to invalid IL or missing references) //IL_1a57: Unknown result type (might be due to invalid IL or missing references) //IL_1a62: Unknown result type (might be due to invalid IL or missing references) //IL_1a73: Unknown result type (might be due to invalid IL or missing references) //IL_1a78: Unknown result type (might be due to invalid IL or missing references) //IL_1a83: Unknown result type (might be due to invalid IL or missing references) //IL_1a94: Unknown result type (might be due to invalid IL or missing references) //IL_1a9e: Unknown result type (might be due to invalid IL or missing references) //IL_1aa3: Unknown result type (might be due to invalid IL or missing references) //IL_1aae: Unknown result type (might be due to invalid IL or missing references) //IL_1ab8: Unknown result type (might be due to invalid IL or missing references) //IL_1abd: Unknown result type (might be due to invalid IL or missing references) //IL_1ac9: Unknown result type (might be due to invalid IL or missing references) //IL_171c: Unknown result type (might be due to invalid IL or missing references) //IL_1721: Unknown result type (might be due to invalid IL or missing references) //IL_1726: Unknown result type (might be due to invalid IL or missing references) //IL_172b: Unknown result type (might be due to invalid IL or missing references) //IL_0eff: Unknown result type (might be due to invalid IL or missing references) //IL_0f04: Unknown result type (might be due to invalid IL or missing references) //IL_0f09: Unknown result type (might be due to invalid IL or missing references) //IL_0f0e: Unknown result type (might be due to invalid IL or missing references) //IL_1b46: Unknown result type (might be due to invalid IL or missing references) //IL_1b4c: Unknown result type (might be due to invalid IL or missing references) //IL_1b51: Unknown result type (might be due to invalid IL or missing references) //IL_1b5c: Unknown result type (might be due to invalid IL or missing references) //IL_1b6d: Unknown result type (might be due to invalid IL or missing references) //IL_1b77: Unknown result type (might be due to invalid IL or missing references) //IL_1b7c: Unknown result type (might be due to invalid IL or missing references) //IL_1b87: Unknown result type (might be due to invalid IL or missing references) //IL_1b91: Unknown result type (might be due to invalid IL or missing references) //IL_1b96: Unknown result type (might be due to invalid IL or missing references) //IL_1ba1: Unknown result type (might be due to invalid IL or missing references) //IL_1ba7: Unknown result type (might be due to invalid IL or missing references) //IL_1bac: Unknown result type (might be due to invalid IL or missing references) //IL_1bb7: Unknown result type (might be due to invalid IL or missing references) //IL_1bc8: Unknown result type (might be due to invalid IL or missing references) //IL_1bcd: Unknown result type (might be due to invalid IL or missing references) //IL_1bd8: Unknown result type (might be due to invalid IL or missing references) //IL_1be9: Unknown result type (might be due to invalid IL or missing references) //IL_1bf3: Unknown result type (might be due to invalid IL or missing references) //IL_1bf8: Unknown result type (might be due to invalid IL or missing references) //IL_1c03: Unknown result type (might be due to invalid IL or missing references) //IL_1c0d: Unknown result type (might be due to invalid IL or missing references) //IL_1c12: Unknown result type (might be due to invalid IL or missing references) //IL_1c1e: Unknown result type (might be due to invalid IL or missing references) //IL_1871: Unknown result type (might be due to invalid IL or missing references) //IL_1876: Unknown result type (might be due to invalid IL or missing references) //IL_187b: Unknown result type (might be due to invalid IL or missing references) //IL_1880: Unknown result type (might be due to invalid IL or missing references) //IL_1c9b: Unknown result type (might be due to invalid IL or missing references) //IL_1ca1: Unknown result type (might be due to invalid IL or missing references) //IL_1ca6: Unknown result type (might be due to invalid IL or missing references) //IL_1cb1: Unknown result type (might be due to invalid IL or missing references) //IL_1cc2: Unknown result type (might be due to invalid IL or missing references) //IL_1ccc: Unknown result type (might be due to invalid IL or missing references) //IL_1cd1: Unknown result type (might be due to invalid IL or missing references) //IL_1cdc: Unknown result type (might be due to invalid IL or missing references) //IL_1ce6: Unknown result type (might be due to invalid IL or missing references) //IL_1ceb: Unknown result type (might be due to invalid IL or missing references) //IL_1cf6: Unknown result type (might be due to invalid IL or missing references) //IL_1cfc: Unknown result type (might be due to invalid IL or missing references) //IL_1d01: Unknown result type (might be due to invalid IL or missing references) //IL_1d0c: Unknown result type (might be due to invalid IL or missing references) //IL_1d1d: Unknown result type (might be due to invalid IL or missing references) //IL_1d22: Unknown result type (might be due to invalid IL or missing references) //IL_1d2d: Unknown result type (might be due to invalid IL or missing references) //IL_1d3e: Unknown result type (might be due to invalid IL or missing references) //IL_1d48: Unknown result type (might be due to invalid IL or missing references) //IL_1d4d: Unknown result type (might be due to invalid IL or missing references) //IL_1d58: Unknown result type (might be due to invalid IL or missing references) //IL_1d62: Unknown result type (might be due to invalid IL or missing references) //IL_1d67: Unknown result type (might be due to invalid IL or missing references) //IL_1d73: Unknown result type (might be due to invalid IL or missing references) //IL_19c6: Unknown result type (might be due to invalid IL or missing references) //IL_19cb: Unknown result type (might be due to invalid IL or missing references) //IL_19d0: Unknown result type (might be due to invalid IL or missing references) //IL_19d5: Unknown result type (might be due to invalid IL or missing references) //IL_1df0: Unknown result type (might be due to invalid IL or missing references) //IL_1df6: Unknown result type (might be due to invalid IL or missing references) //IL_1dfb: Unknown result type (might be due to invalid IL or missing references) //IL_1e06: Unknown result type (might be due to invalid IL or missing references) //IL_1e17: Unknown result type (might be due to invalid IL or missing references) //IL_1e21: Unknown result type (might be due to invalid IL or missing references) //IL_1e26: Unknown result type (might be due to invalid IL or missing references) //IL_1e31: Unknown result type (might be due to invalid IL or missing references) //IL_1e3b: Unknown result type (might be due to invalid IL or missing references) //IL_1e40: Unknown result type (might be due to invalid IL or missing references) //IL_1e4b: Unknown result type (might be due to invalid IL or missing references) //IL_1e51: Unknown result type (might be due to invalid IL or missing references) //IL_1e56: Unknown result type (might be due to invalid IL or missing references) //IL_1e61: Unknown result type (might be due to invalid IL or missing references) //IL_1e72: Unknown result type (might be due to invalid IL or missing references) //IL_1e77: Unknown result type (might be due to invalid IL or missing references) //IL_1e82: Unknown result type (might be due to invalid IL or missing references) //IL_1e93: Unknown result type (might be due to invalid IL or missing references) //IL_1e9d: Unknown result type (might be due to invalid IL or missing references) //IL_1ea2: Unknown result type (might be due to invalid IL or missing references) //IL_1ead: Unknown result type (might be due to invalid IL or missing references) //IL_1eb7: Unknown result type (might be due to invalid IL or missing references) //IL_1ebc: Unknown result type (might be due to invalid IL or missing references) //IL_1ec8: Unknown result type (might be due to invalid IL or missing references) //IL_1b1b: Unknown result type (might be due to invalid IL or missing references) //IL_1b20: Unknown result type (might be due to invalid IL or missing references) //IL_1b25: Unknown result type (might be due to invalid IL or missing references) //IL_1b2a: Unknown result type (might be due to invalid IL or missing references) //IL_1f45: Unknown result type (might be due to invalid IL or missing references) //IL_1f4b: Unknown result type (might be due to invalid IL or missing references) //IL_1f50: Unknown result type (might be due to invalid IL or missing references) //IL_1f5b: Unknown result type (might be due to invalid IL or missing references) //IL_1f6c: Unknown result type (might be due to invalid IL or missing references) //IL_1f76: Unknown result type (might be due to invalid IL or missing references) //IL_1f7b: Unknown result type (might be due to invalid IL or missing references) //IL_1f86: Unknown result type (might be due to invalid IL or missing references) //IL_1f90: Unknown result type (might be due to invalid IL or missing references) //IL_1f95: Unknown result type (might be due to invalid IL or missing references) //IL_1fa0: Unknown result type (might be due to invalid IL or missing references) //IL_1fa6: Unknown result type (might be due to invalid IL or missing references) //IL_1fab: Unknown result type (might be due to invalid IL or missing references) //IL_1fb6: Unknown result type (might be due to invalid IL or missing references) //IL_1fc7: Unknown result type (might be due to invalid IL or missing references) //IL_1fcc: Unknown result type (might be due to invalid IL or missing references) //IL_1fd7: Unknown result type (might be due to invalid IL or missing references) //IL_1fe8: Unknown result type (might be due to invalid IL or missing references) //IL_1ff2: Unknown result type (might be due to invalid IL or missing references) //IL_1ff7: Unknown result type (might be due to invalid IL or missing references) //IL_2002: Unknown result type (might be due to invalid IL or missing references) //IL_200c: Unknown result type (might be due to invalid IL or missing references) //IL_2011: Unknown result type (might be due to invalid IL or missing references) //IL_201d: Unknown result type (might be due to invalid IL or missing references) //IL_1c70: Unknown result type (might be due to invalid IL or missing references) //IL_1c75: Unknown result type (might be due to invalid IL or missing references) //IL_1c7a: Unknown result type (might be due to invalid IL or missing references) //IL_1c7f: Unknown result type (might be due to invalid IL or missing references) //IL_209a: Unknown result type (might be due to invalid IL or missing references) //IL_20a0: Unknown result type (might be due to invalid IL or missing references) //IL_20a5: Unknown result type (might be due to invalid IL or missing references) //IL_20b0: Unknown result type (might be due to invalid IL or missing references) //IL_20c1: Unknown result type (might be due to invalid IL or missing references) //IL_20cb: Unknown result type (might be due to invalid IL or missing references) //IL_20d0: Unknown result type (might be due to invalid IL or missing references) //IL_20db: Unknown result type (might be due to invalid IL or missing references) //IL_20e5: Unknown result type (might be due to invalid IL or missing references) //IL_20ea: Unknown result type (might be due to invalid IL or missing references) //IL_20f5: Unknown result type (might be due to invalid IL or missing references) //IL_20fb: Unknown result type (might be due to invalid IL or missing references) //IL_2100: Unknown result type (might be due to invalid IL or missing references) //IL_210b: Unknown result type (might be due to invalid IL or missing references) //IL_211c: Unknown result type (might be due to invalid IL or missing references) //IL_2121: Unknown result type (might be due to invalid IL or missing references) //IL_212c: Unknown result type (might be due to invalid IL or missing references) //IL_213d: Unknown result type (might be due to invalid IL or missing references) //IL_2147: Unknown result type (might be due to invalid IL or missing references) //IL_214c: Unknown result type (might be due to invalid IL or missing references) //IL_2157: Unknown result type (might be due to invalid IL or missing references) //IL_2161: Unknown result type (might be due to invalid IL or missing references) //IL_2166: Unknown result type (might be due to invalid IL or missing references) //IL_2172: Unknown result type (might be due to invalid IL or missing references) //IL_1dc5: Unknown result type (might be due to invalid IL or missing references) //IL_1dca: Unknown result type (might be due to invalid IL or missing references) //IL_1dcf: Unknown result type (might be due to invalid IL or missing references) //IL_1dd4: Unknown result type (might be due to invalid IL or missing references) //IL_21ef: Unknown result type (might be due to invalid IL or missing references) //IL_21f5: Unknown result type (might be due to invalid IL or missing references) //IL_21fa: Unknown result type (might be due to invalid IL or missing references) //IL_2205: Unknown result type (might be due to invalid IL or missing references) //IL_2216: Unknown result type (might be due to invalid IL or missing references) //IL_2220: Unknown result type (might be due to invalid IL or missing references) //IL_2225: Unknown result type (might be due to invalid IL or missing references) //IL_2230: Unknown result type (might be due to invalid IL or missing references) //IL_223a: Unknown result type (might be due to invalid IL or missing references) //IL_223f: Unknown result type (might be due to invalid IL or missing references) //IL_224a: Unknown result type (might be due to invalid IL or missing references) //IL_2250: Unknown result type (might be due to invalid IL or missing references) //IL_2255: Unknown result type (might be due to invalid IL or missing references) //IL_2260: Unknown result type (might be due to invalid IL or missing references) //IL_2271: Unknown result type (might be due to invalid IL or missing references) //IL_2276: Unknown result type (might be due to invalid IL or missing references) //IL_2281: Unknown result type (might be due to invalid IL or missing references) //IL_2292: Unknown result type (might be due to invalid IL or missing references) //IL_229c: Unknown result type (might be due to invalid IL or missing references) //IL_22a1: Unknown result type (might be due to invalid IL or missing references) //IL_22ac: Unknown result type (might be due to invalid IL or missing references) //IL_22b6: Unknown result type (might be due to invalid IL or missing references) //IL_22bb: Unknown result type (might be due to invalid IL or missing references) //IL_22c7: Unknown result type (might be due to invalid IL or missing references) //IL_1f1a: Unknown result type (might be due to invalid IL or missing references) //IL_1f1f: Unknown result type (might be due to invalid IL or missing references) //IL_1f24: Unknown result type (might be due to invalid IL or missing references) //IL_1f29: Unknown result type (might be due to invalid IL or missing references) //IL_2344: Unknown result type (might be due to invalid IL or missing references) //IL_234a: Unknown result type (might be due to invalid IL or missing references) //IL_234f: Unknown result type (might be due to invalid IL or missing references) //IL_235a: Unknown result type (might be due to invalid IL or missing references) //IL_236b: Unknown result type (might be due to invalid IL or missing references) //IL_2375: Unknown result type (might be due to invalid IL or missing references) //IL_237a: Unknown result type (might be due to invalid IL or missing references) //IL_2385: Unknown result type (might be due to invalid IL or missing references) //IL_238f: Unknown result type (might be due to invalid IL or missing references) //IL_2394: Unknown result type (might be due to invalid IL or missing references) //IL_239f: Unknown result type (might be due to invalid IL or missing references) //IL_23a5: Unknown result type (might be due to invalid IL or missing references) //IL_23aa: Unknown result type (might be due to invalid IL or missing references) //IL_23b5: Unknown result type (might be due to invalid IL or missing references) //IL_23c6: Unknown result type (might be due to invalid IL or missing references) //IL_23cb: Unknown result type (might be due to invalid IL or missing references) //IL_23d6: Unknown result type (might be due to invalid IL or missing references) //IL_23e7: Unknown result type (might be due to invalid IL or missing references) //IL_23f1: Unknown result type (might be due to invalid IL or missing references) //IL_23f6: Unknown result type (might be due to invalid IL or missing references) //IL_2401: Unknown result type (might be due to invalid IL or missing references) //IL_240b: Unknown result type (might be due to invalid IL or missing references) //IL_2410: Unknown result type (might be due to invalid IL or missing references) //IL_241c: Unknown result type (might be due to invalid IL or missing references) //IL_206f: Unknown result type (might be due to invalid IL or missing references) //IL_2074: Unknown result type (might be due to invalid IL or missing references) //IL_2079: Unknown result type (might be due to invalid IL or missing references) //IL_207e: Unknown result type (might be due to invalid IL or missing references) //IL_2499: Unknown result type (might be due to invalid IL or missing references) //IL_249f: Unknown result type (might be due to invalid IL or missing references) //IL_24a4: Unknown result type (might be due to invalid IL or missing references) //IL_24af: Unknown result type (might be due to invalid IL or missing references) //IL_24c0: Unknown result type (might be due to invalid IL or missing references) //IL_24ca: Unknown result type (might be due to invalid IL or missing references) //IL_24cf: Unknown result type (might be due to invalid IL or missing references) //IL_24da: Unknown result type (might be due to invalid IL or missing references) //IL_24e4: Unknown result type (might be due to invalid IL or missing references) //IL_24e9: Unknown result type (might be due to invalid IL or missing references) //IL_24f4: Unknown result type (might be due to invalid IL or missing references) //IL_24fa: Unknown result type (might be due to invalid IL or missing references) //IL_24ff: Unknown result type (might be due to invalid IL or missing references) //IL_250a: Unknown result type (might be due to invalid IL or missing references) //IL_251b: Unknown result type (might be due to invalid IL or missing references) //IL_2520: Unknown result type (might be due to invalid IL or missing references) //IL_252b: Unknown result type (might be due to invalid IL or missing references) //IL_253c: Unknown result type (might be due to invalid IL or missing references) //IL_2546: Unknown result type (might be due to invalid IL or missing references) //IL_254b: Unknown result type (might be due to invalid IL or missing references) //IL_2556: Unknown result type (might be due to invalid IL or missing references) //IL_2560: Unknown result type (might be due to invalid IL or missing references) //IL_2565: Unknown result type (might be due to invalid IL or missing references) //IL_2571: Unknown result type (might be due to invalid IL or missing references) //IL_21c4: Unknown result type (might be due to invalid IL or missing references) //IL_21c9: Unknown result type (might be due to invalid IL or missing references) //IL_21ce: Unknown result type (might be due to invalid IL or missing references) //IL_21d3: Unknown result type (might be due to invalid IL or missing references) //IL_25ee: Unknown result type (might be due to invalid IL or missing references) //IL_25f4: Unknown result type (might be due to invalid IL or missing references) //IL_25f9: Unknown result type (might be due to invalid IL or missing references) //IL_2604: Unknown result type (might be due to invalid IL or missing references) //IL_2615: Unknown result type (might be due to invalid IL or missing references) //IL_261f: Unknown result type (might be due to invalid IL or missing references) //IL_2624: Unknown result type (might be due to invalid IL or missing references) //IL_262f: Unknown result type (might be due to invalid IL or missing references) //IL_2639: Unknown result type (might be due to invalid IL or missing references) //IL_263e: Unknown result type (might be due to invalid IL or missing references) //IL_2649: Unknown result type (might be due to invalid IL or missing references) //IL_264f: Unknown result type (might be due to invalid IL or missing references) //IL_2654: Unknown result type (might be due to invalid IL or missing references) //IL_265f: Unknown result type (might be due to invalid IL or missing references) //IL_2670: Unknown result type (might be due to invalid IL or missing references) //IL_2675: Unknown result type (might be due to invalid IL or missing references) //IL_2680: Unknown result type (might be due to invalid IL or missing references) //IL_2691: Unknown result type (might be due to invalid IL or missing references) //IL_269b: Unknown result type (might be due to invalid IL or missing references) //IL_26a0: Unknown result type (might be due to invalid IL or missing references) //IL_26ab: Unknown result type (might be due to invalid IL or missing references) //IL_26b5: Unknown result type (might be due to invalid IL or missing references) //IL_26ba: Unknown result type (might be due to invalid IL or missing references) //IL_26c6: Unknown result type (might be due to invalid IL or missing references) //IL_2319: Unknown result type (might be due to invalid IL or missing references) //IL_231e: Unknown result type (might be due to invalid IL or missing references) //IL_2323: Unknown result type (might be due to invalid IL or missing references) //IL_2328: Unknown result type (might be due to invalid IL or missing references) //IL_2743: Unknown result type (might be due to invalid IL or missing references) //IL_2749: Unknown result type (might be due to invalid IL or missing references) //IL_274e: Unknown result type (might be due to invalid IL or missing references) //IL_2759: Unknown result type (might be due to invalid IL or missing references) //IL_276a: Unknown result type (might be due to invalid IL or missing references) //IL_2774: Unknown result type (might be due to invalid IL or missing references) //IL_2779: Unknown result type (might be due to invalid IL or missing references) //IL_2784: Unknown result type (might be due to invalid IL or missing references) //IL_278e: Unknown result type (might be due to invalid IL or missing references) //IL_2793: Unknown result type (might be due to invalid IL or missing references) //IL_279e: Unknown result type (might be due to invalid IL or missing references) //IL_27a4: Unknown result type (might be due to invalid IL or missing references) //IL_27a9: Unknown result type (might be due to invalid IL or missing references) //IL_27b4: Unknown result type (might be due to invalid IL or missing references) //IL_27c5: Unknown result type (might be due to invalid IL or missing references) //IL_27ca: Unknown result type (might be due to invalid IL or missing references) //IL_27d5: Unknown result type (might be due to invalid IL or missing references) //IL_27e6: Unknown result type (might be due to invalid IL or missing references) //IL_27f0: Unknown result type (might be due to invalid IL or missing references) //IL_27f5: Unknown result type (might be due to invalid IL or missing references) //IL_2800: Unknown result type (might be due to invalid IL or missing references) //IL_280a: Unknown result type (might be due to invalid IL or missing references) //IL_280f: Unknown result type (might be due to invalid IL or missing references) //IL_281b: Unknown result type (might be due to invalid IL or missing references) //IL_246e: Unknown result type (might be due to invalid IL or missing references) //IL_2473: Unknown result type (might be due to invalid IL or missing references) //IL_2478: Unknown result type (might be due to invalid IL or missing references) //IL_247d: Unknown result type (might be due to invalid IL or missing references) //IL_2898: Unknown result type (might be due to invalid IL or missing references) //IL_289e: Unknown result type (might be due to invalid IL or missing references) //IL_28a3: Unknown result type (might be due to invalid IL or missing references) //IL_28ae: Unknown result type (might be due to invalid IL or missing references) //IL_28bf: Unknown result type (might be due to invalid IL or missing references) //IL_28c9: Unknown result type (might be due to invalid IL or missing references) //IL_28ce: Unknown result type (might be due to invalid IL or missing references) //IL_28d9: Unknown result type (might be due to invalid IL or missing references) //IL_28e3: Unknown result type (might be due to invalid IL or missing references) //IL_28e8: Unknown result type (might be due to invalid IL or missing references) //IL_28f3: Unknown result type (might be due to invalid IL or missing references) //IL_28f9: Unknown result type (might be due to invalid IL or missing references) //IL_28fe: Unknown result type (might be due to invalid IL or missing references) //IL_2909: Unknown result type (might be due to invalid IL or missing references) //IL_291a: Unknown result type (might be due to invalid IL or missing references) //IL_291f: Unknown result type (might be due to invalid IL or missing references) //IL_292a: Unknown result type (might be due to invalid IL or missing references) //IL_293b: Unknown result type (might be due to invalid IL or missing references) //IL_2945: Unknown result type (might be due to invalid IL or missing references) //IL_294a: Unknown result type (might be due to invalid IL or missing references) //IL_2955: Unknown result type (might be due to invalid IL or missing references) //IL_295f: Unknown result type (might be due to invalid IL or missing references) //IL_2964: Unknown result type (might be due to invalid IL or missing references) //IL_2970: Unknown result type (might be due to invalid IL or missing references) //IL_25c3: Unknown result type (might be due to invalid IL or missing references) //IL_25c8: Unknown result type (might be due to invalid IL or missing references) //IL_25cd: Unknown result type (might be due to invalid IL or missing references) //IL_25d2: Unknown result type (might be due to invalid IL or missing references) //IL_29ed: Unknown result type (might be due to invalid IL or missing references) //IL_29f3: Unknown result type (might be due to invalid IL or missing references) //IL_29f8: Unknown result type (might be due to invalid IL or missing references) //IL_2a03: Unknown result type (might be due to invalid IL or missing references) //IL_2a14: Unknown result type (might be due to invalid IL or missing references) //IL_2a1e: Unknown result type (might be due to invalid IL or missing references) //IL_2a23: Unknown result type (might be due to invalid IL or missing references) //IL_2a2e: Unknown result type (might be due to invalid IL or missing references) //IL_2a38: Unknown result type (might be due to invalid IL or missing references) //IL_2a3d: Unknown result type (might be due to invalid IL or missing references) //IL_2a48: Unknown result type (might be due to invalid IL or missing references) //IL_2a4e: Unknown result type (might be due to invalid IL or missing references) //IL_2a53: Unknown result type (might be due to invalid IL or missing references) //IL_2a5e: Unknown result type (might be due to invalid IL or missing references) //IL_2a6f: Unknown result type (might be due to invalid IL or missing references) //IL_2a74: Unknown result type (might be due to invalid IL or missing references) //IL_2a7f: Unknown result type (might be due to invalid IL or missing references) //IL_2a90: Unknown result type (might be due to invalid IL or missing references) //IL_2a9a: Unknown result type (might be due to invalid IL or missing references) //IL_2a9f: Unknown result type (might be due to invalid IL or missing references) //IL_2aaa: Unknown result type (might be due to invalid IL or missing references) //IL_2ab4: Unknown result type (might be due to invalid IL or missing references) //IL_2ab9: Unknown result type (might be due to invalid IL or missing references) //IL_2ac5: Unknown result type (might be due to invalid IL or missing references) //IL_2718: Unknown result type (might be due to invalid IL or missing references) //IL_271d: Unknown result type (might be due to invalid IL or missing references) //IL_2722: Unknown result type (might be due to invalid IL or missing references) //IL_2727: Unknown result type (might be due to invalid IL or missing references) //IL_2b42: Unknown result type (might be due to invalid IL or missing references) //IL_2b48: Unknown result type (might be due to invalid IL or missing references) //IL_2b4d: Unknown result type (might be due to invalid IL or missing references) //IL_2b58: Unknown result type (might be due to invalid IL or missing references) //IL_2b69: Unknown result type (might be due to invalid IL or missing references) //IL_2b73: Unknown result type (might be due to invalid IL or missing references) //IL_2b78: Unknown result type (might be due to invalid IL or missing references) //IL_2b83: Unknown result type (might be due to invalid IL or missing references) //IL_2b8d: Unknown result type (might be due to invalid IL or missing references) //IL_2b92: Unknown result type (might be due to invalid IL or missing references) //IL_2b9d: Unknown result type (might be due to invalid IL or missing references) //IL_2ba3: Unknown result type (might be due to invalid IL or missing references) //IL_2ba8: Unknown result type (might be due to invalid IL or missing references) //IL_2bb3: Unknown result type (might be due to invalid IL or missing references) //IL_2bc4: Unknown result type (might be due to invalid IL or missing references) //IL_2bc9: Unknown result type (might be due to invalid IL or missing references) //IL_2bd4: Unknown result type (might be due to invalid IL or missing references) //IL_2be5: Unknown result type (might be due to invalid IL or missing references) //IL_2bef: Unknown result type (might be due to invalid IL or missing references) //IL_2bf4: Unknown result type (might be due to invalid IL or missing references) //IL_2bff: Unknown result type (might be due to invalid IL or missing references) //IL_2c09: Unknown result type (might be due to invalid IL or missing references) //IL_2c0e: Unknown result type (might be due to invalid IL or missing references) //IL_2c1a: Unknown result type (might be due to invalid IL or missing references) //IL_286d: Unknown result type (might be due to invalid IL or missing references) //IL_2872: Unknown result type (might be due to invalid IL or missing references) //IL_2877: Unknown result type (might be due to invalid IL or missing references) //IL_287c: Unknown result type (might be due to invalid IL or missing references) //IL_2c97: Unknown result type (might be due to invalid IL or missing references) //IL_2c9d: Unknown result type (might be due to invalid IL or missing references) //IL_2ca2: Unknown result type (might be due to invalid IL or missing references) //IL_2cad: Unknown result type (might be due to invalid IL or missing references) //IL_2cbe: Unknown result type (might be due to invalid IL or missing references) //IL_2cc8: Unknown result type (might be due to invalid IL or missing references) //IL_2ccd: Unknown result type (might be due to invalid IL or missing references) //IL_2cd8: Unknown result type (might be due to invalid IL or missing references) //IL_2ce2: Unknown result type (might be due to invalid IL or missing references) //IL_2ce7: Unknown result type (might be due to invalid IL or missing references) //IL_2cf2: Unknown result type (might be due to invalid IL or missing references) //IL_2cf8: Unknown result type (might be due to invalid IL or missing references) //IL_2cfd: Unknown result type (might be due to invalid IL or missing references) //IL_2d08: Unknown result type (might be due to invalid IL or missing references) //IL_2d19: Unknown result type (might be due to invalid IL or missing references) //IL_2d1e: Unknown result type (might be due to invalid IL or missing references) //IL_2d29: Unknown result type (might be due to invalid IL or missing references) //IL_2d3a: Unknown result type (might be due to invalid IL or missing references) //IL_2d44: Unknown result type (might be due to invalid IL or missing references) //IL_2d49: Unknown result type (might be due to invalid IL or missing references) //IL_2d54: Unknown result type (might be due to invalid IL or missing references) //IL_2d5e: Unknown result type (might be due to invalid IL or missing references) //IL_2d63: Unknown result type (might be due to invalid IL or missing references) //IL_2d6f: Unknown result type (might be due to invalid IL or missing references) //IL_29c2: Unknown result type (might be due to invalid IL or missing references) //IL_29c7: Unknown result type (might be due to invalid IL or missing references) //IL_29cc: Unknown result type (might be due to invalid IL or missing references) //IL_29d1: Unknown result type (might be due to invalid IL or missing references) //IL_2dec: Unknown result type (might be due to invalid IL or missing references) //IL_2df2: Unknown result type (might be due to invalid IL or missing references) //IL_2df7: Unknown result type (might be due to invalid IL or missing references) //IL_2e02: Unknown result type (might be due to invalid IL or missing references) //IL_2e13: Unknown result type (might be due to invalid IL or missing references) //IL_2e1d: Unknown result type (might be due to invalid IL or missing references) //IL_2e22: Unknown result type (might be due to invalid IL or missing references) //IL_2e2d: Unknown result type (might be due to invalid IL or missing references) //IL_2e37: Unknown result type (might be due to invalid IL or missing references) //IL_2e3c: Unknown result type (might be due to invalid IL or missing references) //IL_2e47: Unknown result type (might be due to invalid IL or missing references) //IL_2e4d: Unknown result type (might be due to invalid IL or missing references) //IL_2e52: Unknown result type (might be due to invalid IL or missing references) //IL_2e5d: Unknown result type (might be due to invalid IL or missing references) //IL_2e6e: Unknown result type (might be due to invalid IL or missing references) //IL_2e73: Unknown result type (might be due to invalid IL or missing references) //IL_2e7e: Unknown result type (might be due to invalid IL or missing references) //IL_2e8f: Unknown result type (might be due to invalid IL or missing references) //IL_2e99: Unknown result type (might be due to invalid IL or missing references) //IL_2e9e: Unknown result type (might be due to invalid IL or missing references) //IL_2ea9: Unknown result type (might be due to invalid IL or missing references) //IL_2eb3: Unknown result type (might be due to invalid IL or missing references) //IL_2eb8: Unknown result type (might be due to invalid IL or missing references) //IL_2ec4: Unknown result type (might be due to invalid IL or missing references) //IL_2b17: Unknown result type (might be due to invalid IL or missing references) //IL_2b1c: Unknown result type (might be due to invalid IL or missing references) //IL_2b21: Unknown result type (might be due to invalid IL or missing references) //IL_2b26: Unknown result type (might be due to invalid IL or missing references) //IL_2f41: Unknown result type (might be due to invalid IL or missing references) //IL_2f47: Unknown result type (might be due to invalid IL or missing references) //IL_2f4c: Unknown result type (might be due to invalid IL or missing references) //IL_2f57: Unknown result type (might be due to invalid IL or missing references) //IL_2f68: Unknown result type (might be due to invalid IL or missing references) //IL_2f72: Unknown result type (might be due to invalid IL or missing references) //IL_2f77: Unknown result type (might be due to invalid IL or missing references) //IL_2f82: Unknown result type (might be due to invalid IL or missing references) //IL_2f8c: Unknown result type (might be due to invalid IL or missing references) //IL_2f91: Unknown result type (might be due to invalid IL or missing references) //IL_2f9c: Unknown result type (might be due to invalid IL or missing references) //IL_2fa2: Unknown result type (might be due to invalid IL or missing references) //IL_2fa7: Unknown result type (might be due to invalid IL or missing references) //IL_2fb2: Unknown result type (might be due to invalid IL or missing references) //IL_2fc3: Unknown result type (might be due to invalid IL or missing references) //IL_2fc8: Unknown result type (might be due to invalid IL or missing references) //IL_2fd3: Unknown result type (might be due to invalid IL or missing references) //IL_2fe4: Unknown result type (might be due to invalid IL or missing references) //IL_2fee: Unknown result type (might be due to invalid IL or missing references) //IL_2ff3: Unknown result type (might be due to invalid IL or missing references) //IL_2ffe: Unknown result type (might be due to invalid IL or missing references) //IL_3008: Unknown result type (might be due to invalid IL or missing references) //IL_300d: Unknown result type (might be due to invalid IL or missing references) //IL_3019: Unknown result type (might be due to invalid IL or missing references) //IL_2c6c: Unknown result type (might be due to invalid IL or missing references) //IL_2c71: Unknown result type (might be due to invalid IL or missing references) //IL_2c76: Unknown result type (might be due to invalid IL or missing references) //IL_2c7b: Unknown result type (might be due to invalid IL or missing references) //IL_3096: Unknown result type (might be due to invalid IL or missing references) //IL_309c: Unknown result type (might be due to invalid IL or missing references) //IL_30a1: Unknown result type (might be due to invalid IL or missing references) //IL_30ac: Unknown result type (might be due to invalid IL or missing references) //IL_30bd: Unknown result type (might be due to invalid IL or missing references) //IL_30c7: Unknown result type (might be due to invalid IL or missing references) //IL_30cc: Unknown result type (might be due to invalid IL or missing references) //IL_30d7: Unknown result type (might be due to invalid IL or missing references) //IL_30e1: Unknown result type (might be due to invalid IL or missing references) //IL_30e6: Unknown result type (might be due to invalid IL or missing references) //IL_30f1: Unknown result type (might be due to invalid IL or missing references) //IL_30f7: Unknown result type (might be due to invalid IL or missing references) //IL_30fc: Unknown result type (might be due to invalid IL or missing references) //IL_3107: Unknown result type (might be due to invalid IL or missing references) //IL_3118: Unknown result type (might be due to invalid IL or missing references) //IL_311d: Unknown result type (might be due to invalid IL or missing references) //IL_3128: Unknown result type (might be due to invalid IL or missing references) //IL_3139: Unknown result type (might be due to invalid IL or missing references) //IL_3143: Unknown result type (might be due to invalid IL or missing references) //IL_3148: Unknown result type (might be due to invalid IL or missing references) //IL_3153: Unknown result type (might be due to invalid IL or missing references) //IL_315d: Unknown result type (might be due to invalid IL or missing references) //IL_3162: Unknown result type (might be due to invalid IL or missing references) //IL_316e: Unknown result type (might be due to invalid IL or missing references) //IL_2dc1: Unknown result type (might be due to invalid IL or missing references) //IL_2dc6: Unknown result type (might be due to invalid IL or missing references) //IL_2dcb: Unknown result type (might be due to invalid IL or missing references) //IL_2dd0: Unknown result type (might be due to invalid IL or missing references) //IL_31eb: Unknown result type (might be due to invalid IL or missing references) //IL_31f1: Unknown result type (might be due to invalid IL or missing references) //IL_31f6: Unknown result type (might be due to invalid IL or missing references) //IL_3201: Unknown result type (might be due to invalid IL or missing references) //IL_3212: Unknown result type (might be due to invalid IL or missing references) //IL_321c: Unknown result type (might be due to invalid IL or missing references) //IL_3221: Unknown result type (might be due to invalid IL or missing references) //IL_322c: Unknown result type (might be due to invalid IL or missing references) //IL_3236: Unknown result type (might be due to invalid IL or missing references) //IL_323b: Unknown result type (might be due to invalid IL or missing references) //IL_3246: Unknown result type (might be due to invalid IL or missing references) //IL_324c: Unknown result type (might be due to invalid IL or missing references) //IL_3251: Unknown result type (might be due to invalid IL or missing references) //IL_325c: Unknown result type (might be due to invalid IL or missing references) //IL_326d: Unknown result type (might be due to invalid IL or missing references) //IL_3272: Unknown result type (might be due to invalid IL or missing references) //IL_327d: Unknown result type (might be due to invalid IL or missing references) //IL_328e: Unknown result type (might be due to invalid IL or missing references) //IL_3298: Unknown result type (might be due to invalid IL or missing references) //IL_329d: Unknown result type (might be due to invalid IL or missing references) //IL_32a8: Unknown result type (might be due to invalid IL or missing references) //IL_32b2: Unknown result type (might be due to invalid IL or missing references) //IL_32b7: Unknown result type (might be due to invalid IL or missing references) //IL_32c3: Unknown result type (might be due to invalid IL or missing references) //IL_2f16: Unknown result type (might be due to invalid IL or missing references) //IL_2f1b: Unknown result type (might be due to invalid IL or missing references) //IL_2f20: Unknown result type (might be due to invalid IL or missing references) //IL_2f25: Unknown result type (might be due to invalid IL or missing references) //IL_3340: Unknown result type (might be due to invalid IL or missing references) //IL_3346: Unknown result type (might be due to invalid IL or missing references) //IL_334b: Unknown result type (might be due to invalid IL or missing references) //IL_3356: Unknown result type (might be due to invalid IL or missing references) //IL_3367: Unknown result type (might be due to invalid IL or missing references) //IL_3371: Unknown result type (might be due to invalid IL or missing references) //IL_3376: Unknown result type (might be due to invalid IL or missing references) //IL_3381: Unknown result type (might be due to invalid IL or missing references) //IL_338b: Unknown result type (might be due to invalid IL or missing references) //IL_3390: Unknown result type (might be due to invalid IL or missing references) //IL_339b: Unknown result type (might be due to invalid IL or missing references) //IL_33a1: Unknown result type (might be due to invalid IL or missing references) //IL_33a6: Unknown result type (might be due to invalid IL or missing references) //IL_33b1: Unknown result type (might be due to invalid IL or missing references) //IL_33c2: Unknown result type (might be due to invalid IL or missing references) //IL_33c7: Unknown result type (might be due to invalid IL or missing references) //IL_33d2: Unknown result type (might be due to invalid IL or missing references) //IL_33e3: Unknown result type (might be due to invalid IL or missing references) //IL_33ed: Unknown result type (might be due to invalid IL or missing references) //IL_33f2: Unknown result type (might be due to invalid IL or missing references) //IL_33fd: Unknown result type (might be due to invalid IL or missing references) //IL_3407: Unknown result type (might be due to invalid IL or missing references) //IL_340c: Unknown result type (might be due to invalid IL or missing references) //IL_3418: Unknown result type (might be due to invalid IL or missing references) //IL_306b: Unknown result type (might be due to invalid IL or missing references) //IL_3070: Unknown result type (might be due to invalid IL or missing references) //IL_3075: Unknown result type (might be due to invalid IL or missing references) //IL_307a: Unknown result type (might be due to invalid IL or missing references) //IL_3495: Unknown result type (might be due to invalid IL or missing references) //IL_349b: Unknown result type (might be due to invalid IL or missing references) //IL_34a0: Unknown result type (might be due to invalid IL or missing references) //IL_34ab: Unknown result type (might be due to invalid IL or missing references) //IL_34bc: Unknown result type (might be due to invalid IL or missing references) //IL_34c6: Unknown result type (might be due to invalid IL or missing references) //IL_34cb: Unknown result type (might be due to invalid IL or missing references) //IL_34d6: Unknown result type (might be due to invalid IL or missing references) //IL_34e0: Unknown result type (might be due to invalid IL or missing references) //IL_34e5: Unknown result type (might be due to invalid IL or missing references) //IL_34f0: Unknown result type (might be due to invalid IL or missing references) //IL_34f6: Unknown result type (might be due to invalid IL or missing references) //IL_34fb: Unknown result type (might be due to invalid IL or missing references) //IL_3506: Unknown result type (might be due to invalid IL or missing references) //IL_3517: Unknown result type (might be due to invalid IL or missing references) //IL_351c: Unknown result type (might be due to invalid IL or missing references) //IL_3527: Unknown result type (might be due to invalid IL or missing references) //IL_3538: Unknown result type (might be due to invalid IL or missing references) //IL_3542: Unknown result type (might be due to invalid IL or missing references) //IL_3547: Unknown result type (might be due to invalid IL or missing references) //IL_3552: Unknown result type (might be due to invalid IL or missing references) //IL_355c: Unknown result type (might be due to invalid IL or missing references) //IL_3561: Unknown result type (might be due to invalid IL or missing references) //IL_356d: Unknown result type (might be due to invalid IL or missing references) //IL_31c0: Unknown result type (might be due to invalid IL or missing references) //IL_31c5: Unknown result type (might be due to invalid IL or missing references) //IL_31ca: Unknown result type (might be due to invalid IL or missing references) //IL_31cf: Unknown result type (might be due to invalid IL or missing references) //IL_3315: Unknown result type (might be due to invalid IL or missing references) //IL_331a: Unknown result type (might be due to invalid IL or missing references) //IL_331f: Unknown result type (might be due to invalid IL or missing references) //IL_3324: Unknown result type (might be due to invalid IL or missing references) //IL_346a: Unknown result type (might be due to invalid IL or missing references) //IL_346f: Unknown result type (might be due to invalid IL or missing references) //IL_3474: Unknown result type (might be due to invalid IL or missing references) //IL_3479: Unknown result type (might be due to invalid IL or missing references) //IL_35bf: Unknown result type (might be due to invalid IL or missing references) //IL_35c4: Unknown result type (might be due to invalid IL or missing references) //IL_35c9: Unknown result type (might be due to invalid IL or missing references) //IL_35ce: Unknown result type (might be due to invalid IL or missing references) if (currentlyClimbingWall && !pullingUp) { if (((((Component)this).transform.rotation == lastRot3 || axisChanged) && (climbingMovement > 0f || Input.GetAxis("Horizontal") != 0f)) || hasNotMovedOnWallYet) { if ((Input.GetAxis("Horizontal") > 0f || ((Component)this).transform.rotation != lastRot2) && wallIsClimbable) { if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.right / 3f + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { if (Input.GetAxis("Horizontal") > 0f) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 4f; } } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.right / 3f + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { if (Input.GetAxis("Horizontal") > 0f) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 4f; } } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.right / 3f + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { if (Input.GetAxis("Horizontal") > 0f) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 4f; } } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.right / 3f + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { if (Input.GetAxis("Horizontal") > 0f) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 4f; } } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.right / 3f + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { if (Input.GetAxis("Horizontal") > 0f) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 4f; } } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.right / 3f + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Input.GetAxis("Horizontal") > 0f) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 4f; } } else if ((Input.GetAxis("Horizontal") < 0f || ((Component)this).transform.rotation != lastRot2) && wallIsClimbable) { if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 - ((Component)this).transform.right / 3f + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { if (Input.GetAxis("Horizontal") < 0f) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 4f; } } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 - ((Component)this).transform.right / 3f + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { if (Input.GetAxis("Horizontal") < 0f) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 4f; } } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 - ((Component)this).transform.right / 3f + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { if (Input.GetAxis("Horizontal") < 0f) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 4f; } } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 - ((Component)this).transform.right / 3f + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { if (Input.GetAxis("Horizontal") < 0f) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 4f; } } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 - ((Component)this).transform.right / 3f + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { if (Input.GetAxis("Horizontal") < 0f) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 4f; } } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 - ((Component)this).transform.right / 3f + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Input.GetAxis("Horizontal") < 0f) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 4f; } } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 1f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 1f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 1f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 1f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 1f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 1f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f + ((Component)this).transform.right / 4.5f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f + ((Component)this).transform.right / 4.5f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 1f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f + ((Component)this).transform.right / 4.5f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f + ((Component)this).transform.right / 4.5f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 1f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f + ((Component)this).transform.right / 4.5f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f + ((Component)this).transform.right / 4.5f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 1f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f + ((Component)this).transform.right / 4.5f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f + ((Component)this).transform.right / 4.5f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 1f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f + ((Component)this).transform.right / 4.5f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f + ((Component)this).transform.right / 4.5f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 1f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f + ((Component)this).transform.right / 4.5f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f + ((Component)this).transform.right / 4.5f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 1f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f - ((Component)this).transform.right / 4.5f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f - ((Component)this).transform.right / 4.5f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 1f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f - ((Component)this).transform.right / 4.5f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f - ((Component)this).transform.right / 4.5f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 1f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f - ((Component)this).transform.right / 4.5f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f - ((Component)this).transform.right / 4.5f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 1f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f - ((Component)this).transform.right / 4.5f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f - ((Component)this).transform.right / 4.5f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 1f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f - ((Component)this).transform.right / 4.5f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f - ((Component)this).transform.right / 4.5f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 1f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f - ((Component)this).transform.right / 4.5f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f - ((Component)this).transform.right / 4.5f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 1f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f + ((Component)this).transform.right / 2f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f - ((Component)this).transform.right / 2f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 2f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f + ((Component)this).transform.right / 2f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f - ((Component)this).transform.right / 2f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 2f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f + ((Component)this).transform.right / 2f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f - ((Component)this).transform.right / 2f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 2f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f + ((Component)this).transform.right / 2f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f - ((Component)this).transform.right / 2f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 2f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f + ((Component)this).transform.right / 2f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f - ((Component)this).transform.right / 2f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 2f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f + ((Component)this).transform.right / 2f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f - ((Component)this).transform.right / 2f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 2f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f - ((Component)this).transform.right / 2f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f + ((Component)this).transform.right / 2f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 3f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f - ((Component)this).transform.right / 2f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f + ((Component)this).transform.right / 2f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 3f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f - ((Component)this).transform.right / 2f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f + ((Component)this).transform.right / 2f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 3f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f - ((Component)this).transform.right / 2f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f + ((Component)this).transform.right / 2f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 3f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f - ((Component)this).transform.right / 2f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f + ((Component)this).transform.right / 2f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 3f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f - ((Component)this).transform.right / 2f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f + ((Component)this).transform.right / 2f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 3f; } else if (noCollisionTimer >= 5f && !wallIsClimbable) { currentlyClimbingWall = false; } if (climbingMovement > 0f || Input.GetAxis("Horizontal") != 0f || Input.GetAxis("Vertical") != 0f) { hasNotMovedOnWallYet = false; } } if ((Input.GetAxis("Horizontal") > 0f && horizontalAxis <= 0f) || (Input.GetAxis("Horizontal") < 0f && horizontalAxis >= 0f)) { axisChanged = true; } else { axisChanged = false; } horizontalAxis = Input.GetAxis("Horizontal"); lastRot3 = ((Component)this).transform.rotation; if (rotationState != 0f) { if (!finishedRotatingToWall) { ((Component)this).transform.rotation = Quaternion.Slerp(((Component)this).transform.rotation, rotationNormal, rotationToClimbableObjectSpeed2 * 2f * Time.deltaTime); } else { ((Component)this).transform.rotation = Quaternion.Slerp(((Component)this).transform.rotation, rotationNormal, climbRotationSpeed2 * Time.deltaTime); } } if (stayUpright2) { ((Component)this).transform.eulerAngles = new Vector3(0f, ((Component)this).transform.eulerAngles.y, 0f); } } else { lastYPosOnWall = 0f; climbingHeight = ((Component)this).transform.position.y; hasNotMovedOnWallYet = true; } } private void CheckIfStuck() { //IL_0aff: Unknown result type (might be due to invalid IL or missing references) //IL_0b04: Unknown result type (might be due to invalid IL or missing references) //IL_0013: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003e: Unknown result type (might be due to invalid IL or missing references) //IL_0049: Unknown result type (might be due to invalid IL or missing references) //IL_004e: Unknown result type (might be due to invalid IL or missing references) //IL_005a: Unknown result type (might be due to invalid IL or missing references) //IL_0160: Unknown result type (might be due to invalid IL or missing references) //IL_0165: Unknown result type (might be due to invalid IL or missing references) //IL_0178: Unknown result type (might be due to invalid IL or missing references) //IL_017d: Unknown result type (might be due to invalid IL or missing references) //IL_0185: Unknown result type (might be due to invalid IL or missing references) //IL_0190: Unknown result type (might be due to invalid IL or missing references) //IL_0195: Unknown result type (might be due to invalid IL or missing references) //IL_01a8: Unknown result type (might be due to invalid IL or missing references) //IL_01ad: Unknown result type (might be due to invalid IL or missing references) //IL_01b5: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_0089: Unknown result type (might be due to invalid IL or missing references) //IL_008e: Unknown result type (might be due to invalid IL or missing references) //IL_0099: Unknown result type (might be due to invalid IL or missing references) //IL_00a4: Unknown result type (might be due to invalid IL or missing references) //IL_00a9: Unknown result type (might be due to invalid IL or missing references) //IL_00b4: Unknown result type (might be due to invalid IL or missing references) //IL_00be: Unknown result type (might be due to invalid IL or missing references) //IL_00c3: Unknown result type (might be due to invalid IL or missing references) //IL_00cf: Unknown result type (might be due to invalid IL or missing references) //IL_00e9: Unknown result type (might be due to invalid IL or missing references) //IL_00f4: Unknown result type (might be due to invalid IL or missing references) //IL_00fe: Unknown result type (might be due to invalid IL or missing references) //IL_0103: Unknown result type (might be due to invalid IL or missing references) //IL_010e: Unknown result type (might be due to invalid IL or missing references) //IL_0119: Unknown result type (might be due to invalid IL or missing references) //IL_011e: Unknown result type (might be due to invalid IL or missing references) //IL_0129: Unknown result type (might be due to invalid IL or missing references) //IL_0133: Unknown result type (might be due to invalid IL or missing references) //IL_0138: Unknown result type (might be due to invalid IL or missing references) //IL_0144: Unknown result type (might be due to invalid IL or missing references) //IL_0aed: Unknown result type (might be due to invalid IL or missing references) //IL_0af2: Unknown result type (might be due to invalid IL or missing references) //IL_0229: Unknown result type (might be due to invalid IL or missing references) //IL_0234: Unknown result type (might be due to invalid IL or missing references) //IL_023e: Unknown result type (might be due to invalid IL or missing references) //IL_0243: Unknown result type (might be due to invalid IL or missing references) //IL_03a6: Unknown result type (might be due to invalid IL or missing references) //IL_03ac: Unknown result type (might be due to invalid IL or missing references) //IL_0667: Unknown result type (might be due to invalid IL or missing references) //IL_066d: Unknown result type (might be due to invalid IL or missing references) //IL_0682: Unknown result type (might be due to invalid IL or missing references) //IL_0687: Unknown result type (might be due to invalid IL or missing references) //IL_03d3: Unknown result type (might be due to invalid IL or missing references) //IL_03de: Unknown result type (might be due to invalid IL or missing references) //IL_03e3: Unknown result type (might be due to invalid IL or missing references) //IL_03ee: Unknown result type (might be due to invalid IL or missing references) //IL_03f9: Unknown result type (might be due to invalid IL or missing references) //IL_0403: Unknown result type (might be due to invalid IL or missing references) //IL_0408: Unknown result type (might be due to invalid IL or missing references) //IL_0413: Unknown result type (might be due to invalid IL or missing references) //IL_0418: Unknown result type (might be due to invalid IL or missing references) //IL_0424: Unknown result type (might be due to invalid IL or missing references) //IL_053e: Unknown result type (might be due to invalid IL or missing references) //IL_0543: Unknown result type (might be due to invalid IL or missing references) //IL_0557: Unknown result type (might be due to invalid IL or missing references) //IL_055c: Unknown result type (might be due to invalid IL or missing references) //IL_0565: Unknown result type (might be due to invalid IL or missing references) //IL_0570: Unknown result type (might be due to invalid IL or missing references) //IL_0575: Unknown result type (might be due to invalid IL or missing references) //IL_0589: Unknown result type (might be due to invalid IL or missing references) //IL_058e: Unknown result type (might be due to invalid IL or missing references) //IL_0597: Unknown result type (might be due to invalid IL or missing references) //IL_043e: Unknown result type (might be due to invalid IL or missing references) //IL_0449: Unknown result type (might be due to invalid IL or missing references) //IL_0453: Unknown result type (might be due to invalid IL or missing references) //IL_0458: Unknown result type (might be due to invalid IL or missing references) //IL_0463: Unknown result type (might be due to invalid IL or missing references) //IL_046e: Unknown result type (might be due to invalid IL or missing references) //IL_0478: Unknown result type (might be due to invalid IL or missing references) //IL_047d: Unknown result type (might be due to invalid IL or missing references) //IL_0488: Unknown result type (might be due to invalid IL or missing references) //IL_0492: Unknown result type (might be due to invalid IL or missing references) //IL_0497: Unknown result type (might be due to invalid IL or missing references) //IL_04a3: Unknown result type (might be due to invalid IL or missing references) //IL_04bd: Unknown result type (might be due to invalid IL or missing references) //IL_04c8: Unknown result type (might be due to invalid IL or missing references) //IL_04d2: Unknown result type (might be due to invalid IL or missing references) //IL_04d7: Unknown result type (might be due to invalid IL or missing references) //IL_04e2: Unknown result type (might be due to invalid IL or missing references) //IL_04ed: Unknown result type (might be due to invalid IL or missing references) //IL_04f7: Unknown result type (might be due to invalid IL or missing references) //IL_04fc: Unknown result type (might be due to invalid IL or missing references) //IL_0507: Unknown result type (might be due to invalid IL or missing references) //IL_0511: Unknown result type (might be due to invalid IL or missing references) //IL_0516: Unknown result type (might be due to invalid IL or missing references) //IL_0522: Unknown result type (might be due to invalid IL or missing references) //IL_0714: Unknown result type (might be due to invalid IL or missing references) //IL_071f: Unknown result type (might be due to invalid IL or missing references) //IL_0724: Unknown result type (might be due to invalid IL or missing references) //IL_072f: Unknown result type (might be due to invalid IL or missing references) //IL_073a: Unknown result type (might be due to invalid IL or missing references) //IL_0744: Unknown result type (might be due to invalid IL or missing references) //IL_0749: Unknown result type (might be due to invalid IL or missing references) //IL_0754: Unknown result type (might be due to invalid IL or missing references) //IL_0759: Unknown result type (might be due to invalid IL or missing references) //IL_0765: Unknown result type (might be due to invalid IL or missing references) //IL_0a76: Unknown result type (might be due to invalid IL or missing references) //IL_0a7c: Unknown result type (might be due to invalid IL or missing references) //IL_077f: Unknown result type (might be due to invalid IL or missing references) //IL_078a: Unknown result type (might be due to invalid IL or missing references) //IL_0794: Unknown result type (might be due to invalid IL or missing references) //IL_0799: Unknown result type (might be due to invalid IL or missing references) //IL_07a4: Unknown result type (might be due to invalid IL or missing references) //IL_07af: Unknown result type (might be due to invalid IL or missing references) //IL_07b9: Unknown result type (might be due to invalid IL or missing references) //IL_07be: Unknown result type (might be due to invalid IL or missing references) //IL_07c9: Unknown result type (might be due to invalid IL or missing references) //IL_07d3: Unknown result type (might be due to invalid IL or missing references) //IL_07d8: Unknown result type (might be due to invalid IL or missing references) //IL_07e4: Unknown result type (might be due to invalid IL or missing references) //IL_0a93: Unknown result type (might be due to invalid IL or missing references) //IL_0a9e: Unknown result type (might be due to invalid IL or missing references) //IL_0aa8: Unknown result type (might be due to invalid IL or missing references) //IL_0aad: Unknown result type (might be due to invalid IL or missing references) //IL_0abe: Unknown result type (might be due to invalid IL or missing references) //IL_0ac9: Unknown result type (might be due to invalid IL or missing references) //IL_0ad3: Unknown result type (might be due to invalid IL or missing references) //IL_0ad8: Unknown result type (might be due to invalid IL or missing references) //IL_0966: Unknown result type (might be due to invalid IL or missing references) //IL_0971: Unknown result type (might be due to invalid IL or missing references) //IL_097b: Unknown result type (might be due to invalid IL or missing references) //IL_0980: Unknown result type (might be due to invalid IL or missing references) //IL_0985: Unknown result type (might be due to invalid IL or missing references) //IL_0994: Unknown result type (might be due to invalid IL or missing references) //IL_0999: Unknown result type (might be due to invalid IL or missing references) //IL_09a8: Unknown result type (might be due to invalid IL or missing references) //IL_09b3: Unknown result type (might be due to invalid IL or missing references) //IL_09bd: Unknown result type (might be due to invalid IL or missing references) //IL_09c2: Unknown result type (might be due to invalid IL or missing references) //IL_09c7: Unknown result type (might be due to invalid IL or missing references) //IL_09d0: Unknown result type (might be due to invalid IL or missing references) //IL_0895: Unknown result type (might be due to invalid IL or missing references) //IL_08a0: Unknown result type (might be due to invalid IL or missing references) //IL_08be: Unknown result type (might be due to invalid IL or missing references) //IL_08cf: Unknown result type (might be due to invalid IL or missing references) //IL_08d4: Unknown result type (might be due to invalid IL or missing references) //IL_08d9: Unknown result type (might be due to invalid IL or missing references) //IL_08e8: Unknown result type (might be due to invalid IL or missing references) //IL_08ed: Unknown result type (might be due to invalid IL or missing references) //IL_08fc: Unknown result type (might be due to invalid IL or missing references) //IL_0907: Unknown result type (might be due to invalid IL or missing references) //IL_0925: Unknown result type (might be due to invalid IL or missing references) //IL_0936: Unknown result type (might be due to invalid IL or missing references) //IL_093b: Unknown result type (might be due to invalid IL or missing references) //IL_0940: Unknown result type (might be due to invalid IL or missing references) //IL_0949: Unknown result type (might be due to invalid IL or missing references) //IL_07fe: Unknown result type (might be due to invalid IL or missing references) //IL_0809: Unknown result type (might be due to invalid IL or missing references) //IL_0813: Unknown result type (might be due to invalid IL or missing references) //IL_0818: Unknown result type (might be due to invalid IL or missing references) //IL_0823: Unknown result type (might be due to invalid IL or missing references) //IL_082e: Unknown result type (might be due to invalid IL or missing references) //IL_0838: Unknown result type (might be due to invalid IL or missing references) //IL_083d: Unknown result type (might be due to invalid IL or missing references) //IL_0848: Unknown result type (might be due to invalid IL or missing references) //IL_0852: Unknown result type (might be due to invalid IL or missing references) //IL_0857: Unknown result type (might be due to invalid IL or missing references) //IL_0863: Unknown result type (might be due to invalid IL or missing references) //IL_09e7: Unknown result type (might be due to invalid IL or missing references) //IL_09ed: Unknown result type (might be due to invalid IL or missing references) //IL_0a02: Unknown result type (might be due to invalid IL or missing references) //IL_0a08: Unknown result type (might be due to invalid IL or missing references) //IL_0a2f: Unknown result type (might be due to invalid IL or missing references) //IL_0a3a: Unknown result type (might be due to invalid IL or missing references) //IL_0a44: Unknown result type (might be due to invalid IL or missing references) //IL_0a49: Unknown result type (might be due to invalid IL or missing references) if (pushAgainstWallIfPlayerIsStuck2) { if (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.up, ((Component)this).transform.position + ((Component)this).transform.forward + ((Component)this).transform.up, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.up * 1.1f, ((Component)this).transform.position + ((Component)this).transform.forward + ((Component)this).transform.up * 1.1f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.up * 1.2f, ((Component)this).transform.position + ((Component)this).transform.forward + ((Component)this).transform.up * 1.2f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers))) { distFromWallWhenStuck = Vector3.Distance(new Vector3(((RaycastHit)(ref hit)).point.x, 0f, ((RaycastHit)(ref hit)).point.z), new Vector3(((Component)this).transform.position.x, 0f, ((Component)this).transform.position.z)); if (currentlyClimbingWall && !pullingUp && (distFromWallWhenStuck >= 0.35f || (firstDistFromWallWhenStuck != 0f && distFromWallWhenStuck >= firstDistFromWallWhenStuck + 0.05f)) && noCollisionTimer >= 5f) { Transform transform = ((Component)this).transform; transform.position += ((Component)this).transform.forward / 30f; } if (currentlyClimbingWall) { if (firstDistFromWallWhenStuck == 0f) { firstDistFromWallWhenStuck = distFromWallWhenStuck; } } else { firstDistFromWallWhenStuck = 0f; } } if (climbedUpAlready) { if (!stuckInSamePos || pullingUp) { stuckInSamePosNoCol = false; } else if (noCollisionTimer > 25f) { stuckInSamePosNoCol = true; } if ((currentlyClimbingWall && climbingMovement > 0f && ((Input.GetAxisRaw("Horizontal") > 0f && !movement.sideScrolling.lockMovementOnXAxis && !movement.sideScrolling.lockMovementOnZAxis) || (Input.GetAxisRaw("Horizontal") < 0f && !movement.sideScrolling.lockMovementOnXAxis && !movement.sideScrolling.lockMovementOnZAxis) || Input.GetAxisRaw("Vertical") > 0f || Input.GetAxisRaw("Vertical") < 0f)) || pullingUp) { if (((Component)this).transform.position == lastPos && noCollisionTimer < 5f) { if (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.up, ((Component)this).transform.position + ((Component)this).transform.forward / 2f + ((Component)this).transform.up, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.up * 1.1f, ((Component)this).transform.position + ((Component)this).transform.forward / 2f + ((Component)this).transform.up * 1.1f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.up * 1.2f, ((Component)this).transform.position + ((Component)this).transform.forward / 2f + ((Component)this).transform.up * 1.2f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers))) { distFromWallWhenStuck = Vector3.Distance(new Vector3(((RaycastHit)(ref hit)).point.x, 0f, ((RaycastHit)(ref hit)).point.z), new Vector3(((Component)this).transform.position.x, 0f, ((Component)this).transform.position.z)); } if (!hasNotMovedOnWallYet && ((Input.GetAxisRaw("Horizontal") > 0.1f && !movement.sideScrolling.lockMovementOnXAxis && !movement.sideScrolling.lockMovementOnZAxis) || (Input.GetAxisRaw("Horizontal") < -0.1f && !movement.sideScrolling.lockMovementOnXAxis && !movement.sideScrolling.lockMovementOnZAxis) || Input.GetAxisRaw("Vertical") > 0.1f || Input.GetAxisRaw("Vertical") < -0.1f)) { stuckInSamePos = true; } } if (((Component)this).transform.rotation != lastRot2 || Mathf.Abs(((Component)this).transform.position.y - lastPos.y) > 0.001f || (stuckInSamePosNoCol && noCollisionTimer < 2f)) { stuckInSamePos = false; stuckInSamePosNoCol = false; } if (Object.op_Implicit((Object)(object)characterController) && ((Collider)characterController).enabled) { if (!pullingUp && stuckInSamePos) { if (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.up, ((Component)this).transform.position + ((Component)this).transform.forward / 2f + ((Component)this).transform.up, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.up * 1.1f, ((Component)this).transform.position + ((Component)this).transform.forward / 2f + ((Component)this).transform.up * 1.1f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers)) || Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.up * 1.2f, ((Component)this).transform.position + ((Component)this).transform.forward / 2f + ((Component)this).transform.up * 1.2f, ref hit, LayerMask.op_Implicit(noWaterCollisionLayers))) { if (distFromWallWhenStuck != 0f) { ((Component)this).transform.position = new Vector3((((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / (distFromWallWhenStuck / (0.07f * (distFromWallWhenStuck / 0.2601f))) * (distFromWallWhenStuck / 0.2601f)).x, ((Component)this).transform.position.y, (((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / (distFromWallWhenStuck / (0.07f * (distFromWallWhenStuck / 0.2601f))) * (distFromWallWhenStuck / 0.2601f)).z); } else { ((Component)this).transform.position = new Vector3((((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / 3.5f).x, ((Component)this).transform.position.y, (((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / 3.5f).z); } } else if ((((Component)this).transform.position == lastPos && ((Component)this).transform.rotation == lastRot2) || noCollisionTimer < 2f) { Transform transform2 = ((Component)this).transform; transform2.position -= ((Component)this).transform.forward / 100f; } } if (pullingUp && noCollisionTimer < 5f && ((Component)this).transform.position == lastPos) { Transform transform3 = ((Component)this).transform; transform3.position -= ((Component)this).transform.forward / 25f; Transform transform4 = ((Component)this).transform; transform4.position += ((Component)this).transform.up / 15f; } } } } lastPos = ((Component)this).transform.position; } lastRot2 = ((Component)this).transform.rotation; } private void WallScriptEnablingDisabling() { if (currentlyClimbingWall || turnBack || back2 || pullingUp) { if (!onWallScriptsFinished) { if (wallScriptsToDisableOnGrab != null) { string[] array = wallScriptsToDisableOnGrab; foreach (string text in array) { ref MonoBehaviour reference = ref wallScriptToDisable; Component component = ((Component)this).GetComponent(text); reference = (MonoBehaviour)(object)((component is MonoBehaviour) ? component : null); if ((Object)(object)wallScriptToDisable != (Object)null) { ((Behaviour)wallScriptToDisable).enabled = false; } else if (!currentlyEnablingAndDisablingWallScripts) { wallScriptWarning = true; } } } if (wallScriptsToEnableOnGrab != null) { string[] array2 = wallScriptsToEnableOnGrab; foreach (string text2 in array2) { ref MonoBehaviour reference2 = ref wallScriptToEnable; Component component2 = ((Component)this).GetComponent(text2); reference2 = (MonoBehaviour)(object)((component2 is MonoBehaviour) ? component2 : null); if ((Object)(object)wallScriptToEnable != (Object)null) { ((Behaviour)wallScriptToEnable).enabled = true; } else if (!currentlyEnablingAndDisablingWallScripts) { wallScriptWarning = true; } } } currentlyEnablingAndDisablingWallScripts = true; } onWallScriptsFinished = true; } else { if (onWallScriptsFinished) { if (wallScriptsToDisableOnGrab != null) { string[] array3 = wallScriptsToDisableOnGrab; foreach (string text3 in array3) { ref MonoBehaviour reference3 = ref wallScriptToDisable; Component component3 = ((Component)this).GetComponent(text3); reference3 = (MonoBehaviour)(object)((component3 is MonoBehaviour) ? component3 : null); if ((Object)(object)wallScriptToDisable != (Object)null) { ((Behaviour)wallScriptToDisable).enabled = true; } else if (!currentlyEnablingAndDisablingWallScripts || currentlyClimbingWall || turnBack || back2) { wallScriptWarning = true; } } } if (wallScriptsToEnableOnGrab != null) { string[] array4 = wallScriptsToEnableOnGrab; foreach (string text4 in array4) { ref MonoBehaviour reference4 = ref wallScriptToEnable; Component component4 = ((Component)this).GetComponent(text4); reference4 = (MonoBehaviour)(object)((component4 is MonoBehaviour) ? component4 : null); if ((Object)(object)wallScriptToEnable != (Object)null) { ((Behaviour)wallScriptToEnable).enabled = false; } else if (!currentlyEnablingAndDisablingWallScripts || currentlyClimbingWall || turnBack || back2) { wallScriptWarning = true; } } } currentlyEnablingAndDisablingWallScripts = true; } onWallScriptsFinished = false; } if (!currentlyClimbingWall && !turnBack && !back2 && !pullingUp) { currentlyEnablingAndDisablingWallScripts = false; } if (!wallScriptWarning) { return; } if (wallScriptsToDisableOnGrab != null) { string[] array5 = wallScriptsToDisableOnGrab; foreach (string text5 in array5) { ref MonoBehaviour reference5 = ref wallScriptToDisable; Component component5 = ((Component)this).GetComponent(text5); reference5 = (MonoBehaviour)(object)((component5 is MonoBehaviour) ? component5 : null); if ((Object)(object)wallScriptToDisable == (Object)null) { Debug.Log((object)("The script to disable on grab named: \"" + text5 + "\" was not found on the player")); } } } if (wallScriptsToEnableOnGrab != null) { string[] array6 = wallScriptsToEnableOnGrab; foreach (string text6 in array6) { ref MonoBehaviour reference6 = ref wallScriptToEnable; Component component6 = ((Component)this).GetComponent(text6); reference6 = (MonoBehaviour)(object)((component6 is MonoBehaviour) ? component6 : null); if ((Object)(object)wallScriptToEnable == (Object)null) { Debug.Log((object)("The script to enable on grab named: \"" + text6 + "\" was not found on the player")); } } } wallScriptWarning = false; } private void SwimScriptEnablingDisabling() { if (inWater) { if (!swimScriptsFinished) { if (swimScriptsToDisableOnEnter != null) { string[] array = swimScriptsToDisableOnEnter; foreach (string text in array) { ref MonoBehaviour reference = ref swimScriptToDisable; Component component = ((Component)this).GetComponent(text); reference = (MonoBehaviour)(object)((component is MonoBehaviour) ? component : null); if ((Object)(object)swimScriptToDisable != (Object)null) { ((Behaviour)swimScriptToDisable).enabled = false; } else if (!currentlyEnablingAndDisablingSwimScripts) { swimScriptWarning = true; } } } if (swimScriptsToEnableOnEnter != null) { string[] array2 = swimScriptsToEnableOnEnter; foreach (string text2 in array2) { ref MonoBehaviour reference2 = ref swimScriptToEnable; Component component2 = ((Component)this).GetComponent(text2); reference2 = (MonoBehaviour)(object)((component2 is MonoBehaviour) ? component2 : null); if ((Object)(object)swimScriptToEnable != (Object)null) { ((Behaviour)swimScriptToEnable).enabled = true; } else if (!currentlyEnablingAndDisablingSwimScripts) { swimScriptWarning = true; } } } currentlyEnablingAndDisablingSwimScripts = true; } swimScriptsFinished = true; } else { if (swimScriptsFinished) { if (swimScriptsToDisableOnEnter != null) { string[] array3 = swimScriptsToDisableOnEnter; foreach (string text3 in array3) { ref MonoBehaviour reference3 = ref swimScriptToDisable; Component component3 = ((Component)this).GetComponent(text3); reference3 = (MonoBehaviour)(object)((component3 is MonoBehaviour) ? component3 : null); if ((Object)(object)swimScriptToDisable != (Object)null) { ((Behaviour)swimScriptToDisable).enabled = true; } else if (!currentlyEnablingAndDisablingSwimScripts || inWater) { swimScriptWarning = true; } } } if (swimScriptsToEnableOnEnter != null) { string[] array4 = swimScriptsToEnableOnEnter; foreach (string text4 in array4) { ref MonoBehaviour reference4 = ref swimScriptToEnable; Component component4 = ((Component)this).GetComponent(text4); reference4 = (MonoBehaviour)(object)((component4 is MonoBehaviour) ? component4 : null); if ((Object)(object)swimScriptToEnable != (Object)null) { ((Behaviour)swimScriptToEnable).enabled = false; } else if (!currentlyEnablingAndDisablingSwimScripts || inWater) { swimScriptWarning = true; } } } currentlyEnablingAndDisablingSwimScripts = true; } swimScriptsFinished = false; } if (!inWater) { currentlyEnablingAndDisablingSwimScripts = false; } if (!swimScriptWarning) { return; } if (swimScriptsToDisableOnEnter != null) { string[] array5 = swimScriptsToDisableOnEnter; foreach (string text5 in array5) { ref MonoBehaviour reference5 = ref swimScriptToDisable; Component component5 = ((Component)this).GetComponent(text5); reference5 = (MonoBehaviour)(object)((component5 is MonoBehaviour) ? component5 : null); if ((Object)(object)swimScriptToDisable == (Object)null) { Debug.Log((object)("The script to disable on enter named: \"" + text5 + "\" was not found on the player")); } } } if (swimScriptsToEnableOnEnter != null) { string[] array6 = swimScriptsToEnableOnEnter; foreach (string text6 in array6) { ref MonoBehaviour reference6 = ref swimScriptToEnable; Component component6 = ((Component)this).GetComponent(text6); reference6 = (MonoBehaviour)(object)((component6 is MonoBehaviour) ? component6 : null); if ((Object)(object)swimScriptToEnable == (Object)null) { Debug.Log((object)("The script to enable on enter named: \"" + text6 + "\" was not found on the player")); } } } swimScriptWarning = false; } private void OnControllerColliderHit(ControllerColliderHit hit) { //IL_0003: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000e: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_002f: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_006b: Unknown result type (might be due to invalid IL or missing references) //IL_0070: Unknown result type (might be due to invalid IL or missing references) //IL_00c7: Unknown result type (might be due to invalid IL or missing references) //IL_00cc: Unknown result type (might be due to invalid IL or missing references) //IL_0093: Unknown result type (might be due to invalid IL or missing references) //IL_0098: Unknown result type (might be due to invalid IL or missing references) //IL_00d4: Unknown result type (might be due to invalid IL or missing references) //IL_00da: Unknown result type (might be due to invalid IL or missing references) //IL_00df: Unknown result type (might be due to invalid IL or missing references) //IL_00ef: Unknown result type (might be due to invalid IL or missing references) //IL_00f4: Unknown result type (might be due to invalid IL or missing references) //IL_00b4: Unknown result type (might be due to invalid IL or missing references) //IL_00b9: Unknown result type (might be due to invalid IL or missing references) //IL_0320: Unknown result type (might be due to invalid IL or missing references) //IL_0325: Unknown result type (might be due to invalid IL or missing references) //IL_0339: Unknown result type (might be due to invalid IL or missing references) //IL_033e: Unknown result type (might be due to invalid IL or missing references) //IL_0352: Unknown result type (might be due to invalid IL or missing references) //IL_0357: Unknown result type (might be due to invalid IL or missing references) //IL_0360: Unknown result type (might be due to invalid IL or missing references) //IL_037b: Unknown result type (might be due to invalid IL or missing references) //IL_0380: Unknown result type (might be due to invalid IL or missing references) //IL_0390: Unknown result type (might be due to invalid IL or missing references) //IL_0395: Unknown result type (might be due to invalid IL or missing references) //IL_03a5: Unknown result type (might be due to invalid IL or missing references) //IL_03aa: Unknown result type (might be due to invalid IL or missing references) //IL_03b4: Unknown result type (might be due to invalid IL or missing references) //IL_02be: Unknown result type (might be due to invalid IL or missing references) //IL_02c8: Expected O, but got Unknown //IL_02d9: Unknown result type (might be due to invalid IL or missing references) //IL_022d: Unknown result type (might be due to invalid IL or missing references) //IL_0232: Unknown result type (might be due to invalid IL or missing references) //IL_0238: Unknown result type (might be due to invalid IL or missing references) //IL_023d: Unknown result type (might be due to invalid IL or missing references) //IL_0255: Unknown result type (might be due to invalid IL or missing references) //IL_025a: Unknown result type (might be due to invalid IL or missing references) //IL_021a: Unknown result type (might be due to invalid IL or missing references) contactPoint = hit.point; collisionSlopeAngle = Vector3.Angle(Vector3.up, hit.normal); noCollisionTimer = 0f; if (hit.point.y > colliderBottom.y + 0.5f) { collidingWithWall = true; } else { collidingWithWall = false; } slidingAngle = Vector3.Angle(hit.normal, Vector3.up); if (slidingAngle >= slopeLimit) { slidingVector = hit.normal; if (slidingVector.y == 0f) { slidingVector = Vector3.zero; } } else { slidingVector = Vector3.zero; } slidingAngle = Vector3.Angle(hit.normal, moveDirection - Vector3.up * moveDirection.y); if (slidingAngle > 90f) { slidingAngle -= 90f; if (slidingAngle > slopeLimit) { slidingAngle = slopeLimit; } if (slidingAngle < slopeLimit) { slidingAngle = 0f; } } if (hit.gameObject.tag == climbableTag2 && wallIsClimbable && jumpedOffClimbableObjectTimer >= 0.3f && (Input.GetAxisRaw("Horizontal") != 0f || Input.GetAxisRaw("Vertical") != 0f)) { if (snapToCenterOfObject2 && !snappingToCenter && !currentlyClimbingWall) { snapTimer = 0f; snappingToCenter = true; } if (!currentlyClimbingWall && Object.op_Implicit((Object)(object)rigidBody)) { rigidBody.velocity = Vector3.zero; } currentlyClimbingWall = true; climbDirection = Vector3.zero; swimDirection = Vector3.zero; swimmingMovementSpeed = 0f; swimmingMovementTransferred = true; moveDirection = Vector3.zero; moveSpeed = 0f; inMidAirFromJump = false; inMidAirFromWallJump = false; } if (hit.gameObject.tag == movingPlatformTag && allowMovingPlatformSupport) { noCollisionWithPlatformTimer = 0f; if ((Object)(object)emptyObject == (Object)null) { emptyObject = new GameObject(); emptyObject.transform.position = hit.transform.position; } ((Object)emptyObject).name = "PlatformPlayerConnector"; emptyObject.transform.parent = hit.transform; emptyObject.transform.localScale = new Vector3(1f / hit.transform.localScale.x, 1f / hit.transform.localScale.y, 1f / hit.transform.localScale.z); emptyObject.transform.localRotation = Quaternion.Euler(0f - hit.transform.localRotation.x, 0f - hit.transform.localRotation.y, 0f - hit.transform.localRotation.z); ((Component)this).transform.parent = emptyObject.transform; } } private void OnCollisionStay(Collision hit) { //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_0026: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_0088: Unknown result type (might be due to invalid IL or missing references) //IL_008d: Unknown result type (might be due to invalid IL or missing references) //IL_00e5: Unknown result type (might be due to invalid IL or missing references) //IL_00ea: Unknown result type (might be due to invalid IL or missing references) //IL_00b1: Unknown result type (might be due to invalid IL or missing references) //IL_00b6: Unknown result type (might be due to invalid IL or missing references) //IL_00f3: Unknown result type (might be due to invalid IL or missing references) //IL_00f9: Unknown result type (might be due to invalid IL or missing references) //IL_00fe: Unknown result type (might be due to invalid IL or missing references) //IL_010e: Unknown result type (might be due to invalid IL or missing references) //IL_0113: Unknown result type (might be due to invalid IL or missing references) //IL_00d2: Unknown result type (might be due to invalid IL or missing references) //IL_00d7: Unknown result type (might be due to invalid IL or missing references) //IL_034d: Unknown result type (might be due to invalid IL or missing references) //IL_0352: Unknown result type (might be due to invalid IL or missing references) //IL_0366: Unknown result type (might be due to invalid IL or missing references) //IL_036b: Unknown result type (might be due to invalid IL or missing references) //IL_0380: Unknown result type (might be due to invalid IL or missing references) //IL_0385: Unknown result type (might be due to invalid IL or missing references) //IL_038f: Unknown result type (might be due to invalid IL or missing references) //IL_03aa: Unknown result type (might be due to invalid IL or missing references) //IL_03af: Unknown result type (might be due to invalid IL or missing references) //IL_03bf: Unknown result type (might be due to invalid IL or missing references) //IL_03c4: Unknown result type (might be due to invalid IL or missing references) //IL_03d4: Unknown result type (might be due to invalid IL or missing references) //IL_03d9: Unknown result type (might be due to invalid IL or missing references) //IL_03e3: Unknown result type (might be due to invalid IL or missing references) //IL_02eb: Unknown result type (might be due to invalid IL or missing references) //IL_02f5: Expected O, but got Unknown //IL_0306: Unknown result type (might be due to invalid IL or missing references) //IL_025a: Unknown result type (might be due to invalid IL or missing references) //IL_025f: Unknown result type (might be due to invalid IL or missing references) //IL_0265: Unknown result type (might be due to invalid IL or missing references) //IL_026a: Unknown result type (might be due to invalid IL or missing references) //IL_0282: Unknown result type (might be due to invalid IL or missing references) //IL_0287: Unknown result type (might be due to invalid IL or missing references) //IL_0247: Unknown result type (might be due to invalid IL or missing references) ContactPoint[] contacts = hit.contacts; for (int i = 0; i < contacts.Length; i++) { ContactPoint val = contacts[i]; contactPoint = ((ContactPoint)(ref val)).point; collisionSlopeAngle = Vector3.Angle(Vector3.up, ((ContactPoint)(ref val)).normal); noCollisionTimer = 0f; if (contactPoint.y > colliderBottom.y + 0.5f) { collidingWithWall = true; } else { collidingWithWall = false; } slidingAngle = Vector3.Angle(((ContactPoint)(ref val)).normal, Vector3.up); if (slidingAngle >= slopeLimit) { slidingVector = ((ContactPoint)(ref val)).normal; if (slidingVector.y == 0f) { slidingVector = Vector3.zero; } } else { slidingVector = Vector3.zero; } slidingAngle = Vector3.Angle(((ContactPoint)(ref val)).normal, moveDirection - Vector3.up * moveDirection.y); if (slidingAngle > 90f) { slidingAngle -= 90f; if (slidingAngle > slopeLimit) { slidingAngle = slopeLimit; } if (slidingAngle < slopeLimit) { slidingAngle = 0f; } } } if (hit.gameObject.tag == climbableTag2 && wallIsClimbable && jumpedOffClimbableObjectTimer >= 0.3f && (Input.GetAxisRaw("Horizontal") != 0f || Input.GetAxisRaw("Vertical") != 0f)) { if (snapToCenterOfObject2 && !snappingToCenter && !currentlyClimbingWall) { snapTimer = 0f; snappingToCenter = true; } if (!currentlyClimbingWall && Object.op_Implicit((Object)(object)rigidBody)) { rigidBody.velocity = Vector3.zero; } currentlyClimbingWall = true; climbDirection = Vector3.zero; swimDirection = Vector3.zero; swimmingMovementSpeed = 0f; swimmingMovementTransferred = true; moveDirection = Vector3.zero; moveSpeed = 0f; inMidAirFromJump = false; inMidAirFromWallJump = false; } if (hit.gameObject.tag == movingPlatformTag && allowMovingPlatformSupport) { noCollisionWithPlatformTimer = 0f; if ((Object)(object)emptyObject == (Object)null) { emptyObject = new GameObject(); emptyObject.transform.position = hit.transform.position; } ((Object)emptyObject).name = "PlatformPlayerConnector"; emptyObject.transform.parent = hit.transform; emptyObject.transform.localScale = new Vector3(1f / hit.transform.localScale.x, 1f / hit.transform.localScale.y, 1f / hit.transform.localScale.z); emptyObject.transform.localRotation = Quaternion.Euler(0f - hit.transform.localRotation.x, 0f - hit.transform.localRotation.y, 0f - hit.transform.localRotation.z); ((Component)this).transform.parent = emptyObject.transform; } } private void OnTriggerStay(Collider hit) { //IL_00a8: Unknown result type (might be due to invalid IL or missing references) //IL_00ad: Unknown result type (might be due to invalid IL or missing references) //IL_00c1: Unknown result type (might be due to invalid IL or missing references) //IL_00c6: Unknown result type (might be due to invalid IL or missing references) //IL_00da: Unknown result type (might be due to invalid IL or missing references) //IL_00df: Unknown result type (might be due to invalid IL or missing references) //IL_00e8: Unknown result type (might be due to invalid IL or missing references) //IL_0103: Unknown result type (might be due to invalid IL or missing references) //IL_0108: Unknown result type (might be due to invalid IL or missing references) //IL_0117: Unknown result type (might be due to invalid IL or missing references) //IL_011c: Unknown result type (might be due to invalid IL or missing references) //IL_012c: Unknown result type (might be due to invalid IL or missing references) //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_013b: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) //IL_0050: Expected O, but got Unknown //IL_0061: Unknown result type (might be due to invalid IL or missing references) if (((Component)hit).gameObject.tag == movingPlatformTag && allowMovingPlatformSupport) { noCollisionWithPlatformTimer = 0f; if ((Object)(object)emptyObject == (Object)null) { emptyObject = new GameObject(); emptyObject.transform.position = ((Component)hit).transform.position; } ((Object)emptyObject).name = "PlatformPlayerConnector"; emptyObject.transform.parent = ((Component)hit).transform; emptyObject.transform.localScale = new Vector3(1f / ((Component)hit).transform.localScale.x, 1f / ((Component)hit).transform.localScale.y, 1f / ((Component)hit).transform.localScale.z); emptyObject.transform.localRotation = Quaternion.Euler(0f - ((Component)hit).transform.localRotation.x, 0f - ((Component)hit).transform.localRotation.y, 0f - ((Component)hit).transform.localRotation.z); ((Component)this).transform.parent = emptyObject.transform; } if (((Component)((Component)hit).transform).gameObject.layer == 4 && swimming.allowSwimming) { noCollisionWithWaterTimer = 0f; noCollisionWithWaterSplashTimer = 0f; } } private void OnDisable() { //IL_00e6: Unknown result type (might be due to invalid IL or missing references) //IL_00eb: Unknown result type (might be due to invalid IL or missing references) //IL_0118: Unknown result type (might be due to invalid IL or missing references) //IL_011d: Unknown result type (might be due to invalid IL or missing references) //IL_0123: Unknown result type (might be due to invalid IL or missing references) //IL_0128: Unknown result type (might be due to invalid IL or missing references) //IL_0049: Unknown result type (might be due to invalid IL or missing references) if (Object.op_Implicit((Object)(object)rigidBody) && (!Object.op_Implicit((Object)(object)characterController) || (Object.op_Implicit((Object)(object)characterController) && !((Collider)characterController).enabled))) { rigidBody.velocity = Vector3.zero; } inMidAirFromJump = false; inMidAirFromWallJump = false; currentJumpNumber = totalJumpNumber; moveDirection.y = 0f; moveSpeed = 0f; jumpPressed = false; jumpPossible = false; jumpEnabled = false; doubleJumpPossible = true; middleWallJumpable = false; leftWallJumpable = false; rightWallJumpable = false; currentlyOnWall = false; currentlyClimbingWall = false; turnBack = false; back2 = false; canCrouch = false; crouching = false; swimDirection = Vector3.zero; swimmingMovementSpeed = 0f; swimmingMovementTransferred = true; submergedEnough = false; inWater = false; enabledLastUpdate = false; slidingVector = Vector3.zero; slideMovement = Vector3.zero; } private void OnEnable() { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_0007: Unknown result type (might be due to invalid IL or missing references) swimDirection = Vector3.zero; swimmingMovementSpeed = 0f; swimmingMovementTransferred = true; noCollisionWithWaterTimer = 5f; noCollisionWithWaterSplashTimer = 5f; submergedEnough = false; inWater = false; jumpPressed = false; } } public class WallClimbController_Standalone : MonoBehaviour { [Serializable] public class Grounded { public float slopeLimit = 25f; public bool showGroundDetectionRays; public float maxGroundedHeight = 0.2f; public float maxGroundedRadius = 0.2f; public float maxGroundedDistance = 0.2f; public bool currentlyGrounded; } [Serializable] public class Climbing { [Serializable] public class WalkingOffOfClimbableSurface { public bool allowGrabbingOnAfterWalkingOffLedge = true; public bool showWalkingOffLedgeRays = false; public float spaceInFrontNeededToGrabBackOn = 0f; public float spaceBelowNeededToGrabBackOnHeight = 0f; public float spaceBelowNeededToGrabBackOnForward = 0f; public float firstSideLedgeDetectorsHeight = 0f; public float secondSideLedgeDetectorsHeight = 0f; public float thirdSideLedgeDetectorsHeight = 0f; public float sideLedgeDetectorsWidth = 0f; public float sideLedgeDetectorsLength = 0f; public float grabBackOnLocationHeight = 0f; public float grabBackOnLocationWidth = 0f; public float grabBackOnLocationForward = 0f; } public string climbableTag = "Wall"; public bool climbVertically = true; public bool climbHorizontally = true; public float climbMovementSpeed = 4f; public float climbRotationSpeed = 10f; public bool snapToCenterOfObject = false; public bool moveInBursts = true; public float burstLength = 1f; public bool stayUpright = false; public float distanceToPushOffAfterLettingGo = 1.75f; public float rotationToClimbableObjectSpeed = 6f; public bool showClimbingDetectors = false; public float climbingSurfaceDetectorsUpAmount = 0f; public float climbingSurfaceDetectorsHeight = 0f; public float climbingSurfaceDetectorsLength = 0f; public bool showEdgeOfObjectDetctors = false; public float topNoSurfaceDetectorHeight = 0f; public float bottomNoSurfaceDetectorHeight = 0f; public float topAndBottomNoSurfaceDetectorsWidth = 0f; public float sideNoSurfaceDetectorsHeight = 0f; public float sideNoSurfaceDetectorsWidth = 0f; public bool stopAtSides = true; public bool dropOffAtBottom = false; public bool dropOffAtFloor = true; public bool pullUpAtTop = true; public float pullUpSpeed = 4f; public bool showPullUpDetector = false; public float pullUpLocationForward = 0f; public WalkingOffOfClimbableSurface walkingOffOfClimbableSurface = new WalkingOffOfClimbableSurface(); public string[] scriptsToEnableOnGrab; public string[] scriptsToDisableOnGrab = new string[2] { "PlayerController", "LedgeClimbController" }; public bool pushAgainstWallIfPlayerIsStuck = true; } [Serializable] public class SideScrolling { public float movementSpeedIfAxisLocked = 6f; public bool lockMovementOnZAxis = false; public float zValue = 0f; public bool lockMovementOnXAxis = false; public float xValue = 0f; public bool flipAxisRotation = false; public bool rotateInwards = true; } public Grounded grounded = new Grounded(); public Climbing[] climbing = new Climbing[1]; public SideScrolling sideScrolling = new SideScrolling(); private Vector3 maxGroundedHeight2; private float maxGroundedRadius2; private Vector3 maxGroundedDistanceDown; private Vector3 climbingSurfaceDetectorsUpAmount2; private float climbingSurfaceDetectorsHeight2; private float climbingSurfaceDetectorsLength2; private float distanceToPushOffAfterLettingGo2; private float rotationToClimbableObjectSpeed2; private bool climbHorizontally2; private bool climbVertically2; private float climbMovementSpeed2; private float climbRotationSpeed2; private bool moveInBursts; private float burstLength; [HideInInspector] public string climbableTag2; private bool stayUpright2; private bool snapToCenterOfObject2; private Vector3 bottomNoSurfaceDetectorHeight2; private Vector3 topNoSurfaceDetectorHeight2; private Vector3 topAndBottomNoSurfaceDetectorsWidth2; private float sideNoSurfaceDetectorsHeight2; private Vector3 sideNoSurfaceDetectorsWidth2; private float sideNoSurfaceDetectorsWidthTurnBack2; private bool stopAtSides2; private bool dropOffAtBottom2; private bool dropOffAtFloor2; private bool pullUpAtTop2; private float pullUpSpeed; private Vector3 pullUpLocationForward2; private bool pushAgainstWallIfPlayerIsStuck2; private bool allowGrabbingOnAfterWalkingOffLedge2; private Vector3 spaceInFrontNeededToGrabBackOn2; private Vector3 spaceBelowNeededToGrabBackOnHeight2; private Vector3 spaceBelowNeededToGrabBackOnForward2; private Vector3 firstSideLedgeDetectorsHeight2; private Vector3 secondSideLedgeDetectorsHeight2; private Vector3 thirdSideLedgeDetectorsHeight2; private Vector3 sideLedgeDetectorsWidth2; private Vector3 sideLedgeDetectorsLength2; private bool showClimbingDetectors3; private Vector3 climbingSurfaceDetectorsUpAmount3; private float climbingSurfaceDetectorsHeight3; private float climbingSurfaceDetectorsLength3; private bool showEdgeOfObjectDetctors3; private Vector3 bottomNoSurfaceDetectorHeight3; private Vector3 topNoSurfaceDetectorHeight3; private Vector3 topAndBottomNoSurfaceDetectorsWidth3; private float sideNoSurfaceDetectorsHeight3; private Vector3 sideNoSurfaceDetectorsWidth3; private bool showPullUpDetector3; private Vector3 pullUpLocationForward3; private bool showWalkingOffLedgeRays3; private Vector3 spaceInFrontNeededToGrabBackOn3; private Vector3 firstSideLedgeDetectorsHeight3; private Vector3 secondSideLedgeDetectorsHeight3; private Vector3 thirdSideLedgeDetectorsHeight3; private Vector3 sideLedgeDetectorsWidth3; private Vector3 sideLedgeDetectorsLength3; private Vector3 spaceBelowNeededToGrabBackOnHeight3; private Vector3 spaceBelowNeededToGrabBackOnForward3; private Vector3 grabBackOnLocationHeight3; private Vector3 grabBackOnLocationWidth3; private Vector3 grabBackOnLocationForward3; private Vector3 pos; private Vector3 moveDirection; private Vector3 directionVector; private float slidingAngle; private Vector3 slidingVector; [HideInInspector] public float bodyRotation; private float noCollisionTimer; [HideInInspector] public bool currentlyOnWall; private bool onWallLastUpdate; private bool rbUsesGravity; private bool canChangeRbGravity; [HideInInspector] public bool currentlyClimbingWall = false; [HideInInspector] public bool wallIsClimbable; [HideInInspector] public bool climbableWallInFront; private bool wallInFront; [HideInInspector] public bool finishedRotatingToWall; private float jumpedOffClimbableObjectTimer = 1f; private Vector3 jumpedOffClimbableObjectDirection; private Vector3 climbDirection; private bool downCanBePressed; private bool climbedUpAlready; private Vector3 colCenter; private Vector3 colTop; private bool aboveTop; private bool reachedTopPoint = false; private bool reachedBottomPoint = false; private bool reachedRightPoint = false; private bool reachedLeftPoint = false; private float climbingMovement; private bool beginClimbBurst; private bool switchedDirection; private float lastAxis; private float horizontalClimbSpeed; private float verticalClimbSpeed; private float arm; private Vector3 centerPoint; private float snapTimer = 1f; private bool snappingToCenter; private bool startedClimbing; private bool firstTest; private bool secondTest; private bool thirdTest; private bool fourthTest; [HideInInspector] public bool fifthTest; private int i = 0; private int tagNum; [HideInInspector] public bool turnBack = false; private float turnBackTimer = 0f; private bool turnBackMiddle = true; private bool turnBackLeft; private bool turnBackRight; [HideInInspector] public bool back2 = false; private Vector3 backPoint; private Vector3 turnBackPoint; private Quaternion backRotation; private Quaternion normalRotation; private Vector3 playerPosXZ; private float playerPosY; private bool pullingUp; private float pullingUpTimer; private bool pullUpLocationAcquired; private bool movingToPullUpLocation; private Vector3 movementVector; private Vector3 hitPoint; private bool animatePullingUp; [HideInInspector] public Vector3 rotationHit; private Quaternion rotationNormal; private float rotationState; private bool hasNotMovedOnWallYet; private Quaternion lastRot3; private bool axisChanged; private float horizontalAxis; private float climbingHeight; private float lastYPosOnWall; [HideInInspector] public float horizontalValue = 1f; private Vector3 lastPos; private Quaternion lastRot2; private float distFromWallWhenStuck; private float firstDistFromWallWhenStuck; private bool stuckInSamePos; private bool stuckInSamePosNoCol; private string[] scriptsToEnableOnGrab; private MonoBehaviour scriptToEnable; private string[] scriptsToDisableOnGrab; private MonoBehaviour scriptToDisable; private bool currentlyEnablingAndDisablingScripts = false; private bool scriptWarning = false; private bool onWallScriptsFinished = false; private RaycastHit hit = default(RaycastHit); private Animator animator; private int entryAnimation; public LayerMask collisionLayers = LayerMask.op_Implicit(-1); private void Start() { //IL_0020: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Unknown result type (might be due to invalid IL or missing references) StartUp(); if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { AnimatorStateInfo currentAnimatorStateInfo = ((Component)this).GetComponent().GetCurrentAnimatorStateInfo(0); entryAnimation = ((AnimatorStateInfo)(ref currentAnimatorStateInfo)).fullPathHash; } } private void StartUp() { ((Behaviour)this).enabled = false; ((Behaviour)this).enabled = true; } private void Update() { //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_005b: Unknown result type (might be due to invalid IL or missing references) //IL_0060: Unknown result type (might be due to invalid IL or missing references) //IL_0071: Unknown result type (might be due to invalid IL or missing references) //IL_0076: Unknown result type (might be due to invalid IL or missing references) //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_007e: Unknown result type (might be due to invalid IL or missing references) maxGroundedHeight2 = ((Component)this).transform.up * grounded.maxGroundedHeight; maxGroundedRadius2 = grounded.maxGroundedRadius - 0.0075f; maxGroundedDistanceDown = Vector3.down * grounded.maxGroundedDistance; pos = ((Component)this).transform.position; ref Vector3 reference = ref pos; Bounds bounds = ((Component)this).GetComponent().bounds; reference.y = ((Bounds)(ref bounds)).min.y + 0.1f; DrawClimbingDetectors(); if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { animator = ((Component)this).GetComponent(); } if (currentlyOnWall || currentlyClimbingWall || turnBack || back2) { onWallLastUpdate = true; } else { onWallLastUpdate = false; } } private void FixedUpdate() { if (climbing.Length > 0) { GettingClimbingValues(); } noCollisionTimer += 1f; AvoidSlidingWhileClimbing(); GettingRotationDirection(); CheckRBForUseGravity(); if (climbing.Length > 0) { CheckIfPlayerCanClimb(); ClimbingWall(); JumpOffOfClimb(); ClimbableObjectEdgeDetection(); PullingUpClimbableObject(); AnimatingClimbing(); } DetermineGroundedState(); LockAxisForSideScrolling(); AvoidFallingWhileClimbing(); } private void GettingClimbingValues() { //IL_00a2: Unknown result type (might be due to invalid IL or missing references) //IL_00bf: Unknown result type (might be due to invalid IL or missing references) //IL_00c4: Unknown result type (might be due to invalid IL or missing references) //IL_0214: Unknown result type (might be due to invalid IL or missing references) //IL_0231: Unknown result type (might be due to invalid IL or missing references) //IL_0236: Unknown result type (might be due to invalid IL or missing references) //IL_0242: Unknown result type (might be due to invalid IL or missing references) //IL_025f: Unknown result type (might be due to invalid IL or missing references) //IL_0264: Unknown result type (might be due to invalid IL or missing references) //IL_0270: Unknown result type (might be due to invalid IL or missing references) //IL_0287: Unknown result type (might be due to invalid IL or missing references) //IL_028c: Unknown result type (might be due to invalid IL or missing references) //IL_02b6: Unknown result type (might be due to invalid IL or missing references) //IL_02d3: Unknown result type (might be due to invalid IL or missing references) //IL_02d8: Unknown result type (might be due to invalid IL or missing references) //IL_037a: Unknown result type (might be due to invalid IL or missing references) //IL_0391: Unknown result type (might be due to invalid IL or missing references) //IL_0396: Unknown result type (might be due to invalid IL or missing references) //IL_03d7: Unknown result type (might be due to invalid IL or missing references) //IL_03f9: Unknown result type (might be due to invalid IL or missing references) //IL_03fe: Unknown result type (might be due to invalid IL or missing references) //IL_040a: Unknown result type (might be due to invalid IL or missing references) //IL_0426: Unknown result type (might be due to invalid IL or missing references) //IL_042b: Unknown result type (might be due to invalid IL or missing references) //IL_0437: Unknown result type (might be due to invalid IL or missing references) //IL_0453: Unknown result type (might be due to invalid IL or missing references) //IL_0458: Unknown result type (might be due to invalid IL or missing references) //IL_0464: Unknown result type (might be due to invalid IL or missing references) //IL_0480: Unknown result type (might be due to invalid IL or missing references) //IL_0485: Unknown result type (might be due to invalid IL or missing references) //IL_0491: Unknown result type (might be due to invalid IL or missing references) //IL_04ad: Unknown result type (might be due to invalid IL or missing references) //IL_04b2: Unknown result type (might be due to invalid IL or missing references) //IL_04be: Unknown result type (might be due to invalid IL or missing references) //IL_04da: Unknown result type (might be due to invalid IL or missing references) //IL_04df: Unknown result type (might be due to invalid IL or missing references) //IL_04eb: Unknown result type (might be due to invalid IL or missing references) //IL_050d: Unknown result type (might be due to invalid IL or missing references) //IL_0512: Unknown result type (might be due to invalid IL or missing references) //IL_051e: Unknown result type (might be due to invalid IL or missing references) //IL_0540: Unknown result type (might be due to invalid IL or missing references) //IL_0545: Unknown result type (might be due to invalid IL or missing references) if (!wallIsClimbable && !currentlyClimbingWall && !turnBack && !back2 && !pullingUp) { if (i == climbing.Length) { i = 0; } if (!firstTest && !secondTest && !thirdTest && !fourthTest && !fifthTest) { tagNum = i; } } climbingSurfaceDetectorsUpAmount2 = ((Component)this).transform.up * (climbing[tagNum].climbingSurfaceDetectorsUpAmount + 0.2f); climbingSurfaceDetectorsHeight2 = climbing[tagNum].climbingSurfaceDetectorsHeight - 0.18f; climbingSurfaceDetectorsLength2 = climbing[tagNum].climbingSurfaceDetectorsLength - 0.5f; distanceToPushOffAfterLettingGo2 = climbing[tagNum].distanceToPushOffAfterLettingGo; rotationToClimbableObjectSpeed2 = climbing[tagNum].rotationToClimbableObjectSpeed; climbHorizontally2 = climbing[tagNum].climbHorizontally; climbVertically2 = climbing[tagNum].climbVertically; climbMovementSpeed2 = climbing[tagNum].climbMovementSpeed; climbRotationSpeed2 = climbing[tagNum].climbRotationSpeed; moveInBursts = climbing[tagNum].moveInBursts; burstLength = climbing[tagNum].burstLength; climbableTag2 = climbing[tagNum].climbableTag; stayUpright2 = climbing[tagNum].stayUpright; snapToCenterOfObject2 = climbing[tagNum].snapToCenterOfObject; bottomNoSurfaceDetectorHeight2 = ((Component)this).transform.up * (climbing[tagNum].bottomNoSurfaceDetectorHeight + 0.15f); topNoSurfaceDetectorHeight2 = ((Component)this).transform.up * (climbing[tagNum].topNoSurfaceDetectorHeight + 0.15f); topAndBottomNoSurfaceDetectorsWidth2 = ((Component)this).transform.right * climbing[tagNum].topAndBottomNoSurfaceDetectorsWidth; sideNoSurfaceDetectorsHeight2 = climbing[tagNum].sideNoSurfaceDetectorsHeight - 0.15f; sideNoSurfaceDetectorsWidth2 = ((Component)this).transform.right * (climbing[tagNum].sideNoSurfaceDetectorsWidth - 0.25f); sideNoSurfaceDetectorsWidthTurnBack2 = climbing[tagNum].sideNoSurfaceDetectorsWidth - 0.25f; stopAtSides2 = climbing[tagNum].stopAtSides; dropOffAtBottom2 = climbing[tagNum].dropOffAtBottom; dropOffAtFloor2 = climbing[tagNum].dropOffAtFloor; pullUpAtTop2 = climbing[tagNum].pullUpAtTop; pullUpSpeed = climbing[tagNum].pullUpSpeed; pullUpLocationForward2 = ((Component)this).transform.forward * climbing[tagNum].pullUpLocationForward; pushAgainstWallIfPlayerIsStuck2 = climbing[tagNum].pushAgainstWallIfPlayerIsStuck; allowGrabbingOnAfterWalkingOffLedge2 = climbing[tagNum].walkingOffOfClimbableSurface.allowGrabbingOnAfterWalkingOffLedge; spaceInFrontNeededToGrabBackOn2 = ((Component)this).transform.forward * (climbing[tagNum].walkingOffOfClimbableSurface.spaceInFrontNeededToGrabBackOn + 0.03f); firstSideLedgeDetectorsHeight2 = ((Component)this).transform.up * climbing[tagNum].walkingOffOfClimbableSurface.firstSideLedgeDetectorsHeight; secondSideLedgeDetectorsHeight2 = ((Component)this).transform.up * climbing[tagNum].walkingOffOfClimbableSurface.secondSideLedgeDetectorsHeight; thirdSideLedgeDetectorsHeight2 = ((Component)this).transform.up * climbing[tagNum].walkingOffOfClimbableSurface.thirdSideLedgeDetectorsHeight; sideLedgeDetectorsWidth2 = ((Component)this).transform.right * climbing[tagNum].walkingOffOfClimbableSurface.sideLedgeDetectorsWidth; sideLedgeDetectorsLength2 = ((Component)this).transform.forward * climbing[tagNum].walkingOffOfClimbableSurface.sideLedgeDetectorsLength; spaceBelowNeededToGrabBackOnHeight2 = ((Component)this).transform.up * (climbing[tagNum].walkingOffOfClimbableSurface.spaceBelowNeededToGrabBackOnHeight + 0.07f); spaceBelowNeededToGrabBackOnForward2 = ((Component)this).transform.forward * (climbing[tagNum].walkingOffOfClimbableSurface.spaceBelowNeededToGrabBackOnForward + 0.06f); scriptsToEnableOnGrab = climbing[tagNum].scriptsToEnableOnGrab; scriptsToDisableOnGrab = climbing[tagNum].scriptsToDisableOnGrab; } private void AvoidSlidingWhileClimbing() { //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_00a9: Unknown result type (might be due to invalid IL or missing references) //IL_00ae: Unknown result type (might be due to invalid IL or missing references) //IL_00c3: Unknown result type (might be due to invalid IL or missing references) //IL_00c8: Unknown result type (might be due to invalid IL or missing references) //IL_006b: Unknown result type (might be due to invalid IL or missing references) //IL_0070: Unknown result type (might be due to invalid IL or missing references) //IL_0084: Unknown result type (might be due to invalid IL or missing references) //IL_0089: Unknown result type (might be due to invalid IL or missing references) //IL_0091: Unknown result type (might be due to invalid IL or missing references) //IL_0138: Unknown result type (might be due to invalid IL or missing references) if (currentlyClimbingWall && !pullingUp) { if (Mathf.Abs(((Component)this).transform.position.y - lastYPosOnWall) >= 0.2f * (climbMovementSpeed2 / 4f) && lastYPosOnWall != 0f) { ((Component)this).transform.position = new Vector3(((Component)this).transform.position.x, climbingHeight, ((Component)this).transform.position.z); } else { climbingHeight = ((Component)this).transform.position.y; } lastYPosOnWall = ((Component)this).transform.position.y; } else { lastYPosOnWall = 0f; } if (currentlyClimbingWall || pullingUp || turnBack || back2) { if (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && !startedClimbing) { ((Component)this).GetComponent().velocity = Vector3.zero; } startedClimbing = true; } else { startedClimbing = false; } } private void GettingRotationDirection() { //IL_001b: Unknown result type (might be due to invalid IL or missing references) //IL_0020: Unknown result type (might be due to invalid IL or missing references) //IL_0026: Unknown result type (might be due to invalid IL or missing references) //IL_002b: Unknown result type (might be due to invalid IL or missing references) //IL_0049: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0054: Unknown result type (might be due to invalid IL or missing references) //IL_006b: Unknown result type (might be due to invalid IL or missing references) //IL_0071: Unknown result type (might be due to invalid IL or missing references) //IL_0076: Unknown result type (might be due to invalid IL or missing references) directionVector = new Vector3(Input.GetAxis("Horizontal"), 0f, Input.GetAxis("Vertical")); if (directionVector != Vector3.zero) { float magnitude = ((Vector3)(ref directionVector)).magnitude; directionVector /= magnitude; magnitude = Mathf.Min(1f, magnitude); magnitude *= magnitude; directionVector *= magnitude; } } private void CheckRBForUseGravity() { if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { if (((Component)this).GetComponent().useGravity && !currentlyOnWall && !currentlyClimbingWall && !turnBack && !back2) { rbUsesGravity = true; } if (currentlyOnWall || currentlyClimbingWall || turnBack || back2) { canChangeRbGravity = true; ((Component)this).GetComponent().useGravity = false; } else if (rbUsesGravity && canChangeRbGravity) { ((Component)this).GetComponent().useGravity = true; canChangeRbGravity = false; } if (!((Component)this).GetComponent().useGravity && !currentlyOnWall && !currentlyClimbingWall && !turnBack && !back2) { rbUsesGravity = false; } } } private void CheckIfPlayerCanClimb() { //IL_0076: Unknown result type (might be due to invalid IL or missing references) //IL_007c: Unknown result type (might be due to invalid IL or missing references) //IL_0081: Unknown result type (might be due to invalid IL or missing references) //IL_008c: Unknown result type (might be due to invalid IL or missing references) //IL_009d: Unknown result type (might be due to invalid IL or missing references) //IL_00a7: Unknown result type (might be due to invalid IL or missing references) //IL_00ac: Unknown result type (might be due to invalid IL or missing references) //IL_00b7: Unknown result type (might be due to invalid IL or missing references) //IL_00bd: Unknown result type (might be due to invalid IL or missing references) //IL_00c2: Unknown result type (might be due to invalid IL or missing references) //IL_00cd: Unknown result type (might be due to invalid IL or missing references) //IL_00de: Unknown result type (might be due to invalid IL or missing references) //IL_00e3: Unknown result type (might be due to invalid IL or missing references) //IL_00ee: Unknown result type (might be due to invalid IL or missing references) //IL_00ff: Unknown result type (might be due to invalid IL or missing references) //IL_0109: Unknown result type (might be due to invalid IL or missing references) //IL_010e: Unknown result type (might be due to invalid IL or missing references) //IL_011a: Unknown result type (might be due to invalid IL or missing references) //IL_0154: Unknown result type (might be due to invalid IL or missing references) //IL_015a: Unknown result type (might be due to invalid IL or missing references) //IL_015f: Unknown result type (might be due to invalid IL or missing references) //IL_016a: Unknown result type (might be due to invalid IL or missing references) //IL_017b: Unknown result type (might be due to invalid IL or missing references) //IL_0185: Unknown result type (might be due to invalid IL or missing references) //IL_018a: Unknown result type (might be due to invalid IL or missing references) //IL_0195: Unknown result type (might be due to invalid IL or missing references) //IL_019b: Unknown result type (might be due to invalid IL or missing references) //IL_01a0: Unknown result type (might be due to invalid IL or missing references) //IL_01ab: Unknown result type (might be due to invalid IL or missing references) //IL_01bc: Unknown result type (might be due to invalid IL or missing references) //IL_01c1: Unknown result type (might be due to invalid IL or missing references) //IL_01cc: Unknown result type (might be due to invalid IL or missing references) //IL_01dd: Unknown result type (might be due to invalid IL or missing references) //IL_01e7: Unknown result type (might be due to invalid IL or missing references) //IL_01ec: Unknown result type (might be due to invalid IL or missing references) //IL_01f8: Unknown result type (might be due to invalid IL or missing references) //IL_0232: Unknown result type (might be due to invalid IL or missing references) //IL_0238: Unknown result type (might be due to invalid IL or missing references) //IL_023d: Unknown result type (might be due to invalid IL or missing references) //IL_0248: Unknown result type (might be due to invalid IL or missing references) //IL_0259: Unknown result type (might be due to invalid IL or missing references) //IL_0263: Unknown result type (might be due to invalid IL or missing references) //IL_0268: Unknown result type (might be due to invalid IL or missing references) //IL_0273: Unknown result type (might be due to invalid IL or missing references) //IL_0279: Unknown result type (might be due to invalid IL or missing references) //IL_027e: Unknown result type (might be due to invalid IL or missing references) //IL_0289: Unknown result type (might be due to invalid IL or missing references) //IL_029a: Unknown result type (might be due to invalid IL or missing references) //IL_029f: Unknown result type (might be due to invalid IL or missing references) //IL_02aa: Unknown result type (might be due to invalid IL or missing references) //IL_02bb: Unknown result type (might be due to invalid IL or missing references) //IL_02c5: Unknown result type (might be due to invalid IL or missing references) //IL_02ca: Unknown result type (might be due to invalid IL or missing references) //IL_02d6: Unknown result type (might be due to invalid IL or missing references) //IL_0310: Unknown result type (might be due to invalid IL or missing references) //IL_0316: Unknown result type (might be due to invalid IL or missing references) //IL_031b: Unknown result type (might be due to invalid IL or missing references) //IL_0326: Unknown result type (might be due to invalid IL or missing references) //IL_0337: Unknown result type (might be due to invalid IL or missing references) //IL_0341: Unknown result type (might be due to invalid IL or missing references) //IL_0346: Unknown result type (might be due to invalid IL or missing references) //IL_0351: Unknown result type (might be due to invalid IL or missing references) //IL_0357: Unknown result type (might be due to invalid IL or missing references) //IL_035c: Unknown result type (might be due to invalid IL or missing references) //IL_0367: Unknown result type (might be due to invalid IL or missing references) //IL_0378: Unknown result type (might be due to invalid IL or missing references) //IL_037d: Unknown result type (might be due to invalid IL or missing references) //IL_0388: Unknown result type (might be due to invalid IL or missing references) //IL_0399: Unknown result type (might be due to invalid IL or missing references) //IL_03a3: Unknown result type (might be due to invalid IL or missing references) //IL_03a8: Unknown result type (might be due to invalid IL or missing references) //IL_03b4: Unknown result type (might be due to invalid IL or missing references) //IL_05b8: Unknown result type (might be due to invalid IL or missing references) //IL_05bd: Unknown result type (might be due to invalid IL or missing references) //IL_05c2: Unknown result type (might be due to invalid IL or missing references) //IL_05c7: Unknown result type (might be due to invalid IL or missing references) //IL_03ee: Unknown result type (might be due to invalid IL or missing references) //IL_03f4: Unknown result type (might be due to invalid IL or missing references) //IL_03f9: Unknown result type (might be due to invalid IL or missing references) //IL_0404: Unknown result type (might be due to invalid IL or missing references) //IL_0415: Unknown result type (might be due to invalid IL or missing references) //IL_041f: Unknown result type (might be due to invalid IL or missing references) //IL_0424: Unknown result type (might be due to invalid IL or missing references) //IL_042f: Unknown result type (might be due to invalid IL or missing references) //IL_0435: Unknown result type (might be due to invalid IL or missing references) //IL_043a: Unknown result type (might be due to invalid IL or missing references) //IL_0445: Unknown result type (might be due to invalid IL or missing references) //IL_0456: Unknown result type (might be due to invalid IL or missing references) //IL_045b: Unknown result type (might be due to invalid IL or missing references) //IL_0466: Unknown result type (might be due to invalid IL or missing references) //IL_0477: Unknown result type (might be due to invalid IL or missing references) //IL_0481: Unknown result type (might be due to invalid IL or missing references) //IL_0486: Unknown result type (might be due to invalid IL or missing references) //IL_0492: Unknown result type (might be due to invalid IL or missing references) //IL_04cc: Unknown result type (might be due to invalid IL or missing references) //IL_04d2: Unknown result type (might be due to invalid IL or missing references) //IL_04d7: Unknown result type (might be due to invalid IL or missing references) //IL_04e2: Unknown result type (might be due to invalid IL or missing references) //IL_04f3: Unknown result type (might be due to invalid IL or missing references) //IL_04fd: Unknown result type (might be due to invalid IL or missing references) //IL_0502: Unknown result type (might be due to invalid IL or missing references) //IL_050d: Unknown result type (might be due to invalid IL or missing references) //IL_0513: Unknown result type (might be due to invalid IL or missing references) //IL_0518: Unknown result type (might be due to invalid IL or missing references) //IL_0523: Unknown result type (might be due to invalid IL or missing references) //IL_0534: Unknown result type (might be due to invalid IL or missing references) //IL_0539: Unknown result type (might be due to invalid IL or missing references) //IL_0544: Unknown result type (might be due to invalid IL or missing references) //IL_0555: Unknown result type (might be due to invalid IL or missing references) //IL_055f: Unknown result type (might be due to invalid IL or missing references) //IL_0564: Unknown result type (might be due to invalid IL or missing references) //IL_0570: Unknown result type (might be due to invalid IL or missing references) //IL_0666: Unknown result type (might be due to invalid IL or missing references) //IL_066c: Unknown result type (might be due to invalid IL or missing references) //IL_074d: Unknown result type (might be due to invalid IL or missing references) //IL_0753: Unknown result type (might be due to invalid IL or missing references) //IL_0758: Unknown result type (might be due to invalid IL or missing references) //IL_0763: Unknown result type (might be due to invalid IL or missing references) //IL_0774: Unknown result type (might be due to invalid IL or missing references) //IL_077e: Unknown result type (might be due to invalid IL or missing references) //IL_0783: Unknown result type (might be due to invalid IL or missing references) //IL_078e: Unknown result type (might be due to invalid IL or missing references) //IL_0794: Unknown result type (might be due to invalid IL or missing references) //IL_0799: Unknown result type (might be due to invalid IL or missing references) //IL_07a4: Unknown result type (might be due to invalid IL or missing references) //IL_07b5: Unknown result type (might be due to invalid IL or missing references) //IL_07ba: Unknown result type (might be due to invalid IL or missing references) //IL_07c5: Unknown result type (might be due to invalid IL or missing references) //IL_07d6: Unknown result type (might be due to invalid IL or missing references) //IL_07e0: Unknown result type (might be due to invalid IL or missing references) //IL_07e5: Unknown result type (might be due to invalid IL or missing references) //IL_07f1: Unknown result type (might be due to invalid IL or missing references) //IL_06b1: Unknown result type (might be due to invalid IL or missing references) //IL_06b7: Unknown result type (might be due to invalid IL or missing references) //IL_0bc1: Unknown result type (might be due to invalid IL or missing references) //IL_0bc7: Unknown result type (might be due to invalid IL or missing references) //IL_0bcc: Unknown result type (might be due to invalid IL or missing references) //IL_0bd7: Unknown result type (might be due to invalid IL or missing references) //IL_0be8: Unknown result type (might be due to invalid IL or missing references) //IL_0bf2: Unknown result type (might be due to invalid IL or missing references) //IL_0bf7: Unknown result type (might be due to invalid IL or missing references) //IL_0c02: Unknown result type (might be due to invalid IL or missing references) //IL_0c0c: Unknown result type (might be due to invalid IL or missing references) //IL_0c11: Unknown result type (might be due to invalid IL or missing references) //IL_0c1c: Unknown result type (might be due to invalid IL or missing references) //IL_0c22: Unknown result type (might be due to invalid IL or missing references) //IL_0c27: Unknown result type (might be due to invalid IL or missing references) //IL_0c32: Unknown result type (might be due to invalid IL or missing references) //IL_0c43: Unknown result type (might be due to invalid IL or missing references) //IL_0c48: Unknown result type (might be due to invalid IL or missing references) //IL_0c53: Unknown result type (might be due to invalid IL or missing references) //IL_0c64: Unknown result type (might be due to invalid IL or missing references) //IL_0c6e: Unknown result type (might be due to invalid IL or missing references) //IL_0c73: Unknown result type (might be due to invalid IL or missing references) //IL_0c7e: Unknown result type (might be due to invalid IL or missing references) //IL_0c88: Unknown result type (might be due to invalid IL or missing references) //IL_0c8d: Unknown result type (might be due to invalid IL or missing references) //IL_0c99: Unknown result type (might be due to invalid IL or missing references) //IL_080b: Unknown result type (might be due to invalid IL or missing references) //IL_0811: Unknown result type (might be due to invalid IL or missing references) //IL_0816: Unknown result type (might be due to invalid IL or missing references) //IL_0821: Unknown result type (might be due to invalid IL or missing references) //IL_0832: Unknown result type (might be due to invalid IL or missing references) //IL_083c: Unknown result type (might be due to invalid IL or missing references) //IL_0841: Unknown result type (might be due to invalid IL or missing references) //IL_084c: Unknown result type (might be due to invalid IL or missing references) //IL_0852: Unknown result type (might be due to invalid IL or missing references) //IL_0857: Unknown result type (might be due to invalid IL or missing references) //IL_0862: Unknown result type (might be due to invalid IL or missing references) //IL_0873: Unknown result type (might be due to invalid IL or missing references) //IL_0878: Unknown result type (might be due to invalid IL or missing references) //IL_0883: Unknown result type (might be due to invalid IL or missing references) //IL_0894: Unknown result type (might be due to invalid IL or missing references) //IL_089e: Unknown result type (might be due to invalid IL or missing references) //IL_08a3: Unknown result type (might be due to invalid IL or missing references) //IL_08af: Unknown result type (might be due to invalid IL or missing references) //IL_116d: Unknown result type (might be due to invalid IL or missing references) //IL_1173: Unknown result type (might be due to invalid IL or missing references) //IL_1178: Unknown result type (might be due to invalid IL or missing references) //IL_1183: Unknown result type (might be due to invalid IL or missing references) //IL_1194: Unknown result type (might be due to invalid IL or missing references) //IL_119e: Unknown result type (might be due to invalid IL or missing references) //IL_11a3: Unknown result type (might be due to invalid IL or missing references) //IL_11ae: Unknown result type (might be due to invalid IL or missing references) //IL_11b8: Unknown result type (might be due to invalid IL or missing references) //IL_11bd: Unknown result type (might be due to invalid IL or missing references) //IL_11c8: Unknown result type (might be due to invalid IL or missing references) //IL_11ce: Unknown result type (might be due to invalid IL or missing references) //IL_11d3: Unknown result type (might be due to invalid IL or missing references) //IL_11de: Unknown result type (might be due to invalid IL or missing references) //IL_11ef: Unknown result type (might be due to invalid IL or missing references) //IL_11f4: Unknown result type (might be due to invalid IL or missing references) //IL_11ff: Unknown result type (might be due to invalid IL or missing references) //IL_1210: Unknown result type (might be due to invalid IL or missing references) //IL_121a: Unknown result type (might be due to invalid IL or missing references) //IL_121f: Unknown result type (might be due to invalid IL or missing references) //IL_122a: Unknown result type (might be due to invalid IL or missing references) //IL_1234: Unknown result type (might be due to invalid IL or missing references) //IL_1239: Unknown result type (might be due to invalid IL or missing references) //IL_1245: Unknown result type (might be due to invalid IL or missing references) //IL_0cb3: Unknown result type (might be due to invalid IL or missing references) //IL_0cb9: Unknown result type (might be due to invalid IL or missing references) //IL_0cbe: Unknown result type (might be due to invalid IL or missing references) //IL_0cc9: Unknown result type (might be due to invalid IL or missing references) //IL_0cda: Unknown result type (might be due to invalid IL or missing references) //IL_0ce4: Unknown result type (might be due to invalid IL or missing references) //IL_0ce9: Unknown result type (might be due to invalid IL or missing references) //IL_0cf4: Unknown result type (might be due to invalid IL or missing references) //IL_0cfe: Unknown result type (might be due to invalid IL or missing references) //IL_0d03: Unknown result type (might be due to invalid IL or missing references) //IL_0d0e: Unknown result type (might be due to invalid IL or missing references) //IL_0d14: Unknown result type (might be due to invalid IL or missing references) //IL_0d19: Unknown result type (might be due to invalid IL or missing references) //IL_0d24: Unknown result type (might be due to invalid IL or missing references) //IL_0d35: Unknown result type (might be due to invalid IL or missing references) //IL_0d3a: Unknown result type (might be due to invalid IL or missing references) //IL_0d45: Unknown result type (might be due to invalid IL or missing references) //IL_0d56: Unknown result type (might be due to invalid IL or missing references) //IL_0d60: Unknown result type (might be due to invalid IL or missing references) //IL_0d65: Unknown result type (might be due to invalid IL or missing references) //IL_0d70: Unknown result type (might be due to invalid IL or missing references) //IL_0d7a: Unknown result type (might be due to invalid IL or missing references) //IL_0d7f: Unknown result type (might be due to invalid IL or missing references) //IL_0d8b: Unknown result type (might be due to invalid IL or missing references) //IL_08c9: Unknown result type (might be due to invalid IL or missing references) //IL_08cf: Unknown result type (might be due to invalid IL or missing references) //IL_08d4: Unknown result type (might be due to invalid IL or missing references) //IL_08df: Unknown result type (might be due to invalid IL or missing references) //IL_08f0: Unknown result type (might be due to invalid IL or missing references) //IL_08fa: Unknown result type (might be due to invalid IL or missing references) //IL_08ff: Unknown result type (might be due to invalid IL or missing references) //IL_090a: Unknown result type (might be due to invalid IL or missing references) //IL_0910: Unknown result type (might be due to invalid IL or missing references) //IL_0915: Unknown result type (might be due to invalid IL or missing references) //IL_0920: Unknown result type (might be due to invalid IL or missing references) //IL_0931: Unknown result type (might be due to invalid IL or missing references) //IL_0936: Unknown result type (might be due to invalid IL or missing references) //IL_0941: Unknown result type (might be due to invalid IL or missing references) //IL_0952: Unknown result type (might be due to invalid IL or missing references) //IL_095c: Unknown result type (might be due to invalid IL or missing references) //IL_0961: Unknown result type (might be due to invalid IL or missing references) //IL_096d: Unknown result type (might be due to invalid IL or missing references) //IL_125f: Unknown result type (might be due to invalid IL or missing references) //IL_1265: Unknown result type (might be due to invalid IL or missing references) //IL_126a: Unknown result type (might be due to invalid IL or missing references) //IL_1275: Unknown result type (might be due to invalid IL or missing references) //IL_1286: Unknown result type (might be due to invalid IL or missing references) //IL_1290: Unknown result type (might be due to invalid IL or missing references) //IL_1295: Unknown result type (might be due to invalid IL or missing references) //IL_12a0: Unknown result type (might be due to invalid IL or missing references) //IL_12aa: Unknown result type (might be due to invalid IL or missing references) //IL_12af: Unknown result type (might be due to invalid IL or missing references) //IL_12ba: Unknown result type (might be due to invalid IL or missing references) //IL_12c0: Unknown result type (might be due to invalid IL or missing references) //IL_12c5: Unknown result type (might be due to invalid IL or missing references) //IL_12d0: Unknown result type (might be due to invalid IL or missing references) //IL_12e1: Unknown result type (might be due to invalid IL or missing references) //IL_12e6: Unknown result type (might be due to invalid IL or missing references) //IL_12f1: Unknown result type (might be due to invalid IL or missing references) //IL_1302: Unknown result type (might be due to invalid IL or missing references) //IL_130c: Unknown result type (might be due to invalid IL or missing references) //IL_1311: Unknown result type (might be due to invalid IL or missing references) //IL_131c: Unknown result type (might be due to invalid IL or missing references) //IL_1326: Unknown result type (might be due to invalid IL or missing references) //IL_132b: Unknown result type (might be due to invalid IL or missing references) //IL_1337: Unknown result type (might be due to invalid IL or missing references) //IL_0da5: Unknown result type (might be due to invalid IL or missing references) //IL_0dab: Unknown result type (might be due to invalid IL or missing references) //IL_0db0: Unknown result type (might be due to invalid IL or missing references) //IL_0dbb: Unknown result type (might be due to invalid IL or missing references) //IL_0dcc: Unknown result type (might be due to invalid IL or missing references) //IL_0dd6: Unknown result type (might be due to invalid IL or missing references) //IL_0ddb: Unknown result type (might be due to invalid IL or missing references) //IL_0de6: Unknown result type (might be due to invalid IL or missing references) //IL_0df0: Unknown result type (might be due to invalid IL or missing references) //IL_0df5: Unknown result type (might be due to invalid IL or missing references) //IL_0e00: Unknown result type (might be due to invalid IL or missing references) //IL_0e06: Unknown result type (might be due to invalid IL or missing references) //IL_0e0b: Unknown result type (might be due to invalid IL or missing references) //IL_0e16: Unknown result type (might be due to invalid IL or missing references) //IL_0e27: Unknown result type (might be due to invalid IL or missing references) //IL_0e2c: Unknown result type (might be due to invalid IL or missing references) //IL_0e37: Unknown result type (might be due to invalid IL or missing references) //IL_0e48: Unknown result type (might be due to invalid IL or missing references) //IL_0e52: Unknown result type (might be due to invalid IL or missing references) //IL_0e57: Unknown result type (might be due to invalid IL or missing references) //IL_0e62: Unknown result type (might be due to invalid IL or missing references) //IL_0e6c: Unknown result type (might be due to invalid IL or missing references) //IL_0e71: Unknown result type (might be due to invalid IL or missing references) //IL_0e7d: Unknown result type (might be due to invalid IL or missing references) //IL_0987: Unknown result type (might be due to invalid IL or missing references) //IL_098d: Unknown result type (might be due to invalid IL or missing references) //IL_0992: Unknown result type (might be due to invalid IL or missing references) //IL_099d: Unknown result type (might be due to invalid IL or missing references) //IL_09ae: Unknown result type (might be due to invalid IL or missing references) //IL_09b8: Unknown result type (might be due to invalid IL or missing references) //IL_09bd: Unknown result type (might be due to invalid IL or missing references) //IL_09c8: Unknown result type (might be due to invalid IL or missing references) //IL_09ce: Unknown result type (might be due to invalid IL or missing references) //IL_09d3: Unknown result type (might be due to invalid IL or missing references) //IL_09de: Unknown result type (might be due to invalid IL or missing references) //IL_09ef: Unknown result type (might be due to invalid IL or missing references) //IL_09f4: Unknown result type (might be due to invalid IL or missing references) //IL_09ff: Unknown result type (might be due to invalid IL or missing references) //IL_0a10: Unknown result type (might be due to invalid IL or missing references) //IL_0a1a: Unknown result type (might be due to invalid IL or missing references) //IL_0a1f: Unknown result type (might be due to invalid IL or missing references) //IL_0a2b: Unknown result type (might be due to invalid IL or missing references) //IL_06ea: Unknown result type (might be due to invalid IL or missing references) //IL_06ef: Unknown result type (might be due to invalid IL or missing references) //IL_1351: Unknown result type (might be due to invalid IL or missing references) //IL_1357: Unknown result type (might be due to invalid IL or missing references) //IL_135c: Unknown result type (might be due to invalid IL or missing references) //IL_1367: Unknown result type (might be due to invalid IL or missing references) //IL_1378: Unknown result type (might be due to invalid IL or missing references) //IL_1382: Unknown result type (might be due to invalid IL or missing references) //IL_1387: Unknown result type (might be due to invalid IL or missing references) //IL_1392: Unknown result type (might be due to invalid IL or missing references) //IL_139c: Unknown result type (might be due to invalid IL or missing references) //IL_13a1: Unknown result type (might be due to invalid IL or missing references) //IL_13ac: Unknown result type (might be due to invalid IL or missing references) //IL_13b2: Unknown result type (might be due to invalid IL or missing references) //IL_13b7: Unknown result type (might be due to invalid IL or missing references) //IL_13c2: Unknown result type (might be due to invalid IL or missing references) //IL_13d3: Unknown result type (might be due to invalid IL or missing references) //IL_13d8: Unknown result type (might be due to invalid IL or missing references) //IL_13e3: Unknown result type (might be due to invalid IL or missing references) //IL_13f4: Unknown result type (might be due to invalid IL or missing references) //IL_13fe: Unknown result type (might be due to invalid IL or missing references) //IL_1403: Unknown result type (might be due to invalid IL or missing references) //IL_140e: Unknown result type (might be due to invalid IL or missing references) //IL_1418: Unknown result type (might be due to invalid IL or missing references) //IL_141d: Unknown result type (might be due to invalid IL or missing references) //IL_1429: Unknown result type (might be due to invalid IL or missing references) //IL_0e97: Unknown result type (might be due to invalid IL or missing references) //IL_0e9d: Unknown result type (might be due to invalid IL or missing references) //IL_0ea2: Unknown result type (might be due to invalid IL or missing references) //IL_0ead: Unknown result type (might be due to invalid IL or missing references) //IL_0ebe: Unknown result type (might be due to invalid IL or missing references) //IL_0ec8: Unknown result type (might be due to invalid IL or missing references) //IL_0ecd: Unknown result type (might be due to invalid IL or missing references) //IL_0ed8: Unknown result type (might be due to invalid IL or missing references) //IL_0ee2: Unknown result type (might be due to invalid IL or missing references) //IL_0ee7: Unknown result type (might be due to invalid IL or missing references) //IL_0ef2: Unknown result type (might be due to invalid IL or missing references) //IL_0ef8: Unknown result type (might be due to invalid IL or missing references) //IL_0efd: Unknown result type (might be due to invalid IL or missing references) //IL_0f08: Unknown result type (might be due to invalid IL or missing references) //IL_0f19: Unknown result type (might be due to invalid IL or missing references) //IL_0f1e: Unknown result type (might be due to invalid IL or missing references) //IL_0f29: Unknown result type (might be due to invalid IL or missing references) //IL_0f3a: Unknown result type (might be due to invalid IL or missing references) //IL_0f44: Unknown result type (might be due to invalid IL or missing references) //IL_0f49: Unknown result type (might be due to invalid IL or missing references) //IL_0f54: Unknown result type (might be due to invalid IL or missing references) //IL_0f5e: Unknown result type (might be due to invalid IL or missing references) //IL_0f63: Unknown result type (might be due to invalid IL or missing references) //IL_0f6f: Unknown result type (might be due to invalid IL or missing references) //IL_0a45: Unknown result type (might be due to invalid IL or missing references) //IL_0a4b: Unknown result type (might be due to invalid IL or missing references) //IL_0a50: Unknown result type (might be due to invalid IL or missing references) //IL_0a5b: Unknown result type (might be due to invalid IL or missing references) //IL_0a6c: Unknown result type (might be due to invalid IL or missing references) //IL_0a76: Unknown result type (might be due to invalid IL or missing references) //IL_0a7b: Unknown result type (might be due to invalid IL or missing references) //IL_0a86: Unknown result type (might be due to invalid IL or missing references) //IL_0a8c: Unknown result type (might be due to invalid IL or missing references) //IL_0a91: Unknown result type (might be due to invalid IL or missing references) //IL_0a9c: Unknown result type (might be due to invalid IL or missing references) //IL_0aad: Unknown result type (might be due to invalid IL or missing references) //IL_0ab2: Unknown result type (might be due to invalid IL or missing references) //IL_0abd: Unknown result type (might be due to invalid IL or missing references) //IL_0ace: Unknown result type (might be due to invalid IL or missing references) //IL_0ad8: Unknown result type (might be due to invalid IL or missing references) //IL_0add: Unknown result type (might be due to invalid IL or missing references) //IL_0ae9: Unknown result type (might be due to invalid IL or missing references) //IL_1443: Unknown result type (might be due to invalid IL or missing references) //IL_1449: Unknown result type (might be due to invalid IL or missing references) //IL_144e: Unknown result type (might be due to invalid IL or missing references) //IL_1459: Unknown result type (might be due to invalid IL or missing references) //IL_146a: Unknown result type (might be due to invalid IL or missing references) //IL_1474: Unknown result type (might be due to invalid IL or missing references) //IL_1479: Unknown result type (might be due to invalid IL or missing references) //IL_1484: Unknown result type (might be due to invalid IL or missing references) //IL_148e: Unknown result type (might be due to invalid IL or missing references) //IL_1493: Unknown result type (might be due to invalid IL or missing references) //IL_149e: Unknown result type (might be due to invalid IL or missing references) //IL_14a4: Unknown result type (might be due to invalid IL or missing references) //IL_14a9: Unknown result type (might be due to invalid IL or missing references) //IL_14b4: Unknown result type (might be due to invalid IL or missing references) //IL_14c5: Unknown result type (might be due to invalid IL or missing references) //IL_14ca: Unknown result type (might be due to invalid IL or missing references) //IL_14d5: Unknown result type (might be due to invalid IL or missing references) //IL_14e6: Unknown result type (might be due to invalid IL or missing references) //IL_14f0: Unknown result type (might be due to invalid IL or missing references) //IL_14f5: Unknown result type (might be due to invalid IL or missing references) //IL_1500: Unknown result type (might be due to invalid IL or missing references) //IL_150a: Unknown result type (might be due to invalid IL or missing references) //IL_150f: Unknown result type (might be due to invalid IL or missing references) //IL_151b: Unknown result type (might be due to invalid IL or missing references) //IL_0f89: Unknown result type (might be due to invalid IL or missing references) //IL_0f8f: Unknown result type (might be due to invalid IL or missing references) //IL_0f94: Unknown result type (might be due to invalid IL or missing references) //IL_0f9f: Unknown result type (might be due to invalid IL or missing references) //IL_0fb0: Unknown result type (might be due to invalid IL or missing references) //IL_0fba: Unknown result type (might be due to invalid IL or missing references) //IL_0fbf: Unknown result type (might be due to invalid IL or missing references) //IL_0fca: Unknown result type (might be due to invalid IL or missing references) //IL_0fd4: Unknown result type (might be due to invalid IL or missing references) //IL_0fd9: Unknown result type (might be due to invalid IL or missing references) //IL_0fe4: Unknown result type (might be due to invalid IL or missing references) //IL_0fea: Unknown result type (might be due to invalid IL or missing references) //IL_0fef: Unknown result type (might be due to invalid IL or missing references) //IL_0ffa: Unknown result type (might be due to invalid IL or missing references) //IL_100b: Unknown result type (might be due to invalid IL or missing references) //IL_1010: Unknown result type (might be due to invalid IL or missing references) //IL_101b: Unknown result type (might be due to invalid IL or missing references) //IL_102c: Unknown result type (might be due to invalid IL or missing references) //IL_1036: Unknown result type (might be due to invalid IL or missing references) //IL_103b: Unknown result type (might be due to invalid IL or missing references) //IL_1046: Unknown result type (might be due to invalid IL or missing references) //IL_1050: Unknown result type (might be due to invalid IL or missing references) //IL_1055: Unknown result type (might be due to invalid IL or missing references) //IL_1061: Unknown result type (might be due to invalid IL or missing references) //IL_0b03: Unknown result type (might be due to invalid IL or missing references) //IL_0b09: Unknown result type (might be due to invalid IL or missing references) //IL_0b0e: Unknown result type (might be due to invalid IL or missing references) //IL_0b19: Unknown result type (might be due to invalid IL or missing references) //IL_0b2a: Unknown result type (might be due to invalid IL or missing references) //IL_0b34: Unknown result type (might be due to invalid IL or missing references) //IL_0b39: Unknown result type (might be due to invalid IL or missing references) //IL_0b44: Unknown result type (might be due to invalid IL or missing references) //IL_0b4a: Unknown result type (might be due to invalid IL or missing references) //IL_0b4f: Unknown result type (might be due to invalid IL or missing references) //IL_0b5a: Unknown result type (might be due to invalid IL or missing references) //IL_0b6b: Unknown result type (might be due to invalid IL or missing references) //IL_0b70: Unknown result type (might be due to invalid IL or missing references) //IL_0b7b: Unknown result type (might be due to invalid IL or missing references) //IL_0b8c: Unknown result type (might be due to invalid IL or missing references) //IL_0b96: Unknown result type (might be due to invalid IL or missing references) //IL_0b9b: Unknown result type (might be due to invalid IL or missing references) //IL_0ba7: Unknown result type (might be due to invalid IL or missing references) //IL_1799: Unknown result type (might be due to invalid IL or missing references) //IL_179f: Unknown result type (might be due to invalid IL or missing references) //IL_17a4: Unknown result type (might be due to invalid IL or missing references) //IL_17af: Unknown result type (might be due to invalid IL or missing references) //IL_17c0: Unknown result type (might be due to invalid IL or missing references) //IL_17ca: Unknown result type (might be due to invalid IL or missing references) //IL_17cf: Unknown result type (might be due to invalid IL or missing references) //IL_17da: Unknown result type (might be due to invalid IL or missing references) //IL_17e0: Unknown result type (might be due to invalid IL or missing references) //IL_17e5: Unknown result type (might be due to invalid IL or missing references) //IL_17f0: Unknown result type (might be due to invalid IL or missing references) //IL_17fa: Unknown result type (might be due to invalid IL or missing references) //IL_180b: Unknown result type (might be due to invalid IL or missing references) //IL_1810: Unknown result type (might be due to invalid IL or missing references) //IL_181b: Unknown result type (might be due to invalid IL or missing references) //IL_182c: Unknown result type (might be due to invalid IL or missing references) //IL_1836: Unknown result type (might be due to invalid IL or missing references) //IL_183b: Unknown result type (might be due to invalid IL or missing references) //IL_1847: Unknown result type (might be due to invalid IL or missing references) //IL_1535: Unknown result type (might be due to invalid IL or missing references) //IL_153b: Unknown result type (might be due to invalid IL or missing references) //IL_1540: Unknown result type (might be due to invalid IL or missing references) //IL_154b: Unknown result type (might be due to invalid IL or missing references) //IL_155c: Unknown result type (might be due to invalid IL or missing references) //IL_1566: Unknown result type (might be due to invalid IL or missing references) //IL_156b: Unknown result type (might be due to invalid IL or missing references) //IL_1576: Unknown result type (might be due to invalid IL or missing references) //IL_1580: Unknown result type (might be due to invalid IL or missing references) //IL_1585: Unknown result type (might be due to invalid IL or missing references) //IL_1590: Unknown result type (might be due to invalid IL or missing references) //IL_1596: Unknown result type (might be due to invalid IL or missing references) //IL_159b: Unknown result type (might be due to invalid IL or missing references) //IL_15a6: Unknown result type (might be due to invalid IL or missing references) //IL_15b7: Unknown result type (might be due to invalid IL or missing references) //IL_15bc: Unknown result type (might be due to invalid IL or missing references) //IL_15c7: Unknown result type (might be due to invalid IL or missing references) //IL_15d8: Unknown result type (might be due to invalid IL or missing references) //IL_15e2: Unknown result type (might be due to invalid IL or missing references) //IL_15e7: Unknown result type (might be due to invalid IL or missing references) //IL_15f2: Unknown result type (might be due to invalid IL or missing references) //IL_15fc: Unknown result type (might be due to invalid IL or missing references) //IL_1601: Unknown result type (might be due to invalid IL or missing references) //IL_160d: Unknown result type (might be due to invalid IL or missing references) //IL_107b: Unknown result type (might be due to invalid IL or missing references) //IL_1081: Unknown result type (might be due to invalid IL or missing references) //IL_1086: Unknown result type (might be due to invalid IL or missing references) //IL_1091: Unknown result type (might be due to invalid IL or missing references) //IL_10a2: Unknown result type (might be due to invalid IL or missing references) //IL_10ac: Unknown result type (might be due to invalid IL or missing references) //IL_10b1: Unknown result type (might be due to invalid IL or missing references) //IL_10bc: Unknown result type (might be due to invalid IL or missing references) //IL_10c6: Unknown result type (might be due to invalid IL or missing references) //IL_10cb: Unknown result type (might be due to invalid IL or missing references) //IL_10d6: Unknown result type (might be due to invalid IL or missing references) //IL_10dc: Unknown result type (might be due to invalid IL or missing references) //IL_10e1: Unknown result type (might be due to invalid IL or missing references) //IL_10ec: Unknown result type (might be due to invalid IL or missing references) //IL_10fd: Unknown result type (might be due to invalid IL or missing references) //IL_1102: Unknown result type (might be due to invalid IL or missing references) //IL_110d: Unknown result type (might be due to invalid IL or missing references) //IL_111e: Unknown result type (might be due to invalid IL or missing references) //IL_1128: Unknown result type (might be due to invalid IL or missing references) //IL_112d: Unknown result type (might be due to invalid IL or missing references) //IL_1138: Unknown result type (might be due to invalid IL or missing references) //IL_1142: Unknown result type (might be due to invalid IL or missing references) //IL_1147: Unknown result type (might be due to invalid IL or missing references) //IL_1153: Unknown result type (might be due to invalid IL or missing references) //IL_1881: Unknown result type (might be due to invalid IL or missing references) //IL_1887: Unknown result type (might be due to invalid IL or missing references) //IL_188c: Unknown result type (might be due to invalid IL or missing references) //IL_1897: Unknown result type (might be due to invalid IL or missing references) //IL_18a8: Unknown result type (might be due to invalid IL or missing references) //IL_18b2: Unknown result type (might be due to invalid IL or missing references) //IL_18b7: Unknown result type (might be due to invalid IL or missing references) //IL_18c2: Unknown result type (might be due to invalid IL or missing references) //IL_18c8: Unknown result type (might be due to invalid IL or missing references) //IL_18cd: Unknown result type (might be due to invalid IL or missing references) //IL_18d8: Unknown result type (might be due to invalid IL or missing references) //IL_18e2: Unknown result type (might be due to invalid IL or missing references) //IL_18f3: Unknown result type (might be due to invalid IL or missing references) //IL_18f8: Unknown result type (might be due to invalid IL or missing references) //IL_1903: Unknown result type (might be due to invalid IL or missing references) //IL_1914: Unknown result type (might be due to invalid IL or missing references) //IL_191e: Unknown result type (might be due to invalid IL or missing references) //IL_1923: Unknown result type (might be due to invalid IL or missing references) //IL_192f: Unknown result type (might be due to invalid IL or missing references) //IL_1627: Unknown result type (might be due to invalid IL or missing references) //IL_162d: Unknown result type (might be due to invalid IL or missing references) //IL_1632: Unknown result type (might be due to invalid IL or missing references) //IL_163d: Unknown result type (might be due to invalid IL or missing references) //IL_164e: Unknown result type (might be due to invalid IL or missing references) //IL_1658: Unknown result type (might be due to invalid IL or missing references) //IL_165d: Unknown result type (might be due to invalid IL or missing references) //IL_1668: Unknown result type (might be due to invalid IL or missing references) //IL_1672: Unknown result type (might be due to invalid IL or missing references) //IL_1677: Unknown result type (might be due to invalid IL or missing references) //IL_1682: Unknown result type (might be due to invalid IL or missing references) //IL_1688: Unknown result type (might be due to invalid IL or missing references) //IL_168d: Unknown result type (might be due to invalid IL or missing references) //IL_1698: Unknown result type (might be due to invalid IL or missing references) //IL_16a9: Unknown result type (might be due to invalid IL or missing references) //IL_16ae: Unknown result type (might be due to invalid IL or missing references) //IL_16b9: Unknown result type (might be due to invalid IL or missing references) //IL_16ca: Unknown result type (might be due to invalid IL or missing references) //IL_16d4: Unknown result type (might be due to invalid IL or missing references) //IL_16d9: Unknown result type (might be due to invalid IL or missing references) //IL_16e4: Unknown result type (might be due to invalid IL or missing references) //IL_16ee: Unknown result type (might be due to invalid IL or missing references) //IL_16f3: Unknown result type (might be due to invalid IL or missing references) //IL_16ff: Unknown result type (might be due to invalid IL or missing references) //IL_1969: Unknown result type (might be due to invalid IL or missing references) //IL_196f: Unknown result type (might be due to invalid IL or missing references) //IL_1974: Unknown result type (might be due to invalid IL or missing references) //IL_197f: Unknown result type (might be due to invalid IL or missing references) //IL_1990: Unknown result type (might be due to invalid IL or missing references) //IL_199a: Unknown result type (might be due to invalid IL or missing references) //IL_199f: Unknown result type (might be due to invalid IL or missing references) //IL_19aa: Unknown result type (might be due to invalid IL or missing references) //IL_19b0: Unknown result type (might be due to invalid IL or missing references) //IL_19b5: Unknown result type (might be due to invalid IL or missing references) //IL_19c0: Unknown result type (might be due to invalid IL or missing references) //IL_19ca: Unknown result type (might be due to invalid IL or missing references) //IL_19db: Unknown result type (might be due to invalid IL or missing references) //IL_19e0: Unknown result type (might be due to invalid IL or missing references) //IL_19eb: Unknown result type (might be due to invalid IL or missing references) //IL_19fc: Unknown result type (might be due to invalid IL or missing references) //IL_1a06: Unknown result type (might be due to invalid IL or missing references) //IL_1a0b: Unknown result type (might be due to invalid IL or missing references) //IL_1a17: Unknown result type (might be due to invalid IL or missing references) //IL_1d17: Unknown result type (might be due to invalid IL or missing references) //IL_1d1c: Unknown result type (might be due to invalid IL or missing references) //IL_1d2a: Unknown result type (might be due to invalid IL or missing references) //IL_1d2f: Unknown result type (might be due to invalid IL or missing references) //IL_1d48: Unknown result type (might be due to invalid IL or missing references) //IL_1d4d: Unknown result type (might be due to invalid IL or missing references) //IL_1d5b: Unknown result type (might be due to invalid IL or missing references) //IL_1d60: Unknown result type (might be due to invalid IL or missing references) //IL_1d6a: Unknown result type (might be due to invalid IL or missing references) //IL_1d6f: Unknown result type (might be due to invalid IL or missing references) //IL_1a51: Unknown result type (might be due to invalid IL or missing references) //IL_1a57: Unknown result type (might be due to invalid IL or missing references) //IL_1a5c: Unknown result type (might be due to invalid IL or missing references) //IL_1a67: Unknown result type (might be due to invalid IL or missing references) //IL_1a78: Unknown result type (might be due to invalid IL or missing references) //IL_1a82: Unknown result type (might be due to invalid IL or missing references) //IL_1a87: Unknown result type (might be due to invalid IL or missing references) //IL_1a92: Unknown result type (might be due to invalid IL or missing references) //IL_1a98: Unknown result type (might be due to invalid IL or missing references) //IL_1a9d: Unknown result type (might be due to invalid IL or missing references) //IL_1aa8: Unknown result type (might be due to invalid IL or missing references) //IL_1ab2: Unknown result type (might be due to invalid IL or missing references) //IL_1ac3: Unknown result type (might be due to invalid IL or missing references) //IL_1ac8: Unknown result type (might be due to invalid IL or missing references) //IL_1ad3: Unknown result type (might be due to invalid IL or missing references) //IL_1ae4: Unknown result type (might be due to invalid IL or missing references) //IL_1aee: Unknown result type (might be due to invalid IL or missing references) //IL_1af3: Unknown result type (might be due to invalid IL or missing references) //IL_1aff: Unknown result type (might be due to invalid IL or missing references) //IL_1b39: Unknown result type (might be due to invalid IL or missing references) //IL_1b3f: Unknown result type (might be due to invalid IL or missing references) //IL_1b44: Unknown result type (might be due to invalid IL or missing references) //IL_1b4f: Unknown result type (might be due to invalid IL or missing references) //IL_1b60: Unknown result type (might be due to invalid IL or missing references) //IL_1b6a: Unknown result type (might be due to invalid IL or missing references) //IL_1b6f: Unknown result type (might be due to invalid IL or missing references) //IL_1b7a: Unknown result type (might be due to invalid IL or missing references) //IL_1b80: Unknown result type (might be due to invalid IL or missing references) //IL_1b85: Unknown result type (might be due to invalid IL or missing references) //IL_1b90: Unknown result type (might be due to invalid IL or missing references) //IL_1b9a: Unknown result type (might be due to invalid IL or missing references) //IL_1bab: Unknown result type (might be due to invalid IL or missing references) //IL_1bb0: Unknown result type (might be due to invalid IL or missing references) //IL_1bbb: Unknown result type (might be due to invalid IL or missing references) //IL_1bcc: Unknown result type (might be due to invalid IL or missing references) //IL_1bd6: Unknown result type (might be due to invalid IL or missing references) //IL_1bdb: Unknown result type (might be due to invalid IL or missing references) //IL_1be7: Unknown result type (might be due to invalid IL or missing references) //IL_1c21: Unknown result type (might be due to invalid IL or missing references) //IL_1c27: Unknown result type (might be due to invalid IL or missing references) //IL_1c2c: Unknown result type (might be due to invalid IL or missing references) //IL_1c37: Unknown result type (might be due to invalid IL or missing references) //IL_1c48: Unknown result type (might be due to invalid IL or missing references) //IL_1c52: Unknown result type (might be due to invalid IL or missing references) //IL_1c57: Unknown result type (might be due to invalid IL or missing references) //IL_1c62: Unknown result type (might be due to invalid IL or missing references) //IL_1c68: Unknown result type (might be due to invalid IL or missing references) //IL_1c6d: Unknown result type (might be due to invalid IL or missing references) //IL_1c78: Unknown result type (might be due to invalid IL or missing references) //IL_1c82: Unknown result type (might be due to invalid IL or missing references) //IL_1c93: Unknown result type (might be due to invalid IL or missing references) //IL_1c98: Unknown result type (might be due to invalid IL or missing references) //IL_1ca3: Unknown result type (might be due to invalid IL or missing references) //IL_1cb4: Unknown result type (might be due to invalid IL or missing references) //IL_1cbe: Unknown result type (might be due to invalid IL or missing references) //IL_1cc3: Unknown result type (might be due to invalid IL or missing references) //IL_1ccf: Unknown result type (might be due to invalid IL or missing references) ScriptEnablingDisabling(); i++; if (i == climbing.Length) { i = 0; } if (!firstTest && !secondTest && !thirdTest && !fourthTest && !fifthTest) { SetClimbingVariables(); } if ((Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2)) { if (!currentlyClimbingWall) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 1f; } firstTest = true; if (currentlyClimbingWall || (!currentlyClimbingWall && !reachedTopPoint && !reachedBottomPoint && ((!reachedLeftPoint && !reachedRightPoint) || !stopAtSides2))) { wallIsClimbable = true; } else if (!currentlyClimbingWall) { wallIsClimbable = false; } climbableWallInFront = true; if (currentlyClimbingWall && ((Component)this).transform.rotation == lastRot2) { finishedRotatingToWall = true; } } else if (!pullingUp) { firstTest = false; wallIsClimbable = false; climbableWallInFront = false; if (((Component)this).transform.rotation == lastRot2 && wallInFront) { if ((Object)(object)animator != (Object)null) { AnimatorStateInfo currentAnimatorStateInfo = animator.GetCurrentAnimatorStateInfo(0); if (((AnimatorStateInfo)(ref currentAnimatorStateInfo)).IsName("Climbing") && !currentlyClimbingWall) { animator.CrossFade(entryAnimation, 0f, -1, 0f); } } currentlyClimbingWall = false; } if (!currentlyClimbingWall) { finishedRotatingToWall = false; } } if ((Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers))) && (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f + ((Component)this).transform.right / 4.25f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f + ((Component)this).transform.right / 4.5f, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f + ((Component)this).transform.right / 4.25f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f + ((Component)this).transform.right / 4.5f, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f + ((Component)this).transform.right / 4.25f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f + ((Component)this).transform.right / 4.5f, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f + ((Component)this).transform.right / 4.25f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f + ((Component)this).transform.right / 4.5f, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f + ((Component)this).transform.right / 4.25f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f + ((Component)this).transform.right / 4.5f, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f + ((Component)this).transform.right / 4.25f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f + ((Component)this).transform.right / 4.5f, ref hit, LayerMask.op_Implicit(collisionLayers))) && (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f - ((Component)this).transform.right / 4.25f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f - ((Component)this).transform.right / 4.25f, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f - ((Component)this).transform.right / 4.25f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f - ((Component)this).transform.right / 4.25f, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f - ((Component)this).transform.right / 4.25f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f - ((Component)this).transform.right / 4.25f, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f - ((Component)this).transform.right / 4.25f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f - ((Component)this).transform.right / 4.25f, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f - ((Component)this).transform.right / 4.25f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f - ((Component)this).transform.right / 4.25f, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f - ((Component)this).transform.right / 4.25f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f - ((Component)this).transform.right / 4.25f, ref hit, LayerMask.op_Implicit(collisionLayers)))) { wallInFront = true; } else { wallInFront = false; } i++; if (i == climbing.Length) { i = 0; } if (!firstTest && !secondTest && !thirdTest && !fourthTest && !fifthTest) { SetClimbingVariables(); } if ((Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * 2f * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * 2f * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * 2f * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * 2f * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * 2f * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * 2f * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2)) { secondTest = true; centerPoint = new Vector3(((RaycastHit)(ref hit)).transform.position.x - ((Component)this).transform.position.x, 0f, ((RaycastHit)(ref hit)).transform.position.z - ((Component)this).transform.position.z); } else { secondTest = false; } } private void ClimbingWall() { //IL_094f: Unknown result type (might be due to invalid IL or missing references) //IL_0954: Unknown result type (might be due to invalid IL or missing references) //IL_0117: Unknown result type (might be due to invalid IL or missing references) //IL_011c: Unknown result type (might be due to invalid IL or missing references) //IL_0133: Unknown result type (might be due to invalid IL or missing references) //IL_0138: Unknown result type (might be due to invalid IL or missing references) //IL_0143: Unknown result type (might be due to invalid IL or missing references) //IL_0148: Unknown result type (might be due to invalid IL or missing references) //IL_01df: Unknown result type (might be due to invalid IL or missing references) //IL_01e4: Unknown result type (might be due to invalid IL or missing references) //IL_01ea: Unknown result type (might be due to invalid IL or missing references) //IL_01ef: Unknown result type (might be due to invalid IL or missing references) //IL_06fa: Unknown result type (might be due to invalid IL or missing references) //IL_06ff: Unknown result type (might be due to invalid IL or missing references) //IL_070f: Unknown result type (might be due to invalid IL or missing references) //IL_0714: Unknown result type (might be due to invalid IL or missing references) //IL_07a0: Unknown result type (might be due to invalid IL or missing references) //IL_07a5: Unknown result type (might be due to invalid IL or missing references) //IL_077a: Unknown result type (might be due to invalid IL or missing references) //IL_0780: Unknown result type (might be due to invalid IL or missing references) //IL_078a: Unknown result type (might be due to invalid IL or missing references) //IL_078f: Unknown result type (might be due to invalid IL or missing references) //IL_0742: Unknown result type (might be due to invalid IL or missing references) //IL_074c: Unknown result type (might be due to invalid IL or missing references) //IL_0751: Unknown result type (might be due to invalid IL or missing references) //IL_06e6: Unknown result type (might be due to invalid IL or missing references) //IL_06eb: Unknown result type (might be due to invalid IL or missing references) //IL_07df: Unknown result type (might be due to invalid IL or missing references) //IL_07e4: Unknown result type (might be due to invalid IL or missing references) //IL_07be: Unknown result type (might be due to invalid IL or missing references) //IL_07c3: Unknown result type (might be due to invalid IL or missing references) //IL_0696: Unknown result type (might be due to invalid IL or missing references) //IL_069b: Unknown result type (might be due to invalid IL or missing references) //IL_060c: Unknown result type (might be due to invalid IL or missing references) //IL_0611: Unknown result type (might be due to invalid IL or missing references) //IL_061c: Unknown result type (might be due to invalid IL or missing references) //IL_0621: Unknown result type (might be due to invalid IL or missing references) //IL_06c3: Unknown result type (might be due to invalid IL or missing references) //IL_06c8: Unknown result type (might be due to invalid IL or missing references) //IL_06d3: Unknown result type (might be due to invalid IL or missing references) //IL_06d8: Unknown result type (might be due to invalid IL or missing references) //IL_062e: Unknown result type (might be due to invalid IL or missing references) //IL_0633: Unknown result type (might be due to invalid IL or missing references) //IL_0508: Unknown result type (might be due to invalid IL or missing references) //IL_050d: Unknown result type (might be due to invalid IL or missing references) //IL_0518: Unknown result type (might be due to invalid IL or missing references) //IL_051d: Unknown result type (might be due to invalid IL or missing references) //IL_03d9: Unknown result type (might be due to invalid IL or missing references) //IL_03de: Unknown result type (might be due to invalid IL or missing references) //IL_0545: Unknown result type (might be due to invalid IL or missing references) //IL_054a: Unknown result type (might be due to invalid IL or missing references) //IL_055f: Unknown result type (might be due to invalid IL or missing references) //IL_0564: Unknown result type (might be due to invalid IL or missing references) //IL_0569: Unknown result type (might be due to invalid IL or missing references) //IL_0574: Unknown result type (might be due to invalid IL or missing references) //IL_0579: Unknown result type (might be due to invalid IL or missing references) //IL_048d: Unknown result type (might be due to invalid IL or missing references) //IL_0492: Unknown result type (might be due to invalid IL or missing references) //IL_049d: Unknown result type (might be due to invalid IL or missing references) //IL_04a2: Unknown result type (might be due to invalid IL or missing references) if (currentlyClimbingWall && !pullingUp) { if ((Input.GetAxisRaw("Horizontal") > 0f && lastAxis <= 0f) || (Input.GetAxisRaw("Horizontal") < 0f && lastAxis >= 0f)) { switchedDirection = true; } lastAxis = Input.GetAxisRaw("Horizontal"); if (Input.GetAxisRaw("Vertical") >= 0f || (switchedDirection && !downCanBePressed) || !grounded.currentlyGrounded) { downCanBePressed = true; if (Input.GetAxisRaw("Vertical") > 0f || !grounded.currentlyGrounded) { climbedUpAlready = true; } } else if (downCanBePressed && grounded.currentlyGrounded) { if (dropOffAtFloor2) { moveDirection = Vector3.zero; jumpedOffClimbableObjectTimer = 0f; jumpedOffClimbableObjectDirection = -((Component)this).transform.forward * distanceToPushOffAfterLettingGo2; currentlyClimbingWall = false; } else { downCanBePressed = false; climbedUpAlready = false; reachedBottomPoint = true; } } switchedDirection = false; if (Input.GetAxisRaw("Vertical") < 0f && Input.GetAxisRaw("Horizontal") == 0f && (!downCanBePressed || (reachedBottomPoint && (!dropOffAtBottom2 || (grounded.currentlyGrounded && !dropOffAtFloor2))))) { climbDirection = Vector3.zero; moveDirection = Vector3.zero; } WallClimbingRotation(); CheckIfStuck(); if (moveInBursts) { if (beginClimbBurst) { climbingMovement = Mathf.Lerp(climbingMovement, climbMovementSpeed2, (2f + climbMovementSpeed2) * (climbingMovement / 2f + 1f) / burstLength * Time.deltaTime); } else { climbingMovement = Mathf.Lerp(climbingMovement, 0f, (2f + climbMovementSpeed2) * (climbingMovement / 2f + 1f) / burstLength * Time.deltaTime); } if (climbMovementSpeed2 - climbingMovement < 0.1f) { beginClimbBurst = false; } else if (climbingMovement < 0.1f) { beginClimbBurst = true; } } else { climbingMovement = climbMovementSpeed2; } if (((Vector3)(ref directionVector)).magnitude != 0f) { if (climbHorizontally2 && climbVertically2 && !sideScrolling.lockMovementOnXAxis && !sideScrolling.lockMovementOnZAxis) { if (stopAtSides2 && ((reachedRightPoint && Input.GetAxis("Horizontal") > 0f) || (reachedLeftPoint && Input.GetAxis("Horizontal") < 0f)) && (!downCanBePressed || (reachedTopPoint && Input.GetAxis("Vertical") > 0f) || (reachedBottomPoint && Input.GetAxis("Vertical") < 0f))) { climbDirection = Vector3.zero; } else if (downCanBePressed && stopAtSides2 && ((reachedRightPoint && Input.GetAxis("Horizontal") > 0f) || (reachedLeftPoint && Input.GetAxis("Horizontal") < 0f)) && (!reachedTopPoint || Input.GetAxis("Vertical") <= 0f) && (!reachedBottomPoint || Input.GetAxis("Vertical") >= 0f)) { climbDirection = Input.GetAxis("Vertical") * ((Component)this).transform.up * climbingMovement; } else if (!downCanBePressed || (reachedTopPoint && Input.GetAxis("Vertical") > 0f) || (reachedBottomPoint && Input.GetAxis("Vertical") < 0f)) { climbDirection = Input.GetAxis("Horizontal") * ((Component)this).transform.right * climbingMovement; } else if (downCanBePressed) { climbDirection = (Input.GetAxis("Horizontal") * ((Component)this).transform.right + Input.GetAxis("Vertical") * ((Component)this).transform.up) * climbingMovement; } } else if (climbHorizontally2 && !sideScrolling.lockMovementOnXAxis && !sideScrolling.lockMovementOnZAxis) { if (!stopAtSides2 || ((!reachedRightPoint || Input.GetAxis("Horizontal") < 0f) && (!reachedLeftPoint || Input.GetAxis("Horizontal") > 0f))) { climbDirection = Input.GetAxis("Horizontal") * ((Component)this).transform.right * climbingMovement; } else { climbDirection = Vector3.zero; } } else if (climbVertically2) { if (!downCanBePressed || (reachedTopPoint && Input.GetAxis("Vertical") > 0f) || (reachedBottomPoint && Input.GetAxis("Vertical") < 0f)) { climbDirection = Vector3.zero; } else if (downCanBePressed) { climbDirection = Input.GetAxis("Vertical") * ((Component)this).transform.up * climbingMovement; } } else { climbDirection = Vector3.zero; } } else { climbDirection = Vector3.Slerp(climbDirection, Vector3.zero, 15f * Time.deltaTime); } if (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Collider)((Component)this).GetComponent()).enabled) { ((Component)this).GetComponent().Move(climbDirection * Time.deltaTime); } else if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { ((Component)this).GetComponent().MovePosition(((Component)this).transform.position + climbDirection * Time.deltaTime); } float num = ((!(((Component)this).transform.eulerAngles.y > 180f)) ? ((Component)this).transform.eulerAngles.y : (((Component)this).transform.eulerAngles.y - 360f)); if (sideScrolling.lockMovementOnXAxis && !sideScrolling.lockMovementOnZAxis) { if (num >= 90f) { horizontalValue = -1f; if (sideScrolling.rotateInwards) { bodyRotation = 180.001f; } else { bodyRotation = 179.999f; } } else { horizontalValue = 1f; if (sideScrolling.rotateInwards) { bodyRotation = -0.001f; } else { bodyRotation = 0.001f; } } } else if (sideScrolling.lockMovementOnZAxis && !sideScrolling.lockMovementOnXAxis) { if (num >= 0f) { horizontalValue = 1f; if (sideScrolling.rotateInwards) { bodyRotation = 90.001f; } else { bodyRotation = 89.999f; } } else { horizontalValue = -1f; if (sideScrolling.rotateInwards) { bodyRotation = -90.001f; } else { bodyRotation = -89.999f; } } } } else { climbDirection = Vector3.zero; downCanBePressed = false; climbedUpAlready = false; climbingMovement = 0f; beginClimbBurst = true; switchedDirection = false; } lastAxis = Input.GetAxisRaw("Horizontal"); } private void JumpOffOfClimb() { //IL_0033: Unknown result type (might be due to invalid IL or missing references) //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_0066: Unknown result type (might be due to invalid IL or missing references) //IL_0078: Unknown result type (might be due to invalid IL or missing references) //IL_007d: Unknown result type (might be due to invalid IL or missing references) //IL_0088: Unknown result type (might be due to invalid IL or missing references) //IL_008d: Unknown result type (might be due to invalid IL or missing references) if ((currentlyClimbingWall || turnBack || back2) && Input.GetButtonDown("Jump")) { moveDirection = Vector3.zero; jumpedOffClimbableObjectTimer = 0f; if (turnBack || back2) { ((Component)this).transform.rotation = backRotation; } jumpedOffClimbableObjectDirection = -((Component)this).transform.forward * distanceToPushOffAfterLettingGo2; turnBack = false; back2 = false; grounded.currentlyGrounded = true; currentlyClimbingWall = false; } PushOffWall(); } private void ClimbableObjectEdgeDetection() { //IL_0020: Unknown result type (might be due to invalid IL or missing references) //IL_0025: Unknown result type (might be due to invalid IL or missing references) SnapToCenter(); TurnToGrabLadder(); CheckClimbableEdges(); if (!currentlyClimbingWall) { climbDirection = Vector3.zero; pullUpLocationAcquired = false; movingToPullUpLocation = false; pullingUp = false; } } private void PullingUpClimbableObject() { //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_003c: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Unknown result type (might be due to invalid IL or missing references) //IL_0056: Unknown result type (might be due to invalid IL or missing references) //IL_005b: Unknown result type (might be due to invalid IL or missing references) //IL_0066: Unknown result type (might be due to invalid IL or missing references) //IL_0070: Unknown result type (might be due to invalid IL or missing references) //IL_0075: Unknown result type (might be due to invalid IL or missing references) //IL_007b: Unknown result type (might be due to invalid IL or missing references) //IL_0080: Unknown result type (might be due to invalid IL or missing references) //IL_008b: Unknown result type (might be due to invalid IL or missing references) //IL_0096: Unknown result type (might be due to invalid IL or missing references) //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_00a5: Unknown result type (might be due to invalid IL or missing references) //IL_00b0: Unknown result type (might be due to invalid IL or missing references) //IL_00ba: Unknown result type (might be due to invalid IL or missing references) //IL_00bf: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_00ca: Unknown result type (might be due to invalid IL or missing references) //IL_00d6: Unknown result type (might be due to invalid IL or missing references) //IL_0211: Unknown result type (might be due to invalid IL or missing references) //IL_021c: Unknown result type (might be due to invalid IL or missing references) //IL_0221: Unknown result type (might be due to invalid IL or missing references) //IL_023b: Unknown result type (might be due to invalid IL or missing references) //IL_0240: Unknown result type (might be due to invalid IL or missing references) //IL_0256: Unknown result type (might be due to invalid IL or missing references) //IL_025b: Unknown result type (might be due to invalid IL or missing references) //IL_0264: Unknown result type (might be due to invalid IL or missing references) //IL_0118: Unknown result type (might be due to invalid IL or missing references) //IL_011d: Unknown result type (might be due to invalid IL or missing references) //IL_0136: Unknown result type (might be due to invalid IL or missing references) //IL_013b: Unknown result type (might be due to invalid IL or missing references) //IL_0150: Unknown result type (might be due to invalid IL or missing references) //IL_0155: Unknown result type (might be due to invalid IL or missing references) //IL_015d: Unknown result type (might be due to invalid IL or missing references) //IL_0168: Unknown result type (might be due to invalid IL or missing references) //IL_016d: Unknown result type (might be due to invalid IL or missing references) //IL_0172: Unknown result type (might be due to invalid IL or missing references) //IL_0175: Unknown result type (might be due to invalid IL or missing references) //IL_0180: Unknown result type (might be due to invalid IL or missing references) //IL_0185: Unknown result type (might be due to invalid IL or missing references) //IL_00f2: Unknown result type (might be due to invalid IL or missing references) //IL_00f7: Unknown result type (might be due to invalid IL or missing references) //IL_01ea: Unknown result type (might be due to invalid IL or missing references) //IL_01f0: Unknown result type (might be due to invalid IL or missing references) //IL_01fa: Unknown result type (might be due to invalid IL or missing references) //IL_01ff: Unknown result type (might be due to invalid IL or missing references) //IL_01b2: Unknown result type (might be due to invalid IL or missing references) //IL_01bc: Unknown result type (might be due to invalid IL or missing references) //IL_01c1: Unknown result type (might be due to invalid IL or missing references) //IL_03ba: Unknown result type (might be due to invalid IL or missing references) //IL_03c0: Unknown result type (might be due to invalid IL or missing references) //IL_03cb: Unknown result type (might be due to invalid IL or missing references) //IL_03d5: Unknown result type (might be due to invalid IL or missing references) //IL_03da: Unknown result type (might be due to invalid IL or missing references) //IL_02cc: Unknown result type (might be due to invalid IL or missing references) //IL_02d1: Unknown result type (might be due to invalid IL or missing references) //IL_02df: Unknown result type (might be due to invalid IL or missing references) //IL_02eb: Unknown result type (might be due to invalid IL or missing references) //IL_02f6: Unknown result type (might be due to invalid IL or missing references) //IL_0300: Unknown result type (might be due to invalid IL or missing references) //IL_0305: Unknown result type (might be due to invalid IL or missing references) //IL_0310: Unknown result type (might be due to invalid IL or missing references) //IL_0315: Unknown result type (might be due to invalid IL or missing references) //IL_031a: Unknown result type (might be due to invalid IL or missing references) //IL_031e: Unknown result type (might be due to invalid IL or missing references) //IL_0329: Unknown result type (might be due to invalid IL or missing references) //IL_032e: Unknown result type (might be due to invalid IL or missing references) //IL_0393: Unknown result type (might be due to invalid IL or missing references) //IL_0399: Unknown result type (might be due to invalid IL or missing references) //IL_03a3: Unknown result type (might be due to invalid IL or missing references) //IL_03a8: Unknown result type (might be due to invalid IL or missing references) //IL_035b: Unknown result type (might be due to invalid IL or missing references) //IL_0365: Unknown result type (might be due to invalid IL or missing references) //IL_036a: Unknown result type (might be due to invalid IL or missing references) if (pullingUp) { pullingUpTimer += 0.02f; if (pullUpLocationAcquired) { if (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.up + ((Component)this).transform.forward / 1.25f + ((Component)this).transform.up * 1.5f + pullUpLocationForward2, ((Component)this).transform.position + ((Component)this).transform.up * 0.8f + ((Component)this).transform.forward / 1.75f + pullUpLocationForward2, ref hit, LayerMask.op_Implicit(collisionLayers))) { hitPoint = ((RaycastHit)(ref hit)).point; } pullUpLocationAcquired = false; } if (movingToPullUpLocation) { Vector3 val = new Vector3(((Component)this).transform.position.x, hitPoint.y + ((Component)this).transform.up.y / 10f, ((Component)this).transform.position.z) - ((Component)this).transform.position; movementVector = ((Vector3)(ref val)).normalized * pullUpSpeed; if (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Collider)((Component)this).GetComponent()).enabled) { ((Component)this).GetComponent().Move(movementVector * Time.deltaTime); } else if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { ((Component)this).GetComponent().MovePosition(((Component)this).transform.position + movementVector * Time.deltaTime); } } if (Vector3.Distance(((Component)this).transform.position, new Vector3(((Component)this).transform.position.x, hitPoint.y + ((Component)this).transform.up.y / 10f, ((Component)this).transform.position.z)) <= 0.2f || (pullingUpTimer > Mathf.Abs(pullUpSpeed / 4f) && onWallLastUpdate)) { pullUpLocationAcquired = false; movingToPullUpLocation = false; } if (!movingToPullUpLocation) { ((Component)this).transform.eulerAngles = new Vector3(0f, ((Component)this).transform.eulerAngles.y, 0f); Vector3 val2 = hitPoint + ((Component)this).transform.forward / 10f - ((Component)this).transform.position; movementVector = ((Vector3)(ref val2)).normalized * pullUpSpeed; if (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Collider)((Component)this).GetComponent()).enabled) { ((Component)this).GetComponent().Move(movementVector * Time.deltaTime); } else if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { ((Component)this).GetComponent().MovePosition(((Component)this).transform.position + movementVector * Time.deltaTime); } } if (Vector3.Distance(((Component)this).transform.position, hitPoint + ((Component)this).transform.forward / 10f) <= 0.2f || (pullingUpTimer > Mathf.Abs(pullUpSpeed / 4f) && onWallLastUpdate)) { movingToPullUpLocation = false; wallIsClimbable = false; currentlyClimbingWall = false; pullingUp = false; } } else { pullingUpTimer = 0f; } } private void AnimatingClimbing() { //IL_0838: Unknown result type (might be due to invalid IL or missing references) //IL_083d: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_00ca: Unknown result type (might be due to invalid IL or missing references) //IL_01fc: Unknown result type (might be due to invalid IL or missing references) //IL_0201: Unknown result type (might be due to invalid IL or missing references) if (!((Object)(object)animator != (Object)null)) { return; } if (!pullingUp) { if (currentlyClimbingWall || turnBack || back2) { if (animator.GetFloat("climbState") < 1f) { animator.CrossFade("Climbing", 0f, -1, 0f); animator.SetFloat("climbState", 1f); } goto IL_0110; } if (!grounded.currentlyGrounded || animator.GetFloat("climbState") == 0f) { AnimatorStateInfo currentAnimatorStateInfo = animator.GetCurrentAnimatorStateInfo(0); if (!((AnimatorStateInfo)(ref currentAnimatorStateInfo)).IsName("Climbing")) { goto IL_00fa; } } animator.CrossFade(entryAnimation, 0f, -1, 0f); goto IL_00fa; } goto IL_080b; IL_0110: if (currentlyClimbingWall) { if (climbHorizontally2 && !sideScrolling.lockMovementOnXAxis && !sideScrolling.lockMovementOnZAxis) { if (!stopAtSides2 || ((!reachedRightPoint || Input.GetAxis("Horizontal") < 0f) && (!reachedLeftPoint || Input.GetAxis("Horizontal") > 0f))) { animator.SetFloat("climbState", Mathf.Abs(Input.GetAxis("Horizontal")) + 1f); } else { animator.SetFloat("climbState", Mathf.Lerp(animator.GetFloat("climbState"), 1f, 8f * Time.deltaTime)); } } AnimatorStateInfo currentAnimatorStateInfo2 = animator.GetCurrentAnimatorStateInfo(0); if (!((AnimatorStateInfo)(ref currentAnimatorStateInfo2)).IsName("Climbing")) { animator.CrossFade("Climbing", 0f, -1, 0f); } } if (Input.GetAxis("Horizontal") > 0f && currentlyClimbingWall && climbMovementSpeed2 > 0f && (!reachedRightPoint || !stopAtSides2)) { animator.speed = climbMovementSpeed2 / 3f / burstLength / (climbMovementSpeed2 * 2f / (3f + climbMovementSpeed2)); if (horizontalClimbSpeed <= 0f || climbingMovement < 0.1f) { animator.CrossFade("Climbing", 0.5f, -1, 0f); } horizontalClimbSpeed = 1f; } else if (Input.GetAxis("Horizontal") < 0f && currentlyClimbingWall && climbMovementSpeed2 > 0f && (!reachedLeftPoint || !stopAtSides2)) { animator.speed = climbMovementSpeed2 / 3f / burstLength / (climbMovementSpeed2 * 2f / (3f + climbMovementSpeed2)); if (horizontalClimbSpeed >= 0f || climbingMovement < 0.1f) { animator.CrossFade("Climbing", 0.5f, -1, 0f); } horizontalClimbSpeed = -1f; } else { animator.SetFloat("climbSpeedHorizontal", Mathf.Lerp(animator.GetFloat("climbSpeedHorizontal"), 0f, 15f * Time.deltaTime)); } if (Input.GetAxis("Vertical") > 0f && currentlyClimbingWall && climbMovementSpeed2 > 0f && !reachedTopPoint) { animator.speed = climbMovementSpeed2 / 3f / burstLength / (climbMovementSpeed2 * 2f / (3f + climbMovementSpeed2)); if (verticalClimbSpeed <= 0f || climbingMovement < 0.1f) { animator.CrossFade("Climbing", 0.5f, -1, 0f); if (arm == 1f) { arm = 2f; } else { arm = 1f; } } verticalClimbSpeed = 1f; } else if (Input.GetAxis("Vertical") < 0f && currentlyClimbingWall && climbMovementSpeed2 > 0f && downCanBePressed && !reachedBottomPoint) { animator.speed = climbMovementSpeed2 / 3f / burstLength / (climbMovementSpeed2 * 2f / (3f + climbMovementSpeed2)); if (verticalClimbSpeed >= 0f || climbingMovement < 0.1f) { animator.CrossFade("Climbing", 0.5f, -1, 0f); if (arm == 1f) { arm = 2f; } else { arm = 1f; } } verticalClimbSpeed = -1f; } else { animator.SetFloat("climbSpeedVertical", Mathf.Lerp(animator.GetFloat("climbSpeedVertical"), 0f, 15f * Time.deltaTime)); } animator.SetFloat("armToClimbWith", Mathf.Lerp(animator.GetFloat("armToClimbWith"), arm, 15f * Time.deltaTime)); if (currentlyClimbingWall && climbMovementSpeed2 > 0f) { if (Input.GetAxis("Vertical") != 0f && climbVertically2 && climbedUpAlready && (!reachedTopPoint || Input.GetAxis("Vertical") < 0f) && (!reachedBottomPoint || Input.GetAxis("Vertical") > 0f)) { animator.SetFloat("climbSpeedVertical", Mathf.Lerp(animator.GetFloat("climbSpeedVertical"), verticalClimbSpeed, 15f * Time.deltaTime)); } if (Input.GetAxis("Horizontal") != 0f && climbHorizontally2 && !sideScrolling.lockMovementOnXAxis && !sideScrolling.lockMovementOnZAxis && (!stopAtSides2 || ((!reachedRightPoint || Input.GetAxis("Horizontal") < 0f) && (!reachedLeftPoint || Input.GetAxis("Horizontal") > 0f)))) { animator.SetFloat("climbSpeedHorizontal", Mathf.Lerp(animator.GetFloat("climbSpeedHorizontal"), horizontalClimbSpeed, 15f * Time.deltaTime)); } } else { animator.SetFloat("climbSpeedVertical", 0f); animator.SetFloat("climbSpeedHorizontal", 0f); } goto IL_080b; IL_00fa: animator.SetFloat("climbState", 0f); goto IL_0110; IL_080b: if (pullingUp) { if (animator.GetFloat("climbState") == 0f) { AnimatorStateInfo currentAnimatorStateInfo3 = animator.GetCurrentAnimatorStateInfo(0); if (((AnimatorStateInfo)(ref currentAnimatorStateInfo3)).IsName("Climbing")) { return; } } if (!animatePullingUp) { if (onWallLastUpdate) { animator.speed = Mathf.Abs(pullUpSpeed / 4f); } else { animator.speed = pullUpSpeed / 4f; } animator.SetFloat("climbState", 0f); animator.CrossFade("Climbing", 0f, -1, 0f); animatePullingUp = true; } } else if (animatePullingUp) { animator.speed = 1f; animatePullingUp = false; } } private void DetermineGroundedState() { //IL_0900: Unknown result type (might be due to invalid IL or missing references) //IL_0906: Unknown result type (might be due to invalid IL or missing references) //IL_090b: Unknown result type (might be due to invalid IL or missing references) //IL_0911: Unknown result type (might be due to invalid IL or missing references) //IL_0917: Unknown result type (might be due to invalid IL or missing references) //IL_091c: Unknown result type (might be due to invalid IL or missing references) //IL_0928: Unknown result type (might be due to invalid IL or missing references) //IL_0013: Unknown result type (might be due to invalid IL or missing references) //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_002a: Unknown result type (might be due to invalid IL or missing references) //IL_002f: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_005b: Unknown result type (might be due to invalid IL or missing references) //IL_0060: Unknown result type (might be due to invalid IL or missing references) //IL_0066: Unknown result type (might be due to invalid IL or missing references) //IL_006b: Unknown result type (might be due to invalid IL or missing references) //IL_0071: Unknown result type (might be due to invalid IL or missing references) //IL_007c: Unknown result type (might be due to invalid IL or missing references) //IL_008d: Unknown result type (might be due to invalid IL or missing references) //IL_0092: Unknown result type (might be due to invalid IL or missing references) //IL_0098: Unknown result type (might be due to invalid IL or missing references) //IL_009d: Unknown result type (might be due to invalid IL or missing references) //IL_00a2: Unknown result type (might be due to invalid IL or missing references) //IL_00ad: Unknown result type (might be due to invalid IL or missing references) //IL_00b8: Unknown result type (might be due to invalid IL or missing references) //IL_00c9: Unknown result type (might be due to invalid IL or missing references) //IL_00ce: Unknown result type (might be due to invalid IL or missing references) //IL_00d4: Unknown result type (might be due to invalid IL or missing references) //IL_00d9: Unknown result type (might be due to invalid IL or missing references) //IL_00df: Unknown result type (might be due to invalid IL or missing references) //IL_00ea: Unknown result type (might be due to invalid IL or missing references) //IL_00fb: Unknown result type (might be due to invalid IL or missing references) //IL_0100: Unknown result type (might be due to invalid IL or missing references) //IL_0106: Unknown result type (might be due to invalid IL or missing references) //IL_010b: Unknown result type (might be due to invalid IL or missing references) //IL_0110: Unknown result type (might be due to invalid IL or missing references) //IL_011b: Unknown result type (might be due to invalid IL or missing references) //IL_0126: Unknown result type (might be due to invalid IL or missing references) //IL_0137: Unknown result type (might be due to invalid IL or missing references) //IL_013c: Unknown result type (might be due to invalid IL or missing references) //IL_0142: Unknown result type (might be due to invalid IL or missing references) //IL_0147: Unknown result type (might be due to invalid IL or missing references) //IL_014d: Unknown result type (might be due to invalid IL or missing references) //IL_0158: Unknown result type (might be due to invalid IL or missing references) //IL_0169: Unknown result type (might be due to invalid IL or missing references) //IL_016e: Unknown result type (might be due to invalid IL or missing references) //IL_0174: Unknown result type (might be due to invalid IL or missing references) //IL_0179: Unknown result type (might be due to invalid IL or missing references) //IL_017e: Unknown result type (might be due to invalid IL or missing references) //IL_0189: Unknown result type (might be due to invalid IL or missing references) //IL_0194: Unknown result type (might be due to invalid IL or missing references) //IL_01a5: Unknown result type (might be due to invalid IL or missing references) //IL_01aa: Unknown result type (might be due to invalid IL or missing references) //IL_01b0: Unknown result type (might be due to invalid IL or missing references) //IL_01b5: Unknown result type (might be due to invalid IL or missing references) //IL_01bb: Unknown result type (might be due to invalid IL or missing references) //IL_01c6: Unknown result type (might be due to invalid IL or missing references) //IL_01d7: Unknown result type (might be due to invalid IL or missing references) //IL_01dc: Unknown result type (might be due to invalid IL or missing references) //IL_01e2: Unknown result type (might be due to invalid IL or missing references) //IL_01e7: Unknown result type (might be due to invalid IL or missing references) //IL_01ec: Unknown result type (might be due to invalid IL or missing references) //IL_01f7: Unknown result type (might be due to invalid IL or missing references) //IL_0202: Unknown result type (might be due to invalid IL or missing references) //IL_0213: Unknown result type (might be due to invalid IL or missing references) //IL_0218: Unknown result type (might be due to invalid IL or missing references) //IL_0223: Unknown result type (might be due to invalid IL or missing references) //IL_0234: Unknown result type (might be due to invalid IL or missing references) //IL_0239: Unknown result type (might be due to invalid IL or missing references) //IL_023f: Unknown result type (might be due to invalid IL or missing references) //IL_0244: Unknown result type (might be due to invalid IL or missing references) //IL_024a: Unknown result type (might be due to invalid IL or missing references) //IL_0255: Unknown result type (might be due to invalid IL or missing references) //IL_0266: Unknown result type (might be due to invalid IL or missing references) //IL_026b: Unknown result type (might be due to invalid IL or missing references) //IL_0276: Unknown result type (might be due to invalid IL or missing references) //IL_0287: Unknown result type (might be due to invalid IL or missing references) //IL_028c: Unknown result type (might be due to invalid IL or missing references) //IL_0292: Unknown result type (might be due to invalid IL or missing references) //IL_0297: Unknown result type (might be due to invalid IL or missing references) //IL_029c: Unknown result type (might be due to invalid IL or missing references) //IL_02a7: Unknown result type (might be due to invalid IL or missing references) //IL_02b2: Unknown result type (might be due to invalid IL or missing references) //IL_02c3: Unknown result type (might be due to invalid IL or missing references) //IL_02c8: Unknown result type (might be due to invalid IL or missing references) //IL_02d3: Unknown result type (might be due to invalid IL or missing references) //IL_02e4: Unknown result type (might be due to invalid IL or missing references) //IL_02e9: Unknown result type (might be due to invalid IL or missing references) //IL_02ef: Unknown result type (might be due to invalid IL or missing references) //IL_02f4: Unknown result type (might be due to invalid IL or missing references) //IL_02fa: Unknown result type (might be due to invalid IL or missing references) //IL_0305: Unknown result type (might be due to invalid IL or missing references) //IL_0316: Unknown result type (might be due to invalid IL or missing references) //IL_031b: Unknown result type (might be due to invalid IL or missing references) //IL_0326: Unknown result type (might be due to invalid IL or missing references) //IL_0337: Unknown result type (might be due to invalid IL or missing references) //IL_033c: Unknown result type (might be due to invalid IL or missing references) //IL_0342: Unknown result type (might be due to invalid IL or missing references) //IL_0347: Unknown result type (might be due to invalid IL or missing references) //IL_034c: Unknown result type (might be due to invalid IL or missing references) //IL_0357: Unknown result type (might be due to invalid IL or missing references) //IL_0362: Unknown result type (might be due to invalid IL or missing references) //IL_0373: Unknown result type (might be due to invalid IL or missing references) //IL_0378: Unknown result type (might be due to invalid IL or missing references) //IL_0383: Unknown result type (might be due to invalid IL or missing references) //IL_0394: Unknown result type (might be due to invalid IL or missing references) //IL_0399: Unknown result type (might be due to invalid IL or missing references) //IL_039f: Unknown result type (might be due to invalid IL or missing references) //IL_03a4: Unknown result type (might be due to invalid IL or missing references) //IL_03aa: Unknown result type (might be due to invalid IL or missing references) //IL_03b5: Unknown result type (might be due to invalid IL or missing references) //IL_03c6: Unknown result type (might be due to invalid IL or missing references) //IL_03cb: Unknown result type (might be due to invalid IL or missing references) //IL_03d6: Unknown result type (might be due to invalid IL or missing references) //IL_03e7: Unknown result type (might be due to invalid IL or missing references) //IL_03ec: Unknown result type (might be due to invalid IL or missing references) //IL_03f2: Unknown result type (might be due to invalid IL or missing references) //IL_03f7: Unknown result type (might be due to invalid IL or missing references) //IL_03fc: Unknown result type (might be due to invalid IL or missing references) //IL_0407: Unknown result type (might be due to invalid IL or missing references) //IL_0412: Unknown result type (might be due to invalid IL or missing references) //IL_0423: Unknown result type (might be due to invalid IL or missing references) //IL_0428: Unknown result type (might be due to invalid IL or missing references) //IL_0433: Unknown result type (might be due to invalid IL or missing references) //IL_0444: Unknown result type (might be due to invalid IL or missing references) //IL_0449: Unknown result type (might be due to invalid IL or missing references) //IL_044f: Unknown result type (might be due to invalid IL or missing references) //IL_0454: Unknown result type (might be due to invalid IL or missing references) //IL_045a: Unknown result type (might be due to invalid IL or missing references) //IL_0465: Unknown result type (might be due to invalid IL or missing references) //IL_0476: Unknown result type (might be due to invalid IL or missing references) //IL_047b: Unknown result type (might be due to invalid IL or missing references) //IL_0486: Unknown result type (might be due to invalid IL or missing references) //IL_0497: Unknown result type (might be due to invalid IL or missing references) //IL_049c: Unknown result type (might be due to invalid IL or missing references) //IL_04a2: Unknown result type (might be due to invalid IL or missing references) //IL_04a7: Unknown result type (might be due to invalid IL or missing references) //IL_04ac: Unknown result type (might be due to invalid IL or missing references) //IL_04b7: Unknown result type (might be due to invalid IL or missing references) //IL_04c2: Unknown result type (might be due to invalid IL or missing references) //IL_04cd: Unknown result type (might be due to invalid IL or missing references) //IL_04d2: Unknown result type (might be due to invalid IL or missing references) //IL_04d8: Unknown result type (might be due to invalid IL or missing references) //IL_04dd: Unknown result type (might be due to invalid IL or missing references) //IL_04e3: Unknown result type (might be due to invalid IL or missing references) //IL_04ee: Unknown result type (might be due to invalid IL or missing references) //IL_04f9: Unknown result type (might be due to invalid IL or missing references) //IL_04fe: Unknown result type (might be due to invalid IL or missing references) //IL_0504: Unknown result type (might be due to invalid IL or missing references) //IL_0509: Unknown result type (might be due to invalid IL or missing references) //IL_050e: Unknown result type (might be due to invalid IL or missing references) //IL_0519: Unknown result type (might be due to invalid IL or missing references) //IL_0524: Unknown result type (might be due to invalid IL or missing references) //IL_052f: Unknown result type (might be due to invalid IL or missing references) //IL_0534: Unknown result type (might be due to invalid IL or missing references) //IL_053a: Unknown result type (might be due to invalid IL or missing references) //IL_053f: Unknown result type (might be due to invalid IL or missing references) //IL_0545: Unknown result type (might be due to invalid IL or missing references) //IL_0550: Unknown result type (might be due to invalid IL or missing references) //IL_055b: Unknown result type (might be due to invalid IL or missing references) //IL_0560: Unknown result type (might be due to invalid IL or missing references) //IL_0566: Unknown result type (might be due to invalid IL or missing references) //IL_056b: Unknown result type (might be due to invalid IL or missing references) //IL_0570: Unknown result type (might be due to invalid IL or missing references) //IL_057b: Unknown result type (might be due to invalid IL or missing references) //IL_0586: Unknown result type (might be due to invalid IL or missing references) //IL_0591: Unknown result type (might be due to invalid IL or missing references) //IL_0596: Unknown result type (might be due to invalid IL or missing references) //IL_059c: Unknown result type (might be due to invalid IL or missing references) //IL_05a1: Unknown result type (might be due to invalid IL or missing references) //IL_05a7: Unknown result type (might be due to invalid IL or missing references) //IL_05b2: Unknown result type (might be due to invalid IL or missing references) //IL_05bd: Unknown result type (might be due to invalid IL or missing references) //IL_05c2: Unknown result type (might be due to invalid IL or missing references) //IL_05c8: Unknown result type (might be due to invalid IL or missing references) //IL_05cd: Unknown result type (might be due to invalid IL or missing references) //IL_05d2: Unknown result type (might be due to invalid IL or missing references) //IL_05dd: Unknown result type (might be due to invalid IL or missing references) //IL_05e8: Unknown result type (might be due to invalid IL or missing references) //IL_05f3: Unknown result type (might be due to invalid IL or missing references) //IL_05f8: Unknown result type (might be due to invalid IL or missing references) //IL_05fe: Unknown result type (might be due to invalid IL or missing references) //IL_0603: Unknown result type (might be due to invalid IL or missing references) //IL_0609: Unknown result type (might be due to invalid IL or missing references) //IL_0614: Unknown result type (might be due to invalid IL or missing references) //IL_061f: Unknown result type (might be due to invalid IL or missing references) //IL_0624: Unknown result type (might be due to invalid IL or missing references) //IL_062a: Unknown result type (might be due to invalid IL or missing references) //IL_062f: Unknown result type (might be due to invalid IL or missing references) //IL_0634: Unknown result type (might be due to invalid IL or missing references) //IL_063f: Unknown result type (might be due to invalid IL or missing references) //IL_064a: Unknown result type (might be due to invalid IL or missing references) //IL_065b: Unknown result type (might be due to invalid IL or missing references) //IL_0660: Unknown result type (might be due to invalid IL or missing references) //IL_066b: Unknown result type (might be due to invalid IL or missing references) //IL_067c: Unknown result type (might be due to invalid IL or missing references) //IL_0681: Unknown result type (might be due to invalid IL or missing references) //IL_0687: Unknown result type (might be due to invalid IL or missing references) //IL_068c: Unknown result type (might be due to invalid IL or missing references) //IL_0692: Unknown result type (might be due to invalid IL or missing references) //IL_069d: Unknown result type (might be due to invalid IL or missing references) //IL_06ae: Unknown result type (might be due to invalid IL or missing references) //IL_06b3: Unknown result type (might be due to invalid IL or missing references) //IL_06be: Unknown result type (might be due to invalid IL or missing references) //IL_06cf: Unknown result type (might be due to invalid IL or missing references) //IL_06d4: Unknown result type (might be due to invalid IL or missing references) //IL_06da: Unknown result type (might be due to invalid IL or missing references) //IL_06df: Unknown result type (might be due to invalid IL or missing references) //IL_06e4: Unknown result type (might be due to invalid IL or missing references) //IL_06ef: Unknown result type (might be due to invalid IL or missing references) //IL_06fa: Unknown result type (might be due to invalid IL or missing references) //IL_070b: Unknown result type (might be due to invalid IL or missing references) //IL_0710: Unknown result type (might be due to invalid IL or missing references) //IL_071b: Unknown result type (might be due to invalid IL or missing references) //IL_072c: Unknown result type (might be due to invalid IL or missing references) //IL_0731: Unknown result type (might be due to invalid IL or missing references) //IL_0737: Unknown result type (might be due to invalid IL or missing references) //IL_073c: Unknown result type (might be due to invalid IL or missing references) //IL_0742: Unknown result type (might be due to invalid IL or missing references) //IL_074d: Unknown result type (might be due to invalid IL or missing references) //IL_075e: Unknown result type (might be due to invalid IL or missing references) //IL_0763: Unknown result type (might be due to invalid IL or missing references) //IL_076e: Unknown result type (might be due to invalid IL or missing references) //IL_077f: Unknown result type (might be due to invalid IL or missing references) //IL_0784: Unknown result type (might be due to invalid IL or missing references) //IL_078a: Unknown result type (might be due to invalid IL or missing references) //IL_078f: Unknown result type (might be due to invalid IL or missing references) //IL_0794: Unknown result type (might be due to invalid IL or missing references) //IL_079f: Unknown result type (might be due to invalid IL or missing references) //IL_07aa: Unknown result type (might be due to invalid IL or missing references) //IL_07bb: Unknown result type (might be due to invalid IL or missing references) //IL_07c0: Unknown result type (might be due to invalid IL or missing references) //IL_07cb: Unknown result type (might be due to invalid IL or missing references) //IL_07dc: Unknown result type (might be due to invalid IL or missing references) //IL_07e1: Unknown result type (might be due to invalid IL or missing references) //IL_07e7: Unknown result type (might be due to invalid IL or missing references) //IL_07ec: Unknown result type (might be due to invalid IL or missing references) //IL_07f2: Unknown result type (might be due to invalid IL or missing references) //IL_07fd: Unknown result type (might be due to invalid IL or missing references) //IL_080e: Unknown result type (might be due to invalid IL or missing references) //IL_0813: Unknown result type (might be due to invalid IL or missing references) //IL_081e: Unknown result type (might be due to invalid IL or missing references) //IL_082f: Unknown result type (might be due to invalid IL or missing references) //IL_0834: Unknown result type (might be due to invalid IL or missing references) //IL_083a: Unknown result type (might be due to invalid IL or missing references) //IL_083f: Unknown result type (might be due to invalid IL or missing references) //IL_0844: Unknown result type (might be due to invalid IL or missing references) //IL_084f: Unknown result type (might be due to invalid IL or missing references) //IL_085a: Unknown result type (might be due to invalid IL or missing references) //IL_086b: Unknown result type (might be due to invalid IL or missing references) //IL_0870: Unknown result type (might be due to invalid IL or missing references) //IL_087b: Unknown result type (might be due to invalid IL or missing references) //IL_088c: Unknown result type (might be due to invalid IL or missing references) //IL_0891: Unknown result type (might be due to invalid IL or missing references) //IL_0897: Unknown result type (might be due to invalid IL or missing references) //IL_089c: Unknown result type (might be due to invalid IL or missing references) //IL_08a2: Unknown result type (might be due to invalid IL or missing references) //IL_08ad: Unknown result type (might be due to invalid IL or missing references) //IL_08be: Unknown result type (might be due to invalid IL or missing references) //IL_08c3: Unknown result type (might be due to invalid IL or missing references) //IL_08ce: Unknown result type (might be due to invalid IL or missing references) //IL_08df: Unknown result type (might be due to invalid IL or missing references) //IL_08e4: Unknown result type (might be due to invalid IL or missing references) //IL_08ea: Unknown result type (might be due to invalid IL or missing references) //IL_08ef: Unknown result type (might be due to invalid IL or missing references) //IL_08f4: Unknown result type (might be due to invalid IL or missing references) //IL_093d: Unknown result type (might be due to invalid IL or missing references) //IL_0948: Unknown result type (might be due to invalid IL or missing references) //IL_0959: Unknown result type (might be due to invalid IL or missing references) //IL_095e: Unknown result type (might be due to invalid IL or missing references) //IL_0964: Unknown result type (might be due to invalid IL or missing references) //IL_0969: Unknown result type (might be due to invalid IL or missing references) //IL_096f: Unknown result type (might be due to invalid IL or missing references) //IL_097a: Unknown result type (might be due to invalid IL or missing references) //IL_098b: Unknown result type (might be due to invalid IL or missing references) //IL_0990: Unknown result type (might be due to invalid IL or missing references) //IL_0996: Unknown result type (might be due to invalid IL or missing references) //IL_099b: Unknown result type (might be due to invalid IL or missing references) //IL_09a7: Unknown result type (might be due to invalid IL or missing references) //IL_09bc: Unknown result type (might be due to invalid IL or missing references) //IL_09c7: Unknown result type (might be due to invalid IL or missing references) //IL_09d8: Unknown result type (might be due to invalid IL or missing references) //IL_09dd: Unknown result type (might be due to invalid IL or missing references) //IL_09e3: Unknown result type (might be due to invalid IL or missing references) //IL_09e8: Unknown result type (might be due to invalid IL or missing references) //IL_09ee: Unknown result type (might be due to invalid IL or missing references) //IL_09f9: Unknown result type (might be due to invalid IL or missing references) //IL_0a0a: Unknown result type (might be due to invalid IL or missing references) //IL_0a0f: Unknown result type (might be due to invalid IL or missing references) //IL_0a15: Unknown result type (might be due to invalid IL or missing references) //IL_0a1a: Unknown result type (might be due to invalid IL or missing references) //IL_0a26: Unknown result type (might be due to invalid IL or missing references) //IL_0a3b: Unknown result type (might be due to invalid IL or missing references) //IL_0a46: Unknown result type (might be due to invalid IL or missing references) //IL_0a57: Unknown result type (might be due to invalid IL or missing references) //IL_0a5c: Unknown result type (might be due to invalid IL or missing references) //IL_0a62: Unknown result type (might be due to invalid IL or missing references) //IL_0a67: Unknown result type (might be due to invalid IL or missing references) //IL_0a6d: Unknown result type (might be due to invalid IL or missing references) //IL_0a78: Unknown result type (might be due to invalid IL or missing references) //IL_0a89: Unknown result type (might be due to invalid IL or missing references) //IL_0a8e: Unknown result type (might be due to invalid IL or missing references) //IL_0a94: Unknown result type (might be due to invalid IL or missing references) //IL_0a99: Unknown result type (might be due to invalid IL or missing references) //IL_0aa5: Unknown result type (might be due to invalid IL or missing references) //IL_0aba: Unknown result type (might be due to invalid IL or missing references) //IL_0ac5: Unknown result type (might be due to invalid IL or missing references) //IL_0ad6: Unknown result type (might be due to invalid IL or missing references) //IL_0adb: Unknown result type (might be due to invalid IL or missing references) //IL_0ae1: Unknown result type (might be due to invalid IL or missing references) //IL_0ae6: Unknown result type (might be due to invalid IL or missing references) //IL_0aec: Unknown result type (might be due to invalid IL or missing references) //IL_0af7: Unknown result type (might be due to invalid IL or missing references) //IL_0b08: Unknown result type (might be due to invalid IL or missing references) //IL_0b0d: Unknown result type (might be due to invalid IL or missing references) //IL_0b13: Unknown result type (might be due to invalid IL or missing references) //IL_0b18: Unknown result type (might be due to invalid IL or missing references) //IL_0b24: Unknown result type (might be due to invalid IL or missing references) //IL_0b39: Unknown result type (might be due to invalid IL or missing references) //IL_0b44: Unknown result type (might be due to invalid IL or missing references) //IL_0b55: Unknown result type (might be due to invalid IL or missing references) //IL_0b5a: Unknown result type (might be due to invalid IL or missing references) //IL_0b65: Unknown result type (might be due to invalid IL or missing references) //IL_0b76: Unknown result type (might be due to invalid IL or missing references) //IL_0b7b: Unknown result type (might be due to invalid IL or missing references) //IL_0b81: Unknown result type (might be due to invalid IL or missing references) //IL_0b86: Unknown result type (might be due to invalid IL or missing references) //IL_0b8c: Unknown result type (might be due to invalid IL or missing references) //IL_0b97: Unknown result type (might be due to invalid IL or missing references) //IL_0ba8: Unknown result type (might be due to invalid IL or missing references) //IL_0bad: Unknown result type (might be due to invalid IL or missing references) //IL_0bb8: Unknown result type (might be due to invalid IL or missing references) //IL_0bc9: Unknown result type (might be due to invalid IL or missing references) //IL_0bce: Unknown result type (might be due to invalid IL or missing references) //IL_0bd4: Unknown result type (might be due to invalid IL or missing references) //IL_0bd9: Unknown result type (might be due to invalid IL or missing references) //IL_0be5: Unknown result type (might be due to invalid IL or missing references) //IL_0bfa: Unknown result type (might be due to invalid IL or missing references) //IL_0c05: Unknown result type (might be due to invalid IL or missing references) //IL_0c16: Unknown result type (might be due to invalid IL or missing references) //IL_0c1b: Unknown result type (might be due to invalid IL or missing references) //IL_0c26: Unknown result type (might be due to invalid IL or missing references) //IL_0c37: Unknown result type (might be due to invalid IL or missing references) //IL_0c3c: Unknown result type (might be due to invalid IL or missing references) //IL_0c42: Unknown result type (might be due to invalid IL or missing references) //IL_0c47: Unknown result type (might be due to invalid IL or missing references) //IL_0c4d: Unknown result type (might be due to invalid IL or missing references) //IL_0c58: Unknown result type (might be due to invalid IL or missing references) //IL_0c69: Unknown result type (might be due to invalid IL or missing references) //IL_0c6e: Unknown result type (might be due to invalid IL or missing references) //IL_0c79: Unknown result type (might be due to invalid IL or missing references) //IL_0c8a: Unknown result type (might be due to invalid IL or missing references) //IL_0c8f: Unknown result type (might be due to invalid IL or missing references) //IL_0c95: Unknown result type (might be due to invalid IL or missing references) //IL_0c9a: Unknown result type (might be due to invalid IL or missing references) //IL_0ca6: Unknown result type (might be due to invalid IL or missing references) //IL_0cbb: Unknown result type (might be due to invalid IL or missing references) //IL_0cc6: Unknown result type (might be due to invalid IL or missing references) //IL_0cd7: Unknown result type (might be due to invalid IL or missing references) //IL_0cdc: Unknown result type (might be due to invalid IL or missing references) //IL_0ce7: Unknown result type (might be due to invalid IL or missing references) //IL_0cf8: Unknown result type (might be due to invalid IL or missing references) //IL_0cfd: Unknown result type (might be due to invalid IL or missing references) //IL_0d03: Unknown result type (might be due to invalid IL or missing references) //IL_0d08: Unknown result type (might be due to invalid IL or missing references) //IL_0d0e: Unknown result type (might be due to invalid IL or missing references) //IL_0d19: Unknown result type (might be due to invalid IL or missing references) //IL_0d2a: Unknown result type (might be due to invalid IL or missing references) //IL_0d2f: Unknown result type (might be due to invalid IL or missing references) //IL_0d3a: Unknown result type (might be due to invalid IL or missing references) //IL_0d4b: Unknown result type (might be due to invalid IL or missing references) //IL_0d50: Unknown result type (might be due to invalid IL or missing references) //IL_0d56: Unknown result type (might be due to invalid IL or missing references) //IL_0d5b: Unknown result type (might be due to invalid IL or missing references) //IL_0d67: Unknown result type (might be due to invalid IL or missing references) //IL_0d7c: Unknown result type (might be due to invalid IL or missing references) //IL_0d87: Unknown result type (might be due to invalid IL or missing references) //IL_0d98: Unknown result type (might be due to invalid IL or missing references) //IL_0d9d: Unknown result type (might be due to invalid IL or missing references) //IL_0da8: Unknown result type (might be due to invalid IL or missing references) //IL_0db9: Unknown result type (might be due to invalid IL or missing references) //IL_0dbe: Unknown result type (might be due to invalid IL or missing references) //IL_0dc4: Unknown result type (might be due to invalid IL or missing references) //IL_0dc9: Unknown result type (might be due to invalid IL or missing references) //IL_0dcf: Unknown result type (might be due to invalid IL or missing references) //IL_0dda: Unknown result type (might be due to invalid IL or missing references) //IL_0deb: Unknown result type (might be due to invalid IL or missing references) //IL_0df0: Unknown result type (might be due to invalid IL or missing references) //IL_0dfb: Unknown result type (might be due to invalid IL or missing references) //IL_0e0c: Unknown result type (might be due to invalid IL or missing references) //IL_0e11: Unknown result type (might be due to invalid IL or missing references) //IL_0e17: Unknown result type (might be due to invalid IL or missing references) //IL_0e1c: Unknown result type (might be due to invalid IL or missing references) //IL_0e28: Unknown result type (might be due to invalid IL or missing references) //IL_0e3d: Unknown result type (might be due to invalid IL or missing references) //IL_0e48: Unknown result type (might be due to invalid IL or missing references) //IL_0e53: Unknown result type (might be due to invalid IL or missing references) //IL_0e58: Unknown result type (might be due to invalid IL or missing references) //IL_0e5e: Unknown result type (might be due to invalid IL or missing references) //IL_0e63: Unknown result type (might be due to invalid IL or missing references) //IL_0e69: Unknown result type (might be due to invalid IL or missing references) //IL_0e74: Unknown result type (might be due to invalid IL or missing references) //IL_0e7f: Unknown result type (might be due to invalid IL or missing references) //IL_0e84: Unknown result type (might be due to invalid IL or missing references) //IL_0e8a: Unknown result type (might be due to invalid IL or missing references) //IL_0e8f: Unknown result type (might be due to invalid IL or missing references) //IL_0e9b: Unknown result type (might be due to invalid IL or missing references) //IL_0eb0: Unknown result type (might be due to invalid IL or missing references) //IL_0ebb: Unknown result type (might be due to invalid IL or missing references) //IL_0ec6: Unknown result type (might be due to invalid IL or missing references) //IL_0ecb: Unknown result type (might be due to invalid IL or missing references) //IL_0ed1: Unknown result type (might be due to invalid IL or missing references) //IL_0ed6: Unknown result type (might be due to invalid IL or missing references) //IL_0edc: Unknown result type (might be due to invalid IL or missing references) //IL_0ee7: Unknown result type (might be due to invalid IL or missing references) //IL_0ef2: Unknown result type (might be due to invalid IL or missing references) //IL_0ef7: Unknown result type (might be due to invalid IL or missing references) //IL_0efd: Unknown result type (might be due to invalid IL or missing references) //IL_0f02: Unknown result type (might be due to invalid IL or missing references) //IL_0f0e: Unknown result type (might be due to invalid IL or missing references) //IL_0f23: Unknown result type (might be due to invalid IL or missing references) //IL_0f2e: Unknown result type (might be due to invalid IL or missing references) //IL_0f39: Unknown result type (might be due to invalid IL or missing references) //IL_0f3e: Unknown result type (might be due to invalid IL or missing references) //IL_0f44: Unknown result type (might be due to invalid IL or missing references) //IL_0f49: Unknown result type (might be due to invalid IL or missing references) //IL_0f4f: Unknown result type (might be due to invalid IL or missing references) //IL_0f5a: Unknown result type (might be due to invalid IL or missing references) //IL_0f65: Unknown result type (might be due to invalid IL or missing references) //IL_0f6a: Unknown result type (might be due to invalid IL or missing references) //IL_0f70: Unknown result type (might be due to invalid IL or missing references) //IL_0f75: Unknown result type (might be due to invalid IL or missing references) //IL_0f81: Unknown result type (might be due to invalid IL or missing references) //IL_0f96: Unknown result type (might be due to invalid IL or missing references) //IL_0fa1: Unknown result type (might be due to invalid IL or missing references) //IL_0fac: Unknown result type (might be due to invalid IL or missing references) //IL_0fb1: Unknown result type (might be due to invalid IL or missing references) //IL_0fb7: Unknown result type (might be due to invalid IL or missing references) //IL_0fbc: Unknown result type (might be due to invalid IL or missing references) //IL_0fc2: Unknown result type (might be due to invalid IL or missing references) //IL_0fcd: Unknown result type (might be due to invalid IL or missing references) //IL_0fd8: Unknown result type (might be due to invalid IL or missing references) //IL_0fdd: Unknown result type (might be due to invalid IL or missing references) //IL_0fe3: Unknown result type (might be due to invalid IL or missing references) //IL_0fe8: Unknown result type (might be due to invalid IL or missing references) //IL_0ff4: Unknown result type (might be due to invalid IL or missing references) //IL_1009: Unknown result type (might be due to invalid IL or missing references) //IL_1014: Unknown result type (might be due to invalid IL or missing references) //IL_1025: Unknown result type (might be due to invalid IL or missing references) //IL_102a: Unknown result type (might be due to invalid IL or missing references) //IL_1035: Unknown result type (might be due to invalid IL or missing references) //IL_1046: Unknown result type (might be due to invalid IL or missing references) //IL_104b: Unknown result type (might be due to invalid IL or missing references) //IL_1051: Unknown result type (might be due to invalid IL or missing references) //IL_1056: Unknown result type (might be due to invalid IL or missing references) //IL_105c: Unknown result type (might be due to invalid IL or missing references) //IL_1067: Unknown result type (might be due to invalid IL or missing references) //IL_1078: Unknown result type (might be due to invalid IL or missing references) //IL_107d: Unknown result type (might be due to invalid IL or missing references) //IL_1088: Unknown result type (might be due to invalid IL or missing references) //IL_1099: Unknown result type (might be due to invalid IL or missing references) //IL_109e: Unknown result type (might be due to invalid IL or missing references) //IL_10a4: Unknown result type (might be due to invalid IL or missing references) //IL_10a9: Unknown result type (might be due to invalid IL or missing references) //IL_10b5: Unknown result type (might be due to invalid IL or missing references) //IL_10ca: Unknown result type (might be due to invalid IL or missing references) //IL_10d5: Unknown result type (might be due to invalid IL or missing references) //IL_10e6: Unknown result type (might be due to invalid IL or missing references) //IL_10eb: Unknown result type (might be due to invalid IL or missing references) //IL_10f6: Unknown result type (might be due to invalid IL or missing references) //IL_1107: Unknown result type (might be due to invalid IL or missing references) //IL_110c: Unknown result type (might be due to invalid IL or missing references) //IL_1112: Unknown result type (might be due to invalid IL or missing references) //IL_1117: Unknown result type (might be due to invalid IL or missing references) //IL_111d: Unknown result type (might be due to invalid IL or missing references) //IL_1128: Unknown result type (might be due to invalid IL or missing references) //IL_1139: Unknown result type (might be due to invalid IL or missing references) //IL_113e: Unknown result type (might be due to invalid IL or missing references) //IL_1149: Unknown result type (might be due to invalid IL or missing references) //IL_115a: Unknown result type (might be due to invalid IL or missing references) //IL_115f: Unknown result type (might be due to invalid IL or missing references) //IL_1165: Unknown result type (might be due to invalid IL or missing references) //IL_116a: Unknown result type (might be due to invalid IL or missing references) //IL_1176: Unknown result type (might be due to invalid IL or missing references) //IL_118b: Unknown result type (might be due to invalid IL or missing references) //IL_1196: Unknown result type (might be due to invalid IL or missing references) //IL_11a7: Unknown result type (might be due to invalid IL or missing references) //IL_11ac: Unknown result type (might be due to invalid IL or missing references) //IL_11b7: Unknown result type (might be due to invalid IL or missing references) //IL_11c8: Unknown result type (might be due to invalid IL or missing references) //IL_11cd: Unknown result type (might be due to invalid IL or missing references) //IL_11d3: Unknown result type (might be due to invalid IL or missing references) //IL_11d8: Unknown result type (might be due to invalid IL or missing references) //IL_11de: Unknown result type (might be due to invalid IL or missing references) //IL_11e9: Unknown result type (might be due to invalid IL or missing references) //IL_11fa: Unknown result type (might be due to invalid IL or missing references) //IL_11ff: Unknown result type (might be due to invalid IL or missing references) //IL_120a: Unknown result type (might be due to invalid IL or missing references) //IL_121b: Unknown result type (might be due to invalid IL or missing references) //IL_1220: Unknown result type (might be due to invalid IL or missing references) //IL_1226: Unknown result type (might be due to invalid IL or missing references) //IL_122b: Unknown result type (might be due to invalid IL or missing references) //IL_1237: Unknown result type (might be due to invalid IL or missing references) //IL_124c: Unknown result type (might be due to invalid IL or missing references) //IL_1257: Unknown result type (might be due to invalid IL or missing references) //IL_1268: Unknown result type (might be due to invalid IL or missing references) //IL_126d: Unknown result type (might be due to invalid IL or missing references) //IL_1278: Unknown result type (might be due to invalid IL or missing references) //IL_1289: Unknown result type (might be due to invalid IL or missing references) //IL_128e: Unknown result type (might be due to invalid IL or missing references) //IL_1294: Unknown result type (might be due to invalid IL or missing references) //IL_1299: Unknown result type (might be due to invalid IL or missing references) //IL_129f: Unknown result type (might be due to invalid IL or missing references) //IL_12aa: Unknown result type (might be due to invalid IL or missing references) //IL_12bb: Unknown result type (might be due to invalid IL or missing references) //IL_12c0: Unknown result type (might be due to invalid IL or missing references) //IL_12cb: Unknown result type (might be due to invalid IL or missing references) //IL_12dc: Unknown result type (might be due to invalid IL or missing references) //IL_12e1: Unknown result type (might be due to invalid IL or missing references) //IL_12e7: Unknown result type (might be due to invalid IL or missing references) //IL_12ec: Unknown result type (might be due to invalid IL or missing references) //IL_12f8: Unknown result type (might be due to invalid IL or missing references) if (grounded.showGroundDetectionRays) { Debug.DrawLine(pos + maxGroundedHeight2, pos + maxGroundedDistanceDown, Color.yellow); Debug.DrawLine(pos - ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, pos - ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown, Color.yellow); Debug.DrawLine(pos + ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, pos + ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown, Color.yellow); Debug.DrawLine(pos - ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, pos - ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown, Color.yellow); Debug.DrawLine(pos + ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, pos + ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown, Color.yellow); Debug.DrawLine(pos - ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) - ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, pos - ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) - ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown, Color.yellow); Debug.DrawLine(pos + ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, pos + ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown, Color.yellow); Debug.DrawLine(pos - ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, pos - ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown, Color.yellow); Debug.DrawLine(pos + ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) - ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, pos + ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) - ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown, Color.yellow); Debug.DrawLine(pos - ((Component)this).transform.forward * maxGroundedRadius2 + maxGroundedHeight2, pos - ((Component)this).transform.forward * maxGroundedRadius2 + maxGroundedDistanceDown, Color.yellow); Debug.DrawLine(pos + ((Component)this).transform.forward * maxGroundedRadius2 + maxGroundedHeight2, pos + ((Component)this).transform.forward * maxGroundedRadius2 + maxGroundedDistanceDown, Color.yellow); Debug.DrawLine(pos - ((Component)this).transform.right * maxGroundedRadius2 + maxGroundedHeight2, pos - ((Component)this).transform.right * maxGroundedRadius2 + maxGroundedDistanceDown, Color.yellow); Debug.DrawLine(pos + ((Component)this).transform.right * maxGroundedRadius2 + maxGroundedHeight2, pos + ((Component)this).transform.right * maxGroundedRadius2 + maxGroundedDistanceDown, Color.yellow); Debug.DrawLine(pos - ((Component)this).transform.forward * (maxGroundedRadius2 * 0.75f) - ((Component)this).transform.right * (maxGroundedRadius2 * 0.75f) + maxGroundedHeight2, pos - ((Component)this).transform.forward * (maxGroundedRadius2 * 0.75f) - ((Component)this).transform.right * (maxGroundedRadius2 * 0.75f) + maxGroundedDistanceDown, Color.yellow); Debug.DrawLine(pos + ((Component)this).transform.forward * (maxGroundedRadius2 * 0.75f) + ((Component)this).transform.right * (maxGroundedRadius2 * 0.75f) + maxGroundedHeight2, pos + ((Component)this).transform.forward * (maxGroundedRadius2 * 0.75f) + ((Component)this).transform.right * (maxGroundedRadius2 * 0.75f) + maxGroundedDistanceDown, Color.yellow); Debug.DrawLine(pos - ((Component)this).transform.forward * (maxGroundedRadius2 * 0.75f) + ((Component)this).transform.right * (maxGroundedRadius2 * 0.75f) + maxGroundedHeight2, pos - ((Component)this).transform.forward * (maxGroundedRadius2 * 0.75f) + ((Component)this).transform.right * (maxGroundedRadius2 * 0.75f) + maxGroundedDistanceDown, Color.yellow); Debug.DrawLine(pos + ((Component)this).transform.forward * (maxGroundedRadius2 * 0.75f) - ((Component)this).transform.right * (maxGroundedRadius2 * 0.75f) + maxGroundedHeight2, pos + ((Component)this).transform.forward * (maxGroundedRadius2 * 0.75f) - ((Component)this).transform.right * (maxGroundedRadius2 * 0.75f) + maxGroundedDistanceDown, Color.yellow); } if (Physics.Linecast(pos + maxGroundedHeight2, pos + maxGroundedDistanceDown, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(pos - ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, pos - ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(pos + ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, pos + ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(pos - ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, pos - ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(pos + ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, pos + ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(pos - ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) - ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, pos - ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) - ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(pos + ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, pos + ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(pos - ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, pos - ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) + ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(pos + ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) - ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedHeight2, pos + ((Component)this).transform.forward * (maxGroundedRadius2 / 2f) - ((Component)this).transform.right * (maxGroundedRadius2 / 2f) + maxGroundedDistanceDown, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(pos - ((Component)this).transform.forward * maxGroundedRadius2 + maxGroundedHeight2, pos - ((Component)this).transform.forward * maxGroundedRadius2 + maxGroundedDistanceDown, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(pos + ((Component)this).transform.forward * maxGroundedRadius2 + maxGroundedHeight2, pos + ((Component)this).transform.forward * maxGroundedRadius2 + maxGroundedDistanceDown, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(pos - ((Component)this).transform.right * maxGroundedRadius2 + maxGroundedHeight2, pos - ((Component)this).transform.right * maxGroundedRadius2 + maxGroundedDistanceDown, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(pos + ((Component)this).transform.right * maxGroundedRadius2 + maxGroundedHeight2, pos + ((Component)this).transform.right * maxGroundedRadius2 + maxGroundedDistanceDown, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(pos - ((Component)this).transform.forward * (maxGroundedRadius2 * 0.75f) - ((Component)this).transform.right * (maxGroundedRadius2 * 0.75f) + maxGroundedHeight2, pos - ((Component)this).transform.forward * (maxGroundedRadius2 * 0.75f) - ((Component)this).transform.right * (maxGroundedRadius2 * 0.75f) + maxGroundedDistanceDown, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(pos + ((Component)this).transform.forward * (maxGroundedRadius2 * 0.75f) + ((Component)this).transform.right * (maxGroundedRadius2 * 0.75f) + maxGroundedHeight2, pos + ((Component)this).transform.forward * (maxGroundedRadius2 * 0.75f) + ((Component)this).transform.right * (maxGroundedRadius2 * 0.75f) + maxGroundedDistanceDown, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(pos - ((Component)this).transform.forward * (maxGroundedRadius2 * 0.75f) + ((Component)this).transform.right * (maxGroundedRadius2 * 0.75f) + maxGroundedHeight2, pos - ((Component)this).transform.forward * (maxGroundedRadius2 * 0.75f) + ((Component)this).transform.right * (maxGroundedRadius2 * 0.75f) + maxGroundedDistanceDown, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(pos + ((Component)this).transform.forward * (maxGroundedRadius2 * 0.75f) - ((Component)this).transform.right * (maxGroundedRadius2 * 0.75f) + maxGroundedHeight2, pos + ((Component)this).transform.forward * (maxGroundedRadius2 * 0.75f) - ((Component)this).transform.right * (maxGroundedRadius2 * 0.75f) + maxGroundedDistanceDown, ref hit, LayerMask.op_Implicit(collisionLayers))) { grounded.currentlyGrounded = true; } else { grounded.currentlyGrounded = false; } } private void LockAxisForSideScrolling() { //IL_0176: Unknown result type (might be due to invalid IL or missing references) //IL_017b: Unknown result type (might be due to invalid IL or missing references) //IL_007b: Unknown result type (might be due to invalid IL or missing references) //IL_0080: Unknown result type (might be due to invalid IL or missing references) //IL_008e: Unknown result type (might be due to invalid IL or missing references) //IL_0093: Unknown result type (might be due to invalid IL or missing references) //IL_009b: Unknown result type (might be due to invalid IL or missing references) //IL_016a: Unknown result type (might be due to invalid IL or missing references) //IL_016f: Unknown result type (might be due to invalid IL or missing references) //IL_0116: Unknown result type (might be due to invalid IL or missing references) //IL_011b: Unknown result type (might be due to invalid IL or missing references) //IL_0129: Unknown result type (might be due to invalid IL or missing references) //IL_012e: Unknown result type (might be due to invalid IL or missing references) //IL_0141: Unknown result type (might be due to invalid IL or missing references) if (sideScrolling.lockMovementOnXAxis) { moveDirection.x = 0f; if ((Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Collider)((Component)this).GetComponent()).enabled) || (!currentlyOnWall && !currentlyClimbingWall && !pullingUp)) { ((Component)this).transform.position = new Vector3(sideScrolling.xValue, ((Component)this).transform.position.y, ((Component)this).transform.position.z); } } if (sideScrolling.lockMovementOnZAxis) { moveDirection.z = 0f; if ((Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Collider)((Component)this).GetComponent()).enabled) || (!currentlyOnWall && !currentlyClimbingWall && !pullingUp)) { ((Component)this).transform.position = new Vector3(((Component)this).transform.position.x, ((Component)this).transform.position.y, sideScrolling.zValue); } } if (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && currentlyClimbingWall) { moveDirection = Vector3.zero; } slidingVector = Vector3.zero; } private void AvoidFallingWhileClimbing() { //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_00a9: Unknown result type (might be due to invalid IL or missing references) //IL_00ae: Unknown result type (might be due to invalid IL or missing references) //IL_00c3: Unknown result type (might be due to invalid IL or missing references) //IL_00c8: Unknown result type (might be due to invalid IL or missing references) //IL_006b: Unknown result type (might be due to invalid IL or missing references) //IL_0070: Unknown result type (might be due to invalid IL or missing references) //IL_0084: Unknown result type (might be due to invalid IL or missing references) //IL_0089: Unknown result type (might be due to invalid IL or missing references) //IL_0091: Unknown result type (might be due to invalid IL or missing references) if (currentlyClimbingWall && !pullingUp) { if (Mathf.Abs(((Component)this).transform.position.y - lastYPosOnWall) >= 0.2f * (climbMovementSpeed2 / 4f) && lastYPosOnWall != 0f) { ((Component)this).transform.position = new Vector3(((Component)this).transform.position.x, climbingHeight, ((Component)this).transform.position.z); } else { climbingHeight = ((Component)this).transform.position.y; } lastYPosOnWall = ((Component)this).transform.position.y; } else { lastYPosOnWall = 0f; } } private void DrawClimbingDetectors() { //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0040: Unknown result type (might be due to invalid IL or missing references) //IL_0091: Unknown result type (might be due to invalid IL or missing references) //IL_00a9: Unknown result type (might be due to invalid IL or missing references) //IL_00ae: Unknown result type (might be due to invalid IL or missing references) //IL_00ba: Unknown result type (might be due to invalid IL or missing references) //IL_00d2: Unknown result type (might be due to invalid IL or missing references) //IL_00d7: Unknown result type (might be due to invalid IL or missing references) //IL_00e3: Unknown result type (might be due to invalid IL or missing references) //IL_00f5: Unknown result type (might be due to invalid IL or missing references) //IL_00fa: Unknown result type (might be due to invalid IL or missing references) //IL_011f: Unknown result type (might be due to invalid IL or missing references) //IL_0137: Unknown result type (might be due to invalid IL or missing references) //IL_013c: Unknown result type (might be due to invalid IL or missing references) //IL_015b: Unknown result type (might be due to invalid IL or missing references) //IL_016d: Unknown result type (might be due to invalid IL or missing references) //IL_0172: Unknown result type (might be due to invalid IL or missing references) //IL_0196: Unknown result type (might be due to invalid IL or missing references) //IL_01b3: Unknown result type (might be due to invalid IL or missing references) //IL_01b8: Unknown result type (might be due to invalid IL or missing references) //IL_01c4: Unknown result type (might be due to invalid IL or missing references) //IL_01db: Unknown result type (might be due to invalid IL or missing references) //IL_01e0: Unknown result type (might be due to invalid IL or missing references) //IL_01ec: Unknown result type (might be due to invalid IL or missing references) //IL_0203: Unknown result type (might be due to invalid IL or missing references) //IL_0208: Unknown result type (might be due to invalid IL or missing references) //IL_0214: Unknown result type (might be due to invalid IL or missing references) //IL_022b: Unknown result type (might be due to invalid IL or missing references) //IL_0230: Unknown result type (might be due to invalid IL or missing references) //IL_023c: Unknown result type (might be due to invalid IL or missing references) //IL_0253: Unknown result type (might be due to invalid IL or missing references) //IL_0258: Unknown result type (might be due to invalid IL or missing references) //IL_0264: Unknown result type (might be due to invalid IL or missing references) //IL_027b: Unknown result type (might be due to invalid IL or missing references) //IL_0280: Unknown result type (might be due to invalid IL or missing references) //IL_028c: Unknown result type (might be due to invalid IL or missing references) //IL_02a9: Unknown result type (might be due to invalid IL or missing references) //IL_02ae: Unknown result type (might be due to invalid IL or missing references) //IL_02ba: Unknown result type (might be due to invalid IL or missing references) //IL_02d7: Unknown result type (might be due to invalid IL or missing references) //IL_02dc: Unknown result type (might be due to invalid IL or missing references) //IL_02e8: Unknown result type (might be due to invalid IL or missing references) //IL_02ff: Unknown result type (might be due to invalid IL or missing references) //IL_0304: Unknown result type (might be due to invalid IL or missing references) //IL_0310: Unknown result type (might be due to invalid IL or missing references) //IL_0327: Unknown result type (might be due to invalid IL or missing references) //IL_032c: Unknown result type (might be due to invalid IL or missing references) //IL_0338: Unknown result type (might be due to invalid IL or missing references) //IL_034f: Unknown result type (might be due to invalid IL or missing references) //IL_0354: Unknown result type (might be due to invalid IL or missing references) //IL_036b: Unknown result type (might be due to invalid IL or missing references) //IL_0371: Unknown result type (might be due to invalid IL or missing references) //IL_0376: Unknown result type (might be due to invalid IL or missing references) //IL_0381: Unknown result type (might be due to invalid IL or missing references) //IL_0392: Unknown result type (might be due to invalid IL or missing references) //IL_039c: Unknown result type (might be due to invalid IL or missing references) //IL_03a1: Unknown result type (might be due to invalid IL or missing references) //IL_03ac: Unknown result type (might be due to invalid IL or missing references) //IL_03b2: Unknown result type (might be due to invalid IL or missing references) //IL_03b7: Unknown result type (might be due to invalid IL or missing references) //IL_03c2: Unknown result type (might be due to invalid IL or missing references) //IL_03d3: Unknown result type (might be due to invalid IL or missing references) //IL_03d8: Unknown result type (might be due to invalid IL or missing references) //IL_03e3: Unknown result type (might be due to invalid IL or missing references) //IL_03f4: Unknown result type (might be due to invalid IL or missing references) //IL_03fe: Unknown result type (might be due to invalid IL or missing references) //IL_0403: Unknown result type (might be due to invalid IL or missing references) //IL_0408: Unknown result type (might be due to invalid IL or missing references) //IL_0418: Unknown result type (might be due to invalid IL or missing references) //IL_041e: Unknown result type (might be due to invalid IL or missing references) //IL_0423: Unknown result type (might be due to invalid IL or missing references) //IL_042e: Unknown result type (might be due to invalid IL or missing references) //IL_043f: Unknown result type (might be due to invalid IL or missing references) //IL_0449: Unknown result type (might be due to invalid IL or missing references) //IL_044e: Unknown result type (might be due to invalid IL or missing references) //IL_0459: Unknown result type (might be due to invalid IL or missing references) //IL_045f: Unknown result type (might be due to invalid IL or missing references) //IL_0464: Unknown result type (might be due to invalid IL or missing references) //IL_046f: Unknown result type (might be due to invalid IL or missing references) //IL_0480: Unknown result type (might be due to invalid IL or missing references) //IL_0485: Unknown result type (might be due to invalid IL or missing references) //IL_0490: Unknown result type (might be due to invalid IL or missing references) //IL_04a1: Unknown result type (might be due to invalid IL or missing references) //IL_04ab: Unknown result type (might be due to invalid IL or missing references) //IL_04b0: Unknown result type (might be due to invalid IL or missing references) //IL_04b5: Unknown result type (might be due to invalid IL or missing references) //IL_04c5: Unknown result type (might be due to invalid IL or missing references) //IL_04cb: Unknown result type (might be due to invalid IL or missing references) //IL_04d0: Unknown result type (might be due to invalid IL or missing references) //IL_04db: Unknown result type (might be due to invalid IL or missing references) //IL_04ec: Unknown result type (might be due to invalid IL or missing references) //IL_04f6: Unknown result type (might be due to invalid IL or missing references) //IL_04fb: Unknown result type (might be due to invalid IL or missing references) //IL_0506: Unknown result type (might be due to invalid IL or missing references) //IL_050c: Unknown result type (might be due to invalid IL or missing references) //IL_0511: Unknown result type (might be due to invalid IL or missing references) //IL_051c: Unknown result type (might be due to invalid IL or missing references) //IL_052d: Unknown result type (might be due to invalid IL or missing references) //IL_0532: Unknown result type (might be due to invalid IL or missing references) //IL_053d: Unknown result type (might be due to invalid IL or missing references) //IL_054e: Unknown result type (might be due to invalid IL or missing references) //IL_0558: Unknown result type (might be due to invalid IL or missing references) //IL_055d: Unknown result type (might be due to invalid IL or missing references) //IL_0562: Unknown result type (might be due to invalid IL or missing references) //IL_0572: Unknown result type (might be due to invalid IL or missing references) //IL_0578: Unknown result type (might be due to invalid IL or missing references) //IL_057d: Unknown result type (might be due to invalid IL or missing references) //IL_0588: Unknown result type (might be due to invalid IL or missing references) //IL_0599: Unknown result type (might be due to invalid IL or missing references) //IL_05a3: Unknown result type (might be due to invalid IL or missing references) //IL_05a8: Unknown result type (might be due to invalid IL or missing references) //IL_05b3: Unknown result type (might be due to invalid IL or missing references) //IL_05b9: Unknown result type (might be due to invalid IL or missing references) //IL_05be: Unknown result type (might be due to invalid IL or missing references) //IL_05c9: Unknown result type (might be due to invalid IL or missing references) //IL_05da: Unknown result type (might be due to invalid IL or missing references) //IL_05df: Unknown result type (might be due to invalid IL or missing references) //IL_05ea: Unknown result type (might be due to invalid IL or missing references) //IL_05fb: Unknown result type (might be due to invalid IL or missing references) //IL_0605: Unknown result type (might be due to invalid IL or missing references) //IL_060a: Unknown result type (might be due to invalid IL or missing references) //IL_060f: Unknown result type (might be due to invalid IL or missing references) //IL_061f: Unknown result type (might be due to invalid IL or missing references) //IL_0625: Unknown result type (might be due to invalid IL or missing references) //IL_062a: Unknown result type (might be due to invalid IL or missing references) //IL_0635: Unknown result type (might be due to invalid IL or missing references) //IL_0646: Unknown result type (might be due to invalid IL or missing references) //IL_0650: Unknown result type (might be due to invalid IL or missing references) //IL_0655: Unknown result type (might be due to invalid IL or missing references) //IL_0660: Unknown result type (might be due to invalid IL or missing references) //IL_0666: Unknown result type (might be due to invalid IL or missing references) //IL_066b: Unknown result type (might be due to invalid IL or missing references) //IL_0676: Unknown result type (might be due to invalid IL or missing references) //IL_0687: Unknown result type (might be due to invalid IL or missing references) //IL_068c: Unknown result type (might be due to invalid IL or missing references) //IL_0697: Unknown result type (might be due to invalid IL or missing references) //IL_06a8: Unknown result type (might be due to invalid IL or missing references) //IL_06b2: Unknown result type (might be due to invalid IL or missing references) //IL_06b7: Unknown result type (might be due to invalid IL or missing references) //IL_06bc: Unknown result type (might be due to invalid IL or missing references) //IL_06cc: Unknown result type (might be due to invalid IL or missing references) //IL_06d2: Unknown result type (might be due to invalid IL or missing references) //IL_06d7: Unknown result type (might be due to invalid IL or missing references) //IL_06e2: Unknown result type (might be due to invalid IL or missing references) //IL_06f3: Unknown result type (might be due to invalid IL or missing references) //IL_06fd: Unknown result type (might be due to invalid IL or missing references) //IL_0702: Unknown result type (might be due to invalid IL or missing references) //IL_070d: Unknown result type (might be due to invalid IL or missing references) //IL_0713: Unknown result type (might be due to invalid IL or missing references) //IL_0718: Unknown result type (might be due to invalid IL or missing references) //IL_0723: Unknown result type (might be due to invalid IL or missing references) //IL_0734: Unknown result type (might be due to invalid IL or missing references) //IL_0739: Unknown result type (might be due to invalid IL or missing references) //IL_0744: Unknown result type (might be due to invalid IL or missing references) //IL_0755: Unknown result type (might be due to invalid IL or missing references) //IL_075f: Unknown result type (might be due to invalid IL or missing references) //IL_0764: Unknown result type (might be due to invalid IL or missing references) //IL_0769: Unknown result type (might be due to invalid IL or missing references) //IL_0786: Unknown result type (might be due to invalid IL or missing references) //IL_078c: Unknown result type (might be due to invalid IL or missing references) //IL_0791: Unknown result type (might be due to invalid IL or missing references) //IL_079c: Unknown result type (might be due to invalid IL or missing references) //IL_07a6: Unknown result type (might be due to invalid IL or missing references) //IL_07ab: Unknown result type (might be due to invalid IL or missing references) //IL_07b6: Unknown result type (might be due to invalid IL or missing references) //IL_07bc: Unknown result type (might be due to invalid IL or missing references) //IL_07c1: Unknown result type (might be due to invalid IL or missing references) //IL_07cc: Unknown result type (might be due to invalid IL or missing references) //IL_07dd: Unknown result type (might be due to invalid IL or missing references) //IL_07e2: Unknown result type (might be due to invalid IL or missing references) //IL_07ed: Unknown result type (might be due to invalid IL or missing references) //IL_07f7: Unknown result type (might be due to invalid IL or missing references) //IL_07fc: Unknown result type (might be due to invalid IL or missing references) //IL_0801: Unknown result type (might be due to invalid IL or missing references) //IL_0811: Unknown result type (might be due to invalid IL or missing references) //IL_0817: Unknown result type (might be due to invalid IL or missing references) //IL_081c: Unknown result type (might be due to invalid IL or missing references) //IL_0827: Unknown result type (might be due to invalid IL or missing references) //IL_0831: Unknown result type (might be due to invalid IL or missing references) //IL_0836: Unknown result type (might be due to invalid IL or missing references) //IL_083c: Unknown result type (might be due to invalid IL or missing references) //IL_0841: Unknown result type (might be due to invalid IL or missing references) //IL_084c: Unknown result type (might be due to invalid IL or missing references) //IL_0856: Unknown result type (might be due to invalid IL or missing references) //IL_085b: Unknown result type (might be due to invalid IL or missing references) //IL_0866: Unknown result type (might be due to invalid IL or missing references) //IL_086c: Unknown result type (might be due to invalid IL or missing references) //IL_0871: Unknown result type (might be due to invalid IL or missing references) //IL_087c: Unknown result type (might be due to invalid IL or missing references) //IL_0886: Unknown result type (might be due to invalid IL or missing references) //IL_088b: Unknown result type (might be due to invalid IL or missing references) //IL_0891: Unknown result type (might be due to invalid IL or missing references) //IL_0896: Unknown result type (might be due to invalid IL or missing references) //IL_08a1: Unknown result type (might be due to invalid IL or missing references) //IL_08b2: Unknown result type (might be due to invalid IL or missing references) //IL_08b7: Unknown result type (might be due to invalid IL or missing references) //IL_08c2: Unknown result type (might be due to invalid IL or missing references) //IL_08cc: Unknown result type (might be due to invalid IL or missing references) //IL_08d1: Unknown result type (might be due to invalid IL or missing references) //IL_08d6: Unknown result type (might be due to invalid IL or missing references) //IL_08e6: Unknown result type (might be due to invalid IL or missing references) //IL_08ec: Unknown result type (might be due to invalid IL or missing references) //IL_08f1: Unknown result type (might be due to invalid IL or missing references) //IL_08fc: Unknown result type (might be due to invalid IL or missing references) //IL_0906: Unknown result type (might be due to invalid IL or missing references) //IL_090b: Unknown result type (might be due to invalid IL or missing references) //IL_0911: Unknown result type (might be due to invalid IL or missing references) //IL_0916: Unknown result type (might be due to invalid IL or missing references) //IL_0921: Unknown result type (might be due to invalid IL or missing references) //IL_092b: Unknown result type (might be due to invalid IL or missing references) //IL_0930: Unknown result type (might be due to invalid IL or missing references) //IL_093b: Unknown result type (might be due to invalid IL or missing references) //IL_0941: Unknown result type (might be due to invalid IL or missing references) //IL_0946: Unknown result type (might be due to invalid IL or missing references) //IL_0951: Unknown result type (might be due to invalid IL or missing references) //IL_095b: Unknown result type (might be due to invalid IL or missing references) //IL_0960: Unknown result type (might be due to invalid IL or missing references) //IL_0966: Unknown result type (might be due to invalid IL or missing references) //IL_096b: Unknown result type (might be due to invalid IL or missing references) //IL_0976: Unknown result type (might be due to invalid IL or missing references) //IL_0987: Unknown result type (might be due to invalid IL or missing references) //IL_098c: Unknown result type (might be due to invalid IL or missing references) //IL_0997: Unknown result type (might be due to invalid IL or missing references) //IL_09a1: Unknown result type (might be due to invalid IL or missing references) //IL_09a6: Unknown result type (might be due to invalid IL or missing references) //IL_09ab: Unknown result type (might be due to invalid IL or missing references) //IL_09bb: Unknown result type (might be due to invalid IL or missing references) //IL_09c1: Unknown result type (might be due to invalid IL or missing references) //IL_09c6: Unknown result type (might be due to invalid IL or missing references) //IL_09d1: Unknown result type (might be due to invalid IL or missing references) //IL_09db: Unknown result type (might be due to invalid IL or missing references) //IL_09e0: Unknown result type (might be due to invalid IL or missing references) //IL_09eb: Unknown result type (might be due to invalid IL or missing references) //IL_09f1: Unknown result type (might be due to invalid IL or missing references) //IL_09f6: Unknown result type (might be due to invalid IL or missing references) //IL_0a01: Unknown result type (might be due to invalid IL or missing references) //IL_0a12: Unknown result type (might be due to invalid IL or missing references) //IL_0a17: Unknown result type (might be due to invalid IL or missing references) //IL_0a22: Unknown result type (might be due to invalid IL or missing references) //IL_0a2c: Unknown result type (might be due to invalid IL or missing references) //IL_0a31: Unknown result type (might be due to invalid IL or missing references) //IL_0a36: Unknown result type (might be due to invalid IL or missing references) //IL_0a46: Unknown result type (might be due to invalid IL or missing references) //IL_0a4c: Unknown result type (might be due to invalid IL or missing references) //IL_0a51: Unknown result type (might be due to invalid IL or missing references) //IL_0a5c: Unknown result type (might be due to invalid IL or missing references) //IL_0a66: Unknown result type (might be due to invalid IL or missing references) //IL_0a6b: Unknown result type (might be due to invalid IL or missing references) //IL_0a71: Unknown result type (might be due to invalid IL or missing references) //IL_0a76: Unknown result type (might be due to invalid IL or missing references) //IL_0a81: Unknown result type (might be due to invalid IL or missing references) //IL_0a8b: Unknown result type (might be due to invalid IL or missing references) //IL_0a90: Unknown result type (might be due to invalid IL or missing references) //IL_0a9b: Unknown result type (might be due to invalid IL or missing references) //IL_0aa1: Unknown result type (might be due to invalid IL or missing references) //IL_0aa6: Unknown result type (might be due to invalid IL or missing references) //IL_0ab1: Unknown result type (might be due to invalid IL or missing references) //IL_0abb: Unknown result type (might be due to invalid IL or missing references) //IL_0ac0: Unknown result type (might be due to invalid IL or missing references) //IL_0ac6: Unknown result type (might be due to invalid IL or missing references) //IL_0acb: Unknown result type (might be due to invalid IL or missing references) //IL_0ad6: Unknown result type (might be due to invalid IL or missing references) //IL_0ae7: Unknown result type (might be due to invalid IL or missing references) //IL_0aec: Unknown result type (might be due to invalid IL or missing references) //IL_0af7: Unknown result type (might be due to invalid IL or missing references) //IL_0b01: Unknown result type (might be due to invalid IL or missing references) //IL_0b06: Unknown result type (might be due to invalid IL or missing references) //IL_0b0b: Unknown result type (might be due to invalid IL or missing references) //IL_0b1b: Unknown result type (might be due to invalid IL or missing references) //IL_0b21: Unknown result type (might be due to invalid IL or missing references) //IL_0b26: Unknown result type (might be due to invalid IL or missing references) //IL_0b31: Unknown result type (might be due to invalid IL or missing references) //IL_0b3b: Unknown result type (might be due to invalid IL or missing references) //IL_0b40: Unknown result type (might be due to invalid IL or missing references) //IL_0b46: Unknown result type (might be due to invalid IL or missing references) //IL_0b4b: Unknown result type (might be due to invalid IL or missing references) //IL_0b56: Unknown result type (might be due to invalid IL or missing references) //IL_0b60: Unknown result type (might be due to invalid IL or missing references) //IL_0b65: Unknown result type (might be due to invalid IL or missing references) //IL_0b70: Unknown result type (might be due to invalid IL or missing references) //IL_0b76: Unknown result type (might be due to invalid IL or missing references) //IL_0b7b: Unknown result type (might be due to invalid IL or missing references) //IL_0b86: Unknown result type (might be due to invalid IL or missing references) //IL_0b90: Unknown result type (might be due to invalid IL or missing references) //IL_0b95: Unknown result type (might be due to invalid IL or missing references) //IL_0b9b: Unknown result type (might be due to invalid IL or missing references) //IL_0ba0: Unknown result type (might be due to invalid IL or missing references) //IL_0bab: Unknown result type (might be due to invalid IL or missing references) //IL_0bbc: Unknown result type (might be due to invalid IL or missing references) //IL_0bc1: Unknown result type (might be due to invalid IL or missing references) //IL_0bcc: Unknown result type (might be due to invalid IL or missing references) //IL_0bd6: Unknown result type (might be due to invalid IL or missing references) //IL_0bdb: Unknown result type (might be due to invalid IL or missing references) //IL_0be0: Unknown result type (might be due to invalid IL or missing references) //IL_0bf0: Unknown result type (might be due to invalid IL or missing references) //IL_0bf6: Unknown result type (might be due to invalid IL or missing references) //IL_0c01: Unknown result type (might be due to invalid IL or missing references) //IL_0c0b: Unknown result type (might be due to invalid IL or missing references) //IL_0c1c: Unknown result type (might be due to invalid IL or missing references) //IL_0c21: Unknown result type (might be due to invalid IL or missing references) //IL_0c2b: Unknown result type (might be due to invalid IL or missing references) //IL_0c30: Unknown result type (might be due to invalid IL or missing references) //IL_0c3b: Unknown result type (might be due to invalid IL or missing references) //IL_0c45: Unknown result type (might be due to invalid IL or missing references) //IL_0c4b: Unknown result type (might be due to invalid IL or missing references) //IL_0c50: Unknown result type (might be due to invalid IL or missing references) //IL_0c55: Unknown result type (might be due to invalid IL or missing references) //IL_0c60: Unknown result type (might be due to invalid IL or missing references) //IL_0c66: Unknown result type (might be due to invalid IL or missing references) //IL_0c71: Unknown result type (might be due to invalid IL or missing references) //IL_0c7b: Unknown result type (might be due to invalid IL or missing references) //IL_0c8c: Unknown result type (might be due to invalid IL or missing references) //IL_0c91: Unknown result type (might be due to invalid IL or missing references) //IL_0c9b: Unknown result type (might be due to invalid IL or missing references) //IL_0ca0: Unknown result type (might be due to invalid IL or missing references) //IL_0cab: Unknown result type (might be due to invalid IL or missing references) //IL_0cbc: Unknown result type (might be due to invalid IL or missing references) //IL_0cc1: Unknown result type (might be due to invalid IL or missing references) //IL_0ccc: Unknown result type (might be due to invalid IL or missing references) //IL_0cd6: Unknown result type (might be due to invalid IL or missing references) //IL_0cdc: Unknown result type (might be due to invalid IL or missing references) //IL_0ce1: Unknown result type (might be due to invalid IL or missing references) //IL_0ce6: Unknown result type (might be due to invalid IL or missing references) //IL_0ceb: Unknown result type (might be due to invalid IL or missing references) //IL_0cfb: Unknown result type (might be due to invalid IL or missing references) //IL_0d01: Unknown result type (might be due to invalid IL or missing references) //IL_0d0c: Unknown result type (might be due to invalid IL or missing references) //IL_0d16: Unknown result type (might be due to invalid IL or missing references) //IL_0d27: Unknown result type (might be due to invalid IL or missing references) //IL_0d2c: Unknown result type (might be due to invalid IL or missing references) //IL_0d36: Unknown result type (might be due to invalid IL or missing references) //IL_0d40: Unknown result type (might be due to invalid IL or missing references) //IL_0d46: Unknown result type (might be due to invalid IL or missing references) //IL_0d51: Unknown result type (might be due to invalid IL or missing references) //IL_0d5b: Unknown result type (might be due to invalid IL or missing references) //IL_0d60: Unknown result type (might be due to invalid IL or missing references) //IL_0d6a: Unknown result type (might be due to invalid IL or missing references) //IL_0d6f: Unknown result type (might be due to invalid IL or missing references) //IL_0d79: Unknown result type (might be due to invalid IL or missing references) //IL_0d7e: Unknown result type (might be due to invalid IL or missing references) //IL_0d89: Unknown result type (might be due to invalid IL or missing references) //IL_0d93: Unknown result type (might be due to invalid IL or missing references) //IL_0d99: Unknown result type (might be due to invalid IL or missing references) //IL_0d9e: Unknown result type (might be due to invalid IL or missing references) //IL_0da3: Unknown result type (might be due to invalid IL or missing references) //IL_0dae: Unknown result type (might be due to invalid IL or missing references) //IL_0db4: Unknown result type (might be due to invalid IL or missing references) //IL_0dbf: Unknown result type (might be due to invalid IL or missing references) //IL_0dc9: Unknown result type (might be due to invalid IL or missing references) //IL_0dda: Unknown result type (might be due to invalid IL or missing references) //IL_0ddf: Unknown result type (might be due to invalid IL or missing references) //IL_0de9: Unknown result type (might be due to invalid IL or missing references) //IL_0df3: Unknown result type (might be due to invalid IL or missing references) //IL_0df9: Unknown result type (might be due to invalid IL or missing references) //IL_0e04: Unknown result type (might be due to invalid IL or missing references) //IL_0e0e: Unknown result type (might be due to invalid IL or missing references) //IL_0e13: Unknown result type (might be due to invalid IL or missing references) //IL_0e1d: Unknown result type (might be due to invalid IL or missing references) //IL_0e22: Unknown result type (might be due to invalid IL or missing references) //IL_0e2c: Unknown result type (might be due to invalid IL or missing references) //IL_0e31: Unknown result type (might be due to invalid IL or missing references) //IL_0e3c: Unknown result type (might be due to invalid IL or missing references) //IL_0e4d: Unknown result type (might be due to invalid IL or missing references) //IL_0e52: Unknown result type (might be due to invalid IL or missing references) //IL_0e5d: Unknown result type (might be due to invalid IL or missing references) //IL_0e67: Unknown result type (might be due to invalid IL or missing references) //IL_0e6d: Unknown result type (might be due to invalid IL or missing references) //IL_0e72: Unknown result type (might be due to invalid IL or missing references) //IL_0e77: Unknown result type (might be due to invalid IL or missing references) //IL_0e7c: Unknown result type (might be due to invalid IL or missing references) //IL_0e8c: Unknown result type (might be due to invalid IL or missing references) //IL_0e92: Unknown result type (might be due to invalid IL or missing references) //IL_0e9d: Unknown result type (might be due to invalid IL or missing references) //IL_0ea7: Unknown result type (might be due to invalid IL or missing references) //IL_0eb8: Unknown result type (might be due to invalid IL or missing references) //IL_0ebd: Unknown result type (might be due to invalid IL or missing references) //IL_0ec7: Unknown result type (might be due to invalid IL or missing references) //IL_0ecd: Unknown result type (might be due to invalid IL or missing references) //IL_0ed8: Unknown result type (might be due to invalid IL or missing references) //IL_0ee2: Unknown result type (might be due to invalid IL or missing references) //IL_0ee7: Unknown result type (might be due to invalid IL or missing references) //IL_0ef1: Unknown result type (might be due to invalid IL or missing references) //IL_0ef6: Unknown result type (might be due to invalid IL or missing references) //IL_0f00: Unknown result type (might be due to invalid IL or missing references) //IL_0f05: Unknown result type (might be due to invalid IL or missing references) //IL_0f10: Unknown result type (might be due to invalid IL or missing references) //IL_0f1a: Unknown result type (might be due to invalid IL or missing references) //IL_0f20: Unknown result type (might be due to invalid IL or missing references) //IL_0f25: Unknown result type (might be due to invalid IL or missing references) //IL_0f2a: Unknown result type (might be due to invalid IL or missing references) //IL_0f35: Unknown result type (might be due to invalid IL or missing references) //IL_0f3b: Unknown result type (might be due to invalid IL or missing references) //IL_0f46: Unknown result type (might be due to invalid IL or missing references) //IL_0f50: Unknown result type (might be due to invalid IL or missing references) //IL_0f61: Unknown result type (might be due to invalid IL or missing references) //IL_0f66: Unknown result type (might be due to invalid IL or missing references) //IL_0f70: Unknown result type (might be due to invalid IL or missing references) //IL_0f76: Unknown result type (might be due to invalid IL or missing references) //IL_0f81: Unknown result type (might be due to invalid IL or missing references) //IL_0f8b: Unknown result type (might be due to invalid IL or missing references) //IL_0f90: Unknown result type (might be due to invalid IL or missing references) //IL_0f9a: Unknown result type (might be due to invalid IL or missing references) //IL_0f9f: Unknown result type (might be due to invalid IL or missing references) //IL_0fa9: Unknown result type (might be due to invalid IL or missing references) //IL_0fae: Unknown result type (might be due to invalid IL or missing references) //IL_0fb9: Unknown result type (might be due to invalid IL or missing references) //IL_0fca: Unknown result type (might be due to invalid IL or missing references) //IL_0fcf: Unknown result type (might be due to invalid IL or missing references) //IL_0fda: Unknown result type (might be due to invalid IL or missing references) //IL_0fe4: Unknown result type (might be due to invalid IL or missing references) //IL_0fea: Unknown result type (might be due to invalid IL or missing references) //IL_0fef: Unknown result type (might be due to invalid IL or missing references) //IL_0ff4: Unknown result type (might be due to invalid IL or missing references) //IL_0ff9: Unknown result type (might be due to invalid IL or missing references) //IL_1009: Unknown result type (might be due to invalid IL or missing references) //IL_100f: Unknown result type (might be due to invalid IL or missing references) //IL_101a: Unknown result type (might be due to invalid IL or missing references) //IL_1024: Unknown result type (might be due to invalid IL or missing references) //IL_1035: Unknown result type (might be due to invalid IL or missing references) //IL_103a: Unknown result type (might be due to invalid IL or missing references) //IL_1044: Unknown result type (might be due to invalid IL or missing references) //IL_104a: Unknown result type (might be due to invalid IL or missing references) //IL_1055: Unknown result type (might be due to invalid IL or missing references) //IL_105f: Unknown result type (might be due to invalid IL or missing references) //IL_1064: Unknown result type (might be due to invalid IL or missing references) //IL_106e: Unknown result type (might be due to invalid IL or missing references) //IL_1078: Unknown result type (might be due to invalid IL or missing references) //IL_107d: Unknown result type (might be due to invalid IL or missing references) //IL_1087: Unknown result type (might be due to invalid IL or missing references) //IL_108c: Unknown result type (might be due to invalid IL or missing references) //IL_1097: Unknown result type (might be due to invalid IL or missing references) //IL_10a1: Unknown result type (might be due to invalid IL or missing references) //IL_10a7: Unknown result type (might be due to invalid IL or missing references) //IL_10ac: Unknown result type (might be due to invalid IL or missing references) //IL_10b1: Unknown result type (might be due to invalid IL or missing references) //IL_10bc: Unknown result type (might be due to invalid IL or missing references) //IL_10c2: Unknown result type (might be due to invalid IL or missing references) //IL_10cd: Unknown result type (might be due to invalid IL or missing references) //IL_10d7: Unknown result type (might be due to invalid IL or missing references) //IL_10e8: Unknown result type (might be due to invalid IL or missing references) //IL_10ed: Unknown result type (might be due to invalid IL or missing references) //IL_10f7: Unknown result type (might be due to invalid IL or missing references) //IL_10fd: Unknown result type (might be due to invalid IL or missing references) //IL_1108: Unknown result type (might be due to invalid IL or missing references) //IL_1112: Unknown result type (might be due to invalid IL or missing references) //IL_1117: Unknown result type (might be due to invalid IL or missing references) //IL_1121: Unknown result type (might be due to invalid IL or missing references) //IL_112b: Unknown result type (might be due to invalid IL or missing references) //IL_1130: Unknown result type (might be due to invalid IL or missing references) //IL_113a: Unknown result type (might be due to invalid IL or missing references) //IL_113f: Unknown result type (might be due to invalid IL or missing references) //IL_114a: Unknown result type (might be due to invalid IL or missing references) //IL_115b: Unknown result type (might be due to invalid IL or missing references) //IL_1160: Unknown result type (might be due to invalid IL or missing references) //IL_116b: Unknown result type (might be due to invalid IL or missing references) //IL_1175: Unknown result type (might be due to invalid IL or missing references) //IL_117b: Unknown result type (might be due to invalid IL or missing references) //IL_1180: Unknown result type (might be due to invalid IL or missing references) //IL_1185: Unknown result type (might be due to invalid IL or missing references) //IL_118a: Unknown result type (might be due to invalid IL or missing references) //IL_119a: Unknown result type (might be due to invalid IL or missing references) //IL_11a0: Unknown result type (might be due to invalid IL or missing references) //IL_11ab: Unknown result type (might be due to invalid IL or missing references) //IL_11b5: Unknown result type (might be due to invalid IL or missing references) //IL_11ba: Unknown result type (might be due to invalid IL or missing references) //IL_11c4: Unknown result type (might be due to invalid IL or missing references) //IL_11c9: Unknown result type (might be due to invalid IL or missing references) //IL_11d4: Unknown result type (might be due to invalid IL or missing references) //IL_11de: Unknown result type (might be due to invalid IL or missing references) //IL_11e4: Unknown result type (might be due to invalid IL or missing references) //IL_11e9: Unknown result type (might be due to invalid IL or missing references) //IL_11ee: Unknown result type (might be due to invalid IL or missing references) //IL_11f9: Unknown result type (might be due to invalid IL or missing references) //IL_11ff: Unknown result type (might be due to invalid IL or missing references) //IL_120a: Unknown result type (might be due to invalid IL or missing references) //IL_1214: Unknown result type (might be due to invalid IL or missing references) //IL_1219: Unknown result type (might be due to invalid IL or missing references) //IL_1223: Unknown result type (might be due to invalid IL or missing references) //IL_1228: Unknown result type (might be due to invalid IL or missing references) //IL_1233: Unknown result type (might be due to invalid IL or missing references) //IL_1244: Unknown result type (might be due to invalid IL or missing references) //IL_1249: Unknown result type (might be due to invalid IL or missing references) //IL_1254: Unknown result type (might be due to invalid IL or missing references) //IL_125e: Unknown result type (might be due to invalid IL or missing references) //IL_1264: Unknown result type (might be due to invalid IL or missing references) //IL_1269: Unknown result type (might be due to invalid IL or missing references) //IL_126e: Unknown result type (might be due to invalid IL or missing references) //IL_1273: Unknown result type (might be due to invalid IL or missing references) //IL_1283: Unknown result type (might be due to invalid IL or missing references) //IL_1289: Unknown result type (might be due to invalid IL or missing references) //IL_1294: Unknown result type (might be due to invalid IL or missing references) //IL_129e: Unknown result type (might be due to invalid IL or missing references) //IL_12af: Unknown result type (might be due to invalid IL or missing references) //IL_12b4: Unknown result type (might be due to invalid IL or missing references) //IL_12be: Unknown result type (might be due to invalid IL or missing references) //IL_12c3: Unknown result type (might be due to invalid IL or missing references) //IL_12ce: Unknown result type (might be due to invalid IL or missing references) //IL_12d8: Unknown result type (might be due to invalid IL or missing references) //IL_12de: Unknown result type (might be due to invalid IL or missing references) //IL_12e3: Unknown result type (might be due to invalid IL or missing references) //IL_12e8: Unknown result type (might be due to invalid IL or missing references) //IL_12f3: Unknown result type (might be due to invalid IL or missing references) //IL_12f9: Unknown result type (might be due to invalid IL or missing references) //IL_1304: Unknown result type (might be due to invalid IL or missing references) //IL_130e: Unknown result type (might be due to invalid IL or missing references) //IL_131f: Unknown result type (might be due to invalid IL or missing references) //IL_1324: Unknown result type (might be due to invalid IL or missing references) //IL_132e: Unknown result type (might be due to invalid IL or missing references) //IL_1333: Unknown result type (might be due to invalid IL or missing references) //IL_133e: Unknown result type (might be due to invalid IL or missing references) //IL_134f: Unknown result type (might be due to invalid IL or missing references) //IL_1354: Unknown result type (might be due to invalid IL or missing references) //IL_135f: Unknown result type (might be due to invalid IL or missing references) //IL_1369: Unknown result type (might be due to invalid IL or missing references) //IL_136f: Unknown result type (might be due to invalid IL or missing references) //IL_1374: Unknown result type (might be due to invalid IL or missing references) //IL_1379: Unknown result type (might be due to invalid IL or missing references) //IL_137e: Unknown result type (might be due to invalid IL or missing references) //IL_138e: Unknown result type (might be due to invalid IL or missing references) //IL_1394: Unknown result type (might be due to invalid IL or missing references) //IL_139f: Unknown result type (might be due to invalid IL or missing references) //IL_13a9: Unknown result type (might be due to invalid IL or missing references) //IL_13ba: Unknown result type (might be due to invalid IL or missing references) //IL_13bf: Unknown result type (might be due to invalid IL or missing references) //IL_13c9: Unknown result type (might be due to invalid IL or missing references) //IL_13d3: Unknown result type (might be due to invalid IL or missing references) //IL_13d9: Unknown result type (might be due to invalid IL or missing references) //IL_13e4: Unknown result type (might be due to invalid IL or missing references) //IL_13ee: Unknown result type (might be due to invalid IL or missing references) //IL_13f3: Unknown result type (might be due to invalid IL or missing references) //IL_13fd: Unknown result type (might be due to invalid IL or missing references) //IL_1402: Unknown result type (might be due to invalid IL or missing references) //IL_140c: Unknown result type (might be due to invalid IL or missing references) //IL_1411: Unknown result type (might be due to invalid IL or missing references) //IL_141c: Unknown result type (might be due to invalid IL or missing references) //IL_1426: Unknown result type (might be due to invalid IL or missing references) //IL_142c: Unknown result type (might be due to invalid IL or missing references) //IL_1431: Unknown result type (might be due to invalid IL or missing references) //IL_1436: Unknown result type (might be due to invalid IL or missing references) //IL_1441: Unknown result type (might be due to invalid IL or missing references) //IL_1447: Unknown result type (might be due to invalid IL or missing references) //IL_1452: Unknown result type (might be due to invalid IL or missing references) //IL_145c: Unknown result type (might be due to invalid IL or missing references) //IL_146d: Unknown result type (might be due to invalid IL or missing references) //IL_1472: Unknown result type (might be due to invalid IL or missing references) //IL_147c: Unknown result type (might be due to invalid IL or missing references) //IL_1486: Unknown result type (might be due to invalid IL or missing references) //IL_148c: Unknown result type (might be due to invalid IL or missing references) //IL_1497: Unknown result type (might be due to invalid IL or missing references) //IL_14a1: Unknown result type (might be due to invalid IL or missing references) //IL_14a6: Unknown result type (might be due to invalid IL or missing references) //IL_14b0: Unknown result type (might be due to invalid IL or missing references) //IL_14b5: Unknown result type (might be due to invalid IL or missing references) //IL_14bf: Unknown result type (might be due to invalid IL or missing references) //IL_14c4: Unknown result type (might be due to invalid IL or missing references) //IL_14cf: Unknown result type (might be due to invalid IL or missing references) //IL_14e0: Unknown result type (might be due to invalid IL or missing references) //IL_14e5: Unknown result type (might be due to invalid IL or missing references) //IL_14f0: Unknown result type (might be due to invalid IL or missing references) //IL_14fa: Unknown result type (might be due to invalid IL or missing references) //IL_1500: Unknown result type (might be due to invalid IL or missing references) //IL_1505: Unknown result type (might be due to invalid IL or missing references) //IL_150a: Unknown result type (might be due to invalid IL or missing references) //IL_150f: Unknown result type (might be due to invalid IL or missing references) //IL_151f: Unknown result type (might be due to invalid IL or missing references) //IL_1525: Unknown result type (might be due to invalid IL or missing references) //IL_1530: Unknown result type (might be due to invalid IL or missing references) //IL_153a: Unknown result type (might be due to invalid IL or missing references) //IL_154b: Unknown result type (might be due to invalid IL or missing references) //IL_1550: Unknown result type (might be due to invalid IL or missing references) //IL_155a: Unknown result type (might be due to invalid IL or missing references) //IL_1560: Unknown result type (might be due to invalid IL or missing references) //IL_156b: Unknown result type (might be due to invalid IL or missing references) //IL_1575: Unknown result type (might be due to invalid IL or missing references) //IL_157a: Unknown result type (might be due to invalid IL or missing references) //IL_1584: Unknown result type (might be due to invalid IL or missing references) //IL_1589: Unknown result type (might be due to invalid IL or missing references) //IL_1593: Unknown result type (might be due to invalid IL or missing references) //IL_1598: Unknown result type (might be due to invalid IL or missing references) //IL_15a3: Unknown result type (might be due to invalid IL or missing references) //IL_15ad: Unknown result type (might be due to invalid IL or missing references) //IL_15b3: Unknown result type (might be due to invalid IL or missing references) //IL_15b8: Unknown result type (might be due to invalid IL or missing references) //IL_15bd: Unknown result type (might be due to invalid IL or missing references) //IL_15c8: Unknown result type (might be due to invalid IL or missing references) //IL_15ce: Unknown result type (might be due to invalid IL or missing references) //IL_15d9: Unknown result type (might be due to invalid IL or missing references) //IL_15e3: Unknown result type (might be due to invalid IL or missing references) //IL_15f4: Unknown result type (might be due to invalid IL or missing references) //IL_15f9: Unknown result type (might be due to invalid IL or missing references) //IL_1603: Unknown result type (might be due to invalid IL or missing references) //IL_1609: Unknown result type (might be due to invalid IL or missing references) //IL_1614: Unknown result type (might be due to invalid IL or missing references) //IL_161e: Unknown result type (might be due to invalid IL or missing references) //IL_1623: Unknown result type (might be due to invalid IL or missing references) //IL_162d: Unknown result type (might be due to invalid IL or missing references) //IL_1632: Unknown result type (might be due to invalid IL or missing references) //IL_163c: Unknown result type (might be due to invalid IL or missing references) //IL_1641: Unknown result type (might be due to invalid IL or missing references) //IL_164c: Unknown result type (might be due to invalid IL or missing references) //IL_165d: Unknown result type (might be due to invalid IL or missing references) //IL_1662: Unknown result type (might be due to invalid IL or missing references) //IL_166d: Unknown result type (might be due to invalid IL or missing references) //IL_1677: Unknown result type (might be due to invalid IL or missing references) //IL_167d: Unknown result type (might be due to invalid IL or missing references) //IL_1682: Unknown result type (might be due to invalid IL or missing references) //IL_1687: Unknown result type (might be due to invalid IL or missing references) //IL_168c: Unknown result type (might be due to invalid IL or missing references) //IL_169c: Unknown result type (might be due to invalid IL or missing references) //IL_16a2: Unknown result type (might be due to invalid IL or missing references) //IL_16ad: Unknown result type (might be due to invalid IL or missing references) //IL_16b7: Unknown result type (might be due to invalid IL or missing references) //IL_16c8: Unknown result type (might be due to invalid IL or missing references) //IL_16cd: Unknown result type (might be due to invalid IL or missing references) //IL_16d7: Unknown result type (might be due to invalid IL or missing references) //IL_16dd: Unknown result type (might be due to invalid IL or missing references) //IL_16e8: Unknown result type (might be due to invalid IL or missing references) //IL_16f2: Unknown result type (might be due to invalid IL or missing references) //IL_16f7: Unknown result type (might be due to invalid IL or missing references) //IL_1701: Unknown result type (might be due to invalid IL or missing references) //IL_170b: Unknown result type (might be due to invalid IL or missing references) //IL_1710: Unknown result type (might be due to invalid IL or missing references) //IL_171a: Unknown result type (might be due to invalid IL or missing references) //IL_171f: Unknown result type (might be due to invalid IL or missing references) //IL_172a: Unknown result type (might be due to invalid IL or missing references) //IL_1734: Unknown result type (might be due to invalid IL or missing references) //IL_173a: Unknown result type (might be due to invalid IL or missing references) //IL_173f: Unknown result type (might be due to invalid IL or missing references) //IL_1744: Unknown result type (might be due to invalid IL or missing references) //IL_174f: Unknown result type (might be due to invalid IL or missing references) //IL_1755: Unknown result type (might be due to invalid IL or missing references) //IL_1760: Unknown result type (might be due to invalid IL or missing references) //IL_176a: Unknown result type (might be due to invalid IL or missing references) //IL_177b: Unknown result type (might be due to invalid IL or missing references) //IL_1780: Unknown result type (might be due to invalid IL or missing references) //IL_178a: Unknown result type (might be due to invalid IL or missing references) //IL_1790: Unknown result type (might be due to invalid IL or missing references) //IL_179b: Unknown result type (might be due to invalid IL or missing references) //IL_17a5: Unknown result type (might be due to invalid IL or missing references) //IL_17aa: Unknown result type (might be due to invalid IL or missing references) //IL_17b4: Unknown result type (might be due to invalid IL or missing references) //IL_17be: Unknown result type (might be due to invalid IL or missing references) //IL_17c3: Unknown result type (might be due to invalid IL or missing references) //IL_17cd: Unknown result type (might be due to invalid IL or missing references) //IL_17d2: Unknown result type (might be due to invalid IL or missing references) //IL_17dd: Unknown result type (might be due to invalid IL or missing references) //IL_17ee: Unknown result type (might be due to invalid IL or missing references) //IL_17f3: Unknown result type (might be due to invalid IL or missing references) //IL_17fe: Unknown result type (might be due to invalid IL or missing references) //IL_1808: Unknown result type (might be due to invalid IL or missing references) //IL_180e: Unknown result type (might be due to invalid IL or missing references) //IL_1813: Unknown result type (might be due to invalid IL or missing references) //IL_1818: Unknown result type (might be due to invalid IL or missing references) //IL_181d: Unknown result type (might be due to invalid IL or missing references) //IL_182d: Unknown result type (might be due to invalid IL or missing references) //IL_1833: Unknown result type (might be due to invalid IL or missing references) //IL_183e: Unknown result type (might be due to invalid IL or missing references) //IL_1848: Unknown result type (might be due to invalid IL or missing references) //IL_184d: Unknown result type (might be due to invalid IL or missing references) //IL_1857: Unknown result type (might be due to invalid IL or missing references) //IL_185c: Unknown result type (might be due to invalid IL or missing references) //IL_1867: Unknown result type (might be due to invalid IL or missing references) //IL_1871: Unknown result type (might be due to invalid IL or missing references) //IL_1877: Unknown result type (might be due to invalid IL or missing references) //IL_187c: Unknown result type (might be due to invalid IL or missing references) //IL_1881: Unknown result type (might be due to invalid IL or missing references) //IL_188c: Unknown result type (might be due to invalid IL or missing references) //IL_1892: Unknown result type (might be due to invalid IL or missing references) //IL_189d: Unknown result type (might be due to invalid IL or missing references) //IL_18a7: Unknown result type (might be due to invalid IL or missing references) //IL_18ac: Unknown result type (might be due to invalid IL or missing references) //IL_18b6: Unknown result type (might be due to invalid IL or missing references) //IL_18bb: Unknown result type (might be due to invalid IL or missing references) //IL_18c6: Unknown result type (might be due to invalid IL or missing references) //IL_18d7: Unknown result type (might be due to invalid IL or missing references) //IL_18dc: Unknown result type (might be due to invalid IL or missing references) //IL_18e7: Unknown result type (might be due to invalid IL or missing references) //IL_18f1: Unknown result type (might be due to invalid IL or missing references) //IL_18f7: Unknown result type (might be due to invalid IL or missing references) //IL_18fc: Unknown result type (might be due to invalid IL or missing references) //IL_1901: Unknown result type (might be due to invalid IL or missing references) //IL_1906: Unknown result type (might be due to invalid IL or missing references) //IL_1923: Unknown result type (might be due to invalid IL or missing references) //IL_192e: Unknown result type (might be due to invalid IL or missing references) //IL_1938: Unknown result type (might be due to invalid IL or missing references) //IL_193d: Unknown result type (might be due to invalid IL or missing references) //IL_1948: Unknown result type (might be due to invalid IL or missing references) //IL_1953: Unknown result type (might be due to invalid IL or missing references) //IL_195d: Unknown result type (might be due to invalid IL or missing references) //IL_1962: Unknown result type (might be due to invalid IL or missing references) //IL_196d: Unknown result type (might be due to invalid IL or missing references) //IL_1977: Unknown result type (might be due to invalid IL or missing references) //IL_197c: Unknown result type (might be due to invalid IL or missing references) //IL_1982: Unknown result type (might be due to invalid IL or missing references) //IL_1987: Unknown result type (might be due to invalid IL or missing references) //IL_198c: Unknown result type (might be due to invalid IL or missing references) //IL_199c: Unknown result type (might be due to invalid IL or missing references) //IL_19a7: Unknown result type (might be due to invalid IL or missing references) //IL_19b1: Unknown result type (might be due to invalid IL or missing references) //IL_19b6: Unknown result type (might be due to invalid IL or missing references) //IL_19c1: Unknown result type (might be due to invalid IL or missing references) //IL_19cb: Unknown result type (might be due to invalid IL or missing references) //IL_19d0: Unknown result type (might be due to invalid IL or missing references) //IL_19d6: Unknown result type (might be due to invalid IL or missing references) //IL_19db: Unknown result type (might be due to invalid IL or missing references) //IL_19e6: Unknown result type (might be due to invalid IL or missing references) //IL_19f1: Unknown result type (might be due to invalid IL or missing references) //IL_19fb: Unknown result type (might be due to invalid IL or missing references) //IL_1a00: Unknown result type (might be due to invalid IL or missing references) //IL_1a0b: Unknown result type (might be due to invalid IL or missing references) //IL_1a15: Unknown result type (might be due to invalid IL or missing references) //IL_1a1a: Unknown result type (might be due to invalid IL or missing references) //IL_1a20: Unknown result type (might be due to invalid IL or missing references) //IL_1a25: Unknown result type (might be due to invalid IL or missing references) //IL_1a2b: Unknown result type (might be due to invalid IL or missing references) //IL_1a30: Unknown result type (might be due to invalid IL or missing references) //IL_1a35: Unknown result type (might be due to invalid IL or missing references) //IL_1a45: Unknown result type (might be due to invalid IL or missing references) //IL_1a50: Unknown result type (might be due to invalid IL or missing references) //IL_1a5a: Unknown result type (might be due to invalid IL or missing references) //IL_1a5f: Unknown result type (might be due to invalid IL or missing references) //IL_1a6a: Unknown result type (might be due to invalid IL or missing references) //IL_1a74: Unknown result type (might be due to invalid IL or missing references) //IL_1a79: Unknown result type (might be due to invalid IL or missing references) //IL_1a7f: Unknown result type (might be due to invalid IL or missing references) //IL_1a84: Unknown result type (might be due to invalid IL or missing references) //IL_1a8f: Unknown result type (might be due to invalid IL or missing references) //IL_1a9a: Unknown result type (might be due to invalid IL or missing references) //IL_1aa4: Unknown result type (might be due to invalid IL or missing references) //IL_1aa9: Unknown result type (might be due to invalid IL or missing references) //IL_1ab4: Unknown result type (might be due to invalid IL or missing references) //IL_1abe: Unknown result type (might be due to invalid IL or missing references) //IL_1ac3: Unknown result type (might be due to invalid IL or missing references) //IL_1ac9: Unknown result type (might be due to invalid IL or missing references) //IL_1ace: Unknown result type (might be due to invalid IL or missing references) //IL_1ad4: Unknown result type (might be due to invalid IL or missing references) //IL_1ad9: Unknown result type (might be due to invalid IL or missing references) //IL_1ade: Unknown result type (might be due to invalid IL or missing references) //IL_1aee: Unknown result type (might be due to invalid IL or missing references) //IL_1af9: Unknown result type (might be due to invalid IL or missing references) //IL_1afe: Unknown result type (might be due to invalid IL or missing references) //IL_1b09: Unknown result type (might be due to invalid IL or missing references) //IL_1b13: Unknown result type (might be due to invalid IL or missing references) //IL_1b18: Unknown result type (might be due to invalid IL or missing references) //IL_1b1e: Unknown result type (might be due to invalid IL or missing references) //IL_1b23: Unknown result type (might be due to invalid IL or missing references) //IL_1b29: Unknown result type (might be due to invalid IL or missing references) //IL_1b2e: Unknown result type (might be due to invalid IL or missing references) //IL_1b39: Unknown result type (might be due to invalid IL or missing references) //IL_1b44: Unknown result type (might be due to invalid IL or missing references) //IL_1b49: Unknown result type (might be due to invalid IL or missing references) //IL_1b54: Unknown result type (might be due to invalid IL or missing references) //IL_1b5e: Unknown result type (might be due to invalid IL or missing references) //IL_1b63: Unknown result type (might be due to invalid IL or missing references) //IL_1b69: Unknown result type (might be due to invalid IL or missing references) //IL_1b6e: Unknown result type (might be due to invalid IL or missing references) //IL_1b73: Unknown result type (might be due to invalid IL or missing references) //IL_1b83: Unknown result type (might be due to invalid IL or missing references) //IL_1b8e: Unknown result type (might be due to invalid IL or missing references) //IL_1b93: Unknown result type (might be due to invalid IL or missing references) //IL_1b9e: Unknown result type (might be due to invalid IL or missing references) //IL_1ba8: Unknown result type (might be due to invalid IL or missing references) //IL_1bad: Unknown result type (might be due to invalid IL or missing references) //IL_1bb8: Unknown result type (might be due to invalid IL or missing references) //IL_1bc2: Unknown result type (might be due to invalid IL or missing references) //IL_1bc7: Unknown result type (might be due to invalid IL or missing references) //IL_1bcd: Unknown result type (might be due to invalid IL or missing references) //IL_1bd2: Unknown result type (might be due to invalid IL or missing references) //IL_1bd8: Unknown result type (might be due to invalid IL or missing references) //IL_1bdd: Unknown result type (might be due to invalid IL or missing references) //IL_1be3: Unknown result type (might be due to invalid IL or missing references) //IL_1be8: Unknown result type (might be due to invalid IL or missing references) //IL_1bf3: Unknown result type (might be due to invalid IL or missing references) //IL_1bfe: Unknown result type (might be due to invalid IL or missing references) //IL_1c03: Unknown result type (might be due to invalid IL or missing references) //IL_1c0e: Unknown result type (might be due to invalid IL or missing references) //IL_1c18: Unknown result type (might be due to invalid IL or missing references) //IL_1c1d: Unknown result type (might be due to invalid IL or missing references) //IL_1c28: Unknown result type (might be due to invalid IL or missing references) //IL_1c32: Unknown result type (might be due to invalid IL or missing references) //IL_1c37: Unknown result type (might be due to invalid IL or missing references) //IL_1c3d: Unknown result type (might be due to invalid IL or missing references) //IL_1c42: Unknown result type (might be due to invalid IL or missing references) //IL_1c48: Unknown result type (might be due to invalid IL or missing references) //IL_1c4d: Unknown result type (might be due to invalid IL or missing references) //IL_1c52: Unknown result type (might be due to invalid IL or missing references) //IL_1c62: Unknown result type (might be due to invalid IL or missing references) //IL_1c6d: Unknown result type (might be due to invalid IL or missing references) //IL_1c72: Unknown result type (might be due to invalid IL or missing references) //IL_1c7d: Unknown result type (might be due to invalid IL or missing references) //IL_1c87: Unknown result type (might be due to invalid IL or missing references) //IL_1c8c: Unknown result type (might be due to invalid IL or missing references) //IL_1c97: Unknown result type (might be due to invalid IL or missing references) //IL_1ca1: Unknown result type (might be due to invalid IL or missing references) //IL_1ca6: Unknown result type (might be due to invalid IL or missing references) //IL_1cac: Unknown result type (might be due to invalid IL or missing references) //IL_1cb1: Unknown result type (might be due to invalid IL or missing references) //IL_1cb7: Unknown result type (might be due to invalid IL or missing references) //IL_1cbc: Unknown result type (might be due to invalid IL or missing references) //IL_1cc2: Unknown result type (might be due to invalid IL or missing references) //IL_1cc7: Unknown result type (might be due to invalid IL or missing references) //IL_1cd2: Unknown result type (might be due to invalid IL or missing references) //IL_1cdd: Unknown result type (might be due to invalid IL or missing references) //IL_1ce2: Unknown result type (might be due to invalid IL or missing references) //IL_1ced: Unknown result type (might be due to invalid IL or missing references) //IL_1cf7: Unknown result type (might be due to invalid IL or missing references) //IL_1cfc: Unknown result type (might be due to invalid IL or missing references) //IL_1d07: Unknown result type (might be due to invalid IL or missing references) //IL_1d11: Unknown result type (might be due to invalid IL or missing references) //IL_1d16: Unknown result type (might be due to invalid IL or missing references) //IL_1d1c: Unknown result type (might be due to invalid IL or missing references) //IL_1d21: Unknown result type (might be due to invalid IL or missing references) //IL_1d27: Unknown result type (might be due to invalid IL or missing references) //IL_1d2c: Unknown result type (might be due to invalid IL or missing references) //IL_1d31: Unknown result type (might be due to invalid IL or missing references) //IL_1d41: Unknown result type (might be due to invalid IL or missing references) //IL_1d4c: Unknown result type (might be due to invalid IL or missing references) //IL_1d56: Unknown result type (might be due to invalid IL or missing references) //IL_1d5b: Unknown result type (might be due to invalid IL or missing references) //IL_1d66: Unknown result type (might be due to invalid IL or missing references) //IL_1d70: Unknown result type (might be due to invalid IL or missing references) //IL_1d75: Unknown result type (might be due to invalid IL or missing references) //IL_1d7b: Unknown result type (might be due to invalid IL or missing references) //IL_1d80: Unknown result type (might be due to invalid IL or missing references) //IL_1d86: Unknown result type (might be due to invalid IL or missing references) //IL_1d8b: Unknown result type (might be due to invalid IL or missing references) //IL_1d96: Unknown result type (might be due to invalid IL or missing references) //IL_1da1: Unknown result type (might be due to invalid IL or missing references) //IL_1dab: Unknown result type (might be due to invalid IL or missing references) //IL_1db0: Unknown result type (might be due to invalid IL or missing references) //IL_1dbb: Unknown result type (might be due to invalid IL or missing references) //IL_1dc5: Unknown result type (might be due to invalid IL or missing references) //IL_1dca: Unknown result type (might be due to invalid IL or missing references) //IL_1dd5: Unknown result type (might be due to invalid IL or missing references) //IL_1ddf: Unknown result type (might be due to invalid IL or missing references) //IL_1de4: Unknown result type (might be due to invalid IL or missing references) //IL_1dea: Unknown result type (might be due to invalid IL or missing references) //IL_1def: Unknown result type (might be due to invalid IL or missing references) //IL_1df5: Unknown result type (might be due to invalid IL or missing references) //IL_1dfa: Unknown result type (might be due to invalid IL or missing references) //IL_1e00: Unknown result type (might be due to invalid IL or missing references) //IL_1e05: Unknown result type (might be due to invalid IL or missing references) //IL_1e0b: Unknown result type (might be due to invalid IL or missing references) //IL_1e10: Unknown result type (might be due to invalid IL or missing references) //IL_1e15: Unknown result type (might be due to invalid IL or missing references) //IL_1e25: Unknown result type (might be due to invalid IL or missing references) //IL_1e30: Unknown result type (might be due to invalid IL or missing references) //IL_1e3a: Unknown result type (might be due to invalid IL or missing references) //IL_1e3f: Unknown result type (might be due to invalid IL or missing references) //IL_1e4a: Unknown result type (might be due to invalid IL or missing references) //IL_1e54: Unknown result type (might be due to invalid IL or missing references) //IL_1e59: Unknown result type (might be due to invalid IL or missing references) //IL_1e5f: Unknown result type (might be due to invalid IL or missing references) //IL_1e64: Unknown result type (might be due to invalid IL or missing references) //IL_1e6a: Unknown result type (might be due to invalid IL or missing references) //IL_1e6f: Unknown result type (might be due to invalid IL or missing references) //IL_1e7a: Unknown result type (might be due to invalid IL or missing references) //IL_1e85: Unknown result type (might be due to invalid IL or missing references) //IL_1e8f: Unknown result type (might be due to invalid IL or missing references) //IL_1e94: Unknown result type (might be due to invalid IL or missing references) //IL_1e9f: Unknown result type (might be due to invalid IL or missing references) //IL_1ea9: Unknown result type (might be due to invalid IL or missing references) //IL_1eae: Unknown result type (might be due to invalid IL or missing references) //IL_1eb9: Unknown result type (might be due to invalid IL or missing references) //IL_1ec3: Unknown result type (might be due to invalid IL or missing references) //IL_1ec8: Unknown result type (might be due to invalid IL or missing references) //IL_1ece: Unknown result type (might be due to invalid IL or missing references) //IL_1ed3: Unknown result type (might be due to invalid IL or missing references) //IL_1ed9: Unknown result type (might be due to invalid IL or missing references) //IL_1ede: Unknown result type (might be due to invalid IL or missing references) //IL_1ee4: Unknown result type (might be due to invalid IL or missing references) //IL_1ee9: Unknown result type (might be due to invalid IL or missing references) //IL_1eee: Unknown result type (might be due to invalid IL or missing references) //IL_1efe: Unknown result type (might be due to invalid IL or missing references) //IL_1f09: Unknown result type (might be due to invalid IL or missing references) //IL_1f13: Unknown result type (might be due to invalid IL or missing references) //IL_1f18: Unknown result type (might be due to invalid IL or missing references) //IL_1f23: Unknown result type (might be due to invalid IL or missing references) //IL_1f2d: Unknown result type (might be due to invalid IL or missing references) //IL_1f32: Unknown result type (might be due to invalid IL or missing references) //IL_1f38: Unknown result type (might be due to invalid IL or missing references) //IL_1f3d: Unknown result type (might be due to invalid IL or missing references) //IL_1f43: Unknown result type (might be due to invalid IL or missing references) //IL_1f48: Unknown result type (might be due to invalid IL or missing references) //IL_1f53: Unknown result type (might be due to invalid IL or missing references) //IL_1f5e: Unknown result type (might be due to invalid IL or missing references) //IL_1f68: Unknown result type (might be due to invalid IL or missing references) //IL_1f6d: Unknown result type (might be due to invalid IL or missing references) //IL_1f78: Unknown result type (might be due to invalid IL or missing references) //IL_1f82: Unknown result type (might be due to invalid IL or missing references) //IL_1f87: Unknown result type (might be due to invalid IL or missing references) //IL_1f92: Unknown result type (might be due to invalid IL or missing references) //IL_1f9c: Unknown result type (might be due to invalid IL or missing references) //IL_1fa1: Unknown result type (might be due to invalid IL or missing references) //IL_1fa7: Unknown result type (might be due to invalid IL or missing references) //IL_1fac: Unknown result type (might be due to invalid IL or missing references) //IL_1fb2: Unknown result type (might be due to invalid IL or missing references) //IL_1fb7: Unknown result type (might be due to invalid IL or missing references) //IL_1fbd: Unknown result type (might be due to invalid IL or missing references) //IL_1fc2: Unknown result type (might be due to invalid IL or missing references) //IL_1fc8: Unknown result type (might be due to invalid IL or missing references) //IL_1fcd: Unknown result type (might be due to invalid IL or missing references) //IL_1fd2: Unknown result type (might be due to invalid IL or missing references) //IL_1fe2: Unknown result type (might be due to invalid IL or missing references) //IL_1fed: Unknown result type (might be due to invalid IL or missing references) //IL_1ff7: Unknown result type (might be due to invalid IL or missing references) //IL_1ffc: Unknown result type (might be due to invalid IL or missing references) //IL_2007: Unknown result type (might be due to invalid IL or missing references) //IL_2011: Unknown result type (might be due to invalid IL or missing references) //IL_2016: Unknown result type (might be due to invalid IL or missing references) //IL_201c: Unknown result type (might be due to invalid IL or missing references) //IL_2021: Unknown result type (might be due to invalid IL or missing references) //IL_2027: Unknown result type (might be due to invalid IL or missing references) //IL_202c: Unknown result type (might be due to invalid IL or missing references) //IL_2037: Unknown result type (might be due to invalid IL or missing references) //IL_2042: Unknown result type (might be due to invalid IL or missing references) //IL_204c: Unknown result type (might be due to invalid IL or missing references) //IL_2051: Unknown result type (might be due to invalid IL or missing references) //IL_205c: Unknown result type (might be due to invalid IL or missing references) //IL_2066: Unknown result type (might be due to invalid IL or missing references) //IL_206b: Unknown result type (might be due to invalid IL or missing references) //IL_2076: Unknown result type (might be due to invalid IL or missing references) //IL_2080: Unknown result type (might be due to invalid IL or missing references) //IL_2085: Unknown result type (might be due to invalid IL or missing references) //IL_208b: Unknown result type (might be due to invalid IL or missing references) //IL_2090: Unknown result type (might be due to invalid IL or missing references) //IL_2096: Unknown result type (might be due to invalid IL or missing references) //IL_209b: Unknown result type (might be due to invalid IL or missing references) //IL_20a1: Unknown result type (might be due to invalid IL or missing references) //IL_20a6: Unknown result type (might be due to invalid IL or missing references) //IL_20ab: Unknown result type (might be due to invalid IL or missing references) //IL_20bb: Unknown result type (might be due to invalid IL or missing references) //IL_20c6: Unknown result type (might be due to invalid IL or missing references) //IL_20d0: Unknown result type (might be due to invalid IL or missing references) //IL_20d5: Unknown result type (might be due to invalid IL or missing references) //IL_20e0: Unknown result type (might be due to invalid IL or missing references) //IL_20e5: Unknown result type (might be due to invalid IL or missing references) //IL_20eb: Unknown result type (might be due to invalid IL or missing references) //IL_20f0: Unknown result type (might be due to invalid IL or missing references) //IL_20f6: Unknown result type (might be due to invalid IL or missing references) //IL_20fb: Unknown result type (might be due to invalid IL or missing references) //IL_2106: Unknown result type (might be due to invalid IL or missing references) //IL_2111: Unknown result type (might be due to invalid IL or missing references) //IL_211b: Unknown result type (might be due to invalid IL or missing references) //IL_2120: Unknown result type (might be due to invalid IL or missing references) //IL_212b: Unknown result type (might be due to invalid IL or missing references) //IL_2135: Unknown result type (might be due to invalid IL or missing references) //IL_213a: Unknown result type (might be due to invalid IL or missing references) //IL_2140: Unknown result type (might be due to invalid IL or missing references) //IL_2145: Unknown result type (might be due to invalid IL or missing references) //IL_2150: Unknown result type (might be due to invalid IL or missing references) //IL_2155: Unknown result type (might be due to invalid IL or missing references) //IL_215b: Unknown result type (might be due to invalid IL or missing references) //IL_2160: Unknown result type (might be due to invalid IL or missing references) //IL_2166: Unknown result type (might be due to invalid IL or missing references) //IL_216b: Unknown result type (might be due to invalid IL or missing references) //IL_2171: Unknown result type (might be due to invalid IL or missing references) //IL_2176: Unknown result type (might be due to invalid IL or missing references) //IL_217b: Unknown result type (might be due to invalid IL or missing references) //IL_218b: Unknown result type (might be due to invalid IL or missing references) //IL_2196: Unknown result type (might be due to invalid IL or missing references) //IL_21a0: Unknown result type (might be due to invalid IL or missing references) //IL_21a5: Unknown result type (might be due to invalid IL or missing references) //IL_21b0: Unknown result type (might be due to invalid IL or missing references) //IL_21b5: Unknown result type (might be due to invalid IL or missing references) //IL_21bb: Unknown result type (might be due to invalid IL or missing references) //IL_21c0: Unknown result type (might be due to invalid IL or missing references) //IL_21c6: Unknown result type (might be due to invalid IL or missing references) //IL_21cb: Unknown result type (might be due to invalid IL or missing references) //IL_21d6: Unknown result type (might be due to invalid IL or missing references) //IL_21e1: Unknown result type (might be due to invalid IL or missing references) //IL_21eb: Unknown result type (might be due to invalid IL or missing references) //IL_21f0: Unknown result type (might be due to invalid IL or missing references) //IL_21fb: Unknown result type (might be due to invalid IL or missing references) //IL_2200: Unknown result type (might be due to invalid IL or missing references) //IL_220b: Unknown result type (might be due to invalid IL or missing references) //IL_2215: Unknown result type (might be due to invalid IL or missing references) //IL_221a: Unknown result type (might be due to invalid IL or missing references) //IL_2220: Unknown result type (might be due to invalid IL or missing references) //IL_2225: Unknown result type (might be due to invalid IL or missing references) //IL_222b: Unknown result type (might be due to invalid IL or missing references) //IL_2230: Unknown result type (might be due to invalid IL or missing references) //IL_2236: Unknown result type (might be due to invalid IL or missing references) //IL_223b: Unknown result type (might be due to invalid IL or missing references) //IL_2240: Unknown result type (might be due to invalid IL or missing references) //IL_2250: Unknown result type (might be due to invalid IL or missing references) //IL_225b: Unknown result type (might be due to invalid IL or missing references) //IL_2265: Unknown result type (might be due to invalid IL or missing references) //IL_226a: Unknown result type (might be due to invalid IL or missing references) //IL_2275: Unknown result type (might be due to invalid IL or missing references) //IL_227f: Unknown result type (might be due to invalid IL or missing references) //IL_2284: Unknown result type (might be due to invalid IL or missing references) //IL_228a: Unknown result type (might be due to invalid IL or missing references) //IL_228f: Unknown result type (might be due to invalid IL or missing references) //IL_2295: Unknown result type (might be due to invalid IL or missing references) //IL_229a: Unknown result type (might be due to invalid IL or missing references) //IL_22a5: Unknown result type (might be due to invalid IL or missing references) //IL_22b0: Unknown result type (might be due to invalid IL or missing references) //IL_22ba: Unknown result type (might be due to invalid IL or missing references) //IL_22bf: Unknown result type (might be due to invalid IL or missing references) //IL_22ca: Unknown result type (might be due to invalid IL or missing references) //IL_22d4: Unknown result type (might be due to invalid IL or missing references) //IL_22d9: Unknown result type (might be due to invalid IL or missing references) //IL_22e4: Unknown result type (might be due to invalid IL or missing references) //IL_22ee: Unknown result type (might be due to invalid IL or missing references) //IL_22f3: Unknown result type (might be due to invalid IL or missing references) //IL_22f9: Unknown result type (might be due to invalid IL or missing references) //IL_22fe: Unknown result type (might be due to invalid IL or missing references) //IL_2304: Unknown result type (might be due to invalid IL or missing references) //IL_2309: Unknown result type (might be due to invalid IL or missing references) //IL_230f: Unknown result type (might be due to invalid IL or missing references) //IL_2314: Unknown result type (might be due to invalid IL or missing references) //IL_231a: Unknown result type (might be due to invalid IL or missing references) //IL_231f: Unknown result type (might be due to invalid IL or missing references) //IL_2324: Unknown result type (might be due to invalid IL or missing references) //IL_2334: Unknown result type (might be due to invalid IL or missing references) //IL_233f: Unknown result type (might be due to invalid IL or missing references) //IL_2349: Unknown result type (might be due to invalid IL or missing references) //IL_234e: Unknown result type (might be due to invalid IL or missing references) //IL_2359: Unknown result type (might be due to invalid IL or missing references) //IL_2363: Unknown result type (might be due to invalid IL or missing references) //IL_2368: Unknown result type (might be due to invalid IL or missing references) //IL_236e: Unknown result type (might be due to invalid IL or missing references) //IL_2373: Unknown result type (might be due to invalid IL or missing references) //IL_2379: Unknown result type (might be due to invalid IL or missing references) //IL_237e: Unknown result type (might be due to invalid IL or missing references) //IL_2389: Unknown result type (might be due to invalid IL or missing references) //IL_2394: Unknown result type (might be due to invalid IL or missing references) //IL_239e: Unknown result type (might be due to invalid IL or missing references) //IL_23a3: Unknown result type (might be due to invalid IL or missing references) //IL_23ae: Unknown result type (might be due to invalid IL or missing references) //IL_23b8: Unknown result type (might be due to invalid IL or missing references) //IL_23bd: Unknown result type (might be due to invalid IL or missing references) //IL_23c8: Unknown result type (might be due to invalid IL or missing references) //IL_23d2: Unknown result type (might be due to invalid IL or missing references) //IL_23d7: Unknown result type (might be due to invalid IL or missing references) //IL_23dd: Unknown result type (might be due to invalid IL or missing references) //IL_23e2: Unknown result type (might be due to invalid IL or missing references) //IL_23e8: Unknown result type (might be due to invalid IL or missing references) //IL_23ed: Unknown result type (might be due to invalid IL or missing references) //IL_23f3: Unknown result type (might be due to invalid IL or missing references) //IL_23f8: Unknown result type (might be due to invalid IL or missing references) //IL_23fd: Unknown result type (might be due to invalid IL or missing references) //IL_240d: Unknown result type (might be due to invalid IL or missing references) //IL_2418: Unknown result type (might be due to invalid IL or missing references) //IL_2422: Unknown result type (might be due to invalid IL or missing references) //IL_2427: Unknown result type (might be due to invalid IL or missing references) //IL_2432: Unknown result type (might be due to invalid IL or missing references) //IL_243c: Unknown result type (might be due to invalid IL or missing references) //IL_2441: Unknown result type (might be due to invalid IL or missing references) //IL_2447: Unknown result type (might be due to invalid IL or missing references) //IL_244c: Unknown result type (might be due to invalid IL or missing references) //IL_2452: Unknown result type (might be due to invalid IL or missing references) //IL_2457: Unknown result type (might be due to invalid IL or missing references) //IL_2462: Unknown result type (might be due to invalid IL or missing references) //IL_246d: Unknown result type (might be due to invalid IL or missing references) //IL_2477: Unknown result type (might be due to invalid IL or missing references) //IL_247c: Unknown result type (might be due to invalid IL or missing references) //IL_2487: Unknown result type (might be due to invalid IL or missing references) //IL_2491: Unknown result type (might be due to invalid IL or missing references) //IL_2496: Unknown result type (might be due to invalid IL or missing references) //IL_24a1: Unknown result type (might be due to invalid IL or missing references) //IL_24ab: Unknown result type (might be due to invalid IL or missing references) //IL_24b0: Unknown result type (might be due to invalid IL or missing references) //IL_24b6: Unknown result type (might be due to invalid IL or missing references) //IL_24bb: Unknown result type (might be due to invalid IL or missing references) //IL_24c1: Unknown result type (might be due to invalid IL or missing references) //IL_24c6: Unknown result type (might be due to invalid IL or missing references) //IL_24cc: Unknown result type (might be due to invalid IL or missing references) //IL_24d1: Unknown result type (might be due to invalid IL or missing references) //IL_24d7: Unknown result type (might be due to invalid IL or missing references) //IL_24dc: Unknown result type (might be due to invalid IL or missing references) //IL_24e1: Unknown result type (might be due to invalid IL or missing references) //IL_24f1: Unknown result type (might be due to invalid IL or missing references) //IL_24fc: Unknown result type (might be due to invalid IL or missing references) //IL_2506: Unknown result type (might be due to invalid IL or missing references) //IL_250b: Unknown result type (might be due to invalid IL or missing references) //IL_2516: Unknown result type (might be due to invalid IL or missing references) //IL_2520: Unknown result type (might be due to invalid IL or missing references) //IL_2525: Unknown result type (might be due to invalid IL or missing references) //IL_252b: Unknown result type (might be due to invalid IL or missing references) //IL_2530: Unknown result type (might be due to invalid IL or missing references) //IL_2536: Unknown result type (might be due to invalid IL or missing references) //IL_253b: Unknown result type (might be due to invalid IL or missing references) //IL_2546: Unknown result type (might be due to invalid IL or missing references) //IL_2551: Unknown result type (might be due to invalid IL or missing references) //IL_255b: Unknown result type (might be due to invalid IL or missing references) //IL_2560: Unknown result type (might be due to invalid IL or missing references) //IL_256b: Unknown result type (might be due to invalid IL or missing references) //IL_2575: Unknown result type (might be due to invalid IL or missing references) //IL_257a: Unknown result type (might be due to invalid IL or missing references) //IL_2585: Unknown result type (might be due to invalid IL or missing references) //IL_258f: Unknown result type (might be due to invalid IL or missing references) //IL_2594: Unknown result type (might be due to invalid IL or missing references) //IL_259a: Unknown result type (might be due to invalid IL or missing references) //IL_259f: Unknown result type (might be due to invalid IL or missing references) //IL_25a5: Unknown result type (might be due to invalid IL or missing references) //IL_25aa: Unknown result type (might be due to invalid IL or missing references) //IL_25b0: Unknown result type (might be due to invalid IL or missing references) //IL_25b5: Unknown result type (might be due to invalid IL or missing references) //IL_25ba: Unknown result type (might be due to invalid IL or missing references) //IL_25ca: Unknown result type (might be due to invalid IL or missing references) //IL_25d5: Unknown result type (might be due to invalid IL or missing references) //IL_25df: Unknown result type (might be due to invalid IL or missing references) //IL_25e4: Unknown result type (might be due to invalid IL or missing references) //IL_25ef: Unknown result type (might be due to invalid IL or missing references) //IL_25f4: Unknown result type (might be due to invalid IL or missing references) //IL_25fa: Unknown result type (might be due to invalid IL or missing references) //IL_25ff: Unknown result type (might be due to invalid IL or missing references) //IL_2605: Unknown result type (might be due to invalid IL or missing references) //IL_260a: Unknown result type (might be due to invalid IL or missing references) //IL_2615: Unknown result type (might be due to invalid IL or missing references) //IL_2620: Unknown result type (might be due to invalid IL or missing references) //IL_262a: Unknown result type (might be due to invalid IL or missing references) //IL_262f: Unknown result type (might be due to invalid IL or missing references) //IL_263a: Unknown result type (might be due to invalid IL or missing references) //IL_2644: Unknown result type (might be due to invalid IL or missing references) //IL_2649: Unknown result type (might be due to invalid IL or missing references) //IL_264f: Unknown result type (might be due to invalid IL or missing references) //IL_2654: Unknown result type (might be due to invalid IL or missing references) //IL_265f: Unknown result type (might be due to invalid IL or missing references) //IL_2664: Unknown result type (might be due to invalid IL or missing references) //IL_266a: Unknown result type (might be due to invalid IL or missing references) //IL_266f: Unknown result type (might be due to invalid IL or missing references) //IL_2675: Unknown result type (might be due to invalid IL or missing references) //IL_267a: Unknown result type (might be due to invalid IL or missing references) //IL_2680: Unknown result type (might be due to invalid IL or missing references) //IL_2685: Unknown result type (might be due to invalid IL or missing references) //IL_268a: Unknown result type (might be due to invalid IL or missing references) //IL_269a: Unknown result type (might be due to invalid IL or missing references) //IL_26a5: Unknown result type (might be due to invalid IL or missing references) //IL_26af: Unknown result type (might be due to invalid IL or missing references) //IL_26b4: Unknown result type (might be due to invalid IL or missing references) //IL_26bf: Unknown result type (might be due to invalid IL or missing references) //IL_26c4: Unknown result type (might be due to invalid IL or missing references) //IL_26ca: Unknown result type (might be due to invalid IL or missing references) //IL_26cf: Unknown result type (might be due to invalid IL or missing references) //IL_26d5: Unknown result type (might be due to invalid IL or missing references) //IL_26da: Unknown result type (might be due to invalid IL or missing references) //IL_26e5: Unknown result type (might be due to invalid IL or missing references) //IL_26f0: Unknown result type (might be due to invalid IL or missing references) //IL_26fa: Unknown result type (might be due to invalid IL or missing references) //IL_26ff: Unknown result type (might be due to invalid IL or missing references) //IL_270a: Unknown result type (might be due to invalid IL or missing references) //IL_270f: Unknown result type (might be due to invalid IL or missing references) //IL_271a: Unknown result type (might be due to invalid IL or missing references) //IL_2724: Unknown result type (might be due to invalid IL or missing references) //IL_2729: Unknown result type (might be due to invalid IL or missing references) //IL_272f: Unknown result type (might be due to invalid IL or missing references) //IL_2734: Unknown result type (might be due to invalid IL or missing references) //IL_273a: Unknown result type (might be due to invalid IL or missing references) //IL_273f: Unknown result type (might be due to invalid IL or missing references) //IL_2745: Unknown result type (might be due to invalid IL or missing references) //IL_274a: Unknown result type (might be due to invalid IL or missing references) //IL_274f: Unknown result type (might be due to invalid IL or missing references) //IL_276c: Unknown result type (might be due to invalid IL or missing references) //IL_2777: Unknown result type (might be due to invalid IL or missing references) //IL_277c: Unknown result type (might be due to invalid IL or missing references) //IL_2787: Unknown result type (might be due to invalid IL or missing references) //IL_2791: Unknown result type (might be due to invalid IL or missing references) //IL_2796: Unknown result type (might be due to invalid IL or missing references) //IL_27a1: Unknown result type (might be due to invalid IL or missing references) //IL_27ab: Unknown result type (might be due to invalid IL or missing references) //IL_27b0: Unknown result type (might be due to invalid IL or missing references) //IL_27b6: Unknown result type (might be due to invalid IL or missing references) //IL_27bb: Unknown result type (might be due to invalid IL or missing references) //IL_27c6: Unknown result type (might be due to invalid IL or missing references) //IL_27d1: Unknown result type (might be due to invalid IL or missing references) //IL_27db: Unknown result type (might be due to invalid IL or missing references) //IL_27e0: Unknown result type (might be due to invalid IL or missing references) //IL_27eb: Unknown result type (might be due to invalid IL or missing references) //IL_27f5: Unknown result type (might be due to invalid IL or missing references) //IL_27fa: Unknown result type (might be due to invalid IL or missing references) //IL_2800: Unknown result type (might be due to invalid IL or missing references) //IL_2805: Unknown result type (might be due to invalid IL or missing references) //IL_280a: Unknown result type (might be due to invalid IL or missing references) for (int i = 0; i < climbing.Length; i++) { showClimbingDetectors3 = climbing[i].showClimbingDetectors; climbingSurfaceDetectorsUpAmount3 = ((Component)this).transform.up * (climbing[i].climbingSurfaceDetectorsUpAmount + 0.2f); climbingSurfaceDetectorsHeight3 = climbing[i].climbingSurfaceDetectorsHeight - 0.18f; climbingSurfaceDetectorsLength3 = climbing[i].climbingSurfaceDetectorsLength - 0.5f; showEdgeOfObjectDetctors3 = climbing[i].showEdgeOfObjectDetctors; bottomNoSurfaceDetectorHeight3 = ((Component)this).transform.up * (climbing[i].bottomNoSurfaceDetectorHeight + 0.15f); topNoSurfaceDetectorHeight3 = ((Component)this).transform.up * (climbing[i].topNoSurfaceDetectorHeight + 0.15f); topAndBottomNoSurfaceDetectorsWidth3 = ((Component)this).transform.right * climbing[i].topAndBottomNoSurfaceDetectorsWidth; sideNoSurfaceDetectorsHeight3 = climbing[i].sideNoSurfaceDetectorsHeight - 0.15f; sideNoSurfaceDetectorsWidth3 = ((Component)this).transform.right * (climbing[i].sideNoSurfaceDetectorsWidth - 0.25f); showPullUpDetector3 = climbing[i].showPullUpDetector; pullUpLocationForward3 = ((Component)this).transform.forward * climbing[i].pullUpLocationForward; showWalkingOffLedgeRays3 = climbing[i].walkingOffOfClimbableSurface.showWalkingOffLedgeRays; spaceInFrontNeededToGrabBackOn3 = ((Component)this).transform.forward * (climbing[i].walkingOffOfClimbableSurface.spaceInFrontNeededToGrabBackOn + 0.03f); firstSideLedgeDetectorsHeight3 = ((Component)this).transform.up * climbing[i].walkingOffOfClimbableSurface.firstSideLedgeDetectorsHeight; secondSideLedgeDetectorsHeight3 = ((Component)this).transform.up * climbing[i].walkingOffOfClimbableSurface.secondSideLedgeDetectorsHeight; thirdSideLedgeDetectorsHeight3 = ((Component)this).transform.up * climbing[i].walkingOffOfClimbableSurface.thirdSideLedgeDetectorsHeight; sideLedgeDetectorsWidth3 = ((Component)this).transform.right * climbing[i].walkingOffOfClimbableSurface.sideLedgeDetectorsWidth; sideLedgeDetectorsLength3 = ((Component)this).transform.forward * climbing[i].walkingOffOfClimbableSurface.sideLedgeDetectorsLength; spaceBelowNeededToGrabBackOnHeight3 = ((Component)this).transform.up * (climbing[i].walkingOffOfClimbableSurface.spaceBelowNeededToGrabBackOnHeight + 0.07f); spaceBelowNeededToGrabBackOnForward3 = ((Component)this).transform.forward * (climbing[i].walkingOffOfClimbableSurface.spaceBelowNeededToGrabBackOnForward + 0.06f); grabBackOnLocationHeight3 = ((Component)this).transform.up * climbing[i].walkingOffOfClimbableSurface.grabBackOnLocationHeight; grabBackOnLocationWidth3 = ((Component)this).transform.right * climbing[i].walkingOffOfClimbableSurface.grabBackOnLocationWidth; grabBackOnLocationForward3 = ((Component)this).transform.forward * climbing[i].walkingOffOfClimbableSurface.grabBackOnLocationForward; if (showClimbingDetectors3) { Debug.DrawLine(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount3 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight3 + 1f) * 0.1875f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount3 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight3 + 1f) * 0.1875f, Color.red); Debug.DrawLine(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount3 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight3 + 1f) * 0.375f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount3 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight3 + 1f) * 0.375f, Color.red); Debug.DrawLine(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount3 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight3 + 1f) * 0.5625f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount3 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight3 + 1f) * 0.5625f, Color.red); Debug.DrawLine(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount3 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight3 + 1f) * 0.75f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount3 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight3 + 1f) * 0.75f, Color.red); Debug.DrawLine(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount3 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight3 + 1f) * 0.9375f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount3 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight3 + 1f) * 0.9375f, Color.red); Debug.DrawLine(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount3 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight3 + 1f) * 1.125f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount3 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight3 + 1f) * 1.125f, Color.red); } if (showEdgeOfObjectDetctors3) { Debug.DrawLine(((Component)this).transform.position + bottomNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 0.1875f, ((Component)this).transform.position + bottomNoSurfaceDetectorHeight3 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) + ((Component)this).transform.up * 0.1875f, Color.cyan); Debug.DrawLine(((Component)this).transform.position + bottomNoSurfaceDetectorHeight3 - ((Component)this).transform.right / 3f - topAndBottomNoSurfaceDetectorsWidth3 + ((Component)this).transform.up * 0.1875f, ((Component)this).transform.position + bottomNoSurfaceDetectorHeight3 - ((Component)this).transform.right / 3f - topAndBottomNoSurfaceDetectorsWidth3 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) + ((Component)this).transform.up * 0.1875f, Color.cyan); Debug.DrawLine(((Component)this).transform.position + bottomNoSurfaceDetectorHeight3 + ((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth3 + ((Component)this).transform.up * 0.1875f, ((Component)this).transform.position + bottomNoSurfaceDetectorHeight3 + ((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth3 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) + ((Component)this).transform.up * 0.1875f, Color.cyan); Debug.DrawLine(((Component)this).transform.position + topNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 1.125f, ((Component)this).transform.position + topNoSurfaceDetectorHeight3 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) + ((Component)this).transform.up * 1.125f, Color.cyan); Debug.DrawLine(((Component)this).transform.position + topNoSurfaceDetectorHeight3 - ((Component)this).transform.right / 3f - topAndBottomNoSurfaceDetectorsWidth3 + ((Component)this).transform.up * 1.125f, ((Component)this).transform.position + topNoSurfaceDetectorHeight3 - ((Component)this).transform.right / 3f - topAndBottomNoSurfaceDetectorsWidth3 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) + ((Component)this).transform.up * 1.125f, Color.cyan); Debug.DrawLine(((Component)this).transform.position + topNoSurfaceDetectorHeight3 + ((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth3 + ((Component)this).transform.up * 1.125f, ((Component)this).transform.position + topNoSurfaceDetectorHeight3 + ((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth3 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) + ((Component)this).transform.up * 1.125f, Color.cyan); Debug.DrawLine(((Component)this).transform.position + (topNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight3 + 1f)) * 0.99f + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth3), ((Component)this).transform.position + (topNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight3 + 1f)) * 0.99f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth3), Color.cyan); Debug.DrawLine(((Component)this).transform.position + ((topNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight3 + 1f)) * 0.99f * 3f + (bottomNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 4f + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth3), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight3 + 1f)) * 0.99f * 3f + (bottomNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 4f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth3), Color.cyan); Debug.DrawLine(((Component)this).transform.position + ((topNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight3 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 3f + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth3), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight3 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 3f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth3), Color.cyan); Debug.DrawLine(((Component)this).transform.position + ((topNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight3 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 0.1875f) * 0.99f * 3f) / 4f + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth3), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight3 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 0.1875f) * 0.99f * 3f) / 4f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth3), Color.cyan); Debug.DrawLine(((Component)this).transform.position + (bottomNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 0.1875f) * 0.99f + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth3), ((Component)this).transform.position + (bottomNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 0.1875f) * 0.99f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth3), Color.cyan); Debug.DrawLine(((Component)this).transform.position + (topNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight3 + 1f)) * 0.99f - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth3), ((Component)this).transform.position + (topNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight3 + 1f)) * 0.99f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth3), Color.cyan); Debug.DrawLine(((Component)this).transform.position + ((topNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight3 + 1f)) * 0.99f * 3f + (bottomNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 4f - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth3), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight3 + 1f)) * 0.99f * 3f + (bottomNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 4f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth3), Color.cyan); Debug.DrawLine(((Component)this).transform.position + ((topNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight3 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 3f - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth3), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight3 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 3f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth3), Color.cyan); Debug.DrawLine(((Component)this).transform.position + ((topNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight3 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 0.1875f) * 0.99f * 3f) / 4f - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth3), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight3 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 0.1875f) * 0.99f * 3f) / 4f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth3), Color.cyan); Debug.DrawLine(((Component)this).transform.position + (bottomNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 0.1875f) * 0.99f - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth3), ((Component)this).transform.position + (bottomNoSurfaceDetectorHeight3 + ((Component)this).transform.up * 0.1875f) * 0.99f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength3 + 1f) - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth3), Color.cyan); } if (showWalkingOffLedgeRays3) { Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.up * 0.5f, ((Component)this).transform.position + ((Component)this).transform.forward / 1.5f + ((Component)this).transform.up * 0.5f + spaceInFrontNeededToGrabBackOn3, Color.red); Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.forward / 4f + ((Component)this).transform.up * 0.5f + spaceBelowNeededToGrabBackOnForward3, ((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 1.5f - spaceBelowNeededToGrabBackOnHeight3 + spaceBelowNeededToGrabBackOnForward3, Color.red); Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.forward / 1.5f + ((Component)this).transform.up * 0.5f + spaceInFrontNeededToGrabBackOn3, ((Component)this).transform.position + ((Component)this).transform.forward / 1.5f - ((Component)this).transform.up * 1.5f + spaceInFrontNeededToGrabBackOn3 - spaceBelowNeededToGrabBackOnHeight3, Color.red); Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.up - ((Component)this).transform.forward / 3f + grabBackOnLocationForward3 + grabBackOnLocationHeight3, ((Component)this).transform.position - ((Component)this).transform.up - ((Component)this).transform.forward / 3f + grabBackOnLocationForward3, Color.yellow); Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.up - ((Component)this).transform.forward / 3f - ((Component)this).transform.right * 0.4f + grabBackOnLocationForward3 - grabBackOnLocationWidth3 + grabBackOnLocationHeight3, ((Component)this).transform.position - ((Component)this).transform.up - ((Component)this).transform.forward / 3f - ((Component)this).transform.right * 0.4f + grabBackOnLocationForward3 - grabBackOnLocationWidth3, Color.yellow); Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.up - ((Component)this).transform.forward / 3f + ((Component)this).transform.right * 0.4f + grabBackOnLocationForward3 + grabBackOnLocationWidth3 + grabBackOnLocationHeight3, ((Component)this).transform.position - ((Component)this).transform.up - ((Component)this).transform.forward / 3f + ((Component)this).transform.right * 0.4f + grabBackOnLocationForward3 + grabBackOnLocationWidth3, Color.yellow); Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.1f + firstSideLedgeDetectorsHeight3 + spaceBelowNeededToGrabBackOnForward3, ((Component)this).transform.position + ((Component)this).transform.forward / 3f - ((Component)this).transform.up * 0.1f - ((Component)this).transform.right / 4f + sideLedgeDetectorsLength3 + firstSideLedgeDetectorsHeight3 - sideLedgeDetectorsWidth3 + spaceBelowNeededToGrabBackOnForward3, Color.red); Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.forward / 3f - ((Component)this).transform.up * 0.1f + firstSideLedgeDetectorsHeight3 + spaceBelowNeededToGrabBackOnForward3, ((Component)this).transform.position - ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.1f + ((Component)this).transform.right / 4f - sideLedgeDetectorsLength3 + firstSideLedgeDetectorsHeight3 + spaceBelowNeededToGrabBackOnForward3, Color.red); Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.5f + secondSideLedgeDetectorsHeight3 + spaceBelowNeededToGrabBackOnForward3, ((Component)this).transform.position + ((Component)this).transform.forward / 3f - ((Component)this).transform.up * 0.5f - ((Component)this).transform.right / 4f + sideLedgeDetectorsLength3 + secondSideLedgeDetectorsHeight3 - sideLedgeDetectorsWidth3 + spaceBelowNeededToGrabBackOnForward3, Color.red); Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.forward / 3f - ((Component)this).transform.up * 0.5f + secondSideLedgeDetectorsHeight3 + spaceBelowNeededToGrabBackOnForward3, ((Component)this).transform.position - ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.5f + ((Component)this).transform.right / 4f - sideLedgeDetectorsLength3 + secondSideLedgeDetectorsHeight3 + spaceBelowNeededToGrabBackOnForward3, Color.red); Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight3 + spaceBelowNeededToGrabBackOnForward3, ((Component)this).transform.position + ((Component)this).transform.forward / 3f - ((Component)this).transform.right / 4f + sideLedgeDetectorsLength3 - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight3 - sideLedgeDetectorsWidth3 + spaceBelowNeededToGrabBackOnForward3, Color.red); Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.forward / 3f - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight3 + spaceBelowNeededToGrabBackOnForward3, ((Component)this).transform.position - ((Component)this).transform.forward / 4f - ((Component)this).transform.up + ((Component)this).transform.right / 4f - sideLedgeDetectorsLength3 + thirdSideLedgeDetectorsHeight3 + spaceBelowNeededToGrabBackOnForward3, Color.red); Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.1f + firstSideLedgeDetectorsHeight3 + spaceBelowNeededToGrabBackOnForward3, ((Component)this).transform.position + ((Component)this).transform.forward / 3f - ((Component)this).transform.up * 0.1f + ((Component)this).transform.right / 4f + sideLedgeDetectorsLength3 + firstSideLedgeDetectorsHeight3 + sideLedgeDetectorsWidth3 + spaceBelowNeededToGrabBackOnForward3, Color.red); Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.forward / 3f - ((Component)this).transform.up * 0.1f + firstSideLedgeDetectorsHeight3 + spaceBelowNeededToGrabBackOnForward3, ((Component)this).transform.position - ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.1f - ((Component)this).transform.right / 4f - sideLedgeDetectorsLength3 + firstSideLedgeDetectorsHeight3 + spaceBelowNeededToGrabBackOnForward3, Color.red); Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.5f + secondSideLedgeDetectorsHeight3 + spaceBelowNeededToGrabBackOnForward3, ((Component)this).transform.position + ((Component)this).transform.forward / 3f - ((Component)this).transform.up * 0.5f + ((Component)this).transform.right / 4f + sideLedgeDetectorsLength3 + secondSideLedgeDetectorsHeight3 + sideLedgeDetectorsWidth3 + spaceBelowNeededToGrabBackOnForward3, Color.red); Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.forward / 3f - ((Component)this).transform.up * 0.5f + secondSideLedgeDetectorsHeight3 + spaceBelowNeededToGrabBackOnForward3, ((Component)this).transform.position - ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.5f - ((Component)this).transform.right / 4f - sideLedgeDetectorsLength3 + secondSideLedgeDetectorsHeight3 + spaceBelowNeededToGrabBackOnForward3, Color.red); Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight3 + spaceBelowNeededToGrabBackOnForward3, ((Component)this).transform.position + ((Component)this).transform.forward / 3f + ((Component)this).transform.right / 4f + sideLedgeDetectorsLength3 - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight3 + sideLedgeDetectorsWidth3 + spaceBelowNeededToGrabBackOnForward3, Color.red); Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.forward / 3f - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight3 + spaceBelowNeededToGrabBackOnForward3, ((Component)this).transform.position - ((Component)this).transform.forward / 4f - ((Component)this).transform.up - ((Component)this).transform.right / 4f - sideLedgeDetectorsLength3 + thirdSideLedgeDetectorsHeight3 + spaceBelowNeededToGrabBackOnForward3, Color.red); } if (showPullUpDetector3) { Debug.DrawLine(((Component)this).transform.position + ((Component)this).transform.up + ((Component)this).transform.forward / 1.25f + ((Component)this).transform.up * 1.5f + pullUpLocationForward3, ((Component)this).transform.position + ((Component)this).transform.up * 0.8f + ((Component)this).transform.forward / 1.75f + pullUpLocationForward3, Color.red); } } } private void SetClimbingVariables() { //IL_00a2: Unknown result type (might be due to invalid IL or missing references) //IL_00bf: Unknown result type (might be due to invalid IL or missing references) //IL_00c4: Unknown result type (might be due to invalid IL or missing references) //IL_0214: Unknown result type (might be due to invalid IL or missing references) //IL_0231: Unknown result type (might be due to invalid IL or missing references) //IL_0236: Unknown result type (might be due to invalid IL or missing references) //IL_0242: Unknown result type (might be due to invalid IL or missing references) //IL_025f: Unknown result type (might be due to invalid IL or missing references) //IL_0264: Unknown result type (might be due to invalid IL or missing references) //IL_0270: Unknown result type (might be due to invalid IL or missing references) //IL_0287: Unknown result type (might be due to invalid IL or missing references) //IL_028c: Unknown result type (might be due to invalid IL or missing references) //IL_02b6: Unknown result type (might be due to invalid IL or missing references) //IL_02d3: Unknown result type (might be due to invalid IL or missing references) //IL_02d8: Unknown result type (might be due to invalid IL or missing references) //IL_037a: Unknown result type (might be due to invalid IL or missing references) //IL_0391: Unknown result type (might be due to invalid IL or missing references) //IL_0396: Unknown result type (might be due to invalid IL or missing references) //IL_03d7: Unknown result type (might be due to invalid IL or missing references) //IL_03f9: Unknown result type (might be due to invalid IL or missing references) //IL_03fe: Unknown result type (might be due to invalid IL or missing references) //IL_040a: Unknown result type (might be due to invalid IL or missing references) //IL_0426: Unknown result type (might be due to invalid IL or missing references) //IL_042b: Unknown result type (might be due to invalid IL or missing references) //IL_0437: Unknown result type (might be due to invalid IL or missing references) //IL_0453: Unknown result type (might be due to invalid IL or missing references) //IL_0458: Unknown result type (might be due to invalid IL or missing references) //IL_0464: Unknown result type (might be due to invalid IL or missing references) //IL_0480: Unknown result type (might be due to invalid IL or missing references) //IL_0485: Unknown result type (might be due to invalid IL or missing references) //IL_0491: Unknown result type (might be due to invalid IL or missing references) //IL_04ad: Unknown result type (might be due to invalid IL or missing references) //IL_04b2: Unknown result type (might be due to invalid IL or missing references) //IL_04be: Unknown result type (might be due to invalid IL or missing references) //IL_04da: Unknown result type (might be due to invalid IL or missing references) //IL_04df: Unknown result type (might be due to invalid IL or missing references) //IL_04eb: Unknown result type (might be due to invalid IL or missing references) //IL_050d: Unknown result type (might be due to invalid IL or missing references) //IL_0512: Unknown result type (might be due to invalid IL or missing references) //IL_051e: Unknown result type (might be due to invalid IL or missing references) //IL_0540: Unknown result type (might be due to invalid IL or missing references) //IL_0545: Unknown result type (might be due to invalid IL or missing references) if (!wallIsClimbable && !currentlyClimbingWall && !turnBack && !back2 && !pullingUp) { if (i == climbing.Length) { i = 0; } if (!firstTest && !secondTest && !thirdTest && !fourthTest && !fifthTest) { tagNum = i; } } climbingSurfaceDetectorsUpAmount2 = ((Component)this).transform.up * (climbing[tagNum].climbingSurfaceDetectorsUpAmount + 0.2f); climbingSurfaceDetectorsHeight2 = climbing[tagNum].climbingSurfaceDetectorsHeight - 0.18f; climbingSurfaceDetectorsLength2 = climbing[tagNum].climbingSurfaceDetectorsLength - 0.5f; distanceToPushOffAfterLettingGo2 = climbing[tagNum].distanceToPushOffAfterLettingGo; rotationToClimbableObjectSpeed2 = climbing[tagNum].rotationToClimbableObjectSpeed; climbHorizontally2 = climbing[tagNum].climbHorizontally; climbVertically2 = climbing[tagNum].climbVertically; climbMovementSpeed2 = climbing[tagNum].climbMovementSpeed; climbRotationSpeed2 = climbing[tagNum].climbRotationSpeed; moveInBursts = climbing[tagNum].moveInBursts; burstLength = climbing[tagNum].burstLength; climbableTag2 = climbing[tagNum].climbableTag; stayUpright2 = climbing[tagNum].stayUpright; snapToCenterOfObject2 = climbing[tagNum].snapToCenterOfObject; bottomNoSurfaceDetectorHeight2 = ((Component)this).transform.up * (climbing[tagNum].bottomNoSurfaceDetectorHeight + 0.15f); topNoSurfaceDetectorHeight2 = ((Component)this).transform.up * (climbing[tagNum].topNoSurfaceDetectorHeight + 0.15f); topAndBottomNoSurfaceDetectorsWidth2 = ((Component)this).transform.right * climbing[tagNum].topAndBottomNoSurfaceDetectorsWidth; sideNoSurfaceDetectorsHeight2 = climbing[tagNum].sideNoSurfaceDetectorsHeight - 0.15f; sideNoSurfaceDetectorsWidth2 = ((Component)this).transform.right * (climbing[tagNum].sideNoSurfaceDetectorsWidth - 0.25f); sideNoSurfaceDetectorsWidthTurnBack2 = climbing[tagNum].sideNoSurfaceDetectorsWidth - 0.25f; stopAtSides2 = climbing[tagNum].stopAtSides; dropOffAtBottom2 = climbing[tagNum].dropOffAtBottom; dropOffAtFloor2 = climbing[tagNum].dropOffAtFloor; pullUpAtTop2 = climbing[tagNum].pullUpAtTop; pullUpSpeed = climbing[tagNum].pullUpSpeed; pullUpLocationForward2 = ((Component)this).transform.forward * climbing[tagNum].pullUpLocationForward; pushAgainstWallIfPlayerIsStuck2 = climbing[tagNum].pushAgainstWallIfPlayerIsStuck; allowGrabbingOnAfterWalkingOffLedge2 = climbing[tagNum].walkingOffOfClimbableSurface.allowGrabbingOnAfterWalkingOffLedge; spaceInFrontNeededToGrabBackOn2 = ((Component)this).transform.forward * (climbing[tagNum].walkingOffOfClimbableSurface.spaceInFrontNeededToGrabBackOn + 0.03f); firstSideLedgeDetectorsHeight2 = ((Component)this).transform.up * climbing[tagNum].walkingOffOfClimbableSurface.firstSideLedgeDetectorsHeight; secondSideLedgeDetectorsHeight2 = ((Component)this).transform.up * climbing[tagNum].walkingOffOfClimbableSurface.secondSideLedgeDetectorsHeight; thirdSideLedgeDetectorsHeight2 = ((Component)this).transform.up * climbing[tagNum].walkingOffOfClimbableSurface.thirdSideLedgeDetectorsHeight; sideLedgeDetectorsWidth2 = ((Component)this).transform.right * climbing[tagNum].walkingOffOfClimbableSurface.sideLedgeDetectorsWidth; sideLedgeDetectorsLength2 = ((Component)this).transform.forward * climbing[tagNum].walkingOffOfClimbableSurface.sideLedgeDetectorsLength; spaceBelowNeededToGrabBackOnHeight2 = ((Component)this).transform.up * (climbing[tagNum].walkingOffOfClimbableSurface.spaceBelowNeededToGrabBackOnHeight + 0.07f); spaceBelowNeededToGrabBackOnForward2 = ((Component)this).transform.forward * (climbing[tagNum].walkingOffOfClimbableSurface.spaceBelowNeededToGrabBackOnForward + 0.06f); scriptsToEnableOnGrab = climbing[tagNum].scriptsToEnableOnGrab; scriptsToDisableOnGrab = climbing[tagNum].scriptsToDisableOnGrab; } private void PushOffWall() { //IL_002d: Unknown result type (might be due to invalid IL or missing references) //IL_0032: Unknown result type (might be due to invalid IL or missing references) //IL_0042: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_00ac: Unknown result type (might be due to invalid IL or missing references) //IL_00b2: Unknown result type (might be due to invalid IL or missing references) //IL_00bc: Unknown result type (might be due to invalid IL or missing references) //IL_00c1: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_007e: Unknown result type (might be due to invalid IL or missing references) //IL_0083: Unknown result type (might be due to invalid IL or missing references) jumpedOffClimbableObjectTimer += 0.02f; if (jumpedOffClimbableObjectTimer < 0.3f) { currentlyClimbingWall = false; jumpedOffClimbableObjectDirection = Vector3.Slerp(jumpedOffClimbableObjectDirection, Vector3.zero, 8f * Time.deltaTime); if (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Collider)((Component)this).GetComponent()).enabled) { ((Component)this).GetComponent().Move(jumpedOffClimbableObjectDirection * Time.deltaTime); } else if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { ((Component)this).GetComponent().MovePosition(((Component)this).transform.position + jumpedOffClimbableObjectDirection * Time.deltaTime); } } } private void SnapToCenter() { //IL_01c6: Unknown result type (might be due to invalid IL or missing references) //IL_01cc: Unknown result type (might be due to invalid IL or missing references) //IL_01d6: Unknown result type (might be due to invalid IL or missing references) //IL_01e0: Unknown result type (might be due to invalid IL or missing references) //IL_01e5: Unknown result type (might be due to invalid IL or missing references) //IL_0130: Unknown result type (might be due to invalid IL or missing references) //IL_013a: Unknown result type (might be due to invalid IL or missing references) //IL_0144: Unknown result type (might be due to invalid IL or missing references) //IL_0149: Unknown result type (might be due to invalid IL or missing references) //IL_018a: Unknown result type (might be due to invalid IL or missing references) //IL_0190: Unknown result type (might be due to invalid IL or missing references) //IL_019a: Unknown result type (might be due to invalid IL or missing references) //IL_01a4: Unknown result type (might be due to invalid IL or missing references) //IL_01a9: Unknown result type (might be due to invalid IL or missing references) //IL_0103: Unknown result type (might be due to invalid IL or missing references) //IL_010d: Unknown result type (might be due to invalid IL or missing references) //IL_0117: Unknown result type (might be due to invalid IL or missing references) //IL_011c: Unknown result type (might be due to invalid IL or missing references) if (snapToCenterOfObject2 && (turnBack || back2)) { snappingToCenter = true; } if ((currentlyClimbingWall && !pullingUp) || turnBack || back2) { if (!turnBack || wallIsClimbable || currentlyClimbingWall) { snapTimer += 0.02f; } if (!snappingToCenter || !(snapTimer < 0.6f) || (turnBack && !(turnBackTimer >= 0.1f))) { return; } if (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Collider)((Component)this).GetComponent()).enabled) { if (!turnBack && !back2) { ((Component)this).GetComponent().Move(centerPoint * 15f * Time.deltaTime); } else { ((Component)this).GetComponent().Move(centerPoint * 13f * Time.deltaTime); } } else if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { if (!turnBack && !back2) { ((Component)this).GetComponent().MovePosition(((Component)this).transform.position + centerPoint * 15f * Time.deltaTime); } else { ((Component)this).GetComponent().MovePosition(((Component)this).transform.position + centerPoint * 13f * Time.deltaTime); } } } else { snapTimer = 0f; snappingToCenter = false; } } private void TurnToGrabLadder() { //IL_0070: Unknown result type (might be due to invalid IL or missing references) //IL_007b: Unknown result type (might be due to invalid IL or missing references) //IL_0085: Unknown result type (might be due to invalid IL or missing references) //IL_008a: Unknown result type (might be due to invalid IL or missing references) //IL_0095: Unknown result type (might be due to invalid IL or missing references) //IL_009f: Unknown result type (might be due to invalid IL or missing references) //IL_00a4: Unknown result type (might be due to invalid IL or missing references) //IL_00aa: Unknown result type (might be due to invalid IL or missing references) //IL_00af: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) //IL_00ba: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_00d0: Unknown result type (might be due to invalid IL or missing references) //IL_00da: Unknown result type (might be due to invalid IL or missing references) //IL_00df: Unknown result type (might be due to invalid IL or missing references) //IL_00ea: Unknown result type (might be due to invalid IL or missing references) //IL_00f4: Unknown result type (might be due to invalid IL or missing references) //IL_00f9: Unknown result type (might be due to invalid IL or missing references) //IL_0104: Unknown result type (might be due to invalid IL or missing references) //IL_010e: Unknown result type (might be due to invalid IL or missing references) //IL_0113: Unknown result type (might be due to invalid IL or missing references) //IL_0119: Unknown result type (might be due to invalid IL or missing references) //IL_011e: Unknown result type (might be due to invalid IL or missing references) //IL_0124: Unknown result type (might be due to invalid IL or missing references) //IL_0129: Unknown result type (might be due to invalid IL or missing references) //IL_012f: Unknown result type (might be due to invalid IL or missing references) //IL_0134: Unknown result type (might be due to invalid IL or missing references) //IL_013a: Unknown result type (might be due to invalid IL or missing references) //IL_013f: Unknown result type (might be due to invalid IL or missing references) //IL_014b: Unknown result type (might be due to invalid IL or missing references) //IL_029a: Unknown result type (might be due to invalid IL or missing references) //IL_02a5: Unknown result type (might be due to invalid IL or missing references) //IL_02af: Unknown result type (might be due to invalid IL or missing references) //IL_02b4: Unknown result type (might be due to invalid IL or missing references) //IL_02bf: Unknown result type (might be due to invalid IL or missing references) //IL_02c9: Unknown result type (might be due to invalid IL or missing references) //IL_02ce: Unknown result type (might be due to invalid IL or missing references) //IL_02d4: Unknown result type (might be due to invalid IL or missing references) //IL_02d9: Unknown result type (might be due to invalid IL or missing references) //IL_02df: Unknown result type (might be due to invalid IL or missing references) //IL_02e4: Unknown result type (might be due to invalid IL or missing references) //IL_02ef: Unknown result type (might be due to invalid IL or missing references) //IL_02fa: Unknown result type (might be due to invalid IL or missing references) //IL_0304: Unknown result type (might be due to invalid IL or missing references) //IL_0309: Unknown result type (might be due to invalid IL or missing references) //IL_0314: Unknown result type (might be due to invalid IL or missing references) //IL_031e: Unknown result type (might be due to invalid IL or missing references) //IL_0323: Unknown result type (might be due to invalid IL or missing references) //IL_032e: Unknown result type (might be due to invalid IL or missing references) //IL_0338: Unknown result type (might be due to invalid IL or missing references) //IL_033d: Unknown result type (might be due to invalid IL or missing references) //IL_0343: Unknown result type (might be due to invalid IL or missing references) //IL_0348: Unknown result type (might be due to invalid IL or missing references) //IL_034e: Unknown result type (might be due to invalid IL or missing references) //IL_0353: Unknown result type (might be due to invalid IL or missing references) //IL_0359: Unknown result type (might be due to invalid IL or missing references) //IL_035e: Unknown result type (might be due to invalid IL or missing references) //IL_0364: Unknown result type (might be due to invalid IL or missing references) //IL_0369: Unknown result type (might be due to invalid IL or missing references) //IL_0375: Unknown result type (might be due to invalid IL or missing references) //IL_05ce: Unknown result type (might be due to invalid IL or missing references) //IL_05d9: Unknown result type (might be due to invalid IL or missing references) //IL_05e3: Unknown result type (might be due to invalid IL or missing references) //IL_05e8: Unknown result type (might be due to invalid IL or missing references) //IL_05f3: Unknown result type (might be due to invalid IL or missing references) //IL_05f8: Unknown result type (might be due to invalid IL or missing references) //IL_05fe: Unknown result type (might be due to invalid IL or missing references) //IL_0603: Unknown result type (might be due to invalid IL or missing references) //IL_0609: Unknown result type (might be due to invalid IL or missing references) //IL_060e: Unknown result type (might be due to invalid IL or missing references) //IL_0619: Unknown result type (might be due to invalid IL or missing references) //IL_0624: Unknown result type (might be due to invalid IL or missing references) //IL_062e: Unknown result type (might be due to invalid IL or missing references) //IL_0633: Unknown result type (might be due to invalid IL or missing references) //IL_063e: Unknown result type (might be due to invalid IL or missing references) //IL_0648: Unknown result type (might be due to invalid IL or missing references) //IL_064d: Unknown result type (might be due to invalid IL or missing references) //IL_0653: Unknown result type (might be due to invalid IL or missing references) //IL_0658: Unknown result type (might be due to invalid IL or missing references) //IL_0663: Unknown result type (might be due to invalid IL or missing references) //IL_0668: Unknown result type (might be due to invalid IL or missing references) //IL_066e: Unknown result type (might be due to invalid IL or missing references) //IL_0673: Unknown result type (might be due to invalid IL or missing references) //IL_0679: Unknown result type (might be due to invalid IL or missing references) //IL_067e: Unknown result type (might be due to invalid IL or missing references) //IL_0684: Unknown result type (might be due to invalid IL or missing references) //IL_0689: Unknown result type (might be due to invalid IL or missing references) //IL_0695: Unknown result type (might be due to invalid IL or missing references) //IL_0185: Unknown result type (might be due to invalid IL or missing references) //IL_0190: Unknown result type (might be due to invalid IL or missing references) //IL_019a: Unknown result type (might be due to invalid IL or missing references) //IL_019f: Unknown result type (might be due to invalid IL or missing references) //IL_01aa: Unknown result type (might be due to invalid IL or missing references) //IL_01b4: Unknown result type (might be due to invalid IL or missing references) //IL_01b9: Unknown result type (might be due to invalid IL or missing references) //IL_01c4: Unknown result type (might be due to invalid IL or missing references) //IL_01ce: Unknown result type (might be due to invalid IL or missing references) //IL_01d3: Unknown result type (might be due to invalid IL or missing references) //IL_01d9: Unknown result type (might be due to invalid IL or missing references) //IL_01de: Unknown result type (might be due to invalid IL or missing references) //IL_01e4: Unknown result type (might be due to invalid IL or missing references) //IL_01e9: Unknown result type (might be due to invalid IL or missing references) //IL_01ef: Unknown result type (might be due to invalid IL or missing references) //IL_01f4: Unknown result type (might be due to invalid IL or missing references) //IL_01fa: Unknown result type (might be due to invalid IL or missing references) //IL_01ff: Unknown result type (might be due to invalid IL or missing references) //IL_020a: Unknown result type (might be due to invalid IL or missing references) //IL_0215: Unknown result type (might be due to invalid IL or missing references) //IL_021f: Unknown result type (might be due to invalid IL or missing references) //IL_0224: Unknown result type (might be due to invalid IL or missing references) //IL_022f: Unknown result type (might be due to invalid IL or missing references) //IL_0239: Unknown result type (might be due to invalid IL or missing references) //IL_023e: Unknown result type (might be due to invalid IL or missing references) //IL_0244: Unknown result type (might be due to invalid IL or missing references) //IL_0249: Unknown result type (might be due to invalid IL or missing references) //IL_024f: Unknown result type (might be due to invalid IL or missing references) //IL_0254: Unknown result type (might be due to invalid IL or missing references) //IL_0260: Unknown result type (might be due to invalid IL or missing references) //IL_09de: Unknown result type (might be due to invalid IL or missing references) //IL_09e9: Unknown result type (might be due to invalid IL or missing references) //IL_09f3: Unknown result type (might be due to invalid IL or missing references) //IL_09f8: Unknown result type (might be due to invalid IL or missing references) //IL_0a03: Unknown result type (might be due to invalid IL or missing references) //IL_0a0d: Unknown result type (might be due to invalid IL or missing references) //IL_0a12: Unknown result type (might be due to invalid IL or missing references) //IL_0a18: Unknown result type (might be due to invalid IL or missing references) //IL_0a1d: Unknown result type (might be due to invalid IL or missing references) //IL_0a23: Unknown result type (might be due to invalid IL or missing references) //IL_0a28: Unknown result type (might be due to invalid IL or missing references) //IL_0a33: Unknown result type (might be due to invalid IL or missing references) //IL_0a3e: Unknown result type (might be due to invalid IL or missing references) //IL_0a48: Unknown result type (might be due to invalid IL or missing references) //IL_0a4d: Unknown result type (might be due to invalid IL or missing references) //IL_0a58: Unknown result type (might be due to invalid IL or missing references) //IL_0a62: Unknown result type (might be due to invalid IL or missing references) //IL_0a67: Unknown result type (might be due to invalid IL or missing references) //IL_0a72: Unknown result type (might be due to invalid IL or missing references) //IL_0a7c: Unknown result type (might be due to invalid IL or missing references) //IL_0a81: Unknown result type (might be due to invalid IL or missing references) //IL_0a87: Unknown result type (might be due to invalid IL or missing references) //IL_0a8c: Unknown result type (might be due to invalid IL or missing references) //IL_0a92: Unknown result type (might be due to invalid IL or missing references) //IL_0a97: Unknown result type (might be due to invalid IL or missing references) //IL_0a9d: Unknown result type (might be due to invalid IL or missing references) //IL_0aa2: Unknown result type (might be due to invalid IL or missing references) //IL_0aa8: Unknown result type (might be due to invalid IL or missing references) //IL_0aad: Unknown result type (might be due to invalid IL or missing references) //IL_0ab9: Unknown result type (might be due to invalid IL or missing references) //IL_03af: Unknown result type (might be due to invalid IL or missing references) //IL_03ba: Unknown result type (might be due to invalid IL or missing references) //IL_03c4: Unknown result type (might be due to invalid IL or missing references) //IL_03c9: Unknown result type (might be due to invalid IL or missing references) //IL_03d4: Unknown result type (might be due to invalid IL or missing references) //IL_03de: Unknown result type (might be due to invalid IL or missing references) //IL_03e3: Unknown result type (might be due to invalid IL or missing references) //IL_03e9: Unknown result type (might be due to invalid IL or missing references) //IL_03ee: Unknown result type (might be due to invalid IL or missing references) //IL_03f4: Unknown result type (might be due to invalid IL or missing references) //IL_03f9: Unknown result type (might be due to invalid IL or missing references) //IL_0404: Unknown result type (might be due to invalid IL or missing references) //IL_040f: Unknown result type (might be due to invalid IL or missing references) //IL_0419: Unknown result type (might be due to invalid IL or missing references) //IL_041e: Unknown result type (might be due to invalid IL or missing references) //IL_0429: Unknown result type (might be due to invalid IL or missing references) //IL_0433: Unknown result type (might be due to invalid IL or missing references) //IL_0438: Unknown result type (might be due to invalid IL or missing references) //IL_0443: Unknown result type (might be due to invalid IL or missing references) //IL_044d: Unknown result type (might be due to invalid IL or missing references) //IL_0452: Unknown result type (might be due to invalid IL or missing references) //IL_0458: Unknown result type (might be due to invalid IL or missing references) //IL_045d: Unknown result type (might be due to invalid IL or missing references) //IL_0463: Unknown result type (might be due to invalid IL or missing references) //IL_0468: Unknown result type (might be due to invalid IL or missing references) //IL_046e: Unknown result type (might be due to invalid IL or missing references) //IL_0473: Unknown result type (might be due to invalid IL or missing references) //IL_047f: Unknown result type (might be due to invalid IL or missing references) //IL_0c08: Unknown result type (might be due to invalid IL or missing references) //IL_0c13: Unknown result type (might be due to invalid IL or missing references) //IL_0c1d: Unknown result type (might be due to invalid IL or missing references) //IL_0c22: Unknown result type (might be due to invalid IL or missing references) //IL_0c2d: Unknown result type (might be due to invalid IL or missing references) //IL_0c37: Unknown result type (might be due to invalid IL or missing references) //IL_0c3c: Unknown result type (might be due to invalid IL or missing references) //IL_0c42: Unknown result type (might be due to invalid IL or missing references) //IL_0c47: Unknown result type (might be due to invalid IL or missing references) //IL_0c4d: Unknown result type (might be due to invalid IL or missing references) //IL_0c52: Unknown result type (might be due to invalid IL or missing references) //IL_0c5d: Unknown result type (might be due to invalid IL or missing references) //IL_0c68: Unknown result type (might be due to invalid IL or missing references) //IL_0c72: Unknown result type (might be due to invalid IL or missing references) //IL_0c77: Unknown result type (might be due to invalid IL or missing references) //IL_0c82: Unknown result type (might be due to invalid IL or missing references) //IL_0c8c: Unknown result type (might be due to invalid IL or missing references) //IL_0c91: Unknown result type (might be due to invalid IL or missing references) //IL_0c9c: Unknown result type (might be due to invalid IL or missing references) //IL_0ca6: Unknown result type (might be due to invalid IL or missing references) //IL_0cab: Unknown result type (might be due to invalid IL or missing references) //IL_0cb1: Unknown result type (might be due to invalid IL or missing references) //IL_0cb6: Unknown result type (might be due to invalid IL or missing references) //IL_0cbc: Unknown result type (might be due to invalid IL or missing references) //IL_0cc1: Unknown result type (might be due to invalid IL or missing references) //IL_0cc7: Unknown result type (might be due to invalid IL or missing references) //IL_0ccc: Unknown result type (might be due to invalid IL or missing references) //IL_0cd2: Unknown result type (might be due to invalid IL or missing references) //IL_0cd7: Unknown result type (might be due to invalid IL or missing references) //IL_0ce3: Unknown result type (might be due to invalid IL or missing references) //IL_06cf: Unknown result type (might be due to invalid IL or missing references) //IL_06da: Unknown result type (might be due to invalid IL or missing references) //IL_06e4: Unknown result type (might be due to invalid IL or missing references) //IL_06e9: Unknown result type (might be due to invalid IL or missing references) //IL_06f4: Unknown result type (might be due to invalid IL or missing references) //IL_06f9: Unknown result type (might be due to invalid IL or missing references) //IL_06ff: Unknown result type (might be due to invalid IL or missing references) //IL_0704: Unknown result type (might be due to invalid IL or missing references) //IL_070a: Unknown result type (might be due to invalid IL or missing references) //IL_070f: Unknown result type (might be due to invalid IL or missing references) //IL_071a: Unknown result type (might be due to invalid IL or missing references) //IL_0725: Unknown result type (might be due to invalid IL or missing references) //IL_072f: Unknown result type (might be due to invalid IL or missing references) //IL_0734: Unknown result type (might be due to invalid IL or missing references) //IL_073f: Unknown result type (might be due to invalid IL or missing references) //IL_0744: Unknown result type (might be due to invalid IL or missing references) //IL_074f: Unknown result type (might be due to invalid IL or missing references) //IL_0759: Unknown result type (might be due to invalid IL or missing references) //IL_075e: Unknown result type (might be due to invalid IL or missing references) //IL_0764: Unknown result type (might be due to invalid IL or missing references) //IL_0769: Unknown result type (might be due to invalid IL or missing references) //IL_076f: Unknown result type (might be due to invalid IL or missing references) //IL_0774: Unknown result type (might be due to invalid IL or missing references) //IL_077a: Unknown result type (might be due to invalid IL or missing references) //IL_077f: Unknown result type (might be due to invalid IL or missing references) //IL_078b: Unknown result type (might be due to invalid IL or missing references) //IL_08c6: Unknown result type (might be due to invalid IL or missing references) //IL_08d1: Unknown result type (might be due to invalid IL or missing references) //IL_08db: Unknown result type (might be due to invalid IL or missing references) //IL_08e0: Unknown result type (might be due to invalid IL or missing references) //IL_08eb: Unknown result type (might be due to invalid IL or missing references) //IL_08f5: Unknown result type (might be due to invalid IL or missing references) //IL_08fa: Unknown result type (might be due to invalid IL or missing references) //IL_0900: Unknown result type (might be due to invalid IL or missing references) //IL_0905: Unknown result type (might be due to invalid IL or missing references) //IL_090b: Unknown result type (might be due to invalid IL or missing references) //IL_0910: Unknown result type (might be due to invalid IL or missing references) //IL_091b: Unknown result type (might be due to invalid IL or missing references) //IL_0926: Unknown result type (might be due to invalid IL or missing references) //IL_0930: Unknown result type (might be due to invalid IL or missing references) //IL_0935: Unknown result type (might be due to invalid IL or missing references) //IL_0940: Unknown result type (might be due to invalid IL or missing references) //IL_094a: Unknown result type (might be due to invalid IL or missing references) //IL_094f: Unknown result type (might be due to invalid IL or missing references) //IL_095a: Unknown result type (might be due to invalid IL or missing references) //IL_0964: Unknown result type (might be due to invalid IL or missing references) //IL_0969: Unknown result type (might be due to invalid IL or missing references) //IL_096f: Unknown result type (might be due to invalid IL or missing references) //IL_0974: Unknown result type (might be due to invalid IL or missing references) //IL_097a: Unknown result type (might be due to invalid IL or missing references) //IL_097f: Unknown result type (might be due to invalid IL or missing references) //IL_0985: Unknown result type (might be due to invalid IL or missing references) //IL_098a: Unknown result type (might be due to invalid IL or missing references) //IL_0996: Unknown result type (might be due to invalid IL or missing references) //IL_0f3c: Unknown result type (might be due to invalid IL or missing references) //IL_0f47: Unknown result type (might be due to invalid IL or missing references) //IL_0f51: Unknown result type (might be due to invalid IL or missing references) //IL_0f56: Unknown result type (might be due to invalid IL or missing references) //IL_0f61: Unknown result type (might be due to invalid IL or missing references) //IL_0f66: Unknown result type (might be due to invalid IL or missing references) //IL_0f6c: Unknown result type (might be due to invalid IL or missing references) //IL_0f71: Unknown result type (might be due to invalid IL or missing references) //IL_0f77: Unknown result type (might be due to invalid IL or missing references) //IL_0f7c: Unknown result type (might be due to invalid IL or missing references) //IL_0f87: Unknown result type (might be due to invalid IL or missing references) //IL_0f92: Unknown result type (might be due to invalid IL or missing references) //IL_0f9c: Unknown result type (might be due to invalid IL or missing references) //IL_0fa1: Unknown result type (might be due to invalid IL or missing references) //IL_0fac: Unknown result type (might be due to invalid IL or missing references) //IL_0fb6: Unknown result type (might be due to invalid IL or missing references) //IL_0fbb: Unknown result type (might be due to invalid IL or missing references) //IL_0fc1: Unknown result type (might be due to invalid IL or missing references) //IL_0fc6: Unknown result type (might be due to invalid IL or missing references) //IL_0fd1: Unknown result type (might be due to invalid IL or missing references) //IL_0fd6: Unknown result type (might be due to invalid IL or missing references) //IL_0fdc: Unknown result type (might be due to invalid IL or missing references) //IL_0fe1: Unknown result type (might be due to invalid IL or missing references) //IL_0fe7: Unknown result type (might be due to invalid IL or missing references) //IL_0fec: Unknown result type (might be due to invalid IL or missing references) //IL_0ff2: Unknown result type (might be due to invalid IL or missing references) //IL_0ff7: Unknown result type (might be due to invalid IL or missing references) //IL_1003: Unknown result type (might be due to invalid IL or missing references) //IL_0af3: Unknown result type (might be due to invalid IL or missing references) //IL_0afe: Unknown result type (might be due to invalid IL or missing references) //IL_0b08: Unknown result type (might be due to invalid IL or missing references) //IL_0b0d: Unknown result type (might be due to invalid IL or missing references) //IL_0b18: Unknown result type (might be due to invalid IL or missing references) //IL_0b22: Unknown result type (might be due to invalid IL or missing references) //IL_0b27: Unknown result type (might be due to invalid IL or missing references) //IL_0b32: Unknown result type (might be due to invalid IL or missing references) //IL_0b3c: Unknown result type (might be due to invalid IL or missing references) //IL_0b41: Unknown result type (might be due to invalid IL or missing references) //IL_0b47: Unknown result type (might be due to invalid IL or missing references) //IL_0b4c: Unknown result type (might be due to invalid IL or missing references) //IL_0b52: Unknown result type (might be due to invalid IL or missing references) //IL_0b57: Unknown result type (might be due to invalid IL or missing references) //IL_0b5d: Unknown result type (might be due to invalid IL or missing references) //IL_0b62: Unknown result type (might be due to invalid IL or missing references) //IL_0b68: Unknown result type (might be due to invalid IL or missing references) //IL_0b6d: Unknown result type (might be due to invalid IL or missing references) //IL_0b78: Unknown result type (might be due to invalid IL or missing references) //IL_0b83: Unknown result type (might be due to invalid IL or missing references) //IL_0b8d: Unknown result type (might be due to invalid IL or missing references) //IL_0b92: Unknown result type (might be due to invalid IL or missing references) //IL_0b9d: Unknown result type (might be due to invalid IL or missing references) //IL_0ba7: Unknown result type (might be due to invalid IL or missing references) //IL_0bac: Unknown result type (might be due to invalid IL or missing references) //IL_0bb2: Unknown result type (might be due to invalid IL or missing references) //IL_0bb7: Unknown result type (might be due to invalid IL or missing references) //IL_0bbd: Unknown result type (might be due to invalid IL or missing references) //IL_0bc2: Unknown result type (might be due to invalid IL or missing references) //IL_0bce: Unknown result type (might be due to invalid IL or missing references) //IL_04b9: Unknown result type (might be due to invalid IL or missing references) //IL_04c4: Unknown result type (might be due to invalid IL or missing references) //IL_04ce: Unknown result type (might be due to invalid IL or missing references) //IL_04d3: Unknown result type (might be due to invalid IL or missing references) //IL_04de: Unknown result type (might be due to invalid IL or missing references) //IL_04e8: Unknown result type (might be due to invalid IL or missing references) //IL_04ed: Unknown result type (might be due to invalid IL or missing references) //IL_04f8: Unknown result type (might be due to invalid IL or missing references) //IL_0502: Unknown result type (might be due to invalid IL or missing references) //IL_0507: Unknown result type (might be due to invalid IL or missing references) //IL_050d: Unknown result type (might be due to invalid IL or missing references) //IL_0512: Unknown result type (might be due to invalid IL or missing references) //IL_0518: Unknown result type (might be due to invalid IL or missing references) //IL_051d: Unknown result type (might be due to invalid IL or missing references) //IL_0523: Unknown result type (might be due to invalid IL or missing references) //IL_0528: Unknown result type (might be due to invalid IL or missing references) //IL_052e: Unknown result type (might be due to invalid IL or missing references) //IL_0533: Unknown result type (might be due to invalid IL or missing references) //IL_053e: Unknown result type (might be due to invalid IL or missing references) //IL_0549: Unknown result type (might be due to invalid IL or missing references) //IL_0553: Unknown result type (might be due to invalid IL or missing references) //IL_0558: Unknown result type (might be due to invalid IL or missing references) //IL_0563: Unknown result type (might be due to invalid IL or missing references) //IL_056d: Unknown result type (might be due to invalid IL or missing references) //IL_0572: Unknown result type (might be due to invalid IL or missing references) //IL_0578: Unknown result type (might be due to invalid IL or missing references) //IL_057d: Unknown result type (might be due to invalid IL or missing references) //IL_0583: Unknown result type (might be due to invalid IL or missing references) //IL_0588: Unknown result type (might be due to invalid IL or missing references) //IL_0594: Unknown result type (might be due to invalid IL or missing references) //IL_134c: Unknown result type (might be due to invalid IL or missing references) //IL_1357: Unknown result type (might be due to invalid IL or missing references) //IL_1361: Unknown result type (might be due to invalid IL or missing references) //IL_1366: Unknown result type (might be due to invalid IL or missing references) //IL_1371: Unknown result type (might be due to invalid IL or missing references) //IL_137b: Unknown result type (might be due to invalid IL or missing references) //IL_1380: Unknown result type (might be due to invalid IL or missing references) //IL_1386: Unknown result type (might be due to invalid IL or missing references) //IL_138b: Unknown result type (might be due to invalid IL or missing references) //IL_1396: Unknown result type (might be due to invalid IL or missing references) //IL_13a1: Unknown result type (might be due to invalid IL or missing references) //IL_13ab: Unknown result type (might be due to invalid IL or missing references) //IL_13b0: Unknown result type (might be due to invalid IL or missing references) //IL_13bb: Unknown result type (might be due to invalid IL or missing references) //IL_13c5: Unknown result type (might be due to invalid IL or missing references) //IL_13ca: Unknown result type (might be due to invalid IL or missing references) //IL_13d0: Unknown result type (might be due to invalid IL or missing references) //IL_13d5: Unknown result type (might be due to invalid IL or missing references) //IL_13e1: Unknown result type (might be due to invalid IL or missing references) //IL_0d1d: Unknown result type (might be due to invalid IL or missing references) //IL_0d28: Unknown result type (might be due to invalid IL or missing references) //IL_0d32: Unknown result type (might be due to invalid IL or missing references) //IL_0d37: Unknown result type (might be due to invalid IL or missing references) //IL_0d42: Unknown result type (might be due to invalid IL or missing references) //IL_0d4c: Unknown result type (might be due to invalid IL or missing references) //IL_0d51: Unknown result type (might be due to invalid IL or missing references) //IL_0d57: Unknown result type (might be due to invalid IL or missing references) //IL_0d5c: Unknown result type (might be due to invalid IL or missing references) //IL_0d62: Unknown result type (might be due to invalid IL or missing references) //IL_0d67: Unknown result type (might be due to invalid IL or missing references) //IL_0d72: Unknown result type (might be due to invalid IL or missing references) //IL_0d7d: Unknown result type (might be due to invalid IL or missing references) //IL_0d87: Unknown result type (might be due to invalid IL or missing references) //IL_0d8c: Unknown result type (might be due to invalid IL or missing references) //IL_0d97: Unknown result type (might be due to invalid IL or missing references) //IL_0da1: Unknown result type (might be due to invalid IL or missing references) //IL_0da6: Unknown result type (might be due to invalid IL or missing references) //IL_0db1: Unknown result type (might be due to invalid IL or missing references) //IL_0dbb: Unknown result type (might be due to invalid IL or missing references) //IL_0dc0: Unknown result type (might be due to invalid IL or missing references) //IL_0dc6: Unknown result type (might be due to invalid IL or missing references) //IL_0dcb: Unknown result type (might be due to invalid IL or missing references) //IL_0dd1: Unknown result type (might be due to invalid IL or missing references) //IL_0dd6: Unknown result type (might be due to invalid IL or missing references) //IL_0ddc: Unknown result type (might be due to invalid IL or missing references) //IL_0de1: Unknown result type (might be due to invalid IL or missing references) //IL_0ded: Unknown result type (might be due to invalid IL or missing references) //IL_07c5: Unknown result type (might be due to invalid IL or missing references) //IL_07d0: Unknown result type (might be due to invalid IL or missing references) //IL_07da: Unknown result type (might be due to invalid IL or missing references) //IL_07df: Unknown result type (might be due to invalid IL or missing references) //IL_07ea: Unknown result type (might be due to invalid IL or missing references) //IL_07f4: Unknown result type (might be due to invalid IL or missing references) //IL_07f9: Unknown result type (might be due to invalid IL or missing references) //IL_07ff: Unknown result type (might be due to invalid IL or missing references) //IL_0804: Unknown result type (might be due to invalid IL or missing references) //IL_080f: Unknown result type (might be due to invalid IL or missing references) //IL_0814: Unknown result type (might be due to invalid IL or missing references) //IL_081a: Unknown result type (might be due to invalid IL or missing references) //IL_081f: Unknown result type (might be due to invalid IL or missing references) //IL_0825: Unknown result type (might be due to invalid IL or missing references) //IL_082a: Unknown result type (might be due to invalid IL or missing references) //IL_0830: Unknown result type (might be due to invalid IL or missing references) //IL_0835: Unknown result type (might be due to invalid IL or missing references) //IL_0840: Unknown result type (might be due to invalid IL or missing references) //IL_084b: Unknown result type (might be due to invalid IL or missing references) //IL_0855: Unknown result type (might be due to invalid IL or missing references) //IL_085a: Unknown result type (might be due to invalid IL or missing references) //IL_0865: Unknown result type (might be due to invalid IL or missing references) //IL_086a: Unknown result type (might be due to invalid IL or missing references) //IL_0870: Unknown result type (might be due to invalid IL or missing references) //IL_0875: Unknown result type (might be due to invalid IL or missing references) //IL_087b: Unknown result type (might be due to invalid IL or missing references) //IL_0880: Unknown result type (might be due to invalid IL or missing references) //IL_088c: Unknown result type (might be due to invalid IL or missing references) //IL_1452: Unknown result type (might be due to invalid IL or missing references) //IL_145d: Unknown result type (might be due to invalid IL or missing references) //IL_1467: Unknown result type (might be due to invalid IL or missing references) //IL_146c: Unknown result type (might be due to invalid IL or missing references) //IL_1477: Unknown result type (might be due to invalid IL or missing references) //IL_1481: Unknown result type (might be due to invalid IL or missing references) //IL_1486: Unknown result type (might be due to invalid IL or missing references) //IL_148c: Unknown result type (might be due to invalid IL or missing references) //IL_1491: Unknown result type (might be due to invalid IL or missing references) //IL_149c: Unknown result type (might be due to invalid IL or missing references) //IL_14a7: Unknown result type (might be due to invalid IL or missing references) //IL_14b1: Unknown result type (might be due to invalid IL or missing references) //IL_14b6: Unknown result type (might be due to invalid IL or missing references) //IL_14c1: Unknown result type (might be due to invalid IL or missing references) //IL_14cb: Unknown result type (might be due to invalid IL or missing references) //IL_14d0: Unknown result type (might be due to invalid IL or missing references) //IL_14d6: Unknown result type (might be due to invalid IL or missing references) //IL_14db: Unknown result type (might be due to invalid IL or missing references) //IL_14e7: Unknown result type (might be due to invalid IL or missing references) //IL_103d: Unknown result type (might be due to invalid IL or missing references) //IL_1048: Unknown result type (might be due to invalid IL or missing references) //IL_1052: Unknown result type (might be due to invalid IL or missing references) //IL_1057: Unknown result type (might be due to invalid IL or missing references) //IL_1062: Unknown result type (might be due to invalid IL or missing references) //IL_1067: Unknown result type (might be due to invalid IL or missing references) //IL_106d: Unknown result type (might be due to invalid IL or missing references) //IL_1072: Unknown result type (might be due to invalid IL or missing references) //IL_1078: Unknown result type (might be due to invalid IL or missing references) //IL_107d: Unknown result type (might be due to invalid IL or missing references) //IL_1088: Unknown result type (might be due to invalid IL or missing references) //IL_1093: Unknown result type (might be due to invalid IL or missing references) //IL_109d: Unknown result type (might be due to invalid IL or missing references) //IL_10a2: Unknown result type (might be due to invalid IL or missing references) //IL_10ad: Unknown result type (might be due to invalid IL or missing references) //IL_10b2: Unknown result type (might be due to invalid IL or missing references) //IL_10bd: Unknown result type (might be due to invalid IL or missing references) //IL_10c7: Unknown result type (might be due to invalid IL or missing references) //IL_10cc: Unknown result type (might be due to invalid IL or missing references) //IL_10d2: Unknown result type (might be due to invalid IL or missing references) //IL_10d7: Unknown result type (might be due to invalid IL or missing references) //IL_10dd: Unknown result type (might be due to invalid IL or missing references) //IL_10e2: Unknown result type (might be due to invalid IL or missing references) //IL_10e8: Unknown result type (might be due to invalid IL or missing references) //IL_10ed: Unknown result type (might be due to invalid IL or missing references) //IL_10f9: Unknown result type (might be due to invalid IL or missing references) //IL_1234: Unknown result type (might be due to invalid IL or missing references) //IL_123f: Unknown result type (might be due to invalid IL or missing references) //IL_1249: Unknown result type (might be due to invalid IL or missing references) //IL_124e: Unknown result type (might be due to invalid IL or missing references) //IL_1259: Unknown result type (might be due to invalid IL or missing references) //IL_1263: Unknown result type (might be due to invalid IL or missing references) //IL_1268: Unknown result type (might be due to invalid IL or missing references) //IL_126e: Unknown result type (might be due to invalid IL or missing references) //IL_1273: Unknown result type (might be due to invalid IL or missing references) //IL_1279: Unknown result type (might be due to invalid IL or missing references) //IL_127e: Unknown result type (might be due to invalid IL or missing references) //IL_1289: Unknown result type (might be due to invalid IL or missing references) //IL_1294: Unknown result type (might be due to invalid IL or missing references) //IL_129e: Unknown result type (might be due to invalid IL or missing references) //IL_12a3: Unknown result type (might be due to invalid IL or missing references) //IL_12ae: Unknown result type (might be due to invalid IL or missing references) //IL_12b8: Unknown result type (might be due to invalid IL or missing references) //IL_12bd: Unknown result type (might be due to invalid IL or missing references) //IL_12c8: Unknown result type (might be due to invalid IL or missing references) //IL_12d2: Unknown result type (might be due to invalid IL or missing references) //IL_12d7: Unknown result type (might be due to invalid IL or missing references) //IL_12dd: Unknown result type (might be due to invalid IL or missing references) //IL_12e2: Unknown result type (might be due to invalid IL or missing references) //IL_12e8: Unknown result type (might be due to invalid IL or missing references) //IL_12ed: Unknown result type (might be due to invalid IL or missing references) //IL_12f3: Unknown result type (might be due to invalid IL or missing references) //IL_12f8: Unknown result type (might be due to invalid IL or missing references) //IL_1304: Unknown result type (might be due to invalid IL or missing references) //IL_1558: Unknown result type (might be due to invalid IL or missing references) //IL_1563: Unknown result type (might be due to invalid IL or missing references) //IL_156d: Unknown result type (might be due to invalid IL or missing references) //IL_1572: Unknown result type (might be due to invalid IL or missing references) //IL_157d: Unknown result type (might be due to invalid IL or missing references) //IL_1587: Unknown result type (might be due to invalid IL or missing references) //IL_158c: Unknown result type (might be due to invalid IL or missing references) //IL_1592: Unknown result type (might be due to invalid IL or missing references) //IL_1597: Unknown result type (might be due to invalid IL or missing references) //IL_15a2: Unknown result type (might be due to invalid IL or missing references) //IL_15ad: Unknown result type (might be due to invalid IL or missing references) //IL_15b7: Unknown result type (might be due to invalid IL or missing references) //IL_15bc: Unknown result type (might be due to invalid IL or missing references) //IL_15c7: Unknown result type (might be due to invalid IL or missing references) //IL_15d1: Unknown result type (might be due to invalid IL or missing references) //IL_15d6: Unknown result type (might be due to invalid IL or missing references) //IL_15dc: Unknown result type (might be due to invalid IL or missing references) //IL_15e1: Unknown result type (might be due to invalid IL or missing references) //IL_15ed: Unknown result type (might be due to invalid IL or missing references) //IL_141b: Unknown result type (might be due to invalid IL or missing references) //IL_1420: Unknown result type (might be due to invalid IL or missing references) //IL_0e27: Unknown result type (might be due to invalid IL or missing references) //IL_0e32: Unknown result type (might be due to invalid IL or missing references) //IL_0e3c: Unknown result type (might be due to invalid IL or missing references) //IL_0e41: Unknown result type (might be due to invalid IL or missing references) //IL_0e4c: Unknown result type (might be due to invalid IL or missing references) //IL_0e56: Unknown result type (might be due to invalid IL or missing references) //IL_0e5b: Unknown result type (might be due to invalid IL or missing references) //IL_0e66: Unknown result type (might be due to invalid IL or missing references) //IL_0e70: Unknown result type (might be due to invalid IL or missing references) //IL_0e75: Unknown result type (might be due to invalid IL or missing references) //IL_0e7b: Unknown result type (might be due to invalid IL or missing references) //IL_0e80: Unknown result type (might be due to invalid IL or missing references) //IL_0e86: Unknown result type (might be due to invalid IL or missing references) //IL_0e8b: Unknown result type (might be due to invalid IL or missing references) //IL_0e91: Unknown result type (might be due to invalid IL or missing references) //IL_0e96: Unknown result type (might be due to invalid IL or missing references) //IL_0e9c: Unknown result type (might be due to invalid IL or missing references) //IL_0ea1: Unknown result type (might be due to invalid IL or missing references) //IL_0eac: Unknown result type (might be due to invalid IL or missing references) //IL_0eb7: Unknown result type (might be due to invalid IL or missing references) //IL_0ec1: Unknown result type (might be due to invalid IL or missing references) //IL_0ec6: Unknown result type (might be due to invalid IL or missing references) //IL_0ed1: Unknown result type (might be due to invalid IL or missing references) //IL_0edb: Unknown result type (might be due to invalid IL or missing references) //IL_0ee0: Unknown result type (might be due to invalid IL or missing references) //IL_0ee6: Unknown result type (might be due to invalid IL or missing references) //IL_0eeb: Unknown result type (might be due to invalid IL or missing references) //IL_0ef1: Unknown result type (might be due to invalid IL or missing references) //IL_0ef6: Unknown result type (might be due to invalid IL or missing references) //IL_0f02: Unknown result type (might be due to invalid IL or missing references) //IL_165e: Unknown result type (might be due to invalid IL or missing references) //IL_1669: Unknown result type (might be due to invalid IL or missing references) //IL_1673: Unknown result type (might be due to invalid IL or missing references) //IL_1678: Unknown result type (might be due to invalid IL or missing references) //IL_1683: Unknown result type (might be due to invalid IL or missing references) //IL_168d: Unknown result type (might be due to invalid IL or missing references) //IL_1692: Unknown result type (might be due to invalid IL or missing references) //IL_1698: Unknown result type (might be due to invalid IL or missing references) //IL_169d: Unknown result type (might be due to invalid IL or missing references) //IL_16a8: Unknown result type (might be due to invalid IL or missing references) //IL_16b3: Unknown result type (might be due to invalid IL or missing references) //IL_16bd: Unknown result type (might be due to invalid IL or missing references) //IL_16c2: Unknown result type (might be due to invalid IL or missing references) //IL_16cd: Unknown result type (might be due to invalid IL or missing references) //IL_16d7: Unknown result type (might be due to invalid IL or missing references) //IL_16dc: Unknown result type (might be due to invalid IL or missing references) //IL_16e2: Unknown result type (might be due to invalid IL or missing references) //IL_16e7: Unknown result type (might be due to invalid IL or missing references) //IL_16f3: Unknown result type (might be due to invalid IL or missing references) //IL_1521: Unknown result type (might be due to invalid IL or missing references) //IL_1526: Unknown result type (might be due to invalid IL or missing references) //IL_1972: Unknown result type (might be due to invalid IL or missing references) //IL_197d: Unknown result type (might be due to invalid IL or missing references) //IL_1987: Unknown result type (might be due to invalid IL or missing references) //IL_198c: Unknown result type (might be due to invalid IL or missing references) //IL_1991: Unknown result type (might be due to invalid IL or missing references) //IL_19a0: Unknown result type (might be due to invalid IL or missing references) //IL_19a5: Unknown result type (might be due to invalid IL or missing references) //IL_19b4: Unknown result type (might be due to invalid IL or missing references) //IL_19b9: Unknown result type (might be due to invalid IL or missing references) //IL_19cf: Unknown result type (might be due to invalid IL or missing references) //IL_19da: Unknown result type (might be due to invalid IL or missing references) //IL_19e4: Unknown result type (might be due to invalid IL or missing references) //IL_19e9: Unknown result type (might be due to invalid IL or missing references) //IL_19ee: Unknown result type (might be due to invalid IL or missing references) //IL_19f7: Unknown result type (might be due to invalid IL or missing references) //IL_1a02: Unknown result type (might be due to invalid IL or missing references) //IL_1a0d: Unknown result type (might be due to invalid IL or missing references) //IL_1a17: Unknown result type (might be due to invalid IL or missing references) //IL_1a1c: Unknown result type (might be due to invalid IL or missing references) //IL_1a21: Unknown result type (might be due to invalid IL or missing references) //IL_1a30: Unknown result type (might be due to invalid IL or missing references) //IL_1a35: Unknown result type (might be due to invalid IL or missing references) //IL_1a44: Unknown result type (might be due to invalid IL or missing references) //IL_1a49: Unknown result type (might be due to invalid IL or missing references) //IL_1a6b: Unknown result type (might be due to invalid IL or missing references) //IL_1a76: Unknown result type (might be due to invalid IL or missing references) //IL_1a80: Unknown result type (might be due to invalid IL or missing references) //IL_1a85: Unknown result type (might be due to invalid IL or missing references) //IL_1a8a: Unknown result type (might be due to invalid IL or missing references) //IL_1a93: Unknown result type (might be due to invalid IL or missing references) //IL_1a9f: Unknown result type (might be due to invalid IL or missing references) //IL_1133: Unknown result type (might be due to invalid IL or missing references) //IL_113e: Unknown result type (might be due to invalid IL or missing references) //IL_1148: Unknown result type (might be due to invalid IL or missing references) //IL_114d: Unknown result type (might be due to invalid IL or missing references) //IL_1158: Unknown result type (might be due to invalid IL or missing references) //IL_1162: Unknown result type (might be due to invalid IL or missing references) //IL_1167: Unknown result type (might be due to invalid IL or missing references) //IL_116d: Unknown result type (might be due to invalid IL or missing references) //IL_1172: Unknown result type (might be due to invalid IL or missing references) //IL_117d: Unknown result type (might be due to invalid IL or missing references) //IL_1182: Unknown result type (might be due to invalid IL or missing references) //IL_1188: Unknown result type (might be due to invalid IL or missing references) //IL_118d: Unknown result type (might be due to invalid IL or missing references) //IL_1193: Unknown result type (might be due to invalid IL or missing references) //IL_1198: Unknown result type (might be due to invalid IL or missing references) //IL_119e: Unknown result type (might be due to invalid IL or missing references) //IL_11a3: Unknown result type (might be due to invalid IL or missing references) //IL_11ae: Unknown result type (might be due to invalid IL or missing references) //IL_11b9: Unknown result type (might be due to invalid IL or missing references) //IL_11c3: Unknown result type (might be due to invalid IL or missing references) //IL_11c8: Unknown result type (might be due to invalid IL or missing references) //IL_11d3: Unknown result type (might be due to invalid IL or missing references) //IL_11d8: Unknown result type (might be due to invalid IL or missing references) //IL_11de: Unknown result type (might be due to invalid IL or missing references) //IL_11e3: Unknown result type (might be due to invalid IL or missing references) //IL_11e9: Unknown result type (might be due to invalid IL or missing references) //IL_11ee: Unknown result type (might be due to invalid IL or missing references) //IL_11fa: Unknown result type (might be due to invalid IL or missing references) //IL_1764: Unknown result type (might be due to invalid IL or missing references) //IL_176f: Unknown result type (might be due to invalid IL or missing references) //IL_1779: Unknown result type (might be due to invalid IL or missing references) //IL_177e: Unknown result type (might be due to invalid IL or missing references) //IL_1789: Unknown result type (might be due to invalid IL or missing references) //IL_1793: Unknown result type (might be due to invalid IL or missing references) //IL_1798: Unknown result type (might be due to invalid IL or missing references) //IL_179e: Unknown result type (might be due to invalid IL or missing references) //IL_17a3: Unknown result type (might be due to invalid IL or missing references) //IL_17ae: Unknown result type (might be due to invalid IL or missing references) //IL_17b9: Unknown result type (might be due to invalid IL or missing references) //IL_17c3: Unknown result type (might be due to invalid IL or missing references) //IL_17c8: Unknown result type (might be due to invalid IL or missing references) //IL_17d3: Unknown result type (might be due to invalid IL or missing references) //IL_17dd: Unknown result type (might be due to invalid IL or missing references) //IL_17e2: Unknown result type (might be due to invalid IL or missing references) //IL_17e8: Unknown result type (might be due to invalid IL or missing references) //IL_17ed: Unknown result type (might be due to invalid IL or missing references) //IL_17f9: Unknown result type (might be due to invalid IL or missing references) //IL_1627: Unknown result type (might be due to invalid IL or missing references) //IL_162c: Unknown result type (might be due to invalid IL or missing references) //IL_51b0: Unknown result type (might be due to invalid IL or missing references) //IL_51b5: Unknown result type (might be due to invalid IL or missing references) //IL_1b10: Unknown result type (might be due to invalid IL or missing references) //IL_1b1b: Unknown result type (might be due to invalid IL or missing references) //IL_1b25: Unknown result type (might be due to invalid IL or missing references) //IL_1b2a: Unknown result type (might be due to invalid IL or missing references) //IL_1b35: Unknown result type (might be due to invalid IL or missing references) //IL_1b40: Unknown result type (might be due to invalid IL or missing references) //IL_1b4a: Unknown result type (might be due to invalid IL or missing references) //IL_1b4f: Unknown result type (might be due to invalid IL or missing references) //IL_1b5a: Unknown result type (might be due to invalid IL or missing references) //IL_1b64: Unknown result type (might be due to invalid IL or missing references) //IL_1b69: Unknown result type (might be due to invalid IL or missing references) //IL_1b6f: Unknown result type (might be due to invalid IL or missing references) //IL_1b74: Unknown result type (might be due to invalid IL or missing references) //IL_1b80: Unknown result type (might be due to invalid IL or missing references) //IL_186b: Unknown result type (might be due to invalid IL or missing references) //IL_1876: Unknown result type (might be due to invalid IL or missing references) //IL_1880: Unknown result type (might be due to invalid IL or missing references) //IL_1885: Unknown result type (might be due to invalid IL or missing references) //IL_1890: Unknown result type (might be due to invalid IL or missing references) //IL_189a: Unknown result type (might be due to invalid IL or missing references) //IL_189f: Unknown result type (might be due to invalid IL or missing references) //IL_18a5: Unknown result type (might be due to invalid IL or missing references) //IL_18aa: Unknown result type (might be due to invalid IL or missing references) //IL_18b5: Unknown result type (might be due to invalid IL or missing references) //IL_18c0: Unknown result type (might be due to invalid IL or missing references) //IL_18ca: Unknown result type (might be due to invalid IL or missing references) //IL_18cf: Unknown result type (might be due to invalid IL or missing references) //IL_18da: Unknown result type (might be due to invalid IL or missing references) //IL_18e4: Unknown result type (might be due to invalid IL or missing references) //IL_18e9: Unknown result type (might be due to invalid IL or missing references) //IL_18ef: Unknown result type (might be due to invalid IL or missing references) //IL_18f4: Unknown result type (might be due to invalid IL or missing references) //IL_1900: Unknown result type (might be due to invalid IL or missing references) //IL_172d: Unknown result type (might be due to invalid IL or missing references) //IL_1732: Unknown result type (might be due to invalid IL or missing references) //IL_58a7: Unknown result type (might be due to invalid IL or missing references) //IL_58ac: Unknown result type (might be due to invalid IL or missing references) //IL_58b2: Unknown result type (might be due to invalid IL or missing references) //IL_58b7: Unknown result type (might be due to invalid IL or missing references) //IL_1833: Unknown result type (might be due to invalid IL or missing references) //IL_1838: Unknown result type (might be due to invalid IL or missing references) //IL_193a: Unknown result type (might be due to invalid IL or missing references) //IL_193f: Unknown result type (might be due to invalid IL or missing references) //IL_554e: Unknown result type (might be due to invalid IL or missing references) //IL_556f: Unknown result type (might be due to invalid IL or missing references) //IL_5224: Unknown result type (might be due to invalid IL or missing references) //IL_5245: Unknown result type (might be due to invalid IL or missing references) //IL_1bb1: Unknown result type (might be due to invalid IL or missing references) //IL_1bbc: Unknown result type (might be due to invalid IL or missing references) //IL_1bc6: Unknown result type (might be due to invalid IL or missing references) //IL_1bcb: Unknown result type (might be due to invalid IL or missing references) //IL_1bd6: Unknown result type (might be due to invalid IL or missing references) //IL_1be0: Unknown result type (might be due to invalid IL or missing references) //IL_1be5: Unknown result type (might be due to invalid IL or missing references) //IL_1beb: Unknown result type (might be due to invalid IL or missing references) //IL_1bf0: Unknown result type (might be due to invalid IL or missing references) //IL_1bfb: Unknown result type (might be due to invalid IL or missing references) //IL_1c06: Unknown result type (might be due to invalid IL or missing references) //IL_1c10: Unknown result type (might be due to invalid IL or missing references) //IL_1c15: Unknown result type (might be due to invalid IL or missing references) //IL_1c20: Unknown result type (might be due to invalid IL or missing references) //IL_1c2a: Unknown result type (might be due to invalid IL or missing references) //IL_1c2f: Unknown result type (might be due to invalid IL or missing references) //IL_1c35: Unknown result type (might be due to invalid IL or missing references) //IL_1c3a: Unknown result type (might be due to invalid IL or missing references) //IL_1c40: Unknown result type (might be due to invalid IL or missing references) //IL_1c45: Unknown result type (might be due to invalid IL or missing references) //IL_1c51: Unknown result type (might be due to invalid IL or missing references) //IL_5594: Unknown result type (might be due to invalid IL or missing references) //IL_55bb: Unknown result type (might be due to invalid IL or missing references) //IL_526a: Unknown result type (might be due to invalid IL or missing references) //IL_5291: Unknown result type (might be due to invalid IL or missing references) //IL_1c6b: Unknown result type (might be due to invalid IL or missing references) //IL_1c76: Unknown result type (might be due to invalid IL or missing references) //IL_1c80: Unknown result type (might be due to invalid IL or missing references) //IL_1c85: Unknown result type (might be due to invalid IL or missing references) //IL_1c90: Unknown result type (might be due to invalid IL or missing references) //IL_1c9a: Unknown result type (might be due to invalid IL or missing references) //IL_1c9f: Unknown result type (might be due to invalid IL or missing references) //IL_1ca5: Unknown result type (might be due to invalid IL or missing references) //IL_1caa: Unknown result type (might be due to invalid IL or missing references) //IL_1cb5: Unknown result type (might be due to invalid IL or missing references) //IL_1cc0: Unknown result type (might be due to invalid IL or missing references) //IL_1cca: Unknown result type (might be due to invalid IL or missing references) //IL_1ccf: Unknown result type (might be due to invalid IL or missing references) //IL_1cda: Unknown result type (might be due to invalid IL or missing references) //IL_1ce4: Unknown result type (might be due to invalid IL or missing references) //IL_1ce9: Unknown result type (might be due to invalid IL or missing references) //IL_1cef: Unknown result type (might be due to invalid IL or missing references) //IL_1cf4: Unknown result type (might be due to invalid IL or missing references) //IL_1cfa: Unknown result type (might be due to invalid IL or missing references) //IL_1cff: Unknown result type (might be due to invalid IL or missing references) //IL_1d0b: Unknown result type (might be due to invalid IL or missing references) //IL_5925: Unknown result type (might be due to invalid IL or missing references) //IL_592a: Unknown result type (might be due to invalid IL or missing references) //IL_5936: Unknown result type (might be due to invalid IL or missing references) //IL_58ff: Unknown result type (might be due to invalid IL or missing references) //IL_5904: Unknown result type (might be due to invalid IL or missing references) //IL_5918: Unknown result type (might be due to invalid IL or missing references) //IL_55e0: Unknown result type (might be due to invalid IL or missing references) //IL_55e6: Unknown result type (might be due to invalid IL or missing references) //IL_52b6: Unknown result type (might be due to invalid IL or missing references) //IL_52bc: Unknown result type (might be due to invalid IL or missing references) //IL_1d26: Unknown result type (might be due to invalid IL or missing references) //IL_1d31: Unknown result type (might be due to invalid IL or missing references) //IL_1d3b: Unknown result type (might be due to invalid IL or missing references) //IL_1d40: Unknown result type (might be due to invalid IL or missing references) //IL_1d4b: Unknown result type (might be due to invalid IL or missing references) //IL_1d55: Unknown result type (might be due to invalid IL or missing references) //IL_1d5a: Unknown result type (might be due to invalid IL or missing references) //IL_1d60: Unknown result type (might be due to invalid IL or missing references) //IL_1d65: Unknown result type (might be due to invalid IL or missing references) //IL_1d6b: Unknown result type (might be due to invalid IL or missing references) //IL_1d70: Unknown result type (might be due to invalid IL or missing references) //IL_1d7b: Unknown result type (might be due to invalid IL or missing references) //IL_1d86: Unknown result type (might be due to invalid IL or missing references) //IL_1d90: Unknown result type (might be due to invalid IL or missing references) //IL_1d95: Unknown result type (might be due to invalid IL or missing references) //IL_1da0: Unknown result type (might be due to invalid IL or missing references) //IL_1daa: Unknown result type (might be due to invalid IL or missing references) //IL_1daf: Unknown result type (might be due to invalid IL or missing references) //IL_1dba: Unknown result type (might be due to invalid IL or missing references) //IL_1dc4: Unknown result type (might be due to invalid IL or missing references) //IL_1dc9: Unknown result type (might be due to invalid IL or missing references) //IL_1dcf: Unknown result type (might be due to invalid IL or missing references) //IL_1dd4: Unknown result type (might be due to invalid IL or missing references) //IL_1dda: Unknown result type (might be due to invalid IL or missing references) //IL_1ddf: Unknown result type (might be due to invalid IL or missing references) //IL_1de5: Unknown result type (might be due to invalid IL or missing references) //IL_1dea: Unknown result type (might be due to invalid IL or missing references) //IL_1df0: Unknown result type (might be due to invalid IL or missing references) //IL_1df5: Unknown result type (might be due to invalid IL or missing references) //IL_1e01: Unknown result type (might be due to invalid IL or missing references) //IL_1f50: Unknown result type (might be due to invalid IL or missing references) //IL_1f5b: Unknown result type (might be due to invalid IL or missing references) //IL_1f65: Unknown result type (might be due to invalid IL or missing references) //IL_1f6a: Unknown result type (might be due to invalid IL or missing references) //IL_1f75: Unknown result type (might be due to invalid IL or missing references) //IL_1f7f: Unknown result type (might be due to invalid IL or missing references) //IL_1f84: Unknown result type (might be due to invalid IL or missing references) //IL_1f8a: Unknown result type (might be due to invalid IL or missing references) //IL_1f8f: Unknown result type (might be due to invalid IL or missing references) //IL_1f95: Unknown result type (might be due to invalid IL or missing references) //IL_1f9a: Unknown result type (might be due to invalid IL or missing references) //IL_1fa5: Unknown result type (might be due to invalid IL or missing references) //IL_1fb0: Unknown result type (might be due to invalid IL or missing references) //IL_1fba: Unknown result type (might be due to invalid IL or missing references) //IL_1fbf: Unknown result type (might be due to invalid IL or missing references) //IL_1fca: Unknown result type (might be due to invalid IL or missing references) //IL_1fd4: Unknown result type (might be due to invalid IL or missing references) //IL_1fd9: Unknown result type (might be due to invalid IL or missing references) //IL_1fe4: Unknown result type (might be due to invalid IL or missing references) //IL_1fee: Unknown result type (might be due to invalid IL or missing references) //IL_1ff3: Unknown result type (might be due to invalid IL or missing references) //IL_1ff9: Unknown result type (might be due to invalid IL or missing references) //IL_1ffe: Unknown result type (might be due to invalid IL or missing references) //IL_2004: Unknown result type (might be due to invalid IL or missing references) //IL_2009: Unknown result type (might be due to invalid IL or missing references) //IL_200f: Unknown result type (might be due to invalid IL or missing references) //IL_2014: Unknown result type (might be due to invalid IL or missing references) //IL_201a: Unknown result type (might be due to invalid IL or missing references) //IL_201f: Unknown result type (might be due to invalid IL or missing references) //IL_202b: Unknown result type (might be due to invalid IL or missing references) //IL_2284: Unknown result type (might be due to invalid IL or missing references) //IL_228f: Unknown result type (might be due to invalid IL or missing references) //IL_2299: Unknown result type (might be due to invalid IL or missing references) //IL_229e: Unknown result type (might be due to invalid IL or missing references) //IL_22a9: Unknown result type (might be due to invalid IL or missing references) //IL_22ae: Unknown result type (might be due to invalid IL or missing references) //IL_22b4: Unknown result type (might be due to invalid IL or missing references) //IL_22b9: Unknown result type (might be due to invalid IL or missing references) //IL_22bf: Unknown result type (might be due to invalid IL or missing references) //IL_22c4: Unknown result type (might be due to invalid IL or missing references) //IL_22cf: Unknown result type (might be due to invalid IL or missing references) //IL_22da: Unknown result type (might be due to invalid IL or missing references) //IL_22e4: Unknown result type (might be due to invalid IL or missing references) //IL_22e9: Unknown result type (might be due to invalid IL or missing references) //IL_22f4: Unknown result type (might be due to invalid IL or missing references) //IL_22fe: Unknown result type (might be due to invalid IL or missing references) //IL_2303: Unknown result type (might be due to invalid IL or missing references) //IL_2309: Unknown result type (might be due to invalid IL or missing references) //IL_230e: Unknown result type (might be due to invalid IL or missing references) //IL_2319: Unknown result type (might be due to invalid IL or missing references) //IL_231e: Unknown result type (might be due to invalid IL or missing references) //IL_2324: Unknown result type (might be due to invalid IL or missing references) //IL_2329: Unknown result type (might be due to invalid IL or missing references) //IL_232f: Unknown result type (might be due to invalid IL or missing references) //IL_2334: Unknown result type (might be due to invalid IL or missing references) //IL_233a: Unknown result type (might be due to invalid IL or missing references) //IL_233f: Unknown result type (might be due to invalid IL or missing references) //IL_234b: Unknown result type (might be due to invalid IL or missing references) //IL_1e3b: Unknown result type (might be due to invalid IL or missing references) //IL_1e46: Unknown result type (might be due to invalid IL or missing references) //IL_1e50: Unknown result type (might be due to invalid IL or missing references) //IL_1e55: Unknown result type (might be due to invalid IL or missing references) //IL_1e60: Unknown result type (might be due to invalid IL or missing references) //IL_1e6a: Unknown result type (might be due to invalid IL or missing references) //IL_1e6f: Unknown result type (might be due to invalid IL or missing references) //IL_1e7a: Unknown result type (might be due to invalid IL or missing references) //IL_1e84: Unknown result type (might be due to invalid IL or missing references) //IL_1e89: Unknown result type (might be due to invalid IL or missing references) //IL_1e8f: Unknown result type (might be due to invalid IL or missing references) //IL_1e94: Unknown result type (might be due to invalid IL or missing references) //IL_1e9a: Unknown result type (might be due to invalid IL or missing references) //IL_1e9f: Unknown result type (might be due to invalid IL or missing references) //IL_1ea5: Unknown result type (might be due to invalid IL or missing references) //IL_1eaa: Unknown result type (might be due to invalid IL or missing references) //IL_1eb0: Unknown result type (might be due to invalid IL or missing references) //IL_1eb5: Unknown result type (might be due to invalid IL or missing references) //IL_1ec0: Unknown result type (might be due to invalid IL or missing references) //IL_1ecb: Unknown result type (might be due to invalid IL or missing references) //IL_1ed5: Unknown result type (might be due to invalid IL or missing references) //IL_1eda: Unknown result type (might be due to invalid IL or missing references) //IL_1ee5: Unknown result type (might be due to invalid IL or missing references) //IL_1eef: Unknown result type (might be due to invalid IL or missing references) //IL_1ef4: Unknown result type (might be due to invalid IL or missing references) //IL_1efa: Unknown result type (might be due to invalid IL or missing references) //IL_1eff: Unknown result type (might be due to invalid IL or missing references) //IL_1f05: Unknown result type (might be due to invalid IL or missing references) //IL_1f0a: Unknown result type (might be due to invalid IL or missing references) //IL_1f16: Unknown result type (might be due to invalid IL or missing references) //IL_572c: Unknown result type (might be due to invalid IL or missing references) //IL_5753: Unknown result type (might be due to invalid IL or missing references) //IL_5763: Unknown result type (might be due to invalid IL or missing references) //IL_5402: Unknown result type (might be due to invalid IL or missing references) //IL_5429: Unknown result type (might be due to invalid IL or missing references) //IL_5439: Unknown result type (might be due to invalid IL or missing references) //IL_2f39: Unknown result type (might be due to invalid IL or missing references) //IL_2f44: Unknown result type (might be due to invalid IL or missing references) //IL_2f4e: Unknown result type (might be due to invalid IL or missing references) //IL_2f53: Unknown result type (might be due to invalid IL or missing references) //IL_2f5e: Unknown result type (might be due to invalid IL or missing references) //IL_2f68: Unknown result type (might be due to invalid IL or missing references) //IL_2f6d: Unknown result type (might be due to invalid IL or missing references) //IL_2f73: Unknown result type (might be due to invalid IL or missing references) //IL_2f78: Unknown result type (might be due to invalid IL or missing references) //IL_2f7e: Unknown result type (might be due to invalid IL or missing references) //IL_2f83: Unknown result type (might be due to invalid IL or missing references) //IL_2f8e: Unknown result type (might be due to invalid IL or missing references) //IL_2f99: Unknown result type (might be due to invalid IL or missing references) //IL_2fa3: Unknown result type (might be due to invalid IL or missing references) //IL_2fa8: Unknown result type (might be due to invalid IL or missing references) //IL_2fb3: Unknown result type (might be due to invalid IL or missing references) //IL_2fbd: Unknown result type (might be due to invalid IL or missing references) //IL_2fc2: Unknown result type (might be due to invalid IL or missing references) //IL_2fcd: Unknown result type (might be due to invalid IL or missing references) //IL_2fd7: Unknown result type (might be due to invalid IL or missing references) //IL_2fdc: Unknown result type (might be due to invalid IL or missing references) //IL_2fe2: Unknown result type (might be due to invalid IL or missing references) //IL_2fe7: Unknown result type (might be due to invalid IL or missing references) //IL_2fed: Unknown result type (might be due to invalid IL or missing references) //IL_2ff2: Unknown result type (might be due to invalid IL or missing references) //IL_2ff8: Unknown result type (might be due to invalid IL or missing references) //IL_2ffd: Unknown result type (might be due to invalid IL or missing references) //IL_3003: Unknown result type (might be due to invalid IL or missing references) //IL_3008: Unknown result type (might be due to invalid IL or missing references) //IL_3014: Unknown result type (might be due to invalid IL or missing references) //IL_2065: Unknown result type (might be due to invalid IL or missing references) //IL_2070: Unknown result type (might be due to invalid IL or missing references) //IL_207a: Unknown result type (might be due to invalid IL or missing references) //IL_207f: Unknown result type (might be due to invalid IL or missing references) //IL_208a: Unknown result type (might be due to invalid IL or missing references) //IL_2094: Unknown result type (might be due to invalid IL or missing references) //IL_2099: Unknown result type (might be due to invalid IL or missing references) //IL_209f: Unknown result type (might be due to invalid IL or missing references) //IL_20a4: Unknown result type (might be due to invalid IL or missing references) //IL_20aa: Unknown result type (might be due to invalid IL or missing references) //IL_20af: Unknown result type (might be due to invalid IL or missing references) //IL_20ba: Unknown result type (might be due to invalid IL or missing references) //IL_20c5: Unknown result type (might be due to invalid IL or missing references) //IL_20cf: Unknown result type (might be due to invalid IL or missing references) //IL_20d4: Unknown result type (might be due to invalid IL or missing references) //IL_20df: Unknown result type (might be due to invalid IL or missing references) //IL_20e9: Unknown result type (might be due to invalid IL or missing references) //IL_20ee: Unknown result type (might be due to invalid IL or missing references) //IL_20f9: Unknown result type (might be due to invalid IL or missing references) //IL_2103: Unknown result type (might be due to invalid IL or missing references) //IL_2108: Unknown result type (might be due to invalid IL or missing references) //IL_210e: Unknown result type (might be due to invalid IL or missing references) //IL_2113: Unknown result type (might be due to invalid IL or missing references) //IL_2119: Unknown result type (might be due to invalid IL or missing references) //IL_211e: Unknown result type (might be due to invalid IL or missing references) //IL_2124: Unknown result type (might be due to invalid IL or missing references) //IL_2129: Unknown result type (might be due to invalid IL or missing references) //IL_2135: Unknown result type (might be due to invalid IL or missing references) //IL_3163: Unknown result type (might be due to invalid IL or missing references) //IL_316e: Unknown result type (might be due to invalid IL or missing references) //IL_3178: Unknown result type (might be due to invalid IL or missing references) //IL_317d: Unknown result type (might be due to invalid IL or missing references) //IL_3188: Unknown result type (might be due to invalid IL or missing references) //IL_3192: Unknown result type (might be due to invalid IL or missing references) //IL_3197: Unknown result type (might be due to invalid IL or missing references) //IL_319d: Unknown result type (might be due to invalid IL or missing references) //IL_31a2: Unknown result type (might be due to invalid IL or missing references) //IL_31a8: Unknown result type (might be due to invalid IL or missing references) //IL_31ad: Unknown result type (might be due to invalid IL or missing references) //IL_31b8: Unknown result type (might be due to invalid IL or missing references) //IL_31c3: Unknown result type (might be due to invalid IL or missing references) //IL_31cd: Unknown result type (might be due to invalid IL or missing references) //IL_31d2: Unknown result type (might be due to invalid IL or missing references) //IL_31dd: Unknown result type (might be due to invalid IL or missing references) //IL_31e7: Unknown result type (might be due to invalid IL or missing references) //IL_31ec: Unknown result type (might be due to invalid IL or missing references) //IL_31f7: Unknown result type (might be due to invalid IL or missing references) //IL_3201: Unknown result type (might be due to invalid IL or missing references) //IL_3206: Unknown result type (might be due to invalid IL or missing references) //IL_320c: Unknown result type (might be due to invalid IL or missing references) //IL_3211: Unknown result type (might be due to invalid IL or missing references) //IL_3217: Unknown result type (might be due to invalid IL or missing references) //IL_321c: Unknown result type (might be due to invalid IL or missing references) //IL_3222: Unknown result type (might be due to invalid IL or missing references) //IL_3227: Unknown result type (might be due to invalid IL or missing references) //IL_322d: Unknown result type (might be due to invalid IL or missing references) //IL_3232: Unknown result type (might be due to invalid IL or missing references) //IL_323e: Unknown result type (might be due to invalid IL or missing references) //IL_2385: Unknown result type (might be due to invalid IL or missing references) //IL_2390: Unknown result type (might be due to invalid IL or missing references) //IL_239a: Unknown result type (might be due to invalid IL or missing references) //IL_239f: Unknown result type (might be due to invalid IL or missing references) //IL_23aa: Unknown result type (might be due to invalid IL or missing references) //IL_23af: Unknown result type (might be due to invalid IL or missing references) //IL_23b5: Unknown result type (might be due to invalid IL or missing references) //IL_23ba: Unknown result type (might be due to invalid IL or missing references) //IL_23c0: Unknown result type (might be due to invalid IL or missing references) //IL_23c5: Unknown result type (might be due to invalid IL or missing references) //IL_23d0: Unknown result type (might be due to invalid IL or missing references) //IL_23db: Unknown result type (might be due to invalid IL or missing references) //IL_23e5: Unknown result type (might be due to invalid IL or missing references) //IL_23ea: Unknown result type (might be due to invalid IL or missing references) //IL_23f5: Unknown result type (might be due to invalid IL or missing references) //IL_23fa: Unknown result type (might be due to invalid IL or missing references) //IL_2405: Unknown result type (might be due to invalid IL or missing references) //IL_240f: Unknown result type (might be due to invalid IL or missing references) //IL_2414: Unknown result type (might be due to invalid IL or missing references) //IL_241a: Unknown result type (might be due to invalid IL or missing references) //IL_241f: Unknown result type (might be due to invalid IL or missing references) //IL_2425: Unknown result type (might be due to invalid IL or missing references) //IL_242a: Unknown result type (might be due to invalid IL or missing references) //IL_2430: Unknown result type (might be due to invalid IL or missing references) //IL_2435: Unknown result type (might be due to invalid IL or missing references) //IL_2441: Unknown result type (might be due to invalid IL or missing references) //IL_257c: Unknown result type (might be due to invalid IL or missing references) //IL_2587: Unknown result type (might be due to invalid IL or missing references) //IL_2591: Unknown result type (might be due to invalid IL or missing references) //IL_2596: Unknown result type (might be due to invalid IL or missing references) //IL_25a1: Unknown result type (might be due to invalid IL or missing references) //IL_25ab: Unknown result type (might be due to invalid IL or missing references) //IL_25b0: Unknown result type (might be due to invalid IL or missing references) //IL_25b6: Unknown result type (might be due to invalid IL or missing references) //IL_25bb: Unknown result type (might be due to invalid IL or missing references) //IL_25c1: Unknown result type (might be due to invalid IL or missing references) //IL_25c6: Unknown result type (might be due to invalid IL or missing references) //IL_25d1: Unknown result type (might be due to invalid IL or missing references) //IL_25dc: Unknown result type (might be due to invalid IL or missing references) //IL_25e6: Unknown result type (might be due to invalid IL or missing references) //IL_25eb: Unknown result type (might be due to invalid IL or missing references) //IL_25f6: Unknown result type (might be due to invalid IL or missing references) //IL_2600: Unknown result type (might be due to invalid IL or missing references) //IL_2605: Unknown result type (might be due to invalid IL or missing references) //IL_2610: Unknown result type (might be due to invalid IL or missing references) //IL_261a: Unknown result type (might be due to invalid IL or missing references) //IL_261f: Unknown result type (might be due to invalid IL or missing references) //IL_2625: Unknown result type (might be due to invalid IL or missing references) //IL_262a: Unknown result type (might be due to invalid IL or missing references) //IL_2630: Unknown result type (might be due to invalid IL or missing references) //IL_2635: Unknown result type (might be due to invalid IL or missing references) //IL_263b: Unknown result type (might be due to invalid IL or missing references) //IL_2640: Unknown result type (might be due to invalid IL or missing references) //IL_264c: Unknown result type (might be due to invalid IL or missing references) //IL_5803: Unknown result type (might be due to invalid IL or missing references) //IL_5808: Unknown result type (might be due to invalid IL or missing references) //IL_5819: Unknown result type (might be due to invalid IL or missing references) //IL_581f: Unknown result type (might be due to invalid IL or missing references) //IL_582f: Unknown result type (might be due to invalid IL or missing references) //IL_5840: Unknown result type (might be due to invalid IL or missing references) //IL_5845: Unknown result type (might be due to invalid IL or missing references) //IL_577f: Unknown result type (might be due to invalid IL or missing references) //IL_5785: Unknown result type (might be due to invalid IL or missing references) //IL_56dd: Unknown result type (might be due to invalid IL or missing references) //IL_56fe: Unknown result type (might be due to invalid IL or missing references) //IL_570e: Unknown result type (might be due to invalid IL or missing references) //IL_567f: Unknown result type (might be due to invalid IL or missing references) //IL_56a0: Unknown result type (might be due to invalid IL or missing references) //IL_56b0: Unknown result type (might be due to invalid IL or missing references) //IL_54d9: Unknown result type (might be due to invalid IL or missing references) //IL_54de: Unknown result type (might be due to invalid IL or missing references) //IL_54ef: Unknown result type (might be due to invalid IL or missing references) //IL_54f5: Unknown result type (might be due to invalid IL or missing references) //IL_5505: Unknown result type (might be due to invalid IL or missing references) //IL_5516: Unknown result type (might be due to invalid IL or missing references) //IL_551b: Unknown result type (might be due to invalid IL or missing references) //IL_5455: Unknown result type (might be due to invalid IL or missing references) //IL_545b: Unknown result type (might be due to invalid IL or missing references) //IL_53b3: Unknown result type (might be due to invalid IL or missing references) //IL_53d4: Unknown result type (might be due to invalid IL or missing references) //IL_53e4: Unknown result type (might be due to invalid IL or missing references) //IL_5355: Unknown result type (might be due to invalid IL or missing references) //IL_5376: Unknown result type (might be due to invalid IL or missing references) //IL_5386: Unknown result type (might be due to invalid IL or missing references) //IL_3497: Unknown result type (might be due to invalid IL or missing references) //IL_34a2: Unknown result type (might be due to invalid IL or missing references) //IL_34ac: Unknown result type (might be due to invalid IL or missing references) //IL_34b1: Unknown result type (might be due to invalid IL or missing references) //IL_34bc: Unknown result type (might be due to invalid IL or missing references) //IL_34c1: Unknown result type (might be due to invalid IL or missing references) //IL_34c7: Unknown result type (might be due to invalid IL or missing references) //IL_34cc: Unknown result type (might be due to invalid IL or missing references) //IL_34d2: Unknown result type (might be due to invalid IL or missing references) //IL_34d7: Unknown result type (might be due to invalid IL or missing references) //IL_34e2: Unknown result type (might be due to invalid IL or missing references) //IL_34ed: Unknown result type (might be due to invalid IL or missing references) //IL_34f7: Unknown result type (might be due to invalid IL or missing references) //IL_34fc: Unknown result type (might be due to invalid IL or missing references) //IL_3507: Unknown result type (might be due to invalid IL or missing references) //IL_3511: Unknown result type (might be due to invalid IL or missing references) //IL_3516: Unknown result type (might be due to invalid IL or missing references) //IL_351c: Unknown result type (might be due to invalid IL or missing references) //IL_3521: Unknown result type (might be due to invalid IL or missing references) //IL_352c: Unknown result type (might be due to invalid IL or missing references) //IL_3531: Unknown result type (might be due to invalid IL or missing references) //IL_3537: Unknown result type (might be due to invalid IL or missing references) //IL_353c: Unknown result type (might be due to invalid IL or missing references) //IL_3542: Unknown result type (might be due to invalid IL or missing references) //IL_3547: Unknown result type (might be due to invalid IL or missing references) //IL_354d: Unknown result type (might be due to invalid IL or missing references) //IL_3552: Unknown result type (might be due to invalid IL or missing references) //IL_355e: Unknown result type (might be due to invalid IL or missing references) //IL_304e: Unknown result type (might be due to invalid IL or missing references) //IL_3059: Unknown result type (might be due to invalid IL or missing references) //IL_3063: Unknown result type (might be due to invalid IL or missing references) //IL_3068: Unknown result type (might be due to invalid IL or missing references) //IL_3073: Unknown result type (might be due to invalid IL or missing references) //IL_307d: Unknown result type (might be due to invalid IL or missing references) //IL_3082: Unknown result type (might be due to invalid IL or missing references) //IL_308d: Unknown result type (might be due to invalid IL or missing references) //IL_3097: Unknown result type (might be due to invalid IL or missing references) //IL_309c: Unknown result type (might be due to invalid IL or missing references) //IL_30a2: Unknown result type (might be due to invalid IL or missing references) //IL_30a7: Unknown result type (might be due to invalid IL or missing references) //IL_30ad: Unknown result type (might be due to invalid IL or missing references) //IL_30b2: Unknown result type (might be due to invalid IL or missing references) //IL_30b8: Unknown result type (might be due to invalid IL or missing references) //IL_30bd: Unknown result type (might be due to invalid IL or missing references) //IL_30c3: Unknown result type (might be due to invalid IL or missing references) //IL_30c8: Unknown result type (might be due to invalid IL or missing references) //IL_30d3: Unknown result type (might be due to invalid IL or missing references) //IL_30de: Unknown result type (might be due to invalid IL or missing references) //IL_30e8: Unknown result type (might be due to invalid IL or missing references) //IL_30ed: Unknown result type (might be due to invalid IL or missing references) //IL_30f8: Unknown result type (might be due to invalid IL or missing references) //IL_3102: Unknown result type (might be due to invalid IL or missing references) //IL_3107: Unknown result type (might be due to invalid IL or missing references) //IL_310d: Unknown result type (might be due to invalid IL or missing references) //IL_3112: Unknown result type (might be due to invalid IL or missing references) //IL_3118: Unknown result type (might be due to invalid IL or missing references) //IL_311d: Unknown result type (might be due to invalid IL or missing references) //IL_3129: Unknown result type (might be due to invalid IL or missing references) //IL_216f: Unknown result type (might be due to invalid IL or missing references) //IL_217a: Unknown result type (might be due to invalid IL or missing references) //IL_2184: Unknown result type (might be due to invalid IL or missing references) //IL_2189: Unknown result type (might be due to invalid IL or missing references) //IL_2194: Unknown result type (might be due to invalid IL or missing references) //IL_219e: Unknown result type (might be due to invalid IL or missing references) //IL_21a3: Unknown result type (might be due to invalid IL or missing references) //IL_21ae: Unknown result type (might be due to invalid IL or missing references) //IL_21b8: Unknown result type (might be due to invalid IL or missing references) //IL_21bd: Unknown result type (might be due to invalid IL or missing references) //IL_21c3: Unknown result type (might be due to invalid IL or missing references) //IL_21c8: Unknown result type (might be due to invalid IL or missing references) //IL_21ce: Unknown result type (might be due to invalid IL or missing references) //IL_21d3: Unknown result type (might be due to invalid IL or missing references) //IL_21d9: Unknown result type (might be due to invalid IL or missing references) //IL_21de: Unknown result type (might be due to invalid IL or missing references) //IL_21e4: Unknown result type (might be due to invalid IL or missing references) //IL_21e9: Unknown result type (might be due to invalid IL or missing references) //IL_21f4: Unknown result type (might be due to invalid IL or missing references) //IL_21ff: Unknown result type (might be due to invalid IL or missing references) //IL_2209: Unknown result type (might be due to invalid IL or missing references) //IL_220e: Unknown result type (might be due to invalid IL or missing references) //IL_2219: Unknown result type (might be due to invalid IL or missing references) //IL_2223: Unknown result type (might be due to invalid IL or missing references) //IL_2228: Unknown result type (might be due to invalid IL or missing references) //IL_222e: Unknown result type (might be due to invalid IL or missing references) //IL_2233: Unknown result type (might be due to invalid IL or missing references) //IL_2239: Unknown result type (might be due to invalid IL or missing references) //IL_223e: Unknown result type (might be due to invalid IL or missing references) //IL_224a: Unknown result type (might be due to invalid IL or missing references) //IL_414c: Unknown result type (might be due to invalid IL or missing references) //IL_4157: Unknown result type (might be due to invalid IL or missing references) //IL_4161: Unknown result type (might be due to invalid IL or missing references) //IL_4166: Unknown result type (might be due to invalid IL or missing references) //IL_4171: Unknown result type (might be due to invalid IL or missing references) //IL_417b: Unknown result type (might be due to invalid IL or missing references) //IL_4180: Unknown result type (might be due to invalid IL or missing references) //IL_4186: Unknown result type (might be due to invalid IL or missing references) //IL_418b: Unknown result type (might be due to invalid IL or missing references) //IL_4196: Unknown result type (might be due to invalid IL or missing references) //IL_41a1: Unknown result type (might be due to invalid IL or missing references) //IL_41ab: Unknown result type (might be due to invalid IL or missing references) //IL_41b0: Unknown result type (might be due to invalid IL or missing references) //IL_41bb: Unknown result type (might be due to invalid IL or missing references) //IL_41c5: Unknown result type (might be due to invalid IL or missing references) //IL_41ca: Unknown result type (might be due to invalid IL or missing references) //IL_41d0: Unknown result type (might be due to invalid IL or missing references) //IL_41d5: Unknown result type (might be due to invalid IL or missing references) //IL_41e1: Unknown result type (might be due to invalid IL or missing references) //IL_3278: Unknown result type (might be due to invalid IL or missing references) //IL_3283: Unknown result type (might be due to invalid IL or missing references) //IL_328d: Unknown result type (might be due to invalid IL or missing references) //IL_3292: Unknown result type (might be due to invalid IL or missing references) //IL_329d: Unknown result type (might be due to invalid IL or missing references) //IL_32a7: Unknown result type (might be due to invalid IL or missing references) //IL_32ac: Unknown result type (might be due to invalid IL or missing references) //IL_32b2: Unknown result type (might be due to invalid IL or missing references) //IL_32b7: Unknown result type (might be due to invalid IL or missing references) //IL_32bd: Unknown result type (might be due to invalid IL or missing references) //IL_32c2: Unknown result type (might be due to invalid IL or missing references) //IL_32cd: Unknown result type (might be due to invalid IL or missing references) //IL_32d8: Unknown result type (might be due to invalid IL or missing references) //IL_32e2: Unknown result type (might be due to invalid IL or missing references) //IL_32e7: Unknown result type (might be due to invalid IL or missing references) //IL_32f2: Unknown result type (might be due to invalid IL or missing references) //IL_32fc: Unknown result type (might be due to invalid IL or missing references) //IL_3301: Unknown result type (might be due to invalid IL or missing references) //IL_330c: Unknown result type (might be due to invalid IL or missing references) //IL_3316: Unknown result type (might be due to invalid IL or missing references) //IL_331b: Unknown result type (might be due to invalid IL or missing references) //IL_3321: Unknown result type (might be due to invalid IL or missing references) //IL_3326: Unknown result type (might be due to invalid IL or missing references) //IL_332c: Unknown result type (might be due to invalid IL or missing references) //IL_3331: Unknown result type (might be due to invalid IL or missing references) //IL_3337: Unknown result type (might be due to invalid IL or missing references) //IL_333c: Unknown result type (might be due to invalid IL or missing references) //IL_3348: Unknown result type (might be due to invalid IL or missing references) //IL_247b: Unknown result type (might be due to invalid IL or missing references) //IL_2486: Unknown result type (might be due to invalid IL or missing references) //IL_2490: Unknown result type (might be due to invalid IL or missing references) //IL_2495: Unknown result type (might be due to invalid IL or missing references) //IL_24a0: Unknown result type (might be due to invalid IL or missing references) //IL_24aa: Unknown result type (might be due to invalid IL or missing references) //IL_24af: Unknown result type (might be due to invalid IL or missing references) //IL_24b5: Unknown result type (might be due to invalid IL or missing references) //IL_24ba: Unknown result type (might be due to invalid IL or missing references) //IL_24c5: Unknown result type (might be due to invalid IL or missing references) //IL_24ca: Unknown result type (might be due to invalid IL or missing references) //IL_24d0: Unknown result type (might be due to invalid IL or missing references) //IL_24d5: Unknown result type (might be due to invalid IL or missing references) //IL_24db: Unknown result type (might be due to invalid IL or missing references) //IL_24e0: Unknown result type (might be due to invalid IL or missing references) //IL_24e6: Unknown result type (might be due to invalid IL or missing references) //IL_24eb: Unknown result type (might be due to invalid IL or missing references) //IL_24f6: Unknown result type (might be due to invalid IL or missing references) //IL_2501: Unknown result type (might be due to invalid IL or missing references) //IL_250b: Unknown result type (might be due to invalid IL or missing references) //IL_2510: Unknown result type (might be due to invalid IL or missing references) //IL_251b: Unknown result type (might be due to invalid IL or missing references) //IL_2520: Unknown result type (might be due to invalid IL or missing references) //IL_2526: Unknown result type (might be due to invalid IL or missing references) //IL_252b: Unknown result type (might be due to invalid IL or missing references) //IL_2531: Unknown result type (might be due to invalid IL or missing references) //IL_2536: Unknown result type (might be due to invalid IL or missing references) //IL_2542: Unknown result type (might be due to invalid IL or missing references) //IL_268e: Unknown result type (might be due to invalid IL or missing references) //IL_2699: Unknown result type (might be due to invalid IL or missing references) //IL_26a3: Unknown result type (might be due to invalid IL or missing references) //IL_26a8: Unknown result type (might be due to invalid IL or missing references) //IL_26b3: Unknown result type (might be due to invalid IL or missing references) //IL_26b8: Unknown result type (might be due to invalid IL or missing references) //IL_26c3: Unknown result type (might be due to invalid IL or missing references) //IL_26c8: Unknown result type (might be due to invalid IL or missing references) //IL_26d2: Unknown result type (might be due to invalid IL or missing references) //IL_26e3: Unknown result type (might be due to invalid IL or missing references) //IL_57a8: Unknown result type (might be due to invalid IL or missing references) //IL_57b3: Unknown result type (might be due to invalid IL or missing references) //IL_57bd: Unknown result type (might be due to invalid IL or missing references) //IL_57c2: Unknown result type (might be due to invalid IL or missing references) //IL_57c7: Unknown result type (might be due to invalid IL or missing references) //IL_547e: Unknown result type (might be due to invalid IL or missing references) //IL_5489: Unknown result type (might be due to invalid IL or missing references) //IL_5493: Unknown result type (might be due to invalid IL or missing references) //IL_5498: Unknown result type (might be due to invalid IL or missing references) //IL_549d: Unknown result type (might be due to invalid IL or missing references) //IL_4253: Unknown result type (might be due to invalid IL or missing references) //IL_425e: Unknown result type (might be due to invalid IL or missing references) //IL_4268: Unknown result type (might be due to invalid IL or missing references) //IL_426d: Unknown result type (might be due to invalid IL or missing references) //IL_4278: Unknown result type (might be due to invalid IL or missing references) //IL_4282: Unknown result type (might be due to invalid IL or missing references) //IL_4287: Unknown result type (might be due to invalid IL or missing references) //IL_428d: Unknown result type (might be due to invalid IL or missing references) //IL_4292: Unknown result type (might be due to invalid IL or missing references) //IL_429d: Unknown result type (might be due to invalid IL or missing references) //IL_42a8: Unknown result type (might be due to invalid IL or missing references) //IL_42b2: Unknown result type (might be due to invalid IL or missing references) //IL_42b7: Unknown result type (might be due to invalid IL or missing references) //IL_42c2: Unknown result type (might be due to invalid IL or missing references) //IL_42cc: Unknown result type (might be due to invalid IL or missing references) //IL_42d1: Unknown result type (might be due to invalid IL or missing references) //IL_42d7: Unknown result type (might be due to invalid IL or missing references) //IL_42dc: Unknown result type (might be due to invalid IL or missing references) //IL_42e8: Unknown result type (might be due to invalid IL or missing references) //IL_3598: Unknown result type (might be due to invalid IL or missing references) //IL_35a3: Unknown result type (might be due to invalid IL or missing references) //IL_35ad: Unknown result type (might be due to invalid IL or missing references) //IL_35b2: Unknown result type (might be due to invalid IL or missing references) //IL_35bd: Unknown result type (might be due to invalid IL or missing references) //IL_35c2: Unknown result type (might be due to invalid IL or missing references) //IL_35c8: Unknown result type (might be due to invalid IL or missing references) //IL_35cd: Unknown result type (might be due to invalid IL or missing references) //IL_35d3: Unknown result type (might be due to invalid IL or missing references) //IL_35d8: Unknown result type (might be due to invalid IL or missing references) //IL_35e3: Unknown result type (might be due to invalid IL or missing references) //IL_35ee: Unknown result type (might be due to invalid IL or missing references) //IL_35f8: Unknown result type (might be due to invalid IL or missing references) //IL_35fd: Unknown result type (might be due to invalid IL or missing references) //IL_3608: Unknown result type (might be due to invalid IL or missing references) //IL_360d: Unknown result type (might be due to invalid IL or missing references) //IL_3618: Unknown result type (might be due to invalid IL or missing references) //IL_3622: Unknown result type (might be due to invalid IL or missing references) //IL_3627: Unknown result type (might be due to invalid IL or missing references) //IL_362d: Unknown result type (might be due to invalid IL or missing references) //IL_3632: Unknown result type (might be due to invalid IL or missing references) //IL_3638: Unknown result type (might be due to invalid IL or missing references) //IL_363d: Unknown result type (might be due to invalid IL or missing references) //IL_3643: Unknown result type (might be due to invalid IL or missing references) //IL_3648: Unknown result type (might be due to invalid IL or missing references) //IL_3654: Unknown result type (might be due to invalid IL or missing references) //IL_378f: Unknown result type (might be due to invalid IL or missing references) //IL_379a: Unknown result type (might be due to invalid IL or missing references) //IL_37a4: Unknown result type (might be due to invalid IL or missing references) //IL_37a9: Unknown result type (might be due to invalid IL or missing references) //IL_37b4: Unknown result type (might be due to invalid IL or missing references) //IL_37be: Unknown result type (might be due to invalid IL or missing references) //IL_37c3: Unknown result type (might be due to invalid IL or missing references) //IL_37c9: Unknown result type (might be due to invalid IL or missing references) //IL_37ce: Unknown result type (might be due to invalid IL or missing references) //IL_37d4: Unknown result type (might be due to invalid IL or missing references) //IL_37d9: Unknown result type (might be due to invalid IL or missing references) //IL_37e4: Unknown result type (might be due to invalid IL or missing references) //IL_37ef: Unknown result type (might be due to invalid IL or missing references) //IL_37f9: Unknown result type (might be due to invalid IL or missing references) //IL_37fe: Unknown result type (might be due to invalid IL or missing references) //IL_3809: Unknown result type (might be due to invalid IL or missing references) //IL_3813: Unknown result type (might be due to invalid IL or missing references) //IL_3818: Unknown result type (might be due to invalid IL or missing references) //IL_3823: Unknown result type (might be due to invalid IL or missing references) //IL_382d: Unknown result type (might be due to invalid IL or missing references) //IL_3832: Unknown result type (might be due to invalid IL or missing references) //IL_3838: Unknown result type (might be due to invalid IL or missing references) //IL_383d: Unknown result type (might be due to invalid IL or missing references) //IL_3843: Unknown result type (might be due to invalid IL or missing references) //IL_3848: Unknown result type (might be due to invalid IL or missing references) //IL_384e: Unknown result type (might be due to invalid IL or missing references) //IL_3853: Unknown result type (might be due to invalid IL or missing references) //IL_385f: Unknown result type (might be due to invalid IL or missing references) //IL_2783: Unknown result type (might be due to invalid IL or missing references) //IL_278e: Unknown result type (might be due to invalid IL or missing references) //IL_2798: Unknown result type (might be due to invalid IL or missing references) //IL_279d: Unknown result type (might be due to invalid IL or missing references) //IL_27a8: Unknown result type (might be due to invalid IL or missing references) //IL_27ad: Unknown result type (might be due to invalid IL or missing references) //IL_27b8: Unknown result type (might be due to invalid IL or missing references) //IL_27bd: Unknown result type (might be due to invalid IL or missing references) //IL_27c7: Unknown result type (might be due to invalid IL or missing references) //IL_27d8: Unknown result type (might be due to invalid IL or missing references) //IL_26fd: Unknown result type (might be due to invalid IL or missing references) //IL_2702: Unknown result type (might be due to invalid IL or missing references) //IL_57db: Unknown result type (might be due to invalid IL or missing references) //IL_57e6: Unknown result type (might be due to invalid IL or missing references) //IL_57f0: Unknown result type (might be due to invalid IL or missing references) //IL_57f5: Unknown result type (might be due to invalid IL or missing references) //IL_57fa: Unknown result type (might be due to invalid IL or missing references) //IL_54b1: Unknown result type (might be due to invalid IL or missing references) //IL_54bc: Unknown result type (might be due to invalid IL or missing references) //IL_54c6: Unknown result type (might be due to invalid IL or missing references) //IL_54cb: Unknown result type (might be due to invalid IL or missing references) //IL_54d0: Unknown result type (might be due to invalid IL or missing references) //IL_435a: Unknown result type (might be due to invalid IL or missing references) //IL_4365: Unknown result type (might be due to invalid IL or missing references) //IL_436f: Unknown result type (might be due to invalid IL or missing references) //IL_4374: Unknown result type (might be due to invalid IL or missing references) //IL_437f: Unknown result type (might be due to invalid IL or missing references) //IL_4389: Unknown result type (might be due to invalid IL or missing references) //IL_438e: Unknown result type (might be due to invalid IL or missing references) //IL_4394: Unknown result type (might be due to invalid IL or missing references) //IL_4399: Unknown result type (might be due to invalid IL or missing references) //IL_43a4: Unknown result type (might be due to invalid IL or missing references) //IL_43af: Unknown result type (might be due to invalid IL or missing references) //IL_43b9: Unknown result type (might be due to invalid IL or missing references) //IL_43be: Unknown result type (might be due to invalid IL or missing references) //IL_43c9: Unknown result type (might be due to invalid IL or missing references) //IL_43d3: Unknown result type (might be due to invalid IL or missing references) //IL_43d8: Unknown result type (might be due to invalid IL or missing references) //IL_43de: Unknown result type (might be due to invalid IL or missing references) //IL_43e3: Unknown result type (might be due to invalid IL or missing references) //IL_43ef: Unknown result type (might be due to invalid IL or missing references) //IL_421b: Unknown result type (might be due to invalid IL or missing references) //IL_4220: Unknown result type (might be due to invalid IL or missing references) //IL_3382: Unknown result type (might be due to invalid IL or missing references) //IL_338d: Unknown result type (might be due to invalid IL or missing references) //IL_3397: Unknown result type (might be due to invalid IL or missing references) //IL_339c: Unknown result type (might be due to invalid IL or missing references) //IL_33a7: Unknown result type (might be due to invalid IL or missing references) //IL_33b1: Unknown result type (might be due to invalid IL or missing references) //IL_33b6: Unknown result type (might be due to invalid IL or missing references) //IL_33c1: Unknown result type (might be due to invalid IL or missing references) //IL_33cb: Unknown result type (might be due to invalid IL or missing references) //IL_33d0: Unknown result type (might be due to invalid IL or missing references) //IL_33d6: Unknown result type (might be due to invalid IL or missing references) //IL_33db: Unknown result type (might be due to invalid IL or missing references) //IL_33e1: Unknown result type (might be due to invalid IL or missing references) //IL_33e6: Unknown result type (might be due to invalid IL or missing references) //IL_33ec: Unknown result type (might be due to invalid IL or missing references) //IL_33f1: Unknown result type (might be due to invalid IL or missing references) //IL_33f7: Unknown result type (might be due to invalid IL or missing references) //IL_33fc: Unknown result type (might be due to invalid IL or missing references) //IL_3407: Unknown result type (might be due to invalid IL or missing references) //IL_3412: Unknown result type (might be due to invalid IL or missing references) //IL_341c: Unknown result type (might be due to invalid IL or missing references) //IL_3421: Unknown result type (might be due to invalid IL or missing references) //IL_342c: Unknown result type (might be due to invalid IL or missing references) //IL_3436: Unknown result type (might be due to invalid IL or missing references) //IL_343b: Unknown result type (might be due to invalid IL or missing references) //IL_3441: Unknown result type (might be due to invalid IL or missing references) //IL_3446: Unknown result type (might be due to invalid IL or missing references) //IL_344c: Unknown result type (might be due to invalid IL or missing references) //IL_3451: Unknown result type (might be due to invalid IL or missing references) //IL_345d: Unknown result type (might be due to invalid IL or missing references) //IL_2874: Unknown result type (might be due to invalid IL or missing references) //IL_2879: Unknown result type (might be due to invalid IL or missing references) //IL_2885: Unknown result type (might be due to invalid IL or missing references) //IL_288a: Unknown result type (might be due to invalid IL or missing references) //IL_288f: Unknown result type (might be due to invalid IL or missing references) //IL_2894: Unknown result type (might be due to invalid IL or missing references) //IL_2899: Unknown result type (might be due to invalid IL or missing references) //IL_28a5: Unknown result type (might be due to invalid IL or missing references) //IL_28aa: Unknown result type (might be due to invalid IL or missing references) //IL_28af: Unknown result type (might be due to invalid IL or missing references) //IL_28b4: Unknown result type (might be due to invalid IL or missing references) //IL_27f2: Unknown result type (might be due to invalid IL or missing references) //IL_27f7: Unknown result type (might be due to invalid IL or missing references) //IL_2737: Unknown result type (might be due to invalid IL or missing references) //IL_273c: Unknown result type (might be due to invalid IL or missing references) //IL_2741: Unknown result type (might be due to invalid IL or missing references) //IL_274d: Unknown result type (might be due to invalid IL or missing references) //IL_2752: Unknown result type (might be due to invalid IL or missing references) //IL_2757: Unknown result type (might be due to invalid IL or missing references) //IL_275c: Unknown result type (might be due to invalid IL or missing references) //IL_2768: Unknown result type (might be due to invalid IL or missing references) //IL_276d: Unknown result type (might be due to invalid IL or missing references) //IL_2772: Unknown result type (might be due to invalid IL or missing references) //IL_4461: Unknown result type (might be due to invalid IL or missing references) //IL_446c: Unknown result type (might be due to invalid IL or missing references) //IL_4476: Unknown result type (might be due to invalid IL or missing references) //IL_447b: Unknown result type (might be due to invalid IL or missing references) //IL_4486: Unknown result type (might be due to invalid IL or missing references) //IL_4490: Unknown result type (might be due to invalid IL or missing references) //IL_4495: Unknown result type (might be due to invalid IL or missing references) //IL_449b: Unknown result type (might be due to invalid IL or missing references) //IL_44a0: Unknown result type (might be due to invalid IL or missing references) //IL_44ab: Unknown result type (might be due to invalid IL or missing references) //IL_44b6: Unknown result type (might be due to invalid IL or missing references) //IL_44c0: Unknown result type (might be due to invalid IL or missing references) //IL_44c5: Unknown result type (might be due to invalid IL or missing references) //IL_44d0: Unknown result type (might be due to invalid IL or missing references) //IL_44da: Unknown result type (might be due to invalid IL or missing references) //IL_44df: Unknown result type (might be due to invalid IL or missing references) //IL_44e5: Unknown result type (might be due to invalid IL or missing references) //IL_44ea: Unknown result type (might be due to invalid IL or missing references) //IL_44f6: Unknown result type (might be due to invalid IL or missing references) //IL_4322: Unknown result type (might be due to invalid IL or missing references) //IL_4327: Unknown result type (might be due to invalid IL or missing references) //IL_4776: Unknown result type (might be due to invalid IL or missing references) //IL_4781: Unknown result type (might be due to invalid IL or missing references) //IL_478b: Unknown result type (might be due to invalid IL or missing references) //IL_4790: Unknown result type (might be due to invalid IL or missing references) //IL_4795: Unknown result type (might be due to invalid IL or missing references) //IL_47a4: Unknown result type (might be due to invalid IL or missing references) //IL_47a9: Unknown result type (might be due to invalid IL or missing references) //IL_47b8: Unknown result type (might be due to invalid IL or missing references) //IL_47bd: Unknown result type (might be due to invalid IL or missing references) //IL_47d3: Unknown result type (might be due to invalid IL or missing references) //IL_47de: Unknown result type (might be due to invalid IL or missing references) //IL_47e8: Unknown result type (might be due to invalid IL or missing references) //IL_47ed: Unknown result type (might be due to invalid IL or missing references) //IL_47f2: Unknown result type (might be due to invalid IL or missing references) //IL_47fb: Unknown result type (might be due to invalid IL or missing references) //IL_4806: Unknown result type (might be due to invalid IL or missing references) //IL_4811: Unknown result type (might be due to invalid IL or missing references) //IL_481b: Unknown result type (might be due to invalid IL or missing references) //IL_4820: Unknown result type (might be due to invalid IL or missing references) //IL_4825: Unknown result type (might be due to invalid IL or missing references) //IL_4834: Unknown result type (might be due to invalid IL or missing references) //IL_4839: Unknown result type (might be due to invalid IL or missing references) //IL_4848: Unknown result type (might be due to invalid IL or missing references) //IL_484d: Unknown result type (might be due to invalid IL or missing references) //IL_486f: Unknown result type (might be due to invalid IL or missing references) //IL_487a: Unknown result type (might be due to invalid IL or missing references) //IL_4884: Unknown result type (might be due to invalid IL or missing references) //IL_4889: Unknown result type (might be due to invalid IL or missing references) //IL_488e: Unknown result type (might be due to invalid IL or missing references) //IL_4897: Unknown result type (might be due to invalid IL or missing references) //IL_48a3: Unknown result type (might be due to invalid IL or missing references) //IL_368e: Unknown result type (might be due to invalid IL or missing references) //IL_3699: Unknown result type (might be due to invalid IL or missing references) //IL_36a3: Unknown result type (might be due to invalid IL or missing references) //IL_36a8: Unknown result type (might be due to invalid IL or missing references) //IL_36b3: Unknown result type (might be due to invalid IL or missing references) //IL_36bd: Unknown result type (might be due to invalid IL or missing references) //IL_36c2: Unknown result type (might be due to invalid IL or missing references) //IL_36c8: Unknown result type (might be due to invalid IL or missing references) //IL_36cd: Unknown result type (might be due to invalid IL or missing references) //IL_36d8: Unknown result type (might be due to invalid IL or missing references) //IL_36dd: Unknown result type (might be due to invalid IL or missing references) //IL_36e3: Unknown result type (might be due to invalid IL or missing references) //IL_36e8: Unknown result type (might be due to invalid IL or missing references) //IL_36ee: Unknown result type (might be due to invalid IL or missing references) //IL_36f3: Unknown result type (might be due to invalid IL or missing references) //IL_36f9: Unknown result type (might be due to invalid IL or missing references) //IL_36fe: Unknown result type (might be due to invalid IL or missing references) //IL_3709: Unknown result type (might be due to invalid IL or missing references) //IL_3714: Unknown result type (might be due to invalid IL or missing references) //IL_371e: Unknown result type (might be due to invalid IL or missing references) //IL_3723: Unknown result type (might be due to invalid IL or missing references) //IL_372e: Unknown result type (might be due to invalid IL or missing references) //IL_3733: Unknown result type (might be due to invalid IL or missing references) //IL_3739: Unknown result type (might be due to invalid IL or missing references) //IL_373e: Unknown result type (might be due to invalid IL or missing references) //IL_3744: Unknown result type (might be due to invalid IL or missing references) //IL_3749: Unknown result type (might be due to invalid IL or missing references) //IL_3755: Unknown result type (might be due to invalid IL or missing references) //IL_38a1: Unknown result type (might be due to invalid IL or missing references) //IL_38ac: Unknown result type (might be due to invalid IL or missing references) //IL_38b6: Unknown result type (might be due to invalid IL or missing references) //IL_38bb: Unknown result type (might be due to invalid IL or missing references) //IL_38c6: Unknown result type (might be due to invalid IL or missing references) //IL_38cb: Unknown result type (might be due to invalid IL or missing references) //IL_38d6: Unknown result type (might be due to invalid IL or missing references) //IL_38db: Unknown result type (might be due to invalid IL or missing references) //IL_38e5: Unknown result type (might be due to invalid IL or missing references) //IL_38f6: Unknown result type (might be due to invalid IL or missing references) //IL_28c0: Unknown result type (might be due to invalid IL or missing references) //IL_28cb: Unknown result type (might be due to invalid IL or missing references) //IL_28d5: Unknown result type (might be due to invalid IL or missing references) //IL_28da: Unknown result type (might be due to invalid IL or missing references) //IL_28e0: Unknown result type (might be due to invalid IL or missing references) //IL_28e5: Unknown result type (might be due to invalid IL or missing references) //IL_28ea: Unknown result type (might be due to invalid IL or missing references) //IL_28ef: Unknown result type (might be due to invalid IL or missing references) //IL_28fa: Unknown result type (might be due to invalid IL or missing references) //IL_2905: Unknown result type (might be due to invalid IL or missing references) //IL_290f: Unknown result type (might be due to invalid IL or missing references) //IL_2914: Unknown result type (might be due to invalid IL or missing references) //IL_2920: Unknown result type (might be due to invalid IL or missing references) //IL_282c: Unknown result type (might be due to invalid IL or missing references) //IL_2831: Unknown result type (might be due to invalid IL or missing references) //IL_2836: Unknown result type (might be due to invalid IL or missing references) //IL_2842: Unknown result type (might be due to invalid IL or missing references) //IL_2847: Unknown result type (might be due to invalid IL or missing references) //IL_284c: Unknown result type (might be due to invalid IL or missing references) //IL_2851: Unknown result type (might be due to invalid IL or missing references) //IL_285d: Unknown result type (might be due to invalid IL or missing references) //IL_2862: Unknown result type (might be due to invalid IL or missing references) //IL_2867: Unknown result type (might be due to invalid IL or missing references) //IL_4568: Unknown result type (might be due to invalid IL or missing references) //IL_4573: Unknown result type (might be due to invalid IL or missing references) //IL_457d: Unknown result type (might be due to invalid IL or missing references) //IL_4582: Unknown result type (might be due to invalid IL or missing references) //IL_458d: Unknown result type (might be due to invalid IL or missing references) //IL_4597: Unknown result type (might be due to invalid IL or missing references) //IL_459c: Unknown result type (might be due to invalid IL or missing references) //IL_45a2: Unknown result type (might be due to invalid IL or missing references) //IL_45a7: Unknown result type (might be due to invalid IL or missing references) //IL_45b2: Unknown result type (might be due to invalid IL or missing references) //IL_45bd: Unknown result type (might be due to invalid IL or missing references) //IL_45c7: Unknown result type (might be due to invalid IL or missing references) //IL_45cc: Unknown result type (might be due to invalid IL or missing references) //IL_45d7: Unknown result type (might be due to invalid IL or missing references) //IL_45e1: Unknown result type (might be due to invalid IL or missing references) //IL_45e6: Unknown result type (might be due to invalid IL or missing references) //IL_45ec: Unknown result type (might be due to invalid IL or missing references) //IL_45f1: Unknown result type (might be due to invalid IL or missing references) //IL_45fd: Unknown result type (might be due to invalid IL or missing references) //IL_4429: Unknown result type (might be due to invalid IL or missing references) //IL_442e: Unknown result type (might be due to invalid IL or missing references) //IL_48c5: Unknown result type (might be due to invalid IL or missing references) //IL_48d0: Unknown result type (might be due to invalid IL or missing references) //IL_48da: Unknown result type (might be due to invalid IL or missing references) //IL_48df: Unknown result type (might be due to invalid IL or missing references) //IL_48ea: Unknown result type (might be due to invalid IL or missing references) //IL_48ef: Unknown result type (might be due to invalid IL or missing references) //IL_48fa: Unknown result type (might be due to invalid IL or missing references) //IL_48ff: Unknown result type (might be due to invalid IL or missing references) //IL_4909: Unknown result type (might be due to invalid IL or missing references) //IL_491a: Unknown result type (might be due to invalid IL or missing references) //IL_3996: Unknown result type (might be due to invalid IL or missing references) //IL_39a1: Unknown result type (might be due to invalid IL or missing references) //IL_39ab: Unknown result type (might be due to invalid IL or missing references) //IL_39b0: Unknown result type (might be due to invalid IL or missing references) //IL_39bb: Unknown result type (might be due to invalid IL or missing references) //IL_39c0: Unknown result type (might be due to invalid IL or missing references) //IL_39cb: Unknown result type (might be due to invalid IL or missing references) //IL_39d0: Unknown result type (might be due to invalid IL or missing references) //IL_39da: Unknown result type (might be due to invalid IL or missing references) //IL_39eb: Unknown result type (might be due to invalid IL or missing references) //IL_3910: Unknown result type (might be due to invalid IL or missing references) //IL_3915: Unknown result type (might be due to invalid IL or missing references) //IL_466f: Unknown result type (might be due to invalid IL or missing references) //IL_467a: Unknown result type (might be due to invalid IL or missing references) //IL_4684: Unknown result type (might be due to invalid IL or missing references) //IL_4689: Unknown result type (might be due to invalid IL or missing references) //IL_4694: Unknown result type (might be due to invalid IL or missing references) //IL_469e: Unknown result type (might be due to invalid IL or missing references) //IL_46a3: Unknown result type (might be due to invalid IL or missing references) //IL_46a9: Unknown result type (might be due to invalid IL or missing references) //IL_46ae: Unknown result type (might be due to invalid IL or missing references) //IL_46b9: Unknown result type (might be due to invalid IL or missing references) //IL_46c4: Unknown result type (might be due to invalid IL or missing references) //IL_46ce: Unknown result type (might be due to invalid IL or missing references) //IL_46d3: Unknown result type (might be due to invalid IL or missing references) //IL_46de: Unknown result type (might be due to invalid IL or missing references) //IL_46e8: Unknown result type (might be due to invalid IL or missing references) //IL_46ed: Unknown result type (might be due to invalid IL or missing references) //IL_46f3: Unknown result type (might be due to invalid IL or missing references) //IL_46f8: Unknown result type (might be due to invalid IL or missing references) //IL_4704: Unknown result type (might be due to invalid IL or missing references) //IL_4530: Unknown result type (might be due to invalid IL or missing references) //IL_4535: Unknown result type (might be due to invalid IL or missing references) //IL_49ba: Unknown result type (might be due to invalid IL or missing references) //IL_49c5: Unknown result type (might be due to invalid IL or missing references) //IL_49cf: Unknown result type (might be due to invalid IL or missing references) //IL_49d4: Unknown result type (might be due to invalid IL or missing references) //IL_49df: Unknown result type (might be due to invalid IL or missing references) //IL_49e4: Unknown result type (might be due to invalid IL or missing references) //IL_49ef: Unknown result type (might be due to invalid IL or missing references) //IL_49f4: Unknown result type (might be due to invalid IL or missing references) //IL_49fe: Unknown result type (might be due to invalid IL or missing references) //IL_4a0f: Unknown result type (might be due to invalid IL or missing references) //IL_4934: Unknown result type (might be due to invalid IL or missing references) //IL_4939: Unknown result type (might be due to invalid IL or missing references) //IL_3a87: Unknown result type (might be due to invalid IL or missing references) //IL_3a8c: Unknown result type (might be due to invalid IL or missing references) //IL_3a98: Unknown result type (might be due to invalid IL or missing references) //IL_3a9d: Unknown result type (might be due to invalid IL or missing references) //IL_3aa2: Unknown result type (might be due to invalid IL or missing references) //IL_3aa7: Unknown result type (might be due to invalid IL or missing references) //IL_3aac: Unknown result type (might be due to invalid IL or missing references) //IL_3ab8: Unknown result type (might be due to invalid IL or missing references) //IL_3abd: Unknown result type (might be due to invalid IL or missing references) //IL_3ac2: Unknown result type (might be due to invalid IL or missing references) //IL_3ac7: Unknown result type (might be due to invalid IL or missing references) //IL_3a05: Unknown result type (might be due to invalid IL or missing references) //IL_3a0a: Unknown result type (might be due to invalid IL or missing references) //IL_394a: Unknown result type (might be due to invalid IL or missing references) //IL_394f: Unknown result type (might be due to invalid IL or missing references) //IL_3954: Unknown result type (might be due to invalid IL or missing references) //IL_3960: Unknown result type (might be due to invalid IL or missing references) //IL_3965: Unknown result type (might be due to invalid IL or missing references) //IL_396a: Unknown result type (might be due to invalid IL or missing references) //IL_396f: Unknown result type (might be due to invalid IL or missing references) //IL_397b: Unknown result type (might be due to invalid IL or missing references) //IL_3980: Unknown result type (might be due to invalid IL or missing references) //IL_3985: Unknown result type (might be due to invalid IL or missing references) //IL_295a: Unknown result type (might be due to invalid IL or missing references) //IL_2965: Unknown result type (might be due to invalid IL or missing references) //IL_296f: Unknown result type (might be due to invalid IL or missing references) //IL_2974: Unknown result type (might be due to invalid IL or missing references) //IL_297a: Unknown result type (might be due to invalid IL or missing references) //IL_297f: Unknown result type (might be due to invalid IL or missing references) //IL_2984: Unknown result type (might be due to invalid IL or missing references) //IL_2989: Unknown result type (might be due to invalid IL or missing references) //IL_298f: Unknown result type (might be due to invalid IL or missing references) //IL_2994: Unknown result type (might be due to invalid IL or missing references) //IL_2999: Unknown result type (might be due to invalid IL or missing references) //IL_29a3: Unknown result type (might be due to invalid IL or missing references) //IL_29a8: Unknown result type (might be due to invalid IL or missing references) //IL_29ae: Unknown result type (might be due to invalid IL or missing references) //IL_29b3: Unknown result type (might be due to invalid IL or missing references) //IL_29b8: Unknown result type (might be due to invalid IL or missing references) //IL_29c3: Unknown result type (might be due to invalid IL or missing references) //IL_29c8: Unknown result type (might be due to invalid IL or missing references) //IL_29d3: Unknown result type (might be due to invalid IL or missing references) //IL_29de: Unknown result type (might be due to invalid IL or missing references) //IL_29e8: Unknown result type (might be due to invalid IL or missing references) //IL_29ed: Unknown result type (might be due to invalid IL or missing references) //IL_29f3: Unknown result type (might be due to invalid IL or missing references) //IL_29f8: Unknown result type (might be due to invalid IL or missing references) //IL_29fd: Unknown result type (might be due to invalid IL or missing references) //IL_2a07: Unknown result type (might be due to invalid IL or missing references) //IL_2a0c: Unknown result type (might be due to invalid IL or missing references) //IL_2a12: Unknown result type (might be due to invalid IL or missing references) //IL_2a17: Unknown result type (might be due to invalid IL or missing references) //IL_2a1c: Unknown result type (might be due to invalid IL or missing references) //IL_2a27: Unknown result type (might be due to invalid IL or missing references) //IL_2a2c: Unknown result type (might be due to invalid IL or missing references) //IL_2a38: Unknown result type (might be due to invalid IL or missing references) //IL_4637: Unknown result type (might be due to invalid IL or missing references) //IL_463c: Unknown result type (might be due to invalid IL or missing references) //IL_4aab: Unknown result type (might be due to invalid IL or missing references) //IL_4ab0: Unknown result type (might be due to invalid IL or missing references) //IL_4abc: Unknown result type (might be due to invalid IL or missing references) //IL_4ac1: Unknown result type (might be due to invalid IL or missing references) //IL_4ac6: Unknown result type (might be due to invalid IL or missing references) //IL_4acb: Unknown result type (might be due to invalid IL or missing references) //IL_4ad0: Unknown result type (might be due to invalid IL or missing references) //IL_4adc: Unknown result type (might be due to invalid IL or missing references) //IL_4ae1: Unknown result type (might be due to invalid IL or missing references) //IL_4ae6: Unknown result type (might be due to invalid IL or missing references) //IL_4aeb: Unknown result type (might be due to invalid IL or missing references) //IL_4a29: Unknown result type (might be due to invalid IL or missing references) //IL_4a2e: Unknown result type (might be due to invalid IL or missing references) //IL_496e: Unknown result type (might be due to invalid IL or missing references) //IL_4973: Unknown result type (might be due to invalid IL or missing references) //IL_4978: Unknown result type (might be due to invalid IL or missing references) //IL_4984: Unknown result type (might be due to invalid IL or missing references) //IL_4989: Unknown result type (might be due to invalid IL or missing references) //IL_498e: Unknown result type (might be due to invalid IL or missing references) //IL_4993: Unknown result type (might be due to invalid IL or missing references) //IL_499f: Unknown result type (might be due to invalid IL or missing references) //IL_49a4: Unknown result type (might be due to invalid IL or missing references) //IL_49a9: Unknown result type (might be due to invalid IL or missing references) //IL_3ad3: Unknown result type (might be due to invalid IL or missing references) //IL_3ade: Unknown result type (might be due to invalid IL or missing references) //IL_3ae8: Unknown result type (might be due to invalid IL or missing references) //IL_3aed: Unknown result type (might be due to invalid IL or missing references) //IL_3af3: Unknown result type (might be due to invalid IL or missing references) //IL_3af8: Unknown result type (might be due to invalid IL or missing references) //IL_3afd: Unknown result type (might be due to invalid IL or missing references) //IL_3b02: Unknown result type (might be due to invalid IL or missing references) //IL_3b0d: Unknown result type (might be due to invalid IL or missing references) //IL_3b18: Unknown result type (might be due to invalid IL or missing references) //IL_3b22: Unknown result type (might be due to invalid IL or missing references) //IL_3b27: Unknown result type (might be due to invalid IL or missing references) //IL_3b33: Unknown result type (might be due to invalid IL or missing references) //IL_3a3f: Unknown result type (might be due to invalid IL or missing references) //IL_3a44: Unknown result type (might be due to invalid IL or missing references) //IL_3a49: Unknown result type (might be due to invalid IL or missing references) //IL_3a55: Unknown result type (might be due to invalid IL or missing references) //IL_3a5a: Unknown result type (might be due to invalid IL or missing references) //IL_3a5f: Unknown result type (might be due to invalid IL or missing references) //IL_3a64: Unknown result type (might be due to invalid IL or missing references) //IL_3a70: Unknown result type (might be due to invalid IL or missing references) //IL_3a75: Unknown result type (might be due to invalid IL or missing references) //IL_3a7a: Unknown result type (might be due to invalid IL or missing references) //IL_473e: Unknown result type (might be due to invalid IL or missing references) //IL_4743: Unknown result type (might be due to invalid IL or missing references) //IL_4af7: Unknown result type (might be due to invalid IL or missing references) //IL_4b02: Unknown result type (might be due to invalid IL or missing references) //IL_4b0c: Unknown result type (might be due to invalid IL or missing references) //IL_4b11: Unknown result type (might be due to invalid IL or missing references) //IL_4b17: Unknown result type (might be due to invalid IL or missing references) //IL_4b1c: Unknown result type (might be due to invalid IL or missing references) //IL_4b21: Unknown result type (might be due to invalid IL or missing references) //IL_4b26: Unknown result type (might be due to invalid IL or missing references) //IL_4b31: Unknown result type (might be due to invalid IL or missing references) //IL_4b3c: Unknown result type (might be due to invalid IL or missing references) //IL_4b46: Unknown result type (might be due to invalid IL or missing references) //IL_4b4b: Unknown result type (might be due to invalid IL or missing references) //IL_4b57: Unknown result type (might be due to invalid IL or missing references) //IL_4a63: Unknown result type (might be due to invalid IL or missing references) //IL_4a68: Unknown result type (might be due to invalid IL or missing references) //IL_4a6d: Unknown result type (might be due to invalid IL or missing references) //IL_4a79: Unknown result type (might be due to invalid IL or missing references) //IL_4a7e: Unknown result type (might be due to invalid IL or missing references) //IL_4a83: Unknown result type (might be due to invalid IL or missing references) //IL_4a88: Unknown result type (might be due to invalid IL or missing references) //IL_4a94: Unknown result type (might be due to invalid IL or missing references) //IL_4a99: Unknown result type (might be due to invalid IL or missing references) //IL_4a9e: Unknown result type (might be due to invalid IL or missing references) //IL_2a72: Unknown result type (might be due to invalid IL or missing references) //IL_2a7d: Unknown result type (might be due to invalid IL or missing references) //IL_2a87: Unknown result type (might be due to invalid IL or missing references) //IL_2a8c: Unknown result type (might be due to invalid IL or missing references) //IL_2a92: Unknown result type (might be due to invalid IL or missing references) //IL_2a97: Unknown result type (might be due to invalid IL or missing references) //IL_2a9c: Unknown result type (might be due to invalid IL or missing references) //IL_2aa1: Unknown result type (might be due to invalid IL or missing references) //IL_2aa7: Unknown result type (might be due to invalid IL or missing references) //IL_2aac: Unknown result type (might be due to invalid IL or missing references) //IL_2ab1: Unknown result type (might be due to invalid IL or missing references) //IL_2ab6: Unknown result type (might be due to invalid IL or missing references) //IL_2ac0: Unknown result type (might be due to invalid IL or missing references) //IL_2ac5: Unknown result type (might be due to invalid IL or missing references) //IL_2acb: Unknown result type (might be due to invalid IL or missing references) //IL_2ad0: Unknown result type (might be due to invalid IL or missing references) //IL_2ad5: Unknown result type (might be due to invalid IL or missing references) //IL_2ada: Unknown result type (might be due to invalid IL or missing references) //IL_2ae5: Unknown result type (might be due to invalid IL or missing references) //IL_2aea: Unknown result type (might be due to invalid IL or missing references) //IL_2af5: Unknown result type (might be due to invalid IL or missing references) //IL_2b00: Unknown result type (might be due to invalid IL or missing references) //IL_2b0a: Unknown result type (might be due to invalid IL or missing references) //IL_2b0f: Unknown result type (might be due to invalid IL or missing references) //IL_2b15: Unknown result type (might be due to invalid IL or missing references) //IL_2b1a: Unknown result type (might be due to invalid IL or missing references) //IL_2b1f: Unknown result type (might be due to invalid IL or missing references) //IL_2b24: Unknown result type (might be due to invalid IL or missing references) //IL_2b2e: Unknown result type (might be due to invalid IL or missing references) //IL_2b33: Unknown result type (might be due to invalid IL or missing references) //IL_2b39: Unknown result type (might be due to invalid IL or missing references) //IL_2b3e: Unknown result type (might be due to invalid IL or missing references) //IL_2b43: Unknown result type (might be due to invalid IL or missing references) //IL_2b48: Unknown result type (might be due to invalid IL or missing references) //IL_2b53: Unknown result type (might be due to invalid IL or missing references) //IL_2b58: Unknown result type (might be due to invalid IL or missing references) //IL_2b64: Unknown result type (might be due to invalid IL or missing references) //IL_3b6d: Unknown result type (might be due to invalid IL or missing references) //IL_3b78: Unknown result type (might be due to invalid IL or missing references) //IL_3b82: Unknown result type (might be due to invalid IL or missing references) //IL_3b87: Unknown result type (might be due to invalid IL or missing references) //IL_3b8d: Unknown result type (might be due to invalid IL or missing references) //IL_3b92: Unknown result type (might be due to invalid IL or missing references) //IL_3b97: Unknown result type (might be due to invalid IL or missing references) //IL_3b9c: Unknown result type (might be due to invalid IL or missing references) //IL_3ba2: Unknown result type (might be due to invalid IL or missing references) //IL_3ba7: Unknown result type (might be due to invalid IL or missing references) //IL_3bac: Unknown result type (might be due to invalid IL or missing references) //IL_3bb6: Unknown result type (might be due to invalid IL or missing references) //IL_3bbb: Unknown result type (might be due to invalid IL or missing references) //IL_3bc1: Unknown result type (might be due to invalid IL or missing references) //IL_3bc6: Unknown result type (might be due to invalid IL or missing references) //IL_3bcb: Unknown result type (might be due to invalid IL or missing references) //IL_3bd6: Unknown result type (might be due to invalid IL or missing references) //IL_3bdb: Unknown result type (might be due to invalid IL or missing references) //IL_3be6: Unknown result type (might be due to invalid IL or missing references) //IL_3bf1: Unknown result type (might be due to invalid IL or missing references) //IL_3bfb: Unknown result type (might be due to invalid IL or missing references) //IL_3c00: Unknown result type (might be due to invalid IL or missing references) //IL_3c06: Unknown result type (might be due to invalid IL or missing references) //IL_3c0b: Unknown result type (might be due to invalid IL or missing references) //IL_3c10: Unknown result type (might be due to invalid IL or missing references) //IL_3c1a: Unknown result type (might be due to invalid IL or missing references) //IL_3c1f: Unknown result type (might be due to invalid IL or missing references) //IL_3c25: Unknown result type (might be due to invalid IL or missing references) //IL_3c2a: Unknown result type (might be due to invalid IL or missing references) //IL_3c2f: Unknown result type (might be due to invalid IL or missing references) //IL_3c3a: Unknown result type (might be due to invalid IL or missing references) //IL_3c3f: Unknown result type (might be due to invalid IL or missing references) //IL_3c4b: Unknown result type (might be due to invalid IL or missing references) //IL_4b91: Unknown result type (might be due to invalid IL or missing references) //IL_4b9c: Unknown result type (might be due to invalid IL or missing references) //IL_4ba6: Unknown result type (might be due to invalid IL or missing references) //IL_4bab: Unknown result type (might be due to invalid IL or missing references) //IL_4bb1: Unknown result type (might be due to invalid IL or missing references) //IL_4bb6: Unknown result type (might be due to invalid IL or missing references) //IL_4bbb: Unknown result type (might be due to invalid IL or missing references) //IL_4bc0: Unknown result type (might be due to invalid IL or missing references) //IL_4bc6: Unknown result type (might be due to invalid IL or missing references) //IL_4bcb: Unknown result type (might be due to invalid IL or missing references) //IL_4bd0: Unknown result type (might be due to invalid IL or missing references) //IL_4bda: Unknown result type (might be due to invalid IL or missing references) //IL_4bdf: Unknown result type (might be due to invalid IL or missing references) //IL_4be5: Unknown result type (might be due to invalid IL or missing references) //IL_4bea: Unknown result type (might be due to invalid IL or missing references) //IL_4bef: Unknown result type (might be due to invalid IL or missing references) //IL_4bfa: Unknown result type (might be due to invalid IL or missing references) //IL_4bff: Unknown result type (might be due to invalid IL or missing references) //IL_4c0a: Unknown result type (might be due to invalid IL or missing references) //IL_4c15: Unknown result type (might be due to invalid IL or missing references) //IL_4c1f: Unknown result type (might be due to invalid IL or missing references) //IL_4c24: Unknown result type (might be due to invalid IL or missing references) //IL_4c2a: Unknown result type (might be due to invalid IL or missing references) //IL_4c2f: Unknown result type (might be due to invalid IL or missing references) //IL_4c34: Unknown result type (might be due to invalid IL or missing references) //IL_4c3e: Unknown result type (might be due to invalid IL or missing references) //IL_4c43: Unknown result type (might be due to invalid IL or missing references) //IL_4c49: Unknown result type (might be due to invalid IL or missing references) //IL_4c4e: Unknown result type (might be due to invalid IL or missing references) //IL_4c53: Unknown result type (might be due to invalid IL or missing references) //IL_4c5e: Unknown result type (might be due to invalid IL or missing references) //IL_4c63: Unknown result type (might be due to invalid IL or missing references) //IL_4c6f: Unknown result type (might be due to invalid IL or missing references) //IL_2b9f: Unknown result type (might be due to invalid IL or missing references) //IL_2baa: Unknown result type (might be due to invalid IL or missing references) //IL_2bb4: Unknown result type (might be due to invalid IL or missing references) //IL_2bb9: Unknown result type (might be due to invalid IL or missing references) //IL_2bbf: Unknown result type (might be due to invalid IL or missing references) //IL_2bc4: Unknown result type (might be due to invalid IL or missing references) //IL_2bc9: Unknown result type (might be due to invalid IL or missing references) //IL_2bce: Unknown result type (might be due to invalid IL or missing references) //IL_2bd9: Unknown result type (might be due to invalid IL or missing references) //IL_2be4: Unknown result type (might be due to invalid IL or missing references) //IL_2bee: Unknown result type (might be due to invalid IL or missing references) //IL_2bf3: Unknown result type (might be due to invalid IL or missing references) //IL_2bff: Unknown result type (might be due to invalid IL or missing references) //IL_3c85: Unknown result type (might be due to invalid IL or missing references) //IL_3c90: Unknown result type (might be due to invalid IL or missing references) //IL_3c9a: Unknown result type (might be due to invalid IL or missing references) //IL_3c9f: Unknown result type (might be due to invalid IL or missing references) //IL_3ca5: Unknown result type (might be due to invalid IL or missing references) //IL_3caa: Unknown result type (might be due to invalid IL or missing references) //IL_3caf: Unknown result type (might be due to invalid IL or missing references) //IL_3cb4: Unknown result type (might be due to invalid IL or missing references) //IL_3cba: Unknown result type (might be due to invalid IL or missing references) //IL_3cbf: Unknown result type (might be due to invalid IL or missing references) //IL_3cc4: Unknown result type (might be due to invalid IL or missing references) //IL_3cc9: Unknown result type (might be due to invalid IL or missing references) //IL_3cd3: Unknown result type (might be due to invalid IL or missing references) //IL_3cd8: Unknown result type (might be due to invalid IL or missing references) //IL_3cde: Unknown result type (might be due to invalid IL or missing references) //IL_3ce3: Unknown result type (might be due to invalid IL or missing references) //IL_3ce8: Unknown result type (might be due to invalid IL or missing references) //IL_3ced: Unknown result type (might be due to invalid IL or missing references) //IL_3cf8: Unknown result type (might be due to invalid IL or missing references) //IL_3cfd: Unknown result type (might be due to invalid IL or missing references) //IL_3d08: Unknown result type (might be due to invalid IL or missing references) //IL_3d13: Unknown result type (might be due to invalid IL or missing references) //IL_3d1d: Unknown result type (might be due to invalid IL or missing references) //IL_3d22: Unknown result type (might be due to invalid IL or missing references) //IL_3d28: Unknown result type (might be due to invalid IL or missing references) //IL_3d2d: Unknown result type (might be due to invalid IL or missing references) //IL_3d32: Unknown result type (might be due to invalid IL or missing references) //IL_3d37: Unknown result type (might be due to invalid IL or missing references) //IL_3d41: Unknown result type (might be due to invalid IL or missing references) //IL_3d46: Unknown result type (might be due to invalid IL or missing references) //IL_3d4c: Unknown result type (might be due to invalid IL or missing references) //IL_3d51: Unknown result type (might be due to invalid IL or missing references) //IL_3d56: Unknown result type (might be due to invalid IL or missing references) //IL_3d5b: Unknown result type (might be due to invalid IL or missing references) //IL_3d66: Unknown result type (might be due to invalid IL or missing references) //IL_3d6b: Unknown result type (might be due to invalid IL or missing references) //IL_3d77: Unknown result type (might be due to invalid IL or missing references) //IL_4ca9: Unknown result type (might be due to invalid IL or missing references) //IL_4cb4: Unknown result type (might be due to invalid IL or missing references) //IL_4cbe: Unknown result type (might be due to invalid IL or missing references) //IL_4cc3: Unknown result type (might be due to invalid IL or missing references) //IL_4cc9: Unknown result type (might be due to invalid IL or missing references) //IL_4cce: Unknown result type (might be due to invalid IL or missing references) //IL_4cd3: Unknown result type (might be due to invalid IL or missing references) //IL_4cd8: Unknown result type (might be due to invalid IL or missing references) //IL_4cde: Unknown result type (might be due to invalid IL or missing references) //IL_4ce3: Unknown result type (might be due to invalid IL or missing references) //IL_4ce8: Unknown result type (might be due to invalid IL or missing references) //IL_4ced: Unknown result type (might be due to invalid IL or missing references) //IL_4cf7: Unknown result type (might be due to invalid IL or missing references) //IL_4cfc: Unknown result type (might be due to invalid IL or missing references) //IL_4d02: Unknown result type (might be due to invalid IL or missing references) //IL_4d07: Unknown result type (might be due to invalid IL or missing references) //IL_4d0c: Unknown result type (might be due to invalid IL or missing references) //IL_4d11: Unknown result type (might be due to invalid IL or missing references) //IL_4d1c: Unknown result type (might be due to invalid IL or missing references) //IL_4d21: Unknown result type (might be due to invalid IL or missing references) //IL_4d2c: Unknown result type (might be due to invalid IL or missing references) //IL_4d37: Unknown result type (might be due to invalid IL or missing references) //IL_4d41: Unknown result type (might be due to invalid IL or missing references) //IL_4d46: Unknown result type (might be due to invalid IL or missing references) //IL_4d4c: Unknown result type (might be due to invalid IL or missing references) //IL_4d51: Unknown result type (might be due to invalid IL or missing references) //IL_4d56: Unknown result type (might be due to invalid IL or missing references) //IL_4d5b: Unknown result type (might be due to invalid IL or missing references) //IL_4d65: Unknown result type (might be due to invalid IL or missing references) //IL_4d6a: Unknown result type (might be due to invalid IL or missing references) //IL_4d70: Unknown result type (might be due to invalid IL or missing references) //IL_4d75: Unknown result type (might be due to invalid IL or missing references) //IL_4d7a: Unknown result type (might be due to invalid IL or missing references) //IL_4d7f: Unknown result type (might be due to invalid IL or missing references) //IL_4d8a: Unknown result type (might be due to invalid IL or missing references) //IL_4d8f: Unknown result type (might be due to invalid IL or missing references) //IL_4d9b: Unknown result type (might be due to invalid IL or missing references) //IL_3db2: Unknown result type (might be due to invalid IL or missing references) //IL_3dbd: Unknown result type (might be due to invalid IL or missing references) //IL_3dc7: Unknown result type (might be due to invalid IL or missing references) //IL_3dcc: Unknown result type (might be due to invalid IL or missing references) //IL_3dd2: Unknown result type (might be due to invalid IL or missing references) //IL_3dd7: Unknown result type (might be due to invalid IL or missing references) //IL_3ddc: Unknown result type (might be due to invalid IL or missing references) //IL_3de1: Unknown result type (might be due to invalid IL or missing references) //IL_3dec: Unknown result type (might be due to invalid IL or missing references) //IL_3df7: Unknown result type (might be due to invalid IL or missing references) //IL_3e01: Unknown result type (might be due to invalid IL or missing references) //IL_3e06: Unknown result type (might be due to invalid IL or missing references) //IL_3e12: Unknown result type (might be due to invalid IL or missing references) //IL_2d22: Unknown result type (might be due to invalid IL or missing references) //IL_2d27: Unknown result type (might be due to invalid IL or missing references) //IL_2d31: Unknown result type (might be due to invalid IL or missing references) //IL_2d36: Unknown result type (might be due to invalid IL or missing references) //IL_2d3b: Unknown result type (might be due to invalid IL or missing references) //IL_2d40: Unknown result type (might be due to invalid IL or missing references) //IL_2d56: Unknown result type (might be due to invalid IL or missing references) //IL_2d5b: Unknown result type (might be due to invalid IL or missing references) //IL_2d6b: Unknown result type (might be due to invalid IL or missing references) //IL_2d70: Unknown result type (might be due to invalid IL or missing references) //IL_2d85: Unknown result type (might be due to invalid IL or missing references) //IL_2d8a: Unknown result type (might be due to invalid IL or missing references) //IL_2d94: Unknown result type (might be due to invalid IL or missing references) //IL_2d99: Unknown result type (might be due to invalid IL or missing references) //IL_2d9e: Unknown result type (might be due to invalid IL or missing references) //IL_2da3: Unknown result type (might be due to invalid IL or missing references) //IL_2db9: Unknown result type (might be due to invalid IL or missing references) //IL_2dbe: Unknown result type (might be due to invalid IL or missing references) //IL_2dc8: Unknown result type (might be due to invalid IL or missing references) //IL_2dcd: Unknown result type (might be due to invalid IL or missing references) //IL_2c47: Unknown result type (might be due to invalid IL or missing references) //IL_2c4c: Unknown result type (might be due to invalid IL or missing references) //IL_2c56: Unknown result type (might be due to invalid IL or missing references) //IL_2c5b: Unknown result type (might be due to invalid IL or missing references) //IL_2c60: Unknown result type (might be due to invalid IL or missing references) //IL_2c65: Unknown result type (might be due to invalid IL or missing references) //IL_2c7b: Unknown result type (might be due to invalid IL or missing references) //IL_2c80: Unknown result type (might be due to invalid IL or missing references) //IL_2c90: Unknown result type (might be due to invalid IL or missing references) //IL_2c95: Unknown result type (might be due to invalid IL or missing references) //IL_2caa: Unknown result type (might be due to invalid IL or missing references) //IL_2caf: Unknown result type (might be due to invalid IL or missing references) //IL_2cb9: Unknown result type (might be due to invalid IL or missing references) //IL_2cbe: Unknown result type (might be due to invalid IL or missing references) //IL_2cc3: Unknown result type (might be due to invalid IL or missing references) //IL_2cc8: Unknown result type (might be due to invalid IL or missing references) //IL_2cde: Unknown result type (might be due to invalid IL or missing references) //IL_2ce3: Unknown result type (might be due to invalid IL or missing references) //IL_2ced: Unknown result type (might be due to invalid IL or missing references) //IL_2cf2: Unknown result type (might be due to invalid IL or missing references) //IL_4dd6: Unknown result type (might be due to invalid IL or missing references) //IL_4de1: Unknown result type (might be due to invalid IL or missing references) //IL_4deb: Unknown result type (might be due to invalid IL or missing references) //IL_4df0: Unknown result type (might be due to invalid IL or missing references) //IL_4df6: Unknown result type (might be due to invalid IL or missing references) //IL_4dfb: Unknown result type (might be due to invalid IL or missing references) //IL_4e00: Unknown result type (might be due to invalid IL or missing references) //IL_4e05: Unknown result type (might be due to invalid IL or missing references) //IL_4e10: Unknown result type (might be due to invalid IL or missing references) //IL_4e1b: Unknown result type (might be due to invalid IL or missing references) //IL_4e25: Unknown result type (might be due to invalid IL or missing references) //IL_4e2a: Unknown result type (might be due to invalid IL or missing references) //IL_4e36: Unknown result type (might be due to invalid IL or missing references) //IL_2df8: Unknown result type (might be due to invalid IL or missing references) //IL_2dfd: Unknown result type (might be due to invalid IL or missing references) //IL_3f35: Unknown result type (might be due to invalid IL or missing references) //IL_3f3a: Unknown result type (might be due to invalid IL or missing references) //IL_3f44: Unknown result type (might be due to invalid IL or missing references) //IL_3f49: Unknown result type (might be due to invalid IL or missing references) //IL_3f4e: Unknown result type (might be due to invalid IL or missing references) //IL_3f53: Unknown result type (might be due to invalid IL or missing references) //IL_3f69: Unknown result type (might be due to invalid IL or missing references) //IL_3f6e: Unknown result type (might be due to invalid IL or missing references) //IL_3f7e: Unknown result type (might be due to invalid IL or missing references) //IL_3f83: Unknown result type (might be due to invalid IL or missing references) //IL_3f98: Unknown result type (might be due to invalid IL or missing references) //IL_3f9d: Unknown result type (might be due to invalid IL or missing references) //IL_3fa7: Unknown result type (might be due to invalid IL or missing references) //IL_3fac: Unknown result type (might be due to invalid IL or missing references) //IL_3fb1: Unknown result type (might be due to invalid IL or missing references) //IL_3fb6: Unknown result type (might be due to invalid IL or missing references) //IL_3fcc: Unknown result type (might be due to invalid IL or missing references) //IL_3fd1: Unknown result type (might be due to invalid IL or missing references) //IL_3fdb: Unknown result type (might be due to invalid IL or missing references) //IL_3fe0: Unknown result type (might be due to invalid IL or missing references) //IL_3e5a: Unknown result type (might be due to invalid IL or missing references) //IL_3e5f: Unknown result type (might be due to invalid IL or missing references) //IL_3e69: Unknown result type (might be due to invalid IL or missing references) //IL_3e6e: Unknown result type (might be due to invalid IL or missing references) //IL_3e73: Unknown result type (might be due to invalid IL or missing references) //IL_3e78: Unknown result type (might be due to invalid IL or missing references) //IL_3e8e: Unknown result type (might be due to invalid IL or missing references) //IL_3e93: Unknown result type (might be due to invalid IL or missing references) //IL_3ea3: Unknown result type (might be due to invalid IL or missing references) //IL_3ea8: Unknown result type (might be due to invalid IL or missing references) //IL_3ebd: Unknown result type (might be due to invalid IL or missing references) //IL_3ec2: Unknown result type (might be due to invalid IL or missing references) //IL_3ecc: Unknown result type (might be due to invalid IL or missing references) //IL_3ed1: Unknown result type (might be due to invalid IL or missing references) //IL_3ed6: Unknown result type (might be due to invalid IL or missing references) //IL_3edb: Unknown result type (might be due to invalid IL or missing references) //IL_3ef1: Unknown result type (might be due to invalid IL or missing references) //IL_3ef6: Unknown result type (might be due to invalid IL or missing references) //IL_3f00: Unknown result type (might be due to invalid IL or missing references) //IL_3f05: Unknown result type (might be due to invalid IL or missing references) //IL_4f59: Unknown result type (might be due to invalid IL or missing references) //IL_4f5e: Unknown result type (might be due to invalid IL or missing references) //IL_4f68: Unknown result type (might be due to invalid IL or missing references) //IL_4f6d: Unknown result type (might be due to invalid IL or missing references) //IL_4f72: Unknown result type (might be due to invalid IL or missing references) //IL_4f77: Unknown result type (might be due to invalid IL or missing references) //IL_4f8d: Unknown result type (might be due to invalid IL or missing references) //IL_4f92: Unknown result type (might be due to invalid IL or missing references) //IL_4fa2: Unknown result type (might be due to invalid IL or missing references) //IL_4fa7: Unknown result type (might be due to invalid IL or missing references) //IL_4fbc: Unknown result type (might be due to invalid IL or missing references) //IL_4fc1: Unknown result type (might be due to invalid IL or missing references) //IL_4fcb: Unknown result type (might be due to invalid IL or missing references) //IL_4fd0: Unknown result type (might be due to invalid IL or missing references) //IL_4fd5: Unknown result type (might be due to invalid IL or missing references) //IL_4fda: Unknown result type (might be due to invalid IL or missing references) //IL_4ff0: Unknown result type (might be due to invalid IL or missing references) //IL_4ff5: Unknown result type (might be due to invalid IL or missing references) //IL_4fff: Unknown result type (might be due to invalid IL or missing references) //IL_5004: Unknown result type (might be due to invalid IL or missing references) //IL_4e7e: Unknown result type (might be due to invalid IL or missing references) //IL_4e83: Unknown result type (might be due to invalid IL or missing references) //IL_4e8d: Unknown result type (might be due to invalid IL or missing references) //IL_4e92: Unknown result type (might be due to invalid IL or missing references) //IL_4e97: Unknown result type (might be due to invalid IL or missing references) //IL_4e9c: Unknown result type (might be due to invalid IL or missing references) //IL_4eb2: Unknown result type (might be due to invalid IL or missing references) //IL_4eb7: Unknown result type (might be due to invalid IL or missing references) //IL_4ec7: Unknown result type (might be due to invalid IL or missing references) //IL_4ecc: Unknown result type (might be due to invalid IL or missing references) //IL_4ee1: Unknown result type (might be due to invalid IL or missing references) //IL_4ee6: Unknown result type (might be due to invalid IL or missing references) //IL_4ef0: Unknown result type (might be due to invalid IL or missing references) //IL_4ef5: Unknown result type (might be due to invalid IL or missing references) //IL_4efa: Unknown result type (might be due to invalid IL or missing references) //IL_4eff: Unknown result type (might be due to invalid IL or missing references) //IL_4f15: Unknown result type (might be due to invalid IL or missing references) //IL_4f1a: Unknown result type (might be due to invalid IL or missing references) //IL_4f24: Unknown result type (might be due to invalid IL or missing references) //IL_4f29: Unknown result type (might be due to invalid IL or missing references) //IL_400b: Unknown result type (might be due to invalid IL or missing references) //IL_4010: Unknown result type (might be due to invalid IL or missing references) //IL_502f: Unknown result type (might be due to invalid IL or missing references) //IL_5034: Unknown result type (might be due to invalid IL or missing references) //IL_2e46: Unknown result type (might be due to invalid IL or missing references) //IL_2e4b: Unknown result type (might be due to invalid IL or missing references) //IL_2e5a: Unknown result type (might be due to invalid IL or missing references) //IL_2e5f: Unknown result type (might be due to invalid IL or missing references) //IL_2e6f: Unknown result type (might be due to invalid IL or missing references) //IL_2e74: Unknown result type (might be due to invalid IL or missing references) //IL_2e83: Unknown result type (might be due to invalid IL or missing references) //IL_2e88: Unknown result type (might be due to invalid IL or missing references) //IL_2ea3: Unknown result type (might be due to invalid IL or missing references) //IL_2ea8: Unknown result type (might be due to invalid IL or missing references) //IL_2eb7: Unknown result type (might be due to invalid IL or missing references) //IL_2ebc: Unknown result type (might be due to invalid IL or missing references) //IL_2ecc: Unknown result type (might be due to invalid IL or missing references) //IL_2ed1: Unknown result type (might be due to invalid IL or missing references) //IL_2ee0: Unknown result type (might be due to invalid IL or missing references) //IL_2ee5: Unknown result type (might be due to invalid IL or missing references) //IL_2ef0: Unknown result type (might be due to invalid IL or missing references) //IL_2ef5: Unknown result type (might be due to invalid IL or missing references) //IL_4059: Unknown result type (might be due to invalid IL or missing references) //IL_405e: Unknown result type (might be due to invalid IL or missing references) //IL_406d: Unknown result type (might be due to invalid IL or missing references) //IL_4072: Unknown result type (might be due to invalid IL or missing references) //IL_4082: Unknown result type (might be due to invalid IL or missing references) //IL_4087: Unknown result type (might be due to invalid IL or missing references) //IL_4096: Unknown result type (might be due to invalid IL or missing references) //IL_409b: Unknown result type (might be due to invalid IL or missing references) //IL_40b6: Unknown result type (might be due to invalid IL or missing references) //IL_40bb: Unknown result type (might be due to invalid IL or missing references) //IL_40ca: Unknown result type (might be due to invalid IL or missing references) //IL_40cf: Unknown result type (might be due to invalid IL or missing references) //IL_40df: Unknown result type (might be due to invalid IL or missing references) //IL_40e4: Unknown result type (might be due to invalid IL or missing references) //IL_40f3: Unknown result type (might be due to invalid IL or missing references) //IL_40f8: Unknown result type (might be due to invalid IL or missing references) //IL_4103: Unknown result type (might be due to invalid IL or missing references) //IL_4108: Unknown result type (might be due to invalid IL or missing references) //IL_507d: Unknown result type (might be due to invalid IL or missing references) //IL_5082: Unknown result type (might be due to invalid IL or missing references) //IL_5091: Unknown result type (might be due to invalid IL or missing references) //IL_5096: Unknown result type (might be due to invalid IL or missing references) //IL_50a6: Unknown result type (might be due to invalid IL or missing references) //IL_50ab: Unknown result type (might be due to invalid IL or missing references) //IL_50ba: Unknown result type (might be due to invalid IL or missing references) //IL_50bf: Unknown result type (might be due to invalid IL or missing references) //IL_50da: Unknown result type (might be due to invalid IL or missing references) //IL_50df: Unknown result type (might be due to invalid IL or missing references) //IL_50ee: Unknown result type (might be due to invalid IL or missing references) //IL_50f3: Unknown result type (might be due to invalid IL or missing references) //IL_5103: Unknown result type (might be due to invalid IL or missing references) //IL_5108: Unknown result type (might be due to invalid IL or missing references) //IL_5117: Unknown result type (might be due to invalid IL or missing references) //IL_511c: Unknown result type (might be due to invalid IL or missing references) //IL_5127: Unknown result type (might be due to invalid IL or missing references) //IL_512c: Unknown result type (might be due to invalid IL or missing references) i++; if (i == climbing.Length) { i = 0; } if (!firstTest && !secondTest && !thirdTest && !fourthTest && !fifthTest) { SetClimbingVariables(); } if (((Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.1f + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.1f - ((Component)this).transform.right / 2f + sideLedgeDetectorsLength2 + firstSideLedgeDetectorsHeight2 - sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.1f - ((Component)this).transform.right / 2f + sideLedgeDetectorsLength2 + firstSideLedgeDetectorsHeight2 - sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.1f + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.5f + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.5f - ((Component)this).transform.right / 2f + sideLedgeDetectorsLength2 + secondSideLedgeDetectorsHeight2 - sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.5f + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.5f + ((Component)this).transform.right / 2f - sideLedgeDetectorsLength2 + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.5f - ((Component)this).transform.right / 2f + sideLedgeDetectorsLength2 + secondSideLedgeDetectorsHeight2 - sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.5f + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.right / 2f + sideLedgeDetectorsLength2 - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight2 - sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward / 2f - ((Component)this).transform.up + ((Component)this).transform.right / 2f - sideLedgeDetectorsLength2 + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.right / 2f + sideLedgeDetectorsLength2 - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight2 - sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2)) && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.1f + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.1f + ((Component)this).transform.right / 2f - sideLedgeDetectorsLength2 + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { fifthTest = true; } else if (((Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.1f + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.1f + ((Component)this).transform.right / 2f + sideLedgeDetectorsLength2 + firstSideLedgeDetectorsHeight2 + sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.1f + ((Component)this).transform.right / 2f + sideLedgeDetectorsLength2 + firstSideLedgeDetectorsHeight2 + sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.1f + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.5f + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.5f + ((Component)this).transform.right / 2f + sideLedgeDetectorsLength2 + secondSideLedgeDetectorsHeight2 + sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.5f + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.5f - ((Component)this).transform.right / 2f - sideLedgeDetectorsLength2 + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.5f + ((Component)this).transform.right / 2f + sideLedgeDetectorsLength2 + secondSideLedgeDetectorsHeight2 + sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.5f + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 4f + ((Component)this).transform.right / 2f + sideLedgeDetectorsLength2 - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight2 + sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward / 2f - ((Component)this).transform.up - ((Component)this).transform.right / 2f - sideLedgeDetectorsLength2 + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 4f + ((Component)this).transform.right / 2f + sideLedgeDetectorsLength2 - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight2 + sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2)) && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.1f + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.1f - ((Component)this).transform.right / 2f - sideLedgeDetectorsLength2 + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { fifthTest = true; } else if (((Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.05f + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward * 0.25f - ((Component)this).transform.up * 0.05f + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.15f + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward * 0.25f - ((Component)this).transform.up * 0.15f + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.25f + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward * 0.25f - ((Component)this).transform.up * 0.25f + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.05f + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward * 0.5f - ((Component)this).transform.up * 0.05f + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.15f + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward * 0.5f - ((Component)this).transform.up * 0.15f + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.25f + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward * 0.5f - ((Component)this).transform.up * 0.25f + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f)) && !Physics.Linecast(new Vector3((((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / 4.5454545f).x, ((Component)this).transform.position.y + ((Component)this).transform.up.y * 0.5f, (((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / 4.5454545f).z), new Vector3((((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / 4.5454545f).x, ((Component)this).transform.position.y - ((Component)this).transform.up.y * 1.5f - spaceBelowNeededToGrabBackOnHeight2.y, (((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / 4.5454545f).z), ref hit, LayerMask.op_Implicit(collisionLayers))) { fifthTest = true; } else { fifthTest = false; } if (!turnBack && (Input.GetAxisRaw("Horizontal") != 0f || Input.GetAxisRaw("Vertical") != 0f) && !wallIsClimbable && !Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.up * 0.5f, ((Component)this).transform.position + ((Component)this).transform.forward / 1.5f + ((Component)this).transform.up * 0.5f + spaceInFrontNeededToGrabBackOn2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !back2 && !currentlyClimbingWall && !Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 4f + ((Component)this).transform.up * 0.5f + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 1.5f - spaceBelowNeededToGrabBackOnHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 1.5f + ((Component)this).transform.up * 0.5f + spaceInFrontNeededToGrabBackOn2, ((Component)this).transform.position + ((Component)this).transform.forward / 1.5f - ((Component)this).transform.up * 1.5f + spaceInFrontNeededToGrabBackOn2 - spaceBelowNeededToGrabBackOnHeight2, ref hit, LayerMask.op_Implicit(collisionLayers))) { if (((Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.1f + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.1f - ((Component)this).transform.right / 4f + sideLedgeDetectorsLength2 + firstSideLedgeDetectorsHeight2 - sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.1f - ((Component)this).transform.right / 4f + sideLedgeDetectorsLength2 + firstSideLedgeDetectorsHeight2 - sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.1f + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.5f + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.5f - ((Component)this).transform.right / 4f + sideLedgeDetectorsLength2 + secondSideLedgeDetectorsHeight2 - sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 3f - ((Component)this).transform.up * 0.5f + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.5f + ((Component)this).transform.right / 4f - sideLedgeDetectorsLength2 + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.5f - ((Component)this).transform.right / 4f + sideLedgeDetectorsLength2 + secondSideLedgeDetectorsHeight2 - sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.5f + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.right / 4f + sideLedgeDetectorsLength2 - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight2 - sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 3f - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward / 4f - ((Component)this).transform.up + ((Component)this).transform.right / 4f - sideLedgeDetectorsLength2 + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.right / 4f + sideLedgeDetectorsLength2 - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight2 - sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2)) && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 3f - ((Component)this).transform.up * 0.1f + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.1f + ((Component)this).transform.right / 4f - sideLedgeDetectorsLength2 + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { fifthTest = true; if (Physics.Raycast(((Component)this).transform.position - ((Component)this).transform.up / 9f + ((Component)this).transform.forward, -((Component)this).transform.forward / 4f, ref hit, 3f, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { rotationHit = -((RaycastHit)(ref hit)).normal; backRotation = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); normalRotation = Quaternion.LookRotation(((RaycastHit)(ref hit)).normal); } else if (Physics.Raycast(((Component)this).transform.position - ((Component)this).transform.up / 20f + ((Component)this).transform.forward, -((Component)this).transform.forward / 4f, ref hit, 3f, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { rotationHit = -((RaycastHit)(ref hit)).normal; backRotation = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); normalRotation = Quaternion.LookRotation(((RaycastHit)(ref hit)).normal); } else { rotationHit = Vector3.zero; backRotation = Quaternion.LookRotation(-((Component)this).transform.forward, Vector3.up); normalRotation = Quaternion.LookRotation(((Component)this).transform.forward, Vector3.up); } if (Physics.Linecast(((Component)this).transform.position - ((Component)this).transform.up * 0.1f + normalRotation * Vector3.forward, ((Component)this).transform.position - ((Component)this).transform.up * 0.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position - ((Component)this).transform.up * 0.1f + normalRotation * Vector3.forward + normalRotation * Vector3.right / 3f + normalRotation * Vector3.right * sideNoSurfaceDetectorsWidthTurnBack2, ((Component)this).transform.position - ((Component)this).transform.up * 0.1f + normalRotation * Vector3.right / 3f + normalRotation * Vector3.right * sideNoSurfaceDetectorsWidthTurnBack2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position - ((Component)this).transform.up * 0.1f + normalRotation * Vector3.forward + normalRotation * -Vector3.right / 3f + normalRotation * -Vector3.right * sideNoSurfaceDetectorsWidthTurnBack2, ((Component)this).transform.position - ((Component)this).transform.up * 0.1f + normalRotation * -Vector3.right / 3f + normalRotation * -Vector3.right * sideNoSurfaceDetectorsWidthTurnBack2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position - ((Component)this).transform.up * 0.1f + normalRotation * Vector3.forward, ((Component)this).transform.position - ((Component)this).transform.up * 0.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { if (snapToCenterOfObject2) { backPoint = new Vector3(((RaycastHit)(ref hit)).point.x + (normalRotation * Vector3.forward).x * 1.4f - ((RaycastHit)(ref hit)).normal.x, ((RaycastHit)(ref hit)).point.y - 1.15f, ((RaycastHit)(ref hit)).point.z + (normalRotation * Vector3.forward).z * 1.4f - ((RaycastHit)(ref hit)).normal.z); playerPosY = backPoint.y - topNoSurfaceDetectorHeight2.y; } else { backPoint = new Vector3(((RaycastHit)(ref hit)).point.x + (normalRotation * Vector3.forward).x * 1.2f - ((RaycastHit)(ref hit)).normal.x, ((RaycastHit)(ref hit)).point.y - 1.15f, ((RaycastHit)(ref hit)).point.z + (normalRotation * Vector3.forward).z * 1.2f - ((RaycastHit)(ref hit)).normal.z); playerPosY = backPoint.y - topNoSurfaceDetectorHeight2.y + 0.13f; } turnBackPoint = backPoint; if (!snappingToCenter && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && !wallIsClimbable && !currentlyClimbingWall) { centerPoint = new Vector3(((RaycastHit)(ref hit)).transform.position.x - ((Component)this).transform.position.x + (((Component)this).transform.position.x - ((RaycastHit)(ref hit)).point.x), 0f, ((RaycastHit)(ref hit)).transform.position.z - ((Component)this).transform.position.z + (((Component)this).transform.position.z - ((RaycastHit)(ref hit)).point.z)); } if (snapToCenterOfObject2) { snappingToCenter = true; } turnBackRight = true; turnBackLeft = false; turnBackMiddle = false; turnBack = true; } } else if (((Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.1f + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.1f + ((Component)this).transform.right / 4f + sideLedgeDetectorsLength2 + firstSideLedgeDetectorsHeight2 + sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.1f + ((Component)this).transform.right / 4f + sideLedgeDetectorsLength2 + firstSideLedgeDetectorsHeight2 + sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.1f + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.5f + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.5f + ((Component)this).transform.right / 4f + sideLedgeDetectorsLength2 + secondSideLedgeDetectorsHeight2 + sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 3f - ((Component)this).transform.up * 0.5f + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.5f - ((Component)this).transform.right / 4f - sideLedgeDetectorsLength2 + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f - ((Component)this).transform.up * 0.5f + ((Component)this).transform.right / 4f + sideLedgeDetectorsLength2 + secondSideLedgeDetectorsHeight2 + sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.5f + secondSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 2f + ((Component)this).transform.right / 4f + sideLedgeDetectorsLength2 - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight2 + sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 3f - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward / 4f - ((Component)this).transform.up - ((Component)this).transform.right / 4f - sideLedgeDetectorsLength2 + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 2f + ((Component)this).transform.right / 4f + sideLedgeDetectorsLength2 - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight2 + sideLedgeDetectorsWidth2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position + ((Component)this).transform.forward / 4f - ((Component)this).transform.up + thirdSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2)) && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 3f - ((Component)this).transform.up * 0.1f + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward / 4f - ((Component)this).transform.up * 0.1f - ((Component)this).transform.right / 4f - sideLedgeDetectorsLength2 + firstSideLedgeDetectorsHeight2 + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { fifthTest = true; if (Physics.Raycast(((Component)this).transform.position - ((Component)this).transform.up / 9f + ((Component)this).transform.forward, -((Component)this).transform.forward / 4f, ref hit, 3f, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { rotationHit = -((RaycastHit)(ref hit)).normal; backRotation = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); normalRotation = Quaternion.LookRotation(((RaycastHit)(ref hit)).normal); } else if (Physics.Raycast(((Component)this).transform.position - ((Component)this).transform.up / 20f + ((Component)this).transform.forward, -((Component)this).transform.forward / 4f, ref hit, 3f, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { rotationHit = -((RaycastHit)(ref hit)).normal; backRotation = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); normalRotation = Quaternion.LookRotation(((RaycastHit)(ref hit)).normal); } else { rotationHit = Vector3.zero; backRotation = Quaternion.LookRotation(-((Component)this).transform.forward, Vector3.up); normalRotation = Quaternion.LookRotation(((Component)this).transform.forward, Vector3.up); } if (Physics.Linecast(((Component)this).transform.position - ((Component)this).transform.up * 0.1f + normalRotation * Vector3.forward, ((Component)this).transform.position - ((Component)this).transform.up * 0.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position - ((Component)this).transform.up * 0.1f + normalRotation * Vector3.forward + normalRotation * Vector3.right / 3f + normalRotation * Vector3.right * sideNoSurfaceDetectorsWidthTurnBack2, ((Component)this).transform.position - ((Component)this).transform.up * 0.1f + normalRotation * Vector3.right / 3f + normalRotation * Vector3.right * sideNoSurfaceDetectorsWidthTurnBack2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position - ((Component)this).transform.up * 0.1f + normalRotation * Vector3.forward + normalRotation * -Vector3.right / 3f + normalRotation * -Vector3.right * sideNoSurfaceDetectorsWidthTurnBack2, ((Component)this).transform.position - ((Component)this).transform.up * 0.1f + normalRotation * -Vector3.right / 3f + normalRotation * -Vector3.right * sideNoSurfaceDetectorsWidthTurnBack2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position - ((Component)this).transform.up * 0.1f + normalRotation * Vector3.forward, ((Component)this).transform.position - ((Component)this).transform.up * 0.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { if (snapToCenterOfObject2) { backPoint = new Vector3(((RaycastHit)(ref hit)).point.x + (normalRotation * Vector3.forward).x * 1.4f - ((RaycastHit)(ref hit)).normal.x, ((RaycastHit)(ref hit)).point.y - 1.15f, ((RaycastHit)(ref hit)).point.z + (normalRotation * Vector3.forward).z * 1.4f - ((RaycastHit)(ref hit)).normal.z); playerPosY = backPoint.y - topNoSurfaceDetectorHeight2.y; } else { backPoint = new Vector3(((RaycastHit)(ref hit)).point.x + (normalRotation * Vector3.forward).x * 1.2f - ((RaycastHit)(ref hit)).normal.x, ((RaycastHit)(ref hit)).point.y - 1.15f, ((RaycastHit)(ref hit)).point.z + (normalRotation * Vector3.forward).z * 1.2f - ((RaycastHit)(ref hit)).normal.z); playerPosY = backPoint.y - topNoSurfaceDetectorHeight2.y + 0.13f; } turnBackPoint = backPoint; if (!snappingToCenter && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && !wallIsClimbable && !currentlyClimbingWall) { centerPoint = new Vector3(((RaycastHit)(ref hit)).transform.position.x - ((Component)this).transform.position.x + (((Component)this).transform.position.x - ((RaycastHit)(ref hit)).point.x), 0f, ((RaycastHit)(ref hit)).transform.position.z - ((Component)this).transform.position.z + (((Component)this).transform.position.z - ((RaycastHit)(ref hit)).point.z)); } if (snapToCenterOfObject2) { snappingToCenter = true; } turnBackLeft = true; turnBackRight = false; turnBackMiddle = false; turnBack = true; } } else if (((Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 3.5f - ((Component)this).transform.up * 0.05f + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward * 0.25f - ((Component)this).transform.up * 0.05f + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 3.5f - ((Component)this).transform.up * 0.15f + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward * 0.25f - ((Component)this).transform.up * 0.15f + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 3.5f - ((Component)this).transform.up * 0.25f + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward * 0.25f - ((Component)this).transform.up * 0.25f + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 3.5f - ((Component)this).transform.up * 0.05f + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward * 0.5f - ((Component)this).transform.up * 0.05f + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 3.5f - ((Component)this).transform.up * 0.15f + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward * 0.5f - ((Component)this).transform.up * 0.15f + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f) || (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.forward / 3.5f - ((Component)this).transform.up * 0.25f + spaceBelowNeededToGrabBackOnForward2, ((Component)this).transform.position - ((Component)this).transform.forward * 0.5f - ((Component)this).transform.up * 0.25f + spaceBelowNeededToGrabBackOnForward2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f > 45f)) && !Physics.Linecast(new Vector3((((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / 4.5454545f).x, ((Component)this).transform.position.y + ((Component)this).transform.up.y * 0.5f, (((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / 4.5454545f).z), new Vector3((((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / 4.5454545f).x, ((Component)this).transform.position.y - ((Component)this).transform.up.y * 1.5f - spaceBelowNeededToGrabBackOnHeight2.y, (((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / 4.5454545f).z), ref hit, LayerMask.op_Implicit(collisionLayers))) { fifthTest = true; if (Physics.Raycast(((Component)this).transform.position - ((Component)this).transform.up / 9f + ((Component)this).transform.forward, -((Component)this).transform.forward / 4f, ref hit, 3f, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { rotationHit = -((RaycastHit)(ref hit)).normal; backRotation = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); normalRotation = Quaternion.LookRotation(((RaycastHit)(ref hit)).normal); } else if (Physics.Raycast(((Component)this).transform.position - ((Component)this).transform.up / 20f + ((Component)this).transform.forward, -((Component)this).transform.forward / 4f, ref hit, 3f, LayerMask.op_Implicit(collisionLayers)) && Mathf.Acos(Mathf.Clamp(((RaycastHit)(ref hit)).normal.y, -1f, 1f)) * 57.2958f >= 45f) { rotationHit = -((RaycastHit)(ref hit)).normal; backRotation = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); normalRotation = Quaternion.LookRotation(((RaycastHit)(ref hit)).normal); } else { rotationHit = Vector3.zero; backRotation = Quaternion.LookRotation(-((Component)this).transform.forward, Vector3.up); normalRotation = Quaternion.LookRotation(((Component)this).transform.forward, Vector3.up); } if (Physics.Linecast(((Component)this).transform.position - ((Component)this).transform.up * 0.1f + normalRotation * Vector3.forward, ((Component)this).transform.position - ((Component)this).transform.up * 0.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position - ((Component)this).transform.up * 0.1f + normalRotation * Vector3.forward + normalRotation * Vector3.right / 3f + normalRotation * Vector3.right * sideNoSurfaceDetectorsWidthTurnBack2, ((Component)this).transform.position - ((Component)this).transform.up * 0.1f + normalRotation * Vector3.right / 3f + normalRotation * Vector3.right * sideNoSurfaceDetectorsWidthTurnBack2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position - ((Component)this).transform.up * 0.1f + normalRotation * Vector3.forward + normalRotation * -Vector3.right / 3f + normalRotation * -Vector3.right * sideNoSurfaceDetectorsWidthTurnBack2, ((Component)this).transform.position - ((Component)this).transform.up * 0.1f + normalRotation * -Vector3.right / 3f + normalRotation * -Vector3.right * sideNoSurfaceDetectorsWidthTurnBack2, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Physics.Linecast(((Component)this).transform.position - ((Component)this).transform.up * 0.1f + normalRotation * Vector3.forward, ((Component)this).transform.position - ((Component)this).transform.up * 0.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { if (snapToCenterOfObject2) { backPoint = new Vector3(((RaycastHit)(ref hit)).point.x + (normalRotation * Vector3.forward).x * 1.4f - ((RaycastHit)(ref hit)).normal.x, ((RaycastHit)(ref hit)).point.y - 1.15f, ((RaycastHit)(ref hit)).point.z + (normalRotation * Vector3.forward).z * 1.4f - ((RaycastHit)(ref hit)).normal.z); playerPosY = backPoint.y - topNoSurfaceDetectorHeight2.y; } else { backPoint = new Vector3(((RaycastHit)(ref hit)).point.x + (normalRotation * Vector3.forward).x * 1.2f - ((RaycastHit)(ref hit)).normal.x, ((RaycastHit)(ref hit)).point.y - 1.15f, ((RaycastHit)(ref hit)).point.z + (normalRotation * Vector3.forward).z * 1.2f - ((RaycastHit)(ref hit)).normal.z); playerPosY = backPoint.y - topNoSurfaceDetectorHeight2.y + 0.13f; } turnBackPoint = backPoint; if (!snappingToCenter && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && !wallIsClimbable && !currentlyClimbingWall) { centerPoint = new Vector3(((RaycastHit)(ref hit)).transform.position.x - ((Component)this).transform.position.x + (((Component)this).transform.position.x - ((RaycastHit)(ref hit)).point.x), 0f, ((RaycastHit)(ref hit)).transform.position.z - ((Component)this).transform.position.z + (((Component)this).transform.position.z - ((RaycastHit)(ref hit)).point.z)); } if (snapToCenterOfObject2) { snappingToCenter = true; } turnBackMiddle = true; turnBackLeft = false; turnBackRight = false; turnBack = true; } } else { turnBackMiddle = false; turnBackLeft = false; turnBackRight = false; turnBack = false; } } if (turnBack) { if ((Object)(object)animator != (Object)null) { AnimatorStateInfo currentAnimatorStateInfo = animator.GetCurrentAnimatorStateInfo(0); if (!((AnimatorStateInfo)(ref currentAnimatorStateInfo)).IsName("Climbing")) { animator.CrossFade("Climbing", 0f, -1, 0f); } } if (allowGrabbingOnAfterWalkingOffLedge2 && (turnBackMiddle || turnBackLeft || turnBackRight)) { if (!stayUpright2) { if (((Vector3.Distance(((Component)this).transform.position, new Vector3(turnBackPoint.x, playerPosY, turnBackPoint.z)) > 0.3f && !snapToCenterOfObject2) || (Vector3.Distance(((Component)this).transform.position, new Vector3(turnBackPoint.x, playerPosY + 0.012f, turnBackPoint.z)) > 0.3f && snapToCenterOfObject2) || Quaternion.Angle(((Component)this).transform.rotation, backRotation) > 0.1f) && ((!snapToCenterOfObject2 && turnBackTimer < 0.5f) || turnBackTimer < 0.2f)) { turnBackTimer += 0.02f; back2 = false; currentlyClimbingWall = false; if (!snapToCenterOfObject2) { if (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Collider)((Component)this).GetComponent()).enabled) { ((Component)this).transform.position = Vector3.Lerp(((Component)this).transform.position, new Vector3(turnBackPoint.x, playerPosY, turnBackPoint.z), 10f * Time.deltaTime); } else if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { ((Component)this).transform.position = Vector3.Slerp(((Component)this).transform.position, new Vector3(turnBackPoint.x, playerPosY, turnBackPoint.z), 10f * Time.deltaTime); } } else { ((Component)this).transform.position = Vector3.Slerp(((Component)this).transform.position, new Vector3(turnBackPoint.x, playerPosY + 0.012f, turnBackPoint.z), 10f * Time.deltaTime); } if (!snapToCenterOfObject2 && Quaternion.Angle(((Component)this).transform.rotation, backRotation) < 45f) { if (reachedLeftPoint) { turnBackPoint += ((Component)this).transform.right / 30f; } if (reachedRightPoint) { turnBackPoint -= ((Component)this).transform.right / 30f; } } rotationNormal = backRotation; ((Component)this).transform.rotation = Quaternion.Slerp(((Component)this).transform.rotation, backRotation, 12f * Time.deltaTime); playerPosXZ = ((Component)this).transform.position; } else { turnBackTimer = 0f; back2 = true; turnBack = false; } } else if (((Vector3.Distance(((Component)this).transform.position, new Vector3(turnBackPoint.x, playerPosY, turnBackPoint.z)) > 0.3f && !snapToCenterOfObject2) || (Vector3.Distance(((Component)this).transform.position, new Vector3(turnBackPoint.x, playerPosY + 0.012f, turnBackPoint.z)) > 0.3f && snapToCenterOfObject2) || Quaternion.Angle(((Component)this).transform.rotation, backRotation) > 0.1f) && ((!snapToCenterOfObject2 && turnBackTimer < 0.5f) || turnBackTimer < 0.2f)) { turnBackTimer += 0.02f; back2 = false; currentlyClimbingWall = false; if (!snapToCenterOfObject2) { if (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Collider)((Component)this).GetComponent()).enabled) { ((Component)this).transform.position = Vector3.Lerp(((Component)this).transform.position, new Vector3(turnBackPoint.x, playerPosY, turnBackPoint.z), 10f * Time.deltaTime); } else if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { ((Component)this).transform.position = Vector3.Slerp(((Component)this).transform.position, new Vector3(turnBackPoint.x, playerPosY, turnBackPoint.z), 10f * Time.deltaTime); } } else { ((Component)this).transform.position = Vector3.Slerp(((Component)this).transform.position, new Vector3(turnBackPoint.x, playerPosY + 0.012f, turnBackPoint.z), 10f * Time.deltaTime); } if (!snapToCenterOfObject2 && Quaternion.Angle(((Component)this).transform.rotation, backRotation) < 45f) { if (reachedLeftPoint) { turnBackPoint += ((Component)this).transform.right / 30f; } if (reachedRightPoint) { turnBackPoint -= ((Component)this).transform.right / 30f; } } rotationNormal = backRotation; ((Component)this).transform.rotation = Quaternion.Slerp(((Component)this).transform.rotation, backRotation, 12f * Time.deltaTime); playerPosXZ = ((Component)this).transform.position; } else { turnBackTimer = 0f; back2 = true; turnBack = false; } } else { back2 = false; turnBack = false; } } if (!allowGrabbingOnAfterWalkingOffLedge2) { return; } if (turnBack || back2) { climbDirection = Vector3.zero; moveDirection = Vector3.zero; } if (!back2) { return; } turnBack = false; if (!currentlyClimbingWall) { if (!snapToCenterOfObject2) { ((Component)this).transform.position = new Vector3(playerPosXZ.x, ((Component)this).transform.position.y, playerPosXZ.z); } rotationNormal = backRotation; ((Component)this).transform.rotation = backRotation; currentlyClimbingWall = true; } back2 = false; } private void CheckClimbableEdges() { //IL_0098: Unknown result type (might be due to invalid IL or missing references) //IL_009d: Unknown result type (might be due to invalid IL or missing references) //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_00a5: Unknown result type (might be due to invalid IL or missing references) //IL_0029: Unknown result type (might be due to invalid IL or missing references) //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_0036: Unknown result type (might be due to invalid IL or missing references) //IL_0042: Unknown result type (might be due to invalid IL or missing references) //IL_0047: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_0066: Unknown result type (might be due to invalid IL or missing references) //IL_006b: Unknown result type (might be due to invalid IL or missing references) //IL_0070: Unknown result type (might be due to invalid IL or missing references) //IL_0075: Unknown result type (might be due to invalid IL or missing references) //IL_01bf: Unknown result type (might be due to invalid IL or missing references) //IL_01c5: Unknown result type (might be due to invalid IL or missing references) //IL_01ca: Unknown result type (might be due to invalid IL or missing references) //IL_01d5: Unknown result type (might be due to invalid IL or missing references) //IL_01df: Unknown result type (might be due to invalid IL or missing references) //IL_01e4: Unknown result type (might be due to invalid IL or missing references) //IL_01ef: Unknown result type (might be due to invalid IL or missing references) //IL_01f5: Unknown result type (might be due to invalid IL or missing references) //IL_01fa: Unknown result type (might be due to invalid IL or missing references) //IL_0205: Unknown result type (might be due to invalid IL or missing references) //IL_0216: Unknown result type (might be due to invalid IL or missing references) //IL_021b: Unknown result type (might be due to invalid IL or missing references) //IL_0226: Unknown result type (might be due to invalid IL or missing references) //IL_0230: Unknown result type (might be due to invalid IL or missing references) //IL_0235: Unknown result type (might be due to invalid IL or missing references) //IL_0241: Unknown result type (might be due to invalid IL or missing references) //IL_00c2: Unknown result type (might be due to invalid IL or missing references) //IL_00c7: Unknown result type (might be due to invalid IL or missing references) //IL_00ca: Unknown result type (might be due to invalid IL or missing references) //IL_00e6: Unknown result type (might be due to invalid IL or missing references) //IL_00eb: Unknown result type (might be due to invalid IL or missing references) //IL_00f0: Unknown result type (might be due to invalid IL or missing references) //IL_00f5: Unknown result type (might be due to invalid IL or missing references) //IL_0427: Unknown result type (might be due to invalid IL or missing references) //IL_042d: Unknown result type (might be due to invalid IL or missing references) //IL_0432: Unknown result type (might be due to invalid IL or missing references) //IL_043d: Unknown result type (might be due to invalid IL or missing references) //IL_0447: Unknown result type (might be due to invalid IL or missing references) //IL_044c: Unknown result type (might be due to invalid IL or missing references) //IL_0457: Unknown result type (might be due to invalid IL or missing references) //IL_045d: Unknown result type (might be due to invalid IL or missing references) //IL_0462: Unknown result type (might be due to invalid IL or missing references) //IL_046d: Unknown result type (might be due to invalid IL or missing references) //IL_047e: Unknown result type (might be due to invalid IL or missing references) //IL_0483: Unknown result type (might be due to invalid IL or missing references) //IL_048e: Unknown result type (might be due to invalid IL or missing references) //IL_0498: Unknown result type (might be due to invalid IL or missing references) //IL_049d: Unknown result type (might be due to invalid IL or missing references) //IL_04a9: Unknown result type (might be due to invalid IL or missing references) //IL_025b: Unknown result type (might be due to invalid IL or missing references) //IL_0261: Unknown result type (might be due to invalid IL or missing references) //IL_0266: Unknown result type (might be due to invalid IL or missing references) //IL_0271: Unknown result type (might be due to invalid IL or missing references) //IL_027b: Unknown result type (might be due to invalid IL or missing references) //IL_0280: Unknown result type (might be due to invalid IL or missing references) //IL_0286: Unknown result type (might be due to invalid IL or missing references) //IL_028b: Unknown result type (might be due to invalid IL or missing references) //IL_0296: Unknown result type (might be due to invalid IL or missing references) //IL_02a0: Unknown result type (might be due to invalid IL or missing references) //IL_02a5: Unknown result type (might be due to invalid IL or missing references) //IL_02b0: Unknown result type (might be due to invalid IL or missing references) //IL_02b6: Unknown result type (might be due to invalid IL or missing references) //IL_02bb: Unknown result type (might be due to invalid IL or missing references) //IL_02c6: Unknown result type (might be due to invalid IL or missing references) //IL_02d0: Unknown result type (might be due to invalid IL or missing references) //IL_02d5: Unknown result type (might be due to invalid IL or missing references) //IL_02db: Unknown result type (might be due to invalid IL or missing references) //IL_02e0: Unknown result type (might be due to invalid IL or missing references) //IL_02eb: Unknown result type (might be due to invalid IL or missing references) //IL_02fc: Unknown result type (might be due to invalid IL or missing references) //IL_0301: Unknown result type (might be due to invalid IL or missing references) //IL_030c: Unknown result type (might be due to invalid IL or missing references) //IL_0316: Unknown result type (might be due to invalid IL or missing references) //IL_031b: Unknown result type (might be due to invalid IL or missing references) //IL_0327: Unknown result type (might be due to invalid IL or missing references) //IL_0118: Unknown result type (might be due to invalid IL or missing references) //IL_011d: Unknown result type (might be due to invalid IL or missing references) //IL_0121: Unknown result type (might be due to invalid IL or missing references) //IL_0137: Unknown result type (might be due to invalid IL or missing references) //IL_013c: Unknown result type (might be due to invalid IL or missing references) //IL_0141: Unknown result type (might be due to invalid IL or missing references) //IL_0146: Unknown result type (might be due to invalid IL or missing references) //IL_0341: Unknown result type (might be due to invalid IL or missing references) //IL_0347: Unknown result type (might be due to invalid IL or missing references) //IL_034c: Unknown result type (might be due to invalid IL or missing references) //IL_0357: Unknown result type (might be due to invalid IL or missing references) //IL_0361: Unknown result type (might be due to invalid IL or missing references) //IL_0366: Unknown result type (might be due to invalid IL or missing references) //IL_036c: Unknown result type (might be due to invalid IL or missing references) //IL_0371: Unknown result type (might be due to invalid IL or missing references) //IL_037c: Unknown result type (might be due to invalid IL or missing references) //IL_0386: Unknown result type (might be due to invalid IL or missing references) //IL_038b: Unknown result type (might be due to invalid IL or missing references) //IL_0396: Unknown result type (might be due to invalid IL or missing references) //IL_039c: Unknown result type (might be due to invalid IL or missing references) //IL_03a1: Unknown result type (might be due to invalid IL or missing references) //IL_03ac: Unknown result type (might be due to invalid IL or missing references) //IL_03b6: Unknown result type (might be due to invalid IL or missing references) //IL_03bb: Unknown result type (might be due to invalid IL or missing references) //IL_03c1: Unknown result type (might be due to invalid IL or missing references) //IL_03c6: Unknown result type (might be due to invalid IL or missing references) //IL_03d1: Unknown result type (might be due to invalid IL or missing references) //IL_03e2: Unknown result type (might be due to invalid IL or missing references) //IL_03e7: Unknown result type (might be due to invalid IL or missing references) //IL_03f2: Unknown result type (might be due to invalid IL or missing references) //IL_03fc: Unknown result type (might be due to invalid IL or missing references) //IL_0401: Unknown result type (might be due to invalid IL or missing references) //IL_040d: Unknown result type (might be due to invalid IL or missing references) //IL_0169: Unknown result type (might be due to invalid IL or missing references) //IL_016e: Unknown result type (might be due to invalid IL or missing references) //IL_0172: Unknown result type (might be due to invalid IL or missing references) //IL_017d: Unknown result type (might be due to invalid IL or missing references) //IL_0182: Unknown result type (might be due to invalid IL or missing references) //IL_0197: Unknown result type (might be due to invalid IL or missing references) //IL_019c: Unknown result type (might be due to invalid IL or missing references) //IL_01a1: Unknown result type (might be due to invalid IL or missing references) //IL_01a6: Unknown result type (might be due to invalid IL or missing references) //IL_04e3: Unknown result type (might be due to invalid IL or missing references) //IL_04e9: Unknown result type (might be due to invalid IL or missing references) //IL_04ee: Unknown result type (might be due to invalid IL or missing references) //IL_04f9: Unknown result type (might be due to invalid IL or missing references) //IL_0503: Unknown result type (might be due to invalid IL or missing references) //IL_0508: Unknown result type (might be due to invalid IL or missing references) //IL_050e: Unknown result type (might be due to invalid IL or missing references) //IL_0513: Unknown result type (might be due to invalid IL or missing references) //IL_051e: Unknown result type (might be due to invalid IL or missing references) //IL_0528: Unknown result type (might be due to invalid IL or missing references) //IL_052d: Unknown result type (might be due to invalid IL or missing references) //IL_0538: Unknown result type (might be due to invalid IL or missing references) //IL_053e: Unknown result type (might be due to invalid IL or missing references) //IL_0543: Unknown result type (might be due to invalid IL or missing references) //IL_054e: Unknown result type (might be due to invalid IL or missing references) //IL_0558: Unknown result type (might be due to invalid IL or missing references) //IL_055d: Unknown result type (might be due to invalid IL or missing references) //IL_0563: Unknown result type (might be due to invalid IL or missing references) //IL_0568: Unknown result type (might be due to invalid IL or missing references) //IL_0573: Unknown result type (might be due to invalid IL or missing references) //IL_0584: Unknown result type (might be due to invalid IL or missing references) //IL_0589: Unknown result type (might be due to invalid IL or missing references) //IL_0594: Unknown result type (might be due to invalid IL or missing references) //IL_059e: Unknown result type (might be due to invalid IL or missing references) //IL_05a3: Unknown result type (might be due to invalid IL or missing references) //IL_05af: Unknown result type (might be due to invalid IL or missing references) //IL_080b: Unknown result type (might be due to invalid IL or missing references) //IL_0811: Unknown result type (might be due to invalid IL or missing references) //IL_0816: Unknown result type (might be due to invalid IL or missing references) //IL_0821: Unknown result type (might be due to invalid IL or missing references) //IL_082b: Unknown result type (might be due to invalid IL or missing references) //IL_0830: Unknown result type (might be due to invalid IL or missing references) //IL_083b: Unknown result type (might be due to invalid IL or missing references) //IL_0841: Unknown result type (might be due to invalid IL or missing references) //IL_0846: Unknown result type (might be due to invalid IL or missing references) //IL_0851: Unknown result type (might be due to invalid IL or missing references) //IL_0862: Unknown result type (might be due to invalid IL or missing references) //IL_0867: Unknown result type (might be due to invalid IL or missing references) //IL_0872: Unknown result type (might be due to invalid IL or missing references) //IL_087c: Unknown result type (might be due to invalid IL or missing references) //IL_0881: Unknown result type (might be due to invalid IL or missing references) //IL_088d: Unknown result type (might be due to invalid IL or missing references) //IL_0a73: Unknown result type (might be due to invalid IL or missing references) //IL_0a79: Unknown result type (might be due to invalid IL or missing references) //IL_0a7e: Unknown result type (might be due to invalid IL or missing references) //IL_0a89: Unknown result type (might be due to invalid IL or missing references) //IL_0a93: Unknown result type (might be due to invalid IL or missing references) //IL_0a98: Unknown result type (might be due to invalid IL or missing references) //IL_0aa3: Unknown result type (might be due to invalid IL or missing references) //IL_0aa9: Unknown result type (might be due to invalid IL or missing references) //IL_0aae: Unknown result type (might be due to invalid IL or missing references) //IL_0ab9: Unknown result type (might be due to invalid IL or missing references) //IL_0aca: Unknown result type (might be due to invalid IL or missing references) //IL_0acf: Unknown result type (might be due to invalid IL or missing references) //IL_0ada: Unknown result type (might be due to invalid IL or missing references) //IL_0ae4: Unknown result type (might be due to invalid IL or missing references) //IL_0ae9: Unknown result type (might be due to invalid IL or missing references) //IL_0af5: Unknown result type (might be due to invalid IL or missing references) //IL_08a7: Unknown result type (might be due to invalid IL or missing references) //IL_08ad: Unknown result type (might be due to invalid IL or missing references) //IL_08b2: Unknown result type (might be due to invalid IL or missing references) //IL_08bd: Unknown result type (might be due to invalid IL or missing references) //IL_08c7: Unknown result type (might be due to invalid IL or missing references) //IL_08cc: Unknown result type (might be due to invalid IL or missing references) //IL_08d2: Unknown result type (might be due to invalid IL or missing references) //IL_08d7: Unknown result type (might be due to invalid IL or missing references) //IL_08e2: Unknown result type (might be due to invalid IL or missing references) //IL_08ec: Unknown result type (might be due to invalid IL or missing references) //IL_08f1: Unknown result type (might be due to invalid IL or missing references) //IL_08fc: Unknown result type (might be due to invalid IL or missing references) //IL_0902: Unknown result type (might be due to invalid IL or missing references) //IL_0907: Unknown result type (might be due to invalid IL or missing references) //IL_0912: Unknown result type (might be due to invalid IL or missing references) //IL_091c: Unknown result type (might be due to invalid IL or missing references) //IL_0921: Unknown result type (might be due to invalid IL or missing references) //IL_0927: Unknown result type (might be due to invalid IL or missing references) //IL_092c: Unknown result type (might be due to invalid IL or missing references) //IL_0937: Unknown result type (might be due to invalid IL or missing references) //IL_0948: Unknown result type (might be due to invalid IL or missing references) //IL_094d: Unknown result type (might be due to invalid IL or missing references) //IL_0958: Unknown result type (might be due to invalid IL or missing references) //IL_0962: Unknown result type (might be due to invalid IL or missing references) //IL_0967: Unknown result type (might be due to invalid IL or missing references) //IL_0973: Unknown result type (might be due to invalid IL or missing references) //IL_05e9: Unknown result type (might be due to invalid IL or missing references) //IL_05ef: Unknown result type (might be due to invalid IL or missing references) //IL_05f4: Unknown result type (might be due to invalid IL or missing references) //IL_05ff: Unknown result type (might be due to invalid IL or missing references) //IL_0609: Unknown result type (might be due to invalid IL or missing references) //IL_060e: Unknown result type (might be due to invalid IL or missing references) //IL_0614: Unknown result type (might be due to invalid IL or missing references) //IL_0619: Unknown result type (might be due to invalid IL or missing references) //IL_0624: Unknown result type (might be due to invalid IL or missing references) //IL_062e: Unknown result type (might be due to invalid IL or missing references) //IL_0633: Unknown result type (might be due to invalid IL or missing references) //IL_063e: Unknown result type (might be due to invalid IL or missing references) //IL_0644: Unknown result type (might be due to invalid IL or missing references) //IL_0649: Unknown result type (might be due to invalid IL or missing references) //IL_0654: Unknown result type (might be due to invalid IL or missing references) //IL_065e: Unknown result type (might be due to invalid IL or missing references) //IL_0663: Unknown result type (might be due to invalid IL or missing references) //IL_0669: Unknown result type (might be due to invalid IL or missing references) //IL_066e: Unknown result type (might be due to invalid IL or missing references) //IL_0679: Unknown result type (might be due to invalid IL or missing references) //IL_068a: Unknown result type (might be due to invalid IL or missing references) //IL_068f: Unknown result type (might be due to invalid IL or missing references) //IL_069a: Unknown result type (might be due to invalid IL or missing references) //IL_06a4: Unknown result type (might be due to invalid IL or missing references) //IL_06a9: Unknown result type (might be due to invalid IL or missing references) //IL_06b5: Unknown result type (might be due to invalid IL or missing references) //IL_070d: Unknown result type (might be due to invalid IL or missing references) //IL_0713: Unknown result type (might be due to invalid IL or missing references) //IL_098d: Unknown result type (might be due to invalid IL or missing references) //IL_0993: Unknown result type (might be due to invalid IL or missing references) //IL_0998: Unknown result type (might be due to invalid IL or missing references) //IL_09a3: Unknown result type (might be due to invalid IL or missing references) //IL_09ad: Unknown result type (might be due to invalid IL or missing references) //IL_09b2: Unknown result type (might be due to invalid IL or missing references) //IL_09b8: Unknown result type (might be due to invalid IL or missing references) //IL_09bd: Unknown result type (might be due to invalid IL or missing references) //IL_09c8: Unknown result type (might be due to invalid IL or missing references) //IL_09d2: Unknown result type (might be due to invalid IL or missing references) //IL_09d7: Unknown result type (might be due to invalid IL or missing references) //IL_09e2: Unknown result type (might be due to invalid IL or missing references) //IL_09e8: Unknown result type (might be due to invalid IL or missing references) //IL_09ed: Unknown result type (might be due to invalid IL or missing references) //IL_09f8: Unknown result type (might be due to invalid IL or missing references) //IL_0a02: Unknown result type (might be due to invalid IL or missing references) //IL_0a07: Unknown result type (might be due to invalid IL or missing references) //IL_0a0d: Unknown result type (might be due to invalid IL or missing references) //IL_0a12: Unknown result type (might be due to invalid IL or missing references) //IL_0a1d: Unknown result type (might be due to invalid IL or missing references) //IL_0a2e: Unknown result type (might be due to invalid IL or missing references) //IL_0a33: Unknown result type (might be due to invalid IL or missing references) //IL_0a3e: Unknown result type (might be due to invalid IL or missing references) //IL_0a48: Unknown result type (might be due to invalid IL or missing references) //IL_0a4d: Unknown result type (might be due to invalid IL or missing references) //IL_0a59: Unknown result type (might be due to invalid IL or missing references) //IL_0b2f: Unknown result type (might be due to invalid IL or missing references) //IL_0b35: Unknown result type (might be due to invalid IL or missing references) //IL_0b3a: Unknown result type (might be due to invalid IL or missing references) //IL_0b45: Unknown result type (might be due to invalid IL or missing references) //IL_0b4f: Unknown result type (might be due to invalid IL or missing references) //IL_0b54: Unknown result type (might be due to invalid IL or missing references) //IL_0b5a: Unknown result type (might be due to invalid IL or missing references) //IL_0b5f: Unknown result type (might be due to invalid IL or missing references) //IL_0b6a: Unknown result type (might be due to invalid IL or missing references) //IL_0b74: Unknown result type (might be due to invalid IL or missing references) //IL_0b79: Unknown result type (might be due to invalid IL or missing references) //IL_0b84: Unknown result type (might be due to invalid IL or missing references) //IL_0b8a: Unknown result type (might be due to invalid IL or missing references) //IL_0b8f: Unknown result type (might be due to invalid IL or missing references) //IL_0b9a: Unknown result type (might be due to invalid IL or missing references) //IL_0ba4: Unknown result type (might be due to invalid IL or missing references) //IL_0ba9: Unknown result type (might be due to invalid IL or missing references) //IL_0baf: Unknown result type (might be due to invalid IL or missing references) //IL_0bb4: Unknown result type (might be due to invalid IL or missing references) //IL_0bbf: Unknown result type (might be due to invalid IL or missing references) //IL_0bd0: Unknown result type (might be due to invalid IL or missing references) //IL_0bd5: Unknown result type (might be due to invalid IL or missing references) //IL_0be0: Unknown result type (might be due to invalid IL or missing references) //IL_0bea: Unknown result type (might be due to invalid IL or missing references) //IL_0bef: Unknown result type (might be due to invalid IL or missing references) //IL_0bfb: Unknown result type (might be due to invalid IL or missing references) //IL_0d5d: Unknown result type (might be due to invalid IL or missing references) //IL_0d63: Unknown result type (might be due to invalid IL or missing references) //IL_0d68: Unknown result type (might be due to invalid IL or missing references) //IL_0d73: Unknown result type (might be due to invalid IL or missing references) //IL_0d7d: Unknown result type (might be due to invalid IL or missing references) //IL_0d82: Unknown result type (might be due to invalid IL or missing references) //IL_0d8d: Unknown result type (might be due to invalid IL or missing references) //IL_0d93: Unknown result type (might be due to invalid IL or missing references) //IL_0d98: Unknown result type (might be due to invalid IL or missing references) //IL_0da3: Unknown result type (might be due to invalid IL or missing references) //IL_0db4: Unknown result type (might be due to invalid IL or missing references) //IL_0db9: Unknown result type (might be due to invalid IL or missing references) //IL_0dc4: Unknown result type (might be due to invalid IL or missing references) //IL_0dce: Unknown result type (might be due to invalid IL or missing references) //IL_0dd3: Unknown result type (might be due to invalid IL or missing references) //IL_0ddf: Unknown result type (might be due to invalid IL or missing references) //IL_0743: Unknown result type (might be due to invalid IL or missing references) //IL_0748: Unknown result type (might be due to invalid IL or missing references) //IL_075f: Unknown result type (might be due to invalid IL or missing references) //IL_0764: Unknown result type (might be due to invalid IL or missing references) //IL_076f: Unknown result type (might be due to invalid IL or missing references) //IL_0774: Unknown result type (might be due to invalid IL or missing references) //IL_0eb5: Unknown result type (might be due to invalid IL or missing references) //IL_0ebb: Unknown result type (might be due to invalid IL or missing references) //IL_0ec0: Unknown result type (might be due to invalid IL or missing references) //IL_0ecb: Unknown result type (might be due to invalid IL or missing references) //IL_0ed5: Unknown result type (might be due to invalid IL or missing references) //IL_0eda: Unknown result type (might be due to invalid IL or missing references) //IL_0ee0: Unknown result type (might be due to invalid IL or missing references) //IL_0ee5: Unknown result type (might be due to invalid IL or missing references) //IL_0ef0: Unknown result type (might be due to invalid IL or missing references) //IL_0efa: Unknown result type (might be due to invalid IL or missing references) //IL_0eff: Unknown result type (might be due to invalid IL or missing references) //IL_0f0a: Unknown result type (might be due to invalid IL or missing references) //IL_0f10: Unknown result type (might be due to invalid IL or missing references) //IL_0f15: Unknown result type (might be due to invalid IL or missing references) //IL_0f20: Unknown result type (might be due to invalid IL or missing references) //IL_0f2a: Unknown result type (might be due to invalid IL or missing references) //IL_0f2f: Unknown result type (might be due to invalid IL or missing references) //IL_0f35: Unknown result type (might be due to invalid IL or missing references) //IL_0f3a: Unknown result type (might be due to invalid IL or missing references) //IL_0f45: Unknown result type (might be due to invalid IL or missing references) //IL_0f56: Unknown result type (might be due to invalid IL or missing references) //IL_0f5b: Unknown result type (might be due to invalid IL or missing references) //IL_0f66: Unknown result type (might be due to invalid IL or missing references) //IL_0f70: Unknown result type (might be due to invalid IL or missing references) //IL_0f75: Unknown result type (might be due to invalid IL or missing references) //IL_0f81: Unknown result type (might be due to invalid IL or missing references) //IL_0df9: Unknown result type (might be due to invalid IL or missing references) //IL_0dff: Unknown result type (might be due to invalid IL or missing references) //IL_0e04: Unknown result type (might be due to invalid IL or missing references) //IL_0e0f: Unknown result type (might be due to invalid IL or missing references) //IL_0e19: Unknown result type (might be due to invalid IL or missing references) //IL_0e1e: Unknown result type (might be due to invalid IL or missing references) //IL_0e29: Unknown result type (might be due to invalid IL or missing references) //IL_0e2f: Unknown result type (might be due to invalid IL or missing references) //IL_0e34: Unknown result type (might be due to invalid IL or missing references) //IL_0e3f: Unknown result type (might be due to invalid IL or missing references) //IL_0e50: Unknown result type (might be due to invalid IL or missing references) //IL_0e55: Unknown result type (might be due to invalid IL or missing references) //IL_0e60: Unknown result type (might be due to invalid IL or missing references) //IL_0e6a: Unknown result type (might be due to invalid IL or missing references) //IL_0e6f: Unknown result type (might be due to invalid IL or missing references) //IL_0e7b: Unknown result type (might be due to invalid IL or missing references) //IL_0c35: Unknown result type (might be due to invalid IL or missing references) //IL_0c3b: Unknown result type (might be due to invalid IL or missing references) //IL_0c40: Unknown result type (might be due to invalid IL or missing references) //IL_0c4b: Unknown result type (might be due to invalid IL or missing references) //IL_0c55: Unknown result type (might be due to invalid IL or missing references) //IL_0c5a: Unknown result type (might be due to invalid IL or missing references) //IL_0c60: Unknown result type (might be due to invalid IL or missing references) //IL_0c65: Unknown result type (might be due to invalid IL or missing references) //IL_0c70: Unknown result type (might be due to invalid IL or missing references) //IL_0c7a: Unknown result type (might be due to invalid IL or missing references) //IL_0c7f: Unknown result type (might be due to invalid IL or missing references) //IL_0c8a: Unknown result type (might be due to invalid IL or missing references) //IL_0c90: Unknown result type (might be due to invalid IL or missing references) //IL_0c95: Unknown result type (might be due to invalid IL or missing references) //IL_0ca0: Unknown result type (might be due to invalid IL or missing references) //IL_0caa: Unknown result type (might be due to invalid IL or missing references) //IL_0caf: Unknown result type (might be due to invalid IL or missing references) //IL_0cb5: Unknown result type (might be due to invalid IL or missing references) //IL_0cba: Unknown result type (might be due to invalid IL or missing references) //IL_0cc5: Unknown result type (might be due to invalid IL or missing references) //IL_0cd6: Unknown result type (might be due to invalid IL or missing references) //IL_0cdb: Unknown result type (might be due to invalid IL or missing references) //IL_0ce6: Unknown result type (might be due to invalid IL or missing references) //IL_0cf0: Unknown result type (might be due to invalid IL or missing references) //IL_0cf5: Unknown result type (might be due to invalid IL or missing references) //IL_0d01: Unknown result type (might be due to invalid IL or missing references) //IL_0f9b: Unknown result type (might be due to invalid IL or missing references) //IL_0fa1: Unknown result type (might be due to invalid IL or missing references) //IL_0fa6: Unknown result type (might be due to invalid IL or missing references) //IL_0fb1: Unknown result type (might be due to invalid IL or missing references) //IL_0fbb: Unknown result type (might be due to invalid IL or missing references) //IL_0fc0: Unknown result type (might be due to invalid IL or missing references) //IL_0fc6: Unknown result type (might be due to invalid IL or missing references) //IL_0fcb: Unknown result type (might be due to invalid IL or missing references) //IL_0fd6: Unknown result type (might be due to invalid IL or missing references) //IL_0fe0: Unknown result type (might be due to invalid IL or missing references) //IL_0fe5: Unknown result type (might be due to invalid IL or missing references) //IL_0ff0: Unknown result type (might be due to invalid IL or missing references) //IL_0ff6: Unknown result type (might be due to invalid IL or missing references) //IL_0ffb: Unknown result type (might be due to invalid IL or missing references) //IL_1006: Unknown result type (might be due to invalid IL or missing references) //IL_1010: Unknown result type (might be due to invalid IL or missing references) //IL_1015: Unknown result type (might be due to invalid IL or missing references) //IL_101b: Unknown result type (might be due to invalid IL or missing references) //IL_1020: Unknown result type (might be due to invalid IL or missing references) //IL_102b: Unknown result type (might be due to invalid IL or missing references) //IL_103c: Unknown result type (might be due to invalid IL or missing references) //IL_1041: Unknown result type (might be due to invalid IL or missing references) //IL_104c: Unknown result type (might be due to invalid IL or missing references) //IL_1056: Unknown result type (might be due to invalid IL or missing references) //IL_105b: Unknown result type (might be due to invalid IL or missing references) //IL_1067: Unknown result type (might be due to invalid IL or missing references) //IL_10a1: Unknown result type (might be due to invalid IL or missing references) //IL_10a7: Unknown result type (might be due to invalid IL or missing references) //IL_10ac: Unknown result type (might be due to invalid IL or missing references) //IL_10b7: Unknown result type (might be due to invalid IL or missing references) //IL_10c1: Unknown result type (might be due to invalid IL or missing references) //IL_10c6: Unknown result type (might be due to invalid IL or missing references) //IL_10d1: Unknown result type (might be due to invalid IL or missing references) //IL_10d7: Unknown result type (might be due to invalid IL or missing references) //IL_10dc: Unknown result type (might be due to invalid IL or missing references) //IL_10e7: Unknown result type (might be due to invalid IL or missing references) //IL_10f8: Unknown result type (might be due to invalid IL or missing references) //IL_10fd: Unknown result type (might be due to invalid IL or missing references) //IL_1108: Unknown result type (might be due to invalid IL or missing references) //IL_1112: Unknown result type (might be due to invalid IL or missing references) //IL_1117: Unknown result type (might be due to invalid IL or missing references) //IL_1123: Unknown result type (might be due to invalid IL or missing references) //IL_1450: Unknown result type (might be due to invalid IL or missing references) //IL_1456: Unknown result type (might be due to invalid IL or missing references) //IL_11f9: Unknown result type (might be due to invalid IL or missing references) //IL_11ff: Unknown result type (might be due to invalid IL or missing references) //IL_1204: Unknown result type (might be due to invalid IL or missing references) //IL_120f: Unknown result type (might be due to invalid IL or missing references) //IL_1219: Unknown result type (might be due to invalid IL or missing references) //IL_121e: Unknown result type (might be due to invalid IL or missing references) //IL_1224: Unknown result type (might be due to invalid IL or missing references) //IL_1229: Unknown result type (might be due to invalid IL or missing references) //IL_1234: Unknown result type (might be due to invalid IL or missing references) //IL_123e: Unknown result type (might be due to invalid IL or missing references) //IL_1243: Unknown result type (might be due to invalid IL or missing references) //IL_124e: Unknown result type (might be due to invalid IL or missing references) //IL_1254: Unknown result type (might be due to invalid IL or missing references) //IL_1259: Unknown result type (might be due to invalid IL or missing references) //IL_1264: Unknown result type (might be due to invalid IL or missing references) //IL_126e: Unknown result type (might be due to invalid IL or missing references) //IL_1273: Unknown result type (might be due to invalid IL or missing references) //IL_1279: Unknown result type (might be due to invalid IL or missing references) //IL_127e: Unknown result type (might be due to invalid IL or missing references) //IL_1289: Unknown result type (might be due to invalid IL or missing references) //IL_129a: Unknown result type (might be due to invalid IL or missing references) //IL_129f: Unknown result type (might be due to invalid IL or missing references) //IL_12aa: Unknown result type (might be due to invalid IL or missing references) //IL_12b4: Unknown result type (might be due to invalid IL or missing references) //IL_12b9: Unknown result type (might be due to invalid IL or missing references) //IL_12c5: Unknown result type (might be due to invalid IL or missing references) //IL_113d: Unknown result type (might be due to invalid IL or missing references) //IL_1143: Unknown result type (might be due to invalid IL or missing references) //IL_1148: Unknown result type (might be due to invalid IL or missing references) //IL_1153: Unknown result type (might be due to invalid IL or missing references) //IL_115d: Unknown result type (might be due to invalid IL or missing references) //IL_1162: Unknown result type (might be due to invalid IL or missing references) //IL_116d: Unknown result type (might be due to invalid IL or missing references) //IL_1173: Unknown result type (might be due to invalid IL or missing references) //IL_1178: Unknown result type (might be due to invalid IL or missing references) //IL_1183: Unknown result type (might be due to invalid IL or missing references) //IL_1194: Unknown result type (might be due to invalid IL or missing references) //IL_1199: Unknown result type (might be due to invalid IL or missing references) //IL_11a4: Unknown result type (might be due to invalid IL or missing references) //IL_11ae: Unknown result type (might be due to invalid IL or missing references) //IL_11b3: Unknown result type (might be due to invalid IL or missing references) //IL_11bf: Unknown result type (might be due to invalid IL or missing references) //IL_15d9: Unknown result type (might be due to invalid IL or missing references) //IL_15df: Unknown result type (might be due to invalid IL or missing references) //IL_15e4: Unknown result type (might be due to invalid IL or missing references) //IL_15ef: Unknown result type (might be due to invalid IL or missing references) //IL_15f9: Unknown result type (might be due to invalid IL or missing references) //IL_15fe: Unknown result type (might be due to invalid IL or missing references) //IL_1609: Unknown result type (might be due to invalid IL or missing references) //IL_160f: Unknown result type (might be due to invalid IL or missing references) //IL_1614: Unknown result type (might be due to invalid IL or missing references) //IL_161f: Unknown result type (might be due to invalid IL or missing references) //IL_1630: Unknown result type (might be due to invalid IL or missing references) //IL_1635: Unknown result type (might be due to invalid IL or missing references) //IL_1640: Unknown result type (might be due to invalid IL or missing references) //IL_164a: Unknown result type (might be due to invalid IL or missing references) //IL_164f: Unknown result type (might be due to invalid IL or missing references) //IL_165b: Unknown result type (might be due to invalid IL or missing references) //IL_12df: Unknown result type (might be due to invalid IL or missing references) //IL_12e5: Unknown result type (might be due to invalid IL or missing references) //IL_12ea: Unknown result type (might be due to invalid IL or missing references) //IL_12f5: Unknown result type (might be due to invalid IL or missing references) //IL_12ff: Unknown result type (might be due to invalid IL or missing references) //IL_1304: Unknown result type (might be due to invalid IL or missing references) //IL_130a: Unknown result type (might be due to invalid IL or missing references) //IL_130f: Unknown result type (might be due to invalid IL or missing references) //IL_131a: Unknown result type (might be due to invalid IL or missing references) //IL_1324: Unknown result type (might be due to invalid IL or missing references) //IL_1329: Unknown result type (might be due to invalid IL or missing references) //IL_1334: Unknown result type (might be due to invalid IL or missing references) //IL_133a: Unknown result type (might be due to invalid IL or missing references) //IL_133f: Unknown result type (might be due to invalid IL or missing references) //IL_134a: Unknown result type (might be due to invalid IL or missing references) //IL_1354: Unknown result type (might be due to invalid IL or missing references) //IL_1359: Unknown result type (might be due to invalid IL or missing references) //IL_135f: Unknown result type (might be due to invalid IL or missing references) //IL_1364: Unknown result type (might be due to invalid IL or missing references) //IL_136f: Unknown result type (might be due to invalid IL or missing references) //IL_1380: Unknown result type (might be due to invalid IL or missing references) //IL_1385: Unknown result type (might be due to invalid IL or missing references) //IL_1390: Unknown result type (might be due to invalid IL or missing references) //IL_139a: Unknown result type (might be due to invalid IL or missing references) //IL_139f: Unknown result type (might be due to invalid IL or missing references) //IL_13ab: Unknown result type (might be due to invalid IL or missing references) //IL_13e0: Unknown result type (might be due to invalid IL or missing references) //IL_13e6: Unknown result type (might be due to invalid IL or missing references) //IL_13f1: Unknown result type (might be due to invalid IL or missing references) //IL_13fb: Unknown result type (might be due to invalid IL or missing references) //IL_1400: Unknown result type (might be due to invalid IL or missing references) //IL_140c: Unknown result type (might be due to invalid IL or missing references) //IL_1695: Unknown result type (might be due to invalid IL or missing references) //IL_169b: Unknown result type (might be due to invalid IL or missing references) //IL_16a0: Unknown result type (might be due to invalid IL or missing references) //IL_16ab: Unknown result type (might be due to invalid IL or missing references) //IL_16b5: Unknown result type (might be due to invalid IL or missing references) //IL_16ba: Unknown result type (might be due to invalid IL or missing references) //IL_16c0: Unknown result type (might be due to invalid IL or missing references) //IL_16c5: Unknown result type (might be due to invalid IL or missing references) //IL_16d0: Unknown result type (might be due to invalid IL or missing references) //IL_16da: Unknown result type (might be due to invalid IL or missing references) //IL_16df: Unknown result type (might be due to invalid IL or missing references) //IL_16ea: Unknown result type (might be due to invalid IL or missing references) //IL_16f0: Unknown result type (might be due to invalid IL or missing references) //IL_16f5: Unknown result type (might be due to invalid IL or missing references) //IL_1700: Unknown result type (might be due to invalid IL or missing references) //IL_170a: Unknown result type (might be due to invalid IL or missing references) //IL_170f: Unknown result type (might be due to invalid IL or missing references) //IL_1715: Unknown result type (might be due to invalid IL or missing references) //IL_171a: Unknown result type (might be due to invalid IL or missing references) //IL_1725: Unknown result type (might be due to invalid IL or missing references) //IL_1736: Unknown result type (might be due to invalid IL or missing references) //IL_173b: Unknown result type (might be due to invalid IL or missing references) //IL_1746: Unknown result type (might be due to invalid IL or missing references) //IL_1750: Unknown result type (might be due to invalid IL or missing references) //IL_1755: Unknown result type (might be due to invalid IL or missing references) //IL_1761: Unknown result type (might be due to invalid IL or missing references) //IL_179b: Unknown result type (might be due to invalid IL or missing references) //IL_17a1: Unknown result type (might be due to invalid IL or missing references) //IL_17a6: Unknown result type (might be due to invalid IL or missing references) //IL_17b1: Unknown result type (might be due to invalid IL or missing references) //IL_17c2: Unknown result type (might be due to invalid IL or missing references) //IL_17cc: Unknown result type (might be due to invalid IL or missing references) //IL_17d1: Unknown result type (might be due to invalid IL or missing references) //IL_17dc: Unknown result type (might be due to invalid IL or missing references) //IL_17e6: Unknown result type (might be due to invalid IL or missing references) //IL_17eb: Unknown result type (might be due to invalid IL or missing references) //IL_17f6: Unknown result type (might be due to invalid IL or missing references) //IL_1800: Unknown result type (might be due to invalid IL or missing references) //IL_1805: Unknown result type (might be due to invalid IL or missing references) //IL_1810: Unknown result type (might be due to invalid IL or missing references) //IL_1816: Unknown result type (might be due to invalid IL or missing references) //IL_181b: Unknown result type (might be due to invalid IL or missing references) //IL_1826: Unknown result type (might be due to invalid IL or missing references) //IL_1837: Unknown result type (might be due to invalid IL or missing references) //IL_183c: Unknown result type (might be due to invalid IL or missing references) //IL_1847: Unknown result type (might be due to invalid IL or missing references) //IL_1858: Unknown result type (might be due to invalid IL or missing references) //IL_1862: Unknown result type (might be due to invalid IL or missing references) //IL_1867: Unknown result type (might be due to invalid IL or missing references) //IL_1872: Unknown result type (might be due to invalid IL or missing references) //IL_187c: Unknown result type (might be due to invalid IL or missing references) //IL_1881: Unknown result type (might be due to invalid IL or missing references) //IL_188c: Unknown result type (might be due to invalid IL or missing references) //IL_1896: Unknown result type (might be due to invalid IL or missing references) //IL_189b: Unknown result type (might be due to invalid IL or missing references) //IL_18a7: Unknown result type (might be due to invalid IL or missing references) //IL_1a33: Unknown result type (might be due to invalid IL or missing references) //IL_1a39: Unknown result type (might be due to invalid IL or missing references) //IL_1a44: Unknown result type (might be due to invalid IL or missing references) //IL_1a4e: Unknown result type (might be due to invalid IL or missing references) //IL_1a5f: Unknown result type (might be due to invalid IL or missing references) //IL_1a64: Unknown result type (might be due to invalid IL or missing references) //IL_1a6e: Unknown result type (might be due to invalid IL or missing references) //IL_1a73: Unknown result type (might be due to invalid IL or missing references) //IL_1a7e: Unknown result type (might be due to invalid IL or missing references) //IL_1a88: Unknown result type (might be due to invalid IL or missing references) //IL_1a8e: Unknown result type (might be due to invalid IL or missing references) //IL_1a93: Unknown result type (might be due to invalid IL or missing references) //IL_1a98: Unknown result type (might be due to invalid IL or missing references) //IL_1aa3: Unknown result type (might be due to invalid IL or missing references) //IL_1aa9: Unknown result type (might be due to invalid IL or missing references) //IL_1ab4: Unknown result type (might be due to invalid IL or missing references) //IL_1abe: Unknown result type (might be due to invalid IL or missing references) //IL_1acf: Unknown result type (might be due to invalid IL or missing references) //IL_1ad4: Unknown result type (might be due to invalid IL or missing references) //IL_1ade: Unknown result type (might be due to invalid IL or missing references) //IL_1ae3: Unknown result type (might be due to invalid IL or missing references) //IL_1aee: Unknown result type (might be due to invalid IL or missing references) //IL_1aff: Unknown result type (might be due to invalid IL or missing references) //IL_1b04: Unknown result type (might be due to invalid IL or missing references) //IL_1b0f: Unknown result type (might be due to invalid IL or missing references) //IL_1b19: Unknown result type (might be due to invalid IL or missing references) //IL_1b1f: Unknown result type (might be due to invalid IL or missing references) //IL_1b24: Unknown result type (might be due to invalid IL or missing references) //IL_1b29: Unknown result type (might be due to invalid IL or missing references) //IL_1b35: Unknown result type (might be due to invalid IL or missing references) //IL_148a: Unknown result type (might be due to invalid IL or missing references) //IL_1495: Unknown result type (might be due to invalid IL or missing references) //IL_149a: Unknown result type (might be due to invalid IL or missing references) //IL_14a5: Unknown result type (might be due to invalid IL or missing references) //IL_14af: Unknown result type (might be due to invalid IL or missing references) //IL_14b4: Unknown result type (might be due to invalid IL or missing references) //IL_14bf: Unknown result type (might be due to invalid IL or missing references) //IL_14c9: Unknown result type (might be due to invalid IL or missing references) //IL_14ce: Unknown result type (might be due to invalid IL or missing references) //IL_14d4: Unknown result type (might be due to invalid IL or missing references) //IL_14d9: Unknown result type (might be due to invalid IL or missing references) //IL_14e4: Unknown result type (might be due to invalid IL or missing references) //IL_14ef: Unknown result type (might be due to invalid IL or missing references) //IL_14f9: Unknown result type (might be due to invalid IL or missing references) //IL_14fe: Unknown result type (might be due to invalid IL or missing references) //IL_1509: Unknown result type (might be due to invalid IL or missing references) //IL_1513: Unknown result type (might be due to invalid IL or missing references) //IL_1518: Unknown result type (might be due to invalid IL or missing references) //IL_151e: Unknown result type (might be due to invalid IL or missing references) //IL_1523: Unknown result type (might be due to invalid IL or missing references) //IL_152f: Unknown result type (might be due to invalid IL or missing references) //IL_18e1: Unknown result type (might be due to invalid IL or missing references) //IL_18e7: Unknown result type (might be due to invalid IL or missing references) //IL_18ec: Unknown result type (might be due to invalid IL or missing references) //IL_18f7: Unknown result type (might be due to invalid IL or missing references) //IL_1908: Unknown result type (might be due to invalid IL or missing references) //IL_1912: Unknown result type (might be due to invalid IL or missing references) //IL_1917: Unknown result type (might be due to invalid IL or missing references) //IL_1922: Unknown result type (might be due to invalid IL or missing references) //IL_192c: Unknown result type (might be due to invalid IL or missing references) //IL_1931: Unknown result type (might be due to invalid IL or missing references) //IL_193c: Unknown result type (might be due to invalid IL or missing references) //IL_1946: Unknown result type (might be due to invalid IL or missing references) //IL_194b: Unknown result type (might be due to invalid IL or missing references) //IL_1956: Unknown result type (might be due to invalid IL or missing references) //IL_195c: Unknown result type (might be due to invalid IL or missing references) //IL_1961: Unknown result type (might be due to invalid IL or missing references) //IL_196c: Unknown result type (might be due to invalid IL or missing references) //IL_197d: Unknown result type (might be due to invalid IL or missing references) //IL_1982: Unknown result type (might be due to invalid IL or missing references) //IL_198d: Unknown result type (might be due to invalid IL or missing references) //IL_199e: Unknown result type (might be due to invalid IL or missing references) //IL_19a8: Unknown result type (might be due to invalid IL or missing references) //IL_19ad: Unknown result type (might be due to invalid IL or missing references) //IL_19b8: Unknown result type (might be due to invalid IL or missing references) //IL_19c2: Unknown result type (might be due to invalid IL or missing references) //IL_19c7: Unknown result type (might be due to invalid IL or missing references) //IL_19d2: Unknown result type (might be due to invalid IL or missing references) //IL_19dc: Unknown result type (might be due to invalid IL or missing references) //IL_19e1: Unknown result type (might be due to invalid IL or missing references) //IL_19ed: Unknown result type (might be due to invalid IL or missing references) //IL_1b6f: Unknown result type (might be due to invalid IL or missing references) //IL_1b75: Unknown result type (might be due to invalid IL or missing references) //IL_1b80: Unknown result type (might be due to invalid IL or missing references) //IL_1b8a: Unknown result type (might be due to invalid IL or missing references) //IL_1b9b: Unknown result type (might be due to invalid IL or missing references) //IL_1ba0: Unknown result type (might be due to invalid IL or missing references) //IL_1baa: Unknown result type (might be due to invalid IL or missing references) //IL_1bb4: Unknown result type (might be due to invalid IL or missing references) //IL_1bba: Unknown result type (might be due to invalid IL or missing references) //IL_1bc5: Unknown result type (might be due to invalid IL or missing references) //IL_1bcf: Unknown result type (might be due to invalid IL or missing references) //IL_1bd4: Unknown result type (might be due to invalid IL or missing references) //IL_1bde: Unknown result type (might be due to invalid IL or missing references) //IL_1be3: Unknown result type (might be due to invalid IL or missing references) //IL_1bed: Unknown result type (might be due to invalid IL or missing references) //IL_1bf2: Unknown result type (might be due to invalid IL or missing references) //IL_1bfd: Unknown result type (might be due to invalid IL or missing references) //IL_1c07: Unknown result type (might be due to invalid IL or missing references) //IL_1c0d: Unknown result type (might be due to invalid IL or missing references) //IL_1c12: Unknown result type (might be due to invalid IL or missing references) //IL_1c17: Unknown result type (might be due to invalid IL or missing references) //IL_1c22: Unknown result type (might be due to invalid IL or missing references) //IL_1c28: Unknown result type (might be due to invalid IL or missing references) //IL_1c33: Unknown result type (might be due to invalid IL or missing references) //IL_1c3d: Unknown result type (might be due to invalid IL or missing references) //IL_1c4e: Unknown result type (might be due to invalid IL or missing references) //IL_1c53: Unknown result type (might be due to invalid IL or missing references) //IL_1c5d: Unknown result type (might be due to invalid IL or missing references) //IL_1c67: Unknown result type (might be due to invalid IL or missing references) //IL_1c6d: Unknown result type (might be due to invalid IL or missing references) //IL_1c78: Unknown result type (might be due to invalid IL or missing references) //IL_1c82: Unknown result type (might be due to invalid IL or missing references) //IL_1c87: Unknown result type (might be due to invalid IL or missing references) //IL_1c91: Unknown result type (might be due to invalid IL or missing references) //IL_1c96: Unknown result type (might be due to invalid IL or missing references) //IL_1ca0: Unknown result type (might be due to invalid IL or missing references) //IL_1ca5: Unknown result type (might be due to invalid IL or missing references) //IL_1cb0: Unknown result type (might be due to invalid IL or missing references) //IL_1cc1: Unknown result type (might be due to invalid IL or missing references) //IL_1cc6: Unknown result type (might be due to invalid IL or missing references) //IL_1cd1: Unknown result type (might be due to invalid IL or missing references) //IL_1cdb: Unknown result type (might be due to invalid IL or missing references) //IL_1ce1: Unknown result type (might be due to invalid IL or missing references) //IL_1ce6: Unknown result type (might be due to invalid IL or missing references) //IL_1ceb: Unknown result type (might be due to invalid IL or missing references) //IL_1cf7: Unknown result type (might be due to invalid IL or missing references) //IL_1d31: Unknown result type (might be due to invalid IL or missing references) //IL_1d37: Unknown result type (might be due to invalid IL or missing references) //IL_1d42: Unknown result type (might be due to invalid IL or missing references) //IL_1d4c: Unknown result type (might be due to invalid IL or missing references) //IL_1d5d: Unknown result type (might be due to invalid IL or missing references) //IL_1d62: Unknown result type (might be due to invalid IL or missing references) //IL_1d6c: Unknown result type (might be due to invalid IL or missing references) //IL_1d72: Unknown result type (might be due to invalid IL or missing references) //IL_1d7d: Unknown result type (might be due to invalid IL or missing references) //IL_1d87: Unknown result type (might be due to invalid IL or missing references) //IL_1d8c: Unknown result type (might be due to invalid IL or missing references) //IL_1d96: Unknown result type (might be due to invalid IL or missing references) //IL_1d9b: Unknown result type (might be due to invalid IL or missing references) //IL_1da5: Unknown result type (might be due to invalid IL or missing references) //IL_1daa: Unknown result type (might be due to invalid IL or missing references) //IL_1db5: Unknown result type (might be due to invalid IL or missing references) //IL_1dbf: Unknown result type (might be due to invalid IL or missing references) //IL_1dc5: Unknown result type (might be due to invalid IL or missing references) //IL_1dca: Unknown result type (might be due to invalid IL or missing references) //IL_1dcf: Unknown result type (might be due to invalid IL or missing references) //IL_1dda: Unknown result type (might be due to invalid IL or missing references) //IL_1de0: Unknown result type (might be due to invalid IL or missing references) //IL_1deb: Unknown result type (might be due to invalid IL or missing references) //IL_1df5: Unknown result type (might be due to invalid IL or missing references) //IL_1e06: Unknown result type (might be due to invalid IL or missing references) //IL_1e0b: Unknown result type (might be due to invalid IL or missing references) //IL_1e15: Unknown result type (might be due to invalid IL or missing references) //IL_1e1b: Unknown result type (might be due to invalid IL or missing references) //IL_1e26: Unknown result type (might be due to invalid IL or missing references) //IL_1e30: Unknown result type (might be due to invalid IL or missing references) //IL_1e35: Unknown result type (might be due to invalid IL or missing references) //IL_1e3f: Unknown result type (might be due to invalid IL or missing references) //IL_1e44: Unknown result type (might be due to invalid IL or missing references) //IL_1e4e: Unknown result type (might be due to invalid IL or missing references) //IL_1e53: Unknown result type (might be due to invalid IL or missing references) //IL_1e5e: Unknown result type (might be due to invalid IL or missing references) //IL_1e6f: Unknown result type (might be due to invalid IL or missing references) //IL_1e74: Unknown result type (might be due to invalid IL or missing references) //IL_1e7f: Unknown result type (might be due to invalid IL or missing references) //IL_1e89: Unknown result type (might be due to invalid IL or missing references) //IL_1e8f: Unknown result type (might be due to invalid IL or missing references) //IL_1e94: Unknown result type (might be due to invalid IL or missing references) //IL_1e99: Unknown result type (might be due to invalid IL or missing references) //IL_1ea5: Unknown result type (might be due to invalid IL or missing references) //IL_1edf: Unknown result type (might be due to invalid IL or missing references) //IL_1ee5: Unknown result type (might be due to invalid IL or missing references) //IL_1ef0: Unknown result type (might be due to invalid IL or missing references) //IL_1efa: Unknown result type (might be due to invalid IL or missing references) //IL_1f0b: Unknown result type (might be due to invalid IL or missing references) //IL_1f10: Unknown result type (might be due to invalid IL or missing references) //IL_1f1a: Unknown result type (might be due to invalid IL or missing references) //IL_1f20: Unknown result type (might be due to invalid IL or missing references) //IL_1f2b: Unknown result type (might be due to invalid IL or missing references) //IL_1f35: Unknown result type (might be due to invalid IL or missing references) //IL_1f3a: Unknown result type (might be due to invalid IL or missing references) //IL_1f44: Unknown result type (might be due to invalid IL or missing references) //IL_1f4e: Unknown result type (might be due to invalid IL or missing references) //IL_1f53: Unknown result type (might be due to invalid IL or missing references) //IL_1f5d: Unknown result type (might be due to invalid IL or missing references) //IL_1f62: Unknown result type (might be due to invalid IL or missing references) //IL_1f6d: Unknown result type (might be due to invalid IL or missing references) //IL_1f77: Unknown result type (might be due to invalid IL or missing references) //IL_1f7d: Unknown result type (might be due to invalid IL or missing references) //IL_1f82: Unknown result type (might be due to invalid IL or missing references) //IL_1f87: Unknown result type (might be due to invalid IL or missing references) //IL_1f92: Unknown result type (might be due to invalid IL or missing references) //IL_1f98: Unknown result type (might be due to invalid IL or missing references) //IL_1fa3: Unknown result type (might be due to invalid IL or missing references) //IL_1fad: Unknown result type (might be due to invalid IL or missing references) //IL_1fbe: Unknown result type (might be due to invalid IL or missing references) //IL_1fc3: Unknown result type (might be due to invalid IL or missing references) //IL_1fcd: Unknown result type (might be due to invalid IL or missing references) //IL_1fd3: Unknown result type (might be due to invalid IL or missing references) //IL_1fde: Unknown result type (might be due to invalid IL or missing references) //IL_1fe8: Unknown result type (might be due to invalid IL or missing references) //IL_1fed: Unknown result type (might be due to invalid IL or missing references) //IL_1ff7: Unknown result type (might be due to invalid IL or missing references) //IL_2001: Unknown result type (might be due to invalid IL or missing references) //IL_2006: Unknown result type (might be due to invalid IL or missing references) //IL_2010: Unknown result type (might be due to invalid IL or missing references) //IL_2015: Unknown result type (might be due to invalid IL or missing references) //IL_2020: Unknown result type (might be due to invalid IL or missing references) //IL_2031: Unknown result type (might be due to invalid IL or missing references) //IL_2036: Unknown result type (might be due to invalid IL or missing references) //IL_2041: Unknown result type (might be due to invalid IL or missing references) //IL_204b: Unknown result type (might be due to invalid IL or missing references) //IL_2051: Unknown result type (might be due to invalid IL or missing references) //IL_2056: Unknown result type (might be due to invalid IL or missing references) //IL_205b: Unknown result type (might be due to invalid IL or missing references) //IL_2067: Unknown result type (might be due to invalid IL or missing references) //IL_20a1: Unknown result type (might be due to invalid IL or missing references) //IL_20a7: Unknown result type (might be due to invalid IL or missing references) //IL_20b2: Unknown result type (might be due to invalid IL or missing references) //IL_20bc: Unknown result type (might be due to invalid IL or missing references) //IL_20c1: Unknown result type (might be due to invalid IL or missing references) //IL_20cb: Unknown result type (might be due to invalid IL or missing references) //IL_20d0: Unknown result type (might be due to invalid IL or missing references) //IL_20db: Unknown result type (might be due to invalid IL or missing references) //IL_20e5: Unknown result type (might be due to invalid IL or missing references) //IL_20eb: Unknown result type (might be due to invalid IL or missing references) //IL_20f0: Unknown result type (might be due to invalid IL or missing references) //IL_20f5: Unknown result type (might be due to invalid IL or missing references) //IL_2100: Unknown result type (might be due to invalid IL or missing references) //IL_2106: Unknown result type (might be due to invalid IL or missing references) //IL_2111: Unknown result type (might be due to invalid IL or missing references) //IL_211b: Unknown result type (might be due to invalid IL or missing references) //IL_2120: Unknown result type (might be due to invalid IL or missing references) //IL_212a: Unknown result type (might be due to invalid IL or missing references) //IL_212f: Unknown result type (might be due to invalid IL or missing references) //IL_213a: Unknown result type (might be due to invalid IL or missing references) //IL_214b: Unknown result type (might be due to invalid IL or missing references) //IL_2150: Unknown result type (might be due to invalid IL or missing references) //IL_215b: Unknown result type (might be due to invalid IL or missing references) //IL_2165: Unknown result type (might be due to invalid IL or missing references) //IL_216b: Unknown result type (might be due to invalid IL or missing references) //IL_2170: Unknown result type (might be due to invalid IL or missing references) //IL_2175: Unknown result type (might be due to invalid IL or missing references) //IL_2181: Unknown result type (might be due to invalid IL or missing references) //IL_21bb: Unknown result type (might be due to invalid IL or missing references) //IL_21c1: Unknown result type (might be due to invalid IL or missing references) //IL_21cc: Unknown result type (might be due to invalid IL or missing references) //IL_21d6: Unknown result type (might be due to invalid IL or missing references) //IL_21e7: Unknown result type (might be due to invalid IL or missing references) //IL_21ec: Unknown result type (might be due to invalid IL or missing references) //IL_21f6: Unknown result type (might be due to invalid IL or missing references) //IL_21fb: Unknown result type (might be due to invalid IL or missing references) //IL_2206: Unknown result type (might be due to invalid IL or missing references) //IL_2210: Unknown result type (might be due to invalid IL or missing references) //IL_2216: Unknown result type (might be due to invalid IL or missing references) //IL_221b: Unknown result type (might be due to invalid IL or missing references) //IL_2220: Unknown result type (might be due to invalid IL or missing references) //IL_222b: Unknown result type (might be due to invalid IL or missing references) //IL_2231: Unknown result type (might be due to invalid IL or missing references) //IL_223c: Unknown result type (might be due to invalid IL or missing references) //IL_2246: Unknown result type (might be due to invalid IL or missing references) //IL_2257: Unknown result type (might be due to invalid IL or missing references) //IL_225c: Unknown result type (might be due to invalid IL or missing references) //IL_2266: Unknown result type (might be due to invalid IL or missing references) //IL_226b: Unknown result type (might be due to invalid IL or missing references) //IL_2276: Unknown result type (might be due to invalid IL or missing references) //IL_2287: Unknown result type (might be due to invalid IL or missing references) //IL_228c: Unknown result type (might be due to invalid IL or missing references) //IL_2297: Unknown result type (might be due to invalid IL or missing references) //IL_22a1: Unknown result type (might be due to invalid IL or missing references) //IL_22a7: Unknown result type (might be due to invalid IL or missing references) //IL_22ac: Unknown result type (might be due to invalid IL or missing references) //IL_22b1: Unknown result type (might be due to invalid IL or missing references) //IL_22bd: Unknown result type (might be due to invalid IL or missing references) //IL_4002: Unknown result type (might be due to invalid IL or missing references) //IL_4008: Unknown result type (might be due to invalid IL or missing references) //IL_400d: Unknown result type (might be due to invalid IL or missing references) //IL_4018: Unknown result type (might be due to invalid IL or missing references) //IL_4022: Unknown result type (might be due to invalid IL or missing references) //IL_4027: Unknown result type (might be due to invalid IL or missing references) //IL_4032: Unknown result type (might be due to invalid IL or missing references) //IL_4038: Unknown result type (might be due to invalid IL or missing references) //IL_403d: Unknown result type (might be due to invalid IL or missing references) //IL_4048: Unknown result type (might be due to invalid IL or missing references) //IL_4059: Unknown result type (might be due to invalid IL or missing references) //IL_405e: Unknown result type (might be due to invalid IL or missing references) //IL_4069: Unknown result type (might be due to invalid IL or missing references) //IL_4073: Unknown result type (might be due to invalid IL or missing references) //IL_4078: Unknown result type (might be due to invalid IL or missing references) //IL_4084: Unknown result type (might be due to invalid IL or missing references) //IL_22f7: Unknown result type (might be due to invalid IL or missing references) //IL_22fd: Unknown result type (might be due to invalid IL or missing references) //IL_2308: Unknown result type (might be due to invalid IL or missing references) //IL_2312: Unknown result type (might be due to invalid IL or missing references) //IL_2323: Unknown result type (might be due to invalid IL or missing references) //IL_2328: Unknown result type (might be due to invalid IL or missing references) //IL_2332: Unknown result type (might be due to invalid IL or missing references) //IL_233c: Unknown result type (might be due to invalid IL or missing references) //IL_2342: Unknown result type (might be due to invalid IL or missing references) //IL_234d: Unknown result type (might be due to invalid IL or missing references) //IL_2357: Unknown result type (might be due to invalid IL or missing references) //IL_235c: Unknown result type (might be due to invalid IL or missing references) //IL_2366: Unknown result type (might be due to invalid IL or missing references) //IL_236b: Unknown result type (might be due to invalid IL or missing references) //IL_2375: Unknown result type (might be due to invalid IL or missing references) //IL_237a: Unknown result type (might be due to invalid IL or missing references) //IL_2385: Unknown result type (might be due to invalid IL or missing references) //IL_238f: Unknown result type (might be due to invalid IL or missing references) //IL_2395: Unknown result type (might be due to invalid IL or missing references) //IL_239a: Unknown result type (might be due to invalid IL or missing references) //IL_239f: Unknown result type (might be due to invalid IL or missing references) //IL_23aa: Unknown result type (might be due to invalid IL or missing references) //IL_23b0: Unknown result type (might be due to invalid IL or missing references) //IL_23bb: Unknown result type (might be due to invalid IL or missing references) //IL_23c5: Unknown result type (might be due to invalid IL or missing references) //IL_23d6: Unknown result type (might be due to invalid IL or missing references) //IL_23db: Unknown result type (might be due to invalid IL or missing references) //IL_23e5: Unknown result type (might be due to invalid IL or missing references) //IL_23ef: Unknown result type (might be due to invalid IL or missing references) //IL_23f5: Unknown result type (might be due to invalid IL or missing references) //IL_2400: Unknown result type (might be due to invalid IL or missing references) //IL_240a: Unknown result type (might be due to invalid IL or missing references) //IL_240f: Unknown result type (might be due to invalid IL or missing references) //IL_2419: Unknown result type (might be due to invalid IL or missing references) //IL_241e: Unknown result type (might be due to invalid IL or missing references) //IL_2428: Unknown result type (might be due to invalid IL or missing references) //IL_242d: Unknown result type (might be due to invalid IL or missing references) //IL_2438: Unknown result type (might be due to invalid IL or missing references) //IL_2449: Unknown result type (might be due to invalid IL or missing references) //IL_244e: Unknown result type (might be due to invalid IL or missing references) //IL_2459: Unknown result type (might be due to invalid IL or missing references) //IL_2463: Unknown result type (might be due to invalid IL or missing references) //IL_2469: Unknown result type (might be due to invalid IL or missing references) //IL_246e: Unknown result type (might be due to invalid IL or missing references) //IL_2473: Unknown result type (might be due to invalid IL or missing references) //IL_247f: Unknown result type (might be due to invalid IL or missing references) //IL_40be: Unknown result type (might be due to invalid IL or missing references) //IL_40c4: Unknown result type (might be due to invalid IL or missing references) //IL_40c9: Unknown result type (might be due to invalid IL or missing references) //IL_40d4: Unknown result type (might be due to invalid IL or missing references) //IL_40de: Unknown result type (might be due to invalid IL or missing references) //IL_40e3: Unknown result type (might be due to invalid IL or missing references) //IL_40e9: Unknown result type (might be due to invalid IL or missing references) //IL_40ee: Unknown result type (might be due to invalid IL or missing references) //IL_40f9: Unknown result type (might be due to invalid IL or missing references) //IL_4103: Unknown result type (might be due to invalid IL or missing references) //IL_4108: Unknown result type (might be due to invalid IL or missing references) //IL_4113: Unknown result type (might be due to invalid IL or missing references) //IL_4119: Unknown result type (might be due to invalid IL or missing references) //IL_411e: Unknown result type (might be due to invalid IL or missing references) //IL_4129: Unknown result type (might be due to invalid IL or missing references) //IL_4133: Unknown result type (might be due to invalid IL or missing references) //IL_4138: Unknown result type (might be due to invalid IL or missing references) //IL_413e: Unknown result type (might be due to invalid IL or missing references) //IL_4143: Unknown result type (might be due to invalid IL or missing references) //IL_414e: Unknown result type (might be due to invalid IL or missing references) //IL_415f: Unknown result type (might be due to invalid IL or missing references) //IL_4164: Unknown result type (might be due to invalid IL or missing references) //IL_416f: Unknown result type (might be due to invalid IL or missing references) //IL_4179: Unknown result type (might be due to invalid IL or missing references) //IL_417e: Unknown result type (might be due to invalid IL or missing references) //IL_418a: Unknown result type (might be due to invalid IL or missing references) //IL_24b9: Unknown result type (might be due to invalid IL or missing references) //IL_24bf: Unknown result type (might be due to invalid IL or missing references) //IL_24ca: Unknown result type (might be due to invalid IL or missing references) //IL_24d4: Unknown result type (might be due to invalid IL or missing references) //IL_24e5: Unknown result type (might be due to invalid IL or missing references) //IL_24ea: Unknown result type (might be due to invalid IL or missing references) //IL_24f4: Unknown result type (might be due to invalid IL or missing references) //IL_24fa: Unknown result type (might be due to invalid IL or missing references) //IL_2505: Unknown result type (might be due to invalid IL or missing references) //IL_250f: Unknown result type (might be due to invalid IL or missing references) //IL_2514: Unknown result type (might be due to invalid IL or missing references) //IL_251e: Unknown result type (might be due to invalid IL or missing references) //IL_2523: Unknown result type (might be due to invalid IL or missing references) //IL_252d: Unknown result type (might be due to invalid IL or missing references) //IL_2532: Unknown result type (might be due to invalid IL or missing references) //IL_253d: Unknown result type (might be due to invalid IL or missing references) //IL_2547: Unknown result type (might be due to invalid IL or missing references) //IL_254d: Unknown result type (might be due to invalid IL or missing references) //IL_2552: Unknown result type (might be due to invalid IL or missing references) //IL_2557: Unknown result type (might be due to invalid IL or missing references) //IL_2562: Unknown result type (might be due to invalid IL or missing references) //IL_2568: Unknown result type (might be due to invalid IL or missing references) //IL_2573: Unknown result type (might be due to invalid IL or missing references) //IL_257d: Unknown result type (might be due to invalid IL or missing references) //IL_258e: Unknown result type (might be due to invalid IL or missing references) //IL_2593: Unknown result type (might be due to invalid IL or missing references) //IL_259d: Unknown result type (might be due to invalid IL or missing references) //IL_25a3: Unknown result type (might be due to invalid IL or missing references) //IL_25ae: Unknown result type (might be due to invalid IL or missing references) //IL_25b8: Unknown result type (might be due to invalid IL or missing references) //IL_25bd: Unknown result type (might be due to invalid IL or missing references) //IL_25c7: Unknown result type (might be due to invalid IL or missing references) //IL_25cc: Unknown result type (might be due to invalid IL or missing references) //IL_25d6: Unknown result type (might be due to invalid IL or missing references) //IL_25db: Unknown result type (might be due to invalid IL or missing references) //IL_25e6: Unknown result type (might be due to invalid IL or missing references) //IL_25f7: Unknown result type (might be due to invalid IL or missing references) //IL_25fc: Unknown result type (might be due to invalid IL or missing references) //IL_2607: Unknown result type (might be due to invalid IL or missing references) //IL_2611: Unknown result type (might be due to invalid IL or missing references) //IL_2617: Unknown result type (might be due to invalid IL or missing references) //IL_261c: Unknown result type (might be due to invalid IL or missing references) //IL_2621: Unknown result type (might be due to invalid IL or missing references) //IL_262d: Unknown result type (might be due to invalid IL or missing references) //IL_41c4: Unknown result type (might be due to invalid IL or missing references) //IL_41ca: Unknown result type (might be due to invalid IL or missing references) //IL_41cf: Unknown result type (might be due to invalid IL or missing references) //IL_41da: Unknown result type (might be due to invalid IL or missing references) //IL_41eb: Unknown result type (might be due to invalid IL or missing references) //IL_41f5: Unknown result type (might be due to invalid IL or missing references) //IL_41fa: Unknown result type (might be due to invalid IL or missing references) //IL_4205: Unknown result type (might be due to invalid IL or missing references) //IL_420f: Unknown result type (might be due to invalid IL or missing references) //IL_4214: Unknown result type (might be due to invalid IL or missing references) //IL_421f: Unknown result type (might be due to invalid IL or missing references) //IL_4229: Unknown result type (might be due to invalid IL or missing references) //IL_422e: Unknown result type (might be due to invalid IL or missing references) //IL_4239: Unknown result type (might be due to invalid IL or missing references) //IL_423f: Unknown result type (might be due to invalid IL or missing references) //IL_4244: Unknown result type (might be due to invalid IL or missing references) //IL_424f: Unknown result type (might be due to invalid IL or missing references) //IL_4260: Unknown result type (might be due to invalid IL or missing references) //IL_4265: Unknown result type (might be due to invalid IL or missing references) //IL_4270: Unknown result type (might be due to invalid IL or missing references) //IL_4281: Unknown result type (might be due to invalid IL or missing references) //IL_428b: Unknown result type (might be due to invalid IL or missing references) //IL_4290: Unknown result type (might be due to invalid IL or missing references) //IL_429b: Unknown result type (might be due to invalid IL or missing references) //IL_42a5: Unknown result type (might be due to invalid IL or missing references) //IL_42aa: Unknown result type (might be due to invalid IL or missing references) //IL_42b5: Unknown result type (might be due to invalid IL or missing references) //IL_42bf: Unknown result type (might be due to invalid IL or missing references) //IL_42c4: Unknown result type (might be due to invalid IL or missing references) //IL_42d0: Unknown result type (might be due to invalid IL or missing references) //IL_445c: Unknown result type (might be due to invalid IL or missing references) //IL_4462: Unknown result type (might be due to invalid IL or missing references) //IL_446d: Unknown result type (might be due to invalid IL or missing references) //IL_4477: Unknown result type (might be due to invalid IL or missing references) //IL_4488: Unknown result type (might be due to invalid IL or missing references) //IL_448d: Unknown result type (might be due to invalid IL or missing references) //IL_4497: Unknown result type (might be due to invalid IL or missing references) //IL_449c: Unknown result type (might be due to invalid IL or missing references) //IL_44a7: Unknown result type (might be due to invalid IL or missing references) //IL_44b1: Unknown result type (might be due to invalid IL or missing references) //IL_44b7: Unknown result type (might be due to invalid IL or missing references) //IL_44bc: Unknown result type (might be due to invalid IL or missing references) //IL_44c1: Unknown result type (might be due to invalid IL or missing references) //IL_44cc: Unknown result type (might be due to invalid IL or missing references) //IL_44d2: Unknown result type (might be due to invalid IL or missing references) //IL_44dd: Unknown result type (might be due to invalid IL or missing references) //IL_44e7: Unknown result type (might be due to invalid IL or missing references) //IL_44f8: Unknown result type (might be due to invalid IL or missing references) //IL_44fd: Unknown result type (might be due to invalid IL or missing references) //IL_4507: Unknown result type (might be due to invalid IL or missing references) //IL_450c: Unknown result type (might be due to invalid IL or missing references) //IL_4517: Unknown result type (might be due to invalid IL or missing references) //IL_4528: Unknown result type (might be due to invalid IL or missing references) //IL_452d: Unknown result type (might be due to invalid IL or missing references) //IL_4538: Unknown result type (might be due to invalid IL or missing references) //IL_4542: Unknown result type (might be due to invalid IL or missing references) //IL_4548: Unknown result type (might be due to invalid IL or missing references) //IL_454d: Unknown result type (might be due to invalid IL or missing references) //IL_4552: Unknown result type (might be due to invalid IL or missing references) //IL_455e: Unknown result type (might be due to invalid IL or missing references) //IL_2667: Unknown result type (might be due to invalid IL or missing references) //IL_266d: Unknown result type (might be due to invalid IL or missing references) //IL_2678: Unknown result type (might be due to invalid IL or missing references) //IL_2682: Unknown result type (might be due to invalid IL or missing references) //IL_2693: Unknown result type (might be due to invalid IL or missing references) //IL_2698: Unknown result type (might be due to invalid IL or missing references) //IL_26a2: Unknown result type (might be due to invalid IL or missing references) //IL_26a8: Unknown result type (might be due to invalid IL or missing references) //IL_26b3: Unknown result type (might be due to invalid IL or missing references) //IL_26bd: Unknown result type (might be due to invalid IL or missing references) //IL_26c2: Unknown result type (might be due to invalid IL or missing references) //IL_26cc: Unknown result type (might be due to invalid IL or missing references) //IL_26d6: Unknown result type (might be due to invalid IL or missing references) //IL_26db: Unknown result type (might be due to invalid IL or missing references) //IL_26e5: Unknown result type (might be due to invalid IL or missing references) //IL_26ea: Unknown result type (might be due to invalid IL or missing references) //IL_26f5: Unknown result type (might be due to invalid IL or missing references) //IL_26ff: Unknown result type (might be due to invalid IL or missing references) //IL_2705: Unknown result type (might be due to invalid IL or missing references) //IL_270a: Unknown result type (might be due to invalid IL or missing references) //IL_270f: Unknown result type (might be due to invalid IL or missing references) //IL_271a: Unknown result type (might be due to invalid IL or missing references) //IL_2720: Unknown result type (might be due to invalid IL or missing references) //IL_272b: Unknown result type (might be due to invalid IL or missing references) //IL_2735: Unknown result type (might be due to invalid IL or missing references) //IL_2746: Unknown result type (might be due to invalid IL or missing references) //IL_274b: Unknown result type (might be due to invalid IL or missing references) //IL_2755: Unknown result type (might be due to invalid IL or missing references) //IL_275b: Unknown result type (might be due to invalid IL or missing references) //IL_2766: Unknown result type (might be due to invalid IL or missing references) //IL_2770: Unknown result type (might be due to invalid IL or missing references) //IL_2775: Unknown result type (might be due to invalid IL or missing references) //IL_277f: Unknown result type (might be due to invalid IL or missing references) //IL_2789: Unknown result type (might be due to invalid IL or missing references) //IL_278e: Unknown result type (might be due to invalid IL or missing references) //IL_2798: Unknown result type (might be due to invalid IL or missing references) //IL_279d: Unknown result type (might be due to invalid IL or missing references) //IL_27a8: Unknown result type (might be due to invalid IL or missing references) //IL_27b9: Unknown result type (might be due to invalid IL or missing references) //IL_27be: Unknown result type (might be due to invalid IL or missing references) //IL_27c9: Unknown result type (might be due to invalid IL or missing references) //IL_27d3: Unknown result type (might be due to invalid IL or missing references) //IL_27d9: Unknown result type (might be due to invalid IL or missing references) //IL_27de: Unknown result type (might be due to invalid IL or missing references) //IL_27e3: Unknown result type (might be due to invalid IL or missing references) //IL_27ef: Unknown result type (might be due to invalid IL or missing references) //IL_430a: Unknown result type (might be due to invalid IL or missing references) //IL_4310: Unknown result type (might be due to invalid IL or missing references) //IL_4315: Unknown result type (might be due to invalid IL or missing references) //IL_4320: Unknown result type (might be due to invalid IL or missing references) //IL_4331: Unknown result type (might be due to invalid IL or missing references) //IL_433b: Unknown result type (might be due to invalid IL or missing references) //IL_4340: Unknown result type (might be due to invalid IL or missing references) //IL_434b: Unknown result type (might be due to invalid IL or missing references) //IL_4355: Unknown result type (might be due to invalid IL or missing references) //IL_435a: Unknown result type (might be due to invalid IL or missing references) //IL_4365: Unknown result type (might be due to invalid IL or missing references) //IL_436f: Unknown result type (might be due to invalid IL or missing references) //IL_4374: Unknown result type (might be due to invalid IL or missing references) //IL_437f: Unknown result type (might be due to invalid IL or missing references) //IL_4385: Unknown result type (might be due to invalid IL or missing references) //IL_438a: Unknown result type (might be due to invalid IL or missing references) //IL_4395: Unknown result type (might be due to invalid IL or missing references) //IL_43a6: Unknown result type (might be due to invalid IL or missing references) //IL_43ab: Unknown result type (might be due to invalid IL or missing references) //IL_43b6: Unknown result type (might be due to invalid IL or missing references) //IL_43c7: Unknown result type (might be due to invalid IL or missing references) //IL_43d1: Unknown result type (might be due to invalid IL or missing references) //IL_43d6: Unknown result type (might be due to invalid IL or missing references) //IL_43e1: Unknown result type (might be due to invalid IL or missing references) //IL_43eb: Unknown result type (might be due to invalid IL or missing references) //IL_43f0: Unknown result type (might be due to invalid IL or missing references) //IL_43fb: Unknown result type (might be due to invalid IL or missing references) //IL_4405: Unknown result type (might be due to invalid IL or missing references) //IL_440a: Unknown result type (might be due to invalid IL or missing references) //IL_4416: Unknown result type (might be due to invalid IL or missing references) //IL_4598: Unknown result type (might be due to invalid IL or missing references) //IL_459e: Unknown result type (might be due to invalid IL or missing references) //IL_45a9: Unknown result type (might be due to invalid IL or missing references) //IL_45b3: Unknown result type (might be due to invalid IL or missing references) //IL_45c4: Unknown result type (might be due to invalid IL or missing references) //IL_45c9: Unknown result type (might be due to invalid IL or missing references) //IL_45d3: Unknown result type (might be due to invalid IL or missing references) //IL_45dd: Unknown result type (might be due to invalid IL or missing references) //IL_45e3: Unknown result type (might be due to invalid IL or missing references) //IL_45ee: Unknown result type (might be due to invalid IL or missing references) //IL_45f8: Unknown result type (might be due to invalid IL or missing references) //IL_45fd: Unknown result type (might be due to invalid IL or missing references) //IL_4607: Unknown result type (might be due to invalid IL or missing references) //IL_460c: Unknown result type (might be due to invalid IL or missing references) //IL_4616: Unknown result type (might be due to invalid IL or missing references) //IL_461b: Unknown result type (might be due to invalid IL or missing references) //IL_4626: Unknown result type (might be due to invalid IL or missing references) //IL_4630: Unknown result type (might be due to invalid IL or missing references) //IL_4636: Unknown result type (might be due to invalid IL or missing references) //IL_463b: Unknown result type (might be due to invalid IL or missing references) //IL_4640: Unknown result type (might be due to invalid IL or missing references) //IL_464b: Unknown result type (might be due to invalid IL or missing references) //IL_4651: Unknown result type (might be due to invalid IL or missing references) //IL_465c: Unknown result type (might be due to invalid IL or missing references) //IL_4666: Unknown result type (might be due to invalid IL or missing references) //IL_4677: Unknown result type (might be due to invalid IL or missing references) //IL_467c: Unknown result type (might be due to invalid IL or missing references) //IL_4686: Unknown result type (might be due to invalid IL or missing references) //IL_4690: Unknown result type (might be due to invalid IL or missing references) //IL_4696: Unknown result type (might be due to invalid IL or missing references) //IL_46a1: Unknown result type (might be due to invalid IL or missing references) //IL_46ab: Unknown result type (might be due to invalid IL or missing references) //IL_46b0: Unknown result type (might be due to invalid IL or missing references) //IL_46ba: Unknown result type (might be due to invalid IL or missing references) //IL_46bf: Unknown result type (might be due to invalid IL or missing references) //IL_46c9: Unknown result type (might be due to invalid IL or missing references) //IL_46ce: Unknown result type (might be due to invalid IL or missing references) //IL_46d9: Unknown result type (might be due to invalid IL or missing references) //IL_46ea: Unknown result type (might be due to invalid IL or missing references) //IL_46ef: Unknown result type (might be due to invalid IL or missing references) //IL_46fa: Unknown result type (might be due to invalid IL or missing references) //IL_4704: Unknown result type (might be due to invalid IL or missing references) //IL_470a: Unknown result type (might be due to invalid IL or missing references) //IL_470f: Unknown result type (might be due to invalid IL or missing references) //IL_4714: Unknown result type (might be due to invalid IL or missing references) //IL_4720: Unknown result type (might be due to invalid IL or missing references) //IL_2829: Unknown result type (might be due to invalid IL or missing references) //IL_282f: Unknown result type (might be due to invalid IL or missing references) //IL_283a: Unknown result type (might be due to invalid IL or missing references) //IL_2844: Unknown result type (might be due to invalid IL or missing references) //IL_2849: Unknown result type (might be due to invalid IL or missing references) //IL_2853: Unknown result type (might be due to invalid IL or missing references) //IL_2858: Unknown result type (might be due to invalid IL or missing references) //IL_2863: Unknown result type (might be due to invalid IL or missing references) //IL_286d: Unknown result type (might be due to invalid IL or missing references) //IL_2873: Unknown result type (might be due to invalid IL or missing references) //IL_2878: Unknown result type (might be due to invalid IL or missing references) //IL_287d: Unknown result type (might be due to invalid IL or missing references) //IL_2888: Unknown result type (might be due to invalid IL or missing references) //IL_288e: Unknown result type (might be due to invalid IL or missing references) //IL_2899: Unknown result type (might be due to invalid IL or missing references) //IL_28a3: Unknown result type (might be due to invalid IL or missing references) //IL_28a8: Unknown result type (might be due to invalid IL or missing references) //IL_28b2: Unknown result type (might be due to invalid IL or missing references) //IL_28b7: Unknown result type (might be due to invalid IL or missing references) //IL_28c2: Unknown result type (might be due to invalid IL or missing references) //IL_28d3: Unknown result type (might be due to invalid IL or missing references) //IL_28d8: Unknown result type (might be due to invalid IL or missing references) //IL_28e3: Unknown result type (might be due to invalid IL or missing references) //IL_28ed: Unknown result type (might be due to invalid IL or missing references) //IL_28f3: Unknown result type (might be due to invalid IL or missing references) //IL_28f8: Unknown result type (might be due to invalid IL or missing references) //IL_28fd: Unknown result type (might be due to invalid IL or missing references) //IL_2909: Unknown result type (might be due to invalid IL or missing references) //IL_475a: Unknown result type (might be due to invalid IL or missing references) //IL_4760: Unknown result type (might be due to invalid IL or missing references) //IL_476b: Unknown result type (might be due to invalid IL or missing references) //IL_4775: Unknown result type (might be due to invalid IL or missing references) //IL_4786: Unknown result type (might be due to invalid IL or missing references) //IL_478b: Unknown result type (might be due to invalid IL or missing references) //IL_4795: Unknown result type (might be due to invalid IL or missing references) //IL_479b: Unknown result type (might be due to invalid IL or missing references) //IL_47a6: Unknown result type (might be due to invalid IL or missing references) //IL_47b0: Unknown result type (might be due to invalid IL or missing references) //IL_47b5: Unknown result type (might be due to invalid IL or missing references) //IL_47bf: Unknown result type (might be due to invalid IL or missing references) //IL_47c4: Unknown result type (might be due to invalid IL or missing references) //IL_47ce: Unknown result type (might be due to invalid IL or missing references) //IL_47d3: Unknown result type (might be due to invalid IL or missing references) //IL_47de: Unknown result type (might be due to invalid IL or missing references) //IL_47e8: Unknown result type (might be due to invalid IL or missing references) //IL_47ee: Unknown result type (might be due to invalid IL or missing references) //IL_47f3: Unknown result type (might be due to invalid IL or missing references) //IL_47f8: Unknown result type (might be due to invalid IL or missing references) //IL_4803: Unknown result type (might be due to invalid IL or missing references) //IL_4809: Unknown result type (might be due to invalid IL or missing references) //IL_4814: Unknown result type (might be due to invalid IL or missing references) //IL_481e: Unknown result type (might be due to invalid IL or missing references) //IL_482f: Unknown result type (might be due to invalid IL or missing references) //IL_4834: Unknown result type (might be due to invalid IL or missing references) //IL_483e: Unknown result type (might be due to invalid IL or missing references) //IL_4844: Unknown result type (might be due to invalid IL or missing references) //IL_484f: Unknown result type (might be due to invalid IL or missing references) //IL_4859: Unknown result type (might be due to invalid IL or missing references) //IL_485e: Unknown result type (might be due to invalid IL or missing references) //IL_4868: Unknown result type (might be due to invalid IL or missing references) //IL_486d: Unknown result type (might be due to invalid IL or missing references) //IL_4877: Unknown result type (might be due to invalid IL or missing references) //IL_487c: Unknown result type (might be due to invalid IL or missing references) //IL_4887: Unknown result type (might be due to invalid IL or missing references) //IL_4898: Unknown result type (might be due to invalid IL or missing references) //IL_489d: Unknown result type (might be due to invalid IL or missing references) //IL_48a8: Unknown result type (might be due to invalid IL or missing references) //IL_48b2: Unknown result type (might be due to invalid IL or missing references) //IL_48b8: Unknown result type (might be due to invalid IL or missing references) //IL_48bd: Unknown result type (might be due to invalid IL or missing references) //IL_48c2: Unknown result type (might be due to invalid IL or missing references) //IL_48ce: Unknown result type (might be due to invalid IL or missing references) //IL_2943: Unknown result type (might be due to invalid IL or missing references) //IL_2949: Unknown result type (might be due to invalid IL or missing references) //IL_294e: Unknown result type (might be due to invalid IL or missing references) //IL_2959: Unknown result type (might be due to invalid IL or missing references) //IL_296a: Unknown result type (might be due to invalid IL or missing references) //IL_2974: Unknown result type (might be due to invalid IL or missing references) //IL_2979: Unknown result type (might be due to invalid IL or missing references) //IL_2984: Unknown result type (might be due to invalid IL or missing references) //IL_298e: Unknown result type (might be due to invalid IL or missing references) //IL_2993: Unknown result type (might be due to invalid IL or missing references) //IL_299e: Unknown result type (might be due to invalid IL or missing references) //IL_29a8: Unknown result type (might be due to invalid IL or missing references) //IL_29ad: Unknown result type (might be due to invalid IL or missing references) //IL_29b8: Unknown result type (might be due to invalid IL or missing references) //IL_29be: Unknown result type (might be due to invalid IL or missing references) //IL_29c3: Unknown result type (might be due to invalid IL or missing references) //IL_29ce: Unknown result type (might be due to invalid IL or missing references) //IL_29df: Unknown result type (might be due to invalid IL or missing references) //IL_29e4: Unknown result type (might be due to invalid IL or missing references) //IL_29ef: Unknown result type (might be due to invalid IL or missing references) //IL_2a00: Unknown result type (might be due to invalid IL or missing references) //IL_2a0a: Unknown result type (might be due to invalid IL or missing references) //IL_2a0f: Unknown result type (might be due to invalid IL or missing references) //IL_2a1a: Unknown result type (might be due to invalid IL or missing references) //IL_2a24: Unknown result type (might be due to invalid IL or missing references) //IL_2a29: Unknown result type (might be due to invalid IL or missing references) //IL_2a34: Unknown result type (might be due to invalid IL or missing references) //IL_2a3e: Unknown result type (might be due to invalid IL or missing references) //IL_2a43: Unknown result type (might be due to invalid IL or missing references) //IL_2a4f: Unknown result type (might be due to invalid IL or missing references) //IL_4908: Unknown result type (might be due to invalid IL or missing references) //IL_490e: Unknown result type (might be due to invalid IL or missing references) //IL_4919: Unknown result type (might be due to invalid IL or missing references) //IL_4923: Unknown result type (might be due to invalid IL or missing references) //IL_4934: Unknown result type (might be due to invalid IL or missing references) //IL_4939: Unknown result type (might be due to invalid IL or missing references) //IL_4943: Unknown result type (might be due to invalid IL or missing references) //IL_4949: Unknown result type (might be due to invalid IL or missing references) //IL_4954: Unknown result type (might be due to invalid IL or missing references) //IL_495e: Unknown result type (might be due to invalid IL or missing references) //IL_4963: Unknown result type (might be due to invalid IL or missing references) //IL_496d: Unknown result type (might be due to invalid IL or missing references) //IL_4977: Unknown result type (might be due to invalid IL or missing references) //IL_497c: Unknown result type (might be due to invalid IL or missing references) //IL_4986: Unknown result type (might be due to invalid IL or missing references) //IL_498b: Unknown result type (might be due to invalid IL or missing references) //IL_4996: Unknown result type (might be due to invalid IL or missing references) //IL_49a0: Unknown result type (might be due to invalid IL or missing references) //IL_49a6: Unknown result type (might be due to invalid IL or missing references) //IL_49ab: Unknown result type (might be due to invalid IL or missing references) //IL_49b0: Unknown result type (might be due to invalid IL or missing references) //IL_49bb: Unknown result type (might be due to invalid IL or missing references) //IL_49c1: Unknown result type (might be due to invalid IL or missing references) //IL_49cc: Unknown result type (might be due to invalid IL or missing references) //IL_49d6: Unknown result type (might be due to invalid IL or missing references) //IL_49e7: Unknown result type (might be due to invalid IL or missing references) //IL_49ec: Unknown result type (might be due to invalid IL or missing references) //IL_49f6: Unknown result type (might be due to invalid IL or missing references) //IL_49fc: Unknown result type (might be due to invalid IL or missing references) //IL_4a07: Unknown result type (might be due to invalid IL or missing references) //IL_4a11: Unknown result type (might be due to invalid IL or missing references) //IL_4a16: Unknown result type (might be due to invalid IL or missing references) //IL_4a20: Unknown result type (might be due to invalid IL or missing references) //IL_4a2a: Unknown result type (might be due to invalid IL or missing references) //IL_4a2f: Unknown result type (might be due to invalid IL or missing references) //IL_4a39: Unknown result type (might be due to invalid IL or missing references) //IL_4a3e: Unknown result type (might be due to invalid IL or missing references) //IL_4a49: Unknown result type (might be due to invalid IL or missing references) //IL_4a5a: Unknown result type (might be due to invalid IL or missing references) //IL_4a5f: Unknown result type (might be due to invalid IL or missing references) //IL_4a6a: Unknown result type (might be due to invalid IL or missing references) //IL_4a74: Unknown result type (might be due to invalid IL or missing references) //IL_4a7a: Unknown result type (might be due to invalid IL or missing references) //IL_4a7f: Unknown result type (might be due to invalid IL or missing references) //IL_4a84: Unknown result type (might be due to invalid IL or missing references) //IL_4a90: Unknown result type (might be due to invalid IL or missing references) //IL_2a89: Unknown result type (might be due to invalid IL or missing references) //IL_2a8f: Unknown result type (might be due to invalid IL or missing references) //IL_2a94: Unknown result type (might be due to invalid IL or missing references) //IL_2a9f: Unknown result type (might be due to invalid IL or missing references) //IL_2ab0: Unknown result type (might be due to invalid IL or missing references) //IL_2aba: Unknown result type (might be due to invalid IL or missing references) //IL_2abf: Unknown result type (might be due to invalid IL or missing references) //IL_2aca: Unknown result type (might be due to invalid IL or missing references) //IL_2ad4: Unknown result type (might be due to invalid IL or missing references) //IL_2ad9: Unknown result type (might be due to invalid IL or missing references) //IL_2ae4: Unknown result type (might be due to invalid IL or missing references) //IL_2aee: Unknown result type (might be due to invalid IL or missing references) //IL_2af3: Unknown result type (might be due to invalid IL or missing references) //IL_2afe: Unknown result type (might be due to invalid IL or missing references) //IL_2b04: Unknown result type (might be due to invalid IL or missing references) //IL_2b09: Unknown result type (might be due to invalid IL or missing references) //IL_2b14: Unknown result type (might be due to invalid IL or missing references) //IL_2b25: Unknown result type (might be due to invalid IL or missing references) //IL_2b2a: Unknown result type (might be due to invalid IL or missing references) //IL_2b35: Unknown result type (might be due to invalid IL or missing references) //IL_2b46: Unknown result type (might be due to invalid IL or missing references) //IL_2b50: Unknown result type (might be due to invalid IL or missing references) //IL_2b55: Unknown result type (might be due to invalid IL or missing references) //IL_2b60: Unknown result type (might be due to invalid IL or missing references) //IL_2b6a: Unknown result type (might be due to invalid IL or missing references) //IL_2b6f: Unknown result type (might be due to invalid IL or missing references) //IL_2b7a: Unknown result type (might be due to invalid IL or missing references) //IL_2b84: Unknown result type (might be due to invalid IL or missing references) //IL_2b89: Unknown result type (might be due to invalid IL or missing references) //IL_2b95: Unknown result type (might be due to invalid IL or missing references) //IL_4aca: Unknown result type (might be due to invalid IL or missing references) //IL_4ad0: Unknown result type (might be due to invalid IL or missing references) //IL_4adb: Unknown result type (might be due to invalid IL or missing references) //IL_4ae5: Unknown result type (might be due to invalid IL or missing references) //IL_4aea: Unknown result type (might be due to invalid IL or missing references) //IL_4af4: Unknown result type (might be due to invalid IL or missing references) //IL_4af9: Unknown result type (might be due to invalid IL or missing references) //IL_4b04: Unknown result type (might be due to invalid IL or missing references) //IL_4b0e: Unknown result type (might be due to invalid IL or missing references) //IL_4b14: Unknown result type (might be due to invalid IL or missing references) //IL_4b19: Unknown result type (might be due to invalid IL or missing references) //IL_4b1e: Unknown result type (might be due to invalid IL or missing references) //IL_4b29: Unknown result type (might be due to invalid IL or missing references) //IL_4b2f: Unknown result type (might be due to invalid IL or missing references) //IL_4b3a: Unknown result type (might be due to invalid IL or missing references) //IL_4b44: Unknown result type (might be due to invalid IL or missing references) //IL_4b49: Unknown result type (might be due to invalid IL or missing references) //IL_4b53: Unknown result type (might be due to invalid IL or missing references) //IL_4b58: Unknown result type (might be due to invalid IL or missing references) //IL_4b63: Unknown result type (might be due to invalid IL or missing references) //IL_4b74: Unknown result type (might be due to invalid IL or missing references) //IL_4b79: Unknown result type (might be due to invalid IL or missing references) //IL_4b84: Unknown result type (might be due to invalid IL or missing references) //IL_4b8e: Unknown result type (might be due to invalid IL or missing references) //IL_4b94: Unknown result type (might be due to invalid IL or missing references) //IL_4b99: Unknown result type (might be due to invalid IL or missing references) //IL_4b9e: Unknown result type (might be due to invalid IL or missing references) //IL_4baa: Unknown result type (might be due to invalid IL or missing references) //IL_2bcf: Unknown result type (might be due to invalid IL or missing references) //IL_2bd5: Unknown result type (might be due to invalid IL or missing references) //IL_2bda: Unknown result type (might be due to invalid IL or missing references) //IL_2be5: Unknown result type (might be due to invalid IL or missing references) //IL_2bf6: Unknown result type (might be due to invalid IL or missing references) //IL_2c00: Unknown result type (might be due to invalid IL or missing references) //IL_2c05: Unknown result type (might be due to invalid IL or missing references) //IL_2c10: Unknown result type (might be due to invalid IL or missing references) //IL_2c1a: Unknown result type (might be due to invalid IL or missing references) //IL_2c1f: Unknown result type (might be due to invalid IL or missing references) //IL_2c2a: Unknown result type (might be due to invalid IL or missing references) //IL_2c34: Unknown result type (might be due to invalid IL or missing references) //IL_2c39: Unknown result type (might be due to invalid IL or missing references) //IL_2c44: Unknown result type (might be due to invalid IL or missing references) //IL_2c4a: Unknown result type (might be due to invalid IL or missing references) //IL_2c4f: Unknown result type (might be due to invalid IL or missing references) //IL_2c5a: Unknown result type (might be due to invalid IL or missing references) //IL_2c6b: Unknown result type (might be due to invalid IL or missing references) //IL_2c70: Unknown result type (might be due to invalid IL or missing references) //IL_2c7b: Unknown result type (might be due to invalid IL or missing references) //IL_2c8c: Unknown result type (might be due to invalid IL or missing references) //IL_2c96: Unknown result type (might be due to invalid IL or missing references) //IL_2c9b: Unknown result type (might be due to invalid IL or missing references) //IL_2ca6: Unknown result type (might be due to invalid IL or missing references) //IL_2cb0: Unknown result type (might be due to invalid IL or missing references) //IL_2cb5: Unknown result type (might be due to invalid IL or missing references) //IL_2cc0: Unknown result type (might be due to invalid IL or missing references) //IL_2cca: Unknown result type (might be due to invalid IL or missing references) //IL_2ccf: Unknown result type (might be due to invalid IL or missing references) //IL_2cdb: Unknown result type (might be due to invalid IL or missing references) //IL_4be4: Unknown result type (might be due to invalid IL or missing references) //IL_4bea: Unknown result type (might be due to invalid IL or missing references) //IL_4bf5: Unknown result type (might be due to invalid IL or missing references) //IL_4bff: Unknown result type (might be due to invalid IL or missing references) //IL_4c10: Unknown result type (might be due to invalid IL or missing references) //IL_4c15: Unknown result type (might be due to invalid IL or missing references) //IL_4c1f: Unknown result type (might be due to invalid IL or missing references) //IL_4c24: Unknown result type (might be due to invalid IL or missing references) //IL_4c2f: Unknown result type (might be due to invalid IL or missing references) //IL_4c39: Unknown result type (might be due to invalid IL or missing references) //IL_4c3f: Unknown result type (might be due to invalid IL or missing references) //IL_4c44: Unknown result type (might be due to invalid IL or missing references) //IL_4c49: Unknown result type (might be due to invalid IL or missing references) //IL_4c54: Unknown result type (might be due to invalid IL or missing references) //IL_4c5a: Unknown result type (might be due to invalid IL or missing references) //IL_4c65: Unknown result type (might be due to invalid IL or missing references) //IL_4c6f: Unknown result type (might be due to invalid IL or missing references) //IL_4c80: Unknown result type (might be due to invalid IL or missing references) //IL_4c85: Unknown result type (might be due to invalid IL or missing references) //IL_4c8f: Unknown result type (might be due to invalid IL or missing references) //IL_4c94: Unknown result type (might be due to invalid IL or missing references) //IL_4c9f: Unknown result type (might be due to invalid IL or missing references) //IL_4cb0: Unknown result type (might be due to invalid IL or missing references) //IL_4cb5: Unknown result type (might be due to invalid IL or missing references) //IL_4cc0: Unknown result type (might be due to invalid IL or missing references) //IL_4cca: Unknown result type (might be due to invalid IL or missing references) //IL_4cd0: Unknown result type (might be due to invalid IL or missing references) //IL_4cd5: Unknown result type (might be due to invalid IL or missing references) //IL_4cda: Unknown result type (might be due to invalid IL or missing references) //IL_4ce6: Unknown result type (might be due to invalid IL or missing references) //IL_2d15: Unknown result type (might be due to invalid IL or missing references) //IL_2d1b: Unknown result type (might be due to invalid IL or missing references) //IL_2d20: Unknown result type (might be due to invalid IL or missing references) //IL_2d2b: Unknown result type (might be due to invalid IL or missing references) //IL_2d3c: Unknown result type (might be due to invalid IL or missing references) //IL_2d46: Unknown result type (might be due to invalid IL or missing references) //IL_2d4b: Unknown result type (might be due to invalid IL or missing references) //IL_2d56: Unknown result type (might be due to invalid IL or missing references) //IL_2d60: Unknown result type (might be due to invalid IL or missing references) //IL_2d65: Unknown result type (might be due to invalid IL or missing references) //IL_2d70: Unknown result type (might be due to invalid IL or missing references) //IL_2d7a: Unknown result type (might be due to invalid IL or missing references) //IL_2d7f: Unknown result type (might be due to invalid IL or missing references) //IL_2d8a: Unknown result type (might be due to invalid IL or missing references) //IL_2d90: Unknown result type (might be due to invalid IL or missing references) //IL_2d95: Unknown result type (might be due to invalid IL or missing references) //IL_2da0: Unknown result type (might be due to invalid IL or missing references) //IL_2db1: Unknown result type (might be due to invalid IL or missing references) //IL_2db6: Unknown result type (might be due to invalid IL or missing references) //IL_2dc1: Unknown result type (might be due to invalid IL or missing references) //IL_2dd2: Unknown result type (might be due to invalid IL or missing references) //IL_2ddc: Unknown result type (might be due to invalid IL or missing references) //IL_2de1: Unknown result type (might be due to invalid IL or missing references) //IL_2dec: Unknown result type (might be due to invalid IL or missing references) //IL_2df6: Unknown result type (might be due to invalid IL or missing references) //IL_2dfb: Unknown result type (might be due to invalid IL or missing references) //IL_2e06: Unknown result type (might be due to invalid IL or missing references) //IL_2e10: Unknown result type (might be due to invalid IL or missing references) //IL_2e15: Unknown result type (might be due to invalid IL or missing references) //IL_2e21: Unknown result type (might be due to invalid IL or missing references) //IL_4d20: Unknown result type (might be due to invalid IL or missing references) //IL_4d26: Unknown result type (might be due to invalid IL or missing references) //IL_4d31: Unknown result type (might be due to invalid IL or missing references) //IL_4d3b: Unknown result type (might be due to invalid IL or missing references) //IL_4d4c: Unknown result type (might be due to invalid IL or missing references) //IL_4d51: Unknown result type (might be due to invalid IL or missing references) //IL_4d5b: Unknown result type (might be due to invalid IL or missing references) //IL_4d65: Unknown result type (might be due to invalid IL or missing references) //IL_4d6b: Unknown result type (might be due to invalid IL or missing references) //IL_4d76: Unknown result type (might be due to invalid IL or missing references) //IL_4d80: Unknown result type (might be due to invalid IL or missing references) //IL_4d85: Unknown result type (might be due to invalid IL or missing references) //IL_4d8f: Unknown result type (might be due to invalid IL or missing references) //IL_4d94: Unknown result type (might be due to invalid IL or missing references) //IL_4d9e: Unknown result type (might be due to invalid IL or missing references) //IL_4da3: Unknown result type (might be due to invalid IL or missing references) //IL_4dae: Unknown result type (might be due to invalid IL or missing references) //IL_4db8: Unknown result type (might be due to invalid IL or missing references) //IL_4dbe: Unknown result type (might be due to invalid IL or missing references) //IL_4dc3: Unknown result type (might be due to invalid IL or missing references) //IL_4dc8: Unknown result type (might be due to invalid IL or missing references) //IL_4dd3: Unknown result type (might be due to invalid IL or missing references) //IL_4dd9: Unknown result type (might be due to invalid IL or missing references) //IL_4de4: Unknown result type (might be due to invalid IL or missing references) //IL_4dee: Unknown result type (might be due to invalid IL or missing references) //IL_4dff: Unknown result type (might be due to invalid IL or missing references) //IL_4e04: Unknown result type (might be due to invalid IL or missing references) //IL_4e0e: Unknown result type (might be due to invalid IL or missing references) //IL_4e18: Unknown result type (might be due to invalid IL or missing references) //IL_4e1e: Unknown result type (might be due to invalid IL or missing references) //IL_4e29: Unknown result type (might be due to invalid IL or missing references) //IL_4e33: Unknown result type (might be due to invalid IL or missing references) //IL_4e38: Unknown result type (might be due to invalid IL or missing references) //IL_4e42: Unknown result type (might be due to invalid IL or missing references) //IL_4e47: Unknown result type (might be due to invalid IL or missing references) //IL_4e51: Unknown result type (might be due to invalid IL or missing references) //IL_4e56: Unknown result type (might be due to invalid IL or missing references) //IL_4e61: Unknown result type (might be due to invalid IL or missing references) //IL_4e72: Unknown result type (might be due to invalid IL or missing references) //IL_4e77: Unknown result type (might be due to invalid IL or missing references) //IL_4e82: Unknown result type (might be due to invalid IL or missing references) //IL_4e8c: Unknown result type (might be due to invalid IL or missing references) //IL_4e92: Unknown result type (might be due to invalid IL or missing references) //IL_4e97: Unknown result type (might be due to invalid IL or missing references) //IL_4e9c: Unknown result type (might be due to invalid IL or missing references) //IL_4ea8: Unknown result type (might be due to invalid IL or missing references) //IL_2e5b: Unknown result type (might be due to invalid IL or missing references) //IL_2e61: Unknown result type (might be due to invalid IL or missing references) //IL_2e66: Unknown result type (might be due to invalid IL or missing references) //IL_2e71: Unknown result type (might be due to invalid IL or missing references) //IL_2e82: Unknown result type (might be due to invalid IL or missing references) //IL_2e8c: Unknown result type (might be due to invalid IL or missing references) //IL_2e91: Unknown result type (might be due to invalid IL or missing references) //IL_2e9c: Unknown result type (might be due to invalid IL or missing references) //IL_2ea6: Unknown result type (might be due to invalid IL or missing references) //IL_2eab: Unknown result type (might be due to invalid IL or missing references) //IL_2eb6: Unknown result type (might be due to invalid IL or missing references) //IL_2ec0: Unknown result type (might be due to invalid IL or missing references) //IL_2ec5: Unknown result type (might be due to invalid IL or missing references) //IL_2ed0: Unknown result type (might be due to invalid IL or missing references) //IL_2ed6: Unknown result type (might be due to invalid IL or missing references) //IL_2edb: Unknown result type (might be due to invalid IL or missing references) //IL_2ee6: Unknown result type (might be due to invalid IL or missing references) //IL_2ef7: Unknown result type (might be due to invalid IL or missing references) //IL_2efc: Unknown result type (might be due to invalid IL or missing references) //IL_2f07: Unknown result type (might be due to invalid IL or missing references) //IL_2f18: Unknown result type (might be due to invalid IL or missing references) //IL_2f22: Unknown result type (might be due to invalid IL or missing references) //IL_2f27: Unknown result type (might be due to invalid IL or missing references) //IL_2f32: Unknown result type (might be due to invalid IL or missing references) //IL_2f3c: Unknown result type (might be due to invalid IL or missing references) //IL_2f41: Unknown result type (might be due to invalid IL or missing references) //IL_2f4c: Unknown result type (might be due to invalid IL or missing references) //IL_2f56: Unknown result type (might be due to invalid IL or missing references) //IL_2f5b: Unknown result type (might be due to invalid IL or missing references) //IL_2f67: Unknown result type (might be due to invalid IL or missing references) //IL_4ee2: Unknown result type (might be due to invalid IL or missing references) //IL_4ee8: Unknown result type (might be due to invalid IL or missing references) //IL_4ef3: Unknown result type (might be due to invalid IL or missing references) //IL_4efd: Unknown result type (might be due to invalid IL or missing references) //IL_4f0e: Unknown result type (might be due to invalid IL or missing references) //IL_4f13: Unknown result type (might be due to invalid IL or missing references) //IL_4f1d: Unknown result type (might be due to invalid IL or missing references) //IL_4f23: Unknown result type (might be due to invalid IL or missing references) //IL_4f2e: Unknown result type (might be due to invalid IL or missing references) //IL_4f38: Unknown result type (might be due to invalid IL or missing references) //IL_4f3d: Unknown result type (might be due to invalid IL or missing references) //IL_4f47: Unknown result type (might be due to invalid IL or missing references) //IL_4f4c: Unknown result type (might be due to invalid IL or missing references) //IL_4f56: Unknown result type (might be due to invalid IL or missing references) //IL_4f5b: Unknown result type (might be due to invalid IL or missing references) //IL_4f66: Unknown result type (might be due to invalid IL or missing references) //IL_4f70: Unknown result type (might be due to invalid IL or missing references) //IL_4f76: Unknown result type (might be due to invalid IL or missing references) //IL_4f7b: Unknown result type (might be due to invalid IL or missing references) //IL_4f80: Unknown result type (might be due to invalid IL or missing references) //IL_4f8b: Unknown result type (might be due to invalid IL or missing references) //IL_4f91: Unknown result type (might be due to invalid IL or missing references) //IL_4f9c: Unknown result type (might be due to invalid IL or missing references) //IL_4fa6: Unknown result type (might be due to invalid IL or missing references) //IL_4fb7: Unknown result type (might be due to invalid IL or missing references) //IL_4fbc: Unknown result type (might be due to invalid IL or missing references) //IL_4fc6: Unknown result type (might be due to invalid IL or missing references) //IL_4fcc: Unknown result type (might be due to invalid IL or missing references) //IL_4fd7: Unknown result type (might be due to invalid IL or missing references) //IL_4fe1: Unknown result type (might be due to invalid IL or missing references) //IL_4fe6: Unknown result type (might be due to invalid IL or missing references) //IL_4ff0: Unknown result type (might be due to invalid IL or missing references) //IL_4ff5: Unknown result type (might be due to invalid IL or missing references) //IL_4fff: Unknown result type (might be due to invalid IL or missing references) //IL_5004: Unknown result type (might be due to invalid IL or missing references) //IL_500f: Unknown result type (might be due to invalid IL or missing references) //IL_5020: Unknown result type (might be due to invalid IL or missing references) //IL_5025: Unknown result type (might be due to invalid IL or missing references) //IL_5030: Unknown result type (might be due to invalid IL or missing references) //IL_503a: Unknown result type (might be due to invalid IL or missing references) //IL_5040: Unknown result type (might be due to invalid IL or missing references) //IL_5045: Unknown result type (might be due to invalid IL or missing references) //IL_504a: Unknown result type (might be due to invalid IL or missing references) //IL_5056: Unknown result type (might be due to invalid IL or missing references) //IL_2fa1: Unknown result type (might be due to invalid IL or missing references) //IL_2fa7: Unknown result type (might be due to invalid IL or missing references) //IL_2fac: Unknown result type (might be due to invalid IL or missing references) //IL_2fb7: Unknown result type (might be due to invalid IL or missing references) //IL_2fc8: Unknown result type (might be due to invalid IL or missing references) //IL_2fd2: Unknown result type (might be due to invalid IL or missing references) //IL_2fd7: Unknown result type (might be due to invalid IL or missing references) //IL_2fe2: Unknown result type (might be due to invalid IL or missing references) //IL_2fec: Unknown result type (might be due to invalid IL or missing references) //IL_2ff1: Unknown result type (might be due to invalid IL or missing references) //IL_2ffc: Unknown result type (might be due to invalid IL or missing references) //IL_3006: Unknown result type (might be due to invalid IL or missing references) //IL_300b: Unknown result type (might be due to invalid IL or missing references) //IL_3016: Unknown result type (might be due to invalid IL or missing references) //IL_301c: Unknown result type (might be due to invalid IL or missing references) //IL_3021: Unknown result type (might be due to invalid IL or missing references) //IL_302c: Unknown result type (might be due to invalid IL or missing references) //IL_303d: Unknown result type (might be due to invalid IL or missing references) //IL_3042: Unknown result type (might be due to invalid IL or missing references) //IL_304d: Unknown result type (might be due to invalid IL or missing references) //IL_305e: Unknown result type (might be due to invalid IL or missing references) //IL_3068: Unknown result type (might be due to invalid IL or missing references) //IL_306d: Unknown result type (might be due to invalid IL or missing references) //IL_3078: Unknown result type (might be due to invalid IL or missing references) //IL_3082: Unknown result type (might be due to invalid IL or missing references) //IL_3087: Unknown result type (might be due to invalid IL or missing references) //IL_3092: Unknown result type (might be due to invalid IL or missing references) //IL_309c: Unknown result type (might be due to invalid IL or missing references) //IL_30a1: Unknown result type (might be due to invalid IL or missing references) //IL_30ad: Unknown result type (might be due to invalid IL or missing references) //IL_5090: Unknown result type (might be due to invalid IL or missing references) //IL_5096: Unknown result type (might be due to invalid IL or missing references) //IL_50a1: Unknown result type (might be due to invalid IL or missing references) //IL_50ab: Unknown result type (might be due to invalid IL or missing references) //IL_50bc: Unknown result type (might be due to invalid IL or missing references) //IL_50c1: Unknown result type (might be due to invalid IL or missing references) //IL_50cb: Unknown result type (might be due to invalid IL or missing references) //IL_50d1: Unknown result type (might be due to invalid IL or missing references) //IL_50dc: Unknown result type (might be due to invalid IL or missing references) //IL_50e6: Unknown result type (might be due to invalid IL or missing references) //IL_50eb: Unknown result type (might be due to invalid IL or missing references) //IL_50f5: Unknown result type (might be due to invalid IL or missing references) //IL_50ff: Unknown result type (might be due to invalid IL or missing references) //IL_5104: Unknown result type (might be due to invalid IL or missing references) //IL_510e: Unknown result type (might be due to invalid IL or missing references) //IL_5113: Unknown result type (might be due to invalid IL or missing references) //IL_511e: Unknown result type (might be due to invalid IL or missing references) //IL_5128: Unknown result type (might be due to invalid IL or missing references) //IL_512e: Unknown result type (might be due to invalid IL or missing references) //IL_5133: Unknown result type (might be due to invalid IL or missing references) //IL_5138: Unknown result type (might be due to invalid IL or missing references) //IL_5143: Unknown result type (might be due to invalid IL or missing references) //IL_5149: Unknown result type (might be due to invalid IL or missing references) //IL_5154: Unknown result type (might be due to invalid IL or missing references) //IL_515e: Unknown result type (might be due to invalid IL or missing references) //IL_516f: Unknown result type (might be due to invalid IL or missing references) //IL_5174: Unknown result type (might be due to invalid IL or missing references) //IL_517e: Unknown result type (might be due to invalid IL or missing references) //IL_5184: Unknown result type (might be due to invalid IL or missing references) //IL_518f: Unknown result type (might be due to invalid IL or missing references) //IL_5199: Unknown result type (might be due to invalid IL or missing references) //IL_519e: Unknown result type (might be due to invalid IL or missing references) //IL_51a8: Unknown result type (might be due to invalid IL or missing references) //IL_51b2: Unknown result type (might be due to invalid IL or missing references) //IL_51b7: Unknown result type (might be due to invalid IL or missing references) //IL_51c1: Unknown result type (might be due to invalid IL or missing references) //IL_51c6: Unknown result type (might be due to invalid IL or missing references) //IL_51d1: Unknown result type (might be due to invalid IL or missing references) //IL_51e2: Unknown result type (might be due to invalid IL or missing references) //IL_51e7: Unknown result type (might be due to invalid IL or missing references) //IL_51f2: Unknown result type (might be due to invalid IL or missing references) //IL_51fc: Unknown result type (might be due to invalid IL or missing references) //IL_5202: Unknown result type (might be due to invalid IL or missing references) //IL_5207: Unknown result type (might be due to invalid IL or missing references) //IL_520c: Unknown result type (might be due to invalid IL or missing references) //IL_5218: Unknown result type (might be due to invalid IL or missing references) //IL_30fc: Unknown result type (might be due to invalid IL or missing references) //IL_3102: Unknown result type (might be due to invalid IL or missing references) //IL_310d: Unknown result type (might be due to invalid IL or missing references) //IL_3117: Unknown result type (might be due to invalid IL or missing references) //IL_3128: Unknown result type (might be due to invalid IL or missing references) //IL_312d: Unknown result type (might be due to invalid IL or missing references) //IL_3137: Unknown result type (might be due to invalid IL or missing references) //IL_313c: Unknown result type (might be due to invalid IL or missing references) //IL_3147: Unknown result type (might be due to invalid IL or missing references) //IL_3151: Unknown result type (might be due to invalid IL or missing references) //IL_3157: Unknown result type (might be due to invalid IL or missing references) //IL_315c: Unknown result type (might be due to invalid IL or missing references) //IL_3161: Unknown result type (might be due to invalid IL or missing references) //IL_316c: Unknown result type (might be due to invalid IL or missing references) //IL_3172: Unknown result type (might be due to invalid IL or missing references) //IL_317d: Unknown result type (might be due to invalid IL or missing references) //IL_3187: Unknown result type (might be due to invalid IL or missing references) //IL_3198: Unknown result type (might be due to invalid IL or missing references) //IL_319d: Unknown result type (might be due to invalid IL or missing references) //IL_31a7: Unknown result type (might be due to invalid IL or missing references) //IL_31ac: Unknown result type (might be due to invalid IL or missing references) //IL_31b7: Unknown result type (might be due to invalid IL or missing references) //IL_31c8: Unknown result type (might be due to invalid IL or missing references) //IL_31cd: Unknown result type (might be due to invalid IL or missing references) //IL_31d8: Unknown result type (might be due to invalid IL or missing references) //IL_31e2: Unknown result type (might be due to invalid IL or missing references) //IL_31e8: Unknown result type (might be due to invalid IL or missing references) //IL_31ed: Unknown result type (might be due to invalid IL or missing references) //IL_31f2: Unknown result type (might be due to invalid IL or missing references) //IL_31fe: Unknown result type (might be due to invalid IL or missing references) //IL_5252: Unknown result type (might be due to invalid IL or missing references) //IL_5258: Unknown result type (might be due to invalid IL or missing references) //IL_5263: Unknown result type (might be due to invalid IL or missing references) //IL_526d: Unknown result type (might be due to invalid IL or missing references) //IL_5272: Unknown result type (might be due to invalid IL or missing references) //IL_527c: Unknown result type (might be due to invalid IL or missing references) //IL_5281: Unknown result type (might be due to invalid IL or missing references) //IL_528c: Unknown result type (might be due to invalid IL or missing references) //IL_5296: Unknown result type (might be due to invalid IL or missing references) //IL_529c: Unknown result type (might be due to invalid IL or missing references) //IL_52a1: Unknown result type (might be due to invalid IL or missing references) //IL_52a6: Unknown result type (might be due to invalid IL or missing references) //IL_52b1: Unknown result type (might be due to invalid IL or missing references) //IL_52b7: Unknown result type (might be due to invalid IL or missing references) //IL_52c2: Unknown result type (might be due to invalid IL or missing references) //IL_52cc: Unknown result type (might be due to invalid IL or missing references) //IL_52d1: Unknown result type (might be due to invalid IL or missing references) //IL_52db: Unknown result type (might be due to invalid IL or missing references) //IL_52e0: Unknown result type (might be due to invalid IL or missing references) //IL_52eb: Unknown result type (might be due to invalid IL or missing references) //IL_52fc: Unknown result type (might be due to invalid IL or missing references) //IL_5301: Unknown result type (might be due to invalid IL or missing references) //IL_530c: Unknown result type (might be due to invalid IL or missing references) //IL_5316: Unknown result type (might be due to invalid IL or missing references) //IL_531c: Unknown result type (might be due to invalid IL or missing references) //IL_5321: Unknown result type (might be due to invalid IL or missing references) //IL_5326: Unknown result type (might be due to invalid IL or missing references) //IL_5332: Unknown result type (might be due to invalid IL or missing references) //IL_37e4: Unknown result type (might be due to invalid IL or missing references) //IL_37ea: Unknown result type (might be due to invalid IL or missing references) //IL_37f5: Unknown result type (might be due to invalid IL or missing references) //IL_37ff: Unknown result type (might be due to invalid IL or missing references) //IL_3810: Unknown result type (might be due to invalid IL or missing references) //IL_3815: Unknown result type (might be due to invalid IL or missing references) //IL_381f: Unknown result type (might be due to invalid IL or missing references) //IL_3824: Unknown result type (might be due to invalid IL or missing references) //IL_382f: Unknown result type (might be due to invalid IL or missing references) //IL_3839: Unknown result type (might be due to invalid IL or missing references) //IL_383f: Unknown result type (might be due to invalid IL or missing references) //IL_3844: Unknown result type (might be due to invalid IL or missing references) //IL_3849: Unknown result type (might be due to invalid IL or missing references) //IL_3854: Unknown result type (might be due to invalid IL or missing references) //IL_385a: Unknown result type (might be due to invalid IL or missing references) //IL_3865: Unknown result type (might be due to invalid IL or missing references) //IL_386f: Unknown result type (might be due to invalid IL or missing references) //IL_3880: Unknown result type (might be due to invalid IL or missing references) //IL_3885: Unknown result type (might be due to invalid IL or missing references) //IL_388f: Unknown result type (might be due to invalid IL or missing references) //IL_3894: Unknown result type (might be due to invalid IL or missing references) //IL_389f: Unknown result type (might be due to invalid IL or missing references) //IL_38b0: Unknown result type (might be due to invalid IL or missing references) //IL_38b5: Unknown result type (might be due to invalid IL or missing references) //IL_38c0: Unknown result type (might be due to invalid IL or missing references) //IL_38ca: Unknown result type (might be due to invalid IL or missing references) //IL_38d0: Unknown result type (might be due to invalid IL or missing references) //IL_38d5: Unknown result type (might be due to invalid IL or missing references) //IL_38da: Unknown result type (might be due to invalid IL or missing references) //IL_38e6: Unknown result type (might be due to invalid IL or missing references) //IL_3218: Unknown result type (might be due to invalid IL or missing references) //IL_321e: Unknown result type (might be due to invalid IL or missing references) //IL_3229: Unknown result type (might be due to invalid IL or missing references) //IL_3233: Unknown result type (might be due to invalid IL or missing references) //IL_3244: Unknown result type (might be due to invalid IL or missing references) //IL_3249: Unknown result type (might be due to invalid IL or missing references) //IL_3253: Unknown result type (might be due to invalid IL or missing references) //IL_325d: Unknown result type (might be due to invalid IL or missing references) //IL_3263: Unknown result type (might be due to invalid IL or missing references) //IL_326e: Unknown result type (might be due to invalid IL or missing references) //IL_3278: Unknown result type (might be due to invalid IL or missing references) //IL_327d: Unknown result type (might be due to invalid IL or missing references) //IL_3287: Unknown result type (might be due to invalid IL or missing references) //IL_328c: Unknown result type (might be due to invalid IL or missing references) //IL_3296: Unknown result type (might be due to invalid IL or missing references) //IL_329b: Unknown result type (might be due to invalid IL or missing references) //IL_32a6: Unknown result type (might be due to invalid IL or missing references) //IL_32b0: Unknown result type (might be due to invalid IL or missing references) //IL_32b6: Unknown result type (might be due to invalid IL or missing references) //IL_32bb: Unknown result type (might be due to invalid IL or missing references) //IL_32c0: Unknown result type (might be due to invalid IL or missing references) //IL_32cb: Unknown result type (might be due to invalid IL or missing references) //IL_32d1: Unknown result type (might be due to invalid IL or missing references) //IL_32dc: Unknown result type (might be due to invalid IL or missing references) //IL_32e6: Unknown result type (might be due to invalid IL or missing references) //IL_32f7: Unknown result type (might be due to invalid IL or missing references) //IL_32fc: Unknown result type (might be due to invalid IL or missing references) //IL_3306: Unknown result type (might be due to invalid IL or missing references) //IL_3310: Unknown result type (might be due to invalid IL or missing references) //IL_3316: Unknown result type (might be due to invalid IL or missing references) //IL_3321: Unknown result type (might be due to invalid IL or missing references) //IL_332b: Unknown result type (might be due to invalid IL or missing references) //IL_3330: Unknown result type (might be due to invalid IL or missing references) //IL_333a: Unknown result type (might be due to invalid IL or missing references) //IL_333f: Unknown result type (might be due to invalid IL or missing references) //IL_3349: Unknown result type (might be due to invalid IL or missing references) //IL_334e: Unknown result type (might be due to invalid IL or missing references) //IL_3359: Unknown result type (might be due to invalid IL or missing references) //IL_336a: Unknown result type (might be due to invalid IL or missing references) //IL_336f: Unknown result type (might be due to invalid IL or missing references) //IL_337a: Unknown result type (might be due to invalid IL or missing references) //IL_3384: Unknown result type (might be due to invalid IL or missing references) //IL_338a: Unknown result type (might be due to invalid IL or missing references) //IL_338f: Unknown result type (might be due to invalid IL or missing references) //IL_3394: Unknown result type (might be due to invalid IL or missing references) //IL_33a0: Unknown result type (might be due to invalid IL or missing references) //IL_536c: Unknown result type (might be due to invalid IL or missing references) //IL_5372: Unknown result type (might be due to invalid IL or missing references) //IL_5377: Unknown result type (might be due to invalid IL or missing references) //IL_5382: Unknown result type (might be due to invalid IL or missing references) //IL_5393: Unknown result type (might be due to invalid IL or missing references) //IL_539d: Unknown result type (might be due to invalid IL or missing references) //IL_53a2: Unknown result type (might be due to invalid IL or missing references) //IL_53ad: Unknown result type (might be due to invalid IL or missing references) //IL_53b7: Unknown result type (might be due to invalid IL or missing references) //IL_53bc: Unknown result type (might be due to invalid IL or missing references) //IL_53c7: Unknown result type (might be due to invalid IL or missing references) //IL_53d1: Unknown result type (might be due to invalid IL or missing references) //IL_53d6: Unknown result type (might be due to invalid IL or missing references) //IL_53e1: Unknown result type (might be due to invalid IL or missing references) //IL_53e7: Unknown result type (might be due to invalid IL or missing references) //IL_53ec: Unknown result type (might be due to invalid IL or missing references) //IL_53f7: Unknown result type (might be due to invalid IL or missing references) //IL_5408: Unknown result type (might be due to invalid IL or missing references) //IL_540d: Unknown result type (might be due to invalid IL or missing references) //IL_5418: Unknown result type (might be due to invalid IL or missing references) //IL_5429: Unknown result type (might be due to invalid IL or missing references) //IL_5433: Unknown result type (might be due to invalid IL or missing references) //IL_5438: Unknown result type (might be due to invalid IL or missing references) //IL_5443: Unknown result type (might be due to invalid IL or missing references) //IL_544d: Unknown result type (might be due to invalid IL or missing references) //IL_5452: Unknown result type (might be due to invalid IL or missing references) //IL_545d: Unknown result type (might be due to invalid IL or missing references) //IL_5467: Unknown result type (might be due to invalid IL or missing references) //IL_546c: Unknown result type (might be due to invalid IL or missing references) //IL_5478: Unknown result type (might be due to invalid IL or missing references) //IL_33ba: Unknown result type (might be due to invalid IL or missing references) //IL_33c0: Unknown result type (might be due to invalid IL or missing references) //IL_33cb: Unknown result type (might be due to invalid IL or missing references) //IL_33d5: Unknown result type (might be due to invalid IL or missing references) //IL_33e6: Unknown result type (might be due to invalid IL or missing references) //IL_33eb: Unknown result type (might be due to invalid IL or missing references) //IL_33f5: Unknown result type (might be due to invalid IL or missing references) //IL_33fb: Unknown result type (might be due to invalid IL or missing references) //IL_3406: Unknown result type (might be due to invalid IL or missing references) //IL_3410: Unknown result type (might be due to invalid IL or missing references) //IL_3415: Unknown result type (might be due to invalid IL or missing references) //IL_341f: Unknown result type (might be due to invalid IL or missing references) //IL_3424: Unknown result type (might be due to invalid IL or missing references) //IL_342e: Unknown result type (might be due to invalid IL or missing references) //IL_3433: Unknown result type (might be due to invalid IL or missing references) //IL_343e: Unknown result type (might be due to invalid IL or missing references) //IL_3448: Unknown result type (might be due to invalid IL or missing references) //IL_344e: Unknown result type (might be due to invalid IL or missing references) //IL_3453: Unknown result type (might be due to invalid IL or missing references) //IL_3458: Unknown result type (might be due to invalid IL or missing references) //IL_3463: Unknown result type (might be due to invalid IL or missing references) //IL_3469: Unknown result type (might be due to invalid IL or missing references) //IL_3474: Unknown result type (might be due to invalid IL or missing references) //IL_347e: Unknown result type (might be due to invalid IL or missing references) //IL_348f: Unknown result type (might be due to invalid IL or missing references) //IL_3494: Unknown result type (might be due to invalid IL or missing references) //IL_349e: Unknown result type (might be due to invalid IL or missing references) //IL_34a4: Unknown result type (might be due to invalid IL or missing references) //IL_34af: Unknown result type (might be due to invalid IL or missing references) //IL_34b9: Unknown result type (might be due to invalid IL or missing references) //IL_34be: Unknown result type (might be due to invalid IL or missing references) //IL_34c8: Unknown result type (might be due to invalid IL or missing references) //IL_34cd: Unknown result type (might be due to invalid IL or missing references) //IL_34d7: Unknown result type (might be due to invalid IL or missing references) //IL_34dc: Unknown result type (might be due to invalid IL or missing references) //IL_34e7: Unknown result type (might be due to invalid IL or missing references) //IL_34f8: Unknown result type (might be due to invalid IL or missing references) //IL_34fd: Unknown result type (might be due to invalid IL or missing references) //IL_3508: Unknown result type (might be due to invalid IL or missing references) //IL_3512: Unknown result type (might be due to invalid IL or missing references) //IL_3518: Unknown result type (might be due to invalid IL or missing references) //IL_351d: Unknown result type (might be due to invalid IL or missing references) //IL_3522: Unknown result type (might be due to invalid IL or missing references) //IL_352e: Unknown result type (might be due to invalid IL or missing references) //IL_54b2: Unknown result type (might be due to invalid IL or missing references) //IL_54b8: Unknown result type (might be due to invalid IL or missing references) //IL_54bd: Unknown result type (might be due to invalid IL or missing references) //IL_54c8: Unknown result type (might be due to invalid IL or missing references) //IL_54d9: Unknown result type (might be due to invalid IL or missing references) //IL_54e3: Unknown result type (might be due to invalid IL or missing references) //IL_54e8: Unknown result type (might be due to invalid IL or missing references) //IL_54f3: Unknown result type (might be due to invalid IL or missing references) //IL_54fd: Unknown result type (might be due to invalid IL or missing references) //IL_5502: Unknown result type (might be due to invalid IL or missing references) //IL_550d: Unknown result type (might be due to invalid IL or missing references) //IL_5517: Unknown result type (might be due to invalid IL or missing references) //IL_551c: Unknown result type (might be due to invalid IL or missing references) //IL_5527: Unknown result type (might be due to invalid IL or missing references) //IL_552d: Unknown result type (might be due to invalid IL or missing references) //IL_5532: Unknown result type (might be due to invalid IL or missing references) //IL_553d: Unknown result type (might be due to invalid IL or missing references) //IL_554e: Unknown result type (might be due to invalid IL or missing references) //IL_5553: Unknown result type (might be due to invalid IL or missing references) //IL_555e: Unknown result type (might be due to invalid IL or missing references) //IL_556f: Unknown result type (might be due to invalid IL or missing references) //IL_5579: Unknown result type (might be due to invalid IL or missing references) //IL_557e: Unknown result type (might be due to invalid IL or missing references) //IL_5589: Unknown result type (might be due to invalid IL or missing references) //IL_5593: Unknown result type (might be due to invalid IL or missing references) //IL_5598: Unknown result type (might be due to invalid IL or missing references) //IL_55a3: Unknown result type (might be due to invalid IL or missing references) //IL_55ad: Unknown result type (might be due to invalid IL or missing references) //IL_55b2: Unknown result type (might be due to invalid IL or missing references) //IL_55be: Unknown result type (might be due to invalid IL or missing references) //IL_3920: Unknown result type (might be due to invalid IL or missing references) //IL_3926: Unknown result type (might be due to invalid IL or missing references) //IL_3931: Unknown result type (might be due to invalid IL or missing references) //IL_393b: Unknown result type (might be due to invalid IL or missing references) //IL_394c: Unknown result type (might be due to invalid IL or missing references) //IL_3951: Unknown result type (might be due to invalid IL or missing references) //IL_395b: Unknown result type (might be due to invalid IL or missing references) //IL_3965: Unknown result type (might be due to invalid IL or missing references) //IL_396b: Unknown result type (might be due to invalid IL or missing references) //IL_3976: Unknown result type (might be due to invalid IL or missing references) //IL_3980: Unknown result type (might be due to invalid IL or missing references) //IL_3985: Unknown result type (might be due to invalid IL or missing references) //IL_398f: Unknown result type (might be due to invalid IL or missing references) //IL_3994: Unknown result type (might be due to invalid IL or missing references) //IL_399e: Unknown result type (might be due to invalid IL or missing references) //IL_39a3: Unknown result type (might be due to invalid IL or missing references) //IL_39ae: Unknown result type (might be due to invalid IL or missing references) //IL_39b8: Unknown result type (might be due to invalid IL or missing references) //IL_39be: Unknown result type (might be due to invalid IL or missing references) //IL_39c3: Unknown result type (might be due to invalid IL or missing references) //IL_39c8: Unknown result type (might be due to invalid IL or missing references) //IL_39d3: Unknown result type (might be due to invalid IL or missing references) //IL_39d9: Unknown result type (might be due to invalid IL or missing references) //IL_39e4: Unknown result type (might be due to invalid IL or missing references) //IL_39ee: Unknown result type (might be due to invalid IL or missing references) //IL_39ff: Unknown result type (might be due to invalid IL or missing references) //IL_3a04: Unknown result type (might be due to invalid IL or missing references) //IL_3a0e: Unknown result type (might be due to invalid IL or missing references) //IL_3a18: Unknown result type (might be due to invalid IL or missing references) //IL_3a1e: Unknown result type (might be due to invalid IL or missing references) //IL_3a29: Unknown result type (might be due to invalid IL or missing references) //IL_3a33: Unknown result type (might be due to invalid IL or missing references) //IL_3a38: Unknown result type (might be due to invalid IL or missing references) //IL_3a42: Unknown result type (might be due to invalid IL or missing references) //IL_3a47: Unknown result type (might be due to invalid IL or missing references) //IL_3a51: Unknown result type (might be due to invalid IL or missing references) //IL_3a56: Unknown result type (might be due to invalid IL or missing references) //IL_3a61: Unknown result type (might be due to invalid IL or missing references) //IL_3a72: Unknown result type (might be due to invalid IL or missing references) //IL_3a77: Unknown result type (might be due to invalid IL or missing references) //IL_3a82: Unknown result type (might be due to invalid IL or missing references) //IL_3a8c: Unknown result type (might be due to invalid IL or missing references) //IL_3a92: Unknown result type (might be due to invalid IL or missing references) //IL_3a97: Unknown result type (might be due to invalid IL or missing references) //IL_3a9c: Unknown result type (might be due to invalid IL or missing references) //IL_3aa8: Unknown result type (might be due to invalid IL or missing references) //IL_3548: Unknown result type (might be due to invalid IL or missing references) //IL_354e: Unknown result type (might be due to invalid IL or missing references) //IL_3559: Unknown result type (might be due to invalid IL or missing references) //IL_3563: Unknown result type (might be due to invalid IL or missing references) //IL_3574: Unknown result type (might be due to invalid IL or missing references) //IL_3579: Unknown result type (might be due to invalid IL or missing references) //IL_3583: Unknown result type (might be due to invalid IL or missing references) //IL_3589: Unknown result type (might be due to invalid IL or missing references) //IL_3594: Unknown result type (might be due to invalid IL or missing references) //IL_359e: Unknown result type (might be due to invalid IL or missing references) //IL_35a3: Unknown result type (might be due to invalid IL or missing references) //IL_35ad: Unknown result type (might be due to invalid IL or missing references) //IL_35b7: Unknown result type (might be due to invalid IL or missing references) //IL_35bc: Unknown result type (might be due to invalid IL or missing references) //IL_35c6: Unknown result type (might be due to invalid IL or missing references) //IL_35cb: Unknown result type (might be due to invalid IL or missing references) //IL_35d6: Unknown result type (might be due to invalid IL or missing references) //IL_35e0: Unknown result type (might be due to invalid IL or missing references) //IL_35e6: Unknown result type (might be due to invalid IL or missing references) //IL_35eb: Unknown result type (might be due to invalid IL or missing references) //IL_35f0: Unknown result type (might be due to invalid IL or missing references) //IL_35fb: Unknown result type (might be due to invalid IL or missing references) //IL_3601: Unknown result type (might be due to invalid IL or missing references) //IL_360c: Unknown result type (might be due to invalid IL or missing references) //IL_3616: Unknown result type (might be due to invalid IL or missing references) //IL_3627: Unknown result type (might be due to invalid IL or missing references) //IL_362c: Unknown result type (might be due to invalid IL or missing references) //IL_3636: Unknown result type (might be due to invalid IL or missing references) //IL_363c: Unknown result type (might be due to invalid IL or missing references) //IL_3647: Unknown result type (might be due to invalid IL or missing references) //IL_3651: Unknown result type (might be due to invalid IL or missing references) //IL_3656: Unknown result type (might be due to invalid IL or missing references) //IL_3660: Unknown result type (might be due to invalid IL or missing references) //IL_366a: Unknown result type (might be due to invalid IL or missing references) //IL_366f: Unknown result type (might be due to invalid IL or missing references) //IL_3679: Unknown result type (might be due to invalid IL or missing references) //IL_367e: Unknown result type (might be due to invalid IL or missing references) //IL_3689: Unknown result type (might be due to invalid IL or missing references) //IL_369a: Unknown result type (might be due to invalid IL or missing references) //IL_369f: Unknown result type (might be due to invalid IL or missing references) //IL_36aa: Unknown result type (might be due to invalid IL or missing references) //IL_36b4: Unknown result type (might be due to invalid IL or missing references) //IL_36ba: Unknown result type (might be due to invalid IL or missing references) //IL_36bf: Unknown result type (might be due to invalid IL or missing references) //IL_36c4: Unknown result type (might be due to invalid IL or missing references) //IL_36d0: Unknown result type (might be due to invalid IL or missing references) //IL_55f8: Unknown result type (might be due to invalid IL or missing references) //IL_55fe: Unknown result type (might be due to invalid IL or missing references) //IL_5603: Unknown result type (might be due to invalid IL or missing references) //IL_560e: Unknown result type (might be due to invalid IL or missing references) //IL_561f: Unknown result type (might be due to invalid IL or missing references) //IL_5629: Unknown result type (might be due to invalid IL or missing references) //IL_562e: Unknown result type (might be due to invalid IL or missing references) //IL_5639: Unknown result type (might be due to invalid IL or missing references) //IL_5643: Unknown result type (might be due to invalid IL or missing references) //IL_5648: Unknown result type (might be due to invalid IL or missing references) //IL_5653: Unknown result type (might be due to invalid IL or missing references) //IL_565d: Unknown result type (might be due to invalid IL or missing references) //IL_5662: Unknown result type (might be due to invalid IL or missing references) //IL_566d: Unknown result type (might be due to invalid IL or missing references) //IL_5673: Unknown result type (might be due to invalid IL or missing references) //IL_5678: Unknown result type (might be due to invalid IL or missing references) //IL_5683: Unknown result type (might be due to invalid IL or missing references) //IL_5694: Unknown result type (might be due to invalid IL or missing references) //IL_5699: Unknown result type (might be due to invalid IL or missing references) //IL_56a4: Unknown result type (might be due to invalid IL or missing references) //IL_56b5: Unknown result type (might be due to invalid IL or missing references) //IL_56bf: Unknown result type (might be due to invalid IL or missing references) //IL_56c4: Unknown result type (might be due to invalid IL or missing references) //IL_56cf: Unknown result type (might be due to invalid IL or missing references) //IL_56d9: Unknown result type (might be due to invalid IL or missing references) //IL_56de: Unknown result type (might be due to invalid IL or missing references) //IL_56e9: Unknown result type (might be due to invalid IL or missing references) //IL_56f3: Unknown result type (might be due to invalid IL or missing references) //IL_56f8: Unknown result type (might be due to invalid IL or missing references) //IL_5704: Unknown result type (might be due to invalid IL or missing references) //IL_36ea: Unknown result type (might be due to invalid IL or missing references) //IL_36f0: Unknown result type (might be due to invalid IL or missing references) //IL_36fb: Unknown result type (might be due to invalid IL or missing references) //IL_3705: Unknown result type (might be due to invalid IL or missing references) //IL_370a: Unknown result type (might be due to invalid IL or missing references) //IL_3714: Unknown result type (might be due to invalid IL or missing references) //IL_3719: Unknown result type (might be due to invalid IL or missing references) //IL_3724: Unknown result type (might be due to invalid IL or missing references) //IL_372e: Unknown result type (might be due to invalid IL or missing references) //IL_3734: Unknown result type (might be due to invalid IL or missing references) //IL_3739: Unknown result type (might be due to invalid IL or missing references) //IL_373e: Unknown result type (might be due to invalid IL or missing references) //IL_3749: Unknown result type (might be due to invalid IL or missing references) //IL_374f: Unknown result type (might be due to invalid IL or missing references) //IL_375a: Unknown result type (might be due to invalid IL or missing references) //IL_3764: Unknown result type (might be due to invalid IL or missing references) //IL_3769: Unknown result type (might be due to invalid IL or missing references) //IL_3773: Unknown result type (might be due to invalid IL or missing references) //IL_3778: Unknown result type (might be due to invalid IL or missing references) //IL_3783: Unknown result type (might be due to invalid IL or missing references) //IL_3794: Unknown result type (might be due to invalid IL or missing references) //IL_3799: Unknown result type (might be due to invalid IL or missing references) //IL_37a4: Unknown result type (might be due to invalid IL or missing references) //IL_37ae: Unknown result type (might be due to invalid IL or missing references) //IL_37b4: Unknown result type (might be due to invalid IL or missing references) //IL_37b9: Unknown result type (might be due to invalid IL or missing references) //IL_37be: Unknown result type (might be due to invalid IL or missing references) //IL_37ca: Unknown result type (might be due to invalid IL or missing references) //IL_573e: Unknown result type (might be due to invalid IL or missing references) //IL_5744: Unknown result type (might be due to invalid IL or missing references) //IL_5749: Unknown result type (might be due to invalid IL or missing references) //IL_5754: Unknown result type (might be due to invalid IL or missing references) //IL_5765: Unknown result type (might be due to invalid IL or missing references) //IL_576f: Unknown result type (might be due to invalid IL or missing references) //IL_5774: Unknown result type (might be due to invalid IL or missing references) //IL_577f: Unknown result type (might be due to invalid IL or missing references) //IL_5789: Unknown result type (might be due to invalid IL or missing references) //IL_578e: Unknown result type (might be due to invalid IL or missing references) //IL_5799: Unknown result type (might be due to invalid IL or missing references) //IL_57a3: Unknown result type (might be due to invalid IL or missing references) //IL_57a8: Unknown result type (might be due to invalid IL or missing references) //IL_57b3: Unknown result type (might be due to invalid IL or missing references) //IL_57b9: Unknown result type (might be due to invalid IL or missing references) //IL_57be: Unknown result type (might be due to invalid IL or missing references) //IL_57c9: Unknown result type (might be due to invalid IL or missing references) //IL_57da: Unknown result type (might be due to invalid IL or missing references) //IL_57df: Unknown result type (might be due to invalid IL or missing references) //IL_57ea: Unknown result type (might be due to invalid IL or missing references) //IL_57fb: Unknown result type (might be due to invalid IL or missing references) //IL_5805: Unknown result type (might be due to invalid IL or missing references) //IL_580a: Unknown result type (might be due to invalid IL or missing references) //IL_5815: Unknown result type (might be due to invalid IL or missing references) //IL_581f: Unknown result type (might be due to invalid IL or missing references) //IL_5824: Unknown result type (might be due to invalid IL or missing references) //IL_582f: Unknown result type (might be due to invalid IL or missing references) //IL_5839: Unknown result type (might be due to invalid IL or missing references) //IL_583e: Unknown result type (might be due to invalid IL or missing references) //IL_584a: Unknown result type (might be due to invalid IL or missing references) //IL_3ae2: Unknown result type (might be due to invalid IL or missing references) //IL_3ae8: Unknown result type (might be due to invalid IL or missing references) //IL_3af3: Unknown result type (might be due to invalid IL or missing references) //IL_3afd: Unknown result type (might be due to invalid IL or missing references) //IL_3b0e: Unknown result type (might be due to invalid IL or missing references) //IL_3b13: Unknown result type (might be due to invalid IL or missing references) //IL_3b1d: Unknown result type (might be due to invalid IL or missing references) //IL_3b23: Unknown result type (might be due to invalid IL or missing references) //IL_3b2e: Unknown result type (might be due to invalid IL or missing references) //IL_3b38: Unknown result type (might be due to invalid IL or missing references) //IL_3b3d: Unknown result type (might be due to invalid IL or missing references) //IL_3b47: Unknown result type (might be due to invalid IL or missing references) //IL_3b4c: Unknown result type (might be due to invalid IL or missing references) //IL_3b56: Unknown result type (might be due to invalid IL or missing references) //IL_3b5b: Unknown result type (might be due to invalid IL or missing references) //IL_3b66: Unknown result type (might be due to invalid IL or missing references) //IL_3b70: Unknown result type (might be due to invalid IL or missing references) //IL_3b76: Unknown result type (might be due to invalid IL or missing references) //IL_3b7b: Unknown result type (might be due to invalid IL or missing references) //IL_3b80: Unknown result type (might be due to invalid IL or missing references) //IL_3b8b: Unknown result type (might be due to invalid IL or missing references) //IL_3b91: Unknown result type (might be due to invalid IL or missing references) //IL_3b9c: Unknown result type (might be due to invalid IL or missing references) //IL_3ba6: Unknown result type (might be due to invalid IL or missing references) //IL_3bb7: Unknown result type (might be due to invalid IL or missing references) //IL_3bbc: Unknown result type (might be due to invalid IL or missing references) //IL_3bc6: Unknown result type (might be due to invalid IL or missing references) //IL_3bcc: Unknown result type (might be due to invalid IL or missing references) //IL_3bd7: Unknown result type (might be due to invalid IL or missing references) //IL_3be1: Unknown result type (might be due to invalid IL or missing references) //IL_3be6: Unknown result type (might be due to invalid IL or missing references) //IL_3bf0: Unknown result type (might be due to invalid IL or missing references) //IL_3bf5: Unknown result type (might be due to invalid IL or missing references) //IL_3bff: Unknown result type (might be due to invalid IL or missing references) //IL_3c04: Unknown result type (might be due to invalid IL or missing references) //IL_3c0f: Unknown result type (might be due to invalid IL or missing references) //IL_3c20: Unknown result type (might be due to invalid IL or missing references) //IL_3c25: Unknown result type (might be due to invalid IL or missing references) //IL_3c30: Unknown result type (might be due to invalid IL or missing references) //IL_3c3a: Unknown result type (might be due to invalid IL or missing references) //IL_3c40: Unknown result type (might be due to invalid IL or missing references) //IL_3c45: Unknown result type (might be due to invalid IL or missing references) //IL_3c4a: Unknown result type (might be due to invalid IL or missing references) //IL_3c56: Unknown result type (might be due to invalid IL or missing references) //IL_5884: Unknown result type (might be due to invalid IL or missing references) //IL_588a: Unknown result type (might be due to invalid IL or missing references) //IL_588f: Unknown result type (might be due to invalid IL or missing references) //IL_589a: Unknown result type (might be due to invalid IL or missing references) //IL_58ab: Unknown result type (might be due to invalid IL or missing references) //IL_58b5: Unknown result type (might be due to invalid IL or missing references) //IL_58ba: Unknown result type (might be due to invalid IL or missing references) //IL_58c5: Unknown result type (might be due to invalid IL or missing references) //IL_58cf: Unknown result type (might be due to invalid IL or missing references) //IL_58d4: Unknown result type (might be due to invalid IL or missing references) //IL_58df: Unknown result type (might be due to invalid IL or missing references) //IL_58e9: Unknown result type (might be due to invalid IL or missing references) //IL_58ee: Unknown result type (might be due to invalid IL or missing references) //IL_58f9: Unknown result type (might be due to invalid IL or missing references) //IL_58ff: Unknown result type (might be due to invalid IL or missing references) //IL_5904: Unknown result type (might be due to invalid IL or missing references) //IL_590f: Unknown result type (might be due to invalid IL or missing references) //IL_5920: Unknown result type (might be due to invalid IL or missing references) //IL_5925: Unknown result type (might be due to invalid IL or missing references) //IL_5930: Unknown result type (might be due to invalid IL or missing references) //IL_5941: Unknown result type (might be due to invalid IL or missing references) //IL_594b: Unknown result type (might be due to invalid IL or missing references) //IL_5950: Unknown result type (might be due to invalid IL or missing references) //IL_595b: Unknown result type (might be due to invalid IL or missing references) //IL_5965: Unknown result type (might be due to invalid IL or missing references) //IL_596a: Unknown result type (might be due to invalid IL or missing references) //IL_5975: Unknown result type (might be due to invalid IL or missing references) //IL_597f: Unknown result type (might be due to invalid IL or missing references) //IL_5984: Unknown result type (might be due to invalid IL or missing references) //IL_5990: Unknown result type (might be due to invalid IL or missing references) //IL_59ca: Unknown result type (might be due to invalid IL or missing references) //IL_59d0: Unknown result type (might be due to invalid IL or missing references) //IL_59d5: Unknown result type (might be due to invalid IL or missing references) //IL_59e0: Unknown result type (might be due to invalid IL or missing references) //IL_59f1: Unknown result type (might be due to invalid IL or missing references) //IL_59fb: Unknown result type (might be due to invalid IL or missing references) //IL_5a00: Unknown result type (might be due to invalid IL or missing references) //IL_5a0b: Unknown result type (might be due to invalid IL or missing references) //IL_5a15: Unknown result type (might be due to invalid IL or missing references) //IL_5a1a: Unknown result type (might be due to invalid IL or missing references) //IL_5a25: Unknown result type (might be due to invalid IL or missing references) //IL_5a2f: Unknown result type (might be due to invalid IL or missing references) //IL_5a34: Unknown result type (might be due to invalid IL or missing references) //IL_5a3f: Unknown result type (might be due to invalid IL or missing references) //IL_5a45: Unknown result type (might be due to invalid IL or missing references) //IL_5a4a: Unknown result type (might be due to invalid IL or missing references) //IL_5a55: Unknown result type (might be due to invalid IL or missing references) //IL_5a66: Unknown result type (might be due to invalid IL or missing references) //IL_5a6b: Unknown result type (might be due to invalid IL or missing references) //IL_5a76: Unknown result type (might be due to invalid IL or missing references) //IL_5a87: Unknown result type (might be due to invalid IL or missing references) //IL_5a91: Unknown result type (might be due to invalid IL or missing references) //IL_5a96: Unknown result type (might be due to invalid IL or missing references) //IL_5aa1: Unknown result type (might be due to invalid IL or missing references) //IL_5aab: Unknown result type (might be due to invalid IL or missing references) //IL_5ab0: Unknown result type (might be due to invalid IL or missing references) //IL_5abb: Unknown result type (might be due to invalid IL or missing references) //IL_5ac5: Unknown result type (might be due to invalid IL or missing references) //IL_5aca: Unknown result type (might be due to invalid IL or missing references) //IL_5ad6: Unknown result type (might be due to invalid IL or missing references) //IL_3c90: Unknown result type (might be due to invalid IL or missing references) //IL_3c96: Unknown result type (might be due to invalid IL or missing references) //IL_3ca1: Unknown result type (might be due to invalid IL or missing references) //IL_3cab: Unknown result type (might be due to invalid IL or missing references) //IL_3cbc: Unknown result type (might be due to invalid IL or missing references) //IL_3cc1: Unknown result type (might be due to invalid IL or missing references) //IL_3ccb: Unknown result type (might be due to invalid IL or missing references) //IL_3cd1: Unknown result type (might be due to invalid IL or missing references) //IL_3cdc: Unknown result type (might be due to invalid IL or missing references) //IL_3ce6: Unknown result type (might be due to invalid IL or missing references) //IL_3ceb: Unknown result type (might be due to invalid IL or missing references) //IL_3cf5: Unknown result type (might be due to invalid IL or missing references) //IL_3cff: Unknown result type (might be due to invalid IL or missing references) //IL_3d04: Unknown result type (might be due to invalid IL or missing references) //IL_3d0e: Unknown result type (might be due to invalid IL or missing references) //IL_3d13: Unknown result type (might be due to invalid IL or missing references) //IL_3d1e: Unknown result type (might be due to invalid IL or missing references) //IL_3d28: Unknown result type (might be due to invalid IL or missing references) //IL_3d2e: Unknown result type (might be due to invalid IL or missing references) //IL_3d33: Unknown result type (might be due to invalid IL or missing references) //IL_3d38: Unknown result type (might be due to invalid IL or missing references) //IL_3d43: Unknown result type (might be due to invalid IL or missing references) //IL_3d49: Unknown result type (might be due to invalid IL or missing references) //IL_3d54: Unknown result type (might be due to invalid IL or missing references) //IL_3d5e: Unknown result type (might be due to invalid IL or missing references) //IL_3d6f: Unknown result type (might be due to invalid IL or missing references) //IL_3d74: Unknown result type (might be due to invalid IL or missing references) //IL_3d7e: Unknown result type (might be due to invalid IL or missing references) //IL_3d84: Unknown result type (might be due to invalid IL or missing references) //IL_3d8f: Unknown result type (might be due to invalid IL or missing references) //IL_3d99: Unknown result type (might be due to invalid IL or missing references) //IL_3d9e: Unknown result type (might be due to invalid IL or missing references) //IL_3da8: Unknown result type (might be due to invalid IL or missing references) //IL_3db2: Unknown result type (might be due to invalid IL or missing references) //IL_3db7: Unknown result type (might be due to invalid IL or missing references) //IL_3dc1: Unknown result type (might be due to invalid IL or missing references) //IL_3dc6: Unknown result type (might be due to invalid IL or missing references) //IL_3dd1: Unknown result type (might be due to invalid IL or missing references) //IL_3de2: Unknown result type (might be due to invalid IL or missing references) //IL_3de7: Unknown result type (might be due to invalid IL or missing references) //IL_3df2: Unknown result type (might be due to invalid IL or missing references) //IL_3dfc: Unknown result type (might be due to invalid IL or missing references) //IL_3e02: Unknown result type (might be due to invalid IL or missing references) //IL_3e07: Unknown result type (might be due to invalid IL or missing references) //IL_3e0c: Unknown result type (might be due to invalid IL or missing references) //IL_3e18: Unknown result type (might be due to invalid IL or missing references) //IL_5b25: Unknown result type (might be due to invalid IL or missing references) //IL_5b2b: Unknown result type (might be due to invalid IL or missing references) //IL_5b36: Unknown result type (might be due to invalid IL or missing references) //IL_5b40: Unknown result type (might be due to invalid IL or missing references) //IL_5b51: Unknown result type (might be due to invalid IL or missing references) //IL_5b56: Unknown result type (might be due to invalid IL or missing references) //IL_5b60: Unknown result type (might be due to invalid IL or missing references) //IL_5b65: Unknown result type (might be due to invalid IL or missing references) //IL_5b70: Unknown result type (might be due to invalid IL or missing references) //IL_5b7a: Unknown result type (might be due to invalid IL or missing references) //IL_5b80: Unknown result type (might be due to invalid IL or missing references) //IL_5b85: Unknown result type (might be due to invalid IL or missing references) //IL_5b8a: Unknown result type (might be due to invalid IL or missing references) //IL_5b95: Unknown result type (might be due to invalid IL or missing references) //IL_5b9b: Unknown result type (might be due to invalid IL or missing references) //IL_5ba6: Unknown result type (might be due to invalid IL or missing references) //IL_5bb0: Unknown result type (might be due to invalid IL or missing references) //IL_5bc1: Unknown result type (might be due to invalid IL or missing references) //IL_5bc6: Unknown result type (might be due to invalid IL or missing references) //IL_5bd0: Unknown result type (might be due to invalid IL or missing references) //IL_5bd5: Unknown result type (might be due to invalid IL or missing references) //IL_5be0: Unknown result type (might be due to invalid IL or missing references) //IL_5bf1: Unknown result type (might be due to invalid IL or missing references) //IL_5bf6: Unknown result type (might be due to invalid IL or missing references) //IL_5c01: Unknown result type (might be due to invalid IL or missing references) //IL_5c0b: Unknown result type (might be due to invalid IL or missing references) //IL_5c11: Unknown result type (might be due to invalid IL or missing references) //IL_5c16: Unknown result type (might be due to invalid IL or missing references) //IL_5c1b: Unknown result type (might be due to invalid IL or missing references) //IL_5c27: Unknown result type (might be due to invalid IL or missing references) //IL_620d: Unknown result type (might be due to invalid IL or missing references) //IL_6213: Unknown result type (might be due to invalid IL or missing references) //IL_621e: Unknown result type (might be due to invalid IL or missing references) //IL_6228: Unknown result type (might be due to invalid IL or missing references) //IL_6239: Unknown result type (might be due to invalid IL or missing references) //IL_623e: Unknown result type (might be due to invalid IL or missing references) //IL_6248: Unknown result type (might be due to invalid IL or missing references) //IL_624d: Unknown result type (might be due to invalid IL or missing references) //IL_6258: Unknown result type (might be due to invalid IL or missing references) //IL_6262: Unknown result type (might be due to invalid IL or missing references) //IL_6268: Unknown result type (might be due to invalid IL or missing references) //IL_626d: Unknown result type (might be due to invalid IL or missing references) //IL_6272: Unknown result type (might be due to invalid IL or missing references) //IL_627d: Unknown result type (might be due to invalid IL or missing references) //IL_6283: Unknown result type (might be due to invalid IL or missing references) //IL_628e: Unknown result type (might be due to invalid IL or missing references) //IL_6298: Unknown result type (might be due to invalid IL or missing references) //IL_62a9: Unknown result type (might be due to invalid IL or missing references) //IL_62ae: Unknown result type (might be due to invalid IL or missing references) //IL_62b8: Unknown result type (might be due to invalid IL or missing references) //IL_62bd: Unknown result type (might be due to invalid IL or missing references) //IL_62c8: Unknown result type (might be due to invalid IL or missing references) //IL_62d9: Unknown result type (might be due to invalid IL or missing references) //IL_62de: Unknown result type (might be due to invalid IL or missing references) //IL_62e9: Unknown result type (might be due to invalid IL or missing references) //IL_62f3: Unknown result type (might be due to invalid IL or missing references) //IL_62f9: Unknown result type (might be due to invalid IL or missing references) //IL_62fe: Unknown result type (might be due to invalid IL or missing references) //IL_6303: Unknown result type (might be due to invalid IL or missing references) //IL_630f: Unknown result type (might be due to invalid IL or missing references) //IL_5c41: Unknown result type (might be due to invalid IL or missing references) //IL_5c47: Unknown result type (might be due to invalid IL or missing references) //IL_5c52: Unknown result type (might be due to invalid IL or missing references) //IL_5c5c: Unknown result type (might be due to invalid IL or missing references) //IL_5c6d: Unknown result type (might be due to invalid IL or missing references) //IL_5c72: Unknown result type (might be due to invalid IL or missing references) //IL_5c7c: Unknown result type (might be due to invalid IL or missing references) //IL_5c86: Unknown result type (might be due to invalid IL or missing references) //IL_5c8c: Unknown result type (might be due to invalid IL or missing references) //IL_5c97: Unknown result type (might be due to invalid IL or missing references) //IL_5ca1: Unknown result type (might be due to invalid IL or missing references) //IL_5ca6: Unknown result type (might be due to invalid IL or missing references) //IL_5cb0: Unknown result type (might be due to invalid IL or missing references) //IL_5cb5: Unknown result type (might be due to invalid IL or missing references) //IL_5cbf: Unknown result type (might be due to invalid IL or missing references) //IL_5cc4: Unknown result type (might be due to invalid IL or missing references) //IL_5ccf: Unknown result type (might be due to invalid IL or missing references) //IL_5cd9: Unknown result type (might be due to invalid IL or missing references) //IL_5cdf: Unknown result type (might be due to invalid IL or missing references) //IL_5ce4: Unknown result type (might be due to invalid IL or missing references) //IL_5ce9: Unknown result type (might be due to invalid IL or missing references) //IL_5cf4: Unknown result type (might be due to invalid IL or missing references) //IL_5cfa: Unknown result type (might be due to invalid IL or missing references) //IL_5d05: Unknown result type (might be due to invalid IL or missing references) //IL_5d0f: Unknown result type (might be due to invalid IL or missing references) //IL_5d20: Unknown result type (might be due to invalid IL or missing references) //IL_5d25: Unknown result type (might be due to invalid IL or missing references) //IL_5d2f: Unknown result type (might be due to invalid IL or missing references) //IL_5d39: Unknown result type (might be due to invalid IL or missing references) //IL_5d3f: Unknown result type (might be due to invalid IL or missing references) //IL_5d4a: Unknown result type (might be due to invalid IL or missing references) //IL_5d54: Unknown result type (might be due to invalid IL or missing references) //IL_5d59: Unknown result type (might be due to invalid IL or missing references) //IL_5d63: Unknown result type (might be due to invalid IL or missing references) //IL_5d68: Unknown result type (might be due to invalid IL or missing references) //IL_5d72: Unknown result type (might be due to invalid IL or missing references) //IL_5d77: Unknown result type (might be due to invalid IL or missing references) //IL_5d82: Unknown result type (might be due to invalid IL or missing references) //IL_5d93: Unknown result type (might be due to invalid IL or missing references) //IL_5d98: Unknown result type (might be due to invalid IL or missing references) //IL_5da3: Unknown result type (might be due to invalid IL or missing references) //IL_5dad: Unknown result type (might be due to invalid IL or missing references) //IL_5db3: Unknown result type (might be due to invalid IL or missing references) //IL_5db8: Unknown result type (might be due to invalid IL or missing references) //IL_5dbd: Unknown result type (might be due to invalid IL or missing references) //IL_5dc9: Unknown result type (might be due to invalid IL or missing references) //IL_3e52: Unknown result type (might be due to invalid IL or missing references) //IL_3e58: Unknown result type (might be due to invalid IL or missing references) //IL_3e63: Unknown result type (might be due to invalid IL or missing references) //IL_3e6d: Unknown result type (might be due to invalid IL or missing references) //IL_3e72: Unknown result type (might be due to invalid IL or missing references) //IL_3e7c: Unknown result type (might be due to invalid IL or missing references) //IL_3e81: Unknown result type (might be due to invalid IL or missing references) //IL_3e8c: Unknown result type (might be due to invalid IL or missing references) //IL_3e96: Unknown result type (might be due to invalid IL or missing references) //IL_3e9c: Unknown result type (might be due to invalid IL or missing references) //IL_3ea1: Unknown result type (might be due to invalid IL or missing references) //IL_3ea6: Unknown result type (might be due to invalid IL or missing references) //IL_3eb1: Unknown result type (might be due to invalid IL or missing references) //IL_3eb7: Unknown result type (might be due to invalid IL or missing references) //IL_3ec2: Unknown result type (might be due to invalid IL or missing references) //IL_3ecc: Unknown result type (might be due to invalid IL or missing references) //IL_3ed1: Unknown result type (might be due to invalid IL or missing references) //IL_3edb: Unknown result type (might be due to invalid IL or missing references) //IL_3ee0: Unknown result type (might be due to invalid IL or missing references) //IL_3eeb: Unknown result type (might be due to invalid IL or missing references) //IL_3efc: Unknown result type (might be due to invalid IL or missing references) //IL_3f01: Unknown result type (might be due to invalid IL or missing references) //IL_3f0c: Unknown result type (might be due to invalid IL or missing references) //IL_3f16: Unknown result type (might be due to invalid IL or missing references) //IL_3f1c: Unknown result type (might be due to invalid IL or missing references) //IL_3f21: Unknown result type (might be due to invalid IL or missing references) //IL_3f26: Unknown result type (might be due to invalid IL or missing references) //IL_3f32: Unknown result type (might be due to invalid IL or missing references) //IL_5de3: Unknown result type (might be due to invalid IL or missing references) //IL_5de9: Unknown result type (might be due to invalid IL or missing references) //IL_5df4: Unknown result type (might be due to invalid IL or missing references) //IL_5dfe: Unknown result type (might be due to invalid IL or missing references) //IL_5e0f: Unknown result type (might be due to invalid IL or missing references) //IL_5e14: Unknown result type (might be due to invalid IL or missing references) //IL_5e1e: Unknown result type (might be due to invalid IL or missing references) //IL_5e24: Unknown result type (might be due to invalid IL or missing references) //IL_5e2f: Unknown result type (might be due to invalid IL or missing references) //IL_5e39: Unknown result type (might be due to invalid IL or missing references) //IL_5e3e: Unknown result type (might be due to invalid IL or missing references) //IL_5e48: Unknown result type (might be due to invalid IL or missing references) //IL_5e4d: Unknown result type (might be due to invalid IL or missing references) //IL_5e57: Unknown result type (might be due to invalid IL or missing references) //IL_5e5c: Unknown result type (might be due to invalid IL or missing references) //IL_5e67: Unknown result type (might be due to invalid IL or missing references) //IL_5e71: Unknown result type (might be due to invalid IL or missing references) //IL_5e77: Unknown result type (might be due to invalid IL or missing references) //IL_5e7c: Unknown result type (might be due to invalid IL or missing references) //IL_5e81: Unknown result type (might be due to invalid IL or missing references) //IL_5e8c: Unknown result type (might be due to invalid IL or missing references) //IL_5e92: Unknown result type (might be due to invalid IL or missing references) //IL_5e9d: Unknown result type (might be due to invalid IL or missing references) //IL_5ea7: Unknown result type (might be due to invalid IL or missing references) //IL_5eb8: Unknown result type (might be due to invalid IL or missing references) //IL_5ebd: Unknown result type (might be due to invalid IL or missing references) //IL_5ec7: Unknown result type (might be due to invalid IL or missing references) //IL_5ecd: Unknown result type (might be due to invalid IL or missing references) //IL_5ed8: Unknown result type (might be due to invalid IL or missing references) //IL_5ee2: Unknown result type (might be due to invalid IL or missing references) //IL_5ee7: Unknown result type (might be due to invalid IL or missing references) //IL_5ef1: Unknown result type (might be due to invalid IL or missing references) //IL_5ef6: Unknown result type (might be due to invalid IL or missing references) //IL_5f00: Unknown result type (might be due to invalid IL or missing references) //IL_5f05: Unknown result type (might be due to invalid IL or missing references) //IL_5f10: Unknown result type (might be due to invalid IL or missing references) //IL_5f21: Unknown result type (might be due to invalid IL or missing references) //IL_5f26: Unknown result type (might be due to invalid IL or missing references) //IL_5f31: Unknown result type (might be due to invalid IL or missing references) //IL_5f3b: Unknown result type (might be due to invalid IL or missing references) //IL_5f41: Unknown result type (might be due to invalid IL or missing references) //IL_5f46: Unknown result type (might be due to invalid IL or missing references) //IL_5f4b: Unknown result type (might be due to invalid IL or missing references) //IL_5f57: Unknown result type (might be due to invalid IL or missing references) //IL_6349: Unknown result type (might be due to invalid IL or missing references) //IL_634f: Unknown result type (might be due to invalid IL or missing references) //IL_635a: Unknown result type (might be due to invalid IL or missing references) //IL_6364: Unknown result type (might be due to invalid IL or missing references) //IL_6375: Unknown result type (might be due to invalid IL or missing references) //IL_637a: Unknown result type (might be due to invalid IL or missing references) //IL_6384: Unknown result type (might be due to invalid IL or missing references) //IL_638e: Unknown result type (might be due to invalid IL or missing references) //IL_6394: Unknown result type (might be due to invalid IL or missing references) //IL_639f: Unknown result type (might be due to invalid IL or missing references) //IL_63a9: Unknown result type (might be due to invalid IL or missing references) //IL_63ae: Unknown result type (might be due to invalid IL or missing references) //IL_63b8: Unknown result type (might be due to invalid IL or missing references) //IL_63bd: Unknown result type (might be due to invalid IL or missing references) //IL_63c7: Unknown result type (might be due to invalid IL or missing references) //IL_63cc: Unknown result type (might be due to invalid IL or missing references) //IL_63d7: Unknown result type (might be due to invalid IL or missing references) //IL_63e1: Unknown result type (might be due to invalid IL or missing references) //IL_63e7: Unknown result type (might be due to invalid IL or missing references) //IL_63ec: Unknown result type (might be due to invalid IL or missing references) //IL_63f1: Unknown result type (might be due to invalid IL or missing references) //IL_63fc: Unknown result type (might be due to invalid IL or missing references) //IL_6402: Unknown result type (might be due to invalid IL or missing references) //IL_640d: Unknown result type (might be due to invalid IL or missing references) //IL_6417: Unknown result type (might be due to invalid IL or missing references) //IL_6428: Unknown result type (might be due to invalid IL or missing references) //IL_642d: Unknown result type (might be due to invalid IL or missing references) //IL_6437: Unknown result type (might be due to invalid IL or missing references) //IL_6441: Unknown result type (might be due to invalid IL or missing references) //IL_6447: Unknown result type (might be due to invalid IL or missing references) //IL_6452: Unknown result type (might be due to invalid IL or missing references) //IL_645c: Unknown result type (might be due to invalid IL or missing references) //IL_6461: Unknown result type (might be due to invalid IL or missing references) //IL_646b: Unknown result type (might be due to invalid IL or missing references) //IL_6470: Unknown result type (might be due to invalid IL or missing references) //IL_647a: Unknown result type (might be due to invalid IL or missing references) //IL_647f: Unknown result type (might be due to invalid IL or missing references) //IL_648a: Unknown result type (might be due to invalid IL or missing references) //IL_649b: Unknown result type (might be due to invalid IL or missing references) //IL_64a0: Unknown result type (might be due to invalid IL or missing references) //IL_64ab: Unknown result type (might be due to invalid IL or missing references) //IL_64b5: Unknown result type (might be due to invalid IL or missing references) //IL_64bb: Unknown result type (might be due to invalid IL or missing references) //IL_64c0: Unknown result type (might be due to invalid IL or missing references) //IL_64c5: Unknown result type (might be due to invalid IL or missing references) //IL_64d1: Unknown result type (might be due to invalid IL or missing references) //IL_5f71: Unknown result type (might be due to invalid IL or missing references) //IL_5f77: Unknown result type (might be due to invalid IL or missing references) //IL_5f82: Unknown result type (might be due to invalid IL or missing references) //IL_5f8c: Unknown result type (might be due to invalid IL or missing references) //IL_5f9d: Unknown result type (might be due to invalid IL or missing references) //IL_5fa2: Unknown result type (might be due to invalid IL or missing references) //IL_5fac: Unknown result type (might be due to invalid IL or missing references) //IL_5fb2: Unknown result type (might be due to invalid IL or missing references) //IL_5fbd: Unknown result type (might be due to invalid IL or missing references) //IL_5fc7: Unknown result type (might be due to invalid IL or missing references) //IL_5fcc: Unknown result type (might be due to invalid IL or missing references) //IL_5fd6: Unknown result type (might be due to invalid IL or missing references) //IL_5fe0: Unknown result type (might be due to invalid IL or missing references) //IL_5fe5: Unknown result type (might be due to invalid IL or missing references) //IL_5fef: Unknown result type (might be due to invalid IL or missing references) //IL_5ff4: Unknown result type (might be due to invalid IL or missing references) //IL_5fff: Unknown result type (might be due to invalid IL or missing references) //IL_6009: Unknown result type (might be due to invalid IL or missing references) //IL_600f: Unknown result type (might be due to invalid IL or missing references) //IL_6014: Unknown result type (might be due to invalid IL or missing references) //IL_6019: Unknown result type (might be due to invalid IL or missing references) //IL_6024: Unknown result type (might be due to invalid IL or missing references) //IL_602a: Unknown result type (might be due to invalid IL or missing references) //IL_6035: Unknown result type (might be due to invalid IL or missing references) //IL_603f: Unknown result type (might be due to invalid IL or missing references) //IL_6050: Unknown result type (might be due to invalid IL or missing references) //IL_6055: Unknown result type (might be due to invalid IL or missing references) //IL_605f: Unknown result type (might be due to invalid IL or missing references) //IL_6065: Unknown result type (might be due to invalid IL or missing references) //IL_6070: Unknown result type (might be due to invalid IL or missing references) //IL_607a: Unknown result type (might be due to invalid IL or missing references) //IL_607f: Unknown result type (might be due to invalid IL or missing references) //IL_6089: Unknown result type (might be due to invalid IL or missing references) //IL_6093: Unknown result type (might be due to invalid IL or missing references) //IL_6098: Unknown result type (might be due to invalid IL or missing references) //IL_60a2: Unknown result type (might be due to invalid IL or missing references) //IL_60a7: Unknown result type (might be due to invalid IL or missing references) //IL_60b2: Unknown result type (might be due to invalid IL or missing references) //IL_60c3: Unknown result type (might be due to invalid IL or missing references) //IL_60c8: Unknown result type (might be due to invalid IL or missing references) //IL_60d3: Unknown result type (might be due to invalid IL or missing references) //IL_60dd: Unknown result type (might be due to invalid IL or missing references) //IL_60e3: Unknown result type (might be due to invalid IL or missing references) //IL_60e8: Unknown result type (might be due to invalid IL or missing references) //IL_60ed: Unknown result type (might be due to invalid IL or missing references) //IL_60f9: Unknown result type (might be due to invalid IL or missing references) //IL_6113: Unknown result type (might be due to invalid IL or missing references) //IL_6119: Unknown result type (might be due to invalid IL or missing references) //IL_6124: Unknown result type (might be due to invalid IL or missing references) //IL_612e: Unknown result type (might be due to invalid IL or missing references) //IL_6133: Unknown result type (might be due to invalid IL or missing references) //IL_613d: Unknown result type (might be due to invalid IL or missing references) //IL_6142: Unknown result type (might be due to invalid IL or missing references) //IL_614d: Unknown result type (might be due to invalid IL or missing references) //IL_6157: Unknown result type (might be due to invalid IL or missing references) //IL_615d: Unknown result type (might be due to invalid IL or missing references) //IL_6162: Unknown result type (might be due to invalid IL or missing references) //IL_6167: Unknown result type (might be due to invalid IL or missing references) //IL_6172: Unknown result type (might be due to invalid IL or missing references) //IL_6178: Unknown result type (might be due to invalid IL or missing references) //IL_6183: Unknown result type (might be due to invalid IL or missing references) //IL_618d: Unknown result type (might be due to invalid IL or missing references) //IL_6192: Unknown result type (might be due to invalid IL or missing references) //IL_619c: Unknown result type (might be due to invalid IL or missing references) //IL_61a1: Unknown result type (might be due to invalid IL or missing references) //IL_61ac: Unknown result type (might be due to invalid IL or missing references) //IL_61bd: Unknown result type (might be due to invalid IL or missing references) //IL_61c2: Unknown result type (might be due to invalid IL or missing references) //IL_61cd: Unknown result type (might be due to invalid IL or missing references) //IL_61d7: Unknown result type (might be due to invalid IL or missing references) //IL_61dd: Unknown result type (might be due to invalid IL or missing references) //IL_61e2: Unknown result type (might be due to invalid IL or missing references) //IL_61e7: Unknown result type (might be due to invalid IL or missing references) //IL_61f3: Unknown result type (might be due to invalid IL or missing references) //IL_650b: Unknown result type (might be due to invalid IL or missing references) //IL_6511: Unknown result type (might be due to invalid IL or missing references) //IL_651c: Unknown result type (might be due to invalid IL or missing references) //IL_6526: Unknown result type (might be due to invalid IL or missing references) //IL_6537: Unknown result type (might be due to invalid IL or missing references) //IL_653c: Unknown result type (might be due to invalid IL or missing references) //IL_6546: Unknown result type (might be due to invalid IL or missing references) //IL_654c: Unknown result type (might be due to invalid IL or missing references) //IL_6557: Unknown result type (might be due to invalid IL or missing references) //IL_6561: Unknown result type (might be due to invalid IL or missing references) //IL_6566: Unknown result type (might be due to invalid IL or missing references) //IL_6570: Unknown result type (might be due to invalid IL or missing references) //IL_6575: Unknown result type (might be due to invalid IL or missing references) //IL_657f: Unknown result type (might be due to invalid IL or missing references) //IL_6584: Unknown result type (might be due to invalid IL or missing references) //IL_658f: Unknown result type (might be due to invalid IL or missing references) //IL_6599: Unknown result type (might be due to invalid IL or missing references) //IL_659f: Unknown result type (might be due to invalid IL or missing references) //IL_65a4: Unknown result type (might be due to invalid IL or missing references) //IL_65a9: Unknown result type (might be due to invalid IL or missing references) //IL_65b4: Unknown result type (might be due to invalid IL or missing references) //IL_65ba: Unknown result type (might be due to invalid IL or missing references) //IL_65c5: Unknown result type (might be due to invalid IL or missing references) //IL_65cf: Unknown result type (might be due to invalid IL or missing references) //IL_65e0: Unknown result type (might be due to invalid IL or missing references) //IL_65e5: Unknown result type (might be due to invalid IL or missing references) //IL_65ef: Unknown result type (might be due to invalid IL or missing references) //IL_65f5: Unknown result type (might be due to invalid IL or missing references) //IL_6600: Unknown result type (might be due to invalid IL or missing references) //IL_660a: Unknown result type (might be due to invalid IL or missing references) //IL_660f: Unknown result type (might be due to invalid IL or missing references) //IL_6619: Unknown result type (might be due to invalid IL or missing references) //IL_661e: Unknown result type (might be due to invalid IL or missing references) //IL_6628: Unknown result type (might be due to invalid IL or missing references) //IL_662d: Unknown result type (might be due to invalid IL or missing references) //IL_6638: Unknown result type (might be due to invalid IL or missing references) //IL_6649: Unknown result type (might be due to invalid IL or missing references) //IL_664e: Unknown result type (might be due to invalid IL or missing references) //IL_6659: Unknown result type (might be due to invalid IL or missing references) //IL_6663: Unknown result type (might be due to invalid IL or missing references) //IL_6669: Unknown result type (might be due to invalid IL or missing references) //IL_666e: Unknown result type (might be due to invalid IL or missing references) //IL_6673: Unknown result type (might be due to invalid IL or missing references) //IL_667f: Unknown result type (might be due to invalid IL or missing references) //IL_66b9: Unknown result type (might be due to invalid IL or missing references) //IL_66bf: Unknown result type (might be due to invalid IL or missing references) //IL_66ca: Unknown result type (might be due to invalid IL or missing references) //IL_66d4: Unknown result type (might be due to invalid IL or missing references) //IL_66e5: Unknown result type (might be due to invalid IL or missing references) //IL_66ea: Unknown result type (might be due to invalid IL or missing references) //IL_66f4: Unknown result type (might be due to invalid IL or missing references) //IL_66fa: Unknown result type (might be due to invalid IL or missing references) //IL_6705: Unknown result type (might be due to invalid IL or missing references) //IL_670f: Unknown result type (might be due to invalid IL or missing references) //IL_6714: Unknown result type (might be due to invalid IL or missing references) //IL_671e: Unknown result type (might be due to invalid IL or missing references) //IL_6728: Unknown result type (might be due to invalid IL or missing references) //IL_672d: Unknown result type (might be due to invalid IL or missing references) //IL_6737: Unknown result type (might be due to invalid IL or missing references) //IL_673c: Unknown result type (might be due to invalid IL or missing references) //IL_6747: Unknown result type (might be due to invalid IL or missing references) //IL_6751: Unknown result type (might be due to invalid IL or missing references) //IL_6757: Unknown result type (might be due to invalid IL or missing references) //IL_675c: Unknown result type (might be due to invalid IL or missing references) //IL_6761: Unknown result type (might be due to invalid IL or missing references) //IL_676c: Unknown result type (might be due to invalid IL or missing references) //IL_6772: Unknown result type (might be due to invalid IL or missing references) //IL_677d: Unknown result type (might be due to invalid IL or missing references) //IL_6787: Unknown result type (might be due to invalid IL or missing references) //IL_6798: Unknown result type (might be due to invalid IL or missing references) //IL_679d: Unknown result type (might be due to invalid IL or missing references) //IL_67a7: Unknown result type (might be due to invalid IL or missing references) //IL_67ad: Unknown result type (might be due to invalid IL or missing references) //IL_67b8: Unknown result type (might be due to invalid IL or missing references) //IL_67c2: Unknown result type (might be due to invalid IL or missing references) //IL_67c7: Unknown result type (might be due to invalid IL or missing references) //IL_67d1: Unknown result type (might be due to invalid IL or missing references) //IL_67db: Unknown result type (might be due to invalid IL or missing references) //IL_67e0: Unknown result type (might be due to invalid IL or missing references) //IL_67ea: Unknown result type (might be due to invalid IL or missing references) //IL_67ef: Unknown result type (might be due to invalid IL or missing references) //IL_67fa: Unknown result type (might be due to invalid IL or missing references) //IL_680b: Unknown result type (might be due to invalid IL or missing references) //IL_6810: Unknown result type (might be due to invalid IL or missing references) //IL_681b: Unknown result type (might be due to invalid IL or missing references) //IL_6825: Unknown result type (might be due to invalid IL or missing references) //IL_682b: Unknown result type (might be due to invalid IL or missing references) //IL_6830: Unknown result type (might be due to invalid IL or missing references) //IL_6835: Unknown result type (might be due to invalid IL or missing references) //IL_6841: Unknown result type (might be due to invalid IL or missing references) //IL_687b: Unknown result type (might be due to invalid IL or missing references) //IL_6881: Unknown result type (might be due to invalid IL or missing references) //IL_688c: Unknown result type (might be due to invalid IL or missing references) //IL_6896: Unknown result type (might be due to invalid IL or missing references) //IL_689b: Unknown result type (might be due to invalid IL or missing references) //IL_68a5: Unknown result type (might be due to invalid IL or missing references) //IL_68aa: Unknown result type (might be due to invalid IL or missing references) //IL_68b5: Unknown result type (might be due to invalid IL or missing references) //IL_68bf: Unknown result type (might be due to invalid IL or missing references) //IL_68c5: Unknown result type (might be due to invalid IL or missing references) //IL_68ca: Unknown result type (might be due to invalid IL or missing references) //IL_68cf: Unknown result type (might be due to invalid IL or missing references) //IL_68da: Unknown result type (might be due to invalid IL or missing references) //IL_68e0: Unknown result type (might be due to invalid IL or missing references) //IL_68eb: Unknown result type (might be due to invalid IL or missing references) //IL_68f5: Unknown result type (might be due to invalid IL or missing references) //IL_68fa: Unknown result type (might be due to invalid IL or missing references) //IL_6904: Unknown result type (might be due to invalid IL or missing references) //IL_6909: Unknown result type (might be due to invalid IL or missing references) //IL_6914: Unknown result type (might be due to invalid IL or missing references) //IL_6925: Unknown result type (might be due to invalid IL or missing references) //IL_692a: Unknown result type (might be due to invalid IL or missing references) //IL_6935: Unknown result type (might be due to invalid IL or missing references) //IL_693f: Unknown result type (might be due to invalid IL or missing references) //IL_6945: Unknown result type (might be due to invalid IL or missing references) //IL_694a: Unknown result type (might be due to invalid IL or missing references) //IL_694f: Unknown result type (might be due to invalid IL or missing references) //IL_695b: Unknown result type (might be due to invalid IL or missing references) if (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Collider)((Component)this).GetComponent()).enabled) { Bounds bounds = ((Collider)((Component)this).GetComponent()).bounds; colCenter = ((Bounds)(ref bounds)).center; Bounds bounds2 = ((Collider)((Component)this).GetComponent()).bounds; colTop = ((Bounds)(ref bounds2)).center + ((Component)this).GetComponent().height * 0.5f * ((Component)this).transform.up; } else if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { Bounds bounds3 = ((Component)this).GetComponent().bounds; colCenter = ((Bounds)(ref bounds3)).center; if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { Bounds bounds4 = ((Component)this).GetComponent().bounds; colTop = ((Bounds)(ref bounds4)).center + ((Component)this).GetComponent().height * 0.5f * ((Component)this).transform.up; } else if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { Bounds bounds5 = ((Component)this).GetComponent().bounds; colTop = ((Bounds)(ref bounds5)).center + ((Component)this).GetComponent().radius * ((Component)this).transform.up; } else if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { Bounds bounds6 = ((Component)this).GetComponent().bounds; colTop = ((Bounds)(ref bounds6)).center + ((Component)this).GetComponent().size.y * 0.5f * ((Component)this).transform.up; } } if (pullingUp) { return; } if ((!Physics.Linecast(((Component)this).transform.position + bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f, ((Component)this).transform.position + bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 0.1875f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + bottomNoSurfaceDetectorHeight2 - ((Component)this).transform.right / 3f - topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.up * 0.1875f, ((Component)this).transform.position + bottomNoSurfaceDetectorHeight2 - ((Component)this).transform.right / 3f - topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 0.1875f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.up * 0.1875f, ((Component)this).transform.position + bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 0.1875f, ref hit, LayerMask.op_Implicit(collisionLayers))) || (Physics.Linecast(((Component)this).transform.position + bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f, ((Component)this).transform.position + bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 0.1875f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2 && Physics.Linecast(((Component)this).transform.position + bottomNoSurfaceDetectorHeight2 - ((Component)this).transform.right / 3f - topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.up * 0.1875f, ((Component)this).transform.position + bottomNoSurfaceDetectorHeight2 - ((Component)this).transform.right / 3f - topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 0.1875f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2 && Physics.Linecast(((Component)this).transform.position + bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.up * 0.1875f, ((Component)this).transform.position + bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 0.1875f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2)) { reachedBottomPoint = true; if (currentlyClimbingWall && dropOffAtBottom2 && ((Component)this).transform.rotation == lastRot2 && wallIsClimbable && Input.GetAxisRaw("Vertical") < 0f) { moveDirection = Vector3.zero; jumpedOffClimbableObjectTimer = 0f; jumpedOffClimbableObjectDirection = -((Component)this).transform.forward * distanceToPushOffAfterLettingGo2; if ((Object)(object)animator != (Object)null) { animator.CrossFade(entryAnimation, 0f, -1, 0f); } animator.SetFloat("climbState", 0f); currentlyClimbingWall = false; } } else if (!currentlyClimbingWall || (currentlyClimbingWall && (!grounded.currentlyGrounded || dropOffAtBottom2))) { reachedBottomPoint = false; } if ((!Physics.Linecast(((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f, ((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + topNoSurfaceDetectorHeight2 - ((Component)this).transform.right / 3f - topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.up * 1.125f, ((Component)this).transform.position + topNoSurfaceDetectorHeight2 - ((Component)this).transform.right / 3f - topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.up * 1.125f, ((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers))) || (Physics.Linecast(((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f, ((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2 && Physics.Linecast(((Component)this).transform.position + topNoSurfaceDetectorHeight2 - ((Component)this).transform.right / 3f - topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.up * 1.125f, ((Component)this).transform.position + topNoSurfaceDetectorHeight2 - ((Component)this).transform.right / 3f - topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2 && Physics.Linecast(((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.up * 1.125f, ((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2)) { aboveTop = true; } else { aboveTop = false; } if (aboveTop || ((!Physics.Linecast(((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f, ((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) || (Physics.Linecast(((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f, ((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2)) && (!Physics.Linecast(((Component)this).transform.position + topNoSurfaceDetectorHeight2 - ((Component)this).transform.right / 3f - topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.up * 1.125f, ((Component)this).transform.position + topNoSurfaceDetectorHeight2 - ((Component)this).transform.right / 3f - topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) || (Physics.Linecast(((Component)this).transform.position + topNoSurfaceDetectorHeight2 - ((Component)this).transform.right / 3f - topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.up * 1.125f, ((Component)this).transform.position + topNoSurfaceDetectorHeight2 - ((Component)this).transform.right / 3f - topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2))) || ((!Physics.Linecast(((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f, ((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) || (Physics.Linecast(((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f, ((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2)) && (!Physics.Linecast(((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.up * 1.125f, ((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) || (Physics.Linecast(((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.up * 1.125f, ((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2))) || Physics.Linecast(colCenter, colTop + ((Component)this).transform.up / 6f, ref hit, LayerMask.op_Implicit(collisionLayers))) { reachedTopPoint = true; if (aboveTop && currentlyClimbingWall && pullUpAtTop2 && ((Component)this).transform.rotation == lastRot2 && wallIsClimbable && Input.GetAxisRaw("Vertical") > 0f && Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.up + ((Component)this).transform.forward / 1.25f + ((Component)this).transform.up * 1.5f + pullUpLocationForward2, ((Component)this).transform.position + ((Component)this).transform.up * 0.8f + ((Component)this).transform.forward / 1.75f + pullUpLocationForward2, ref hit, LayerMask.op_Implicit(collisionLayers))) { pullUpLocationAcquired = true; movingToPullUpLocation = true; pullingUp = true; } } else { reachedTopPoint = false; } i++; if (i == climbing.Length) { i = 0; } if (!firstTest && !secondTest && !thirdTest && !fourthTest && !fifthTest) { SetClimbingVariables(); } if ((Physics.Linecast(((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f, ((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.up * 1.125f, ((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f + ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f - ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f + ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f - ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || aboveTop) { if ((Physics.Linecast(((Component)this).transform.position + (topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + (topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f * 3f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 4f + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f * 3f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 4f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 3f + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 3f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f * 3f) / 4f + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f * 3f) / 4f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + (topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2), ((Component)this).transform.position + (topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + (((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f * 3f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 4f + (((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f * 3f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 4f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + (((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 3f + (((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 3f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + (((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f * 3f) / 4f + (((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f * 3f) / 4f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + (((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f + (((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2), ((Component)this).transform.position + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + (((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f + ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f - ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f + ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f - ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f + ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f - ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f + ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f - ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f + ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f - ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f + ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f - ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2)) { thirdTest = true; reachedRightPoint = false; } else if ((!Physics.Linecast(((Component)this).transform.position + (topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + (topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f * 3f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 4f + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f * 3f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 4f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 2f + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 2f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f * 3f) / 4f + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f * 3f) / 4f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(collisionLayers))) || (Physics.Linecast(((Component)this).transform.position + (topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + (topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f * 3f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 4f + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f * 3f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 4f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 2f + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 2f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f * 3f) / 4f + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f * 3f) / 4f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2 && Physics.Linecast(((Component)this).transform.position + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2)) { thirdTest = false; reachedRightPoint = true; } else { reachedRightPoint = false; } } else { reachedRightPoint = true; } i++; if (i == climbing.Length) { i = 0; } if (!firstTest && !secondTest && !thirdTest && !fourthTest && !fifthTest) { SetClimbingVariables(); } if ((Physics.Linecast(((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f, ((Component)this).transform.position + topNoSurfaceDetectorHeight2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + topNoSurfaceDetectorHeight2 - ((Component)this).transform.right / 3f - topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.up * 1.125f, ((Component)this).transform.position + topNoSurfaceDetectorHeight2 - ((Component)this).transform.right / 3f - topAndBottomNoSurfaceDetectorsWidth2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f - ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f + ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f - ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f + ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || aboveTop) { if ((Physics.Linecast(((Component)this).transform.position + (topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + (topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f * 3f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 4f - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f * 3f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 4f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 3f - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 3f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f * 3f) / 4f - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f * 3f) / 4f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + (topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f - (((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2), ((Component)this).transform.position + (topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) - (((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f * 3f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 4f - (((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f * 3f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 4f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) - (((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 3f - (((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 3f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) - (((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f * 3f) / 4f - (((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f * 3f) / 4f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) - (((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f - (((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2), ((Component)this).transform.position + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) - (((Component)this).transform.right / 3f + topAndBottomNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f - ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f + ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f - ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f + ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f - ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f + ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f - ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f + ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f - ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f + ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) || (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f - ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f + ((Component)this).transform.right / 2f + ((Component)this).transform.forward / 4f, ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2)) { fourthTest = true; reachedLeftPoint = false; } else if ((!Physics.Linecast(((Component)this).transform.position + (topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + (topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f * 3f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 4f - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f * 3f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 4f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 2f - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 2f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f * 3f) / 4f - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f * 3f) / 4f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(collisionLayers)) && !Physics.Linecast(((Component)this).transform.position + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(collisionLayers))) || (Physics.Linecast(((Component)this).transform.position + (topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + (topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f * 3f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 4f - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f * 3f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 4f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 2f - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f) / 2f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2 && Physics.Linecast(((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f * 3f) / 4f - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + ((topNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 1.125f * (sideNoSurfaceDetectorsHeight2 + 1f)) * 0.99f + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f * 3f) / 4f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2 && Physics.Linecast(((Component)this).transform.position + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ((Component)this).transform.position + (bottomNoSurfaceDetectorHeight2 + ((Component)this).transform.up * 0.1875f) * 0.99f + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) - (((Component)this).transform.right / 3f + sideNoSurfaceDetectorsWidth2), ref hit, LayerMask.op_Implicit(collisionLayers)) && ((Component)((RaycastHit)(ref hit)).transform).tag != climbableTag2)) { fourthTest = false; reachedLeftPoint = true; } else { reachedLeftPoint = false; } } else { reachedLeftPoint = true; } } private void WallClimbingRotation() { //IL_37a3: Unknown result type (might be due to invalid IL or missing references) //IL_37a8: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0088: Unknown result type (might be due to invalid IL or missing references) //IL_008e: Unknown result type (might be due to invalid IL or missing references) //IL_00af: Unknown result type (might be due to invalid IL or missing references) //IL_00b5: Unknown result type (might be due to invalid IL or missing references) //IL_00ba: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) //IL_00d6: Unknown result type (might be due to invalid IL or missing references) //IL_00e0: Unknown result type (might be due to invalid IL or missing references) //IL_00e5: Unknown result type (might be due to invalid IL or missing references) //IL_00f0: Unknown result type (might be due to invalid IL or missing references) //IL_00f6: Unknown result type (might be due to invalid IL or missing references) //IL_00fb: Unknown result type (might be due to invalid IL or missing references) //IL_0106: Unknown result type (might be due to invalid IL or missing references) //IL_0110: Unknown result type (might be due to invalid IL or missing references) //IL_0115: Unknown result type (might be due to invalid IL or missing references) //IL_0120: Unknown result type (might be due to invalid IL or missing references) //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_013b: Unknown result type (might be due to invalid IL or missing references) //IL_0140: Unknown result type (might be due to invalid IL or missing references) //IL_014c: Unknown result type (might be due to invalid IL or missing references) //IL_07e4: Unknown result type (might be due to invalid IL or missing references) //IL_07ea: Unknown result type (might be due to invalid IL or missing references) //IL_01df: Unknown result type (might be due to invalid IL or missing references) //IL_01e5: Unknown result type (might be due to invalid IL or missing references) //IL_01ea: Unknown result type (might be due to invalid IL or missing references) //IL_01f5: Unknown result type (might be due to invalid IL or missing references) //IL_0206: Unknown result type (might be due to invalid IL or missing references) //IL_0210: Unknown result type (might be due to invalid IL or missing references) //IL_0215: Unknown result type (might be due to invalid IL or missing references) //IL_0220: Unknown result type (might be due to invalid IL or missing references) //IL_0226: Unknown result type (might be due to invalid IL or missing references) //IL_022b: Unknown result type (might be due to invalid IL or missing references) //IL_0236: Unknown result type (might be due to invalid IL or missing references) //IL_0240: Unknown result type (might be due to invalid IL or missing references) //IL_0245: Unknown result type (might be due to invalid IL or missing references) //IL_0250: Unknown result type (might be due to invalid IL or missing references) //IL_0261: Unknown result type (might be due to invalid IL or missing references) //IL_026b: Unknown result type (might be due to invalid IL or missing references) //IL_0270: Unknown result type (might be due to invalid IL or missing references) //IL_027c: Unknown result type (might be due to invalid IL or missing references) //IL_0f2c: Unknown result type (might be due to invalid IL or missing references) //IL_0f32: Unknown result type (might be due to invalid IL or missing references) //IL_0f37: Unknown result type (might be due to invalid IL or missing references) //IL_0f42: Unknown result type (might be due to invalid IL or missing references) //IL_0f53: Unknown result type (might be due to invalid IL or missing references) //IL_0f5d: Unknown result type (might be due to invalid IL or missing references) //IL_0f62: Unknown result type (might be due to invalid IL or missing references) //IL_0f6d: Unknown result type (might be due to invalid IL or missing references) //IL_0f73: Unknown result type (might be due to invalid IL or missing references) //IL_0f78: Unknown result type (might be due to invalid IL or missing references) //IL_0f83: Unknown result type (might be due to invalid IL or missing references) //IL_0f94: Unknown result type (might be due to invalid IL or missing references) //IL_0f99: Unknown result type (might be due to invalid IL or missing references) //IL_0fa4: Unknown result type (might be due to invalid IL or missing references) //IL_0fb5: Unknown result type (might be due to invalid IL or missing references) //IL_0fbf: Unknown result type (might be due to invalid IL or missing references) //IL_0fc4: Unknown result type (might be due to invalid IL or missing references) //IL_0fd0: Unknown result type (might be due to invalid IL or missing references) //IL_080b: Unknown result type (might be due to invalid IL or missing references) //IL_0811: Unknown result type (might be due to invalid IL or missing references) //IL_0816: Unknown result type (might be due to invalid IL or missing references) //IL_0821: Unknown result type (might be due to invalid IL or missing references) //IL_0832: Unknown result type (might be due to invalid IL or missing references) //IL_083c: Unknown result type (might be due to invalid IL or missing references) //IL_0841: Unknown result type (might be due to invalid IL or missing references) //IL_084c: Unknown result type (might be due to invalid IL or missing references) //IL_0852: Unknown result type (might be due to invalid IL or missing references) //IL_0857: Unknown result type (might be due to invalid IL or missing references) //IL_0862: Unknown result type (might be due to invalid IL or missing references) //IL_086c: Unknown result type (might be due to invalid IL or missing references) //IL_0871: Unknown result type (might be due to invalid IL or missing references) //IL_087c: Unknown result type (might be due to invalid IL or missing references) //IL_088d: Unknown result type (might be due to invalid IL or missing references) //IL_0897: Unknown result type (might be due to invalid IL or missing references) //IL_089c: Unknown result type (might be due to invalid IL or missing references) //IL_08a8: Unknown result type (might be due to invalid IL or missing references) //IL_030f: Unknown result type (might be due to invalid IL or missing references) //IL_0315: Unknown result type (might be due to invalid IL or missing references) //IL_031a: Unknown result type (might be due to invalid IL or missing references) //IL_0325: Unknown result type (might be due to invalid IL or missing references) //IL_0336: Unknown result type (might be due to invalid IL or missing references) //IL_0340: Unknown result type (might be due to invalid IL or missing references) //IL_0345: Unknown result type (might be due to invalid IL or missing references) //IL_0350: Unknown result type (might be due to invalid IL or missing references) //IL_0356: Unknown result type (might be due to invalid IL or missing references) //IL_035b: Unknown result type (might be due to invalid IL or missing references) //IL_0366: Unknown result type (might be due to invalid IL or missing references) //IL_0370: Unknown result type (might be due to invalid IL or missing references) //IL_0375: Unknown result type (might be due to invalid IL or missing references) //IL_0380: Unknown result type (might be due to invalid IL or missing references) //IL_0391: Unknown result type (might be due to invalid IL or missing references) //IL_039b: Unknown result type (might be due to invalid IL or missing references) //IL_03a0: Unknown result type (might be due to invalid IL or missing references) //IL_03ac: Unknown result type (might be due to invalid IL or missing references) //IL_36c0: Unknown result type (might be due to invalid IL or missing references) //IL_36c5: Unknown result type (might be due to invalid IL or missing references) //IL_104d: Unknown result type (might be due to invalid IL or missing references) //IL_1053: Unknown result type (might be due to invalid IL or missing references) //IL_1058: Unknown result type (might be due to invalid IL or missing references) //IL_1063: Unknown result type (might be due to invalid IL or missing references) //IL_1074: Unknown result type (might be due to invalid IL or missing references) //IL_107e: Unknown result type (might be due to invalid IL or missing references) //IL_1083: Unknown result type (might be due to invalid IL or missing references) //IL_108e: Unknown result type (might be due to invalid IL or missing references) //IL_1094: Unknown result type (might be due to invalid IL or missing references) //IL_1099: Unknown result type (might be due to invalid IL or missing references) //IL_10a4: Unknown result type (might be due to invalid IL or missing references) //IL_10b5: Unknown result type (might be due to invalid IL or missing references) //IL_10ba: Unknown result type (might be due to invalid IL or missing references) //IL_10c5: Unknown result type (might be due to invalid IL or missing references) //IL_10d6: Unknown result type (might be due to invalid IL or missing references) //IL_10e0: Unknown result type (might be due to invalid IL or missing references) //IL_10e5: Unknown result type (might be due to invalid IL or missing references) //IL_10f1: Unknown result type (might be due to invalid IL or missing references) //IL_093b: Unknown result type (might be due to invalid IL or missing references) //IL_0941: Unknown result type (might be due to invalid IL or missing references) //IL_0946: Unknown result type (might be due to invalid IL or missing references) //IL_0951: Unknown result type (might be due to invalid IL or missing references) //IL_0962: Unknown result type (might be due to invalid IL or missing references) //IL_096c: Unknown result type (might be due to invalid IL or missing references) //IL_0971: Unknown result type (might be due to invalid IL or missing references) //IL_097c: Unknown result type (might be due to invalid IL or missing references) //IL_0982: Unknown result type (might be due to invalid IL or missing references) //IL_0987: Unknown result type (might be due to invalid IL or missing references) //IL_0992: Unknown result type (might be due to invalid IL or missing references) //IL_099c: Unknown result type (might be due to invalid IL or missing references) //IL_09a1: Unknown result type (might be due to invalid IL or missing references) //IL_09ac: Unknown result type (might be due to invalid IL or missing references) //IL_09bd: Unknown result type (might be due to invalid IL or missing references) //IL_09c7: Unknown result type (might be due to invalid IL or missing references) //IL_09cc: Unknown result type (might be due to invalid IL or missing references) //IL_09d8: Unknown result type (might be due to invalid IL or missing references) //IL_043f: Unknown result type (might be due to invalid IL or missing references) //IL_0445: Unknown result type (might be due to invalid IL or missing references) //IL_044a: Unknown result type (might be due to invalid IL or missing references) //IL_0455: Unknown result type (might be due to invalid IL or missing references) //IL_0466: Unknown result type (might be due to invalid IL or missing references) //IL_0470: Unknown result type (might be due to invalid IL or missing references) //IL_0475: Unknown result type (might be due to invalid IL or missing references) //IL_0480: Unknown result type (might be due to invalid IL or missing references) //IL_0486: Unknown result type (might be due to invalid IL or missing references) //IL_048b: Unknown result type (might be due to invalid IL or missing references) //IL_0496: Unknown result type (might be due to invalid IL or missing references) //IL_04a0: Unknown result type (might be due to invalid IL or missing references) //IL_04a5: Unknown result type (might be due to invalid IL or missing references) //IL_04b0: Unknown result type (might be due to invalid IL or missing references) //IL_04c1: Unknown result type (might be due to invalid IL or missing references) //IL_04cb: Unknown result type (might be due to invalid IL or missing references) //IL_04d0: Unknown result type (might be due to invalid IL or missing references) //IL_04dc: Unknown result type (might be due to invalid IL or missing references) //IL_116e: Unknown result type (might be due to invalid IL or missing references) //IL_1174: Unknown result type (might be due to invalid IL or missing references) //IL_1179: Unknown result type (might be due to invalid IL or missing references) //IL_1184: Unknown result type (might be due to invalid IL or missing references) //IL_1195: Unknown result type (might be due to invalid IL or missing references) //IL_119f: Unknown result type (might be due to invalid IL or missing references) //IL_11a4: Unknown result type (might be due to invalid IL or missing references) //IL_11af: Unknown result type (might be due to invalid IL or missing references) //IL_11b5: Unknown result type (might be due to invalid IL or missing references) //IL_11ba: Unknown result type (might be due to invalid IL or missing references) //IL_11c5: Unknown result type (might be due to invalid IL or missing references) //IL_11d6: Unknown result type (might be due to invalid IL or missing references) //IL_11db: Unknown result type (might be due to invalid IL or missing references) //IL_11e6: Unknown result type (might be due to invalid IL or missing references) //IL_11f7: Unknown result type (might be due to invalid IL or missing references) //IL_1201: Unknown result type (might be due to invalid IL or missing references) //IL_1206: Unknown result type (might be due to invalid IL or missing references) //IL_1212: Unknown result type (might be due to invalid IL or missing references) //IL_0a6b: Unknown result type (might be due to invalid IL or missing references) //IL_0a71: Unknown result type (might be due to invalid IL or missing references) //IL_0a76: Unknown result type (might be due to invalid IL or missing references) //IL_0a81: Unknown result type (might be due to invalid IL or missing references) //IL_0a92: Unknown result type (might be due to invalid IL or missing references) //IL_0a9c: Unknown result type (might be due to invalid IL or missing references) //IL_0aa1: Unknown result type (might be due to invalid IL or missing references) //IL_0aac: Unknown result type (might be due to invalid IL or missing references) //IL_0ab2: Unknown result type (might be due to invalid IL or missing references) //IL_0ab7: Unknown result type (might be due to invalid IL or missing references) //IL_0ac2: Unknown result type (might be due to invalid IL or missing references) //IL_0acc: Unknown result type (might be due to invalid IL or missing references) //IL_0ad1: Unknown result type (might be due to invalid IL or missing references) //IL_0adc: Unknown result type (might be due to invalid IL or missing references) //IL_0aed: Unknown result type (might be due to invalid IL or missing references) //IL_0af7: Unknown result type (might be due to invalid IL or missing references) //IL_0afc: Unknown result type (might be due to invalid IL or missing references) //IL_0b08: Unknown result type (might be due to invalid IL or missing references) //IL_056f: Unknown result type (might be due to invalid IL or missing references) //IL_0575: Unknown result type (might be due to invalid IL or missing references) //IL_057a: Unknown result type (might be due to invalid IL or missing references) //IL_0585: Unknown result type (might be due to invalid IL or missing references) //IL_0596: Unknown result type (might be due to invalid IL or missing references) //IL_05a0: Unknown result type (might be due to invalid IL or missing references) //IL_05a5: Unknown result type (might be due to invalid IL or missing references) //IL_05b0: Unknown result type (might be due to invalid IL or missing references) //IL_05b6: Unknown result type (might be due to invalid IL or missing references) //IL_05bb: Unknown result type (might be due to invalid IL or missing references) //IL_05c6: Unknown result type (might be due to invalid IL or missing references) //IL_05d0: Unknown result type (might be due to invalid IL or missing references) //IL_05d5: Unknown result type (might be due to invalid IL or missing references) //IL_05e0: Unknown result type (might be due to invalid IL or missing references) //IL_05f1: Unknown result type (might be due to invalid IL or missing references) //IL_05fb: Unknown result type (might be due to invalid IL or missing references) //IL_0600: Unknown result type (might be due to invalid IL or missing references) //IL_060c: Unknown result type (might be due to invalid IL or missing references) //IL_01b3: Unknown result type (might be due to invalid IL or missing references) //IL_01b8: Unknown result type (might be due to invalid IL or missing references) //IL_01bd: Unknown result type (might be due to invalid IL or missing references) //IL_01c2: Unknown result type (might be due to invalid IL or missing references) //IL_376d: Unknown result type (might be due to invalid IL or missing references) //IL_3772: Unknown result type (might be due to invalid IL or missing references) //IL_377f: Unknown result type (might be due to invalid IL or missing references) //IL_372d: Unknown result type (might be due to invalid IL or missing references) //IL_3733: Unknown result type (might be due to invalid IL or missing references) //IL_3744: Unknown result type (might be due to invalid IL or missing references) //IL_36f3: Unknown result type (might be due to invalid IL or missing references) //IL_36f9: Unknown result type (might be due to invalid IL or missing references) //IL_3710: Unknown result type (might be due to invalid IL or missing references) //IL_128f: Unknown result type (might be due to invalid IL or missing references) //IL_1295: Unknown result type (might be due to invalid IL or missing references) //IL_129a: Unknown result type (might be due to invalid IL or missing references) //IL_12a5: Unknown result type (might be due to invalid IL or missing references) //IL_12b6: Unknown result type (might be due to invalid IL or missing references) //IL_12c0: Unknown result type (might be due to invalid IL or missing references) //IL_12c5: Unknown result type (might be due to invalid IL or missing references) //IL_12d0: Unknown result type (might be due to invalid IL or missing references) //IL_12d6: Unknown result type (might be due to invalid IL or missing references) //IL_12db: Unknown result type (might be due to invalid IL or missing references) //IL_12e6: Unknown result type (might be due to invalid IL or missing references) //IL_12f7: Unknown result type (might be due to invalid IL or missing references) //IL_12fc: Unknown result type (might be due to invalid IL or missing references) //IL_1307: Unknown result type (might be due to invalid IL or missing references) //IL_1318: Unknown result type (might be due to invalid IL or missing references) //IL_1322: Unknown result type (might be due to invalid IL or missing references) //IL_1327: Unknown result type (might be due to invalid IL or missing references) //IL_1333: Unknown result type (might be due to invalid IL or missing references) //IL_1022: Unknown result type (might be due to invalid IL or missing references) //IL_1027: Unknown result type (might be due to invalid IL or missing references) //IL_102c: Unknown result type (might be due to invalid IL or missing references) //IL_1031: Unknown result type (might be due to invalid IL or missing references) //IL_0b9b: Unknown result type (might be due to invalid IL or missing references) //IL_0ba1: Unknown result type (might be due to invalid IL or missing references) //IL_0ba6: Unknown result type (might be due to invalid IL or missing references) //IL_0bb1: Unknown result type (might be due to invalid IL or missing references) //IL_0bc2: Unknown result type (might be due to invalid IL or missing references) //IL_0bcc: Unknown result type (might be due to invalid IL or missing references) //IL_0bd1: Unknown result type (might be due to invalid IL or missing references) //IL_0bdc: Unknown result type (might be due to invalid IL or missing references) //IL_0be2: Unknown result type (might be due to invalid IL or missing references) //IL_0be7: Unknown result type (might be due to invalid IL or missing references) //IL_0bf2: Unknown result type (might be due to invalid IL or missing references) //IL_0bfc: Unknown result type (might be due to invalid IL or missing references) //IL_0c01: Unknown result type (might be due to invalid IL or missing references) //IL_0c0c: Unknown result type (might be due to invalid IL or missing references) //IL_0c1d: Unknown result type (might be due to invalid IL or missing references) //IL_0c27: Unknown result type (might be due to invalid IL or missing references) //IL_0c2c: Unknown result type (might be due to invalid IL or missing references) //IL_0c38: Unknown result type (might be due to invalid IL or missing references) //IL_069f: Unknown result type (might be due to invalid IL or missing references) //IL_06a5: Unknown result type (might be due to invalid IL or missing references) //IL_06aa: Unknown result type (might be due to invalid IL or missing references) //IL_06b5: Unknown result type (might be due to invalid IL or missing references) //IL_06c6: Unknown result type (might be due to invalid IL or missing references) //IL_06d0: Unknown result type (might be due to invalid IL or missing references) //IL_06d5: Unknown result type (might be due to invalid IL or missing references) //IL_06e0: Unknown result type (might be due to invalid IL or missing references) //IL_06e6: Unknown result type (might be due to invalid IL or missing references) //IL_06eb: Unknown result type (might be due to invalid IL or missing references) //IL_06f6: Unknown result type (might be due to invalid IL or missing references) //IL_0700: Unknown result type (might be due to invalid IL or missing references) //IL_0705: Unknown result type (might be due to invalid IL or missing references) //IL_0710: Unknown result type (might be due to invalid IL or missing references) //IL_0721: Unknown result type (might be due to invalid IL or missing references) //IL_072b: Unknown result type (might be due to invalid IL or missing references) //IL_0730: Unknown result type (might be due to invalid IL or missing references) //IL_073c: Unknown result type (might be due to invalid IL or missing references) //IL_02e3: Unknown result type (might be due to invalid IL or missing references) //IL_02e8: Unknown result type (might be due to invalid IL or missing references) //IL_02ed: Unknown result type (might be due to invalid IL or missing references) //IL_02f2: Unknown result type (might be due to invalid IL or missing references) //IL_13b0: Unknown result type (might be due to invalid IL or missing references) //IL_13b6: Unknown result type (might be due to invalid IL or missing references) //IL_13bb: Unknown result type (might be due to invalid IL or missing references) //IL_13c6: Unknown result type (might be due to invalid IL or missing references) //IL_13d7: Unknown result type (might be due to invalid IL or missing references) //IL_13e1: Unknown result type (might be due to invalid IL or missing references) //IL_13e6: Unknown result type (might be due to invalid IL or missing references) //IL_13f1: Unknown result type (might be due to invalid IL or missing references) //IL_13f7: Unknown result type (might be due to invalid IL or missing references) //IL_13fc: Unknown result type (might be due to invalid IL or missing references) //IL_1407: Unknown result type (might be due to invalid IL or missing references) //IL_1418: Unknown result type (might be due to invalid IL or missing references) //IL_141d: Unknown result type (might be due to invalid IL or missing references) //IL_1428: Unknown result type (might be due to invalid IL or missing references) //IL_1439: Unknown result type (might be due to invalid IL or missing references) //IL_1443: Unknown result type (might be due to invalid IL or missing references) //IL_1448: Unknown result type (might be due to invalid IL or missing references) //IL_1454: Unknown result type (might be due to invalid IL or missing references) //IL_1143: Unknown result type (might be due to invalid IL or missing references) //IL_1148: Unknown result type (might be due to invalid IL or missing references) //IL_114d: Unknown result type (might be due to invalid IL or missing references) //IL_1152: Unknown result type (might be due to invalid IL or missing references) //IL_0ccb: Unknown result type (might be due to invalid IL or missing references) //IL_0cd1: Unknown result type (might be due to invalid IL or missing references) //IL_0cd6: Unknown result type (might be due to invalid IL or missing references) //IL_0ce1: Unknown result type (might be due to invalid IL or missing references) //IL_0cf2: Unknown result type (might be due to invalid IL or missing references) //IL_0cfc: Unknown result type (might be due to invalid IL or missing references) //IL_0d01: Unknown result type (might be due to invalid IL or missing references) //IL_0d0c: Unknown result type (might be due to invalid IL or missing references) //IL_0d12: Unknown result type (might be due to invalid IL or missing references) //IL_0d17: Unknown result type (might be due to invalid IL or missing references) //IL_0d22: Unknown result type (might be due to invalid IL or missing references) //IL_0d2c: Unknown result type (might be due to invalid IL or missing references) //IL_0d31: Unknown result type (might be due to invalid IL or missing references) //IL_0d3c: Unknown result type (might be due to invalid IL or missing references) //IL_0d4d: Unknown result type (might be due to invalid IL or missing references) //IL_0d57: Unknown result type (might be due to invalid IL or missing references) //IL_0d5c: Unknown result type (might be due to invalid IL or missing references) //IL_0d68: Unknown result type (might be due to invalid IL or missing references) //IL_090f: Unknown result type (might be due to invalid IL or missing references) //IL_0914: Unknown result type (might be due to invalid IL or missing references) //IL_0919: Unknown result type (might be due to invalid IL or missing references) //IL_091e: Unknown result type (might be due to invalid IL or missing references) //IL_0413: Unknown result type (might be due to invalid IL or missing references) //IL_0418: Unknown result type (might be due to invalid IL or missing references) //IL_041d: Unknown result type (might be due to invalid IL or missing references) //IL_0422: Unknown result type (might be due to invalid IL or missing references) //IL_14d1: Unknown result type (might be due to invalid IL or missing references) //IL_14d7: Unknown result type (might be due to invalid IL or missing references) //IL_14dc: Unknown result type (might be due to invalid IL or missing references) //IL_14e7: Unknown result type (might be due to invalid IL or missing references) //IL_14f8: Unknown result type (might be due to invalid IL or missing references) //IL_1502: Unknown result type (might be due to invalid IL or missing references) //IL_1507: Unknown result type (might be due to invalid IL or missing references) //IL_1512: Unknown result type (might be due to invalid IL or missing references) //IL_1518: Unknown result type (might be due to invalid IL or missing references) //IL_151d: Unknown result type (might be due to invalid IL or missing references) //IL_1528: Unknown result type (might be due to invalid IL or missing references) //IL_1539: Unknown result type (might be due to invalid IL or missing references) //IL_153e: Unknown result type (might be due to invalid IL or missing references) //IL_1549: Unknown result type (might be due to invalid IL or missing references) //IL_155a: Unknown result type (might be due to invalid IL or missing references) //IL_1564: Unknown result type (might be due to invalid IL or missing references) //IL_1569: Unknown result type (might be due to invalid IL or missing references) //IL_1575: Unknown result type (might be due to invalid IL or missing references) //IL_1264: Unknown result type (might be due to invalid IL or missing references) //IL_1269: Unknown result type (might be due to invalid IL or missing references) //IL_126e: Unknown result type (might be due to invalid IL or missing references) //IL_1273: Unknown result type (might be due to invalid IL or missing references) //IL_0dfb: Unknown result type (might be due to invalid IL or missing references) //IL_0e01: Unknown result type (might be due to invalid IL or missing references) //IL_0e06: Unknown result type (might be due to invalid IL or missing references) //IL_0e11: Unknown result type (might be due to invalid IL or missing references) //IL_0e22: Unknown result type (might be due to invalid IL or missing references) //IL_0e2c: Unknown result type (might be due to invalid IL or missing references) //IL_0e31: Unknown result type (might be due to invalid IL or missing references) //IL_0e3c: Unknown result type (might be due to invalid IL or missing references) //IL_0e42: Unknown result type (might be due to invalid IL or missing references) //IL_0e47: Unknown result type (might be due to invalid IL or missing references) //IL_0e52: Unknown result type (might be due to invalid IL or missing references) //IL_0e5c: Unknown result type (might be due to invalid IL or missing references) //IL_0e61: Unknown result type (might be due to invalid IL or missing references) //IL_0e6c: Unknown result type (might be due to invalid IL or missing references) //IL_0e7d: Unknown result type (might be due to invalid IL or missing references) //IL_0e87: Unknown result type (might be due to invalid IL or missing references) //IL_0e8c: Unknown result type (might be due to invalid IL or missing references) //IL_0e98: Unknown result type (might be due to invalid IL or missing references) //IL_0a3f: Unknown result type (might be due to invalid IL or missing references) //IL_0a44: Unknown result type (might be due to invalid IL or missing references) //IL_0a49: Unknown result type (might be due to invalid IL or missing references) //IL_0a4e: Unknown result type (might be due to invalid IL or missing references) //IL_0543: Unknown result type (might be due to invalid IL or missing references) //IL_0548: Unknown result type (might be due to invalid IL or missing references) //IL_054d: Unknown result type (might be due to invalid IL or missing references) //IL_0552: Unknown result type (might be due to invalid IL or missing references) //IL_15f2: Unknown result type (might be due to invalid IL or missing references) //IL_15f8: Unknown result type (might be due to invalid IL or missing references) //IL_15fd: Unknown result type (might be due to invalid IL or missing references) //IL_1608: Unknown result type (might be due to invalid IL or missing references) //IL_1619: Unknown result type (might be due to invalid IL or missing references) //IL_1623: Unknown result type (might be due to invalid IL or missing references) //IL_1628: Unknown result type (might be due to invalid IL or missing references) //IL_1633: Unknown result type (might be due to invalid IL or missing references) //IL_163d: Unknown result type (might be due to invalid IL or missing references) //IL_1642: Unknown result type (might be due to invalid IL or missing references) //IL_164d: Unknown result type (might be due to invalid IL or missing references) //IL_1653: Unknown result type (might be due to invalid IL or missing references) //IL_1658: Unknown result type (might be due to invalid IL or missing references) //IL_1663: Unknown result type (might be due to invalid IL or missing references) //IL_1674: Unknown result type (might be due to invalid IL or missing references) //IL_1679: Unknown result type (might be due to invalid IL or missing references) //IL_1684: Unknown result type (might be due to invalid IL or missing references) //IL_1695: Unknown result type (might be due to invalid IL or missing references) //IL_169f: Unknown result type (might be due to invalid IL or missing references) //IL_16a4: Unknown result type (might be due to invalid IL or missing references) //IL_16af: Unknown result type (might be due to invalid IL or missing references) //IL_16b9: Unknown result type (might be due to invalid IL or missing references) //IL_16be: Unknown result type (might be due to invalid IL or missing references) //IL_16ca: Unknown result type (might be due to invalid IL or missing references) //IL_1385: Unknown result type (might be due to invalid IL or missing references) //IL_138a: Unknown result type (might be due to invalid IL or missing references) //IL_138f: Unknown result type (might be due to invalid IL or missing references) //IL_1394: Unknown result type (might be due to invalid IL or missing references) //IL_0b6f: Unknown result type (might be due to invalid IL or missing references) //IL_0b74: Unknown result type (might be due to invalid IL or missing references) //IL_0b79: Unknown result type (might be due to invalid IL or missing references) //IL_0b7e: Unknown result type (might be due to invalid IL or missing references) //IL_0673: Unknown result type (might be due to invalid IL or missing references) //IL_0678: Unknown result type (might be due to invalid IL or missing references) //IL_067d: Unknown result type (might be due to invalid IL or missing references) //IL_0682: Unknown result type (might be due to invalid IL or missing references) //IL_1747: Unknown result type (might be due to invalid IL or missing references) //IL_174d: Unknown result type (might be due to invalid IL or missing references) //IL_1752: Unknown result type (might be due to invalid IL or missing references) //IL_175d: Unknown result type (might be due to invalid IL or missing references) //IL_176e: Unknown result type (might be due to invalid IL or missing references) //IL_1778: Unknown result type (might be due to invalid IL or missing references) //IL_177d: Unknown result type (might be due to invalid IL or missing references) //IL_1788: Unknown result type (might be due to invalid IL or missing references) //IL_1792: Unknown result type (might be due to invalid IL or missing references) //IL_1797: Unknown result type (might be due to invalid IL or missing references) //IL_17a2: Unknown result type (might be due to invalid IL or missing references) //IL_17a8: Unknown result type (might be due to invalid IL or missing references) //IL_17ad: Unknown result type (might be due to invalid IL or missing references) //IL_17b8: Unknown result type (might be due to invalid IL or missing references) //IL_17c9: Unknown result type (might be due to invalid IL or missing references) //IL_17ce: Unknown result type (might be due to invalid IL or missing references) //IL_17d9: Unknown result type (might be due to invalid IL or missing references) //IL_17ea: Unknown result type (might be due to invalid IL or missing references) //IL_17f4: Unknown result type (might be due to invalid IL or missing references) //IL_17f9: Unknown result type (might be due to invalid IL or missing references) //IL_1804: Unknown result type (might be due to invalid IL or missing references) //IL_180e: Unknown result type (might be due to invalid IL or missing references) //IL_1813: Unknown result type (might be due to invalid IL or missing references) //IL_181f: Unknown result type (might be due to invalid IL or missing references) //IL_14a6: Unknown result type (might be due to invalid IL or missing references) //IL_14ab: Unknown result type (might be due to invalid IL or missing references) //IL_14b0: Unknown result type (might be due to invalid IL or missing references) //IL_14b5: Unknown result type (might be due to invalid IL or missing references) //IL_0c9f: Unknown result type (might be due to invalid IL or missing references) //IL_0ca4: Unknown result type (might be due to invalid IL or missing references) //IL_0ca9: Unknown result type (might be due to invalid IL or missing references) //IL_0cae: Unknown result type (might be due to invalid IL or missing references) //IL_07a3: Unknown result type (might be due to invalid IL or missing references) //IL_07a8: Unknown result type (might be due to invalid IL or missing references) //IL_07ad: Unknown result type (might be due to invalid IL or missing references) //IL_07b2: Unknown result type (might be due to invalid IL or missing references) //IL_189c: Unknown result type (might be due to invalid IL or missing references) //IL_18a2: Unknown result type (might be due to invalid IL or missing references) //IL_18a7: Unknown result type (might be due to invalid IL or missing references) //IL_18b2: Unknown result type (might be due to invalid IL or missing references) //IL_18c3: Unknown result type (might be due to invalid IL or missing references) //IL_18cd: Unknown result type (might be due to invalid IL or missing references) //IL_18d2: Unknown result type (might be due to invalid IL or missing references) //IL_18dd: Unknown result type (might be due to invalid IL or missing references) //IL_18e7: Unknown result type (might be due to invalid IL or missing references) //IL_18ec: Unknown result type (might be due to invalid IL or missing references) //IL_18f7: Unknown result type (might be due to invalid IL or missing references) //IL_18fd: Unknown result type (might be due to invalid IL or missing references) //IL_1902: Unknown result type (might be due to invalid IL or missing references) //IL_190d: Unknown result type (might be due to invalid IL or missing references) //IL_191e: Unknown result type (might be due to invalid IL or missing references) //IL_1923: Unknown result type (might be due to invalid IL or missing references) //IL_192e: Unknown result type (might be due to invalid IL or missing references) //IL_193f: Unknown result type (might be due to invalid IL or missing references) //IL_1949: Unknown result type (might be due to invalid IL or missing references) //IL_194e: Unknown result type (might be due to invalid IL or missing references) //IL_1959: Unknown result type (might be due to invalid IL or missing references) //IL_1963: Unknown result type (might be due to invalid IL or missing references) //IL_1968: Unknown result type (might be due to invalid IL or missing references) //IL_1974: Unknown result type (might be due to invalid IL or missing references) //IL_15c7: Unknown result type (might be due to invalid IL or missing references) //IL_15cc: Unknown result type (might be due to invalid IL or missing references) //IL_15d1: Unknown result type (might be due to invalid IL or missing references) //IL_15d6: Unknown result type (might be due to invalid IL or missing references) //IL_0dcf: Unknown result type (might be due to invalid IL or missing references) //IL_0dd4: Unknown result type (might be due to invalid IL or missing references) //IL_0dd9: Unknown result type (might be due to invalid IL or missing references) //IL_0dde: Unknown result type (might be due to invalid IL or missing references) //IL_19f1: Unknown result type (might be due to invalid IL or missing references) //IL_19f7: Unknown result type (might be due to invalid IL or missing references) //IL_19fc: Unknown result type (might be due to invalid IL or missing references) //IL_1a07: Unknown result type (might be due to invalid IL or missing references) //IL_1a18: Unknown result type (might be due to invalid IL or missing references) //IL_1a22: Unknown result type (might be due to invalid IL or missing references) //IL_1a27: Unknown result type (might be due to invalid IL or missing references) //IL_1a32: Unknown result type (might be due to invalid IL or missing references) //IL_1a3c: Unknown result type (might be due to invalid IL or missing references) //IL_1a41: Unknown result type (might be due to invalid IL or missing references) //IL_1a4c: Unknown result type (might be due to invalid IL or missing references) //IL_1a52: Unknown result type (might be due to invalid IL or missing references) //IL_1a57: Unknown result type (might be due to invalid IL or missing references) //IL_1a62: Unknown result type (might be due to invalid IL or missing references) //IL_1a73: Unknown result type (might be due to invalid IL or missing references) //IL_1a78: Unknown result type (might be due to invalid IL or missing references) //IL_1a83: Unknown result type (might be due to invalid IL or missing references) //IL_1a94: Unknown result type (might be due to invalid IL or missing references) //IL_1a9e: Unknown result type (might be due to invalid IL or missing references) //IL_1aa3: Unknown result type (might be due to invalid IL or missing references) //IL_1aae: Unknown result type (might be due to invalid IL or missing references) //IL_1ab8: Unknown result type (might be due to invalid IL or missing references) //IL_1abd: Unknown result type (might be due to invalid IL or missing references) //IL_1ac9: Unknown result type (might be due to invalid IL or missing references) //IL_171c: Unknown result type (might be due to invalid IL or missing references) //IL_1721: Unknown result type (might be due to invalid IL or missing references) //IL_1726: Unknown result type (might be due to invalid IL or missing references) //IL_172b: Unknown result type (might be due to invalid IL or missing references) //IL_0eff: Unknown result type (might be due to invalid IL or missing references) //IL_0f04: Unknown result type (might be due to invalid IL or missing references) //IL_0f09: Unknown result type (might be due to invalid IL or missing references) //IL_0f0e: Unknown result type (might be due to invalid IL or missing references) //IL_1b46: Unknown result type (might be due to invalid IL or missing references) //IL_1b4c: Unknown result type (might be due to invalid IL or missing references) //IL_1b51: Unknown result type (might be due to invalid IL or missing references) //IL_1b5c: Unknown result type (might be due to invalid IL or missing references) //IL_1b6d: Unknown result type (might be due to invalid IL or missing references) //IL_1b77: Unknown result type (might be due to invalid IL or missing references) //IL_1b7c: Unknown result type (might be due to invalid IL or missing references) //IL_1b87: Unknown result type (might be due to invalid IL or missing references) //IL_1b91: Unknown result type (might be due to invalid IL or missing references) //IL_1b96: Unknown result type (might be due to invalid IL or missing references) //IL_1ba1: Unknown result type (might be due to invalid IL or missing references) //IL_1ba7: Unknown result type (might be due to invalid IL or missing references) //IL_1bac: Unknown result type (might be due to invalid IL or missing references) //IL_1bb7: Unknown result type (might be due to invalid IL or missing references) //IL_1bc8: Unknown result type (might be due to invalid IL or missing references) //IL_1bcd: Unknown result type (might be due to invalid IL or missing references) //IL_1bd8: Unknown result type (might be due to invalid IL or missing references) //IL_1be9: Unknown result type (might be due to invalid IL or missing references) //IL_1bf3: Unknown result type (might be due to invalid IL or missing references) //IL_1bf8: Unknown result type (might be due to invalid IL or missing references) //IL_1c03: Unknown result type (might be due to invalid IL or missing references) //IL_1c0d: Unknown result type (might be due to invalid IL or missing references) //IL_1c12: Unknown result type (might be due to invalid IL or missing references) //IL_1c1e: Unknown result type (might be due to invalid IL or missing references) //IL_1871: Unknown result type (might be due to invalid IL or missing references) //IL_1876: Unknown result type (might be due to invalid IL or missing references) //IL_187b: Unknown result type (might be due to invalid IL or missing references) //IL_1880: Unknown result type (might be due to invalid IL or missing references) //IL_1c9b: Unknown result type (might be due to invalid IL or missing references) //IL_1ca1: Unknown result type (might be due to invalid IL or missing references) //IL_1ca6: Unknown result type (might be due to invalid IL or missing references) //IL_1cb1: Unknown result type (might be due to invalid IL or missing references) //IL_1cc2: Unknown result type (might be due to invalid IL or missing references) //IL_1ccc: Unknown result type (might be due to invalid IL or missing references) //IL_1cd1: Unknown result type (might be due to invalid IL or missing references) //IL_1cdc: Unknown result type (might be due to invalid IL or missing references) //IL_1ce6: Unknown result type (might be due to invalid IL or missing references) //IL_1ceb: Unknown result type (might be due to invalid IL or missing references) //IL_1cf6: Unknown result type (might be due to invalid IL or missing references) //IL_1cfc: Unknown result type (might be due to invalid IL or missing references) //IL_1d01: Unknown result type (might be due to invalid IL or missing references) //IL_1d0c: Unknown result type (might be due to invalid IL or missing references) //IL_1d1d: Unknown result type (might be due to invalid IL or missing references) //IL_1d22: Unknown result type (might be due to invalid IL or missing references) //IL_1d2d: Unknown result type (might be due to invalid IL or missing references) //IL_1d3e: Unknown result type (might be due to invalid IL or missing references) //IL_1d48: Unknown result type (might be due to invalid IL or missing references) //IL_1d4d: Unknown result type (might be due to invalid IL or missing references) //IL_1d58: Unknown result type (might be due to invalid IL or missing references) //IL_1d62: Unknown result type (might be due to invalid IL or missing references) //IL_1d67: Unknown result type (might be due to invalid IL or missing references) //IL_1d73: Unknown result type (might be due to invalid IL or missing references) //IL_19c6: Unknown result type (might be due to invalid IL or missing references) //IL_19cb: Unknown result type (might be due to invalid IL or missing references) //IL_19d0: Unknown result type (might be due to invalid IL or missing references) //IL_19d5: Unknown result type (might be due to invalid IL or missing references) //IL_1df0: Unknown result type (might be due to invalid IL or missing references) //IL_1df6: Unknown result type (might be due to invalid IL or missing references) //IL_1dfb: Unknown result type (might be due to invalid IL or missing references) //IL_1e06: Unknown result type (might be due to invalid IL or missing references) //IL_1e17: Unknown result type (might be due to invalid IL or missing references) //IL_1e21: Unknown result type (might be due to invalid IL or missing references) //IL_1e26: Unknown result type (might be due to invalid IL or missing references) //IL_1e31: Unknown result type (might be due to invalid IL or missing references) //IL_1e3b: Unknown result type (might be due to invalid IL or missing references) //IL_1e40: Unknown result type (might be due to invalid IL or missing references) //IL_1e4b: Unknown result type (might be due to invalid IL or missing references) //IL_1e51: Unknown result type (might be due to invalid IL or missing references) //IL_1e56: Unknown result type (might be due to invalid IL or missing references) //IL_1e61: Unknown result type (might be due to invalid IL or missing references) //IL_1e72: Unknown result type (might be due to invalid IL or missing references) //IL_1e77: Unknown result type (might be due to invalid IL or missing references) //IL_1e82: Unknown result type (might be due to invalid IL or missing references) //IL_1e93: Unknown result type (might be due to invalid IL or missing references) //IL_1e9d: Unknown result type (might be due to invalid IL or missing references) //IL_1ea2: Unknown result type (might be due to invalid IL or missing references) //IL_1ead: Unknown result type (might be due to invalid IL or missing references) //IL_1eb7: Unknown result type (might be due to invalid IL or missing references) //IL_1ebc: Unknown result type (might be due to invalid IL or missing references) //IL_1ec8: Unknown result type (might be due to invalid IL or missing references) //IL_1b1b: Unknown result type (might be due to invalid IL or missing references) //IL_1b20: Unknown result type (might be due to invalid IL or missing references) //IL_1b25: Unknown result type (might be due to invalid IL or missing references) //IL_1b2a: Unknown result type (might be due to invalid IL or missing references) //IL_1f45: Unknown result type (might be due to invalid IL or missing references) //IL_1f4b: Unknown result type (might be due to invalid IL or missing references) //IL_1f50: Unknown result type (might be due to invalid IL or missing references) //IL_1f5b: Unknown result type (might be due to invalid IL or missing references) //IL_1f6c: Unknown result type (might be due to invalid IL or missing references) //IL_1f76: Unknown result type (might be due to invalid IL or missing references) //IL_1f7b: Unknown result type (might be due to invalid IL or missing references) //IL_1f86: Unknown result type (might be due to invalid IL or missing references) //IL_1f90: Unknown result type (might be due to invalid IL or missing references) //IL_1f95: Unknown result type (might be due to invalid IL or missing references) //IL_1fa0: Unknown result type (might be due to invalid IL or missing references) //IL_1fa6: Unknown result type (might be due to invalid IL or missing references) //IL_1fab: Unknown result type (might be due to invalid IL or missing references) //IL_1fb6: Unknown result type (might be due to invalid IL or missing references) //IL_1fc7: Unknown result type (might be due to invalid IL or missing references) //IL_1fcc: Unknown result type (might be due to invalid IL or missing references) //IL_1fd7: Unknown result type (might be due to invalid IL or missing references) //IL_1fe8: Unknown result type (might be due to invalid IL or missing references) //IL_1ff2: Unknown result type (might be due to invalid IL or missing references) //IL_1ff7: Unknown result type (might be due to invalid IL or missing references) //IL_2002: Unknown result type (might be due to invalid IL or missing references) //IL_200c: Unknown result type (might be due to invalid IL or missing references) //IL_2011: Unknown result type (might be due to invalid IL or missing references) //IL_201d: Unknown result type (might be due to invalid IL or missing references) //IL_1c70: Unknown result type (might be due to invalid IL or missing references) //IL_1c75: Unknown result type (might be due to invalid IL or missing references) //IL_1c7a: Unknown result type (might be due to invalid IL or missing references) //IL_1c7f: Unknown result type (might be due to invalid IL or missing references) //IL_209a: Unknown result type (might be due to invalid IL or missing references) //IL_20a0: Unknown result type (might be due to invalid IL or missing references) //IL_20a5: Unknown result type (might be due to invalid IL or missing references) //IL_20b0: Unknown result type (might be due to invalid IL or missing references) //IL_20c1: Unknown result type (might be due to invalid IL or missing references) //IL_20cb: Unknown result type (might be due to invalid IL or missing references) //IL_20d0: Unknown result type (might be due to invalid IL or missing references) //IL_20db: Unknown result type (might be due to invalid IL or missing references) //IL_20e5: Unknown result type (might be due to invalid IL or missing references) //IL_20ea: Unknown result type (might be due to invalid IL or missing references) //IL_20f5: Unknown result type (might be due to invalid IL or missing references) //IL_20fb: Unknown result type (might be due to invalid IL or missing references) //IL_2100: Unknown result type (might be due to invalid IL or missing references) //IL_210b: Unknown result type (might be due to invalid IL or missing references) //IL_211c: Unknown result type (might be due to invalid IL or missing references) //IL_2121: Unknown result type (might be due to invalid IL or missing references) //IL_212c: Unknown result type (might be due to invalid IL or missing references) //IL_213d: Unknown result type (might be due to invalid IL or missing references) //IL_2147: Unknown result type (might be due to invalid IL or missing references) //IL_214c: Unknown result type (might be due to invalid IL or missing references) //IL_2157: Unknown result type (might be due to invalid IL or missing references) //IL_2161: Unknown result type (might be due to invalid IL or missing references) //IL_2166: Unknown result type (might be due to invalid IL or missing references) //IL_2172: Unknown result type (might be due to invalid IL or missing references) //IL_1dc5: Unknown result type (might be due to invalid IL or missing references) //IL_1dca: Unknown result type (might be due to invalid IL or missing references) //IL_1dcf: Unknown result type (might be due to invalid IL or missing references) //IL_1dd4: Unknown result type (might be due to invalid IL or missing references) //IL_21ef: Unknown result type (might be due to invalid IL or missing references) //IL_21f5: Unknown result type (might be due to invalid IL or missing references) //IL_21fa: Unknown result type (might be due to invalid IL or missing references) //IL_2205: Unknown result type (might be due to invalid IL or missing references) //IL_2216: Unknown result type (might be due to invalid IL or missing references) //IL_2220: Unknown result type (might be due to invalid IL or missing references) //IL_2225: Unknown result type (might be due to invalid IL or missing references) //IL_2230: Unknown result type (might be due to invalid IL or missing references) //IL_223a: Unknown result type (might be due to invalid IL or missing references) //IL_223f: Unknown result type (might be due to invalid IL or missing references) //IL_224a: Unknown result type (might be due to invalid IL or missing references) //IL_2250: Unknown result type (might be due to invalid IL or missing references) //IL_2255: Unknown result type (might be due to invalid IL or missing references) //IL_2260: Unknown result type (might be due to invalid IL or missing references) //IL_2271: Unknown result type (might be due to invalid IL or missing references) //IL_2276: Unknown result type (might be due to invalid IL or missing references) //IL_2281: Unknown result type (might be due to invalid IL or missing references) //IL_2292: Unknown result type (might be due to invalid IL or missing references) //IL_229c: Unknown result type (might be due to invalid IL or missing references) //IL_22a1: Unknown result type (might be due to invalid IL or missing references) //IL_22ac: Unknown result type (might be due to invalid IL or missing references) //IL_22b6: Unknown result type (might be due to invalid IL or missing references) //IL_22bb: Unknown result type (might be due to invalid IL or missing references) //IL_22c7: Unknown result type (might be due to invalid IL or missing references) //IL_1f1a: Unknown result type (might be due to invalid IL or missing references) //IL_1f1f: Unknown result type (might be due to invalid IL or missing references) //IL_1f24: Unknown result type (might be due to invalid IL or missing references) //IL_1f29: Unknown result type (might be due to invalid IL or missing references) //IL_2344: Unknown result type (might be due to invalid IL or missing references) //IL_234a: Unknown result type (might be due to invalid IL or missing references) //IL_234f: Unknown result type (might be due to invalid IL or missing references) //IL_235a: Unknown result type (might be due to invalid IL or missing references) //IL_236b: Unknown result type (might be due to invalid IL or missing references) //IL_2375: Unknown result type (might be due to invalid IL or missing references) //IL_237a: Unknown result type (might be due to invalid IL or missing references) //IL_2385: Unknown result type (might be due to invalid IL or missing references) //IL_238f: Unknown result type (might be due to invalid IL or missing references) //IL_2394: Unknown result type (might be due to invalid IL or missing references) //IL_239f: Unknown result type (might be due to invalid IL or missing references) //IL_23a5: Unknown result type (might be due to invalid IL or missing references) //IL_23aa: Unknown result type (might be due to invalid IL or missing references) //IL_23b5: Unknown result type (might be due to invalid IL or missing references) //IL_23c6: Unknown result type (might be due to invalid IL or missing references) //IL_23cb: Unknown result type (might be due to invalid IL or missing references) //IL_23d6: Unknown result type (might be due to invalid IL or missing references) //IL_23e7: Unknown result type (might be due to invalid IL or missing references) //IL_23f1: Unknown result type (might be due to invalid IL or missing references) //IL_23f6: Unknown result type (might be due to invalid IL or missing references) //IL_2401: Unknown result type (might be due to invalid IL or missing references) //IL_240b: Unknown result type (might be due to invalid IL or missing references) //IL_2410: Unknown result type (might be due to invalid IL or missing references) //IL_241c: Unknown result type (might be due to invalid IL or missing references) //IL_206f: Unknown result type (might be due to invalid IL or missing references) //IL_2074: Unknown result type (might be due to invalid IL or missing references) //IL_2079: Unknown result type (might be due to invalid IL or missing references) //IL_207e: Unknown result type (might be due to invalid IL or missing references) //IL_2499: Unknown result type (might be due to invalid IL or missing references) //IL_249f: Unknown result type (might be due to invalid IL or missing references) //IL_24a4: Unknown result type (might be due to invalid IL or missing references) //IL_24af: Unknown result type (might be due to invalid IL or missing references) //IL_24c0: Unknown result type (might be due to invalid IL or missing references) //IL_24ca: Unknown result type (might be due to invalid IL or missing references) //IL_24cf: Unknown result type (might be due to invalid IL or missing references) //IL_24da: Unknown result type (might be due to invalid IL or missing references) //IL_24e4: Unknown result type (might be due to invalid IL or missing references) //IL_24e9: Unknown result type (might be due to invalid IL or missing references) //IL_24f4: Unknown result type (might be due to invalid IL or missing references) //IL_24fa: Unknown result type (might be due to invalid IL or missing references) //IL_24ff: Unknown result type (might be due to invalid IL or missing references) //IL_250a: Unknown result type (might be due to invalid IL or missing references) //IL_251b: Unknown result type (might be due to invalid IL or missing references) //IL_2520: Unknown result type (might be due to invalid IL or missing references) //IL_252b: Unknown result type (might be due to invalid IL or missing references) //IL_253c: Unknown result type (might be due to invalid IL or missing references) //IL_2546: Unknown result type (might be due to invalid IL or missing references) //IL_254b: Unknown result type (might be due to invalid IL or missing references) //IL_2556: Unknown result type (might be due to invalid IL or missing references) //IL_2560: Unknown result type (might be due to invalid IL or missing references) //IL_2565: Unknown result type (might be due to invalid IL or missing references) //IL_2571: Unknown result type (might be due to invalid IL or missing references) //IL_21c4: Unknown result type (might be due to invalid IL or missing references) //IL_21c9: Unknown result type (might be due to invalid IL or missing references) //IL_21ce: Unknown result type (might be due to invalid IL or missing references) //IL_21d3: Unknown result type (might be due to invalid IL or missing references) //IL_25ee: Unknown result type (might be due to invalid IL or missing references) //IL_25f4: Unknown result type (might be due to invalid IL or missing references) //IL_25f9: Unknown result type (might be due to invalid IL or missing references) //IL_2604: Unknown result type (might be due to invalid IL or missing references) //IL_2615: Unknown result type (might be due to invalid IL or missing references) //IL_261f: Unknown result type (might be due to invalid IL or missing references) //IL_2624: Unknown result type (might be due to invalid IL or missing references) //IL_262f: Unknown result type (might be due to invalid IL or missing references) //IL_2639: Unknown result type (might be due to invalid IL or missing references) //IL_263e: Unknown result type (might be due to invalid IL or missing references) //IL_2649: Unknown result type (might be due to invalid IL or missing references) //IL_264f: Unknown result type (might be due to invalid IL or missing references) //IL_2654: Unknown result type (might be due to invalid IL or missing references) //IL_265f: Unknown result type (might be due to invalid IL or missing references) //IL_2670: Unknown result type (might be due to invalid IL or missing references) //IL_2675: Unknown result type (might be due to invalid IL or missing references) //IL_2680: Unknown result type (might be due to invalid IL or missing references) //IL_2691: Unknown result type (might be due to invalid IL or missing references) //IL_269b: Unknown result type (might be due to invalid IL or missing references) //IL_26a0: Unknown result type (might be due to invalid IL or missing references) //IL_26ab: Unknown result type (might be due to invalid IL or missing references) //IL_26b5: Unknown result type (might be due to invalid IL or missing references) //IL_26ba: Unknown result type (might be due to invalid IL or missing references) //IL_26c6: Unknown result type (might be due to invalid IL or missing references) //IL_2319: Unknown result type (might be due to invalid IL or missing references) //IL_231e: Unknown result type (might be due to invalid IL or missing references) //IL_2323: Unknown result type (might be due to invalid IL or missing references) //IL_2328: Unknown result type (might be due to invalid IL or missing references) //IL_2743: Unknown result type (might be due to invalid IL or missing references) //IL_2749: Unknown result type (might be due to invalid IL or missing references) //IL_274e: Unknown result type (might be due to invalid IL or missing references) //IL_2759: Unknown result type (might be due to invalid IL or missing references) //IL_276a: Unknown result type (might be due to invalid IL or missing references) //IL_2774: Unknown result type (might be due to invalid IL or missing references) //IL_2779: Unknown result type (might be due to invalid IL or missing references) //IL_2784: Unknown result type (might be due to invalid IL or missing references) //IL_278e: Unknown result type (might be due to invalid IL or missing references) //IL_2793: Unknown result type (might be due to invalid IL or missing references) //IL_279e: Unknown result type (might be due to invalid IL or missing references) //IL_27a4: Unknown result type (might be due to invalid IL or missing references) //IL_27a9: Unknown result type (might be due to invalid IL or missing references) //IL_27b4: Unknown result type (might be due to invalid IL or missing references) //IL_27c5: Unknown result type (might be due to invalid IL or missing references) //IL_27ca: Unknown result type (might be due to invalid IL or missing references) //IL_27d5: Unknown result type (might be due to invalid IL or missing references) //IL_27e6: Unknown result type (might be due to invalid IL or missing references) //IL_27f0: Unknown result type (might be due to invalid IL or missing references) //IL_27f5: Unknown result type (might be due to invalid IL or missing references) //IL_2800: Unknown result type (might be due to invalid IL or missing references) //IL_280a: Unknown result type (might be due to invalid IL or missing references) //IL_280f: Unknown result type (might be due to invalid IL or missing references) //IL_281b: Unknown result type (might be due to invalid IL or missing references) //IL_246e: Unknown result type (might be due to invalid IL or missing references) //IL_2473: Unknown result type (might be due to invalid IL or missing references) //IL_2478: Unknown result type (might be due to invalid IL or missing references) //IL_247d: Unknown result type (might be due to invalid IL or missing references) //IL_2898: Unknown result type (might be due to invalid IL or missing references) //IL_289e: Unknown result type (might be due to invalid IL or missing references) //IL_28a3: Unknown result type (might be due to invalid IL or missing references) //IL_28ae: Unknown result type (might be due to invalid IL or missing references) //IL_28bf: Unknown result type (might be due to invalid IL or missing references) //IL_28c9: Unknown result type (might be due to invalid IL or missing references) //IL_28ce: Unknown result type (might be due to invalid IL or missing references) //IL_28d9: Unknown result type (might be due to invalid IL or missing references) //IL_28e3: Unknown result type (might be due to invalid IL or missing references) //IL_28e8: Unknown result type (might be due to invalid IL or missing references) //IL_28f3: Unknown result type (might be due to invalid IL or missing references) //IL_28f9: Unknown result type (might be due to invalid IL or missing references) //IL_28fe: Unknown result type (might be due to invalid IL or missing references) //IL_2909: Unknown result type (might be due to invalid IL or missing references) //IL_291a: Unknown result type (might be due to invalid IL or missing references) //IL_291f: Unknown result type (might be due to invalid IL or missing references) //IL_292a: Unknown result type (might be due to invalid IL or missing references) //IL_293b: Unknown result type (might be due to invalid IL or missing references) //IL_2945: Unknown result type (might be due to invalid IL or missing references) //IL_294a: Unknown result type (might be due to invalid IL or missing references) //IL_2955: Unknown result type (might be due to invalid IL or missing references) //IL_295f: Unknown result type (might be due to invalid IL or missing references) //IL_2964: Unknown result type (might be due to invalid IL or missing references) //IL_2970: Unknown result type (might be due to invalid IL or missing references) //IL_25c3: Unknown result type (might be due to invalid IL or missing references) //IL_25c8: Unknown result type (might be due to invalid IL or missing references) //IL_25cd: Unknown result type (might be due to invalid IL or missing references) //IL_25d2: Unknown result type (might be due to invalid IL or missing references) //IL_29ed: Unknown result type (might be due to invalid IL or missing references) //IL_29f3: Unknown result type (might be due to invalid IL or missing references) //IL_29f8: Unknown result type (might be due to invalid IL or missing references) //IL_2a03: Unknown result type (might be due to invalid IL or missing references) //IL_2a14: Unknown result type (might be due to invalid IL or missing references) //IL_2a1e: Unknown result type (might be due to invalid IL or missing references) //IL_2a23: Unknown result type (might be due to invalid IL or missing references) //IL_2a2e: Unknown result type (might be due to invalid IL or missing references) //IL_2a38: Unknown result type (might be due to invalid IL or missing references) //IL_2a3d: Unknown result type (might be due to invalid IL or missing references) //IL_2a48: Unknown result type (might be due to invalid IL or missing references) //IL_2a4e: Unknown result type (might be due to invalid IL or missing references) //IL_2a53: Unknown result type (might be due to invalid IL or missing references) //IL_2a5e: Unknown result type (might be due to invalid IL or missing references) //IL_2a6f: Unknown result type (might be due to invalid IL or missing references) //IL_2a74: Unknown result type (might be due to invalid IL or missing references) //IL_2a7f: Unknown result type (might be due to invalid IL or missing references) //IL_2a90: Unknown result type (might be due to invalid IL or missing references) //IL_2a9a: Unknown result type (might be due to invalid IL or missing references) //IL_2a9f: Unknown result type (might be due to invalid IL or missing references) //IL_2aaa: Unknown result type (might be due to invalid IL or missing references) //IL_2ab4: Unknown result type (might be due to invalid IL or missing references) //IL_2ab9: Unknown result type (might be due to invalid IL or missing references) //IL_2ac5: Unknown result type (might be due to invalid IL or missing references) //IL_2718: Unknown result type (might be due to invalid IL or missing references) //IL_271d: Unknown result type (might be due to invalid IL or missing references) //IL_2722: Unknown result type (might be due to invalid IL or missing references) //IL_2727: Unknown result type (might be due to invalid IL or missing references) //IL_2b42: Unknown result type (might be due to invalid IL or missing references) //IL_2b48: Unknown result type (might be due to invalid IL or missing references) //IL_2b4d: Unknown result type (might be due to invalid IL or missing references) //IL_2b58: Unknown result type (might be due to invalid IL or missing references) //IL_2b69: Unknown result type (might be due to invalid IL or missing references) //IL_2b73: Unknown result type (might be due to invalid IL or missing references) //IL_2b78: Unknown result type (might be due to invalid IL or missing references) //IL_2b83: Unknown result type (might be due to invalid IL or missing references) //IL_2b8d: Unknown result type (might be due to invalid IL or missing references) //IL_2b92: Unknown result type (might be due to invalid IL or missing references) //IL_2b9d: Unknown result type (might be due to invalid IL or missing references) //IL_2ba3: Unknown result type (might be due to invalid IL or missing references) //IL_2ba8: Unknown result type (might be due to invalid IL or missing references) //IL_2bb3: Unknown result type (might be due to invalid IL or missing references) //IL_2bc4: Unknown result type (might be due to invalid IL or missing references) //IL_2bc9: Unknown result type (might be due to invalid IL or missing references) //IL_2bd4: Unknown result type (might be due to invalid IL or missing references) //IL_2be5: Unknown result type (might be due to invalid IL or missing references) //IL_2bef: Unknown result type (might be due to invalid IL or missing references) //IL_2bf4: Unknown result type (might be due to invalid IL or missing references) //IL_2bff: Unknown result type (might be due to invalid IL or missing references) //IL_2c09: Unknown result type (might be due to invalid IL or missing references) //IL_2c0e: Unknown result type (might be due to invalid IL or missing references) //IL_2c1a: Unknown result type (might be due to invalid IL or missing references) //IL_286d: Unknown result type (might be due to invalid IL or missing references) //IL_2872: Unknown result type (might be due to invalid IL or missing references) //IL_2877: Unknown result type (might be due to invalid IL or missing references) //IL_287c: Unknown result type (might be due to invalid IL or missing references) //IL_2c97: Unknown result type (might be due to invalid IL or missing references) //IL_2c9d: Unknown result type (might be due to invalid IL or missing references) //IL_2ca2: Unknown result type (might be due to invalid IL or missing references) //IL_2cad: Unknown result type (might be due to invalid IL or missing references) //IL_2cbe: Unknown result type (might be due to invalid IL or missing references) //IL_2cc8: Unknown result type (might be due to invalid IL or missing references) //IL_2ccd: Unknown result type (might be due to invalid IL or missing references) //IL_2cd8: Unknown result type (might be due to invalid IL or missing references) //IL_2ce2: Unknown result type (might be due to invalid IL or missing references) //IL_2ce7: Unknown result type (might be due to invalid IL or missing references) //IL_2cf2: Unknown result type (might be due to invalid IL or missing references) //IL_2cf8: Unknown result type (might be due to invalid IL or missing references) //IL_2cfd: Unknown result type (might be due to invalid IL or missing references) //IL_2d08: Unknown result type (might be due to invalid IL or missing references) //IL_2d19: Unknown result type (might be due to invalid IL or missing references) //IL_2d1e: Unknown result type (might be due to invalid IL or missing references) //IL_2d29: Unknown result type (might be due to invalid IL or missing references) //IL_2d3a: Unknown result type (might be due to invalid IL or missing references) //IL_2d44: Unknown result type (might be due to invalid IL or missing references) //IL_2d49: Unknown result type (might be due to invalid IL or missing references) //IL_2d54: Unknown result type (might be due to invalid IL or missing references) //IL_2d5e: Unknown result type (might be due to invalid IL or missing references) //IL_2d63: Unknown result type (might be due to invalid IL or missing references) //IL_2d6f: Unknown result type (might be due to invalid IL or missing references) //IL_29c2: Unknown result type (might be due to invalid IL or missing references) //IL_29c7: Unknown result type (might be due to invalid IL or missing references) //IL_29cc: Unknown result type (might be due to invalid IL or missing references) //IL_29d1: Unknown result type (might be due to invalid IL or missing references) //IL_2dec: Unknown result type (might be due to invalid IL or missing references) //IL_2df2: Unknown result type (might be due to invalid IL or missing references) //IL_2df7: Unknown result type (might be due to invalid IL or missing references) //IL_2e02: Unknown result type (might be due to invalid IL or missing references) //IL_2e13: Unknown result type (might be due to invalid IL or missing references) //IL_2e1d: Unknown result type (might be due to invalid IL or missing references) //IL_2e22: Unknown result type (might be due to invalid IL or missing references) //IL_2e2d: Unknown result type (might be due to invalid IL or missing references) //IL_2e37: Unknown result type (might be due to invalid IL or missing references) //IL_2e3c: Unknown result type (might be due to invalid IL or missing references) //IL_2e47: Unknown result type (might be due to invalid IL or missing references) //IL_2e4d: Unknown result type (might be due to invalid IL or missing references) //IL_2e52: Unknown result type (might be due to invalid IL or missing references) //IL_2e5d: Unknown result type (might be due to invalid IL or missing references) //IL_2e6e: Unknown result type (might be due to invalid IL or missing references) //IL_2e73: Unknown result type (might be due to invalid IL or missing references) //IL_2e7e: Unknown result type (might be due to invalid IL or missing references) //IL_2e8f: Unknown result type (might be due to invalid IL or missing references) //IL_2e99: Unknown result type (might be due to invalid IL or missing references) //IL_2e9e: Unknown result type (might be due to invalid IL or missing references) //IL_2ea9: Unknown result type (might be due to invalid IL or missing references) //IL_2eb3: Unknown result type (might be due to invalid IL or missing references) //IL_2eb8: Unknown result type (might be due to invalid IL or missing references) //IL_2ec4: Unknown result type (might be due to invalid IL or missing references) //IL_2b17: Unknown result type (might be due to invalid IL or missing references) //IL_2b1c: Unknown result type (might be due to invalid IL or missing references) //IL_2b21: Unknown result type (might be due to invalid IL or missing references) //IL_2b26: Unknown result type (might be due to invalid IL or missing references) //IL_2f41: Unknown result type (might be due to invalid IL or missing references) //IL_2f47: Unknown result type (might be due to invalid IL or missing references) //IL_2f4c: Unknown result type (might be due to invalid IL or missing references) //IL_2f57: Unknown result type (might be due to invalid IL or missing references) //IL_2f68: Unknown result type (might be due to invalid IL or missing references) //IL_2f72: Unknown result type (might be due to invalid IL or missing references) //IL_2f77: Unknown result type (might be due to invalid IL or missing references) //IL_2f82: Unknown result type (might be due to invalid IL or missing references) //IL_2f8c: Unknown result type (might be due to invalid IL or missing references) //IL_2f91: Unknown result type (might be due to invalid IL or missing references) //IL_2f9c: Unknown result type (might be due to invalid IL or missing references) //IL_2fa2: Unknown result type (might be due to invalid IL or missing references) //IL_2fa7: Unknown result type (might be due to invalid IL or missing references) //IL_2fb2: Unknown result type (might be due to invalid IL or missing references) //IL_2fc3: Unknown result type (might be due to invalid IL or missing references) //IL_2fc8: Unknown result type (might be due to invalid IL or missing references) //IL_2fd3: Unknown result type (might be due to invalid IL or missing references) //IL_2fe4: Unknown result type (might be due to invalid IL or missing references) //IL_2fee: Unknown result type (might be due to invalid IL or missing references) //IL_2ff3: Unknown result type (might be due to invalid IL or missing references) //IL_2ffe: Unknown result type (might be due to invalid IL or missing references) //IL_3008: Unknown result type (might be due to invalid IL or missing references) //IL_300d: Unknown result type (might be due to invalid IL or missing references) //IL_3019: Unknown result type (might be due to invalid IL or missing references) //IL_2c6c: Unknown result type (might be due to invalid IL or missing references) //IL_2c71: Unknown result type (might be due to invalid IL or missing references) //IL_2c76: Unknown result type (might be due to invalid IL or missing references) //IL_2c7b: Unknown result type (might be due to invalid IL or missing references) //IL_3096: Unknown result type (might be due to invalid IL or missing references) //IL_309c: Unknown result type (might be due to invalid IL or missing references) //IL_30a1: Unknown result type (might be due to invalid IL or missing references) //IL_30ac: Unknown result type (might be due to invalid IL or missing references) //IL_30bd: Unknown result type (might be due to invalid IL or missing references) //IL_30c7: Unknown result type (might be due to invalid IL or missing references) //IL_30cc: Unknown result type (might be due to invalid IL or missing references) //IL_30d7: Unknown result type (might be due to invalid IL or missing references) //IL_30e1: Unknown result type (might be due to invalid IL or missing references) //IL_30e6: Unknown result type (might be due to invalid IL or missing references) //IL_30f1: Unknown result type (might be due to invalid IL or missing references) //IL_30f7: Unknown result type (might be due to invalid IL or missing references) //IL_30fc: Unknown result type (might be due to invalid IL or missing references) //IL_3107: Unknown result type (might be due to invalid IL or missing references) //IL_3118: Unknown result type (might be due to invalid IL or missing references) //IL_311d: Unknown result type (might be due to invalid IL or missing references) //IL_3128: Unknown result type (might be due to invalid IL or missing references) //IL_3139: Unknown result type (might be due to invalid IL or missing references) //IL_3143: Unknown result type (might be due to invalid IL or missing references) //IL_3148: Unknown result type (might be due to invalid IL or missing references) //IL_3153: Unknown result type (might be due to invalid IL or missing references) //IL_315d: Unknown result type (might be due to invalid IL or missing references) //IL_3162: Unknown result type (might be due to invalid IL or missing references) //IL_316e: Unknown result type (might be due to invalid IL or missing references) //IL_2dc1: Unknown result type (might be due to invalid IL or missing references) //IL_2dc6: Unknown result type (might be due to invalid IL or missing references) //IL_2dcb: Unknown result type (might be due to invalid IL or missing references) //IL_2dd0: Unknown result type (might be due to invalid IL or missing references) //IL_31eb: Unknown result type (might be due to invalid IL or missing references) //IL_31f1: Unknown result type (might be due to invalid IL or missing references) //IL_31f6: Unknown result type (might be due to invalid IL or missing references) //IL_3201: Unknown result type (might be due to invalid IL or missing references) //IL_3212: Unknown result type (might be due to invalid IL or missing references) //IL_321c: Unknown result type (might be due to invalid IL or missing references) //IL_3221: Unknown result type (might be due to invalid IL or missing references) //IL_322c: Unknown result type (might be due to invalid IL or missing references) //IL_3236: Unknown result type (might be due to invalid IL or missing references) //IL_323b: Unknown result type (might be due to invalid IL or missing references) //IL_3246: Unknown result type (might be due to invalid IL or missing references) //IL_324c: Unknown result type (might be due to invalid IL or missing references) //IL_3251: Unknown result type (might be due to invalid IL or missing references) //IL_325c: Unknown result type (might be due to invalid IL or missing references) //IL_326d: Unknown result type (might be due to invalid IL or missing references) //IL_3272: Unknown result type (might be due to invalid IL or missing references) //IL_327d: Unknown result type (might be due to invalid IL or missing references) //IL_328e: Unknown result type (might be due to invalid IL or missing references) //IL_3298: Unknown result type (might be due to invalid IL or missing references) //IL_329d: Unknown result type (might be due to invalid IL or missing references) //IL_32a8: Unknown result type (might be due to invalid IL or missing references) //IL_32b2: Unknown result type (might be due to invalid IL or missing references) //IL_32b7: Unknown result type (might be due to invalid IL or missing references) //IL_32c3: Unknown result type (might be due to invalid IL or missing references) //IL_2f16: Unknown result type (might be due to invalid IL or missing references) //IL_2f1b: Unknown result type (might be due to invalid IL or missing references) //IL_2f20: Unknown result type (might be due to invalid IL or missing references) //IL_2f25: Unknown result type (might be due to invalid IL or missing references) //IL_3340: Unknown result type (might be due to invalid IL or missing references) //IL_3346: Unknown result type (might be due to invalid IL or missing references) //IL_334b: Unknown result type (might be due to invalid IL or missing references) //IL_3356: Unknown result type (might be due to invalid IL or missing references) //IL_3367: Unknown result type (might be due to invalid IL or missing references) //IL_3371: Unknown result type (might be due to invalid IL or missing references) //IL_3376: Unknown result type (might be due to invalid IL or missing references) //IL_3381: Unknown result type (might be due to invalid IL or missing references) //IL_338b: Unknown result type (might be due to invalid IL or missing references) //IL_3390: Unknown result type (might be due to invalid IL or missing references) //IL_339b: Unknown result type (might be due to invalid IL or missing references) //IL_33a1: Unknown result type (might be due to invalid IL or missing references) //IL_33a6: Unknown result type (might be due to invalid IL or missing references) //IL_33b1: Unknown result type (might be due to invalid IL or missing references) //IL_33c2: Unknown result type (might be due to invalid IL or missing references) //IL_33c7: Unknown result type (might be due to invalid IL or missing references) //IL_33d2: Unknown result type (might be due to invalid IL or missing references) //IL_33e3: Unknown result type (might be due to invalid IL or missing references) //IL_33ed: Unknown result type (might be due to invalid IL or missing references) //IL_33f2: Unknown result type (might be due to invalid IL or missing references) //IL_33fd: Unknown result type (might be due to invalid IL or missing references) //IL_3407: Unknown result type (might be due to invalid IL or missing references) //IL_340c: Unknown result type (might be due to invalid IL or missing references) //IL_3418: Unknown result type (might be due to invalid IL or missing references) //IL_306b: Unknown result type (might be due to invalid IL or missing references) //IL_3070: Unknown result type (might be due to invalid IL or missing references) //IL_3075: Unknown result type (might be due to invalid IL or missing references) //IL_307a: Unknown result type (might be due to invalid IL or missing references) //IL_3495: Unknown result type (might be due to invalid IL or missing references) //IL_349b: Unknown result type (might be due to invalid IL or missing references) //IL_34a0: Unknown result type (might be due to invalid IL or missing references) //IL_34ab: Unknown result type (might be due to invalid IL or missing references) //IL_34bc: Unknown result type (might be due to invalid IL or missing references) //IL_34c6: Unknown result type (might be due to invalid IL or missing references) //IL_34cb: Unknown result type (might be due to invalid IL or missing references) //IL_34d6: Unknown result type (might be due to invalid IL or missing references) //IL_34e0: Unknown result type (might be due to invalid IL or missing references) //IL_34e5: Unknown result type (might be due to invalid IL or missing references) //IL_34f0: Unknown result type (might be due to invalid IL or missing references) //IL_34f6: Unknown result type (might be due to invalid IL or missing references) //IL_34fb: Unknown result type (might be due to invalid IL or missing references) //IL_3506: Unknown result type (might be due to invalid IL or missing references) //IL_3517: Unknown result type (might be due to invalid IL or missing references) //IL_351c: Unknown result type (might be due to invalid IL or missing references) //IL_3527: Unknown result type (might be due to invalid IL or missing references) //IL_3538: Unknown result type (might be due to invalid IL or missing references) //IL_3542: Unknown result type (might be due to invalid IL or missing references) //IL_3547: Unknown result type (might be due to invalid IL or missing references) //IL_3552: Unknown result type (might be due to invalid IL or missing references) //IL_355c: Unknown result type (might be due to invalid IL or missing references) //IL_3561: Unknown result type (might be due to invalid IL or missing references) //IL_356d: Unknown result type (might be due to invalid IL or missing references) //IL_31c0: Unknown result type (might be due to invalid IL or missing references) //IL_31c5: Unknown result type (might be due to invalid IL or missing references) //IL_31ca: Unknown result type (might be due to invalid IL or missing references) //IL_31cf: Unknown result type (might be due to invalid IL or missing references) //IL_3315: Unknown result type (might be due to invalid IL or missing references) //IL_331a: Unknown result type (might be due to invalid IL or missing references) //IL_331f: Unknown result type (might be due to invalid IL or missing references) //IL_3324: Unknown result type (might be due to invalid IL or missing references) //IL_346a: Unknown result type (might be due to invalid IL or missing references) //IL_346f: Unknown result type (might be due to invalid IL or missing references) //IL_3474: Unknown result type (might be due to invalid IL or missing references) //IL_3479: Unknown result type (might be due to invalid IL or missing references) //IL_35bf: Unknown result type (might be due to invalid IL or missing references) //IL_35c4: Unknown result type (might be due to invalid IL or missing references) //IL_35c9: Unknown result type (might be due to invalid IL or missing references) //IL_35ce: Unknown result type (might be due to invalid IL or missing references) if (currentlyClimbingWall && !pullingUp) { if (((((Component)this).transform.rotation == lastRot3 || axisChanged) && (climbingMovement > 0f || Input.GetAxis("Horizontal") != 0f)) || hasNotMovedOnWallYet) { if ((Input.GetAxis("Horizontal") > 0f || ((Component)this).transform.rotation != lastRot2) && wallIsClimbable) { if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.right / 3f + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f, ref hit, LayerMask.op_Implicit(collisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { if (Input.GetAxis("Horizontal") > 0f) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 4f; } } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.right / 3f + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { if (Input.GetAxis("Horizontal") > 0f) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 4f; } } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.right / 3f + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f, ref hit, LayerMask.op_Implicit(collisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { if (Input.GetAxis("Horizontal") > 0f) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 4f; } } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.right / 3f + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { if (Input.GetAxis("Horizontal") > 0f) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 4f; } } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.right / 3f + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { if (Input.GetAxis("Horizontal") > 0f) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 4f; } } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.right / 3f + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Input.GetAxis("Horizontal") > 0f) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 4f; } } else if ((Input.GetAxis("Horizontal") < 0f || ((Component)this).transform.rotation != lastRot2) && wallIsClimbable) { if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 - ((Component)this).transform.right / 3f + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f, ref hit, LayerMask.op_Implicit(collisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { if (Input.GetAxis("Horizontal") < 0f) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 4f; } } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 - ((Component)this).transform.right / 3f + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { if (Input.GetAxis("Horizontal") < 0f) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 4f; } } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 - ((Component)this).transform.right / 3f + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f, ref hit, LayerMask.op_Implicit(collisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { if (Input.GetAxis("Horizontal") < 0f) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 4f; } } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 - ((Component)this).transform.right / 3f + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { if (Input.GetAxis("Horizontal") < 0f) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 4f; } } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 - ((Component)this).transform.right / 3f + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { if (Input.GetAxis("Horizontal") < 0f) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 4f; } } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 - ((Component)this).transform.right / 3f + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2 && Input.GetAxis("Horizontal") < 0f) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 4f; } } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f, ref hit, LayerMask.op_Implicit(collisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 1f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 1f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f, ref hit, LayerMask.op_Implicit(collisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 1f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f, ref hit, LayerMask.op_Implicit(collisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 1f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f, ref hit, LayerMask.op_Implicit(collisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 1f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f, ref hit, LayerMask.op_Implicit(collisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 1f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f + ((Component)this).transform.right / 4.5f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f + ((Component)this).transform.right / 4.5f, ref hit, LayerMask.op_Implicit(collisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 1f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f + ((Component)this).transform.right / 4.5f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f + ((Component)this).transform.right / 4.5f, ref hit, LayerMask.op_Implicit(collisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 1f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f + ((Component)this).transform.right / 4.5f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f + ((Component)this).transform.right / 4.5f, ref hit, LayerMask.op_Implicit(collisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 1f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f + ((Component)this).transform.right / 4.5f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f + ((Component)this).transform.right / 4.5f, ref hit, LayerMask.op_Implicit(collisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 1f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f + ((Component)this).transform.right / 4.5f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f + ((Component)this).transform.right / 4.5f, ref hit, LayerMask.op_Implicit(collisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 1f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f + ((Component)this).transform.right / 4.5f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f + ((Component)this).transform.right / 4.5f, ref hit, LayerMask.op_Implicit(collisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 1f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f - ((Component)this).transform.right / 4.5f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f - ((Component)this).transform.right / 4.5f, ref hit, LayerMask.op_Implicit(collisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 1f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f - ((Component)this).transform.right / 4.5f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f - ((Component)this).transform.right / 4.5f, ref hit, LayerMask.op_Implicit(collisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 1f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f - ((Component)this).transform.right / 4.5f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f - ((Component)this).transform.right / 4.5f, ref hit, LayerMask.op_Implicit(collisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 1f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f - ((Component)this).transform.right / 4.5f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f - ((Component)this).transform.right / 4.5f, ref hit, LayerMask.op_Implicit(collisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 1f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f - ((Component)this).transform.right / 4.5f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f - ((Component)this).transform.right / 4.5f, ref hit, LayerMask.op_Implicit(collisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 1f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f - ((Component)this).transform.right / 4.5f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f - ((Component)this).transform.right / 4.5f, ref hit, LayerMask.op_Implicit(collisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 1f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f + ((Component)this).transform.right / 2f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f - ((Component)this).transform.right / 2f, ref hit, LayerMask.op_Implicit(collisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 2f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f + ((Component)this).transform.right / 2f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f - ((Component)this).transform.right / 2f, ref hit, LayerMask.op_Implicit(collisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 2f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f + ((Component)this).transform.right / 2f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f - ((Component)this).transform.right / 2f, ref hit, LayerMask.op_Implicit(collisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 2f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f + ((Component)this).transform.right / 2f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f - ((Component)this).transform.right / 2f, ref hit, LayerMask.op_Implicit(collisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 2f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f + ((Component)this).transform.right / 2f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f - ((Component)this).transform.right / 2f, ref hit, LayerMask.op_Implicit(collisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 2f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f + ((Component)this).transform.right / 2f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f - ((Component)this).transform.right / 2f, ref hit, LayerMask.op_Implicit(collisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 2f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f - ((Component)this).transform.right / 2f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.5625f + ((Component)this).transform.right / 2f, ref hit, LayerMask.op_Implicit(collisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 3f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f - ((Component)this).transform.right / 2f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.375f + ((Component)this).transform.right / 2f, ref hit, LayerMask.op_Implicit(collisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 3f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f - ((Component)this).transform.right / 2f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.1875f + ((Component)this).transform.right / 2f, ref hit, LayerMask.op_Implicit(collisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 3f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f - ((Component)this).transform.right / 2f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.75f + ((Component)this).transform.right / 2f, ref hit, LayerMask.op_Implicit(collisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 3f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f - ((Component)this).transform.right / 2f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 0.9375f + ((Component)this).transform.right / 2f, ref hit, LayerMask.op_Implicit(collisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 3f; } else if (Physics.Linecast(((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f - ((Component)this).transform.right / 2f, ((Component)this).transform.position + climbingSurfaceDetectorsUpAmount2 + ((Component)this).transform.forward * (climbingSurfaceDetectorsLength2 + 1f) + ((Component)this).transform.up * (climbingSurfaceDetectorsHeight2 + 1f) * 1.125f + ((Component)this).transform.right / 2f, ref hit, LayerMask.op_Implicit(collisionLayers)) && (Object)(object)((RaycastHit)(ref hit)).transform != (Object)null && ((Component)((RaycastHit)(ref hit)).transform).tag == climbableTag2) { rotationNormal = Quaternion.LookRotation(-((RaycastHit)(ref hit)).normal); rotationState = 3f; } else if (noCollisionTimer >= 5f && !wallIsClimbable) { currentlyClimbingWall = false; } if (climbingMovement > 0f || Input.GetAxis("Horizontal") != 0f || Input.GetAxis("Vertical") != 0f) { hasNotMovedOnWallYet = false; } } if ((Input.GetAxis("Horizontal") > 0f && horizontalAxis <= 0f) || (Input.GetAxis("Horizontal") < 0f && horizontalAxis >= 0f)) { axisChanged = true; } else { axisChanged = false; } horizontalAxis = Input.GetAxis("Horizontal"); lastRot3 = ((Component)this).transform.rotation; if (rotationState != 0f) { if (!finishedRotatingToWall) { ((Component)this).transform.rotation = Quaternion.Slerp(((Component)this).transform.rotation, rotationNormal, rotationToClimbableObjectSpeed2 * 2f * Time.deltaTime); } else { ((Component)this).transform.rotation = Quaternion.Slerp(((Component)this).transform.rotation, rotationNormal, climbRotationSpeed2 * Time.deltaTime); } } if (stayUpright2) { ((Component)this).transform.eulerAngles = new Vector3(0f, ((Component)this).transform.eulerAngles.y, 0f); } } else { lastYPosOnWall = 0f; climbingHeight = ((Component)this).transform.position.y; hasNotMovedOnWallYet = true; } } private void CheckIfStuck() { //IL_0ad7: Unknown result type (might be due to invalid IL or missing references) //IL_0adc: Unknown result type (might be due to invalid IL or missing references) //IL_0013: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_002e: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003e: Unknown result type (might be due to invalid IL or missing references) //IL_0049: Unknown result type (might be due to invalid IL or missing references) //IL_004e: Unknown result type (might be due to invalid IL or missing references) //IL_005a: Unknown result type (might be due to invalid IL or missing references) //IL_0160: Unknown result type (might be due to invalid IL or missing references) //IL_0165: Unknown result type (might be due to invalid IL or missing references) //IL_0178: Unknown result type (might be due to invalid IL or missing references) //IL_017d: Unknown result type (might be due to invalid IL or missing references) //IL_0185: Unknown result type (might be due to invalid IL or missing references) //IL_0190: Unknown result type (might be due to invalid IL or missing references) //IL_0195: Unknown result type (might be due to invalid IL or missing references) //IL_01a8: Unknown result type (might be due to invalid IL or missing references) //IL_01ad: Unknown result type (might be due to invalid IL or missing references) //IL_01b5: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_0089: Unknown result type (might be due to invalid IL or missing references) //IL_008e: Unknown result type (might be due to invalid IL or missing references) //IL_0099: Unknown result type (might be due to invalid IL or missing references) //IL_00a4: Unknown result type (might be due to invalid IL or missing references) //IL_00a9: Unknown result type (might be due to invalid IL or missing references) //IL_00b4: Unknown result type (might be due to invalid IL or missing references) //IL_00be: Unknown result type (might be due to invalid IL or missing references) //IL_00c3: Unknown result type (might be due to invalid IL or missing references) //IL_00cf: Unknown result type (might be due to invalid IL or missing references) //IL_00e9: Unknown result type (might be due to invalid IL or missing references) //IL_00f4: Unknown result type (might be due to invalid IL or missing references) //IL_00fe: Unknown result type (might be due to invalid IL or missing references) //IL_0103: Unknown result type (might be due to invalid IL or missing references) //IL_010e: Unknown result type (might be due to invalid IL or missing references) //IL_0119: Unknown result type (might be due to invalid IL or missing references) //IL_011e: Unknown result type (might be due to invalid IL or missing references) //IL_0129: Unknown result type (might be due to invalid IL or missing references) //IL_0133: Unknown result type (might be due to invalid IL or missing references) //IL_0138: Unknown result type (might be due to invalid IL or missing references) //IL_0144: Unknown result type (might be due to invalid IL or missing references) //IL_0ac5: Unknown result type (might be due to invalid IL or missing references) //IL_0aca: Unknown result type (might be due to invalid IL or missing references) //IL_0229: Unknown result type (might be due to invalid IL or missing references) //IL_0234: Unknown result type (might be due to invalid IL or missing references) //IL_023e: Unknown result type (might be due to invalid IL or missing references) //IL_0243: Unknown result type (might be due to invalid IL or missing references) //IL_0392: Unknown result type (might be due to invalid IL or missing references) //IL_0398: Unknown result type (might be due to invalid IL or missing references) //IL_063f: Unknown result type (might be due to invalid IL or missing references) //IL_0645: Unknown result type (might be due to invalid IL or missing references) //IL_065a: Unknown result type (might be due to invalid IL or missing references) //IL_065f: Unknown result type (might be due to invalid IL or missing references) //IL_03bf: Unknown result type (might be due to invalid IL or missing references) //IL_03ca: Unknown result type (might be due to invalid IL or missing references) //IL_03cf: Unknown result type (might be due to invalid IL or missing references) //IL_03da: Unknown result type (might be due to invalid IL or missing references) //IL_03e5: Unknown result type (might be due to invalid IL or missing references) //IL_03ef: Unknown result type (might be due to invalid IL or missing references) //IL_03f4: Unknown result type (might be due to invalid IL or missing references) //IL_03ff: Unknown result type (might be due to invalid IL or missing references) //IL_0404: Unknown result type (might be due to invalid IL or missing references) //IL_0410: Unknown result type (might be due to invalid IL or missing references) //IL_052a: Unknown result type (might be due to invalid IL or missing references) //IL_052f: Unknown result type (might be due to invalid IL or missing references) //IL_0543: Unknown result type (might be due to invalid IL or missing references) //IL_0548: Unknown result type (might be due to invalid IL or missing references) //IL_0551: Unknown result type (might be due to invalid IL or missing references) //IL_055c: Unknown result type (might be due to invalid IL or missing references) //IL_0561: Unknown result type (might be due to invalid IL or missing references) //IL_0575: Unknown result type (might be due to invalid IL or missing references) //IL_057a: Unknown result type (might be due to invalid IL or missing references) //IL_0583: Unknown result type (might be due to invalid IL or missing references) //IL_042a: Unknown result type (might be due to invalid IL or missing references) //IL_0435: Unknown result type (might be due to invalid IL or missing references) //IL_043f: Unknown result type (might be due to invalid IL or missing references) //IL_0444: Unknown result type (might be due to invalid IL or missing references) //IL_044f: Unknown result type (might be due to invalid IL or missing references) //IL_045a: Unknown result type (might be due to invalid IL or missing references) //IL_0464: Unknown result type (might be due to invalid IL or missing references) //IL_0469: Unknown result type (might be due to invalid IL or missing references) //IL_0474: Unknown result type (might be due to invalid IL or missing references) //IL_047e: Unknown result type (might be due to invalid IL or missing references) //IL_0483: Unknown result type (might be due to invalid IL or missing references) //IL_048f: Unknown result type (might be due to invalid IL or missing references) //IL_04a9: Unknown result type (might be due to invalid IL or missing references) //IL_04b4: Unknown result type (might be due to invalid IL or missing references) //IL_04be: Unknown result type (might be due to invalid IL or missing references) //IL_04c3: Unknown result type (might be due to invalid IL or missing references) //IL_04ce: Unknown result type (might be due to invalid IL or missing references) //IL_04d9: Unknown result type (might be due to invalid IL or missing references) //IL_04e3: Unknown result type (might be due to invalid IL or missing references) //IL_04e8: Unknown result type (might be due to invalid IL or missing references) //IL_04f3: Unknown result type (might be due to invalid IL or missing references) //IL_04fd: Unknown result type (might be due to invalid IL or missing references) //IL_0502: Unknown result type (might be due to invalid IL or missing references) //IL_050e: Unknown result type (might be due to invalid IL or missing references) //IL_06ec: Unknown result type (might be due to invalid IL or missing references) //IL_06f7: Unknown result type (might be due to invalid IL or missing references) //IL_06fc: Unknown result type (might be due to invalid IL or missing references) //IL_0707: Unknown result type (might be due to invalid IL or missing references) //IL_0712: Unknown result type (might be due to invalid IL or missing references) //IL_071c: Unknown result type (might be due to invalid IL or missing references) //IL_0721: Unknown result type (might be due to invalid IL or missing references) //IL_072c: Unknown result type (might be due to invalid IL or missing references) //IL_0731: Unknown result type (might be due to invalid IL or missing references) //IL_073d: Unknown result type (might be due to invalid IL or missing references) //IL_0a4e: Unknown result type (might be due to invalid IL or missing references) //IL_0a54: Unknown result type (might be due to invalid IL or missing references) //IL_0757: Unknown result type (might be due to invalid IL or missing references) //IL_0762: Unknown result type (might be due to invalid IL or missing references) //IL_076c: Unknown result type (might be due to invalid IL or missing references) //IL_0771: Unknown result type (might be due to invalid IL or missing references) //IL_077c: Unknown result type (might be due to invalid IL or missing references) //IL_0787: Unknown result type (might be due to invalid IL or missing references) //IL_0791: Unknown result type (might be due to invalid IL or missing references) //IL_0796: Unknown result type (might be due to invalid IL or missing references) //IL_07a1: Unknown result type (might be due to invalid IL or missing references) //IL_07ab: Unknown result type (might be due to invalid IL or missing references) //IL_07b0: Unknown result type (might be due to invalid IL or missing references) //IL_07bc: Unknown result type (might be due to invalid IL or missing references) //IL_0a6b: Unknown result type (might be due to invalid IL or missing references) //IL_0a76: Unknown result type (might be due to invalid IL or missing references) //IL_0a80: Unknown result type (might be due to invalid IL or missing references) //IL_0a85: Unknown result type (might be due to invalid IL or missing references) //IL_0a96: Unknown result type (might be due to invalid IL or missing references) //IL_0aa1: Unknown result type (might be due to invalid IL or missing references) //IL_0aab: Unknown result type (might be due to invalid IL or missing references) //IL_0ab0: Unknown result type (might be due to invalid IL or missing references) //IL_093e: Unknown result type (might be due to invalid IL or missing references) //IL_0949: Unknown result type (might be due to invalid IL or missing references) //IL_0953: Unknown result type (might be due to invalid IL or missing references) //IL_0958: Unknown result type (might be due to invalid IL or missing references) //IL_095d: Unknown result type (might be due to invalid IL or missing references) //IL_096c: Unknown result type (might be due to invalid IL or missing references) //IL_0971: Unknown result type (might be due to invalid IL or missing references) //IL_0980: Unknown result type (might be due to invalid IL or missing references) //IL_098b: Unknown result type (might be due to invalid IL or missing references) //IL_0995: Unknown result type (might be due to invalid IL or missing references) //IL_099a: Unknown result type (might be due to invalid IL or missing references) //IL_099f: Unknown result type (might be due to invalid IL or missing references) //IL_09a8: Unknown result type (might be due to invalid IL or missing references) //IL_086d: Unknown result type (might be due to invalid IL or missing references) //IL_0878: Unknown result type (might be due to invalid IL or missing references) //IL_0896: Unknown result type (might be due to invalid IL or missing references) //IL_08a7: Unknown result type (might be due to invalid IL or missing references) //IL_08ac: Unknown result type (might be due to invalid IL or missing references) //IL_08b1: Unknown result type (might be due to invalid IL or missing references) //IL_08c0: Unknown result type (might be due to invalid IL or missing references) //IL_08c5: Unknown result type (might be due to invalid IL or missing references) //IL_08d4: Unknown result type (might be due to invalid IL or missing references) //IL_08df: Unknown result type (might be due to invalid IL or missing references) //IL_08fd: Unknown result type (might be due to invalid IL or missing references) //IL_090e: Unknown result type (might be due to invalid IL or missing references) //IL_0913: Unknown result type (might be due to invalid IL or missing references) //IL_0918: Unknown result type (might be due to invalid IL or missing references) //IL_0921: Unknown result type (might be due to invalid IL or missing references) //IL_07d6: Unknown result type (might be due to invalid IL or missing references) //IL_07e1: Unknown result type (might be due to invalid IL or missing references) //IL_07eb: Unknown result type (might be due to invalid IL or missing references) //IL_07f0: Unknown result type (might be due to invalid IL or missing references) //IL_07fb: Unknown result type (might be due to invalid IL or missing references) //IL_0806: Unknown result type (might be due to invalid IL or missing references) //IL_0810: Unknown result type (might be due to invalid IL or missing references) //IL_0815: Unknown result type (might be due to invalid IL or missing references) //IL_0820: Unknown result type (might be due to invalid IL or missing references) //IL_082a: Unknown result type (might be due to invalid IL or missing references) //IL_082f: Unknown result type (might be due to invalid IL or missing references) //IL_083b: Unknown result type (might be due to invalid IL or missing references) //IL_09bf: Unknown result type (might be due to invalid IL or missing references) //IL_09c5: Unknown result type (might be due to invalid IL or missing references) //IL_09da: Unknown result type (might be due to invalid IL or missing references) //IL_09e0: Unknown result type (might be due to invalid IL or missing references) //IL_0a07: Unknown result type (might be due to invalid IL or missing references) //IL_0a12: Unknown result type (might be due to invalid IL or missing references) //IL_0a1c: Unknown result type (might be due to invalid IL or missing references) //IL_0a21: Unknown result type (might be due to invalid IL or missing references) if (pushAgainstWallIfPlayerIsStuck2) { if (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.up, ((Component)this).transform.position + ((Component)this).transform.forward + ((Component)this).transform.up, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.up * 1.1f, ((Component)this).transform.position + ((Component)this).transform.forward + ((Component)this).transform.up * 1.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.up * 1.2f, ((Component)this).transform.position + ((Component)this).transform.forward + ((Component)this).transform.up * 1.2f, ref hit, LayerMask.op_Implicit(collisionLayers))) { distFromWallWhenStuck = Vector3.Distance(new Vector3(((RaycastHit)(ref hit)).point.x, 0f, ((RaycastHit)(ref hit)).point.z), new Vector3(((Component)this).transform.position.x, 0f, ((Component)this).transform.position.z)); if (currentlyClimbingWall && !pullingUp && (distFromWallWhenStuck >= 0.35f || (firstDistFromWallWhenStuck != 0f && distFromWallWhenStuck >= firstDistFromWallWhenStuck + 0.05f)) && noCollisionTimer >= 5f) { Transform transform = ((Component)this).transform; transform.position += ((Component)this).transform.forward / 30f; } if (currentlyClimbingWall) { if (firstDistFromWallWhenStuck == 0f) { firstDistFromWallWhenStuck = distFromWallWhenStuck; } } else { firstDistFromWallWhenStuck = 0f; } } if (climbedUpAlready) { if (!stuckInSamePos || pullingUp) { stuckInSamePosNoCol = false; } else if (noCollisionTimer > 25f) { stuckInSamePosNoCol = true; } if ((currentlyClimbingWall && climbingMovement > 0f && ((Input.GetAxisRaw("Horizontal") > 0f && !sideScrolling.lockMovementOnXAxis && !sideScrolling.lockMovementOnZAxis) || (Input.GetAxisRaw("Horizontal") < 0f && !sideScrolling.lockMovementOnXAxis && !sideScrolling.lockMovementOnZAxis) || Input.GetAxisRaw("Vertical") > 0f || Input.GetAxisRaw("Vertical") < 0f)) || pullingUp) { if (((Component)this).transform.position == lastPos && noCollisionTimer < 5f) { if (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.up, ((Component)this).transform.position + ((Component)this).transform.forward / 2f + ((Component)this).transform.up, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.up * 1.1f, ((Component)this).transform.position + ((Component)this).transform.forward / 2f + ((Component)this).transform.up * 1.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.up * 1.2f, ((Component)this).transform.position + ((Component)this).transform.forward / 2f + ((Component)this).transform.up * 1.2f, ref hit, LayerMask.op_Implicit(collisionLayers))) { distFromWallWhenStuck = Vector3.Distance(new Vector3(((RaycastHit)(ref hit)).point.x, 0f, ((RaycastHit)(ref hit)).point.z), new Vector3(((Component)this).transform.position.x, 0f, ((Component)this).transform.position.z)); } if (!hasNotMovedOnWallYet && ((Input.GetAxisRaw("Horizontal") > 0.1f && !sideScrolling.lockMovementOnXAxis && !sideScrolling.lockMovementOnZAxis) || (Input.GetAxisRaw("Horizontal") < -0.1f && !sideScrolling.lockMovementOnXAxis && !sideScrolling.lockMovementOnZAxis) || Input.GetAxisRaw("Vertical") > 0.1f || Input.GetAxisRaw("Vertical") < -0.1f)) { stuckInSamePos = true; } } if (((Component)this).transform.rotation != lastRot2 || Mathf.Abs(((Component)this).transform.position.y - lastPos.y) > 0.001f || (stuckInSamePosNoCol && noCollisionTimer < 2f)) { stuckInSamePos = false; stuckInSamePosNoCol = false; } if (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && ((Collider)((Component)this).GetComponent()).enabled) { if (!pullingUp && stuckInSamePos) { if (Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.up, ((Component)this).transform.position + ((Component)this).transform.forward / 2f + ((Component)this).transform.up, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.up * 1.1f, ((Component)this).transform.position + ((Component)this).transform.forward / 2f + ((Component)this).transform.up * 1.1f, ref hit, LayerMask.op_Implicit(collisionLayers)) || Physics.Linecast(((Component)this).transform.position + ((Component)this).transform.up * 1.2f, ((Component)this).transform.position + ((Component)this).transform.forward / 2f + ((Component)this).transform.up * 1.2f, ref hit, LayerMask.op_Implicit(collisionLayers))) { if (distFromWallWhenStuck != 0f) { ((Component)this).transform.position = new Vector3((((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / (distFromWallWhenStuck / (0.07f * (distFromWallWhenStuck / 0.2601f))) * (distFromWallWhenStuck / 0.2601f)).x, ((Component)this).transform.position.y, (((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / (distFromWallWhenStuck / (0.07f * (distFromWallWhenStuck / 0.2601f))) * (distFromWallWhenStuck / 0.2601f)).z); } else { ((Component)this).transform.position = new Vector3((((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / 3.5f).x, ((Component)this).transform.position.y, (((RaycastHit)(ref hit)).point + ((RaycastHit)(ref hit)).normal / 3.5f).z); } } else if ((((Component)this).transform.position == lastPos && ((Component)this).transform.rotation == lastRot2) || noCollisionTimer < 2f) { Transform transform2 = ((Component)this).transform; transform2.position -= ((Component)this).transform.forward / 100f; } } if (pullingUp && noCollisionTimer < 5f && ((Component)this).transform.position == lastPos) { Transform transform3 = ((Component)this).transform; transform3.position -= ((Component)this).transform.forward / 25f; Transform transform4 = ((Component)this).transform; transform4.position += ((Component)this).transform.up / 15f; } } } } lastPos = ((Component)this).transform.position; } lastRot2 = ((Component)this).transform.rotation; } private void ScriptEnablingDisabling() { if (currentlyClimbingWall || turnBack || back2 || pullingUp) { if (!onWallScriptsFinished) { if (scriptsToDisableOnGrab != null) { string[] array = scriptsToDisableOnGrab; foreach (string text in array) { ref MonoBehaviour reference = ref scriptToDisable; Component component = ((Component)this).GetComponent(text); reference = (MonoBehaviour)(object)((component is MonoBehaviour) ? component : null); if ((Object)(object)scriptToDisable != (Object)null) { ((Behaviour)scriptToDisable).enabled = false; } else if (!currentlyEnablingAndDisablingScripts) { scriptWarning = true; } } } if (scriptsToEnableOnGrab != null) { string[] array2 = scriptsToEnableOnGrab; foreach (string text2 in array2) { ref MonoBehaviour reference2 = ref scriptToEnable; Component component2 = ((Component)this).GetComponent(text2); reference2 = (MonoBehaviour)(object)((component2 is MonoBehaviour) ? component2 : null); if ((Object)(object)scriptToEnable != (Object)null) { ((Behaviour)scriptToEnable).enabled = true; } else if (!currentlyEnablingAndDisablingScripts) { scriptWarning = true; } } } currentlyEnablingAndDisablingScripts = true; } onWallScriptsFinished = true; } else { if (onWallScriptsFinished) { if (scriptsToDisableOnGrab != null) { string[] array3 = scriptsToDisableOnGrab; foreach (string text3 in array3) { ref MonoBehaviour reference3 = ref scriptToDisable; Component component3 = ((Component)this).GetComponent(text3); reference3 = (MonoBehaviour)(object)((component3 is MonoBehaviour) ? component3 : null); if ((Object)(object)scriptToDisable != (Object)null) { ((Behaviour)scriptToDisable).enabled = true; } else if (!currentlyEnablingAndDisablingScripts || currentlyClimbingWall || turnBack || back2) { scriptWarning = true; } } } if (scriptsToEnableOnGrab != null) { string[] array4 = scriptsToEnableOnGrab; foreach (string text4 in array4) { ref MonoBehaviour reference4 = ref scriptToEnable; Component component4 = ((Component)this).GetComponent(text4); reference4 = (MonoBehaviour)(object)((component4 is MonoBehaviour) ? component4 : null); if ((Object)(object)scriptToEnable != (Object)null) { ((Behaviour)scriptToEnable).enabled = false; } else if (!currentlyEnablingAndDisablingScripts || currentlyClimbingWall || turnBack || back2) { scriptWarning = true; } } } currentlyEnablingAndDisablingScripts = true; } onWallScriptsFinished = false; } if (!currentlyClimbingWall && !turnBack && !back2 && !pullingUp) { currentlyEnablingAndDisablingScripts = false; } if (!scriptWarning) { return; } if (scriptsToDisableOnGrab != null) { string[] array5 = scriptsToDisableOnGrab; foreach (string text5 in array5) { ref MonoBehaviour reference5 = ref scriptToDisable; Component component5 = ((Component)this).GetComponent(text5); reference5 = (MonoBehaviour)(object)((component5 is MonoBehaviour) ? component5 : null); if ((Object)(object)scriptToDisable == (Object)null) { Debug.Log((object)("The script to disable on grab named: \"" + text5 + "\" was not found on the player")); } } } if (scriptsToEnableOnGrab != null) { string[] array6 = scriptsToEnableOnGrab; foreach (string text6 in array6) { ref MonoBehaviour reference6 = ref scriptToEnable; Component component6 = ((Component)this).GetComponent(text6); reference6 = (MonoBehaviour)(object)((component6 is MonoBehaviour) ? component6 : null); if ((Object)(object)scriptToEnable == (Object)null) { Debug.Log((object)("The script to enable on grab named: \"" + text6 + "\" was not found on the player")); } } } scriptWarning = false; } private void OnControllerColliderHit(ControllerColliderHit hit) { //IL_000e: Unknown result type (might be due to invalid IL or missing references) //IL_0013: Unknown result type (might be due to invalid IL or missing references) //IL_006f: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0040: Unknown result type (might be due to invalid IL or missing references) //IL_007c: Unknown result type (might be due to invalid IL or missing references) //IL_0082: Unknown result type (might be due to invalid IL or missing references) //IL_0087: Unknown result type (might be due to invalid IL or missing references) //IL_0097: Unknown result type (might be due to invalid IL or missing references) //IL_009c: Unknown result type (might be due to invalid IL or missing references) //IL_005c: Unknown result type (might be due to invalid IL or missing references) //IL_0061: Unknown result type (might be due to invalid IL or missing references) //IL_01e4: Unknown result type (might be due to invalid IL or missing references) //IL_01e9: Unknown result type (might be due to invalid IL or missing references) //IL_01ef: Unknown result type (might be due to invalid IL or missing references) //IL_01f4: Unknown result type (might be due to invalid IL or missing references) //IL_01d1: Unknown result type (might be due to invalid IL or missing references) noCollisionTimer = 0f; slidingAngle = Vector3.Angle(hit.normal, Vector3.up); if (slidingAngle >= grounded.slopeLimit) { slidingVector = hit.normal; if (slidingVector.y == 0f) { slidingVector = Vector3.zero; } } else { slidingVector = Vector3.zero; } slidingAngle = Vector3.Angle(hit.normal, moveDirection - Vector3.up * moveDirection.y); if (slidingAngle > 90f) { slidingAngle -= 90f; if (slidingAngle > grounded.slopeLimit) { slidingAngle = grounded.slopeLimit; } if (slidingAngle < grounded.slopeLimit) { slidingAngle = 0f; } } if (hit.gameObject.tag == climbableTag2 && wallIsClimbable && jumpedOffClimbableObjectTimer >= 0.3f && (Input.GetAxisRaw("Horizontal") != 0f || Input.GetAxisRaw("Vertical") != 0f)) { if (snapToCenterOfObject2 && !snappingToCenter && !currentlyClimbingWall) { snapTimer = 0f; snappingToCenter = true; } if (!currentlyClimbingWall && Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { ((Component)this).GetComponent().velocity = Vector3.zero; } currentlyClimbingWall = true; climbDirection = Vector3.zero; moveDirection = Vector3.zero; } } private void OnCollisionStay(Collision hit) { //IL_0017: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0031: Unknown result type (might be due to invalid IL or missing references) //IL_008e: Unknown result type (might be due to invalid IL or missing references) //IL_0093: Unknown result type (might be due to invalid IL or missing references) //IL_005a: Unknown result type (might be due to invalid IL or missing references) //IL_005f: Unknown result type (might be due to invalid IL or missing references) //IL_009c: Unknown result type (might be due to invalid IL or missing references) //IL_00a2: Unknown result type (might be due to invalid IL or missing references) //IL_00a7: Unknown result type (might be due to invalid IL or missing references) //IL_00b7: Unknown result type (might be due to invalid IL or missing references) //IL_00bc: Unknown result type (might be due to invalid IL or missing references) //IL_007b: Unknown result type (might be due to invalid IL or missing references) //IL_0080: Unknown result type (might be due to invalid IL or missing references) //IL_0212: Unknown result type (might be due to invalid IL or missing references) //IL_0217: Unknown result type (might be due to invalid IL or missing references) //IL_01ff: Unknown result type (might be due to invalid IL or missing references) ContactPoint[] contacts = hit.contacts; for (int i = 0; i < contacts.Length; i++) { ContactPoint val = contacts[i]; noCollisionTimer = 0f; slidingAngle = Vector3.Angle(((ContactPoint)(ref val)).normal, Vector3.up); if (slidingAngle >= grounded.slopeLimit) { slidingVector = ((ContactPoint)(ref val)).normal; if (slidingVector.y == 0f) { slidingVector = Vector3.zero; } } else { slidingVector = Vector3.zero; } slidingAngle = Vector3.Angle(((ContactPoint)(ref val)).normal, moveDirection - Vector3.up * moveDirection.y); if (slidingAngle > 90f) { slidingAngle -= 90f; if (slidingAngle > grounded.slopeLimit) { slidingAngle = grounded.slopeLimit; } if (slidingAngle < grounded.slopeLimit) { slidingAngle = 0f; } } } if (hit.gameObject.tag == climbableTag2 && wallIsClimbable && jumpedOffClimbableObjectTimer >= 0.3f && (Input.GetAxisRaw("Horizontal") != 0f || Input.GetAxisRaw("Vertical") != 0f)) { if (snapToCenterOfObject2 && !snappingToCenter && !currentlyClimbingWall) { snapTimer = 0f; snappingToCenter = true; } if (!currentlyClimbingWall && Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { ((Component)this).GetComponent().velocity = Vector3.zero; } currentlyClimbingWall = true; moveDirection = Vector3.zero; } } private void OnDisable() { //IL_0082: Unknown result type (might be due to invalid IL or missing references) //IL_0087: Unknown result type (might be due to invalid IL or missing references) //IL_0049: Unknown result type (might be due to invalid IL or missing references) if (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && (!Object.op_Implicit((Object)(object)((Component)this).GetComponent()) || (Object.op_Implicit((Object)(object)((Component)this).GetComponent()) && !((Collider)((Component)this).GetComponent()).enabled))) { ((Component)this).GetComponent().velocity = Vector3.zero; } moveDirection.y = 0f; currentlyOnWall = false; currentlyClimbingWall = false; turnBack = false; back2 = false; slidingVector = Vector3.zero; } } public class CamMove : MonoBehaviour { private void Start() { } private void Update() { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_001b: Unknown result type (might be due to invalid IL or missing references) //IL_002a: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_004e: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Unknown result type (might be due to invalid IL or missing references) ((Component)this).transform.Rotate(Vector3.up * Time.fixedDeltaTime * 60f * Input.GetAxis("Horizontal")); ((Component)this).transform.Translate(Vector3.forward * Time.fixedDeltaTime * 5f * Input.GetAxis("Vertical")); } } namespace Sora101Ven.CDZ_Thundergun { [BepInPlugin("Sora101Ven.CDZ_Thundergun", "CDZ_Thundergun", "1.0.0")] [BepInProcess("h3vr.exe")] [Description("Built with MeatKit")] [BepInDependency("h3vr.otherloader", "1.3.0")] public class CDZ_ThundergunPlugin : BaseUnityPlugin { private static readonly string BasePath = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location); internal static ManualLogSource Logger; private void Awake() { Logger = ((BaseUnityPlugin)this).Logger; LoadAssets(); } private void LoadAssets() { Harmony.CreateAndPatchAll(Assembly.GetExecutingAssembly(), "Sora101Ven.CDZ_Thundergun"); OtherLoader.RegisterDirectLoad(BasePath, "Sora101Ven.CDZ_Thundergun", "", "", "thunda", ""); } } } [RequireComponent(typeof(MeshFilter))] [RequireComponent(typeof(MeshRenderer))] public class MeshCombiner : MonoBehaviour { private const int Mesh16BitBufferVertexLimit = 65535; [SerializeField] private bool createMultiMaterialMesh = false; [SerializeField] private bool combineInactiveChildren = false; [SerializeField] private bool deactivateCombinedChildren = true; [SerializeField] private bool deactivateCombinedChildrenMeshRenderers = false; [SerializeField] private bool generateUVMap = false; [SerializeField] private bool destroyCombinedChildren = false; [SerializeField] private string folderPath = "Prefabs/CombinedMeshes"; [SerializeField] [Tooltip("MeshFilters with Meshes which we don't want to combine into one Mesh.")] private MeshFilter[] meshFiltersToSkip = (MeshFilter[])(object)new MeshFilter[0]; public bool CreateMultiMaterialMesh { get { return createMultiMaterialMesh; } set { createMultiMaterialMesh = value; } } public bool CombineInactiveChildren { get { return combineInactiveChildren; } set { combineInactiveChildren = value; } } public bool DeactivateCombinedChildren { get { return deactivateCombinedChildren; } set { deactivateCombinedChildren = value; CheckDeactivateCombinedChildren(); } } public bool DeactivateCombinedChildrenMeshRenderers { get { return deactivateCombinedChildrenMeshRenderers; } set { deactivateCombinedChildrenMeshRenderers = value; CheckDeactivateCombinedChildren(); } } public bool GenerateUVMap { get { return generateUVMap; } set { generateUVMap = value; } } public bool DestroyCombinedChildren { get { return destroyCombinedChildren; } set { destroyCombinedChildren = value; CheckDestroyCombinedChildren(); } } public string FolderPath { get { return folderPath; } set { folderPath = value; } } private void CheckDeactivateCombinedChildren() { if (deactivateCombinedChildren || deactivateCombinedChildrenMeshRenderers) { destroyCombinedChildren = false; } } private void CheckDestroyCombinedChildren() { if (destroyCombinedChildren) { deactivateCombinedChildren = false; deactivateCombinedChildrenMeshRenderers = false; } } public void CombineMeshes(bool showCreatedMeshInfo) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_0037: Unknown result type (might be due to invalid IL or missing references) //IL_003c: Unknown result type (might be due to invalid IL or missing references) //IL_0043: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_0050: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Unknown result type (might be due to invalid IL or missing references) //IL_006d: Unknown result type (might be due to invalid IL or missing references) //IL_007d: Unknown result type (might be due to invalid IL or missing references) //IL_00af: Unknown result type (might be due to invalid IL or missing references) //IL_00bb: Unknown result type (might be due to invalid IL or missing references) //IL_00c8: Unknown result type (might be due to invalid IL or missing references) //IL_00ed: Unknown result type (might be due to invalid IL or missing references) Vector3 localScale = ((Component)this).transform.localScale; int siblingIndex = ((Component)this).transform.GetSiblingIndex(); Transform parent = ((Component)this).transform.parent; ((Component)this).transform.parent = null; Quaternion rotation = ((Component)this).transform.rotation; Vector3 position = ((Component)this).transform.position; Vector3 localScale2 = ((Component)this).transform.localScale; ((Component)this).transform.rotation = Quaternion.identity; ((Component)this).transform.position = Vector3.zero; ((Component)this).transform.localScale = Vector3.one; if (!createMultiMaterialMesh) { CombineMeshesWithSingleMaterial(showCreatedMeshInfo); } else { CombineMeshesWithMutliMaterial(showCreatedMeshInfo); } ((Component)this).transform.rotation = rotation; ((Component)this).transform.position = position; ((Component)this).transform.localScale = localScale2; ((Component)this).transform.parent = parent; ((Component)this).transform.SetSiblingIndex(siblingIndex); ((Component)this).transform.localScale = localScale; } private MeshFilter[] GetMeshFiltersToCombine() { MeshFilter[] meshFilters = ((Component)this).GetComponentsInChildren(combineInactiveChildren); meshFiltersToSkip = meshFiltersToSkip.Where((MeshFilter meshFilter) => (Object)(object)meshFilter != (Object)(object)meshFilters[0]).ToArray(); meshFiltersToSkip = meshFiltersToSkip.Where((MeshFilter meshFilter) => (Object)(object)meshFilter != (Object)null).ToArray(); for (int i = 0; i < meshFiltersToSkip.Length; i++) { meshFilters = meshFilters.Where((MeshFilter meshFilter) => (Object)(object)meshFilter != (Object)(object)meshFiltersToSkip[i]).ToArray(); } return meshFilters; } private void CombineMeshesWithSingleMaterial(bool showCreatedMeshInfo) { //IL_0052: Unknown result type (might be due to invalid IL or missing references) //IL_00d4: Unknown result type (might be due to invalid IL or missing references) //IL_00db: Expected O, but got Unknown MeshFilter[] meshFiltersToCombine = GetMeshFiltersToCombine(); CombineInstance[] array = (CombineInstance[])(object)new CombineInstance[meshFiltersToCombine.Length - 1]; long num = 0L; for (int i = 0; i < meshFiltersToCombine.Length - 1; i++) { ((CombineInstance)(ref array[i])).subMeshIndex = 0; ((CombineInstance)(ref array[i])).mesh = meshFiltersToCombine[i + 1].sharedMesh; ((CombineInstance)(ref array[i])).transform = ((Component)meshFiltersToCombine[i + 1]).transform.localToWorldMatrix; num += ((CombineInstance)(ref array[i])).mesh.vertices.Length; } MeshRenderer[] componentsInChildren = ((Component)this).GetComponentsInChildren(combineInactiveChildren); if (componentsInChildren.Length >= 2) { ((Renderer)componentsInChildren[0]).sharedMaterials = (Material[])(object)new Material[1]; ((Renderer)componentsInChildren[0]).sharedMaterial = ((Renderer)componentsInChildren[1]).sharedMaterial; } else { ((Renderer)componentsInChildren[0]).sharedMaterials = (Material[])(object)new Material[0]; } Mesh val = new Mesh(); ((Object)val).name = ((Object)this).name; if (num <= 65535) { val.CombineMeshes(array); GenerateUV(val); meshFiltersToCombine[0].sharedMesh = val; DeactivateCombinedGameObjects(meshFiltersToCombine); if (showCreatedMeshInfo) { Debug.Log((object)("Mesh \"" + ((Object)this).name + "\" was created from " + array.Length + " children meshes and has " + num + " vertices.")); } } else if (showCreatedMeshInfo) { Debug.Log((object)("The mesh vertex limit is 65535! The created mesh had " + num + " vertices. Upgrade Unity version to 2017.3 or higher to avoid this limit (some old devices, like Android with Mali-400 GPU, do not support over 65535 vertices).")); } } private void CombineMeshesWithMutliMaterial(bool showCreatedMeshInfo) { //IL_01f4: Unknown result type (might be due to invalid IL or missing references) //IL_01fb: Expected O, but got Unknown //IL_017f: Unknown result type (might be due to invalid IL or missing references) //IL_0186: Expected O, but got Unknown //IL_01a6: Unknown result type (might be due to invalid IL or missing references) //IL_01bf: Unknown result type (might be due to invalid IL or missing references) //IL_01cb: Unknown result type (might be due to invalid IL or missing references) //IL_0103: Unknown result type (might be due to invalid IL or missing references) //IL_0131: Unknown result type (might be due to invalid IL or missing references) //IL_013d: Unknown result type (might be due to invalid IL or missing references) MeshFilter[] meshFiltersToCombine = GetMeshFiltersToCombine(); MeshRenderer[] array = (MeshRenderer[])(object)new MeshRenderer[meshFiltersToCombine.Length]; array[0] = ((Component)this).GetComponent(); List list = new List(); for (int i = 0; i < meshFiltersToCombine.Length - 1; i++) { array[i + 1] = ((Component)meshFiltersToCombine[i + 1]).GetComponent(); if (!((Object)(object)array[i + 1] != (Object)null)) { continue; } Material[] sharedMaterials = ((Renderer)array[i + 1]).sharedMaterials; for (int j = 0; j < sharedMaterials.Length; j++) { if (!list.Contains(sharedMaterials[j])) { list.Add(sharedMaterials[j]); } } } List list2 = new List(); long num = 0L; for (int k = 0; k < list.Count; k++) { List list3 = new List(); for (int l = 0; l < meshFiltersToCombine.Length - 1; l++) { if (!((Object)(object)array[l + 1] != (Object)null)) { continue; } Material[] sharedMaterials2 = ((Renderer)array[l + 1]).sharedMaterials; for (int m = 0; m < sharedMaterials2.Length; m++) { if ((Object)(object)list[k] == (Object)(object)sharedMaterials2[m]) { CombineInstance item = default(CombineInstance); ((CombineInstance)(ref item)).subMeshIndex = m; ((CombineInstance)(ref item)).mesh = meshFiltersToCombine[l + 1].sharedMesh; ((CombineInstance)(ref item)).transform = ((Component)meshFiltersToCombine[l + 1]).transform.localToWorldMatrix; list3.Add(item); num += ((CombineInstance)(ref item)).mesh.vertices.Length; } } } Mesh val = new Mesh(); if (num <= 65535) { val.CombineMeshes(list3.ToArray(), true); } CombineInstance item2 = default(CombineInstance); ((CombineInstance)(ref item2)).subMeshIndex = 0; ((CombineInstance)(ref item2)).mesh = val; ((CombineInstance)(ref item2)).transform = Matrix4x4.identity; list2.Add(item2); } ((Renderer)array[0]).sharedMaterials = list.ToArray(); Mesh val2 = new Mesh(); ((Object)val2).name = ((Object)this).name; if (num <= 65535) { val2.CombineMeshes(list2.ToArray(), false); GenerateUV(val2); meshFiltersToCombine[0].sharedMesh = val2; DeactivateCombinedGameObjects(meshFiltersToCombine); if (showCreatedMeshInfo) { Debug.Log((object)("Mesh \"" + ((Object)this).name + "\" was created from " + (meshFiltersToCombine.Length - 1) + " children meshes and has " + list2.Count + " submeshes, and " + num + " vertices.")); } } else if (showCreatedMeshInfo) { Debug.Log((object)("The mesh vertex limit is 65535! The created mesh had " + num + " vertices. Upgrade Unity version to 2017.3 or higher to avoid this limit (some old devices, like Android with Mali-400 GPU, do not support over 65535 vertices).")); } } private void DeactivateCombinedGameObjects(MeshFilter[] meshFilters) { for (int i = 0; i < meshFilters.Length - 1; i++) { if (!destroyCombinedChildren) { if (deactivateCombinedChildren) { ((Component)meshFilters[i + 1]).gameObject.SetActive(false); } if (deactivateCombinedChildrenMeshRenderers) { MeshRenderer component = ((Component)meshFilters[i + 1]).gameObject.GetComponent(); if ((Object)(object)component != (Object)null) { ((Renderer)component).enabled = false; } } } else { Object.DestroyImmediate((Object)(object)((Component)meshFilters[i + 1]).gameObject); } } } private void GenerateUV(Mesh combinedMesh) { //IL_000f: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) if (generateUVMap) { UnwrapParam val = default(UnwrapParam); UnwrapParam.SetDefaults(ref val); Unwrapping.GenerateSecondaryUVSet(combinedMesh, val); } } } public class ExtrudeRandomEdges : MonoBehaviour { private pb_Object pb; private pb_Face lastExtrudedFace = null; public float distance = 1f; private void Start() { pb = pb_ShapeGenerator.PlaneGenerator(1f, 1f, 0, 0, (Axis)2, false); pb.SetFaceMaterial(pb.faces, pb_Constant.DefaultMaterial); lastExtrudedFace = pb.faces[0]; } private void OnGUI() { if (GUILayout.Button("Extrude Random Edge", (GUILayoutOption[])(object)new GUILayoutOption[0])) { ExtrudeEdge(); } } private void ExtrudeEdge() { //IL_0096: Unknown result type (might be due to invalid IL or missing references) //IL_009b: Unknown result type (might be due to invalid IL or missing references) //IL_00b4: Unknown result type (might be due to invalid IL or missing references) //IL_00d0: Unknown result type (might be due to invalid IL or missing references) //IL_00d5: Unknown result type (might be due to invalid IL or missing references) //IL_00df: Unknown result type (might be due to invalid IL or missing references) //IL_00fc: Unknown result type (might be due to invalid IL or missing references) //IL_0101: Unknown result type (might be due to invalid IL or missing references) //IL_0106: Unknown result type (might be due to invalid IL or missing references) //IL_0122: Unknown result type (might be due to invalid IL or missing references) //IL_0124: Unknown result type (might be due to invalid IL or missing references) //IL_016c: Unknown result type (might be due to invalid IL or missing references) //IL_0174: Unknown result type (might be due to invalid IL or missing references) pb_Face sourceFace = lastExtrudedFace; List wingedEdges = pb_WingedEdge.GetWingedEdges(pb, false); IEnumerable source = wingedEdges.Where((pb_WingedEdge x) => x.face == sourceFace); List list = (from y in source where y.opposite == null select y.edge.local).ToList(); int index = Random.Range(0, list.Count); pb_Edge val = list[index]; Vector3 val2 = (pb.vertices[val.x] + pb.vertices[val.y]) * 0.5f - pb_Math.Average((IList)sourceFace.distinctIndices, (Func)((int x) => pb.vertices[x]), (IList)null); ((Vector3)(ref val2)).Normalize(); pb_Edge[] selectedEdges = default(pb_Edge[]); pbMeshOps.Extrude(pb, (pb_Edge[])(object)new pb_Edge[1] { val }, 0f, false, true, ref selectedEdges); lastExtrudedFace = pb.faces.Last(); pb.SetSelectedEdges((IEnumerable)selectedEdges); pb_Object_Utility.TranslateVertices(pb, pb.SelectedTriangles, val2 * distance); pb.ToMesh(); pb.Refresh((RefreshMask)255); } } public class HighlightNearestFace : MonoBehaviour { public float travel = 50f; public float speed = 0.2f; private pb_Object target; private pb_Face nearest = null; private void Start() { //IL_0061: Unknown result type (might be due to invalid IL or missing references) //IL_00a1: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00c5: Unknown result type (might be due to invalid IL or missing references) target = pb_ShapeGenerator.PlaneGenerator(travel, travel, 25, 25, (Axis)2, false); target.SetFaceMaterial(target.faces, pb_Constant.DefaultMaterial); ((Component)target).transform.position = new Vector3(travel * 0.5f, 0f, travel * 0.5f); target.ToMesh(); target.Refresh((RefreshMask)255); Camera main = Camera.main; ((Component)main).transform.position = new Vector3(25f, 40f, 0f); ((Component)main).transform.localRotation = Quaternion.Euler(new Vector3(65f, 0f, 0f)); } private void Update() { //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_0080: Unknown result type (might be due to invalid IL or missing references) //IL_0085: Unknown result type (might be due to invalid IL or missing references) //IL_008a: Unknown result type (might be due to invalid IL or missing references) //IL_00a2: Unknown result type (might be due to invalid IL or missing references) //IL_00dd: Unknown result type (might be due to invalid IL or missing references) //IL_00f3: Unknown result type (might be due to invalid IL or missing references) //IL_013d: Unknown result type (might be due to invalid IL or missing references) float num = Time.time * speed; Vector3 position = default(Vector3); ((Vector3)(ref position))..ctor(Mathf.PerlinNoise(num, num) * travel, 2f, Mathf.PerlinNoise(num + 1f, num + 1f) * travel); ((Component)this).transform.position = position; if ((Object)(object)target == (Object)null) { Debug.LogWarning((object)"Missing the ProBuilder Mesh target!"); return; } Vector3 val = ((Component)target).transform.InverseTransformPoint(((Component)this).transform.position); if (nearest != null) { target.SetFaceColor(nearest, Color.white); } int num2 = target.faces.Length; float num3 = float.PositiveInfinity; nearest = target.faces[0]; for (int i = 0; i < num2; i++) { float num4 = Vector3.Distance(val, FaceCenter(target, target.faces[i])); if (num4 < num3) { num3 = num4; nearest = target.faces[i]; } } target.SetFaceColor(nearest, Color.blue); target.RefreshColors(); } private Vector3 FaceCenter(pb_Object pb, pb_Face face) { //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_00be: Unknown result type (might be due to invalid IL or missing references) //IL_00bf: Unknown result type (might be due to invalid IL or missing references) //IL_00c6: Unknown result type (might be due to invalid IL or missing references) Vector3[] vertices = pb.vertices; Vector3 zero = Vector3.zero; int[] distinctIndices = face.distinctIndices; foreach (int num in distinctIndices) { zero.x += vertices[num].x; zero.y += vertices[num].y; zero.z += vertices[num].z; } float num2 = face.distinctIndices.Length; zero.x /= num2; zero.y /= num2; zero.z /= num2; return zero; } } namespace Plawius.NonConvexCollider { [Serializable] public struct Parameters { public delegate void NativeCallbackDelegate(double overallProgress, double stageProgress, double operationProgress, IntPtr stage, IntPtr operation); [Tooltip("Maximum number of convex hulls. Default = 32. Range = [1 .. 128]")] [Range(1f, 128f)] public int maxConvexHulls; [Tooltip("Maximum number of voxels generated during the voxelization stage. Default = 50000. Range = [10000 .. 6400000]")] [Range(10000f, 6400000f)] public int resolution; [Tooltip("Maximum concavity. Default = 0.0025. Range = [0.0 .. 1.0]")] [Range(0f, 1f)] public double concavity; [Tooltip("Controls the granularity of the search for the \"best\" clipping plane. Default = 4. Range = [1 .. 16]")] [Range(1f, 16f)] public int planeDownsampling; [Tooltip("Controls the precision of the convex - hull generation process during the clipping plane selection stage. Default = 4. Range = [1 .. 16]")] [Range(1f, 16f)] public int convexhullApproximation; [Tooltip("Controls the bias toward clipping along symmetry planes. Default = 0.05. Range = [0.0 .. 1.0]")] [Range(0f, 1f)] public double alpha; [Tooltip("Controls the bias toward clipping along revolution axes. Default = 0.05. Range = [0.0 .. 1.0]")] [Range(0f, 1f)] public double beta; [Tooltip("Enable / disable normalizing the mesh before applying the convex decomposition. Default = 1. Range = [0 .. 1]")] [Range(0f, 1f)] public int pca; [Tooltip("0: voxel - based approximate convex decomposition, 1 : tetrahedron - based approximate convex decomposition. Default = 0. Range = [0 .. 1]")] [Range(0f, 1f)] public int mode; [Tooltip("Controls the maximum number of triangles per convex - hull. Default = 64. Range = [4 .. 1024]")] [Range(4f, 1024f)] public int maxNumVerticesPerCH; [Tooltip("Controls the adaptive sampling of the generated convex - hulls. Default = 0.0001. Range = [0.0 .. 0.01]")] [Range(0f, 0.01f)] public double minVolumePerCH; [HideInInspector] public NativeCallbackDelegate callback; public static Parameters LowResolution() { return new Parameters { resolution = 10000, maxConvexHulls = 8, concavity = 0.0025, planeDownsampling = 4, convexhullApproximation = 4, alpha = 0.05, beta = 0.05, pca = 1, mode = 0, maxNumVerticesPerCH = 64, minVolumePerCH = 0.0001, callback = null }; } public static Parameters Default() { return new Parameters { resolution = 50000, maxConvexHulls = 32, concavity = 0.0025, planeDownsampling = 4, convexhullApproximation = 4, alpha = 0.05, beta = 0.05, pca = 1, mode = 0, maxNumVerticesPerCH = 64, minVolumePerCH = 0.0001, callback = null }; } public static Parameters HighResolution() { return new Parameters { resolution = 4000000, maxConvexHulls = 32, concavity = 0.0025, planeDownsampling = 4, convexhullApproximation = 4, alpha = 0.05, beta = 0.05, pca = 1, mode = 0, maxNumVerticesPerCH = 64, minVolumePerCH = 0.0001, callback = null }; } public override int GetHashCode() { int num = 17; num = num * 31 + maxConvexHulls.GetHashCode(); num = num * 31 + resolution.GetHashCode(); num = num * 31 + concavity.GetHashCode(); num = num * 31 + planeDownsampling.GetHashCode(); num = num * 31 + convexhullApproximation.GetHashCode(); num = num * 31 + alpha.GetHashCode(); num = num * 31 + beta.GetHashCode(); num = num * 31 + pca.GetHashCode(); num = num * 31 + mode.GetHashCode(); num = num * 31 + maxNumVerticesPerCH.GetHashCode(); return num * 31 + minVolumePerCH.GetHashCode(); } } public static class API { private static Action _currentProgressCallback = null; public static Mesh[] GenerateConvexMeshes(Mesh nonconvexMesh) { return GenerateConvexMeshes(nonconvexMesh, Parameters.Default()); } [MonoPInvokeCallback(typeof(Parameters.NativeCallbackDelegate))] private static void NativeCallback(double overallProgress, double stageProgress, double operationProgress, IntPtr stagePtr, IntPtr operationPtr) { string text = Marshal.PtrToStringAnsi(stagePtr); string text2 = Marshal.PtrToStringAnsi(operationPtr); float arg = (float)(overallProgress * 0.01); string arg2 = ((!(text != text2)) ? text : $"{text}. {text2}"); if (_currentProgressCallback != null) { _currentProgressCallback(arg, arg2); } } public static Mesh[] GenerateConvexMeshes(Mesh nonconvexMesh, Parameters parameters, Action progressCallback = null) { //IL_033c: Unknown result type (might be due to invalid IL or missing references) //IL_0341: Unknown result type (might be due to invalid IL or missing references) //IL_035c: Unknown result type (might be due to invalid IL or missing references) //IL_0363: Expected O, but got Unknown if ((Object)(object)nonconvexMesh == (Object)null) { throw new Exception("GenerateConvexMeshes called with nonconvexMesh == null"); } float arg = 0f; progressCallback?.Invoke(arg, "Initialization..."); int[] triangles = nonconvexMesh.triangles; int triangles_size = triangles.Length; Vector3[] vertices = nonconvexMesh.vertices; IntPtr out_points = IntPtr.Zero; IntPtr out_triangles = IntPtr.Zero; IntPtr indexes = IntPtr.Zero; int indexes_cnt = 0; arg = 0.1f; progressCallback?.Invoke(arg, "Generation is in progress, please wait..."); if (parameters.maxConvexHulls == 0 || parameters.resolution == 0) { parameters = Parameters.Default(); } parameters.callback = NativeCallback; _currentProgressCallback = progressCallback; int num = -1; GCHandle gCHandle = GCHandle.Alloc(vertices, GCHandleType.Pinned); GCHandle gCHandle2 = GCHandle.Alloc(triangles, GCHandleType.Pinned); try { num = Interop.GetMeshEx(gCHandle.AddrOfPinnedObject(), nonconvexMesh.vertexCount * 3, gCHandle2.AddrOfPinnedObject(), triangles_size, out out_points, out out_triangles, out indexes, out indexes_cnt, parameters); } finally { if (gCHandle.IsAllocated) { gCHandle.Free(); } if (gCHandle2.IsAllocated) { gCHandle2.Free(); } } _currentProgressCallback = null; if (num <= 0) { throw new Exception("GenerateConvexMeshes failed, nothing is returned, please check your Mesh and/or your Parameters"); } if (num > parameters.maxConvexHulls) { throw new Exception("GenerateConvexMeshes failed, returned " + num + " meshes returned, but maxConvexHulls == " + parameters.maxConvexHulls); } if (indexes_cnt < 0 || indexes_cnt % 2 != 0 || num != indexes_cnt / 2) { throw new Exception("GenerateConvexMeshes failed, data is corrupted"); } arg = 0.4f; progressCallback?.Invoke(arg, "Generation is done. Getting results..."); float num2 = 1f - arg; if (num != 0) { num2 /= (float)num; } try { Mesh[] array = (Mesh[])(object)new Mesh[num]; int[] array2 = new int[indexes_cnt]; Marshal.Copy(indexes, array2, 0, indexes_cnt); int num3 = 0; int num4 = 0; for (int i = 0; i < num; i++) { progressCallback?.Invoke(arg, "Generation is done. Getting result " + (i + 1) + "/" + num + "..."); arg += num2; int num5 = array2[i * 2]; int num6 = array2[i * 2 + 1]; if (num5 < 0 || num6 < 0 || num5 % 3 != 0) { throw new Exception("GenerateConvexMeshes failed, one of the mesh data is corrupted"); } double[] array3 = new double[num5]; int[] array4 = new int[num6]; IntPtr source = new IntPtr(out_points.ToInt64() + 8 * num3); Marshal.Copy(source, array3, 0, num5); num3 += num5; IntPtr source2 = new IntPtr(out_triangles.ToInt64() + 4 * num4); Marshal.Copy(source2, array4, 0, num6); num4 += num6; Vector3[] array5 = (Vector3[])(object)new Vector3[num5 / 3]; for (int j = 0; j < num5 / 3; j++) { ref Vector3 reference = ref array5[j]; reference = new Vector3((float)array3[j * 3], (float)array3[1 + j * 3], (float)array3[2 + j * 3]); } int num7 = i; Mesh val = new Mesh(); val.vertices = array5; val.triangles = array4; ((Object)val).name = "Generated convex submesh " + (i + 1); array[num7] = val; } progressCallback?.Invoke(1f, "Generation is done. Cleaning up..."); return array; } finally { Interop.ReleaseMemory(indexes); Interop.ReleaseMemory(out_points); Interop.ReleaseMemory(out_triangles); } } } internal static class Interop { [DllImport("libvhacd")] internal static extern int GetMeshEx(IntPtr points, int poitns_size, IntPtr triangles, int triangles_size, out IntPtr out_points, out IntPtr out_triangles, out IntPtr indexes, out int indexes_cnt, Parameters prms); [DllImport("libvhacd")] internal static extern int ReleaseMemory(IntPtr ptr); } public class NonConvexColliderAsset : ScriptableObject { public Mesh[] ConvexMeshes = (Mesh[])(object)new Mesh[0]; public long[] HashOfSourceMeshes; public static NonConvexColliderAsset CreateAsset(Mesh[] meshes) { NonConvexColliderAsset nonConvexColliderAsset = ScriptableObject.CreateInstance(); nonConvexColliderAsset.ConvexMeshes = meshes; nonConvexColliderAsset.HashOfSourceMeshes = new long[0]; return nonConvexColliderAsset; } public static NonConvexColliderAsset CreateAsset(string path, Mesh[] meshes, long[] hashes) { NonConvexColliderAsset nonConvexColliderAsset = ScriptableObject.CreateInstance(); AssetDatabase.CreateAsset((Object)(object)nonConvexColliderAsset, path); foreach (Mesh val in meshes) { AssetDatabase.AddObjectToAsset((Object)(object)val, (Object)(object)nonConvexColliderAsset); } nonConvexColliderAsset.ConvexMeshes = meshes; nonConvexColliderAsset.HashOfSourceMeshes = hashes; return nonConvexColliderAsset; } public bool SameHash(long[] meshHashes) { if (HashOfSourceMeshes == null) { HashOfSourceMeshes = new long[0]; } if (meshHashes.Length != HashOfSourceMeshes.Length) { return false; } foreach (long value in meshHashes) { if (!HashOfSourceMeshes.Contains(value)) { return false; } } return true; } } [ExecuteInEditMode] [DisallowMultipleComponent] public class NonConvexColliderComponent : MonoBehaviour { public Parameters Params = Parameters.Default(); [SerializeField] private List m_colliders = new List(); [SerializeField] private bool m_isTrigger = false; [SerializeField] private PhysicMaterial m_material = null; private bool m_isDirty = true; [SerializeField] private bool m_showColliders = false; [SerializeField] private NonConvexColliderAsset m_colliderAsset; public List ConvexColliders => m_colliders; public bool IsTrigger { get { return m_isTrigger; } set { if (m_isTrigger != value) { m_isTrigger = value; m_isDirty = true; } } } public PhysicMaterial Material { get { return m_material; } set { if ((Object)(object)m_material != (Object)(object)value) { m_material = value; m_isDirty = true; } } } public NonConvexColliderAsset ColliderAsset { get { return m_colliderAsset; } private set { m_colliderAsset = value; } } private void OnEnable() { SyncState(isEnabled: true); } private void OnDisable() { SyncState(isEnabled: false); } private void Update() { if (!m_isDirty) { return; } foreach (MeshCollider convexCollider in ConvexColliders) { ((Collider)convexCollider).isTrigger = IsTrigger; ((Collider)convexCollider).material = Material; } m_isDirty = false; } public void SyncState() { SyncState(((Behaviour)this).enabled); } private void OnValidate() { SyncState(); } private void SyncState(bool isEnabled) { if (ConvexColliders.Count > 0 && (Object)(object)m_colliderAsset == (Object)null) { SetPhysicsCollider(null); Assert.IsTrue(ConvexColliders.Count == 0); } if ((ConvexColliders.Count == 0 || (Object)(object)ConvexColliders[0] == (Object)null) && (Object)(object)m_colliderAsset != (Object)null) { SetPhysicsCollider(m_colliderAsset); Assert.IsTrue(ConvexColliders.Count != 0); } for (int i = 0; i < ConvexColliders.Count; i++) { MeshCollider val = ConvexColliders[i]; ((Collider)val).isTrigger = IsTrigger; ((Collider)val).sharedMaterial = Material; ((Collider)val).enabled = isEnabled; val.convex = true; val.sharedMesh = m_colliderAsset.ConvexMeshes[i]; ((Object)val).hideFlags = (HideFlags)((!m_showColliders) ? 10 : 0); } m_isDirty = false; } public void SetPhysicsCollider(NonConvexColliderAsset newColliderAsset) { bool activeSelf = ((Component)this).gameObject.activeSelf; ((Component)this).gameObject.SetActive(false); RemoveAllCollidersFrom(ColliderAsset); DisableAllColliders(); AddAllCollidersFrom(newColliderAsset); ((Component)this).gameObject.SetActive(activeSelf); } private void DisableAllColliders() { Collider[] components = ((Component)this).GetComponents(); Collider[] array = components; foreach (Collider val in array) { val.enabled = false; } } private void AddAllCollidersFrom(NonConvexColliderAsset colliderAsset) { m_colliders.Clear(); if (!((Object)(object)colliderAsset == (Object)null)) { for (int i = 0; i < colliderAsset.ConvexMeshes.Length; i++) { Mesh sharedMesh = colliderAsset.ConvexMeshes[i]; MeshCollider val = ((Component)this).gameObject.AddComponent(); val.sharedMesh = sharedMesh; val.convex = true; ((Collider)val).isTrigger = IsTrigger; ((Collider)val).material = Material; m_colliders.Add(val); } m_colliderAsset = colliderAsset; } } private void RemoveAllCollidersFrom(NonConvexColliderAsset colliderAsset) { m_colliders.Clear(); if ((Object)(object)colliderAsset == (Object)null) { return; } MeshCollider[] components = ((Component)this).GetComponents(); for (int num = components.Length - 1; num >= 0; num--) { MeshCollider val = components[num]; if ((Object)(object)val.sharedMesh == (Object)null || colliderAsset.ConvexMeshes.Contains(val.sharedMesh)) { Object.DestroyImmediate((Object)(object)val, true); } } if ((Object)(object)m_colliderAsset == (Object)(object)colliderAsset) { m_colliderAsset = null; } } } } public class RuntimeTest : MonoBehaviour { private class StopwatchScoped : IDisposable { private readonly string name; private readonly Stopwatch stopwatch; public StopwatchScoped(string name) { this.name = name; stopwatch = Stopwatch.StartNew(); } public void Dispose() { long elapsedMilliseconds = stopwatch.ElapsedMilliseconds; if (elapsedMilliseconds > 1000) { Debug.LogFormat("[{0}] took {1} seconds", new object[2] { name, (double)elapsedMilliseconds / 1000.0 }); } else { Debug.LogFormat("[{0}] took {1} msec", new object[2] { name, elapsedMilliseconds }); } } } private void Start() { ((Component)this).gameObject.AddComponent(); MeshFilter val = ((Component)this).gameObject.AddComponent(); Mesh mesh = val.mesh; using (new StopwatchScoped("Generate mesh")) { GenerateTorusMesh(mesh); } ((Component)this).gameObject.AddComponent(); Mesh[] meshes; using (new StopwatchScoped("NonConvexCollider generate meshes")) { meshes = API.GenerateConvexMeshes(mesh, Parameters.Default()); } using (new StopwatchScoped("NonConvexCollider generate add to gameobject")) { NonConvexColliderAsset physicsCollider = NonConvexColliderAsset.CreateAsset(meshes); NonConvexColliderComponent nonConvexColliderComponent = ((Component)this).gameObject.AddComponent(); nonConvexColliderComponent.SetPhysicsCollider(physicsCollider); } } private static void GenerateTorusMesh(Mesh mesh) { //IL_0092: Unknown result type (might be due to invalid IL or missing references) //IL_0097: Unknown result type (might be due to invalid IL or missing references) //IL_00b6: Unknown result type (might be due to invalid IL or missing references) //IL_00bb: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00cf: Unknown result type (might be due to invalid IL or missing references) //IL_00d1: Unknown result type (might be due to invalid IL or missing references) //IL_00d3: Unknown result type (might be due to invalid IL or missing references) //IL_00d8: Unknown result type (might be due to invalid IL or missing references) //IL_017d: Unknown result type (might be due to invalid IL or missing references) //IL_0182: Unknown result type (might be due to invalid IL or missing references) //IL_0184: Unknown result type (might be due to invalid IL or missing references) //IL_0189: Unknown result type (might be due to invalid IL or missing references) //IL_018d: Unknown result type (might be due to invalid IL or missing references) //IL_0192: Unknown result type (might be due to invalid IL or missing references) //IL_01f2: Unknown result type (might be due to invalid IL or missing references) //IL_01f7: Unknown result type (might be due to invalid IL or missing references) mesh.Clear(); Vector3[] array = (Vector3[])(object)new Vector3[475]; Vector3 val = default(Vector3); for (int i = 0; i <= 24; i++) { int num = ((i != 24) ? i : 0); float num2 = (float)num / 24f * ((float)Math.PI * 2f); ((Vector3)(ref val))..ctor(Mathf.Cos(num2) * 1f, 0f, Mathf.Sin(num2) * 1f); for (int j = 0; j <= 18; j++) { int num3 = ((j != 18) ? j : 0); float num4 = (float)num3 / 18f * ((float)Math.PI * 2f); Vector3 val2 = Quaternion.AngleAxis((0f - num2) * 57.29578f, Vector3.up) * new Vector3(Mathf.Sin(num4) * 0.3f, Mathf.Cos(num4) * 0.3f); ref Vector3 reference = ref array[j + i * 19]; reference = val + val2; } } Vector3[] array2 = (Vector3[])(object)new Vector3[array.Length]; Vector3 val3 = default(Vector3); for (int k = 0; k <= 24; k++) { int num5 = ((k != 24) ? k : 0); float num6 = (float)num5 / 24f * ((float)Math.PI * 2f); ((Vector3)(ref val3))..ctor(Mathf.Cos(num6) * 1f, 0f, Mathf.Sin(num6) * 1f); for (int l = 0; l <= 18; l++) { ref Vector3 reference2 = ref array2[l + k * 19]; Vector3 val4 = array[l + k * 19] - val3; reference2 = ((Vector3)(ref val4)).normalized; } } Vector2[] array3 = (Vector2[])(object)new Vector2[array.Length]; for (int m = 0; m <= 24; m++) { for (int n = 0; n <= 18; n++) { ref Vector2 reference3 = ref array3[n + m * 19]; reference3 = new Vector2((float)m / 24f, (float)n / 18f); } } int num7 = array.Length; int num8 = num7 * 2; int num9 = num8 * 3; int[] array4 = new int[num9]; int num10 = 0; for (int num11 = 0; num11 <= 24; num11++) { for (int num12 = 0; num12 <= 17; num12++) { int num13 = num12 + num11 * 19; int num14 = num12 + ((num11 < 24) ? ((num11 + 1) * 19) : 0); if (num10 < array4.Length - 6) { array4[num10++] = num13; array4[num10++] = num14; array4[num10++] = num14 + 1; array4[num10++] = num13; array4[num10++] = num14 + 1; array4[num10++] = num13 + 1; } } } mesh.vertices = array; mesh.normals = array2; mesh.uv = array3; mesh.triangles = array4; mesh.RecalculateBounds(); } } public class CTF_CaptureZone : MonoBehaviour { public CTF_Manager Manager; public CTF_Team Team; public void OnTriggerEnter(Collider other) { CTF_Flag component = ((Component)other).GetComponent(); if (Object.op_Implicit((Object)(object)component) && component.Team != Team) { Manager.FlagCaptured(component); } } } public class CTF_Flag : FVRPhysicalObject { [Header("Flag stuffs")] public CTF_Team Team; public float RespawnDelay = 10f; public Vector3 FloorOffset = new Vector3(0f, 0.25f, 0f); private Vector3 _resetPosition; private Quaternion _resetRotation; private Transform _followTransform; private bool _isHeld; private bool _isTaken; private float _timer; private CTF_Sosig _heldBy; private void Update() { if (_isTaken && !_isHeld) { _timer -= Time.deltaTime; if (_timer < 0f) { ReturnFlag(); } } } public void Take() { _isHeld = true; _isTaken = true; } public void Drop() { //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0040: Unknown result type (might be due to invalid IL or missing references) //IL_0050: Unknown result type (might be due to invalid IL or missing references) ((FVRInteractiveObject)this).IsHeld = false; _timer = RespawnDelay; NavMeshHit val = default(NavMeshHit); NavMesh.SamplePosition(((Component)this).transform.position, ref val, 100f, -1); ((Component)this).transform.position = ((NavMeshHit)(ref val)).position + FloorOffset; ((Component)this).transform.rotation = Quaternion.identity; } public void ReturnFlag() { //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) if (((FVRInteractiveObject)this).IsHeld) { ((FVRInteractiveObject)this).ForceBreakInteraction(); } if (Object.op_Implicit((Object)(object)_heldBy)) { _heldBy.HeldFlag = null; } ((Component)this).transform.SetPositionAndRotation(_resetPosition, _resetRotation); _isTaken = false; } private void OnTriggerEnter(Collider other) { //IL_002a: Unknown result type (might be due to invalid IL or missing references) if (_isHeld) { return; } CTF_Sosig componentInParent = ((Component)other).GetComponentInParent(); if (Object.op_Implicit((Object)(object)componentInParent) && (int)componentInParent.Sosig.BodyState == 0) { if (componentInParent.Team == Team) { ReturnFlag(); return; } _heldBy = componentInParent; componentInParent.HeldFlag = this; Take(); } } public override void BeginInteraction(FVRViveHand hand) { ((FVRPhysicalObject)this).BeginInteraction(hand); Take(); } public override void EndInteraction(FVRViveHand hand) { ((FVRPhysicalObject)this).EndInteraction(hand); Drop(); } } public class CTF_Manager : MonoBehaviour { [Header("References")] public Text[] ScoreTexts; public Transform[] AttackPoints; public Text StartButtonText; [Header("Red Team")] public CTF_Flag RedFlag; public int RedTeamSize; public Transform[] RedSpawns; public SosigEnemyID[] RedTeam; [Header("Blue Team")] public CTF_Flag BlueFlag; public int BlueTeamSize; public Transform[] BlueSpawns; public SosigEnemyID[] BlueTeam; private int _blueScore; private int _redScore; private bool _running; private readonly List _sosigs = new List(); private readonly SpawnOptions _spawnOptions; public CTF_Manager() { //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Expected O, but got Unknown SpawnOptions val = new SpawnOptions(); val.SpawnState = (SosigOrder)7; val.SpawnActivated = true; val.EquipmentMode = (EquipmentSlots)7; val.SpawnWithFullAmmo = true; _spawnOptions = val; ((MonoBehaviour)this)..ctor(); } private void Start() { UpdateScoreText(); } public void ToggleGame() { if (_running) { EndGame(); StartButtonText.text = "Start Game"; } else { StartGame(); StartButtonText.text = "Stop Game"; } } private void StartGame() { //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Expected O, but got Unknown ResetGame(); _running = true; GM.CurrentSceneSettings.SosigKillEvent += new SosigKill(CurrentSceneSettingsOnSosigKillEvent); ((MonoBehaviour)this).StartCoroutine(DoInitialSpawns()); } private void EndGame() { //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0017: Expected O, but got Unknown GM.CurrentSceneSettings.SosigKillEvent -= new SosigKill(CurrentSceneSettingsOnSosigKillEvent); foreach (CTF_Sosig sosig in _sosigs) { sosig.Sosig.ClearSosig(); } _running = false; } private void CurrentSceneSettingsOnSosigKillEvent(Sosig s) { CTF_Sosig cTF_Sosig = _sosigs.FirstOrDefault((CTF_Sosig x) => (Object)(object)x.Sosig == (Object)(object)s); if (Object.op_Implicit((Object)(object)cTF_Sosig)) { ((MonoBehaviour)this).StartCoroutine(RespawnSosig(cTF_Sosig)); } } private void SpawnSosig(CTF_Team team) { //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_006a: Unknown result type (might be due to invalid IL or missing references) //IL_006f: Unknown result type (might be due to invalid IL or missing references) //IL_0046: Unknown result type (might be due to invalid IL or missing references) //IL_004b: Unknown result type (might be due to invalid IL or missing references) //IL_007b: Unknown result type (might be due to invalid IL or missing references) //IL_0088: Unknown result type (might be due to invalid IL or missing references) //IL_008e: Unknown result type (might be due to invalid IL or missing references) _spawnOptions.IFF = (int)team; _spawnOptions.SosigTargetPosition = SodaliteUtils.GetRandom((IList)AttackPoints).position; Transform transform; SosigEnemyID random; if (team == CTF_Team.Red) { transform = ((Component)SodaliteUtils.GetRandom((IList)RedSpawns)).transform; random = SodaliteUtils.GetRandom((IList)RedTeam); } else { transform = ((Component)SodaliteUtils.GetRandom((IList)BlueSpawns)).transform; random = SodaliteUtils.GetRandom((IList)BlueTeam); } Sosig val = SosigAPI.Spawn(ManagerSingleton.Instance.odicSosigObjsByID[random], _spawnOptions, transform.position, transform.rotation); CTF_Sosig cTF_Sosig = ((Component)val).gameObject.AddComponent(); _sosigs.Add(cTF_Sosig); cTF_Sosig.Sosig = val; cTF_Sosig.Team = team; } private IEnumerator DoInitialSpawns() { int i = 0; while (i < Mathf.Max(RedTeamSize, BlueTeamSize)) { if (i < RedTeamSize) { SpawnSosig(CTF_Team.Red); } if (i < BlueTeamSize) { SpawnSosig(CTF_Team.Blue); } i++; yield return (object)new WaitForSeconds(2.5f); } } private IEnumerator RespawnSosig(CTF_Sosig sosig) { yield return (object)new WaitForSeconds(5f); sosig.Sosig.ClearSosig(); _sosigs.Remove(sosig); yield return (object)new WaitForSeconds(5f); if (_running) { int sosigsLeft = _sosigs.Count((CTF_Sosig x) => x.Team == sosig.Team); int teamSize = ((sosig.Team != CTF_Team.Red) ? BlueTeamSize : RedTeamSize); if (sosigsLeft < teamSize) { SpawnSosig(sosig.Team); } } } public void ResetGame() { _blueScore = 0; _redScore = 0; UpdateScoreText(); if (Object.op_Implicit((Object)(object)RedFlag)) { RedFlag.ReturnFlag(); } if (Object.op_Implicit((Object)(object)BlueFlag)) { BlueFlag.ReturnFlag(); } } public void FlagCaptured(CTF_Flag flag) { if (flag.Team == CTF_Team.Red) { _blueScore++; } else { _redScore++; } UpdateScoreText(); flag.ReturnFlag(); } public void UpdateScoreText() { Text[] scoreTexts = ScoreTexts; foreach (Text val in scoreTexts) { val.text = "" + _redScore + " - " + _blueScore + ""; } } private void OnDrawGizmos() { //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Unknown result type (might be due to invalid IL or missing references) //IL_007d: Unknown result type (might be due to invalid IL or missing references) //IL_00a1: Unknown result type (might be due to invalid IL or missing references) Gizmos.color = Color.red; Transform[] redSpawns = RedSpawns; foreach (Transform val in redSpawns) { Gizmos.DrawSphere(val.position, 0.15f); } Gizmos.color = Color.blue; Transform[] blueSpawns = BlueSpawns; foreach (Transform val2 in blueSpawns) { Gizmos.DrawSphere(val2.position, 0.15f); } Gizmos.color = Color.green; Transform[] attackPoints = AttackPoints; foreach (Transform val3 in attackPoints) { Gizmos.DrawSphere(val3.position, 0.15f); } } } public class CTF_Sosig : MonoBehaviour { public CTF_Team Team; public CTF_Flag HeldFlag; public Sosig Sosig; private void Awake() { Sosig = ((Component)this).GetComponent(); } private void Update() { //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_002d: Unknown result type (might be due to invalid IL or missing references) //IL_0037: Unknown result type (might be due to invalid IL or missing references) //IL_003c: Unknown result type (might be due to invalid IL or missing references) //IL_0041: Unknown result type (might be due to invalid IL or missing references) //IL_004d: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) if (Object.op_Implicit((Object)(object)HeldFlag)) { Vector3 val = ((Component)Sosig).transform.position - ((Component)Sosig).transform.forward * 0.1f; ((Component)HeldFlag).transform.SetPositionAndRotation(val, ((Component)Sosig).transform.rotation); } } } public enum CTF_Team { Red, Blue } public class PopupTarget : MonoBehaviour, IFVRDamageable { [Flags] public enum TargetRange { Near = 1, Mid = 2, Far = 4, All = 7 } public PopupTargetManager Manager; public TargetRange Range; public Transform Pivot; public Vector3 SetRotation; private Quaternion _startRotation; private Quaternion _endRotation; private bool _set; public bool Set { get { return _set; } set { //IL_003e: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Unknown result type (might be due to invalid IL or missing references) //IL_002d: Unknown result type (might be due to invalid IL or missing references) if (_set != value) { _set = value; ((MonoBehaviour)this).StartCoroutine((!_set) ? RotateTo(_endRotation, _startRotation) : RotateTo(_startRotation, _endRotation)); } } } private void Awake() { //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0024: Unknown result type (might be due to invalid IL or missing references) //IL_0029: Unknown result type (might be due to invalid IL or missing references) //IL_002e: Unknown result type (might be due to invalid IL or missing references) _startRotation = Pivot.rotation; _endRotation = Quaternion.Euler(SetRotation + ((Quaternion)(ref _startRotation)).eulerAngles); } void IFVRDamageable.Damage(Damage dam) { //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0013: Invalid comparison between Unknown and I4 if (Set && (int)dam.Class == 1) { Set = false; Manager.TargetHit(this); } } private IEnumerator RotateTo(Quaternion from, Quaternion to) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000e: Unknown result type (might be due to invalid IL or missing references) //IL_000f: Unknown result type (might be due to invalid IL or missing references) float elapsed = 0f; while (elapsed < 0.25f) { yield return null; elapsed += Time.deltaTime; Pivot.localRotation = Quaternion.Slerp(from, to, elapsed / 0.25f); } Pivot.rotation = to; } } public class PopupTargetManager : MonoBehaviour { public List Targets; private readonly List _setTargets = new List(); private void Awake() { ((MonoBehaviour)this).StartCoroutine(StartSetAsync(3f, 8f, 5, PopupTarget.TargetRange.All)); } private IEnumerator StartSetAsync(float minDelay, float maxDelay, int numTargets, PopupTarget.TargetRange ranges) { yield return (object)new WaitForSeconds(Random.Range(minDelay, maxDelay)); IListExtensions.Shuffle((IList)Targets); _setTargets.Clear(); foreach (PopupTarget target in Targets) { if ((target.Range & ranges) != 0) { target.Set = true; _setTargets.Add(target); numTargets--; } if (numTargets == 0) { break; } } } public void TargetHit(PopupTarget target) { if (_setTargets.Contains(target)) { _setTargets.Remove(target); if (_setTargets.Count == 0) { ((MonoBehaviour)this).StartCoroutine(StartSetAsync(3f, 8f, 5, PopupTarget.TargetRange.All)); } } } } public class PlayerKiller : MonoBehaviour { public void KillPlayer() { GM.CurrentPlayerBody.KillPlayer(false); } } public class PlayerTeleporter : MonoBehaviour { public Transform TeleportDestination; public void TeleportPlayer() { //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0028: Unknown result type (might be due to invalid IL or missing references) GM.CurrentMovementManager.TeleportToPoint(TeleportDestination.position, true, TeleportDestination.position + ((Component)this).transform.forward); } } namespace CustomScripts { public class PlayerTriggerByLayer : MonoBehaviour { public UnityEvent OnEnter; public UnityEvent OnExit; private void OnTriggerEnter(Collider other) { if (((Component)other).gameObject.layer == LayerMask.GetMask(new string[1] { "PlayerHead" }) && OnEnter != null) { OnEnter.Invoke(); } } private void OnTriggerExit(Collider other) { if (((Component)other).gameObject.layer == LayerMask.GetMask(new string[1] { "PlayerHead" }) && OnExit != null) { OnExit.Invoke(); } } } } public class LookCamera : MonoBehaviour { public float speedNormal = 10f; public float speedFast = 50f; public float mouseSensitivityX = 5f; public float mouseSensitivityY = 5f; private float rotY = 0f; private void Start() { if (Object.op_Implicit((Object)(object)((Component)this).GetComponent())) { ((Component)this).GetComponent().freezeRotation = true; } } private void Update() { //IL_0013: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_007f: Unknown result type (might be due to invalid IL or missing references) //IL_00b1: Unknown result type (might be due to invalid IL or missing references) if (Input.GetMouseButton(1)) { float num = ((Component)this).transform.localEulerAngles.y + Input.GetAxis("Mouse X") * mouseSensitivityX; rotY += Input.GetAxis("Mouse Y") * mouseSensitivityY; rotY = Mathf.Clamp(rotY, -89.5f, 89.5f); ((Component)this).transform.localEulerAngles = new Vector3(0f - rotY, num, 0f); } if (Input.GetKey((KeyCode)117)) { ((Component)this).gameObject.transform.localPosition = new Vector3(0f, 3500f, 0f); } } } public class SkyboxChanger : MonoBehaviour { public Material[] Skyboxes; private Dropdown _dropdown; public void Awake() { _dropdown = ((Component)this).GetComponent(); } public void ChangeSkybox() { RenderSettings.skybox = Skyboxes[_dropdown.value]; } } public class CuttableMesh { private MeshRenderer inputMeshRenderer; private bool hasUvs; private bool hasUv1s; private bool hasColours; private List subMeshes; public CuttableMesh(Mesh inputMesh) { Init(inputMesh, ((Object)inputMesh).name); } public CuttableMesh(MeshRenderer input) { inputMeshRenderer = input; MeshFilter component = ((Component)input).GetComponent(); Mesh sharedMesh = component.sharedMesh; Init(sharedMesh, ((Object)input).name); } public CuttableMesh(CuttableMesh inputMesh, List newSubMeshes) { inputMeshRenderer = inputMesh.inputMeshRenderer; hasUvs = inputMesh.hasUvs; hasUv1s = inputMesh.hasUv1s; hasColours = inputMesh.hasColours; subMeshes = new List(); subMeshes.AddRange(newSubMeshes); } private void Init(Mesh inputMesh, string debugName) { subMeshes = new List(); if (inputMesh.isReadable) { Vector3[] vertices = inputMesh.vertices; Vector3[] normals = inputMesh.normals; Vector2[] uv = inputMesh.uv; Vector2[] uv2 = inputMesh.uv2; Color32[] colors = inputMesh.colors32; hasUvs = uv != null && uv.Length > 0; hasUv1s = uv2 != null && uv2.Length > 0; hasColours = colors != null && colors.Length > 0; for (int i = 0; i < inputMesh.subMeshCount; i++) { int[] indices = inputMesh.GetIndices(i); CuttableSubMesh item = new CuttableSubMesh(indices, vertices, normals, colors, uv, uv2); subMeshes.Add(item); } } else { Debug.LogError((object)("CuttableMesh's input mesh is not readable: " + debugName), (Object)(object)inputMesh); } } public void Add(CuttableMesh other) { if (subMeshes.Count != other.subMeshes.Count) { throw new Exception("Mismatched submesh count"); } for (int i = 0; i < subMeshes.Count; i++) { subMeshes[i].Add(other.subMeshes[i]); } } public int NumSubMeshes() { return subMeshes.Count; } public bool HasUvs() { return hasUvs; } public bool HasColours() { return hasColours; } public List GetSubMeshes() { return subMeshes; } public CuttableSubMesh GetSubMesh(int index) { return subMeshes[index]; } public Transform GetTransform() { if ((Object)(object)inputMeshRenderer != (Object)null) { return ((Component)inputMeshRenderer).transform; } return null; } public MeshRenderer ConvertToRenderer(string newObjectName) { //IL_001b: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Expected O, but got Unknown //IL_003d: Unknown result type (might be due to invalid IL or missing references) //IL_004d: Unknown result type (might be due to invalid IL or missing references) //IL_005d: Unknown result type (might be due to invalid IL or missing references) //IL_0085: Unknown result type (might be due to invalid IL or missing references) //IL_0097: Unknown result type (might be due to invalid IL or missing references) //IL_00a9: Unknown result type (might be due to invalid IL or missing references) Mesh val = CreateMesh(); if (val.vertexCount == 0) { return null; } GameObject val2 = new GameObject(newObjectName); val2.transform.SetParent(((Component)inputMeshRenderer).transform); val2.transform.localPosition = Vector3.zero; val2.transform.localRotation = Quaternion.identity; val2.transform.localScale = Vector3.one; MeshFilter val3 = val2.AddComponent(); val3.mesh = val; MeshRenderer val4 = val2.AddComponent(); ((Renderer)val4).shadowCastingMode = ((Renderer)inputMeshRenderer).shadowCastingMode; ((Renderer)val4).reflectionProbeUsage = ((Renderer)inputMeshRenderer).reflectionProbeUsage; ((Renderer)val4).lightProbeUsage = ((Renderer)inputMeshRenderer).lightProbeUsage; ((Renderer)val4).sharedMaterials = ((Renderer)inputMeshRenderer).sharedMaterials; return val4; } public Mesh CreateMesh() { //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_0007: Expected O, but got Unknown Mesh val = new Mesh(); int num = 0; for (int i = 0; i < subMeshes.Count; i++) { num += subMeshes[i].NumIndices(); } List list = new List(); List list2 = new List(); List list3 = ((!hasColours) ? null : new List()); List list4 = ((!hasUvs) ? null : new List()); List list5 = ((!hasUv1s) ? null : new List()); List list6 = new List(); foreach (CuttableSubMesh subMesh in subMeshes) { list6.Add(list.Count); subMesh.AddTo(list, list2, list3, list4, list5); } val.vertices = list.ToArray(); val.normals = list2.ToArray(); val.colors32 = ((!hasColours) ? null : list3.ToArray()); val.uv = ((!hasUvs) ? null : list4.ToArray()); val.uv2 = ((!hasUv1s) ? null : list5.ToArray()); val.subMeshCount = subMeshes.Count; for (int j = 0; j < subMeshes.Count; j++) { CuttableSubMesh cuttableSubMesh = subMeshes[j]; int num2 = list6[j]; int[] array = cuttableSubMesh.GenIndices(); for (int k = 0; k < array.Length; k++) { array[k] += num2; } val.SetTriangles(array, j, true); } return val; } } public class CuttableSubMesh { private List vertices; private List normals; private List colours; private List uvs; private List uv1s; public CuttableSubMesh(bool hasNormals, bool hasColours, bool hasUvs, bool hasUv1) { vertices = new List(); if (hasNormals) { normals = new List(); } if (hasColours) { colours = new List(); } if (hasUvs) { uvs = new List(); } if (hasUv1) { uv1s = new List(); } } public CuttableSubMesh(int[] indices, Vector3[] inputVertices, Vector3[] inputNormals, Color32[] inputColours, Vector2[] inputUvs, Vector2[] inputUv1) { //IL_0099: Unknown result type (might be due to invalid IL or missing references) //IL_00bb: Unknown result type (might be due to invalid IL or missing references) //IL_00de: Unknown result type (might be due to invalid IL or missing references) //IL_0101: Unknown result type (might be due to invalid IL or missing references) //IL_0124: Unknown result type (might be due to invalid IL or missing references) vertices = new List(); if (inputNormals != null && inputNormals.Length > 0) { normals = new List(); } if (inputColours != null && inputColours.Length > 0) { colours = new List(); } if (inputUvs != null && inputUvs.Length > 0) { uvs = new List(); } if (inputUv1 != null && inputUv1.Length > 0) { uv1s = new List(); } foreach (int num in indices) { vertices.Add(inputVertices[num]); if (normals != null) { normals.Add(inputNormals[num]); } if (colours != null) { colours.Add(inputColours[num]); } if (uvs != null) { uvs.Add(inputUvs[num]); } if (uv1s != null) { uv1s.Add(inputUv1[num]); } } } public void Add(CuttableSubMesh other) { for (int i = 0; i < other.vertices.Count; i++) { CopyVertex(i, other); } } public int NumVertices() { return vertices.Count; } public Vector3 GetVertex(int index) { //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0013: Unknown result type (might be due to invalid IL or missing references) return vertices[index]; } public bool HasNormals() { return normals != null; } public bool HasColours() { return colours != null; } public bool HasUvs() { return uvs != null; } public bool HasUv1() { return uv1s != null; } public void CopyVertex(int srcIndex, CuttableSubMesh srcMesh) { //IL_000e: Unknown result type (might be due to invalid IL or missing references) //IL_0030: Unknown result type (might be due to invalid IL or missing references) //IL_0052: Unknown result type (might be due to invalid IL or missing references) //IL_0074: Unknown result type (might be due to invalid IL or missing references) //IL_0096: Unknown result type (might be due to invalid IL or missing references) vertices.Add(srcMesh.vertices[srcIndex]); if (normals != null) { normals.Add(srcMesh.normals[srcIndex]); } if (colours != null) { colours.Add(srcMesh.colours[srcIndex]); } if (uvs != null) { uvs.Add(srcMesh.uvs[srcIndex]); } if (uv1s != null) { uv1s.Add(srcMesh.uv1s[srcIndex]); } } public void AddInterpolatedVertex(int i0, int i1, float weight, CuttableSubMesh srcMesh) { //IL_0004: Unknown result type (might be due to invalid IL or missing references) //IL_0009: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Unknown result type (might be due to invalid IL or missing references) //IL_0052: Unknown result type (might be due to invalid IL or missing references) //IL_0057: Unknown result type (might be due to invalid IL or missing references) //IL_005a: Unknown result type (might be due to invalid IL or missing references) //IL_007d: Unknown result type (might be due to invalid IL or missing references) //IL_008a: Unknown result type (might be due to invalid IL or missing references) //IL_0090: Unknown result type (might be due to invalid IL or missing references) //IL_00b3: Unknown result type (might be due to invalid IL or missing references) //IL_00c0: Unknown result type (might be due to invalid IL or missing references) //IL_00c6: Unknown result type (might be due to invalid IL or missing references) //IL_00e9: Unknown result type (might be due to invalid IL or missing references) //IL_00f6: Unknown result type (might be due to invalid IL or missing references) //IL_00fc: Unknown result type (might be due to invalid IL or missing references) Vector3 vertex = srcMesh.GetVertex(i0); Vector3 vertex2 = srcMesh.GetVertex(i1); vertices.Add(Vector3.Lerp(vertex, vertex2, weight)); if (normals != null) { List list = normals; Vector3 val = Vector3.Lerp(srcMesh.normals[i0], srcMesh.normals[i1], weight); list.Add(((Vector3)(ref val)).normalized); } if (colours != null) { colours.Add(Color32.Lerp(srcMesh.colours[i0], srcMesh.colours[i1], weight)); } if (uvs != null) { uvs.Add(Vector2.Lerp(srcMesh.uvs[i0], srcMesh.uvs[i1], weight)); } if (uv1s != null) { uv1s.Add(Vector2.Lerp(srcMesh.uv1s[i0], srcMesh.uv1s[i1], weight)); } } public void AddTo(List destVertices, List destNormals, List destColours, List destUvs, List destUv1s) { destVertices.AddRange(vertices); if (normals != null) { destNormals.AddRange(normals); } if (colours != null) { destColours.AddRange(colours); } if (uvs != null) { destUvs.AddRange(uvs); } if (uv1s != null) { destUv1s.AddRange(uv1s); } } public int NumIndices() { return vertices.Count; } public int[] GenIndices() { int[] array = new int[vertices.Count]; for (int i = 0; i < array.Length; i++) { array[i] = i; } return array; } } public enum VertexClassification { Front = 1, Back = 2, OnPlane = 4 } public class MeshCutter { private CuttableMesh inputMesh; private List outputFrontSubMeshes; private List outputBackSubMeshes; public void Cut(CuttableMesh input, Plane worldCutPlane) { //IL_0067: Unknown result type (might be due to invalid IL or missing references) //IL_0068: Unknown result type (might be due to invalid IL or missing references) //IL_0038: Unknown result type (might be due to invalid IL or missing references) //IL_0039: Unknown result type (might be due to invalid IL or missing references) //IL_003e: Unknown result type (might be due to invalid IL or missing references) //IL_0043: Unknown result type (might be due to invalid IL or missing references) //IL_0048: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Unknown result type (might be due to invalid IL or missing references) //IL_0051: Unknown result type (might be due to invalid IL or missing references) //IL_0056: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) //IL_005a: Unknown result type (might be due to invalid IL or missing references) //IL_008a: Unknown result type (might be due to invalid IL or missing references) inputMesh = input; outputFrontSubMeshes = new List(); outputBackSubMeshes = new List(); Transform transform = inputMesh.GetTransform(); Plane cutPlane = default(Plane); if ((Object)(object)transform != (Object)null) { Vector3 val = transform.InverseTransformPoint(ClosestPointOnPlane(worldCutPlane, Vector3.zero)); Vector3 val2 = transform.InverseTransformDirection(((Plane)(ref worldCutPlane)).normal); ((Plane)(ref cutPlane))..ctor(val2, val); } else { cutPlane = worldCutPlane; } foreach (CuttableSubMesh subMesh in input.GetSubMeshes()) { Cut(subMesh, cutPlane); } } private static Vector3 ClosestPointOnPlane(Plane plane, Vector3 point) { //IL_0003: Unknown result type (might be due to invalid IL or missing references) //IL_000c: Unknown result type (might be due to invalid IL or missing references) //IL_0032: Unknown result type (might be due to invalid IL or missing references) //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Unknown result type (might be due to invalid IL or missing references) //IL_0040: Unknown result type (might be due to invalid IL or missing references) //IL_0045: Unknown result type (might be due to invalid IL or missing references) //IL_0018: Unknown result type (might be due to invalid IL or missing references) //IL_001b: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_0026: Unknown result type (might be due to invalid IL or missing references) //IL_002b: Unknown result type (might be due to invalid IL or missing references) //IL_004b: Unknown result type (might be due to invalid IL or missing references) float distanceToPoint = ((Plane)(ref plane)).GetDistanceToPoint(point); if (((Plane)(ref plane)).GetSide(point)) { return point - ((Plane)(ref plane)).normal * distanceToPoint; } return point + ((Plane)(ref plane)).normal * distanceToPoint; } public CuttableMesh GetFrontOutput() { return new CuttableMesh(inputMesh, outputFrontSubMeshes); } public CuttableMesh GetBackOutput() { return new CuttableMesh(inputMesh, outputBackSubMeshes); } private void Cut(CuttableSubMesh inputSubMesh, Plane cutPlane) { //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0054: Unknown result type (might be due to invalid IL or missing references) //IL_0059: Unknown result type (might be due to invalid IL or missing references) //IL_005e: Unknown result type (might be due to invalid IL or missing references) //IL_0063: Unknown result type (might be due to invalid IL or missing references) //IL_0068: Unknown result type (might be due to invalid IL or missing references) //IL_006b: Unknown result type (might be due to invalid IL or missing references) //IL_006d: Unknown result type (might be due to invalid IL or missing references) //IL_0076: Unknown result type (might be due to invalid IL or missing references) //IL_0078: Unknown result type (might be due to invalid IL or missing references) //IL_0081: Unknown result type (might be due to invalid IL or missing references) //IL_0083: Unknown result type (might be due to invalid IL or missing references) //IL_0121: Unknown result type (might be due to invalid IL or missing references) //IL_018e: Unknown result type (might be due to invalid IL or missing references) //IL_015b: Unknown result type (might be due to invalid IL or missing references) //IL_0142: Unknown result type (might be due to invalid IL or missing references) //IL_02be: Unknown result type (might be due to invalid IL or missing references) //IL_02c0: Unknown result type (might be due to invalid IL or missing references) //IL_02c2: Unknown result type (might be due to invalid IL or missing references) //IL_02c7: Unknown result type (might be due to invalid IL or missing references) //IL_02c9: Unknown result type (might be due to invalid IL or missing references) //IL_02cb: Unknown result type (might be due to invalid IL or missing references) //IL_02cd: Unknown result type (might be due to invalid IL or missing references) //IL_02d2: Unknown result type (might be due to invalid IL or missing references) //IL_02d4: Unknown result type (might be due to invalid IL or missing references) //IL_02d6: Unknown result type (might be due to invalid IL or missing references) //IL_02d8: Unknown result type (might be due to invalid IL or missing references) //IL_02dd: Unknown result type (might be due to invalid IL or missing references) //IL_02df: Unknown result type (might be due to invalid IL or missing references) //IL_02e3: Unknown result type (might be due to invalid IL or missing references) //IL_01c8: Unknown result type (might be due to invalid IL or missing references) //IL_01af: Unknown result type (might be due to invalid IL or missing references) //IL_021d: Unknown result type (might be due to invalid IL or missing references) //IL_0204: Unknown result type (might be due to invalid IL or missing references) //IL_029d: Unknown result type (might be due to invalid IL or missing references) //IL_0284: Unknown result type (might be due to invalid IL or missing references) //IL_0261: Unknown result type (might be due to invalid IL or missing references) //IL_0248: Unknown result type (might be due to invalid IL or missing references) bool hasNormals = inputSubMesh.HasNormals(); bool hasColours = inputSubMesh.HasColours(); bool hasUvs = inputSubMesh.HasUvs(); bool hasUv = inputSubMesh.HasUv1(); CuttableSubMesh cuttableSubMesh = new CuttableSubMesh(hasNormals, hasColours, hasUvs, hasUv); CuttableSubMesh cuttableSubMesh2 = new CuttableSubMesh(hasNormals, hasColours, hasUvs, hasUv); for (int i = 0; i < inputSubMesh.NumVertices(); i += 3) { int num = i; int num2 = i + 1; int num3 = i + 2; Vector3 vertex = inputSubMesh.GetVertex(num); Vector3 vertex2 = inputSubMesh.GetVertex(num2); Vector3 vertex3 = inputSubMesh.GetVertex(num3); VertexClassification vertexClassification = Classify(vertex, cutPlane); VertexClassification vertexClassification2 = Classify(vertex2, cutPlane); VertexClassification vertexClassification3 = Classify(vertex3, cutPlane); int numFront = 0; int numBehind = 0; CountSides(vertexClassification, ref numFront, ref numBehind); CountSides(vertexClassification2, ref numFront, ref numBehind); CountSides(vertexClassification3, ref numFront, ref numBehind); if (numFront > 0 && numBehind == 0) { KeepTriangle(num, num2, num3, inputSubMesh, cuttableSubMesh); } else if (numFront == 0 && numBehind > 0) { KeepTriangle(num, num2, num3, inputSubMesh, cuttableSubMesh2); } else if (numFront == 2 && numBehind == 1) { if (vertexClassification == VertexClassification.Back) { SplitA(num, num2, num3, inputSubMesh, cutPlane, cuttableSubMesh2, cuttableSubMesh); } else if (vertexClassification2 == VertexClassification.Back) { SplitA(num2, num3, num, inputSubMesh, cutPlane, cuttableSubMesh2, cuttableSubMesh); } else { SplitA(num3, num, num2, inputSubMesh, cutPlane, cuttableSubMesh2, cuttableSubMesh); } } else if (numFront == 1 && numBehind == 2) { if (vertexClassification == VertexClassification.Front) { SplitA(num, num2, num3, inputSubMesh, cutPlane, cuttableSubMesh, cuttableSubMesh2); } else if (vertexClassification2 == VertexClassification.Front) { SplitA(num2, num3, num, inputSubMesh, cutPlane, cuttableSubMesh, cuttableSubMesh2); } else { SplitA(num3, num, num2, inputSubMesh, cutPlane, cuttableSubMesh, cuttableSubMesh2); } } else if (numFront == 1 && numBehind == 1) { if (vertexClassification == VertexClassification.OnPlane) { if (vertexClassification3 == VertexClassification.Front) { SplitB(num3, num, num2, inputSubMesh, cutPlane, cuttableSubMesh, cuttableSubMesh2); } else { SplitBFlipped(num2, num3, num, inputSubMesh, cutPlane, cuttableSubMesh, cuttableSubMesh2); } continue; } switch (vertexClassification2) { case VertexClassification.OnPlane: if (vertexClassification == VertexClassification.Front) { SplitB(num, num2, num3, inputSubMesh, cutPlane, cuttableSubMesh, cuttableSubMesh2); } else { SplitBFlipped(num3, num, num2, inputSubMesh, cutPlane, cuttableSubMesh, cuttableSubMesh2); } break; case VertexClassification.Front: SplitB(num2, num3, num, inputSubMesh, cutPlane, cuttableSubMesh, cuttableSubMesh2); break; default: SplitBFlipped(num, num2, num3, inputSubMesh, cutPlane, cuttableSubMesh, cuttableSubMesh2); break; } } else if (numFront == 0 && numBehind == 0) { Vector3 val = vertex2 - vertex; Vector3 val2 = vertex3 - vertex; Vector3 val3 = Vector3.Cross(val, val2); if (Vector3.Dot(val3, ((Plane)(ref cutPlane)).normal) > 0f) { KeepTriangle(num, num2, num3, inputSubMesh, cuttableSubMesh2); } else { KeepTriangle(num, num2, num3, inputSubMesh, cuttableSubMesh); } } } outputFrontSubMeshes.Add(cuttableSubMesh); outputBackSubMeshes.Add(cuttableSubMesh2); } private VertexClassification Classify(Vector3 vertex, Plane cutPlane) { //IL_0022: Unknown result type (might be due to invalid IL or missing references) Vector3 val = default(Vector3); ((Vector3)(ref val))..ctor(vertex.x, vertex.y, vertex.z); float distanceToPoint = ((Plane)(ref cutPlane)).GetDistanceToPoint(val); double num = 9.999999747378752E-06; if ((double)distanceToPoint > 0.0 - num && (double)distanceToPoint < num) { return VertexClassification.OnPlane; } if (distanceToPoint > 0f) { return VertexClassification.Front; } return VertexClassification.Back; } private void CountSides(VertexClassification c, ref int numFront, ref int numBehind) { switch (c) { case VertexClassification.Front: numFront++; break; case VertexClassification.Back: numBehind++; break; } } private void KeepTriangle(int i0, int i1, int i2, CuttableSubMesh inputSubMesh, CuttableSubMesh destSubMesh) { destSubMesh.CopyVertex(i0, inputSubMesh); destSubMesh.CopyVertex(i1, inputSubMesh); destSubMesh.CopyVertex(i2, inputSubMesh); } private void SplitA(int i0, int i1, int i2, CuttableSubMesh inputSubMesh, Plane cutPlane, CuttableSubMesh frontSubMesh, CuttableSubMesh backSubMesh) { //IL_0004: Unknown result type (might be due to invalid IL or missing references) //IL_0009: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_001b: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_001f: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_002a: Unknown result type (might be due to invalid IL or missing references) //IL_002b: Unknown result type (might be due to invalid IL or missing references) //IL_002c: Unknown result type (might be due to invalid IL or missing references) //IL_0030: Unknown result type (might be due to invalid IL or missing references) Vector3 vertex = inputSubMesh.GetVertex(i0); Vector3 vertex2 = inputSubMesh.GetVertex(i1); Vector3 vertex3 = inputSubMesh.GetVertex(i2); CalcIntersection(vertex, vertex2, cutPlane, out var weight); CalcIntersection(vertex3, vertex, cutPlane, out var weight2); frontSubMesh.CopyVertex(i0, inputSubMesh); frontSubMesh.AddInterpolatedVertex(i0, i1, weight, inputSubMesh); frontSubMesh.AddInterpolatedVertex(i2, i0, weight2, inputSubMesh); backSubMesh.AddInterpolatedVertex(i0, i1, weight, inputSubMesh); backSubMesh.CopyVertex(i1, inputSubMesh); backSubMesh.CopyVertex(i2, inputSubMesh); backSubMesh.CopyVertex(i2, inputSubMesh); backSubMesh.AddInterpolatedVertex(i2, i0, weight2, inputSubMesh); backSubMesh.AddInterpolatedVertex(i0, i1, weight, inputSubMesh); } private void SplitB(int i0, int i1, int i2, CuttableSubMesh inputSubMesh, Plane cutPlane, CuttableSubMesh frontSubMesh, CuttableSubMesh backSubMesh) { //IL_0004: Unknown result type (might be due to invalid IL or missing references) //IL_0009: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_0015: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) Vector3 vertex = inputSubMesh.GetVertex(i0); Vector3 vertex2 = inputSubMesh.GetVertex(i2); CalcIntersection(vertex2, vertex, cutPlane, out var weight); frontSubMesh.CopyVertex(i0, inputSubMesh); frontSubMesh.CopyVertex(i1, inputSubMesh); frontSubMesh.AddInterpolatedVertex(i2, i0, weight, inputSubMesh); backSubMesh.CopyVertex(i1, inputSubMesh); backSubMesh.CopyVertex(i2, inputSubMesh); backSubMesh.AddInterpolatedVertex(i2, i0, weight, inputSubMesh); } private void SplitBFlipped(int i0, int i1, int i2, CuttableSubMesh inputSubMesh, Plane cutPlane, CuttableSubMesh frontSubMesh, CuttableSubMesh backSubMesh) { //IL_0004: Unknown result type (might be due to invalid IL or missing references) //IL_0009: Unknown result type (might be due to invalid IL or missing references) //IL_000d: Unknown result type (might be due to invalid IL or missing references) //IL_0012: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_0015: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) Vector3 vertex = inputSubMesh.GetVertex(i0); Vector3 vertex2 = inputSubMesh.GetVertex(i1); CalcIntersection(vertex, vertex2, cutPlane, out var weight); frontSubMesh.CopyVertex(i0, inputSubMesh); frontSubMesh.AddInterpolatedVertex(i0, i1, weight, inputSubMesh); frontSubMesh.CopyVertex(i2, inputSubMesh); backSubMesh.CopyVertex(i1, inputSubMesh); backSubMesh.CopyVertex(i2, inputSubMesh); backSubMesh.AddInterpolatedVertex(i0, i1, weight, inputSubMesh); } private Vector3 CalcIntersection(Vector3 v0, Vector3 v1, Plane plane, out float weight) { //IL_0001: Unknown result type (might be due to invalid IL or missing references) //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_0003: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_0013: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) //IL_0022: Unknown result type (might be due to invalid IL or missing references) //IL_002d: Unknown result type (might be due to invalid IL or missing references) //IL_0034: Unknown result type (might be due to invalid IL or missing references) //IL_003a: Unknown result type (might be due to invalid IL or missing references) //IL_003f: Unknown result type (might be due to invalid IL or missing references) //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_004c: Unknown result type (might be due to invalid IL or missing references) //IL_004e: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Unknown result type (might be due to invalid IL or missing references) Vector3 val = v1 - v0; float magnitude = ((Vector3)(ref val)).magnitude; Ray val2 = default(Ray); ((Ray)(ref val2))..ctor(v0, val / magnitude); float num = default(float); ((Plane)(ref plane)).Raycast(val2, ref num); Vector3 result = ((Ray)(ref val2)).origin + ((Ray)(ref val2)).direction * num; weight = num / magnitude; return result; } } namespace CustomScripts { public class RegenAmmoMod : MonoBehaviour { public FVRFireArmMagazine Magazine; public float rate = 2f; private float nextTime; public void Start() { ((MonoBehaviour)this).InvokeRepeating("regenrounds", 5.08f, rate); } public void regenrounds() { if (Magazine.m_numRounds < Magazine.m_capacity) { FVRFireArmMagazine magazine = Magazine; magazine.m_numRounds++; Magazine.UpdateBulletDisplay(); } } private void Update() { } } }